diff --git a/docs/_docs/SQL/sql-calcite.adoc b/docs/_docs/SQL/sql-calcite.adoc index ddeaab1464046..547d1192faae4 100644 --- a/docs/_docs/SQL/sql-calcite.adoc +++ b/docs/_docs/SQL/sql-calcite.adoc @@ -150,7 +150,7 @@ The Calcite-based SQL engine currently supports: |`UPPER`, `LOWER`, `INITCAP`, `TO_BASE64`, `FROM_BASE64`, `MD5`, `SHA1`, `SUBSTRING`, `LEFT`, `RIGHT`, `REPLACE`, `TRANSLATE`, `CHR`, `CHAR_LENGTH`, `CHARACTER_LENGTH`, `LENGTH`, `CONCAT`, `OVERLAY`, `POSITION`, `ASCII`, `REPEAT`, `SPACE`, `STRCMP`, `SOUNDEX`, `DIFFERENCE`, `REVERSE`, `TRIM`, `LTRIM`, `RTRIM`, `REGEXP_REPLACE` |Math functions -|`MOD`, `EXP`, `POWER`, `LN`, `LOG10`, `ABS`, `RAND`, `RAND_INTEGER`, `ACOS`, `ASIN`, `ATAN`, `ATAN2`, `SQRT`, `CBRT`, `COS`, `COSH`, `COT`, `DEGREES`, `RADIANS`, `ROUND`, `SIGN`, `SIN`, `SINH`, `TAN`, `TANH`, `TRUNCATE`, `PI` +|`MOD`, `EXP`, `POWER`, `LN`, `LOG10`, `ABS`, `RAND`, `RAND_INTEGER`, `ACOS`, `ACOSH`, `ASIN`, `ASINH`, `ATAN`, `ATANH`, `ATAN2`, `SQRT`, `CBRT`, `COS`, `COSH`, `COT`, `COTH`, `DEGREES`, `RADIANS`, `ROUND`, `SIGN`, `SIN`, `SINH`, `TAN`, `TANH`, `SEC`, `SECH`, `CSC`, `CSCH`, `TRUNCATE`, `PI` |Date and time functions |`EXTRACT`, `FLOOR`, `CEIL`, `TIMESTAMPADD`, `TIMESTAMPDIFF`, `LAST_DATE`, `DAYNAME`, `MONTHNAME`, `DAYOFMONTH`, `DAYOFWEEK`, `DAYOFYEAR`, `YEAR`, `QUARTER`, `MONTH`, `WEEK`, `HOUR`, `MINUTE`, `SECOND`, `TIMESTAMP_SECONDS`, `TIMESTAMP_MILLIS`, `TIMESTAMP_MICROS`, `UNIX_SECONDS`, `UNIX_MILLIS`, `UNIX_MICROS`, `UNIX_DATE`, `DATE_FROM_UNIX_DATE`, `DATE`, `TIME`, `DATETIME`, `CURRENT_TIME`, `CURRENT_TIMESTAMP`, `CURRENT_DATE`, `LOCALTIME`, `LOCALTIMESTAMP` diff --git a/modules/calcite/pom.xml b/modules/calcite/pom.xml index 57ee3a8013e1b..7b09999076c10 100644 --- a/modules/calcite/pom.xml +++ b/modules/calcite/pom.xml @@ -36,7 +36,7 @@ 1.23.0 - 1.34.0 + 1.37.0 3.10.0 1.0.1 2.8.2 diff --git a/modules/calcite/src/main/codegen/config.fmpp b/modules/calcite/src/main/codegen/config.fmpp index 8a6dde00bdf7f..9b0bb6c61e21c 100644 --- a/modules/calcite/src/main/codegen/config.fmpp +++ b/modules/calcite/src/main/codegen/config.fmpp @@ -227,6 +227,7 @@ data: { "JSON_OBJECT" "JSON_OBJECTAGG" "JSON_QUERY" + "JSON_SCOPE" "JSON_VALUE" "LAG" "LANGUAGE" @@ -273,6 +274,7 @@ data: { "ONE" "ONLY" "OPEN" + "ORDINAL" "OUT" "OVER" "OVERLAPS" @@ -324,6 +326,9 @@ data: { "ROWS" "ROW_NUMBER" "RUNNING" + "SAFE_CAST" + "SAFE_OFFSET" + "SAFE_ORDINAL" "SAVEPOINT" "SCOPE" "SCROLL" @@ -371,6 +376,7 @@ data: { "TRIM" "TRIM_ARRAY" "TRUNCATE" + "TRY_CAST" "UESCAPE" "UNIQUE" "UNKNOWN" diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexImpTable.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexImpTable.java index 433fb9d29637a..39025437fe884 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexImpTable.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexImpTable.java @@ -16,8 +16,6 @@ */ package org.apache.ignite.internal.processors.query.calcite.exec.exp; -import java.lang.reflect.Constructor; -import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import java.lang.reflect.Type; @@ -28,7 +26,6 @@ import java.util.LinkedHashMap; import java.util.List; import java.util.Map; -import java.util.function.Supplier; import java.util.stream.Collectors; import com.google.common.collect.ImmutableList; import org.apache.calcite.adapter.enumerable.EnumUtils; @@ -63,6 +60,7 @@ import org.apache.calcite.sql.SqlOperator; import org.apache.calcite.sql.SqlTableFunction; import org.apache.calcite.sql.SqlTypeConstructorFunction; +import org.apache.calcite.sql.fun.SqlItemOperator; import org.apache.calcite.sql.fun.SqlStdOperatorTable; import org.apache.calcite.sql.fun.SqlTrimFunction; import org.apache.calcite.sql.type.SqlTypeName; @@ -88,10 +86,16 @@ import static org.apache.calcite.linq4j.tree.ExpressionType.NotEqual; import static org.apache.calcite.linq4j.tree.ExpressionType.Subtract; import static org.apache.calcite.linq4j.tree.ExpressionType.UnaryPlus; +import static org.apache.calcite.sql.fun.SqlLibraryOperators.ACOSH; +import static org.apache.calcite.sql.fun.SqlLibraryOperators.ASINH; +import static org.apache.calcite.sql.fun.SqlLibraryOperators.ATANH; import static org.apache.calcite.sql.fun.SqlLibraryOperators.CHR; import static org.apache.calcite.sql.fun.SqlLibraryOperators.COMPRESS; import static org.apache.calcite.sql.fun.SqlLibraryOperators.CONCAT_FUNCTION; import static org.apache.calcite.sql.fun.SqlLibraryOperators.COSH; +import static org.apache.calcite.sql.fun.SqlLibraryOperators.COTH; +import static org.apache.calcite.sql.fun.SqlLibraryOperators.CSC; +import static org.apache.calcite.sql.fun.SqlLibraryOperators.CSCH; import static org.apache.calcite.sql.fun.SqlLibraryOperators.DATE; import static org.apache.calcite.sql.fun.SqlLibraryOperators.DATETIME; import static org.apache.calcite.sql.fun.SqlLibraryOperators.DATE_FROM_UNIX_DATE; @@ -101,6 +105,7 @@ import static org.apache.calcite.sql.fun.SqlLibraryOperators.EXTRACT_VALUE; import static org.apache.calcite.sql.fun.SqlLibraryOperators.EXTRACT_XML; import static org.apache.calcite.sql.fun.SqlLibraryOperators.FROM_BASE64; +import static org.apache.calcite.sql.fun.SqlLibraryOperators.ILIKE; import static org.apache.calcite.sql.fun.SqlLibraryOperators.JSON_DEPTH; import static org.apache.calcite.sql.fun.SqlLibraryOperators.JSON_KEYS; import static org.apache.calcite.sql.fun.SqlLibraryOperators.JSON_LENGTH; @@ -109,12 +114,16 @@ import static org.apache.calcite.sql.fun.SqlLibraryOperators.JSON_STORAGE_SIZE; import static org.apache.calcite.sql.fun.SqlLibraryOperators.JSON_TYPE; import static org.apache.calcite.sql.fun.SqlLibraryOperators.LEFT; +import static org.apache.calcite.sql.fun.SqlLibraryOperators.LOG; import static org.apache.calcite.sql.fun.SqlLibraryOperators.MD5; import static org.apache.calcite.sql.fun.SqlLibraryOperators.MONTHNAME; import static org.apache.calcite.sql.fun.SqlLibraryOperators.REGEXP_REPLACE; import static org.apache.calcite.sql.fun.SqlLibraryOperators.REPEAT; import static org.apache.calcite.sql.fun.SqlLibraryOperators.REVERSE; import static org.apache.calcite.sql.fun.SqlLibraryOperators.RIGHT; +import static org.apache.calcite.sql.fun.SqlLibraryOperators.RLIKE; +import static org.apache.calcite.sql.fun.SqlLibraryOperators.SEC; +import static org.apache.calcite.sql.fun.SqlLibraryOperators.SECH; import static org.apache.calcite.sql.fun.SqlLibraryOperators.SHA1; import static org.apache.calcite.sql.fun.SqlLibraryOperators.SINH; import static org.apache.calcite.sql.fun.SqlLibraryOperators.SOUNDEX; @@ -202,16 +211,18 @@ import static org.apache.calcite.sql.fun.SqlStdOperatorTable.MINUS_DATE; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.MOD; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.MULTIPLY; +import static org.apache.calcite.sql.fun.SqlStdOperatorTable.NEGATED_POSIX_REGEX_CASE_INSENSITIVE; +import static org.apache.calcite.sql.fun.SqlStdOperatorTable.NEGATED_POSIX_REGEX_CASE_SENSITIVE; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.NOT; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.NOT_EQUALS; -import static org.apache.calcite.sql.fun.SqlStdOperatorTable.NOT_LIKE; -import static org.apache.calcite.sql.fun.SqlStdOperatorTable.NOT_SIMILAR_TO; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.OCTET_LENGTH; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.OR; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.OVERLAY; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.PI; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.PLUS; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.POSITION; +import static org.apache.calcite.sql.fun.SqlStdOperatorTable.POSIX_REGEX_CASE_INSENSITIVE; +import static org.apache.calcite.sql.fun.SqlStdOperatorTable.POSIX_REGEX_CASE_SENSITIVE; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.POWER; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.RADIANS; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.RAND; @@ -230,6 +241,7 @@ import static org.apache.calcite.sql.fun.SqlStdOperatorTable.UNARY_MINUS; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.UNARY_PLUS; import static org.apache.calcite.sql.fun.SqlStdOperatorTable.UPPER; +import static org.apache.calcite.util.ReflectUtil.isStatic; import static org.apache.ignite.internal.processors.query.calcite.sql.fun.IgniteOwnSqlOperatorTable.GREATEST2; import static org.apache.ignite.internal.processors.query.calcite.sql.fun.IgniteOwnSqlOperatorTable.LEAST2; import static org.apache.ignite.internal.processors.query.calcite.sql.fun.IgniteOwnSqlOperatorTable.NULL_BOUND; @@ -321,30 +333,42 @@ public class RexImpTable { defineMethod(MOD, "mod", NullPolicy.STRICT); defineMethod(EXP, "exp", NullPolicy.STRICT); defineMethod(POWER, "power", NullPolicy.STRICT); - defineMethod(LN, "ln", NullPolicy.STRICT); - defineMethod(LOG10, "log10", NullPolicy.STRICT); defineMethod(ABS, "abs", NullPolicy.STRICT); - map.put(RAND, new RandImplementor()); - map.put(RAND_INTEGER, new RandIntegerImplementor()); - - defineMethod(ACOS, "acos", NullPolicy.STRICT); - defineMethod(ASIN, "asin", NullPolicy.STRICT); - defineMethod(ATAN, "atan", NullPolicy.STRICT); - defineMethod(ATAN2, "atan2", NullPolicy.STRICT); - defineMethod(CBRT, "cbrt", NullPolicy.STRICT); - defineMethod(COS, "cos", NullPolicy.STRICT); - defineMethod(COSH, "cosh", NullPolicy.STRICT); - defineMethod(COT, "cot", NullPolicy.STRICT); - defineMethod(DEGREES, "degrees", NullPolicy.STRICT); - defineMethod(RADIANS, "radians", NullPolicy.STRICT); - defineMethod(ROUND, "sround", NullPolicy.STRICT); - defineMethod(SIGN, "sign", NullPolicy.STRICT); - defineMethod(SIN, "sin", NullPolicy.STRICT); - defineMethod(SINH, "sinh", NullPolicy.STRICT); - defineMethod(TAN, "tan", NullPolicy.STRICT); - defineMethod(TANH, "tanh", NullPolicy.STRICT); - defineMethod(TRUNCATE, "struncate", NullPolicy.STRICT); + map.put(LN, new LogImplementor()); + map.put(LOG, new LogImplementor()); + map.put(LOG10, new LogImplementor()); + + defineReflective(RAND, BuiltInMethod.RAND.method, + BuiltInMethod.RAND_SEED.method); + defineReflective(RAND_INTEGER, BuiltInMethod.RAND_INTEGER.method, + BuiltInMethod.RAND_INTEGER_SEED.method); + + defineMethod(ACOS, BuiltInMethod.ACOS.method, NullPolicy.STRICT); + defineMethod(ACOSH, BuiltInMethod.ACOSH.method, NullPolicy.STRICT); + defineMethod(ASIN, BuiltInMethod.ASIN.method, NullPolicy.STRICT); + defineMethod(ASINH, BuiltInMethod.ASINH.method, NullPolicy.STRICT); + defineMethod(ATAN, BuiltInMethod.ATAN.method, NullPolicy.STRICT); + defineMethod(ATAN2, BuiltInMethod.ATAN2.method, NullPolicy.STRICT); + defineMethod(ATANH, BuiltInMethod.ATANH.method, NullPolicy.STRICT); + defineMethod(CBRT, BuiltInMethod.CBRT.method, NullPolicy.STRICT); + defineMethod(COS, BuiltInMethod.COS.method, NullPolicy.STRICT); + defineMethod(COSH, BuiltInMethod.COSH.method, NullPolicy.STRICT); + defineMethod(COT, BuiltInMethod.COT.method, NullPolicy.STRICT); + defineMethod(COTH, BuiltInMethod.COTH.method, NullPolicy.STRICT); + defineMethod(CSC, BuiltInMethod.CSC.method, NullPolicy.STRICT); + defineMethod(CSCH, BuiltInMethod.CSCH.method, NullPolicy.STRICT); + defineMethod(DEGREES, BuiltInMethod.DEGREES.method, NullPolicy.STRICT); + defineMethod(RADIANS, BuiltInMethod.RADIANS.method, NullPolicy.STRICT); + defineMethod(ROUND, BuiltInMethod.SROUND.method, NullPolicy.STRICT); + defineMethod(SEC, BuiltInMethod.SEC.method, NullPolicy.STRICT); + defineMethod(SECH, BuiltInMethod.SECH.method, NullPolicy.STRICT); + defineMethod(SIGN, BuiltInMethod.SIGN.method, NullPolicy.STRICT); + defineMethod(SIN, BuiltInMethod.SIN.method, NullPolicy.STRICT); + defineMethod(SINH, BuiltInMethod.SINH.method, NullPolicy.STRICT); + defineMethod(TAN, BuiltInMethod.TAN.method, NullPolicy.STRICT); + defineMethod(TANH, BuiltInMethod.TANH.method, NullPolicy.STRICT); + defineMethod(TRUNCATE, BuiltInMethod.STRUNCATE.method, NullPolicy.STRICT); map.put(PI, new PiImplementor()); @@ -391,31 +415,30 @@ public class RexImpTable { map.put(IS_NOT_FALSE, new IsNotFalseImplementor()); // LIKE and SIMILAR - final MethodImplementor likeImplementor = - new MethodImplementor(BuiltInMethod.LIKE.method, NullPolicy.STRICT, - false); - map.put(LIKE, likeImplementor); - map.put(NOT_LIKE, likeImplementor); - final MethodImplementor similarImplementor = - new MethodImplementor(BuiltInMethod.SIMILAR.method, NullPolicy.STRICT, - false); - map.put(SIMILAR_TO, similarImplementor); - map.put(NOT_SIMILAR_TO, NotImplementor.of(similarImplementor)); + defineReflective(LIKE, BuiltInMethod.LIKE.method, + BuiltInMethod.LIKE_ESCAPE.method); + defineReflective(ILIKE, BuiltInMethod.ILIKE.method, + BuiltInMethod.ILIKE_ESCAPE.method); + defineReflective(RLIKE, BuiltInMethod.RLIKE.method); + defineReflective(SIMILAR_TO, BuiltInMethod.SIMILAR.method, + BuiltInMethod.SIMILAR_ESCAPE.method); // POSIX REGEX - final MethodImplementor posixRegexImplementorCaseSensitive = - new PosixRegexMethodImplementor(true); - final MethodImplementor posixRegexImplementorCaseInsensitive = - new PosixRegexMethodImplementor(false); - map.put(SqlStdOperatorTable.POSIX_REGEX_CASE_INSENSITIVE, - posixRegexImplementorCaseInsensitive); - map.put(SqlStdOperatorTable.POSIX_REGEX_CASE_SENSITIVE, - posixRegexImplementorCaseSensitive); - map.put(SqlStdOperatorTable.NEGATED_POSIX_REGEX_CASE_INSENSITIVE, - NotImplementor.of(posixRegexImplementorCaseInsensitive)); - map.put(SqlStdOperatorTable.NEGATED_POSIX_REGEX_CASE_SENSITIVE, - NotImplementor.of(posixRegexImplementorCaseSensitive)); - map.put(REGEXP_REPLACE, new RegexpReplaceImplementor()); + ReflectiveImplementor insensitiveImplementor = + defineReflective(POSIX_REGEX_CASE_INSENSITIVE, + BuiltInMethod.POSIX_REGEX_INSENSITIVE.method); + ReflectiveImplementor sensitiveImplementor = + defineReflective(POSIX_REGEX_CASE_SENSITIVE, + BuiltInMethod.POSIX_REGEX_SENSITIVE.method); + map.put(NEGATED_POSIX_REGEX_CASE_INSENSITIVE, + NotImplementor.of(insensitiveImplementor)); + map.put(NEGATED_POSIX_REGEX_CASE_SENSITIVE, + NotImplementor.of(sensitiveImplementor)); + defineReflective(REGEXP_REPLACE, + BuiltInMethod.REGEXP_REPLACE3.method, + BuiltInMethod.REGEXP_REPLACE4.method, + BuiltInMethod.REGEXP_REPLACE5.method, + BuiltInMethod.REGEXP_REPLACE6.method); // Multisets & arrays defineMethod(CARDINALITY, BuiltInMethod.COLLECTION_SIZE.method, @@ -477,10 +500,11 @@ public class RexImpTable { // Json Operators defineMethod(JSON_VALUE_EXPRESSION, BuiltInMethod.JSON_VALUE_EXPRESSION.method, NullPolicy.STRICT); - defineMethod(JSON_EXISTS, BuiltInMethod.JSON_EXISTS.method, NullPolicy.ARG0); + defineReflective(JSON_EXISTS, BuiltInMethod.JSON_EXISTS2.method, + BuiltInMethod.JSON_EXISTS3.method); map.put(JSON_VALUE, new JsonValueImplementor(BuiltInMethod.JSON_VALUE.method)); - defineMethod(JSON_QUERY, BuiltInMethod.JSON_QUERY.method, NullPolicy.ARG0); + defineReflective(JSON_QUERY, BuiltInMethod.JSON_QUERY.method); defineMethod(JSON_TYPE, BuiltInMethod.JSON_TYPE.method, NullPolicy.ARG0); defineMethod(JSON_DEPTH, BuiltInMethod.JSON_DEPTH.method, NullPolicy.ARG0); defineMethod(JSON_KEYS, BuiltInMethod.JSON_KEYS.method, NullPolicy.ARG0); @@ -542,28 +566,6 @@ public class RexImpTable { defineMethod(IS_NOT_DISTINCT_FROM, IgniteMethod.IS_NOT_DISTINCT_FROM.method(), NullPolicy.NONE); } - /** */ - private Supplier constructorSupplier(Class klass) { - final Constructor constructor; - try { - constructor = klass.getDeclaredConstructor(); - } - catch (NoSuchMethodException e) { - throw new IllegalArgumentException( - klass + " should implement zero arguments constructor"); - } - return () -> { - try { - return constructor.newInstance(); - } - catch (InstantiationException | IllegalAccessException - | InvocationTargetException e) { - throw new IllegalStateException( - "Error while creating aggregate implementor " + constructor, e); - } - }; - } - /** */ private void defineMethod(SqlOperator operator, String functionName, NullPolicy nullPolicy) { map.put(operator, new MethodNameImplementor(functionName, nullPolicy, false)); @@ -574,6 +576,13 @@ private void defineMethod(SqlOperator operator, Method method, NullPolicy nullPo map.put(operator, new MethodImplementor(method, nullPolicy, false)); } + /** */ + private ReflectiveImplementor defineReflective(SqlOperator operator, Method... methods) { + final ReflectiveImplementor implementor = new ReflectiveImplementor(ImmutableList.copyOf(methods)); + map.put(operator, implementor); + return implementor; + } + /** */ private void defineUnary(SqlOperator operator, ExpressionType expressionType, NullPolicy nullPolicy, String backupMethodName) { @@ -1010,32 +1019,9 @@ private static class MethodImplementor extends AbstractRexCallImplementor { } /** - * Implementor for {@link org.apache.calcite.sql.fun.SqlPosixRegexOperator}s. - */ - private static class PosixRegexMethodImplementor extends MethodImplementor { - /** */ - protected final boolean caseSensitive; - - /** Constructor. */ - PosixRegexMethodImplementor(boolean caseSensitive) { - super(BuiltInMethod.POSIX_REGEX.method, NullPolicy.STRICT, false); - this.caseSensitive = caseSensitive; - } - - /** {@inheritDoc} */ - @Override Expression implementSafe(RexToLixTranslator translator, - RexCall call, List argValueList) { - assert argValueList.size() == 2; - // Add extra parameter (caseSensitive boolean flag), required by SqlFunctions#posixRegex. - final List newOperands = new ArrayList<>(argValueList); - newOperands.add(Expressions.constant(caseSensitive)); - return super.implementSafe(translator, call, newOperands); - } - } - - /** - * Implementor for JSON_VALUE function, convert to solid format "JSON_VALUE(json_doc, path, empty_behavior, - * empty_default, error_behavior, error default)" in order to simplify the runtime implementation. + * Implementor for JSON_VALUE function, convert to solid format + * "JSON_VALUE(json_doc, path, empty_behavior, empty_default, error_behavior, error default)" + * in order to simplify the runtime implementation. * *

We should avoid this when we support * variable arguments function. @@ -1049,7 +1035,6 @@ private static class JsonValueImplementor extends MethodImplementor { /** {@inheritDoc} */ @Override Expression implementSafe(RexToLixTranslator translator, RexCall call, List argValueList) { - final Expression expression; final List newOperands = new ArrayList<>(); newOperands.add(argValueList.get(0)); newOperands.add(argValueList.get(1)); @@ -1093,12 +1078,11 @@ else if (exprVal == SqlJsonEmptyOrError.ERROR) { newOperands.add(dfltValOnEmpty); newOperands.add(errorBehavior); newOperands.add(dfltValOnError); - Class clazz = method.getDeclaringClass(); - expression = EnumUtils.call(null, clazz, method.getName(), newOperands); - - final Type returnType = - translator.typeFactory.getJavaClass(call.getType()); - return EnumUtils.convert(expression, returnType); + List argValList0 = + ConverterUtils.fromInternal(method.getParameterTypes(), newOperands); + final Expression target = + Expressions.new_(method.getDeclaringClass()); + return Expressions.call(target, method, argValList0); } } @@ -1625,7 +1609,29 @@ private static class ValueConstructorImplementor } } - /** Implementor for the {@code ITEM} SQL operator. */ + /** Implementor for indexing an array using the {@code ITEM} SQL operator + * and the {@code OFFSET}, {@code ORDINAL}, {@code SAFE_OFFSET}, and + * {@code SAFE_ORDINAL} BigQuery operators. */ + private static class ArrayItemImplementor extends AbstractRexCallImplementor { + /** */ + ArrayItemImplementor() { + super("array_item", NullPolicy.STRICT, false); + } + + /** {@inheritDoc} */ + @Override Expression implementSafe(final RexToLixTranslator translator, + final RexCall call, final List argValueList) { + final SqlItemOperator itemOperator = (SqlItemOperator)call.getOperator(); + return Expressions.call(BuiltInMethod.ARRAY_ITEM.method, + Expressions.list(argValueList) + .append(Expressions.constant(itemOperator.offset)) + .append(Expressions.constant(itemOperator.safe))); + } + } + + /** General implementor for indexing a collection using the {@code ITEM} SQL operator. If the + * collection is an array, an instance of the ArrayItemImplementor is used to handle + * additional offset and out-of-bounds behavior that is only applicable for arrays. */ private static class ItemImplementor extends AbstractRexCallImplementor { /** */ ItemImplementor() { @@ -1639,16 +1645,16 @@ private static class ItemImplementor extends AbstractRexCallImplementor { /** {@inheritDoc} */ @Override Expression implementSafe(final RexToLixTranslator translator, final RexCall call, final List argValueList) { - final MethodImplementor implementor = + final AbstractRexCallImplementor implementor = getImplementor(call.getOperands().get(0).getType().getSqlTypeName()); return implementor.implementSafe(translator, call, argValueList); } /** */ - private MethodImplementor getImplementor(SqlTypeName sqlTypeName) { + private AbstractRexCallImplementor getImplementor(SqlTypeName sqlTypeName) { switch (sqlTypeName) { case ARRAY: - return new MethodImplementor(BuiltInMethod.ARRAY_ITEM.method, nullPolicy, false); + return new ArrayItemImplementor(); case MAP: return new MethodImplementor(BuiltInMethod.MAP_ITEM.method, nullPolicy, false); default: @@ -2205,76 +2211,86 @@ private static class LogicalNotImplementor extends AbstractRexCallImplementor { } } - /** - * Implementation that calls a given {@link Method}. + /** Implementor for the {@code LN}, {@code LOG}, and {@code LOG10} operators. * - *

When method is not static, a new instance of the required class is - * created. + *

Handles all logarithm functions using log rules to determine the + * appropriate base (i.e. base e for LN). */ - private static class ReflectiveImplementor extends AbstractRexCallImplementor { + private static class LogImplementor extends AbstractRexCallImplementor { /** */ - protected final Method method; - - /** */ - ReflectiveImplementor(Method method, NullPolicy nullPolicy) { - super("reflective_" + method.getName(), nullPolicy, false); - this.method = method; + LogImplementor() { + super("log", NullPolicy.STRICT, true); } /** {@inheritDoc} */ - @Override Expression implementSafe(RexToLixTranslator translator, - RexCall call, List argValueList) { - List argValList0 = ConverterUtils.fromInternal(method.getParameterTypes(), argValueList); - if ((method.getModifiers() & Modifier.STATIC) != 0) - return Expressions.call(method, argValList0); + @Override Expression implementSafe(final RexToLixTranslator translator, + final RexCall call, final List argValueList) { + return Expressions.call(BuiltInMethod.LOG.method, args(call, argValueList)); + } - // The UDF class must have a public zero-args constructor. - // Assume that the validator checked already. - final Expression target = Expressions.new_(method.getDeclaringClass()); - return Expressions.call(target, method, argValList0); + /** */ + private static List args(RexCall call, + List argValueList) { + Expression operand0 = argValueList.get(0); + final Expressions.FluentList list = Expressions.list(operand0); + switch (call.getOperator().getName()) { + case "LOG": + if (argValueList.size() == 2) + return list.append(argValueList.get(1)); + // fall through + case "LN": + return list.append(Expressions.constant(Math.exp(1))); + case "LOG10": + return list.append(Expressions.constant(BigDecimal.TEN)); + default: + throw new AssertionError("Operator not found: " + call.getOperator()); + } } } - /** Implementor for the {@code RAND} function. */ - private static class RandImplementor extends AbstractRexCallImplementor { + /** + * Implementation that a {@link java.lang.reflect.Method}. + * + *

If there are several methods in the list, calls the first that has the + * right number of arguments. + * + *

When method is not static, a new instance of the required class is + * created. + */ + private static class ReflectiveImplementor extends AbstractRexCallImplementor { /** */ - private final AbstractRexCallImplementor[] implementors = { - new ReflectiveImplementor(BuiltInMethod.RAND.method, nullPolicy), - new ReflectiveImplementor(BuiltInMethod.RAND_SEED.method, nullPolicy) - }; + protected final ImmutableList methods; /** */ - RandImplementor() { - super("rand", NullPolicy.STRICT, false); + ReflectiveImplementor(List methods) { + super("reflective_" + methods.get(0).getName(), NullPolicy.STRICT, false); + this.methods = ImmutableList.copyOf(methods); } /** {@inheritDoc} */ - @Override Expression implementSafe(final RexToLixTranslator translator, - final RexCall call, final List argValueList) { - return implementors[call.getOperands().size()] - .implementSafe(translator, call, argValueList); + @Override Expression implementSafe(RexToLixTranslator translator, + RexCall call, List argValList) { + for (Method method : methods) { + if (method.getParameterCount() == argValList.size()) + return implementSafe(method, argValList); + } + throw new IllegalArgumentException("no matching method"); } - } - /** Implementor for the {@code RAND_INTEGER} function. */ - private static class RandIntegerImplementor extends AbstractRexCallImplementor { /** */ - private final AbstractRexCallImplementor[] implementors = { - null, - new ReflectiveImplementor(BuiltInMethod.RAND_INTEGER.method, nullPolicy), - new ReflectiveImplementor(BuiltInMethod.RAND_INTEGER_SEED.method, nullPolicy) - }; - - /** */ - RandIntegerImplementor() { - super("rand_integer", NullPolicy.STRICT, false); - } - - /** {@inheritDoc} */ - @Override Expression implementSafe(final RexToLixTranslator translator, - final RexCall call, final List argValueList) { - return implementors[call.getOperands().size()] - .implementSafe(translator, call, argValueList); + protected MethodCallExpression implementSafe(Method method, + List argValList) { + List argValList0 = + ConverterUtils.fromInternal(method.getParameterTypes(), + argValList); + if (isStatic(method)) + return Expressions.call(method, argValList0); + else { + // The class must have a public zero-args constructor. + final Expression target = + Expressions.new_(method.getDeclaringClass()); + return Expressions.call(target, method, argValList0); + } } } @@ -2406,29 +2422,6 @@ private static class IsTrueImplementor extends AbstractRexCallImplementor { } } - /** Implementor for the {@code REGEXP_REPLACE} function. */ - private static class RegexpReplaceImplementor extends AbstractRexCallImplementor { - /** Implementors. */ - private final AbstractRexCallImplementor[] implementors = { - new ReflectiveImplementor(BuiltInMethod.REGEXP_REPLACE3.method, nullPolicy), - new ReflectiveImplementor(BuiltInMethod.REGEXP_REPLACE4.method, nullPolicy), - new ReflectiveImplementor(BuiltInMethod.REGEXP_REPLACE5.method, nullPolicy), - new ReflectiveImplementor(BuiltInMethod.REGEXP_REPLACE6.method, nullPolicy), - }; - - /** */ - RegexpReplaceImplementor() { - super("regexp_replace", NullPolicy.STRICT, false); - } - - /** {@inheritDoc} */ - @Override Expression implementSafe(RexToLixTranslator translator, - RexCall call, List argValueList) { - return implementors[call.getOperands().size() - 3] - .implementSafe(translator, call, argValueList); - } - } - /** Implementor for the {@code DEFAULT} function. */ private static class DefaultImplementor extends AbstractRexCallImplementor { /** */ diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexToLixTranslator.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexToLixTranslator.java index e697948cc0639..5de08f2f0e3c9 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexToLixTranslator.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexToLixTranslator.java @@ -47,6 +47,8 @@ import org.apache.calcite.rex.RexDynamicParam; import org.apache.calcite.rex.RexFieldAccess; import org.apache.calcite.rex.RexInputRef; +import org.apache.calcite.rex.RexLambda; +import org.apache.calcite.rex.RexLambdaRef; import org.apache.calcite.rex.RexLiteral; import org.apache.calcite.rex.RexLocalRef; import org.apache.calcite.rex.RexNode; @@ -929,6 +931,22 @@ private static Expression scaleIntervalToNumber( return deref(localRef).accept(this); } + /** {@inheritDoc} */ + @Override public Result visitLambdaRef(RexLambdaRef ref) { + final ParameterExpression valVariable = + Expressions.parameter( + typeFactory.getJavaClass(ref.getType()), ref.getName()); + + // Generate one line of code to check whether lambdaRef is null, e.g., + // "final boolean input_isNull = $0 == null;" + final Expression isNullExpression = checkNull(valVariable); + final ParameterExpression isNullVariable = + Expressions.parameter( + Boolean.TYPE, list.newName("input_isNull")); + list.add(Expressions.declare(Modifier.FINAL, isNullVariable, isNullExpression)); + return new Result(isNullVariable, valVariable); + } + /** * Visit {@code RexLiteral}. If it has never been visited before, {@code RexToLixTranslator} will generate two lines * of code. For example, when visiting a primitive int (10), the generated code snippet is: {@code final int @@ -1284,6 +1302,43 @@ private Result toInnerStorageType(final Result result, final Type storageType) { return visitInputRef(fieldRef); } + /** {@inheritDoc} */ + @Override public Result visitLambda(RexLambda lambda) { + final RexNode expression = lambda.getExpression(); + final List rexLambdaRefs = lambda.getParameters(); + + // Prepare parameter expressions for lambda expression + final ParameterExpression[] paramExpressions = + new ParameterExpression[rexLambdaRefs.size()]; + for (int i = 0; i < rexLambdaRefs.size(); i++) { + final RexLambdaRef rexLambdaRef = rexLambdaRefs.get(i); + paramExpressions[i] = + Expressions.parameter( + typeFactory.getJavaClass(rexLambdaRef.getType()), rexLambdaRef.getName()); + } + + // Generate code for lambda expression body + final RexToLixTranslator exprTranslator = setBlock(new BlockBuilder()); + final Result exprResult = expression.accept(exprTranslator); + exprTranslator.list.add( + Expressions.return_(null, exprResult.valueVariable)); + + // Generate code for lambda expression + final Expression functionExpression = + Expressions.lambda(exprTranslator.list.toBlock(), paramExpressions); + final ParameterExpression valVariable = + Expressions.parameter(functionExpression.getType(), list.newName("function_value")); + list.add(Expressions.declare(Modifier.FINAL, valVariable, functionExpression)); + + // Generate code for checking whether lambda expression is null + final Expression isNullExpression = checkNull(valVariable); + final ParameterExpression isNullVariable = + Expressions.parameter(Boolean.TYPE, list.newName("function_isNull")); + list.add(Expressions.declare(Modifier.FINAL, isNullVariable, isNullExpression)); + + return new Result(isNullVariable, valVariable); + } + /** */ Expression checkNull(Expression expr) { if (Primitive.flavor(expr.getType()) == Primitive.Flavor.PRIMITIVE) diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/agg/Accumulators.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/agg/Accumulators.java index e7656744dbe66..21c813e156bcd 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/agg/Accumulators.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/agg/Accumulators.java @@ -31,6 +31,8 @@ import org.apache.calcite.avatica.util.ByteString; import org.apache.calcite.rel.core.AggregateCall; import org.apache.calcite.rel.type.RelDataType; +import org.apache.calcite.rex.RexLiteral; +import org.apache.calcite.rex.RexNode; import org.apache.ignite.internal.processors.query.calcite.exec.ExecutionContext; import org.apache.ignite.internal.processors.query.calcite.exec.RowHandler; import org.apache.ignite.internal.processors.query.calcite.type.IgniteTypeFactory; @@ -84,6 +86,8 @@ private static Supplier> accumulatorFunctionFactory( return maxFactory(call, hnd); case "SINGLE_VALUE": return () -> new SingleVal<>(call, hnd); + case "LITERAL_AGG": + return () -> new LiteralVal<>(call, hnd); case "ANY_VALUE": return () -> new AnyVal<>(call, hnd); case "LISTAGG": @@ -312,6 +316,48 @@ private static class SingleVal extends AnyVal { } } + /** + * LITERAL_AGG accumulator, returns predefined literal value. + * Calcite`s implementation RexImpTable#LiteralAggImplementor. + */ + private static class LiteralVal extends AbstractAccumulator { + /** */ + public LiteralVal(AggregateCall aggCall, RowHandler hnd) { + super(aggCall, hnd); + } + + /** {@inheritDoc} */ + @Override public void add(Row row) { + // No-op. + } + + /** {@inheritDoc} */ + @Override public void apply(Accumulator other) { + // No-op. + } + + /** {@inheritDoc} */ + @Override public Object end() { + assert !F.isEmpty(aggregateCall().rexList) : "aggregateCall().rexList is empty for LITERAL_AGG"; + + RexNode rexNode = aggregateCall().rexList.get(0); + + assert rexNode instanceof RexLiteral; + + return ((RexLiteral)rexNode).getValue(); + } + + /** {@inheritDoc} */ + @Override public List argumentTypes(IgniteTypeFactory typeFactory) { + return F.asList(typeFactory.createTypeWithNullability(typeFactory.createSqlType(ANY), true)); + } + + /** {@inheritDoc} */ + @Override public RelDataType returnType(IgniteTypeFactory typeFactory) { + return aggregateCall().getType(); + } + } + /** */ private static class AnyVal extends AbstractAccumulator { /** */ diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/externalize/RelJson.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/externalize/RelJson.java index 98597e1d1d675..bc2473edaac65 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/externalize/RelJson.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/externalize/RelJson.java @@ -740,6 +740,7 @@ private Object toJson(AggregateCall node) { map.put("filter", node.filterArg); map.put("name", node.getName()); map.put("coll", toJson(node.getCollation())); + map.put("rexList", toJson(node.rexList)); return map; } diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/externalize/RelJsonReader.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/externalize/RelJsonReader.java index 531f9c94e1d51..472a2d17f06e8 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/externalize/RelJsonReader.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/externalize/RelJsonReader.java @@ -17,6 +17,7 @@ package org.apache.ignite.internal.processors.query.calcite.externalize; import java.io.IOException; +import java.math.BigDecimal; import java.util.AbstractList; import java.util.ArrayList; import java.util.LinkedHashMap; @@ -40,6 +41,7 @@ import org.apache.calcite.rel.type.RelDataType; import org.apache.calcite.rex.RexLiteral; import org.apache.calcite.rex.RexNode; +import org.apache.calcite.runtime.SqlFunctions; import org.apache.calcite.sql.SqlAggFunction; import org.apache.calcite.util.ImmutableBitSet; import org.apache.calcite.util.Pair; @@ -220,6 +222,11 @@ private RelInputImpl(Map jsonRel) { return ((Number)jsonRel.get(tag)).floatValue(); } + /** {@inheritDoc} */ + @Override public BigDecimal getBigDecimal(String tag) { + return SqlFunctions.toBigDecimal(jsonRel.get(tag)); + } + /** {@inheritDoc} */ @Override public boolean getBoolean(String tag, boolean default_) { Boolean b = (Boolean)jsonRel.get(tag); @@ -331,10 +338,13 @@ private AggregateCall toAggCall(Map jsonAggCall) { Boolean distinct = (Boolean)jsonAggCall.get("distinct"); List operands = (List)jsonAggCall.get("operands"); Integer filterOperand = (Integer)jsonAggCall.get("filter"); - RelDataType type = relJson.toType(Commons.typeFactory(Commons.emptyCluster()), jsonAggCall.get("type")); + RelDataType type = relJson.toType(Commons.typeFactory(), jsonAggCall.get("type")); String name = (String)jsonAggCall.get("name"); RelCollation collation = relJson.toCollation((List>)jsonAggCall.get("coll")); - return AggregateCall.create(aggregation, distinct, false, false, operands, + List rexList = Commons.transform((List)jsonAggCall.get("rexList"), + node -> relJson.toRex(this, node)); + + return AggregateCall.create(aggregation, distinct, false, false, rexList, operands, filterOperand == null ? -1 : filterOperand, null, collation, type, name); } } diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/PlannerPhase.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/PlannerPhase.java index 73b315ae3d630..8e82d49404719 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/PlannerPhase.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/PlannerPhase.java @@ -211,6 +211,9 @@ public enum PlannerPhase { // Works also as CoreRules#JOIN_COMMUTE and overrides it if defined after. CoreRules.JOIN_COMMUTE_OUTER, + PruneEmptyRules.CORRELATE_LEFT_INSTANCE, + PruneEmptyRules.CORRELATE_RIGHT_INSTANCE, + // Useful of this rule is not clear now. // CoreRules.AGGREGATE_REDUCE_FUNCTIONS, diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/fun/IgniteStdSqlOperatorTable.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/fun/IgniteStdSqlOperatorTable.java index 25f8ea4dc5fba..1b7492d958ac3 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/fun/IgniteStdSqlOperatorTable.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/fun/IgniteStdSqlOperatorTable.java @@ -16,6 +16,7 @@ */ package org.apache.ignite.internal.processors.query.calcite.sql.fun; +import org.apache.calcite.sql.fun.SqlInternalOperators; import org.apache.calcite.sql.fun.SqlLibraryOperators; import org.apache.calcite.sql.fun.SqlStdOperatorTable; import org.apache.calcite.sql.util.ReflectiveSqlOperatorTable; @@ -157,14 +158,18 @@ public IgniteStdSqlOperatorTable() { register(SqlStdOperatorTable.RAND); // Random. register(SqlStdOperatorTable.RAND_INTEGER); // Integer random. register(SqlStdOperatorTable.ACOS); // Arc cosine. + register(SqlLibraryOperators.ACOSH); // Hyperbolic arc cosine. register(SqlStdOperatorTable.ASIN); // Arc sine. + register(SqlLibraryOperators.ASINH); // Hyperbolic arc sine. register(SqlStdOperatorTable.ATAN); // Arc tangent. register(SqlStdOperatorTable.ATAN2); // Angle from coordinates. + register(SqlLibraryOperators.ATANH); // Hyperbolic arc tangent. register(SqlStdOperatorTable.SQRT); // Square root. register(SqlStdOperatorTable.CBRT); // Cube root. register(SqlStdOperatorTable.COS); // Cosine register(SqlLibraryOperators.COSH); // Hyperbolic cosine. register(SqlStdOperatorTable.COT); // Cotangent. + register(SqlLibraryOperators.COTH); // Hyperbolic cotangent. register(SqlStdOperatorTable.DEGREES); // Radians to degrees. register(SqlStdOperatorTable.RADIANS); // Degrees to radians. register(SqlStdOperatorTable.ROUND); @@ -173,6 +178,10 @@ public IgniteStdSqlOperatorTable() { register(SqlLibraryOperators.SINH); // Hyperbolic sine. register(SqlStdOperatorTable.TAN); // Tangent. register(SqlLibraryOperators.TANH); // Hyperbolic tangent. + register(SqlLibraryOperators.SEC); // Secant. + register(SqlLibraryOperators.SECH); // Hyperbolic secant. + register(SqlLibraryOperators.CSC); // Cosecant. + register(SqlLibraryOperators.CSCH); // Hyperbolic cosecant. register(SqlStdOperatorTable.TRUNCATE); register(SqlStdOperatorTable.PI); @@ -291,6 +300,9 @@ public IgniteStdSqlOperatorTable() { register(SqlStdOperatorTable.IS_NOT_JSON_ARRAY); register(SqlStdOperatorTable.IS_NOT_JSON_SCALAR); + // Aggregate functions. + register(SqlInternalOperators.LITERAL_AGG); // Internal operator, not implemented, required for serialization. + // Current time functions. register(SqlStdOperatorTable.CURRENT_TIME); register(SqlStdOperatorTable.CURRENT_TIMESTAMP); diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java index a8697f89e9d84..b2c95bb19eb7e 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java @@ -33,6 +33,7 @@ import org.apache.calcite.sql.SqlExplain; import org.apache.calcite.sql.SqlExplainFormat; import org.apache.calcite.sql.SqlExplainLevel; +import org.apache.calcite.sql.SqlFunction; import org.apache.calcite.sql.SqlFunctionCategory; import org.apache.calcite.sql.SqlHint; import org.apache.calcite.sql.SqlIdentifier; @@ -51,9 +52,11 @@ import org.apache.calcite.sql.SqlJsonValueEmptyOrErrorBehavior; import org.apache.calcite.sql.SqlJsonValueReturning; import org.apache.calcite.sql.SqlKind; +import org.apache.calcite.sql.SqlLambda; import org.apache.calcite.sql.SqlLiteral; import org.apache.calcite.sql.SqlMatchRecognize; import org.apache.calcite.sql.SqlMerge; +import org.apache.calcite.sql.SqlMapTypeNameSpec; import org.apache.calcite.sql.SqlNode; import org.apache.calcite.sql.SqlNodeList; import org.apache.calcite.sql.SqlNumericLiteral; @@ -92,6 +95,7 @@ import org.apache.calcite.sql.parser.SqlParserUtil; import org.apache.calcite.sql.type.SqlTypeName; import org.apache.calcite.sql.validate.SqlConformance; +import org.apache.calcite.sql.validate.SqlConformanceEnum; import org.apache.calcite.util.Glossary; import org.apache.calcite.util.Pair; import org.apache.calcite.util.SourceStringReader; @@ -133,6 +137,7 @@ public class IgniteSqlParserImpl extends SqlAbstractParserImpl implements Ignite SqlLiteral.createExactNumeric("1", SqlParserPos.ZERO); private static final SqlLiteral LITERAL_MINUS_ONE = SqlLiteral.createExactNumeric("-1", SqlParserPos.ZERO); + private static final BigDecimal ONE_HUNDRED = BigDecimal.valueOf(100L); private static Metadata metadata; @@ -684,19 +689,29 @@ final public void FetchClause(SqlNode[] offsetFetch) throws ParseException { * Parses a LIMIT clause in an ORDER BY expression. */ final public void LimitClause(Span s, SqlNode[] offsetFetch) throws ParseException { + final String error; jj_consume_token(LIMIT); s.add(this); - if (jj_2_21(2)) { + if (jj_2_23(2)) { offsetFetch[0] = UnsignedNumericLiteralOrParam(); jj_consume_token(COMMA); - offsetFetch[1] = UnsignedNumericLiteralOrParam(); + if (jj_2_21(2)) { + offsetFetch[1] = UnsignedNumericLiteralOrParam(); + error = "count"; + } else if (jj_2_22(2)) { + jj_consume_token(ALL); + error = "ALL"; + } else { + jj_consume_token(-1); + throw new ParseException(); + } if (!this.conformance.isLimitStartCountAllowed()) { {if (true) throw SqlUtil.newContextException(s.end(this), - RESOURCE.limitStartCountNotAllowed());} + RESOURCE.limitStartCountOrAllNotAllowed(error));} } - } else if (jj_2_22(2)) { + } else if (jj_2_24(2)) { offsetFetch[1] = UnsignedNumericLiteralOrParam(); - } else if (jj_2_23(2)) { + } else if (jj_2_25(2)) { jj_consume_token(ALL); } else { jj_consume_token(-1); @@ -709,15 +724,15 @@ final public void LimitClause(Span s, SqlNode[] offsetFetch) throws ParseExcepti */ final public SqlNode LeafQuery(ExprContext exprContext) throws ParseException { SqlNode e; - if (jj_2_24(2)) { + if (jj_2_26(2)) { // ensure a query is legal in this context checkQueryExpression(exprContext); e = SqlSelect(); {if (true) return e;} - } else if (jj_2_25(2)) { + } else if (jj_2_27(2)) { e = TableConstructor(); {if (true) return e;} - } else if (jj_2_26(2)) { + } else if (jj_2_28(2)) { e = ExplicitTable(getPos()); {if (true) return e;} } else { @@ -796,7 +811,7 @@ final public SqlNodeList ParenthesizedQueryOrCommaList(ExprContext exprContext) list.add(e); label_3: while (true) { - if (jj_2_27(2)) { + if (jj_2_29(2)) { ; } else { break label_3; @@ -831,10 +846,10 @@ final public SqlNodeList ParenthesizedQueryOrCommaListWithDefault(ExprContext ex firstExprContext = ExprContext.ACCEPT_ALL; break; } - if (jj_2_28(2)) { + if (jj_2_30(2)) { e = OrderedQueryOrExpr(firstExprContext); list.add(e); - } else if (jj_2_29(2)) { + } else if (jj_2_31(2)) { e = Default(); list.add(e); } else { @@ -843,7 +858,7 @@ final public SqlNodeList ParenthesizedQueryOrCommaListWithDefault(ExprContext ex } label_4: while (true) { - if (jj_2_30(2)) { + if (jj_2_32(2)) { ; } else { break label_4; @@ -851,10 +866,10 @@ final public SqlNodeList ParenthesizedQueryOrCommaListWithDefault(ExprContext ex jj_consume_token(COMMA); // a comma-list can't appear where only a query is expected checkNonQueryExpression(exprContext); - if (jj_2_31(2)) { + if (jj_2_33(2)) { e = Expression(exprContext); list.add(e); - } else if (jj_2_32(2)) { + } else if (jj_2_34(2)) { e = Default(); list.add(e); } else { @@ -887,7 +902,7 @@ final public List FunctionParameterList(ExprContext exprContext) throws final SqlLiteral qualifier; final List list = new ArrayList(); jj_consume_token(LPAREN); - if (jj_2_33(2)) { + if (jj_2_35(2)) { qualifier = AllOrDistinct(); list.add(qualifier); } else { @@ -896,7 +911,7 @@ final public List FunctionParameterList(ExprContext exprContext) throws AddArg0(list, exprContext); label_5: while (true) { - if (jj_2_34(2)) { + if (jj_2_36(2)) { ; } else { break label_5; @@ -912,10 +927,10 @@ final public List FunctionParameterList(ExprContext exprContext) throws } final public SqlLiteral AllOrDistinct() throws ParseException { - if (jj_2_35(2)) { + if (jj_2_37(2)) { jj_consume_token(DISTINCT); {if (true) return SqlSelectKeyword.DISTINCT.symbol(getPos());} - } else if (jj_2_36(2)) { + } else if (jj_2_38(2)) { jj_consume_token(ALL); {if (true) return SqlSelectKeyword.ALL.symbol(getPos());} } else { @@ -944,17 +959,19 @@ final public void AddArg0(List list, ExprContext exprContext) throws Pa break; } } - if (jj_2_37(2)) { + if (jj_2_39(2)) { name = SimpleIdentifier(); jj_consume_token(NAMED_ARGUMENT_ASSIGNMENT); } else { name = null; } - if (jj_2_38(2)) { + if (jj_2_40(2)) { e = Default(); - } else if (jj_2_39(3)) { + } else if (jj_2_41(2147483647)) { + e = LambdaExpression(); + } else if (jj_2_42(3)) { e = TableParam(); - } else if (jj_2_40(2)) { + } else if (jj_2_43(2)) { e = PartitionedQueryOrQueryOrExpr(firstExprContext); } else { jj_consume_token(-1); @@ -970,17 +987,19 @@ final public void AddArg0(List list, ExprContext exprContext) throws Pa final public void AddArg(List list, ExprContext exprContext) throws ParseException { final SqlIdentifier name; SqlNode e; - if (jj_2_41(2)) { + if (jj_2_44(2)) { name = SimpleIdentifier(); jj_consume_token(NAMED_ARGUMENT_ASSIGNMENT); } else { name = null; } - if (jj_2_42(2)) { + if (jj_2_45(2)) { e = Default(); - } else if (jj_2_43(2)) { + } else if (jj_2_46(2147483647)) { + e = LambdaExpression(); + } else if (jj_2_47(2)) { e = Expression(exprContext); - } else if (jj_2_44(2)) { + } else if (jj_2_48(2)) { e = TableParam(); } else { jj_consume_token(-1); @@ -1023,13 +1042,13 @@ final public SqlNodeList SqlStmtList() throws ParseException { stmtList.add(stmt); label_6: while (true) { - if (jj_2_45(2)) { + if (jj_2_49(2)) { ; } else { break label_6; } jj_consume_token(SEMICOLON); - if (jj_2_46(2)) { + if (jj_2_50(2)) { stmt = SqlStmt(); stmtList.add(stmt); } else { @@ -1046,55 +1065,55 @@ final public SqlNodeList SqlStmtList() throws ParseException { */ final public SqlNode SqlStmt() throws ParseException { SqlNode stmt; - if (jj_2_47(2)) { + if (jj_2_51(2)) { stmt = SqlAlterTable(); - } else if (jj_2_48(2)) { + } else if (jj_2_52(2)) { stmt = SqlAlterUser(); - } else if (jj_2_49(2)) { + } else if (jj_2_53(2)) { stmt = SqlKillScanQuery(); - } else if (jj_2_50(2)) { + } else if (jj_2_54(2)) { stmt = SqlKillContinuousQuery(); - } else if (jj_2_51(2)) { + } else if (jj_2_55(2)) { stmt = SqlKillService(); - } else if (jj_2_52(2)) { + } else if (jj_2_56(2)) { stmt = SqlKillTransaction(); - } else if (jj_2_53(2)) { + } else if (jj_2_57(2)) { stmt = SqlKillComputeTask(); - } else if (jj_2_54(2)) { + } else if (jj_2_58(2)) { stmt = SqlKillQuery(); - } else if (jj_2_55(2)) { + } else if (jj_2_59(2)) { stmt = SqlCommitTransaction(); - } else if (jj_2_56(2)) { + } else if (jj_2_60(2)) { stmt = SqlRollbackTransaction(); - } else if (jj_2_57(2)) { + } else if (jj_2_61(2)) { stmt = SqlStatisticsAnalyze(); - } else if (jj_2_58(2)) { + } else if (jj_2_62(2)) { stmt = SqlStatisticsRefresh(); - } else if (jj_2_59(2)) { + } else if (jj_2_63(2)) { stmt = SqlStatisticsDrop(); - } else if (jj_2_60(2)) { + } else if (jj_2_64(2)) { stmt = SqlSetOption(Span.of(), null); - } else if (jj_2_61(2)) { + } else if (jj_2_65(2)) { stmt = SqlAlter(); - } else if (jj_2_62(2)) { + } else if (jj_2_66(2)) { stmt = SqlCreate(); - } else if (jj_2_63(2)) { + } else if (jj_2_67(2)) { stmt = SqlDrop(); - } else if (jj_2_64(2)) { + } else if (jj_2_68(2)) { stmt = OrderedQueryOrExpr(ExprContext.ACCEPT_QUERY); - } else if (jj_2_65(2)) { + } else if (jj_2_69(2)) { stmt = SqlExplain(); - } else if (jj_2_66(2)) { + } else if (jj_2_70(2)) { stmt = SqlDescribe(); - } else if (jj_2_67(2)) { + } else if (jj_2_71(2)) { stmt = SqlInsert(); - } else if (jj_2_68(2)) { + } else if (jj_2_72(2)) { stmt = SqlDelete(); - } else if (jj_2_69(2)) { + } else if (jj_2_73(2)) { stmt = SqlUpdate(); - } else if (jj_2_70(2)) { + } else if (jj_2_74(2)) { stmt = SqlMerge(); - } else if (jj_2_71(2)) { + } else if (jj_2_75(2)) { stmt = SqlProcedureCall(); } else { jj_consume_token(-1); @@ -1116,7 +1135,7 @@ final public SqlNode SqlStmtEof() throws ParseException { } final public boolean IfNotExistsOpt() throws ParseException { - if (jj_2_72(2)) { + if (jj_2_76(2)) { jj_consume_token(IF); jj_consume_token(NOT); jj_consume_token(EXISTS); @@ -1130,20 +1149,20 @@ final public boolean IfNotExistsOpt() throws ParseException { final public SqlNodeList WithCreateTableOptionList() throws ParseException { List list = new ArrayList(); final Span s; - if (jj_2_76(2)) { + if (jj_2_80(2)) { jj_consume_token(WITH); s = span(); - if (jj_2_74(2)) { + if (jj_2_78(2)) { jj_consume_token(QUOTED_IDENTIFIER); {if (true) return IgniteSqlCreateTableOption.parseOptionList( SqlParserUtil.stripQuotes(token.image, DQ, DQ, DQDQ, quotedCasing), getPos().withQuoting(true) );} - } else if (jj_2_75(2)) { + } else if (jj_2_79(2)) { CreateTableOption(list); label_7: while (true) { - if (jj_2_73(2)) { + if (jj_2_77(2)) { ; } else { break label_7; @@ -1165,37 +1184,37 @@ final public SqlNodeList WithCreateTableOptionList() throws ParseException { } final public SqlLiteral CreateTableOptionKey() throws ParseException { - if (jj_2_77(2)) { + if (jj_2_81(2)) { jj_consume_token(TEMPLATE); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.TEMPLATE, getPos());} - } else if (jj_2_78(2)) { + } else if (jj_2_82(2)) { jj_consume_token(BACKUPS); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.BACKUPS, getPos());} - } else if (jj_2_79(2)) { + } else if (jj_2_83(2)) { jj_consume_token(AFFINITY_KEY); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.AFFINITY_KEY, getPos());} - } else if (jj_2_80(2)) { + } else if (jj_2_84(2)) { jj_consume_token(ATOMICITY); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.ATOMICITY, getPos());} - } else if (jj_2_81(2)) { + } else if (jj_2_85(2)) { jj_consume_token(WRITE_SYNCHRONIZATION_MODE); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.WRITE_SYNCHRONIZATION_MODE, getPos());} - } else if (jj_2_82(2)) { + } else if (jj_2_86(2)) { jj_consume_token(CACHE_GROUP); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.CACHE_GROUP, getPos());} - } else if (jj_2_83(2)) { + } else if (jj_2_87(2)) { jj_consume_token(CACHE_NAME); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.CACHE_NAME, getPos());} - } else if (jj_2_84(2)) { + } else if (jj_2_88(2)) { jj_consume_token(DATA_REGION); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.DATA_REGION, getPos());} - } else if (jj_2_85(2)) { + } else if (jj_2_89(2)) { jj_consume_token(KEY_TYPE); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.KEY_TYPE, getPos());} - } else if (jj_2_86(2)) { + } else if (jj_2_90(2)) { jj_consume_token(VALUE_TYPE); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.VALUE_TYPE, getPos());} - } else if (jj_2_87(2)) { + } else if (jj_2_91(2)) { jj_consume_token(ENCRYPTED); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.ENCRYPTED, getPos());} } else { @@ -1212,9 +1231,9 @@ final public void CreateTableOption(List list) throws ParseException { key = CreateTableOptionKey(); s = span(); jj_consume_token(EQ); - if (jj_2_88(2)) { + if (jj_2_92(2)) { val = Literal(); - } else if (jj_2_89(2)) { + } else if (jj_2_93(2)) { val = SimpleIdentifier(); } else { jj_consume_token(-1); @@ -1225,9 +1244,9 @@ final public void CreateTableOption(List list) throws ParseException { final public SqlDataTypeSpec DataTypeEx() throws ParseException { final SqlDataTypeSpec dt; - if (jj_2_90(2)) { + if (jj_2_94(2)) { dt = DataType(); - } else if (jj_2_91(2)) { + } else if (jj_2_95(2)) { dt = IntervalType(); } else { jj_consume_token(-1); @@ -1255,11 +1274,11 @@ final public void TableElement(List list) throws ParseException { final ColumnStrategy strategy; final SqlNode dflt; SqlIdentifier id = null; - if (jj_2_95(2)) { + if (jj_2_99(2)) { id = SimpleIdentifier(); type = DataTypeEx(); nullable = NullableOptDefaultTrue(); - if (jj_2_92(2)) { + if (jj_2_96(2)) { jj_consume_token(DEFAULT_); s.add(this); dflt = Literal(); @@ -1269,7 +1288,7 @@ final public void TableElement(List list) throws ParseException { strategy = nullable ? ColumnStrategy.NULLABLE : ColumnStrategy.NOT_NULLABLE; } - if (jj_2_93(2)) { + if (jj_2_97(2)) { jj_consume_token(PRIMARY); s.add(this); jj_consume_token(KEY); @@ -1281,8 +1300,8 @@ final public void TableElement(List list) throws ParseException { list.add( SqlDdlNodes.column(s.add(id).end(this), id, type.withNullable(nullable), dflt, strategy)); - } else if (jj_2_96(2)) { - if (jj_2_94(2)) { + } else if (jj_2_100(2)) { + if (jj_2_98(2)) { jj_consume_token(CONSTRAINT); s.add(this); id = SimpleIdentifier(); @@ -1308,7 +1327,7 @@ final public SqlNodeList TableElementList() throws ParseException { TableElement(list); label_8: while (true) { - if (jj_2_97(2)) { + if (jj_2_101(2)) { ; } else { break label_8; @@ -1330,12 +1349,12 @@ final public SqlCreate SqlCreateTable(Span s, boolean replace) throws ParseExcep jj_consume_token(TABLE); ifNotExists = IfNotExistsOpt(); id = CompoundIdentifier(); - if (jj_2_99(3)) { + if (jj_2_103(3)) { columnList = TableElementList(); optionList = WithCreateTableOptionList(); query = null; - } else if (jj_2_100(2)) { - if (jj_2_98(2)) { + } else if (jj_2_104(2)) { + if (jj_2_102(2)) { columnList = ParenthesizedSimpleIdentifierList(); } else { columnList = null; @@ -1356,10 +1375,10 @@ final public SqlNode IndexedColumn() throws ParseException { final Span s; SqlNode col; col = SimpleIdentifier(); - if (jj_2_103(2)) { - if (jj_2_101(2)) { + if (jj_2_107(2)) { + if (jj_2_105(2)) { jj_consume_token(ASC); - } else if (jj_2_102(2)) { + } else if (jj_2_106(2)) { jj_consume_token(DESC); col = SqlStdOperatorTable.DESC.createCall(getPos(), col); } else { @@ -1383,7 +1402,7 @@ final public SqlNodeList IndexedColumnList() throws ParseException { list.add(col); label_9: while (true) { - if (jj_2_104(2)) { + if (jj_2_108(2)) { ; } else { break label_9; @@ -1406,7 +1425,7 @@ final public SqlCreate SqlCreateIndex(Span s, boolean replace) throws ParseExcep SqlNumericLiteral inlineSize = null; jj_consume_token(INDEX); ifNotExists = IfNotExistsOpt(); - if (jj_2_105(2)) { + if (jj_2_109(2)) { idxId = SimpleIdentifier(); } else { ; @@ -1416,19 +1435,19 @@ final public SqlCreate SqlCreateIndex(Span s, boolean replace) throws ParseExcep columnList = IndexedColumnList(); label_10: while (true) { - if (jj_2_106(2)) { + if (jj_2_110(2)) { ; } else { break label_10; } - if (jj_2_107(2)) { + if (jj_2_111(2)) { jj_consume_token(PARALLEL); jj_consume_token(UNSIGNED_INTEGER_LITERAL); if (parallel != null) {if (true) throw SqlUtil.newContextException(getPos(), IgniteResource.INSTANCE.optionAlreadyDefined("PARALLEL"));} parallel = SqlLiteral.createExactNumeric(token.image, getPos()); - } else if (jj_2_108(2)) { + } else if (jj_2_112(2)) { jj_consume_token(INLINE_SIZE); jj_consume_token(UNSIGNED_INTEGER_LITERAL); if (inlineSize != null) @@ -1445,7 +1464,7 @@ final public SqlCreate SqlCreateIndex(Span s, boolean replace) throws ParseExcep } final public boolean IfExistsOpt() throws ParseException { - if (jj_2_109(2)) { + if (jj_2_113(2)) { jj_consume_token(IF); jj_consume_token(EXISTS); {if (true) return true;} @@ -1496,7 +1515,7 @@ final public SqlNodeList ColumnWithTypeList() throws ParseException { list.add(col); label_11: while (true) { - if (jj_2_110(2)) { + if (jj_2_114(2)) { ; } else { break label_11; @@ -1517,7 +1536,7 @@ final public SqlNode ColumnWithType() throws ParseException { final Span s = Span.of(); id = SimpleIdentifier(); type = DataTypeEx(); - if (jj_2_111(2)) { + if (jj_2_115(2)) { jj_consume_token(NOT); jj_consume_token(NULL); nullable = false; @@ -1531,10 +1550,10 @@ final public SqlNode ColumnWithType() throws ParseException { final public SqlNodeList ColumnWithTypeOrList() throws ParseException { SqlNode col; SqlNodeList list; - if (jj_2_112(2)) { + if (jj_2_116(2)) { col = ColumnWithType(); {if (true) return new SqlNodeList(Collections.singletonList(col), col.getParserPosition());} - } else if (jj_2_113(2)) { + } else if (jj_2_117(2)) { list = ColumnWithTypeList(); {if (true) return list;} } else { @@ -1556,15 +1575,15 @@ final public SqlNode SqlAlterTable() throws ParseException { jj_consume_token(TABLE); ifExists = IfExistsOpt(); id = CompoundIdentifier(); - if (jj_2_116(2)) { + if (jj_2_120(2)) { jj_consume_token(LOGGING); {if (true) return new IgniteSqlAlterTable(s.end(this), ifExists, id, true);} - } else if (jj_2_117(2)) { + } else if (jj_2_121(2)) { jj_consume_token(NOLOGGING); {if (true) return new IgniteSqlAlterTable(s.end(this), ifExists, id, false);} - } else if (jj_2_118(2)) { + } else if (jj_2_122(2)) { jj_consume_token(ADD); - if (jj_2_114(2)) { + if (jj_2_118(2)) { jj_consume_token(COLUMN); } else { ; @@ -1572,9 +1591,9 @@ final public SqlNode SqlAlterTable() throws ParseException { colIgnoreErr = IfNotExistsOpt(); cols = ColumnWithTypeOrList(); {if (true) return new IgniteSqlAlterTableAddColumn(s.end(this), ifExists, id, colIgnoreErr, cols);} - } else if (jj_2_119(2)) { + } else if (jj_2_123(2)) { jj_consume_token(DROP); - if (jj_2_115(2)) { + if (jj_2_119(2)) { jj_consume_token(COLUMN); } else { ; @@ -1626,16 +1645,16 @@ final public SqlDrop SqlDropUser(Span s, boolean replace) throws ParseException final public SqlNumericLiteral SignedIntegerLiteral() throws ParseException { final Span s; - if (jj_2_120(2)) { + if (jj_2_124(2)) { jj_consume_token(PLUS); jj_consume_token(UNSIGNED_INTEGER_LITERAL); {if (true) return SqlLiteral.createExactNumeric(token.image, getPos());} - } else if (jj_2_121(2)) { + } else if (jj_2_125(2)) { jj_consume_token(MINUS); s = span(); jj_consume_token(UNSIGNED_INTEGER_LITERAL); {if (true) return SqlLiteral.createNegative(SqlLiteral.createExactNumeric(token.image, getPos()), s.end(this));} - } else if (jj_2_122(2)) { + } else if (jj_2_126(2)) { jj_consume_token(UNSIGNED_INTEGER_LITERAL); {if (true) return SqlLiteral.createExactNumeric(token.image, getPos());} } else { @@ -1739,7 +1758,7 @@ final public SqlNode SqlKillComputeTask() throws ParseException { } final public boolean IsAsyncOpt() throws ParseException { - if (jj_2_123(2)) { + if (jj_2_127(2)) { jj_consume_token(ASYNC); {if (true) return true;} } else { @@ -1770,7 +1789,7 @@ final public SqlNode SqlCommitTransaction() throws ParseException { final Span s; jj_consume_token(COMMIT); s = span(); - if (jj_2_124(2)) { + if (jj_2_128(2)) { jj_consume_token(TRANSACTION); } else { ; @@ -1783,7 +1802,7 @@ final public SqlNode SqlRollbackTransaction() throws ParseException { final Span s; jj_consume_token(ROLLBACK); s = span(); - if (jj_2_125(2)) { + if (jj_2_129(2)) { jj_consume_token(TRANSACTION); } else { ; @@ -1797,7 +1816,7 @@ final public IgniteSqlStatisticsTable StatisticsTable() throws ParseException { final SqlIdentifier id; final SqlNodeList columnList; id = CompoundIdentifier(); - if (jj_2_126(2)) { + if (jj_2_130(2)) { columnList = ParenthesizedSimpleIdentifierList(); } else { columnList = null; @@ -1814,7 +1833,7 @@ final public SqlNodeList StatisticsTables() throws ParseException { tbls.add(tbl); label_12: while (true) { - if (jj_2_127(2)) { + if (jj_2_131(2)) { ; } else { break label_12; @@ -1830,14 +1849,14 @@ final public SqlNodeList StatisticsTables() throws ParseException { final public SqlNodeList WithStatisticsAnalyzeOptionList() throws ParseException { List list = new ArrayList(); final Span s; - if (jj_2_131(2)) { + if (jj_2_135(2)) { jj_consume_token(WITH); s = span(); - if (jj_2_129(2)) { + if (jj_2_133(2)) { StatisticsAnalyzeOption(list); label_13: while (true) { - if (jj_2_128(2)) { + if (jj_2_132(2)) { ; } else { break label_13; @@ -1847,7 +1866,7 @@ final public SqlNodeList WithStatisticsAnalyzeOptionList() throws ParseException StatisticsAnalyzeOption(list); } {if (true) return new SqlNodeList(list, s.end(this));} - } else if (jj_2_130(2)) { + } else if (jj_2_134(2)) { jj_consume_token(QUOTED_IDENTIFIER); {if (true) return IgniteSqlStatisticsAnalyzeOption.parseOptionList( SqlParserUtil.stripQuotes(token.image, DQ, DQ, DQDQ, quotedCasing), @@ -1865,19 +1884,19 @@ final public SqlNodeList WithStatisticsAnalyzeOptionList() throws ParseException } final public SqlLiteral StatisticsAnalyzeOptionKey() throws ParseException { - if (jj_2_132(2)) { + if (jj_2_136(2)) { jj_consume_token(DISTINCT); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.DISTINCT, getPos());} - } else if (jj_2_133(2)) { + } else if (jj_2_137(2)) { jj_consume_token(TOTAL); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.TOTAL, getPos());} - } else if (jj_2_134(2)) { + } else if (jj_2_138(2)) { jj_consume_token(SIZE); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.SIZE, getPos());} - } else if (jj_2_135(2)) { + } else if (jj_2_139(2)) { jj_consume_token(NULLS); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.NULLS, getPos());} - } else if (jj_2_136(2)) { + } else if (jj_2_140(2)) { jj_consume_token(MAX_CHANGED_PARTITION_ROWS_PERCENT); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.MAX_CHANGED_PARTITION_ROWS_PERCENT, getPos());} } else { @@ -1894,9 +1913,9 @@ final public void StatisticsAnalyzeOption(List list) throws ParseExcept key = StatisticsAnalyzeOptionKey(); s = span(); jj_consume_token(EQ); - if (jj_2_137(2)) { + if (jj_2_141(2)) { val = Literal(); - } else if (jj_2_138(2)) { + } else if (jj_2_142(2)) { val = SimpleIdentifier(); } else { jj_consume_token(-1); @@ -1947,7 +1966,7 @@ final public SqlNodeList ParenthesizedKeyValueOptionCommaList() throws ParseExce AddKeyValueOption(list); label_14: while (true) { - if (jj_2_139(2)) { + if (jj_2_143(2)) { ; } else { break label_14; @@ -1967,9 +1986,9 @@ final public SqlNodeList ParenthesizedKeyValueOptionCommaList() throws ParseExce final public void AddKeyValueOption(List list) throws ParseException { final SqlNode key; final SqlNode value; - if (jj_2_140(2)) { + if (jj_2_144(2)) { key = SimpleIdentifier(); - } else if (jj_2_141(2)) { + } else if (jj_2_145(2)) { key = StringLiteral(); } else { jj_consume_token(-1); @@ -1984,10 +2003,10 @@ final public void AddKeyValueOption(List list) throws ParseException { /** Parses an option value (either a string or a numeric) and adds to a list. */ final public void AddOptionValue(List list) throws ParseException { final SqlNode value; - if (jj_2_142(2)) { + if (jj_2_146(2)) { value = NumericLiteral(); list.add(value); - } else if (jj_2_143(2)) { + } else if (jj_2_147(2)) { value = StringLiteral(); list.add(value); } else { @@ -2007,7 +2026,7 @@ final public SqlNodeList ParenthesizedLiteralOptionCommaList() throws ParseExcep AddOptionValue(list); label_15: while (true) { - if (jj_2_144(2)) { + if (jj_2_148(2)) { ; } else { break label_15; @@ -2025,17 +2044,17 @@ final public void AddHint(List hints) throws ParseException { final SqlNodeList hintOptions; final SqlHint.HintOptionFormat optionFormat; hintName = SimpleIdentifier(); - if (jj_2_146(5)) { + if (jj_2_150(5)) { hintOptions = ParenthesizedKeyValueOptionCommaList(); optionFormat = SqlHint.HintOptionFormat.KV_LIST; - } else if (jj_2_147(3)) { + } else if (jj_2_151(3)) { hintOptions = ParenthesizedSimpleIdentifierList(); optionFormat = SqlHint.HintOptionFormat.ID_LIST; - } else if (jj_2_148(3)) { + } else if (jj_2_152(3)) { hintOptions = ParenthesizedLiteralOptionCommaList(); optionFormat = SqlHint.HintOptionFormat.LITERAL_LIST; } else { - if (jj_2_145(2)) { + if (jj_2_149(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); } else { @@ -2057,7 +2076,7 @@ final public SqlNode TableHints(SqlIdentifier tableName) throws ParseException { AddHint(hints); label_16: while (true) { - if (jj_2_149(2)) { + if (jj_2_153(2)) { ; } else { break label_16; @@ -2090,12 +2109,12 @@ final public SqlSelect SqlSelect() throws ParseException { final Span s; jj_consume_token(SELECT); s = span(); - if (jj_2_151(2)) { + if (jj_2_155(2)) { jj_consume_token(HINT_BEG); AddHint(hints); label_17: while (true) { - if (jj_2_150(2)) { + if (jj_2_154(2)) { ; } else { break label_17; @@ -2108,13 +2127,13 @@ final public SqlSelect SqlSelect() throws ParseException { ; } SqlSelectKeywords(keywords); - if (jj_2_152(2)) { + if (jj_2_156(2)) { jj_consume_token(STREAM); keywords.add(SqlSelectKeyword.STREAM.symbol(getPos())); } else { ; } - if (jj_2_153(2)) { + if (jj_2_157(2)) { keyword = AllOrDistinct(); keywords.add(keyword); } else { @@ -2124,7 +2143,7 @@ final public SqlSelect SqlSelect() throws ParseException { AddSelectItem(selectList); label_18: while (true) { - if (jj_2_154(2)) { + if (jj_2_158(2)) { ; } else { break label_18; @@ -2132,30 +2151,30 @@ final public SqlSelect SqlSelect() throws ParseException { jj_consume_token(COMMA); AddSelectItem(selectList); } - if (jj_2_160(2)) { + if (jj_2_164(2)) { jj_consume_token(FROM); fromClause = FromClause(); - if (jj_2_155(2)) { + if (jj_2_159(2)) { where = Where(); } else { where = null; } - if (jj_2_156(2)) { + if (jj_2_160(2)) { groupBy = GroupBy(); } else { groupBy = null; } - if (jj_2_157(2)) { + if (jj_2_161(2)) { having = Having(); } else { having = null; } - if (jj_2_158(2)) { + if (jj_2_162(2)) { windowDecls = Window(); } else { windowDecls = null; } - if (jj_2_159(2)) { + if (jj_2_163(2)) { qualify = Qualify(); } else { qualify = null; @@ -2194,21 +2213,21 @@ final public SqlNode SqlExplain() throws ParseException { final SqlExplainFormat format; jj_consume_token(EXPLAIN); jj_consume_token(PLAN); - if (jj_2_161(2)) { + if (jj_2_165(2)) { detailLevel = ExplainDetailLevel(); } else { ; } depth = ExplainDepth(); - if (jj_2_162(2)) { + if (jj_2_166(2)) { jj_consume_token(AS); jj_consume_token(XML); format = SqlExplainFormat.XML; - } else if (jj_2_163(2)) { + } else if (jj_2_167(2)) { jj_consume_token(AS); jj_consume_token(JSON); format = SqlExplainFormat.JSON; - } else if (jj_2_164(2)) { + } else if (jj_2_168(2)) { jj_consume_token(AS); jj_consume_token(DOT_FORMAT); format = SqlExplainFormat.DOT; @@ -2230,15 +2249,15 @@ final public SqlNode SqlExplain() throws ParseException { * or DML statement (INSERT, UPDATE, DELETE, MERGE). */ final public SqlNode SqlQueryOrDml() throws ParseException { SqlNode stmt; - if (jj_2_165(2)) { + if (jj_2_169(2)) { stmt = OrderedQueryOrExpr(ExprContext.ACCEPT_QUERY); - } else if (jj_2_166(2)) { + } else if (jj_2_170(2)) { stmt = SqlInsert(); - } else if (jj_2_167(2)) { + } else if (jj_2_171(2)) { stmt = SqlDelete(); - } else if (jj_2_168(2)) { + } else if (jj_2_172(2)) { stmt = SqlUpdate(); - } else if (jj_2_169(2)) { + } else if (jj_2_173(2)) { stmt = SqlMerge(); } else { jj_consume_token(-1); @@ -2253,15 +2272,15 @@ final public SqlNode SqlQueryOrDml() throws ParseException { * EXPLAIN PLAN. */ final public SqlExplain.Depth ExplainDepth() throws ParseException { - if (jj_2_170(2)) { + if (jj_2_174(2)) { jj_consume_token(WITH); jj_consume_token(TYPE); {if (true) return SqlExplain.Depth.TYPE;} - } else if (jj_2_171(2)) { + } else if (jj_2_175(2)) { jj_consume_token(WITH); jj_consume_token(IMPLEMENTATION); {if (true) return SqlExplain.Depth.PHYSICAL;} - } else if (jj_2_172(2)) { + } else if (jj_2_176(2)) { jj_consume_token(WITHOUT); jj_consume_token(IMPLEMENTATION); {if (true) return SqlExplain.Depth.LOGICAL;} @@ -2276,13 +2295,13 @@ final public SqlExplain.Depth ExplainDepth() throws ParseException { */ final public SqlExplainLevel ExplainDetailLevel() throws ParseException { SqlExplainLevel level = SqlExplainLevel.EXPPLAN_ATTRIBUTES; - if (jj_2_174(2)) { + if (jj_2_178(2)) { jj_consume_token(EXCLUDING); jj_consume_token(ATTRIBUTES); level = SqlExplainLevel.NO_ATTRIBUTES; - } else if (jj_2_175(2)) { + } else if (jj_2_179(2)) { jj_consume_token(INCLUDING); - if (jj_2_173(2)) { + if (jj_2_177(2)) { jj_consume_token(ALL); level = SqlExplainLevel.ALL_ATTRIBUTES; } else { @@ -2309,12 +2328,12 @@ final public SqlNode SqlDescribe() throws ParseException { final SqlNode stmt; jj_consume_token(DESCRIBE); s = span(); - if (jj_2_181(2)) { - if (jj_2_176(2)) { + if (jj_2_185(2)) { + if (jj_2_180(2)) { jj_consume_token(DATABASE); - } else if (jj_2_177(2)) { + } else if (jj_2_181(2)) { jj_consume_token(CATALOG); - } else if (jj_2_178(2)) { + } else if (jj_2_182(2)) { jj_consume_token(SCHEMA); } else { jj_consume_token(-1); @@ -2325,21 +2344,21 @@ final public SqlNode SqlDescribe() throws ParseException { // DESCRIBE SCHEMA but should be different. See // [CALCITE-1221] Implement DESCRIBE DATABASE, CATALOG, STATEMENT {if (true) return new SqlDescribeSchema(s.end(id), id);} - } else if (jj_2_182(2147483647)) { - if (jj_2_179(2)) { + } else if (jj_2_186(2147483647)) { + if (jj_2_183(2)) { jj_consume_token(TABLE); } else { ; } table = CompoundIdentifier(); - if (jj_2_180(2)) { + if (jj_2_184(2)) { column = SimpleIdentifier(); } else { column = null; } {if (true) return new SqlDescribeTable(s.add(table).addIf(column).pos(), table, column);} - } else if (jj_2_183(2)) { + } else if (jj_2_187(2)) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case STATEMENT: jj_consume_token(STATEMENT); @@ -2390,11 +2409,11 @@ final public SqlNode NamedRoutineCall(SqlFunctionCategory routineType, name = CompoundIdentifier(); s = span(); jj_consume_token(LPAREN); - if (jj_2_185(2)) { + if (jj_2_189(2)) { AddArg0(list, exprContext); label_19: while (true) { - if (jj_2_184(2)) { + if (jj_2_188(2)) { ; } else { break label_19; @@ -2423,14 +2442,14 @@ final public SqlNode TableParam() throws ParseException { SqlNode tableRef; s = span(); tableRef = ExplicitTable(getPos()); - if (jj_2_186(2)) { + if (jj_2_190(2)) { jj_consume_token(PARTITION); jj_consume_token(BY); partitionList = SimpleIdentifierOrList(); } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_187(2)) { + if (jj_2_191(2)) { orderList = OrderByOfSetSemanticsTable(); } else { orderList = SqlNodeList.EMPTY; @@ -2452,14 +2471,14 @@ final public SqlNode PartitionedByAndOrderBy(SqlNode e) throws ParseException { final SqlNodeList partitionList; final SqlNodeList orderList; s = span(); - if (jj_2_188(2)) { + if (jj_2_192(2)) { jj_consume_token(PARTITION); jj_consume_token(BY); partitionList = SimpleIdentifierOrList(); } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_189(2)) { + if (jj_2_193(2)) { orderList = OrderByOfSetSemanticsTable(); } else { orderList = SqlNodeList.EMPTY; @@ -2474,12 +2493,12 @@ final public SqlNodeList OrderByOfSetSemanticsTable() throws ParseException { jj_consume_token(ORDER); s = span(); jj_consume_token(BY); - if (jj_2_191(2)) { + if (jj_2_195(2)) { jj_consume_token(LPAREN); AddOrderItem(list); label_20: while (true) { - if (jj_2_190(2)) { + if (jj_2_194(2)) { ; } else { break label_20; @@ -2489,7 +2508,7 @@ final public SqlNodeList OrderByOfSetSemanticsTable() throws ParseException { } jj_consume_token(RPAREN); {if (true) return new SqlNodeList(list, s.addAll(list).pos());} - } else if (jj_2_192(2)) { + } else if (jj_2_196(2)) { AddOrderItem(list); {if (true) return new SqlNodeList(list, s.addAll(list).pos());} } else { @@ -2524,9 +2543,9 @@ final public SqlNode SqlInsert() throws ParseException { final SqlNodeList columnList; final Span s; final Pair p; - if (jj_2_193(2)) { + if (jj_2_197(2)) { jj_consume_token(INSERT); - } else if (jj_2_194(2)) { + } else if (jj_2_198(2)) { jj_consume_token(UPSERT); keywords.add(SqlInsertKeyword.UPSERT.symbol(getPos())); } else { @@ -2538,17 +2557,17 @@ final public SqlNode SqlInsert() throws ParseException { keywordList = new SqlNodeList(keywords, s.addAll(keywords).pos()); jj_consume_token(INTO); tableName = CompoundTableIdentifier(); - if (jj_2_195(2)) { + if (jj_2_199(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_196(5)) { + if (jj_2_200(5)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_197(2)) { + if (jj_2_201(2)) { p = ParenthesizedCompoundIdentifierList(); if (p.right.size() > 0) { tableRef = extend(tableRef, p.right); @@ -2588,18 +2607,18 @@ final public SqlNode SqlDelete() throws ParseException { s = span(); jj_consume_token(FROM); tableName = CompoundTableIdentifier(); - if (jj_2_198(2)) { + if (jj_2_202(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_199(2)) { + if (jj_2_203(2)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_201(2)) { - if (jj_2_200(2)) { + if (jj_2_205(2)) { + if (jj_2_204(2)) { jj_consume_token(AS); } else { ; @@ -2608,7 +2627,7 @@ final public SqlNode SqlDelete() throws ParseException { } else { alias = null; } - if (jj_2_202(2)) { + if (jj_2_206(2)) { where = Where(); } else { where = null; @@ -2635,18 +2654,18 @@ final public SqlNode SqlUpdate() throws ParseException { targetColumnList = new SqlNodeList(s.pos()); sourceExpressionList = new SqlNodeList(s.pos()); tableName = CompoundTableIdentifier(); - if (jj_2_203(2)) { + if (jj_2_207(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_204(2)) { + if (jj_2_208(2)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_206(2)) { - if (jj_2_205(2)) { + if (jj_2_210(2)) { + if (jj_2_209(2)) { jj_consume_token(AS); } else { ; @@ -2662,7 +2681,7 @@ final public SqlNode SqlUpdate() throws ParseException { AddExpression(sourceExpressionList, ExprContext.ACCEPT_SUB_QUERY); label_21: while (true) { - if (jj_2_207(2)) { + if (jj_2_211(2)) { ; } else { break label_21; @@ -2673,7 +2692,7 @@ final public SqlNode SqlUpdate() throws ParseException { jj_consume_token(EQ); AddExpression(sourceExpressionList, ExprContext.ACCEPT_SUB_QUERY); } - if (jj_2_208(2)) { + if (jj_2_212(2)) { where = Where(); } else { where = null; @@ -2701,18 +2720,18 @@ final public SqlNode SqlMerge() throws ParseException { s = span(); jj_consume_token(INTO); tableName = CompoundTableIdentifier(); - if (jj_2_209(2)) { + if (jj_2_213(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_210(2)) { + if (jj_2_214(2)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_212(2)) { - if (jj_2_211(2)) { + if (jj_2_216(2)) { + if (jj_2_215(2)) { jj_consume_token(AS); } else { ; @@ -2725,14 +2744,14 @@ final public SqlNode SqlMerge() throws ParseException { sourceTableRef = TableRef(); jj_consume_token(ON); condition = Expression(ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_214(2)) { + if (jj_2_218(2)) { updateCall = WhenMatchedClause(tableRef, alias); - if (jj_2_213(2)) { + if (jj_2_217(2)) { insertCall = WhenNotMatchedClause(tableRef); } else { insertCall = null; } - } else if (jj_2_215(2)) { + } else if (jj_2_219(2)) { updateCall = null; insertCall = WhenNotMatchedClause(tableRef); } else { @@ -2762,7 +2781,7 @@ final public SqlUpdate WhenMatchedClause(SqlNode table, SqlIdentifier alias) thr AddExpression(updateExprList, ExprContext.ACCEPT_SUB_QUERY); label_22: while (true) { - if (jj_2_216(2)) { + if (jj_2_220(2)) { ; } else { break label_22; @@ -2793,18 +2812,18 @@ final public SqlInsert WhenNotMatchedClause(SqlNode table) throws ParseException insertSpan = span(); SqlInsertKeywords(keywords); keywordList = new SqlNodeList(keywords, insertSpan.end(this)); - if (jj_2_217(2)) { + if (jj_2_221(2)) { insertColumnList = ParenthesizedSimpleIdentifierList(); } else { insertColumnList = null; } - if (jj_2_218(2)) { + if (jj_2_222(2)) { jj_consume_token(LPAREN); jj_consume_token(VALUES); valuesSpan = span(); rowConstructor = RowConstructor(); jj_consume_token(RPAREN); - } else if (jj_2_219(2)) { + } else if (jj_2_223(2)) { jj_consume_token(VALUES); valuesSpan = span(); rowConstructor = RowConstructor(); @@ -2829,13 +2848,13 @@ final public void AddSelectItem(List list) throws ParseException { final SqlNode e; final SqlIdentifier id; e = SelectExpression(); - if (jj_2_222(2)) { - if (jj_2_220(2)) { + if (jj_2_226(2)) { + if (jj_2_224(2)) { jj_consume_token(AS); } else { ; } - if (jj_2_221(2)) { + if (jj_2_225(2)) { id = SimpleIdentifier(); } else { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { @@ -2859,10 +2878,10 @@ final public void AddSelectItem(List list) throws ParseException { */ final public SqlNode SelectExpression() throws ParseException { SqlNode e; - if (jj_2_223(2)) { + if (jj_2_227(2)) { jj_consume_token(STAR); {if (true) return SqlIdentifier.star(getPos());} - } else if (jj_2_224(2)) { + } else if (jj_2_228(2)) { e = Expression(ExprContext.ACCEPT_SUB_QUERY); {if (true) return e;} } else { @@ -2873,7 +2892,7 @@ final public SqlNode SelectExpression() throws ParseException { } final public SqlLiteral Natural() throws ParseException { - if (jj_2_225(2)) { + if (jj_2_229(2)) { jj_consume_token(NATURAL); {if (true) return SqlLiteral.createBoolean(true, getPos());} } else { @@ -2884,41 +2903,41 @@ final public SqlLiteral Natural() throws ParseException { final public SqlLiteral JoinType() throws ParseException { JoinType joinType; - if (jj_2_229(3)) { + if (jj_2_233(2)) { jj_consume_token(JOIN); joinType = JoinType.INNER; - } else if (jj_2_230(2)) { + } else if (jj_2_234(2)) { jj_consume_token(INNER); jj_consume_token(JOIN); joinType = JoinType.INNER; - } else if (jj_2_231(2)) { + } else if (jj_2_235(2)) { jj_consume_token(LEFT); - if (jj_2_226(2)) { + if (jj_2_230(2)) { jj_consume_token(OUTER); } else { ; } jj_consume_token(JOIN); joinType = JoinType.LEFT; - } else if (jj_2_232(2)) { + } else if (jj_2_236(2)) { jj_consume_token(RIGHT); - if (jj_2_227(2)) { + if (jj_2_231(2)) { jj_consume_token(OUTER); } else { ; } jj_consume_token(JOIN); joinType = JoinType.RIGHT; - } else if (jj_2_233(2)) { + } else if (jj_2_237(2)) { jj_consume_token(FULL); - if (jj_2_228(2)) { + if (jj_2_232(2)) { jj_consume_token(OUTER); } else { ; } jj_consume_token(JOIN); joinType = JoinType.FULL; - } else if (jj_2_234(2)) { + } else if (jj_2_238(2)) { jj_consume_token(CROSS); jj_consume_token(JOIN); joinType = JoinType.CROSS; @@ -2971,7 +2990,7 @@ final public SqlNode Join() throws ParseException { e = TableRef1(ExprContext.ACCEPT_QUERY_OR_JOIN); label_24: while (true) { - if (jj_2_235(2)) { + if (jj_2_239(2)) { ; } else { break label_24; @@ -2987,11 +3006,11 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { SqlNode e2, condition; final SqlLiteral natural, joinType, on, using; SqlNodeList list; - if (jj_2_238(3)) { + if (jj_2_242(3)) { natural = Natural(); joinType = JoinType(); e2 = TableRef1(ExprContext.ACCEPT_QUERY_OR_JOIN); - if (jj_2_236(2)) { + if (jj_2_240(2)) { jj_consume_token(ON); on = JoinConditionType.ON.symbol(getPos()); condition = Expression(ExprContext.ACCEPT_SUB_QUERY); @@ -3002,7 +3021,7 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { e2, on, condition);} - } else if (jj_2_237(2)) { + } else if (jj_2_241(2)) { jj_consume_token(USING); using = JoinConditionType.USING.symbol(getPos()); list = ParenthesizedSimpleIdentifierList(); @@ -3022,7 +3041,7 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { JoinConditionType.NONE.symbol(joinType.getParserPosition()), null);} } - } else if (jj_2_239(2)) { + } else if (jj_2_243(2)) { jj_consume_token(CROSS); joinType = JoinType.CROSS.symbol(getPos()); jj_consume_token(APPLY); @@ -3037,7 +3056,7 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { e2, JoinConditionType.NONE.symbol(SqlParserPos.ZERO), null);} - } else if (jj_2_240(2)) { + } else if (jj_2_244(2)) { jj_consume_token(OUTER); joinType = JoinType.LEFT.symbol(getPos()); jj_consume_token(APPLY); @@ -3095,31 +3114,36 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws SqlNodeList args; final SqlNodeList columnAliasList; SqlUnnestOperator unnestOp = SqlStdOperatorTable.UNNEST; - if (jj_2_249(2)) { + if (jj_2_254(2)) { tableName = CompoundTableIdentifier(); - if (jj_2_241(2)) { - tableRef = TableHints(tableName); + s = span(); + if (jj_2_249(3)) { + tableRef = ImplicitTableFunctionCallArgs(tableName); } else { - tableRef = tableName; - } - if (jj_2_242(2)) { - tableRef = ExtendTable(tableRef); - } else { - ; - } - tableRef = Over(tableRef); - if (jj_2_243(2)) { - tableRef = Snapshot(tableRef); - } else { - ; - } - if (jj_2_244(2)) { - tableRef = MatchRecognize(tableRef); - } else { - ; + if (jj_2_245(2)) { + tableRef = TableHints(tableName); + } else { + tableRef = tableName; + } + if (jj_2_246(2)) { + tableRef = ExtendTable(tableRef); + } else { + ; + } + tableRef = Over(tableRef); + if (jj_2_247(2)) { + tableRef = Snapshot(tableRef); + } else { + ; + } + if (jj_2_248(2)) { + tableRef = MatchRecognize(tableRef); + } else { + ; + } } - } else if (jj_2_250(2)) { - if (jj_2_245(2)) { + } else if (jj_2_255(2)) { + if (jj_2_250(2)) { jj_consume_token(LATERAL); lateral = true; } else { @@ -3128,16 +3152,16 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws tableRef = ParenthesizedExpression(exprContext); tableRef = Over(tableRef); tableRef = addLateral(tableRef, lateral); - if (jj_2_246(2)) { + if (jj_2_251(2)) { tableRef = MatchRecognize(tableRef); } else { ; } - } else if (jj_2_251(2)) { + } else if (jj_2_256(2)) { jj_consume_token(UNNEST); s = span(); args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_247(2)) { + if (jj_2_252(2)) { jj_consume_token(WITH); jj_consume_token(ORDINALITY); unnestOp = SqlStdOperatorTable.UNNEST_WITH_ORDINALITY; @@ -3145,8 +3169,8 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws ; } tableRef = unnestOp.createCall(s.end(this), (List) args); - } else if (jj_2_252(2)) { - if (jj_2_248(2)) { + } else if (jj_2_257(2)) { + if (jj_2_253(2)) { jj_consume_token(LATERAL); lateral = true; } else { @@ -3154,30 +3178,30 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws } tableRef = TableFunctionCall(); tableRef = addLateral(tableRef, lateral); - } else if (jj_2_253(2)) { + } else if (jj_2_258(2)) { tableRef = ExtendedTableRef(); } else { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_254(2)) { + if (jj_2_259(2)) { tableRef = Pivot(tableRef); } else { ; } - if (jj_2_255(2)) { + if (jj_2_260(2)) { tableRef = Unpivot(tableRef); } else { ; } - if (jj_2_258(2)) { - if (jj_2_256(2)) { + if (jj_2_263(2)) { + if (jj_2_261(2)) { jj_consume_token(AS); } else { ; } alias = SimpleIdentifier(); - if (jj_2_257(2)) { + if (jj_2_262(2)) { columnAliasList = ParenthesizedSimpleIdentifierList(); } else { columnAliasList = null; @@ -3202,7 +3226,7 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws } else { ; } - if (jj_2_259(2)) { + if (jj_2_264(2)) { tableRef = Tablesample(tableRef); } else { ; @@ -3220,7 +3244,7 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { int repeatableSeed = 0; jj_consume_token(TABLESAMPLE); s = span(); checkNotJoin(tableRef); - if (jj_2_263(2)) { + if (jj_2_268(2)) { jj_consume_token(SUBSTITUTE); jj_consume_token(LPAREN); sample = StringLiteral(); @@ -3230,13 +3254,13 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { SqlSampleSpec sampleSpec = SqlSampleSpec.createNamed(sampleName); final SqlLiteral sampleLiteral = SqlLiteral.createSample(sampleSpec, s.end(this)); - tableRef = SqlStdOperatorTable.TABLESAMPLE.createCall( - s.add(tableRef).end(this), tableRef, sampleLiteral); - } else if (jj_2_264(2)) { - if (jj_2_260(2)) { + {if (true) return SqlStdOperatorTable.TABLESAMPLE.createCall( + s.add(tableRef).end(this), tableRef, sampleLiteral);} + } else if (jj_2_269(2)) { + if (jj_2_265(2)) { jj_consume_token(BERNOULLI); isBernoulli = true; - } else if (jj_2_261(2)) { + } else if (jj_2_266(2)) { jj_consume_token(SYSTEM); isBernoulli = false; } else { @@ -3246,7 +3270,7 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { jj_consume_token(LPAREN); samplePercentage = UnsignedNumericLiteral(); jj_consume_token(RPAREN); - if (jj_2_262(2)) { + if (jj_2_267(2)) { jj_consume_token(REPEATABLE); jj_consume_token(LPAREN); repeatableSeed = IntLiteral(); @@ -3255,38 +3279,21 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { } else { ; } - final BigDecimal ONE_HUNDRED = BigDecimal.valueOf(100L); - BigDecimal rate = samplePercentage.bigDecimalValue(); - if (rate.compareTo(BigDecimal.ZERO) < 0 - || rate.compareTo(ONE_HUNDRED) > 0) - { - {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.invalidSampleSize());} - } - - // Treat TABLESAMPLE(0) and TABLESAMPLE(100) as no table - // sampling at all. Not strictly correct: TABLESAMPLE(0) - // should produce no output, but it simplifies implementation - // to know that some amount of sampling will occur. - // In practice values less than ~1E-43% are treated as 0.0 and - // values greater than ~99.999997% are treated as 1.0 - float fRate = rate.divide(ONE_HUNDRED).floatValue(); - if (fRate > 0.0f && fRate < 1.0f) { - SqlSampleSpec tableSampleSpec = - isRepeatable - ? SqlSampleSpec.createTableSample( - isBernoulli, fRate, repeatableSeed) - : SqlSampleSpec.createTableSample(isBernoulli, fRate); - - SqlLiteral tableSampleLiteral = - SqlLiteral.createSample(tableSampleSpec, s.end(this)); - tableRef = SqlStdOperatorTable.TABLESAMPLE.createCall( - s.end(this), tableRef, tableSampleLiteral); - } + BigDecimal rate = + samplePercentage.bigDecimalValue().divide(ONE_HUNDRED); + SqlSampleSpec tableSampleSpec = + isRepeatable + ? SqlSampleSpec.createTableSample(isBernoulli, rate, + repeatableSeed) + : SqlSampleSpec.createTableSample(isBernoulli, rate); + SqlLiteral tableSampleLiteral = + SqlLiteral.createSample(tableSampleSpec, s.end(this)); + {if (true) return SqlStdOperatorTable.TABLESAMPLE.createCall( + s.end(this), tableRef, tableSampleLiteral);} } else { jj_consume_token(-1); throw new ParseException(); } - {if (true) return tableRef;} throw new Error("Missing return statement in function"); } @@ -3294,7 +3301,7 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { * is present. */ final public SqlNode ExtendTable(SqlNode tableRef) throws ParseException { final SqlNodeList extendList; - if (jj_2_265(2)) { + if (jj_2_270(2)) { jj_consume_token(EXTEND); } else { ; @@ -3312,7 +3319,7 @@ final public SqlNodeList ExtendList() throws ParseException { AddColumnType(list); label_25: while (true) { - if (jj_2_266(2)) { + if (jj_2_271(2)) { ; } else { break label_25; @@ -3344,7 +3351,7 @@ final public void AddCompoundIdentifierType(List list, List ex final SqlDataTypeSpec type; final boolean nullable; name = CompoundIdentifier(); - if (jj_2_267(2)) { + if (jj_2_272(2)) { type = DataType(); nullable = NotNullOpt(); } else { @@ -3361,6 +3368,39 @@ final public void AddCompoundIdentifierType(List list, List ex list.add(name); } + final public SqlNode ImplicitTableFunctionCallArgs(SqlIdentifier name) throws ParseException { + final List tableFuncArgs = new ArrayList(); + final SqlNode call; + final Span s; + s = span(); + jj_consume_token(LPAREN); + if (jj_2_274(2)) { + AddArg0(tableFuncArgs, ExprContext.ACCEPT_CURSOR); + label_26: + while (true) { + if (jj_2_273(2)) { + ; + } else { + break label_26; + } + jj_consume_token(COMMA); + // a comma-list can't appear where only a query is expected + checkNonQueryExpression(ExprContext.ACCEPT_CURSOR); + AddArg(tableFuncArgs, ExprContext.ACCEPT_CURSOR); + } + } else { + ; + } + jj_consume_token(RPAREN); + final SqlParserPos pos = s.end(this); + call = createCall(name, pos, + SqlFunctionCategory.USER_DEFINED_TABLE_FUNCTION, null, + tableFuncArgs); + {if (true) return SqlStdOperatorTable.COLLECTION_TABLE.createCall(pos, + call);} + throw new Error("Missing return statement in function"); + } + final public SqlNode TableFunctionCall() throws ParseException { final Span s; final SqlNode call; @@ -3368,7 +3408,7 @@ final public SqlNode TableFunctionCall() throws ParseException { jj_consume_token(TABLE); s = span(); jj_consume_token(LPAREN); - if (jj_2_268(2)) { + if (jj_2_275(2)) { jj_consume_token(SPECIFIC); funcType = SqlFunctionCategory.USER_DEFINED_TABLE_SPECIFIC_FUNCTION; } else { @@ -3414,10 +3454,10 @@ final public SqlNode ExplicitTable(SqlParserPos pos) throws ParseException { final public SqlNode TableConstructor() throws ParseException { final List list = new ArrayList(); final Span s; - if (jj_2_269(2)) { + if (jj_2_276(2)) { jj_consume_token(VALUES); s = span(); - } else if (jj_2_270(2)) { + } else if (jj_2_277(2)) { jj_consume_token(VALUE); s = span(); if (!this.conformance.isValueAllowed()) { @@ -3428,12 +3468,12 @@ final public SqlNode TableConstructor() throws ParseException { throw new ParseException(); } AddRowConstructor(list); - label_26: + label_27: while (true) { - if (jj_2_271(2)) { + if (jj_2_278(2)) { ; } else { - break label_26; + break label_27; } jj_consume_token(COMMA); AddRowConstructor(list); @@ -3456,22 +3496,22 @@ final public SqlNode RowConstructor() throws ParseException { final SqlNodeList valueList; final SqlNode value; final Span s; - if (jj_2_273(3)) { + if (jj_2_280(3)) { jj_consume_token(LPAREN); s = span(); jj_consume_token(ROW); valueList = ParenthesizedQueryOrCommaListWithDefault(ExprContext.ACCEPT_NONCURSOR); jj_consume_token(RPAREN); s.add(this); - } else if (jj_2_274(3)) { - if (jj_2_272(2)) { + } else if (jj_2_281(3)) { + if (jj_2_279(2)) { jj_consume_token(ROW); s = span(); } else { s = Span.of(); } valueList = ParenthesizedQueryOrCommaListWithDefault(ExprContext.ACCEPT_NONCURSOR); - } else if (jj_2_275(2)) { + } else if (jj_2_282(2)) { value = Expression(ExprContext.ACCEPT_NONCURSOR); // NOTE: A bare value here is standard SQL syntax, believe it or // not. Taken together with multi-row table constructors, it leads @@ -3511,10 +3551,10 @@ final public SqlNodeList GroupBy() throws ParseException { jj_consume_token(GROUP); s = span(); jj_consume_token(BY); - if (jj_2_276(2)) { + if (jj_2_283(2)) { jj_consume_token(DISTINCT); distinct = true; - } else if (jj_2_277(2)) { + } else if (jj_2_284(2)) { jj_consume_token(ALL); distinct = false; } else { @@ -3533,12 +3573,12 @@ final public SqlNodeList GroupBy() throws ParseException { final public List GroupingElementList() throws ParseException { final List list = new ArrayList(); AddGroupingElement(list); - label_27: + label_28: while (true) { - if (jj_2_278(2)) { + if (jj_2_285(2)) { ; } else { - break label_27; + break label_28; } jj_consume_token(COMMA); AddGroupingElement(list); @@ -3551,7 +3591,7 @@ final public void AddGroupingElement(List list) throws ParseException { final List subList; final SqlNodeList nodes; final Span s; - if (jj_2_279(2)) { + if (jj_2_286(2)) { jj_consume_token(GROUPING); s = span(); jj_consume_token(SETS); @@ -3560,7 +3600,7 @@ final public void AddGroupingElement(List list) throws ParseException { jj_consume_token(RPAREN); list.add( SqlStdOperatorTable.GROUPING_SETS.createCall(s.end(this), subList)); - } else if (jj_2_280(2)) { + } else if (jj_2_287(2)) { jj_consume_token(ROLLUP); s = span(); jj_consume_token(LPAREN); @@ -3568,7 +3608,7 @@ final public void AddGroupingElement(List list) throws ParseException { jj_consume_token(RPAREN); list.add( SqlStdOperatorTable.ROLLUP.createCall(s.end(this), nodes.getList())); - } else if (jj_2_281(2)) { + } else if (jj_2_288(2)) { jj_consume_token(CUBE); s = span(); jj_consume_token(LPAREN); @@ -3576,12 +3616,12 @@ final public void AddGroupingElement(List list) throws ParseException { jj_consume_token(RPAREN); list.add( SqlStdOperatorTable.CUBE.createCall(s.end(this), nodes.getList())); - } else if (jj_2_282(3)) { + } else if (jj_2_289(3)) { jj_consume_token(LPAREN); s = span(); jj_consume_token(RPAREN); list.add(new SqlNodeList(s.end(this))); - } else if (jj_2_283(2)) { + } else if (jj_2_290(2)) { AddExpression(list, ExprContext.ACCEPT_SUB_QUERY); } else { jj_consume_token(-1); @@ -3606,12 +3646,12 @@ final public SqlNodeList ExpressionCommaList(final Span s, */ final public void AddExpressions(List list, ExprContext exprContext) throws ParseException { AddExpression(list, exprContext); - label_28: + label_29: while (true) { - if (jj_2_284(2)) { + if (jj_2_291(2)) { ; } else { - break label_28; + break label_29; } jj_consume_token(COMMA); AddExpression(list, ExprContext.ACCEPT_SUB_QUERY); @@ -3634,12 +3674,12 @@ final public SqlNodeList Window() throws ParseException { jj_consume_token(WINDOW); s = span(); AddWindowSpec(list); - label_29: + label_30: while (true) { - if (jj_2_285(2)) { + if (jj_2_292(2)) { ; } else { - break label_29; + break label_30; } jj_consume_token(COMMA); AddWindowSpec(list); @@ -3671,12 +3711,12 @@ final public SqlWindow WindowSpecification() throws ParseException { final SqlLiteral allowPartial; jj_consume_token(LPAREN); s = span(); - if (jj_2_286(2)) { + if (jj_2_293(2)) { id = SimpleIdentifier(); } else { id = null; } - if (jj_2_287(2)) { + if (jj_2_294(2)) { jj_consume_token(PARTITION); s1 = span(); jj_consume_token(BY); @@ -3684,28 +3724,28 @@ final public SqlWindow WindowSpecification() throws ParseException { } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_288(2)) { + if (jj_2_295(2)) { orderList = OrderBy(true); } else { orderList = SqlNodeList.EMPTY; } - if (jj_2_293(2)) { - if (jj_2_289(2)) { + if (jj_2_300(2)) { + if (jj_2_296(2)) { jj_consume_token(ROWS); isRows = SqlLiteral.createBoolean(true, getPos()); - } else if (jj_2_290(2)) { + } else if (jj_2_297(2)) { jj_consume_token(RANGE); isRows = SqlLiteral.createBoolean(false, getPos()); } else { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_291(2)) { + if (jj_2_298(2)) { jj_consume_token(BETWEEN); lowerBound = WindowRange(); jj_consume_token(AND); upperBound = WindowRange(); - } else if (jj_2_292(2)) { + } else if (jj_2_299(2)) { lowerBound = WindowRange(); upperBound = null; } else { @@ -3716,12 +3756,12 @@ final public SqlWindow WindowSpecification() throws ParseException { isRows = SqlLiteral.createBoolean(false, SqlParserPos.ZERO); lowerBound = upperBound = null; } - if (jj_2_294(2)) { + if (jj_2_301(2)) { jj_consume_token(ALLOW); s2 = span(); jj_consume_token(PARTIAL); allowPartial = SqlLiteral.createBoolean(true, s2.end(this)); - } else if (jj_2_295(2)) { + } else if (jj_2_302(2)) { jj_consume_token(DISALLOW); s2 = span(); jj_consume_token(PARTIAL); @@ -3738,30 +3778,30 @@ final public SqlWindow WindowSpecification() throws ParseException { final public SqlNode WindowRange() throws ParseException { final SqlNode e; final Span s; - if (jj_2_300(2)) { + if (jj_2_307(2)) { jj_consume_token(CURRENT); s = span(); jj_consume_token(ROW); {if (true) return SqlWindow.createCurrentRow(s.end(this));} - } else if (jj_2_301(2)) { + } else if (jj_2_308(2)) { jj_consume_token(UNBOUNDED); s = span(); - if (jj_2_296(2)) { + if (jj_2_303(2)) { jj_consume_token(PRECEDING); {if (true) return SqlWindow.createUnboundedPreceding(s.end(this));} - } else if (jj_2_297(2)) { + } else if (jj_2_304(2)) { jj_consume_token(FOLLOWING); {if (true) return SqlWindow.createUnboundedFollowing(s.end(this));} } else { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_302(2)) { + } else if (jj_2_309(2)) { e = Expression(ExprContext.ACCEPT_NON_QUERY); - if (jj_2_298(2)) { + if (jj_2_305(2)) { jj_consume_token(PRECEDING); {if (true) return SqlWindow.createPreceding(e, getPos());} - } else if (jj_2_299(2)) { + } else if (jj_2_306(2)) { jj_consume_token(FOLLOWING); {if (true) return SqlWindow.createFollowing(e, getPos());} } else { @@ -3800,12 +3840,12 @@ final public SqlNodeList OrderBy(boolean accept) throws ParseException { } jj_consume_token(BY); AddOrderItem(list); - label_30: + label_31: while (true) { - if (jj_2_303(2)) { + if (jj_2_310(2)) { ; } else { - break label_30; + break label_31; } jj_consume_token(COMMA); AddOrderItem(list); @@ -3820,10 +3860,10 @@ final public SqlNodeList OrderBy(boolean accept) throws ParseException { final public void AddOrderItem(List list) throws ParseException { SqlNode e; e = Expression(ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_306(2)) { - if (jj_2_304(2)) { + if (jj_2_313(2)) { + if (jj_2_311(2)) { jj_consume_token(ASC); - } else if (jj_2_305(2)) { + } else if (jj_2_312(2)) { jj_consume_token(DESC); e = SqlStdOperatorTable.DESC.createCall(getPos(), e); } else { @@ -3833,12 +3873,12 @@ final public void AddOrderItem(List list) throws ParseException { } else { ; } - if (jj_2_309(2)) { - if (jj_2_307(2)) { + if (jj_2_316(2)) { + if (jj_2_314(2)) { jj_consume_token(NULLS); jj_consume_token(FIRST); e = SqlStdOperatorTable.NULLS_FIRST.createCall(getPos(), e); - } else if (jj_2_308(2)) { + } else if (jj_2_315(2)) { jj_consume_token(NULLS); jj_consume_token(LAST); e = SqlStdOperatorTable.NULLS_LAST.createCall(getPos(), e); @@ -3910,12 +3950,12 @@ final public SqlNode Pivot(SqlNode tableRef) throws ParseException { s = span(); checkNotJoin(tableRef); jj_consume_token(LPAREN); AddPivotAgg(aggList); - label_31: + label_32: while (true) { - if (jj_2_310(2)) { + if (jj_2_317(2)) { ; } else { - break label_31; + break label_32; } jj_consume_token(COMMA); AddPivotAgg(aggList); @@ -3925,14 +3965,14 @@ final public SqlNode Pivot(SqlNode tableRef) throws ParseException { jj_consume_token(IN); jj_consume_token(LPAREN); s2 = span(); - if (jj_2_312(2)) { + if (jj_2_319(2)) { AddPivotValue(valueList); - label_32: + label_33: while (true) { - if (jj_2_311(2)) { + if (jj_2_318(2)) { ; } else { - break label_32; + break label_33; } jj_consume_token(COMMA); AddPivotValue(valueList); @@ -3954,7 +3994,7 @@ final public void AddPivotAgg(List list) throws ParseException { final SqlIdentifier alias; e = NamedFunctionCall(); if (getToken(1).kind != COMMA && getToken(1).kind != FOR) { - if (jj_2_313(2)) { + if (jj_2_320(2)) { jj_consume_token(AS); } else { ; @@ -3974,8 +4014,8 @@ final public void AddPivotValue(List list) throws ParseException { final SqlIdentifier alias; e = RowConstructor(); tuple = SqlParserUtil.stripRow(e); - if (jj_2_315(2)) { - if (jj_2_314(2)) { + if (jj_2_322(2)) { + if (jj_2_321(2)) { jj_consume_token(AS); } else { ; @@ -4000,11 +4040,11 @@ final public SqlNode Unpivot(SqlNode tableRef) throws ParseException { final SqlNodeList inList; jj_consume_token(UNPIVOT); s = span(); checkNotJoin(tableRef); - if (jj_2_316(2)) { + if (jj_2_323(2)) { jj_consume_token(INCLUDE); jj_consume_token(NULLS); includeNulls = true; - } else if (jj_2_317(2)) { + } else if (jj_2_324(2)) { jj_consume_token(EXCLUDE); jj_consume_token(NULLS); includeNulls = false; @@ -4019,12 +4059,12 @@ final public SqlNode Unpivot(SqlNode tableRef) throws ParseException { jj_consume_token(LPAREN); s2 = span(); AddUnpivotValue(values); - label_33: + label_34: while (true) { - if (jj_2_318(2)) { + if (jj_2_325(2)) { ; } else { - break label_33; + break label_34; } jj_consume_token(COMMA); AddUnpivotValue(values); @@ -4041,7 +4081,7 @@ final public void AddUnpivotValue(List list) throws ParseException { final SqlNodeList columnList; final SqlNode values; columnList = SimpleIdentifierOrList(); - if (jj_2_319(2)) { + if (jj_2_326(2)) { jj_consume_token(AS); values = RowConstructor(); final SqlNodeList valueList = SqlParserUtil.stripRow(values); @@ -4073,7 +4113,7 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce jj_consume_token(MATCH_RECOGNIZE); s = span(); checkNotJoin(tableRef); jj_consume_token(LPAREN); - if (jj_2_320(2)) { + if (jj_2_327(2)) { jj_consume_token(PARTITION); s2 = span(); jj_consume_token(BY); @@ -4081,25 +4121,25 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_321(2)) { + if (jj_2_328(2)) { orderList = OrderBy(true); } else { orderList = SqlNodeList.EMPTY; } - if (jj_2_322(2)) { + if (jj_2_329(2)) { jj_consume_token(MEASURES); measureList = MeasureColumnCommaList(span()); } else { measureList = SqlNodeList.EMPTY; } - if (jj_2_323(2)) { + if (jj_2_330(2)) { jj_consume_token(ONE); s0 = span(); jj_consume_token(ROW); jj_consume_token(PER); jj_consume_token(MATCH); rowsPerMatch = SqlMatchRecognize.RowsPerMatchOption.ONE_ROW.symbol(s0.end(this)); - } else if (jj_2_324(2)) { + } else if (jj_2_331(2)) { jj_consume_token(ALL); s0 = span(); jj_consume_token(ROWS); @@ -4109,25 +4149,25 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce } else { rowsPerMatch = null; } - if (jj_2_330(2)) { + if (jj_2_337(2)) { jj_consume_token(AFTER); s1 = span(); jj_consume_token(MATCH); jj_consume_token(SKIP_); - if (jj_2_328(2)) { + if (jj_2_335(2)) { jj_consume_token(TO); - if (jj_2_326(2)) { + if (jj_2_333(2)) { jj_consume_token(NEXT); jj_consume_token(ROW); after = SqlMatchRecognize.AfterOption.SKIP_TO_NEXT_ROW .symbol(s1.end(this)); - } else if (jj_2_327(2)) { + } else if (jj_2_334(2)) { jj_consume_token(FIRST); var = SimpleIdentifier(); after = SqlMatchRecognize.SKIP_TO_FIRST.createCall( s1.end(var), var); } else if (true) { - if (jj_2_325(2)) { + if (jj_2_332(2)) { jj_consume_token(LAST); } else { ; @@ -4139,7 +4179,7 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_329(2)) { + } else if (jj_2_336(2)) { jj_consume_token(PAST); jj_consume_token(LAST); jj_consume_token(ROW); @@ -4154,27 +4194,27 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce } jj_consume_token(PATTERN); jj_consume_token(LPAREN); - if (jj_2_331(2)) { + if (jj_2_338(2)) { jj_consume_token(CARET); isStrictStarts = SqlLiteral.createBoolean(true, getPos()); } else { isStrictStarts = SqlLiteral.createBoolean(false, getPos()); } pattern = PatternExpression(); - if (jj_2_332(2)) { + if (jj_2_339(2)) { jj_consume_token(DOLLAR); isStrictEnds = SqlLiteral.createBoolean(true, getPos()); } else { isStrictEnds = SqlLiteral.createBoolean(false, getPos()); } jj_consume_token(RPAREN); - if (jj_2_333(2)) { + if (jj_2_340(2)) { jj_consume_token(WITHIN); interval = IntervalLiteral(); } else { interval = null; } - if (jj_2_334(2)) { + if (jj_2_341(2)) { jj_consume_token(SUBSET); subsetList = SubsetDefinitionCommaList(span()); } else { @@ -4192,12 +4232,12 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce final public SqlNodeList MeasureColumnCommaList(Span s) throws ParseException { final List list = new ArrayList(); AddMeasureColumn(list); - label_34: + label_35: while (true) { - if (jj_2_335(2)) { + if (jj_2_342(2)) { ; } else { - break label_34; + break label_35; } jj_consume_token(COMMA); AddMeasureColumn(list); @@ -4219,12 +4259,12 @@ final public SqlNode PatternExpression() throws ParseException { SqlNode left; SqlNode right; left = PatternTerm(); - label_35: + label_36: while (true) { - if (jj_2_336(2)) { + if (jj_2_343(2)) { ; } else { - break label_35; + break label_36; } jj_consume_token(VERTICAL_BAR); right = PatternTerm(); @@ -4239,12 +4279,12 @@ final public SqlNode PatternTerm() throws ParseException { SqlNode left; SqlNode right; left = PatternFactor(); - label_36: + label_37: while (true) { - if (jj_2_337(2)) { + if (jj_2_344(2)) { ; } else { - break label_36; + break label_37; } right = PatternFactor(); left = SqlStdOperatorTable.PATTERN_CONCAT.createCall( @@ -4266,25 +4306,25 @@ final public SqlNode PatternFactor() throws ParseException { case HOOK: case PLUS: case STAR: - if (jj_2_343(2)) { + if (jj_2_350(2)) { jj_consume_token(STAR); startNum = LITERAL_ZERO; endNum = LITERAL_MINUS_ONE; - } else if (jj_2_344(2)) { + } else if (jj_2_351(2)) { jj_consume_token(PLUS); startNum = LITERAL_ONE; endNum = LITERAL_MINUS_ONE; - } else if (jj_2_345(2)) { + } else if (jj_2_352(2)) { jj_consume_token(HOOK); startNum = LITERAL_ZERO; endNum = LITERAL_ONE; - } else if (jj_2_346(2)) { + } else if (jj_2_353(2)) { jj_consume_token(LBRACE); - if (jj_2_340(2)) { + if (jj_2_347(2)) { startNum = UnsignedNumericLiteral(); - if (jj_2_339(2)) { + if (jj_2_346(2)) { jj_consume_token(COMMA); - if (jj_2_338(2)) { + if (jj_2_345(2)) { endNum = UnsignedNumericLiteral(); } else { endNum = LITERAL_MINUS_ONE; @@ -4293,12 +4333,12 @@ final public SqlNode PatternFactor() throws ParseException { endNum = startNum; } jj_consume_token(RBRACE); - } else if (jj_2_341(2)) { + } else if (jj_2_348(2)) { jj_consume_token(COMMA); endNum = UnsignedNumericLiteral(); jj_consume_token(RBRACE); startNum = LITERAL_MINUS_ONE; - } else if (jj_2_342(2)) { + } else if (jj_2_349(2)) { jj_consume_token(MINUS); extra = PatternExpression(); jj_consume_token(MINUS); @@ -4315,7 +4355,7 @@ final public SqlNode PatternFactor() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_347(2)) { + if (jj_2_354(2)) { jj_consume_token(HOOK); reluctant = SqlLiteral.createBoolean( startNum.intValue(true) != endNum.intValue(true), @@ -4337,15 +4377,15 @@ final public SqlNode PatternPrimary() throws ParseException { final Span s; SqlNode e; final List list; - if (jj_2_349(2)) { + if (jj_2_356(2)) { e = SimpleIdentifier(); {if (true) return e;} - } else if (jj_2_350(2)) { + } else if (jj_2_357(2)) { jj_consume_token(LPAREN); e = PatternExpression(); jj_consume_token(RPAREN); {if (true) return e;} - } else if (jj_2_351(2)) { + } else if (jj_2_358(2)) { jj_consume_token(LBRACE); s = span(); jj_consume_token(MINUS); @@ -4353,18 +4393,18 @@ final public SqlNode PatternPrimary() throws ParseException { jj_consume_token(MINUS); jj_consume_token(RBRACE); {if (true) return SqlStdOperatorTable.PATTERN_EXCLUDE.createCall(s.end(this), e);} - } else if (jj_2_352(2)) { + } else if (jj_2_359(2)) { jj_consume_token(PERMUTE); s = span(); list = new ArrayList(); jj_consume_token(LPAREN); e = PatternExpression(); list.add(e); - label_37: + label_38: while (true) { - if (jj_2_348(2)) { + if (jj_2_355(2)) { ; } else { - break label_37; + break label_38; } jj_consume_token(COMMA); e = PatternExpression(); @@ -4383,12 +4423,12 @@ final public SqlNode PatternPrimary() throws ParseException { final public SqlNodeList SubsetDefinitionCommaList(Span s) throws ParseException { final List list = new ArrayList(); AddSubsetDefinition(list); - label_38: + label_39: while (true) { - if (jj_2_353(2)) { + if (jj_2_360(2)) { ; } else { - break label_38; + break label_39; } jj_consume_token(COMMA); AddSubsetDefinition(list); @@ -4415,12 +4455,12 @@ final public SqlNodeList PatternDefinitionCommaList(Span s) throws ParseExceptio final List eList = new ArrayList(); e = PatternDefinition(); eList.add(e); - label_39: + label_40: while (true) { - if (jj_2_354(2)) { + if (jj_2_361(2)) { ; } else { - break label_39; + break label_40; } jj_consume_token(COMMA); e = PatternDefinition(); @@ -4479,19 +4519,19 @@ final public SqlNode QueryOrExpr(ExprContext exprContext) throws ParseException SqlNodeList withList = null; final SqlNode e; final List list = new ArrayList(); - if (jj_2_355(2)) { + if (jj_2_362(2)) { withList = WithList(); } else { ; } e = LeafQueryOrExpr(exprContext); list.add(e); - label_40: + label_41: while (true) { - if (jj_2_356(2)) { + if (jj_2_363(2)) { ; } else { - break label_40; + break label_41; } AddSetOpQuery(list, exprContext); } @@ -4503,19 +4543,19 @@ final public SqlNode Query(ExprContext exprContext) throws ParseException { SqlNodeList withList = null; final SqlNode e; final List list = new ArrayList(); - if (jj_2_357(2)) { + if (jj_2_364(2)) { withList = WithList(); } else { ; } e = LeafQuery(exprContext); list.add(e); - label_41: + label_42: while (true) { - if (jj_2_358(2)) { + if (jj_2_365(2)) { ; } else { - break label_41; + break label_42; } AddSetOpQuery(list, exprContext); } @@ -4576,36 +4616,43 @@ final public void AddSetOpQuery(List list, ExprContext exprContext) thro final public SqlNodeList WithList() throws ParseException { final Span s; final List list = new ArrayList(); + boolean recursive = false; jj_consume_token(WITH); - s = span(); - AddWithItem(list); - label_42: + if (jj_2_366(2)) { + jj_consume_token(RECURSIVE); + recursive = true; + } else { + ; + } + s = span(); + AddWithItem(list, SqlLiteral.createBoolean(recursive, getPos())); + label_43: while (true) { - if (jj_2_359(2)) { + if (jj_2_367(2)) { ; } else { - break label_42; + break label_43; } jj_consume_token(COMMA); - AddWithItem(list); + AddWithItem(list, SqlLiteral.createBoolean(recursive, getPos())); } {if (true) return new SqlNodeList(list, s.end(this));} throw new Error("Missing return statement in function"); } - final public void AddWithItem(List list) throws ParseException { + final public void AddWithItem(List list, SqlLiteral recursive) throws ParseException { final SqlIdentifier id; final SqlNodeList columnList; final SqlNode definition; id = SimpleIdentifier(); - if (jj_2_360(2)) { + if (jj_2_368(2)) { columnList = ParenthesizedSimpleIdentifierList(); } else { columnList = null; } jj_consume_token(AS); definition = ParenthesizedExpression(ExprContext.ACCEPT_QUERY); - list.add(new SqlWithItem(id.getParserPosition(), id, columnList, definition)); + list.add(new SqlWithItem(id.getParserPosition(), id, columnList, definition, recursive)); } /** @@ -4614,10 +4661,10 @@ final public void AddWithItem(List list) throws ParseException { */ final public SqlNode LeafQueryOrExpr(ExprContext exprContext) throws ParseException { SqlNode e; - if (jj_2_361(2)) { + if (jj_2_369(2)) { e = LeafQuery(exprContext); {if (true) return e;} - } else if (jj_2_362(2)) { + } else if (jj_2_370(2)) { e = Expression(exprContext); {if (true) return e;} } else { @@ -4648,7 +4695,7 @@ final public void AddExpression2b(List list, ExprContext exprContext) th SqlNode e; SqlOperator op; SqlNode ext; - label_43: + label_44: while (true) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case EXISTS: @@ -4660,7 +4707,7 @@ final public void AddExpression2b(List list, ExprContext exprContext) th break; default: jj_la1[4] = jj_gen; - break label_43; + break label_44; } op = PrefixRowOperator(); checkNonQueryExpression(exprContext); @@ -4668,12 +4715,12 @@ final public void AddExpression2b(List list, ExprContext exprContext) th } e = Expression3(exprContext); list.add(e); - label_44: + label_45: while (true) { - if (jj_2_363(2)) { + if (jj_2_371(2)) { ; } else { - break label_44; + break label_45; } jj_consume_token(DOT); ext = RowExpressionExtension(); @@ -4704,32 +4751,33 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep final List list3 = new ArrayList(); SqlNodeList nodeList; SqlNode e; + SqlOperator itemOp; SqlOperator op; SqlIdentifier p; final Span s = span(); AddExpression2b(list, exprContext); - if (jj_2_402(2)) { - label_45: + if (jj_2_410(2)) { + label_46: while (true) { - if (jj_2_394(2)) { + if (jj_2_402(2)) { checkNonQueryExpression(exprContext); - if (jj_2_367(2)) { + if (jj_2_375(2)) { jj_consume_token(NOT); jj_consume_token(IN); op = SqlStdOperatorTable.NOT_IN; - } else if (jj_2_368(2)) { + } else if (jj_2_376(2)) { jj_consume_token(IN); op = SqlStdOperatorTable.IN; - } else if (jj_2_369(2)) { + } else if (jj_2_377(2)) { final SqlKind k; k = comp(); - if (jj_2_364(2)) { + if (jj_2_372(2)) { jj_consume_token(SOME); op = SqlStdOperatorTable.some(k); - } else if (jj_2_365(2)) { + } else if (jj_2_373(2)) { jj_consume_token(ANY); op = SqlStdOperatorTable.some(k); - } else if (jj_2_366(2)) { + } else if (jj_2_374(2)) { jj_consume_token(ALL); op = SqlStdOperatorTable.all(k); } else { @@ -4755,18 +4803,18 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep } else { list.add(nodeList); } - } else if (jj_2_395(2)) { + } else if (jj_2_403(2)) { checkNonQueryExpression(exprContext); - if (jj_2_376(2)) { + if (jj_2_384(2)) { jj_consume_token(NOT); jj_consume_token(BETWEEN); op = SqlStdOperatorTable.NOT_BETWEEN; s.clear().add(this); - if (jj_2_372(2)) { - if (jj_2_370(2)) { + if (jj_2_380(2)) { + if (jj_2_378(2)) { jj_consume_token(SYMMETRIC); op = SqlStdOperatorTable.SYMMETRIC_NOT_BETWEEN; - } else if (jj_2_371(2)) { + } else if (jj_2_379(2)) { jj_consume_token(ASYMMETRIC); } else { jj_consume_token(-1); @@ -4775,15 +4823,15 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep } else { ; } - } else if (jj_2_377(2)) { + } else if (jj_2_385(2)) { jj_consume_token(BETWEEN); op = SqlStdOperatorTable.BETWEEN; s.clear().add(this); - if (jj_2_375(2)) { - if (jj_2_373(2)) { + if (jj_2_383(2)) { + if (jj_2_381(2)) { jj_consume_token(SYMMETRIC); op = SqlStdOperatorTable.SYMMETRIC_BETWEEN; - } else if (jj_2_374(2)) { + } else if (jj_2_382(2)) { jj_consume_token(ASYMMETRIC); } else { jj_consume_token(-1); @@ -4800,22 +4848,22 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep list.add(new SqlParserUtil.ToTreeListItem(op, s.pos())); list.addAll(list3); list3.clear(); - } else if (jj_2_396(2)) { + } else if (jj_2_404(2)) { checkNonQueryExpression(exprContext); s.clear().add(this); - if (jj_2_389(2)) { - if (jj_2_382(2)) { + if (jj_2_397(2)) { + if (jj_2_390(2)) { jj_consume_token(NOT); - if (jj_2_378(2)) { + if (jj_2_386(2)) { jj_consume_token(LIKE); op = SqlStdOperatorTable.NOT_LIKE; - } else if (jj_2_379(2)) { + } else if (jj_2_387(2)) { jj_consume_token(ILIKE); op = SqlLibraryOperators.NOT_ILIKE; - } else if (jj_2_380(2)) { + } else if (jj_2_388(2)) { jj_consume_token(RLIKE); op = SqlLibraryOperators.NOT_RLIKE; - } else if (jj_2_381(2)) { + } else if (jj_2_389(2)) { jj_consume_token(SIMILAR); jj_consume_token(TO); op = SqlStdOperatorTable.NOT_SIMILAR_TO; @@ -4823,16 +4871,16 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_383(2)) { + } else if (jj_2_391(2)) { jj_consume_token(LIKE); op = SqlStdOperatorTable.LIKE; - } else if (jj_2_384(2)) { + } else if (jj_2_392(2)) { jj_consume_token(ILIKE); op = SqlLibraryOperators.ILIKE; - } else if (jj_2_385(2)) { + } else if (jj_2_393(2)) { jj_consume_token(RLIKE); op = SqlLibraryOperators.RLIKE; - } else if (jj_2_386(2)) { + } else if (jj_2_394(2)) { jj_consume_token(SIMILAR); jj_consume_token(TO); op = SqlStdOperatorTable.SIMILAR_TO; @@ -4840,20 +4888,20 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_390(2)) { + } else if (jj_2_398(2)) { jj_consume_token(NEGATE); jj_consume_token(TILDE); op = SqlStdOperatorTable.NEGATED_POSIX_REGEX_CASE_SENSITIVE; - if (jj_2_387(2)) { + if (jj_2_395(2)) { jj_consume_token(STAR); op = SqlStdOperatorTable.NEGATED_POSIX_REGEX_CASE_INSENSITIVE; } else { ; } - } else if (jj_2_391(2)) { + } else if (jj_2_399(2)) { jj_consume_token(TILDE); op = SqlStdOperatorTable.POSIX_REGEX_CASE_SENSITIVE; - if (jj_2_388(2)) { + if (jj_2_396(2)) { jj_consume_token(STAR); op = SqlStdOperatorTable.POSIX_REGEX_CASE_INSENSITIVE; } else { @@ -4866,7 +4914,7 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep list2 = Expression2(ExprContext.ACCEPT_SUB_QUERY); list.add(new SqlParserUtil.ToTreeListItem(op, s.pos())); list.addAll(list2); - if (jj_2_392(2)) { + if (jj_2_400(2)) { jj_consume_token(ESCAPE); e = Expression3(ExprContext.ACCEPT_SUB_QUERY); s.clear().add(this); @@ -4877,27 +4925,28 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep } else { ; } - } else if (jj_2_397(2)) { + } else if (jj_2_405(2)) { InfixCast(list, exprContext, s); - } else if (jj_2_398(3)) { + } else if (jj_2_406(3)) { op = BinaryRowOperator(); checkNonQueryExpression(exprContext); list.add(new SqlParserUtil.ToTreeListItem(op, getPos())); AddExpression2b(list, ExprContext.ACCEPT_SUB_QUERY); - } else if (jj_2_399(2)) { + } else if (jj_2_407(2)) { jj_consume_token(LBRACKET); + itemOp = getItemOp(); e = Expression(ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RBRACKET); list.add( new SqlParserUtil.ToTreeListItem( - SqlStdOperatorTable.ITEM, getPos())); + itemOp, getPos())); list.add(e); - label_46: + label_47: while (true) { - if (jj_2_393(2)) { + if (jj_2_401(2)) { ; } else { - break label_46; + break label_47; } jj_consume_token(DOT); p = SimpleIdentifier(); @@ -4906,7 +4955,7 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep SqlStdOperatorTable.DOT, getPos())); list.add(p); } - } else if (jj_2_400(2)) { + } else if (jj_2_408(2)) { checkNonQueryExpression(exprContext); op = PostfixRowOperator(); list.add(new SqlParserUtil.ToTreeListItem(op, getPos())); @@ -4914,10 +4963,10 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep jj_consume_token(-1); throw new ParseException(); } - if (jj_2_401(2)) { + if (jj_2_409(2)) { ; } else { - break label_45; + break label_46; } } {if (true) return list;} @@ -4927,27 +4976,47 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep throw new Error("Missing return statement in function"); } +/** Returns the appropriate ITEM operator for indexing arrays. */ + final public SqlOperator getItemOp() throws ParseException { + if (jj_2_411(2)) { + jj_consume_token(OFFSET); + {if (true) return SqlLibraryOperators.OFFSET;} + } else if (jj_2_412(2)) { + jj_consume_token(ORDINAL); + {if (true) return SqlLibraryOperators.ORDINAL;} + } else if (jj_2_413(2)) { + jj_consume_token(SAFE_OFFSET); + {if (true) return SqlLibraryOperators.SAFE_OFFSET;} + } else if (jj_2_414(2)) { + jj_consume_token(SAFE_ORDINAL); + {if (true) return SqlLibraryOperators.SAFE_ORDINAL;} + } else { + {if (true) return SqlStdOperatorTable.ITEM;} + } + throw new Error("Missing return statement in function"); + } + /** Parses a comparison operator inside a SOME / ALL predicate. */ final public SqlKind comp() throws ParseException { - if (jj_2_403(2)) { + if (jj_2_415(2)) { jj_consume_token(LT); {if (true) return SqlKind.LESS_THAN;} - } else if (jj_2_404(2)) { + } else if (jj_2_416(2)) { jj_consume_token(LE); {if (true) return SqlKind.LESS_THAN_OR_EQUAL;} - } else if (jj_2_405(2)) { + } else if (jj_2_417(2)) { jj_consume_token(GT); {if (true) return SqlKind.GREATER_THAN;} - } else if (jj_2_406(2)) { + } else if (jj_2_418(2)) { jj_consume_token(GE); {if (true) return SqlKind.GREATER_THAN_OR_EQUAL;} - } else if (jj_2_407(2)) { + } else if (jj_2_419(2)) { jj_consume_token(EQ); {if (true) return SqlKind.EQUALS;} - } else if (jj_2_408(2)) { + } else if (jj_2_420(2)) { jj_consume_token(NE); {if (true) return SqlKind.NOT_EQUALS;} - } else if (jj_2_409(2)) { + } else if (jj_2_421(2)) { jj_consume_token(NE2); if (!this.conformance.isBangEqualAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.bangEqualNotAllowed());} @@ -4970,14 +5039,14 @@ final public SqlNode Expression3(ExprContext exprContext) throws ParseException final SqlNodeList list1; final Span s; final Span rowSpan; - if (jj_2_412(2)) { + if (jj_2_424(2)) { e = AtomicRowExpression(); checkNonQueryExpression(exprContext); {if (true) return e;} - } else if (jj_2_413(2)) { + } else if (jj_2_425(2)) { e = CursorExpression(exprContext); {if (true) return e;} - } else if (jj_2_414(3)) { + } else if (jj_2_426(3)) { jj_consume_token(ROW); s = span(); list = ParenthesizedQueryOrCommaList(exprContext); @@ -4989,8 +5058,8 @@ final public SqlNode Expression3(ExprContext exprContext) throws ParseException RESOURCE.illegalRowExpression());} } {if (true) return SqlStdOperatorTable.ROW.createCall(list);} - } else if (jj_2_415(2)) { - if (jj_2_410(2)) { + } else if (jj_2_427(2)) { + if (jj_2_422(2)) { jj_consume_token(ROW); rowSpan = span(); } else { @@ -5002,7 +5071,7 @@ final public SqlNode Expression3(ExprContext exprContext) throws ParseException {if (true) return SqlStdOperatorTable.ROW.createCall(rowSpan.end(list1), (List) list1);} } - if (jj_2_411(2)) { + if (jj_2_423(2)) { e = IntervalQualifier(); if ((list1.size() == 1) && list1.get(0) instanceof SqlCall) @@ -5035,25 +5104,64 @@ final public SqlNode Expression3(ExprContext exprContext) throws ParseException throw new Error("Missing return statement in function"); } +/** + * Parses a lambda expression. + */ + final public SqlNode LambdaExpression() throws ParseException { + final SqlNodeList parameters; + final SqlNode expression; + final Span s; + parameters = SimpleIdentifierOrListOrEmpty(); + jj_consume_token(LAMBDA); + s = span(); + expression = Expression(ExprContext.ACCEPT_NON_QUERY); + {if (true) return new SqlLambda(s.end(this), parameters, expression);} + throw new Error("Missing return statement in function"); + } + +/** + * List of simple identifiers in parentheses or empty parentheses or one simple identifier. + *
    Examples: + *
  • {@code ()} + *
  • {@code DEPTNO} + *
  • {@code (EMPNO, DEPTNO)} + *
+ */ + final public SqlNodeList SimpleIdentifierOrListOrEmpty() throws ParseException { + SqlNodeList list; + if (jj_2_428(2)) { + jj_consume_token(LPAREN); + jj_consume_token(RPAREN); + {if (true) return SqlNodeList.EMPTY;} + } else if (jj_2_429(2)) { + list = SimpleIdentifierOrList(); + {if (true) return list;} + } else { + jj_consume_token(-1); + throw new ParseException(); + } + throw new Error("Missing return statement in function"); + } + final public SqlOperator periodOperator() throws ParseException { - if (jj_2_416(2)) { + if (jj_2_430(2)) { jj_consume_token(OVERLAPS); {if (true) return SqlStdOperatorTable.OVERLAPS;} - } else if (jj_2_417(2)) { + } else if (jj_2_431(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.IMMEDIATELY_PRECEDES;} - } else if (jj_2_418(2)) { + } else if (jj_2_432(2)) { jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.PRECEDES;} - } else if (jj_2_419(2)) { + } else if (jj_2_433(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.IMMEDIATELY_SUCCEEDS;} - } else if (jj_2_420(2)) { + } else if (jj_2_434(2)) { jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.SUCCEEDS;} - } else if (jj_2_421(2)) { + } else if (jj_2_435(2)) { jj_consume_token(EQUALS); {if (true) return SqlStdOperatorTable.PERIOD_EQUALS;} } else { @@ -5079,9 +5187,9 @@ final public SqlCollation CollateClause() throws ParseException { */ final public SqlNode UnsignedNumericLiteralOrParam() throws ParseException { final SqlNode e; - if (jj_2_422(2)) { + if (jj_2_436(2)) { e = UnsignedNumericLiteral(); - } else if (jj_2_423(2)) { + } else if (jj_2_437(2)) { e = DynamicParam(); } else { jj_consume_token(-1); @@ -5102,20 +5210,20 @@ final public SqlNode RowExpressionExtension() throws ParseException { final List args; final SqlLiteral quantifier; p = SimpleIdentifier(); - if (jj_2_427(2147483647)) { + if (jj_2_441(2147483647)) { s = span(); - if (jj_2_424(2)) { + if (jj_2_438(2)) { jj_consume_token(LPAREN); jj_consume_token(STAR); quantifier = null; args = ImmutableList.of(SqlIdentifier.star(getPos())); jj_consume_token(RPAREN); - } else if (jj_2_425(2)) { + } else if (jj_2_439(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); quantifier = null; args = ImmutableList.of(); - } else if (jj_2_426(2)) { + } else if (jj_2_440(2)) { args = FunctionParameterList(ExprContext.ACCEPT_SUB_QUERY); quantifier = (SqlLiteral) args.get(0); args.remove(0); @@ -5142,16 +5250,16 @@ final public SqlCall StringAggFunctionCall() throws ParseException { final SqlNodeList orderBy; final Pair nullTreatment; final SqlNode separator; - if (jj_2_428(2)) { + if (jj_2_442(2)) { jj_consume_token(ARRAY_AGG); s = span(); op = SqlLibraryOperators.ARRAY_AGG; - } else if (jj_2_429(2)) { + } else if (jj_2_443(2)) { jj_consume_token(ARRAY_CONCAT_AGG); s = span(); op = SqlLibraryOperators.ARRAY_CONCAT_AGG; - } else if (jj_2_430(2)) { + } else if (jj_2_444(2)) { jj_consume_token(GROUP_CONCAT); s = span(); op = SqlLibraryOperators.GROUP_CONCAT; - } else if (jj_2_431(2)) { + } else if (jj_2_445(2)) { jj_consume_token(STRING_AGG); s = span(); op = SqlLibraryOperators.STRING_AGG; } else { @@ -5159,18 +5267,18 @@ final public SqlCall StringAggFunctionCall() throws ParseException { throw new ParseException(); } jj_consume_token(LPAREN); - if (jj_2_432(2)) { + if (jj_2_446(2)) { qualifier = AllOrDistinct(); } else { qualifier = null; } AddArg(args, ExprContext.ACCEPT_SUB_QUERY); - label_47: + label_48: while (true) { - if (jj_2_433(2)) { + if (jj_2_447(2)) { ; } else { - break label_47; + break label_48; } jj_consume_token(COMMA); // a comma-list can't appear where only a query is expected @@ -5178,18 +5286,18 @@ final public SqlCall StringAggFunctionCall() throws ParseException { checkNonQueryExpression(ExprContext.ACCEPT_SUB_QUERY); AddArg(args, ExprContext.ACCEPT_SUB_QUERY); } - if (jj_2_434(2)) { + if (jj_2_448(2)) { nullTreatment = NullTreatment(); } else { nullTreatment = null; } - if (jj_2_435(2)) { + if (jj_2_449(2)) { orderBy = OrderBy(true); args.add(orderBy); } else { ; } - if (jj_2_436(2)) { + if (jj_2_450(2)) { jj_consume_token(SEPARATOR); s2 = span(); separator = StringLiteral(); @@ -5207,38 +5315,96 @@ final public SqlCall StringAggFunctionCall() throws ParseException { throw new Error("Missing return statement in function"); } +/** + * Parses both the standard and the BigQuery PERCENTILE_CONT/PERCENTILE_DISC + * functions. + * + *

The standard is of the form "PERCENTILE_CONT(fraction)" while BigQuery is + * of the form "PERCENTILE_CONT(value, fraction [ {RESPECT | IGNORE} NULLS ] )". + * Handles the parsing of the operator and its operands but not the WITHIN GROUP + * (for the standard) or OVER (for BigQuery) clauses. + */ + final public SqlCall PercentileFunctionCall() throws ParseException { + final Span s; + SqlOperator op; + final SqlNode e; + final List args = new ArrayList(); + final Pair nullTreatment; + if (jj_2_451(2)) { + jj_consume_token(PERCENTILE_CONT); + op = SqlStdOperatorTable.PERCENTILE_CONT; + } else if (jj_2_452(2)) { + jj_consume_token(PERCENTILE_DISC); + op = SqlStdOperatorTable.PERCENTILE_DISC; + } else { + jj_consume_token(-1); + throw new ParseException(); + } + s = span(); + jj_consume_token(LPAREN); + AddArg(args, ExprContext.ACCEPT_SUB_QUERY); + if (jj_2_454(2)) { + jj_consume_token(RPAREN); + {if (true) return op.createCall(s.end(this), args);} + } else if (jj_2_455(2)) { + jj_consume_token(COMMA); + e = NumericLiteral(); + args.add(e); + if (jj_2_453(2)) { + nullTreatment = NullTreatment(); + } else { + nullTreatment = null; + } + jj_consume_token(RPAREN); + op = + op == SqlStdOperatorTable.PERCENTILE_CONT + ? SqlLibraryOperators.PERCENTILE_CONT2 + : SqlLibraryOperators.PERCENTILE_DISC2; + SqlCall call = op.createCall(s.end(this), args); + if (nullTreatment != null) { + // Wrap in RESPECT_NULLS or IGNORE_NULLS. + call = nullTreatment.right.createCall(nullTreatment.left, call); + } + {if (true) return call;} + } else { + jj_consume_token(-1); + throw new ParseException(); + } + throw new Error("Missing return statement in function"); + } + /** * Parses an atomic row expression. */ final public SqlNode AtomicRowExpression() throws ParseException { final SqlNode e; - if (jj_2_437(2)) { + if (jj_2_456(2)) { e = LiteralOrIntervalExpression(); - } else if (jj_2_438(2)) { + } else if (jj_2_457(2)) { e = DynamicParam(); - } else if (jj_2_439(2)) { + } else if (jj_2_458(2)) { e = BuiltinFunctionCall(); - } else if (jj_2_440(2)) { + } else if (jj_2_459(2)) { e = JdbcFunctionCall(); - } else if (jj_2_441(2)) { + } else if (jj_2_460(2)) { e = MultisetConstructor(); - } else if (jj_2_442(2)) { + } else if (jj_2_461(2)) { e = ArrayConstructor(); - } else if (jj_2_443(3)) { + } else if (jj_2_462(3)) { e = MapConstructor(); - } else if (jj_2_444(2)) { + } else if (jj_2_463(2)) { e = PeriodConstructor(); - } else if (jj_2_445(2147483647)) { + } else if (jj_2_464(2147483647)) { e = NamedFunctionCall(); - } else if (jj_2_446(2)) { + } else if (jj_2_465(2)) { e = ContextVariable(); - } else if (jj_2_447(2)) { + } else if (jj_2_466(2)) { e = CompoundIdentifier(); - } else if (jj_2_448(2)) { + } else if (jj_2_467(2)) { e = NewSpecification(); - } else if (jj_2_449(2)) { + } else if (jj_2_468(2)) { e = CaseExpression(); - } else if (jj_2_450(2)) { + } else if (jj_2_469(2)) { e = SequenceExpression(); } else { jj_consume_token(-1); @@ -5259,12 +5425,12 @@ final public SqlNode CaseExpression() throws ParseException { final List thenList = new ArrayList(); jj_consume_token(CASE); s = span(); - if (jj_2_451(2)) { + if (jj_2_470(2)) { caseIdentifier = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { caseIdentifier = null; } - label_48: + label_49: while (true) { jj_consume_token(WHEN); whenSpan.add(this); @@ -5277,13 +5443,13 @@ final public SqlNode CaseExpression() throws ParseException { thenSpan.add(this); e = Expression(ExprContext.ACCEPT_SUB_QUERY); thenList.add(e); - if (jj_2_452(2)) { + if (jj_2_471(2)) { ; } else { - break label_48; + break label_49; } } - if (jj_2_453(2)) { + if (jj_2_472(2)) { jj_consume_token(ELSE); elseClause = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { @@ -5301,10 +5467,10 @@ final public SqlCall SequenceExpression() throws ParseException { final Span s; final SqlOperator f; final SqlNode sequenceRef; - if (jj_2_454(2)) { + if (jj_2_473(2)) { jj_consume_token(NEXT); f = SqlStdOperatorTable.NEXT_VALUE; s = span(); - } else if (jj_2_455(3)) { + } else if (jj_2_474(3)) { jj_consume_token(CURRENT); f = SqlStdOperatorTable.CURRENT_VALUE; s = span(); } else { @@ -5325,16 +5491,16 @@ final public SqlCall SequenceExpression() throws ParseException { final public SqlSetOption SqlSetOption(Span s, String scope) throws ParseException { SqlIdentifier name; final SqlNode val; - if (jj_2_461(2)) { + if (jj_2_480(2)) { jj_consume_token(SET); s.add(this); name = CompoundIdentifier(); jj_consume_token(EQ); - if (jj_2_456(2)) { + if (jj_2_475(2)) { val = Literal(); - } else if (jj_2_457(2)) { + } else if (jj_2_476(2)) { val = SimpleIdentifier(); - } else if (jj_2_458(2)) { + } else if (jj_2_477(2)) { jj_consume_token(ON); // OFF is handled by SimpleIdentifier, ON handled here. val = new SqlIdentifier(token.image.toUpperCase(Locale.ROOT), @@ -5344,12 +5510,12 @@ final public SqlSetOption SqlSetOption(Span s, String scope) throws ParseExcepti throw new ParseException(); } {if (true) return new SqlSetOption(s.end(val), scope, name, val);} - } else if (jj_2_462(2)) { + } else if (jj_2_481(2)) { jj_consume_token(RESET); s.add(this); - if (jj_2_459(2)) { + if (jj_2_478(2)) { name = CompoundIdentifier(); - } else if (jj_2_460(2)) { + } else if (jj_2_479(2)) { jj_consume_token(ALL); name = new SqlIdentifier(token.image.toUpperCase(Locale.ROOT), getPos()); @@ -5382,9 +5548,9 @@ final public SqlAlter SqlAlter() throws ParseException { } final public String Scope() throws ParseException { - if (jj_2_463(2)) { + if (jj_2_482(2)) { jj_consume_token(SYSTEM); - } else if (jj_2_464(2)) { + } else if (jj_2_483(2)) { jj_consume_token(SESSION); } else { jj_consume_token(-1); @@ -5403,18 +5569,18 @@ final public SqlCreate SqlCreate() throws ParseException { final SqlCreate create; jj_consume_token(CREATE); s = span(); - if (jj_2_465(2)) { + if (jj_2_484(2)) { jj_consume_token(OR); jj_consume_token(REPLACE); replace = true; } else { ; } - if (jj_2_466(2)) { + if (jj_2_485(2)) { create = SqlCreateTable(s, replace); - } else if (jj_2_467(2)) { + } else if (jj_2_486(2)) { create = SqlCreateIndex(s, replace); - } else if (jj_2_468(2)) { + } else if (jj_2_487(2)) { create = SqlCreateUser(s, replace); } else { jj_consume_token(-1); @@ -5433,11 +5599,11 @@ final public SqlDrop SqlDrop() throws ParseException { final SqlDrop drop; jj_consume_token(DROP); s = span(); - if (jj_2_469(2)) { + if (jj_2_488(2)) { drop = SqlDropTable(s, replace); - } else if (jj_2_470(2)) { + } else if (jj_2_489(2)) { drop = SqlDropIndex(s, replace); - } else if (jj_2_471(2)) { + } else if (jj_2_490(2)) { drop = SqlDropUser(s, replace); } else { jj_consume_token(-1); @@ -5459,9 +5625,9 @@ final public SqlDrop SqlDrop() throws ParseException { */ final public SqlNode Literal() throws ParseException { SqlNode e; - if (jj_2_472(2)) { + if (jj_2_491(2)) { e = NonIntervalLiteral(); - } else if (jj_2_473(2)) { + } else if (jj_2_492(2)) { e = IntervalLiteral(); } else { jj_consume_token(-1); @@ -5474,13 +5640,13 @@ final public SqlNode Literal() throws ParseException { /** Parses a literal that is not an interval literal. */ final public SqlNode NonIntervalLiteral() throws ParseException { final SqlNode e; - if (jj_2_474(2)) { + if (jj_2_493(2)) { e = NumericLiteral(); - } else if (jj_2_475(2)) { + } else if (jj_2_494(2)) { e = StringLiteral(); - } else if (jj_2_476(2)) { + } else if (jj_2_495(2)) { e = SpecialLiteral(); - } else if (jj_2_477(2)) { + } else if (jj_2_496(2)) { e = DateTimeLiteral(); } else { jj_consume_token(-1); @@ -5498,9 +5664,9 @@ final public SqlNode NonIntervalLiteral() throws ParseException { * LOOKAHEAD. */ final public SqlNode LiteralOrIntervalExpression() throws ParseException { final SqlNode e; - if (jj_2_478(2)) { + if (jj_2_497(2)) { e = IntervalLiteralOrExpression(); - } else if (jj_2_479(2)) { + } else if (jj_2_498(2)) { e = NonIntervalLiteral(); } else { jj_consume_token(-1); @@ -5512,13 +5678,18 @@ final public SqlNode LiteralOrIntervalExpression() throws ParseException { /** Parses a unsigned numeric literal */ final public SqlNumericLiteral UnsignedNumericLiteral() throws ParseException { - if (jj_2_480(2)) { +final String p; + if (jj_2_499(2)) { jj_consume_token(UNSIGNED_INTEGER_LITERAL); {if (true) return SqlLiteral.createExactNumeric(token.image, getPos());} - } else if (jj_2_481(2)) { + } else if (jj_2_500(2)) { jj_consume_token(DECIMAL_NUMERIC_LITERAL); {if (true) return SqlLiteral.createExactNumeric(token.image, getPos());} - } else if (jj_2_482(2)) { + } else if (jj_2_501(2)) { + jj_consume_token(DECIMAL); + p = SimpleStringLiteral(); + {if (true) return SqlParserUtil.parseDecimalLiteral(SqlParserUtil.trim(p, " "), getPos());} + } else if (jj_2_502(2)) { jj_consume_token(APPROX_NUMERIC_LITERAL); {if (true) return SqlLiteral.createApproxNumeric(token.image, getPos());} } else { @@ -5532,16 +5703,16 @@ final public SqlNumericLiteral UnsignedNumericLiteral() throws ParseException { final public SqlLiteral NumericLiteral() throws ParseException { final SqlNumericLiteral num; final Span s; - if (jj_2_483(2)) { + if (jj_2_503(2)) { jj_consume_token(PLUS); num = UnsignedNumericLiteral(); {if (true) return num;} - } else if (jj_2_484(2)) { + } else if (jj_2_504(2)) { jj_consume_token(MINUS); s = span(); num = UnsignedNumericLiteral(); {if (true) return SqlLiteral.createNegative(num, s.end(this));} - } else if (jj_2_485(2)) { + } else if (jj_2_505(2)) { num = UnsignedNumericLiteral(); {if (true) return num;} } else { @@ -5553,16 +5724,16 @@ final public SqlLiteral NumericLiteral() throws ParseException { /** Parse a special literal keyword */ final public SqlLiteral SpecialLiteral() throws ParseException { - if (jj_2_486(2)) { + if (jj_2_506(2)) { jj_consume_token(TRUE); {if (true) return SqlLiteral.createBoolean(true, getPos());} - } else if (jj_2_487(2)) { + } else if (jj_2_507(2)) { jj_consume_token(FALSE); {if (true) return SqlLiteral.createBoolean(false, getPos());} - } else if (jj_2_488(2)) { + } else if (jj_2_508(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlLiteral.createUnknown(getPos());} - } else if (jj_2_489(2)) { + } else if (jj_2_509(2)) { jj_consume_token(NULL); {if (true) return SqlLiteral.createNull(getPos());} } else { @@ -5589,7 +5760,7 @@ final public SqlNode StringLiteral() throws ParseException { char unicodeEscapeChar = 0; String charSet = null; SqlCharStringLiteral literal; - if (jj_2_494(2)) { + if (jj_2_514(2)) { jj_consume_token(BINARY_STRING_LITERAL); frags = new ArrayList(); try { @@ -5599,7 +5770,7 @@ final public SqlNode StringLiteral() throws ParseException { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.illegalBinaryString(token.image));} } - label_49: + label_50: while (true) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case QUOTED_STRING: @@ -5607,7 +5778,7 @@ final public SqlNode StringLiteral() throws ParseException { break; default: jj_la1[5] = jj_gen; - break label_49; + break label_50; } jj_consume_token(QUOTED_STRING); try { @@ -5625,13 +5796,13 @@ final public SqlNode StringLiteral() throws ParseException { SqlParserPos pos2 = SqlParserPos.sum(frags); {if (true) return SqlStdOperatorTable.LITERAL_CHAIN.createCall(pos2, frags);} } - } else if (jj_2_495(2)) { - if (jj_2_490(2)) { + } else if (jj_2_515(2)) { + if (jj_2_510(2)) { jj_consume_token(PREFIXED_STRING_LITERAL); charSet = SqlParserUtil.getCharacterSet(token.image); - } else if (jj_2_491(2)) { + } else if (jj_2_511(2)) { jj_consume_token(QUOTED_STRING); - } else if (jj_2_492(2)) { + } else if (jj_2_512(2)) { jj_consume_token(UNICODE_STRING_LITERAL); // TODO jvs 2-Feb-2009: support the explicit specification of // a character set for Unicode string literals, per SQL:2003 @@ -5650,7 +5821,7 @@ final public SqlNode StringLiteral() throws ParseException { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.unknownCharacterSet(charSet));} } - label_50: + label_51: while (true) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case QUOTED_STRING: @@ -5658,7 +5829,7 @@ final public SqlNode StringLiteral() throws ParseException { break; default: jj_la1[6] = jj_gen; - break label_50; + break label_51; } jj_consume_token(QUOTED_STRING); p = SqlParserUtil.parseString(token.image); @@ -5670,7 +5841,7 @@ final public SqlNode StringLiteral() throws ParseException { RESOURCE.unknownCharacterSet(charSet));} } } - if (jj_2_493(2)) { + if (jj_2_513(2)) { jj_consume_token(UESCAPE); jj_consume_token(QUOTED_STRING); if (unicodeEscapeChar == 0) { @@ -5696,7 +5867,7 @@ final public SqlNode StringLiteral() throws ParseException { SqlParserPos pos2 = SqlParserPos.sum(rands); {if (true) return SqlStdOperatorTable.LITERAL_CHAIN.createCall(pos2, rands);} } - } else if (jj_2_496(2)) { + } else if (jj_2_516(2)) { jj_consume_token(C_STYLE_ESCAPED_STRING_LITERAL); try { p = SqlParserUtil.parseCString(getToken(0).image); @@ -5705,7 +5876,7 @@ final public SqlNode StringLiteral() throws ParseException { RESOURCE.unicodeEscapeMalformed(e.i));} } {if (true) return SqlLiteral.createCharString(p, "UTF16", getPos());} - } else if (jj_2_497(2)) { + } else if (jj_2_517(2)) { jj_consume_token(BIG_QUERY_DOUBLE_QUOTED_STRING); p = SqlParserUtil.stripQuotes(getToken(0).image, DQ, DQ, "\\\"", Casing.UNCHANGED); @@ -5715,7 +5886,7 @@ final public SqlNode StringLiteral() throws ParseException { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.unknownCharacterSet(charSet));} } - } else if (jj_2_498(2)) { + } else if (jj_2_518(2)) { jj_consume_token(BIG_QUERY_QUOTED_STRING); p = SqlParserUtil.stripQuotes(getToken(0).image, "'", "'", "\\'", Casing.UNCHANGED); @@ -5737,13 +5908,13 @@ final public SqlNode StringLiteral() throws ParseException { * on BigQuery also matches a double-quoted string, such as "foo". * Returns the value of the string with quotes removed. */ final public String SimpleStringLiteral() throws ParseException { - if (jj_2_499(2)) { + if (jj_2_519(2)) { jj_consume_token(QUOTED_STRING); {if (true) return SqlParserUtil.parseString(token.image);} - } else if (jj_2_500(2)) { + } else if (jj_2_520(2)) { jj_consume_token(BIG_QUERY_QUOTED_STRING); {if (true) return SqlParserUtil.stripQuotes(token.image, "'", "'", "\\'", Casing.UNCHANGED);} - } else if (jj_2_501(2)) { + } else if (jj_2_521(2)) { jj_consume_token(BIG_QUERY_DOUBLE_QUOTED_STRING); {if (true) return SqlParserUtil.stripQuotes(token.image, DQ, DQ, "\\\"", Casing.UNCHANGED);} } else { @@ -5759,54 +5930,74 @@ final public String SimpleStringLiteral() throws ParseException { final public SqlLiteral DateTimeLiteral() throws ParseException { final String p; final Span s; - if (jj_2_502(2)) { + boolean local = false; + if (jj_2_524(2)) { jj_consume_token(LBRACE_D); jj_consume_token(QUOTED_STRING); p = SqlParserUtil.parseString(token.image); jj_consume_token(RBRACE); {if (true) return SqlParserUtil.parseDateLiteral(p, getPos());} - } else if (jj_2_503(2)) { + } else if (jj_2_525(2)) { jj_consume_token(LBRACE_T); jj_consume_token(QUOTED_STRING); p = SqlParserUtil.parseString(token.image); jj_consume_token(RBRACE); {if (true) return SqlParserUtil.parseTimeLiteral(p, getPos());} - } else if (jj_2_504(2)) { + } else if (jj_2_526(2)) { jj_consume_token(LBRACE_TS); s = span(); jj_consume_token(QUOTED_STRING); p = SqlParserUtil.parseString(token.image); jj_consume_token(RBRACE); {if (true) return SqlParserUtil.parseTimestampLiteral(p, s.end(this));} - } else if (jj_2_505(2)) { + } else if (jj_2_527(2)) { jj_consume_token(DATE); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("DATE", p, s.end(this));} - } else if (jj_2_506(2)) { + } else if (jj_2_528(2)) { jj_consume_token(DATETIME); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("DATETIME", p, s.end(this));} - } else if (jj_2_507(2)) { + } else if (jj_2_529(2)) { jj_consume_token(TIME); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("TIME", p, s.end(this));} - } else if (jj_2_508(2)) { + } else if (jj_2_530(2)) { jj_consume_token(TIMESTAMP); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("TIMESTAMP", p, s.end(this));} - } else if (jj_2_509(2)) { + } else if (jj_2_531(2)) { + jj_consume_token(TIME); + s = span(); + jj_consume_token(WITH); + if (jj_2_522(2)) { + jj_consume_token(LOCAL); + local = true; + } else { + ; + } + jj_consume_token(TIME); + jj_consume_token(ZONE); + p = SimpleStringLiteral(); + {if (true) return SqlLiteral.createUnknown("TIME WITH " + (local ? "LOCAL " : "") + "TIME ZONE", p, s.end(this));} + } else if (jj_2_532(2)) { jj_consume_token(TIMESTAMP); s = span(); jj_consume_token(WITH); - jj_consume_token(LOCAL); + if (jj_2_523(2)) { + jj_consume_token(LOCAL); + local = true; + } else { + ; + } jj_consume_token(TIME); jj_consume_token(ZONE); p = SimpleStringLiteral(); - {if (true) return SqlLiteral.createUnknown("TIMESTAMP WITH LOCAL TIME ZONE", p, s.end(this));} + {if (true) return SqlLiteral.createUnknown("TIMESTAMP WITH " + (local ? "LOCAL " : "") + "TIME ZONE", p, s.end(this));} } else { jj_consume_token(-1); throw new ParseException(); @@ -5822,13 +6013,13 @@ final public SqlNode DateTimeConstructorCall() throws ParseException { final Span s; final SqlLiteral quantifier; final List args; - if (jj_2_510(2)) { + if (jj_2_533(2)) { jj_consume_token(DATE); - } else if (jj_2_511(2)) { + } else if (jj_2_534(2)) { jj_consume_token(TIME); - } else if (jj_2_512(2)) { + } else if (jj_2_535(2)) { jj_consume_token(DATETIME); - } else if (jj_2_513(2)) { + } else if (jj_2_536(2)) { jj_consume_token(TIMESTAMP); } else { jj_consume_token(-1); @@ -5850,22 +6041,22 @@ final public SqlNode MultisetConstructor() throws ParseException { final Span s; jj_consume_token(MULTISET); s = span(); - if (jj_2_515(2)) { + if (jj_2_538(2)) { jj_consume_token(LPAREN); // by sub query "MULTISET(SELECT * FROM T)" e = LeafQueryOrExpr(ExprContext.ACCEPT_QUERY); jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.MULTISET_QUERY.createCall( s.end(this), e);} - } else if (jj_2_516(2)) { + } else if (jj_2_539(2)) { jj_consume_token(LBRACKET); AddExpression(args, ExprContext.ACCEPT_NON_QUERY); - label_51: + label_52: while (true) { - if (jj_2_514(2)) { + if (jj_2_537(2)) { ; } else { - break label_51; + break label_52; } jj_consume_token(COMMA); AddExpression(args, ExprContext.ACCEPT_NON_QUERY); @@ -5882,37 +6073,44 @@ final public SqlNode MultisetConstructor() throws ParseException { /** Parses an ARRAY constructor */ final public SqlNode ArrayConstructor() throws ParseException { - SqlNodeList args; + final SqlNodeList args; SqlNode e; final Span s; final String p; jj_consume_token(ARRAY); s = span(); - switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { - case LPAREN: - jj_consume_token(LPAREN); - // by sub query "MULTISET(SELECT * FROM T)" - e = OrderedQueryOrExpr(ExprContext.ACCEPT_QUERY); - jj_consume_token(RPAREN); - {if (true) return SqlStdOperatorTable.ARRAY_QUERY.createCall( - s.end(this), e);} - break; - default: - jj_la1[7] = jj_gen; - if (jj_2_518(2)) { - jj_consume_token(LBRACKET); - if (jj_2_517(2)) { - args = ExpressionCommaList(s, ExprContext.ACCEPT_NON_QUERY); - } else { - args = SqlNodeList.EMPTY; - } - jj_consume_token(RBRACKET); - {if (true) return SqlStdOperatorTable.ARRAY_VALUE_CONSTRUCTOR.createCall( - s.end(this), args.getList());} + if (jj_2_543(2)) { + if (jj_2_540(2)) { + jj_consume_token(LPAREN); + jj_consume_token(RPAREN); + args = SqlNodeList.EMPTY; + } else if (jj_2_541(2)) { + args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_ALL); } else { jj_consume_token(-1); throw new ParseException(); } + if (args.size() == 1 && args.get(0).isA(SqlKind.QUERY)) { + // Array query constructor, 'ARRAY (SELECT * FROM t)' + {if (true) return SqlStdOperatorTable.ARRAY_QUERY.createCall(s.end(this), args.get(0));} + } else { + // Spark ARRAY function, 'ARRAY(1, 2)', + // equivalent to standard 'ARRAY [1, 2]' + {if (true) return SqlLibraryOperators.ARRAY.createCall(s.end(this), args.getList());} + } + } else if (jj_2_544(2)) { + jj_consume_token(LBRACKET); + if (jj_2_542(2)) { + args = ExpressionCommaList(s, ExprContext.ACCEPT_NON_QUERY); + } else { + args = SqlNodeList.EMPTY; + } + jj_consume_token(RBRACKET); + {if (true) return SqlStdOperatorTable.ARRAY_VALUE_CONSTRUCTOR.createCall( + s.end(this), args.getList());} + } else { + jj_consume_token(-1); + throw new ParseException(); } throw new Error("Missing return statement in function"); } @@ -5923,29 +6121,29 @@ final public SqlCall ArrayLiteral() throws ParseException { final Span s; jj_consume_token(LBRACE); s = span(); - if (jj_2_521(2)) { + if (jj_2_547(2)) { e = Literal(); list = startList(e); - label_52: + label_53: while (true) { - if (jj_2_519(2)) { + if (jj_2_545(2)) { ; } else { - break label_52; + break label_53; } jj_consume_token(COMMA); e = Literal(); list.add(e); } - } else if (jj_2_522(2)) { + } else if (jj_2_548(2)) { e = ArrayLiteral(); list = startList(e); - label_53: + label_54: while (true) { - if (jj_2_520(2)) { + if (jj_2_546(2)) { ; } else { - break label_53; + break label_54; } jj_consume_token(COMMA); e = ArrayLiteral(); @@ -5962,35 +6160,40 @@ final public SqlCall ArrayLiteral() throws ParseException { /** Parses a MAP constructor */ final public SqlNode MapConstructor() throws ParseException { SqlNodeList args; - SqlNode e; final Span s; jj_consume_token(MAP); s = span(); - switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { - case LPAREN: - jj_consume_token(LPAREN); - // by sub query "MAP (SELECT empno, deptno FROM emp)" - e = LeafQueryOrExpr(ExprContext.ACCEPT_QUERY); - jj_consume_token(RPAREN); - {if (true) return SqlStdOperatorTable.MAP_QUERY.createCall( - s.end(this), e);} - break; - default: - jj_la1[8] = jj_gen; - if (jj_2_524(2)) { - jj_consume_token(LBRACKET); - if (jj_2_523(2)) { - args = ExpressionCommaList(s, ExprContext.ACCEPT_NON_QUERY); - } else { - args = SqlNodeList.EMPTY; - } - jj_consume_token(RBRACKET); - {if (true) return SqlStdOperatorTable.MAP_VALUE_CONSTRUCTOR.createCall( - s.end(this), args.getList());} + if (jj_2_552(2)) { + if (jj_2_549(2)) { + jj_consume_token(LPAREN); + jj_consume_token(RPAREN); + args = SqlNodeList.EMPTY; + } else if (jj_2_550(2)) { + args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_ALL); } else { jj_consume_token(-1); throw new ParseException(); } + if (args.size() == 1 && args.get(0).isA(SqlKind.QUERY)) { + // MAP query constructor e.g. "MAP (SELECT empno, deptno FROM emps)" + {if (true) return SqlStdOperatorTable.MAP_QUERY.createCall(s.end(this), args.get(0));} + } else { + // MAP function e.g. "MAP(1, 2)" equivalent to standard "MAP[1, 2]" + {if (true) return SqlLibraryOperators.MAP.createCall(s.end(this), args.getList());} + } + } else if (jj_2_553(2)) { + jj_consume_token(LBRACKET); + if (jj_2_551(2)) { + args = ExpressionCommaList(s, ExprContext.ACCEPT_NON_QUERY); + } else { + args = SqlNodeList.EMPTY; + } + jj_consume_token(RBRACKET); + {if (true) return SqlStdOperatorTable.MAP_VALUE_CONSTRUCTOR.createCall( + s.end(this), args.getList());} + } else { + jj_consume_token(-1); + throw new ParseException(); } throw new Error("Missing return statement in function"); } @@ -6020,11 +6223,11 @@ final public SqlLiteral IntervalLiteral() throws ParseException { final Span s; jj_consume_token(INTERVAL); s = span(); - if (jj_2_527(2)) { - if (jj_2_525(2)) { + if (jj_2_556(2)) { + if (jj_2_554(2)) { jj_consume_token(MINUS); sign = -1; - } else if (jj_2_526(2)) { + } else if (jj_2_555(2)) { jj_consume_token(PLUS); sign = 1; } else { @@ -6052,11 +6255,11 @@ final public SqlNode IntervalLiteralOrExpression() throws ParseException { SqlNode e; jj_consume_token(INTERVAL); s = span(); - if (jj_2_530(2)) { - if (jj_2_528(2)) { + if (jj_2_559(2)) { + if (jj_2_557(2)) { jj_consume_token(MINUS); sign = -1; - } else if (jj_2_529(2)) { + } else if (jj_2_558(2)) { jj_consume_token(PLUS); sign = 1; } else { @@ -6066,20 +6269,20 @@ final public SqlNode IntervalLiteralOrExpression() throws ParseException { } else { ; } - if (jj_2_534(2)) { + if (jj_2_563(2)) { // literal (with quoted string) p = SimpleStringLiteral(); intervalQualifier = IntervalQualifier(); {if (true) return SqlParserUtil.parseIntervalLiteral(s.end(intervalQualifier), sign, p, intervalQualifier);} - } else if (jj_2_535(2)) { - if (jj_2_531(2)) { + } else if (jj_2_564(2)) { + if (jj_2_560(2)) { jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); - } else if (jj_2_532(2)) { + } else if (jj_2_561(2)) { e = UnsignedNumericLiteral(); - } else if (jj_2_533(2)) { + } else if (jj_2_562(2)) { e = CompoundIdentifier(); } else { jj_consume_token(-1); @@ -6099,10 +6302,10 @@ final public SqlNode IntervalLiteralOrExpression() throws ParseException { } final public TimeUnit Year() throws ParseException { - if (jj_2_536(2)) { + if (jj_2_565(2)) { jj_consume_token(YEAR); {if (true) return TimeUnit.YEAR;} - } else if (jj_2_537(2)) { + } else if (jj_2_566(2)) { jj_consume_token(YEARS); {if (true) return warn(TimeUnit.YEAR);} } else { @@ -6113,10 +6316,10 @@ final public TimeUnit Year() throws ParseException { } final public TimeUnit Quarter() throws ParseException { - if (jj_2_538(2)) { + if (jj_2_567(2)) { jj_consume_token(QUARTER); {if (true) return TimeUnit.QUARTER;} - } else if (jj_2_539(2)) { + } else if (jj_2_568(2)) { jj_consume_token(QUARTERS); {if (true) return warn(TimeUnit.QUARTER);} } else { @@ -6127,10 +6330,10 @@ final public TimeUnit Quarter() throws ParseException { } final public TimeUnit Month() throws ParseException { - if (jj_2_540(2)) { + if (jj_2_569(2)) { jj_consume_token(MONTH); {if (true) return TimeUnit.MONTH;} - } else if (jj_2_541(2)) { + } else if (jj_2_570(2)) { jj_consume_token(MONTHS); {if (true) return warn(TimeUnit.MONTH);} } else { @@ -6141,10 +6344,10 @@ final public TimeUnit Month() throws ParseException { } final public TimeUnit Week() throws ParseException { - if (jj_2_542(2)) { + if (jj_2_571(2)) { jj_consume_token(WEEK); {if (true) return TimeUnit.WEEK;} - } else if (jj_2_543(2)) { + } else if (jj_2_572(2)) { jj_consume_token(WEEKS); {if (true) return warn(TimeUnit.WEEK);} } else { @@ -6155,10 +6358,10 @@ final public TimeUnit Week() throws ParseException { } final public TimeUnit Day() throws ParseException { - if (jj_2_544(2)) { + if (jj_2_573(2)) { jj_consume_token(DAY); {if (true) return TimeUnit.DAY;} - } else if (jj_2_545(2)) { + } else if (jj_2_574(2)) { jj_consume_token(DAYS); {if (true) return warn(TimeUnit.DAY);} } else { @@ -6169,10 +6372,10 @@ final public TimeUnit Day() throws ParseException { } final public TimeUnit Hour() throws ParseException { - if (jj_2_546(2)) { + if (jj_2_575(2)) { jj_consume_token(HOUR); {if (true) return TimeUnit.HOUR;} - } else if (jj_2_547(2)) { + } else if (jj_2_576(2)) { jj_consume_token(HOURS); {if (true) return warn(TimeUnit.HOUR);} } else { @@ -6183,10 +6386,10 @@ final public TimeUnit Hour() throws ParseException { } final public TimeUnit Minute() throws ParseException { - if (jj_2_548(2)) { + if (jj_2_577(2)) { jj_consume_token(MINUTE); {if (true) return TimeUnit.MINUTE;} - } else if (jj_2_549(2)) { + } else if (jj_2_578(2)) { jj_consume_token(MINUTES); {if (true) return warn(TimeUnit.MINUTE);} } else { @@ -6197,10 +6400,10 @@ final public TimeUnit Minute() throws ParseException { } final public TimeUnit Second() throws ParseException { - if (jj_2_550(2)) { + if (jj_2_579(2)) { jj_consume_token(SECOND); {if (true) return TimeUnit.SECOND;} - } else if (jj_2_551(2)) { + } else if (jj_2_580(2)) { jj_consume_token(SECONDS); {if (true) return warn(TimeUnit.SECOND);} } else { @@ -6216,42 +6419,42 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { final TimeUnit end; final int startPrec; int secondFracPrec = RelDataType.PRECISION_NOT_SPECIFIED; - if (jj_2_565(2)) { + if (jj_2_594(2)) { start = Year(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_552(2)) { + if (jj_2_581(2)) { jj_consume_token(TO); end = Month(); } else { end = null; } - } else if (jj_2_566(2)) { + } else if (jj_2_595(2)) { start = Quarter(); s = span(); startPrec = PrecisionOpt(); end = null; - } else if (jj_2_567(2)) { + } else if (jj_2_596(2)) { start = Month(); s = span(); startPrec = PrecisionOpt(); end = null; - } else if (jj_2_568(2)) { + } else if (jj_2_597(2)) { start = Week(); s = span(); startPrec = PrecisionOpt(); end = null; - } else if (jj_2_569(2)) { + } else if (jj_2_598(2)) { start = Day(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_556(2)) { + if (jj_2_585(2)) { jj_consume_token(TO); - if (jj_2_553(2)) { + if (jj_2_582(2)) { end = Hour(); - } else if (jj_2_554(2)) { + } else if (jj_2_583(2)) { end = Minute(); - } else if (jj_2_555(2)) { + } else if (jj_2_584(2)) { end = Second(); secondFracPrec = PrecisionOpt(); } else { @@ -6261,17 +6464,17 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { } else { end = null; } - } else if (jj_2_570(2)) { + } else if (jj_2_599(2)) { start = Hour(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_560(2)) { + if (jj_2_589(2)) { jj_consume_token(TO); - if (jj_2_558(2)) { + if (jj_2_587(2)) { end = Minute(); - } else if (jj_2_559(2)) { + } else if (jj_2_588(2)) { end = Second(); - if (jj_2_557(2)) { + if (jj_2_586(2)) { jj_consume_token(LPAREN); secondFracPrec = UnsignedIntLiteral(); jj_consume_token(RPAREN); @@ -6285,14 +6488,14 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { } else { end = null; } - } else if (jj_2_571(2)) { + } else if (jj_2_600(2)) { start = Minute(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_562(2)) { + if (jj_2_591(2)) { jj_consume_token(TO); end = Second(); - if (jj_2_561(2)) { + if (jj_2_590(2)) { jj_consume_token(LPAREN); secondFracPrec = UnsignedIntLiteral(); jj_consume_token(RPAREN); @@ -6302,13 +6505,13 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { } else { end = null; } - } else if (jj_2_572(2)) { + } else if (jj_2_601(2)) { start = Second(); s = span(); - if (jj_2_564(2)) { + if (jj_2_593(2)) { jj_consume_token(LPAREN); startPrec = UnsignedIntLiteral(); - if (jj_2_563(2)) { + if (jj_2_592(2)) { jj_consume_token(COMMA); secondFracPrec = UnsignedIntLiteral(); } else { @@ -6334,20 +6537,20 @@ final public SqlIntervalQualifier IntervalQualifierStart() throws ParseException final TimeUnit start; int startPrec = RelDataType.PRECISION_NOT_SPECIFIED; int secondFracPrec = RelDataType.PRECISION_NOT_SPECIFIED; - if (jj_2_582(2)) { - if (jj_2_573(2)) { + if (jj_2_611(2)) { + if (jj_2_602(2)) { start = Year(); - } else if (jj_2_574(2)) { + } else if (jj_2_603(2)) { start = Quarter(); - } else if (jj_2_575(2)) { + } else if (jj_2_604(2)) { start = Month(); - } else if (jj_2_576(2)) { + } else if (jj_2_605(2)) { start = Week(); - } else if (jj_2_577(2)) { + } else if (jj_2_606(2)) { start = Day(); - } else if (jj_2_578(2)) { + } else if (jj_2_607(2)) { start = Hour(); - } else if (jj_2_579(2)) { + } else if (jj_2_608(2)) { start = Minute(); } else { jj_consume_token(-1); @@ -6355,13 +6558,13 @@ final public SqlIntervalQualifier IntervalQualifierStart() throws ParseException } s = span(); startPrec = PrecisionOpt(); - } else if (jj_2_583(2)) { + } else if (jj_2_612(2)) { start = Second(); s = span(); - if (jj_2_581(2)) { + if (jj_2_610(2)) { jj_consume_token(LPAREN); startPrec = UnsignedIntLiteral(); - if (jj_2_580(2)) { + if (jj_2_609(2)) { jj_consume_token(COMMA); secondFracPrec = UnsignedIntLiteral(); } else { @@ -6398,10 +6601,10 @@ final public SqlIntervalQualifier IntervalQualifierStart() throws ParseException final public SqlIntervalQualifier TimeUnitOrName() throws ParseException { final SqlIdentifier unitName; final SqlIntervalQualifier intervalQualifier; - if (jj_2_584(2)) { + if (jj_2_613(2)) { intervalQualifier = TimeUnit(); {if (true) return intervalQualifier;} - } else if (jj_2_585(2)) { + } else if (jj_2_614(2)) { unitName = SimpleIdentifier(); {if (true) return new SqlIntervalQualifier(unitName.getSimple(), unitName.getParserPosition());} @@ -6425,43 +6628,49 @@ final public SqlIntervalQualifier TimeUnitOrName() throws ParseException { final public SqlIntervalQualifier TimeUnit() throws ParseException { final Span span; final String w; - if (jj_2_587(2)) { + if (jj_2_616(2)) { jj_consume_token(NANOSECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.NANOSECOND, null, getPos());} - } else if (jj_2_588(2)) { + } else if (jj_2_617(2)) { jj_consume_token(MICROSECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.MICROSECOND, null, getPos());} - } else if (jj_2_589(2)) { + } else if (jj_2_618(2)) { jj_consume_token(MILLISECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.MILLISECOND, null, getPos());} - } else if (jj_2_590(2)) { + } else if (jj_2_619(2)) { jj_consume_token(SECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.SECOND, null, getPos());} - } else if (jj_2_591(2)) { + } else if (jj_2_620(2)) { jj_consume_token(MINUTE); {if (true) return new SqlIntervalQualifier(TimeUnit.MINUTE, null, getPos());} - } else if (jj_2_592(2)) { + } else if (jj_2_621(2)) { jj_consume_token(HOUR); {if (true) return new SqlIntervalQualifier(TimeUnit.HOUR, null, getPos());} - } else if (jj_2_593(2)) { + } else if (jj_2_622(2)) { jj_consume_token(DAY); {if (true) return new SqlIntervalQualifier(TimeUnit.DAY, null, getPos());} - } else if (jj_2_594(2)) { + } else if (jj_2_623(2)) { + jj_consume_token(DAYOFWEEK); + {if (true) return new SqlIntervalQualifier(TimeUnit.DOW, null, getPos());} + } else if (jj_2_624(2)) { + jj_consume_token(DAYOFYEAR); + {if (true) return new SqlIntervalQualifier(TimeUnit.DOY, null, getPos());} + } else if (jj_2_625(2)) { jj_consume_token(DOW); {if (true) return new SqlIntervalQualifier(TimeUnit.DOW, null, getPos());} - } else if (jj_2_595(2)) { + } else if (jj_2_626(2)) { jj_consume_token(DOY); {if (true) return new SqlIntervalQualifier(TimeUnit.DOY, null, getPos());} - } else if (jj_2_596(2)) { + } else if (jj_2_627(2)) { jj_consume_token(ISODOW); {if (true) return new SqlIntervalQualifier(TimeUnit.ISODOW, null, getPos());} - } else if (jj_2_597(2)) { + } else if (jj_2_628(2)) { jj_consume_token(ISOYEAR); {if (true) return new SqlIntervalQualifier(TimeUnit.ISOYEAR, null, getPos());} - } else if (jj_2_598(2)) { + } else if (jj_2_629(2)) { jj_consume_token(WEEK); span = span(); - if (jj_2_586(2)) { + if (jj_2_615(2)) { jj_consume_token(LPAREN); w = weekdayName(); jj_consume_token(RPAREN); @@ -6469,25 +6678,25 @@ final public SqlIntervalQualifier TimeUnit() throws ParseException { } else { {if (true) return new SqlIntervalQualifier(TimeUnit.WEEK, null, getPos());} } - } else if (jj_2_599(2)) { + } else if (jj_2_630(2)) { jj_consume_token(MONTH); {if (true) return new SqlIntervalQualifier(TimeUnit.MONTH, null, getPos());} - } else if (jj_2_600(2)) { + } else if (jj_2_631(2)) { jj_consume_token(QUARTER); {if (true) return new SqlIntervalQualifier(TimeUnit.QUARTER, null, getPos());} - } else if (jj_2_601(2)) { + } else if (jj_2_632(2)) { jj_consume_token(YEAR); {if (true) return new SqlIntervalQualifier(TimeUnit.YEAR, null, getPos());} - } else if (jj_2_602(2)) { + } else if (jj_2_633(2)) { jj_consume_token(EPOCH); {if (true) return new SqlIntervalQualifier(TimeUnit.EPOCH, null, getPos());} - } else if (jj_2_603(2)) { + } else if (jj_2_634(2)) { jj_consume_token(DECADE); {if (true) return new SqlIntervalQualifier(TimeUnit.DECADE, null, getPos());} - } else if (jj_2_604(2)) { + } else if (jj_2_635(2)) { jj_consume_token(CENTURY); {if (true) return new SqlIntervalQualifier(TimeUnit.CENTURY, null, getPos());} - } else if (jj_2_605(2)) { + } else if (jj_2_636(2)) { jj_consume_token(MILLENNIUM); {if (true) return new SqlIntervalQualifier(TimeUnit.MILLENNIUM, null, getPos());} } else { @@ -6498,25 +6707,25 @@ final public SqlIntervalQualifier TimeUnit() throws ParseException { } final public String weekdayName() throws ParseException { - if (jj_2_606(2)) { + if (jj_2_637(2)) { jj_consume_token(SUNDAY); {if (true) return "WEEK_SUNDAY";} - } else if (jj_2_607(2)) { + } else if (jj_2_638(2)) { jj_consume_token(MONDAY); {if (true) return "WEEK_MONDAY";} - } else if (jj_2_608(2)) { + } else if (jj_2_639(2)) { jj_consume_token(TUESDAY); {if (true) return "WEEK_TUESDAY";} - } else if (jj_2_609(2)) { + } else if (jj_2_640(2)) { jj_consume_token(WEDNESDAY); {if (true) return "WEEK_WEDNESDAY";} - } else if (jj_2_610(2)) { + } else if (jj_2_641(2)) { jj_consume_token(THURSDAY); {if (true) return "WEEK_THURSDAY";} - } else if (jj_2_611(2)) { + } else if (jj_2_642(2)) { jj_consume_token(FRIDAY); {if (true) return "WEEK_FRIDAY";} - } else if (jj_2_612(2)) { + } else if (jj_2_643(2)) { jj_consume_token(SATURDAY); {if (true) return "WEEK_SATURDAY";} } else { @@ -6547,41 +6756,41 @@ final public void AddIdentifierSegment(List names, List po char unicodeEscapeChar = BACKSLASH; final SqlParserPos pos; final Span span; - if (jj_2_614(2)) { + if (jj_2_645(2)) { jj_consume_token(IDENTIFIER); id = unquotedIdentifier(); pos = getPos(); - } else if (jj_2_615(2)) { + } else if (jj_2_646(2)) { jj_consume_token(HYPHENATED_IDENTIFIER); id = unquotedIdentifier(); pos = getPos(); - } else if (jj_2_616(2)) { + } else if (jj_2_647(2)) { jj_consume_token(QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, DQ, DQ, DQDQ, quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_617(2)) { + } else if (jj_2_648(2)) { jj_consume_token(BACK_QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, "`", "`", "``", quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_618(2)) { + } else if (jj_2_649(2)) { jj_consume_token(BIG_QUERY_BACK_QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, "`", "`", "\\`", quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_619(2)) { + } else if (jj_2_650(2)) { jj_consume_token(BRACKET_QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, "[", "]", "]]", quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_620(2)) { + } else if (jj_2_651(2)) { jj_consume_token(UNICODE_QUOTED_IDENTIFIER); span = span(); String image = getToken(0).image; image = image.substring(image.indexOf('"')); image = SqlParserUtil.stripQuotes(image, DQ, DQ, DQDQ, quotedCasing); - if (jj_2_613(2)) { + if (jj_2_644(2)) { jj_consume_token(UESCAPE); jj_consume_token(QUOTED_STRING); String s = SqlParserUtil.parseString(token.image); @@ -6593,7 +6802,7 @@ final public void AddIdentifierSegment(List names, List po SqlLiteral lit = SqlLiteral.createCharString(image, "UTF16", pos); lit = lit.unescapeUnicode(unicodeEscapeChar); id = lit.toValue(); - } else if (jj_2_621(2)) { + } else if (jj_2_652(2)) { id = NonReservedKeyWord(); pos = getPos(); } else { @@ -6676,12 +6885,12 @@ final public void AddSimpleIdentifiers(List list) throws ParseException SqlIdentifier id; id = SimpleIdentifier(); list.add(id); - label_54: + label_55: while (true) { - if (jj_2_622(2)) { + if (jj_2_653(2)) { ; } else { - break label_54; + break label_55; } jj_consume_token(COMMA); id = SimpleIdentifier(); @@ -6714,10 +6923,10 @@ final public SqlNodeList ParenthesizedSimpleIdentifierList() throws ParseExcepti final public SqlNodeList SimpleIdentifierOrList() throws ParseException { SqlIdentifier id; SqlNodeList list; - if (jj_2_623(2)) { + if (jj_2_654(2)) { id = SimpleIdentifier(); {if (true) return new SqlNodeList(Collections.singletonList(id), id.getParserPosition());} - } else if (jj_2_624(2)) { + } else if (jj_2_655(2)) { list = ParenthesizedSimpleIdentifierList(); {if (true) return list;} } else { @@ -6735,17 +6944,17 @@ final public SqlIdentifier CompoundIdentifier() throws ParseException { final List posList = new ArrayList(); boolean star = false; AddIdentifierSegment(nameList, posList); - label_55: + label_56: while (true) { - if (jj_2_625(2)) { + if (jj_2_656(2)) { ; } else { - break label_55; + break label_56; } jj_consume_token(DOT); AddIdentifierSegment(nameList, posList); } - if (jj_2_626(2)) { + if (jj_2_657(2)) { jj_consume_token(DOT); jj_consume_token(STAR); star = true; @@ -6769,12 +6978,12 @@ final public SqlIdentifier CompoundTableIdentifier() throws ParseException { final List nameList = new ArrayList(); final List posList = new ArrayList(); AddTableIdentifierSegment(nameList, posList); - label_56: + label_57: while (true) { - if (jj_2_627(2)) { + if (jj_2_658(2)) { ; } else { - break label_56; + break label_57; } jj_consume_token(DOT); AddTableIdentifierSegment(nameList, posList); @@ -6789,12 +6998,12 @@ final public SqlIdentifier CompoundTableIdentifier() throws ParseException { */ final public void AddCompoundIdentifierTypes(List list, List extendList) throws ParseException { AddCompoundIdentifierType(list, extendList); - label_57: + label_58: while (true) { - if (jj_2_628(2)) { + if (jj_2_659(2)) { ; } else { - break label_57; + break label_58; } jj_consume_token(COMMA); AddCompoundIdentifierType(list, extendList); @@ -6846,10 +7055,10 @@ final public int UnsignedIntLiteral() throws ParseException { final public int IntLiteral() throws ParseException { Token t; - if (jj_2_631(2)) { - if (jj_2_629(2)) { + if (jj_2_662(2)) { + if (jj_2_660(2)) { t = jj_consume_token(UNSIGNED_INTEGER_LITERAL); - } else if (jj_2_630(2)) { + } else if (jj_2_661(2)) { jj_consume_token(PLUS); t = jj_consume_token(UNSIGNED_INTEGER_LITERAL); } else { @@ -6862,7 +7071,7 @@ final public int IntLiteral() throws ParseException { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.invalidLiteral(t.image, Integer.class.getCanonicalName()));} } - } else if (jj_2_632(2)) { + } else if (jj_2_663(2)) { jj_consume_token(MINUS); t = jj_consume_token(UNSIGNED_INTEGER_LITERAL); try { @@ -6884,12 +7093,12 @@ final public SqlDataTypeSpec DataType() throws ParseException { final Span s; typeName = TypeName(); s = Span.of(typeName.getParserPos()); - label_58: + label_59: while (true) { - if (jj_2_633(2)) { + if (jj_2_664(2)) { ; } else { - break label_58; + break label_59; } typeName = CollectionsTypeName(typeName); } @@ -6903,11 +7112,13 @@ final public SqlTypeNameSpec TypeName() throws ParseException { final SqlTypeNameSpec typeNameSpec; final SqlIdentifier typeName; final Span s = Span.of(); - if (jj_2_634(2)) { + if (jj_2_665(2)) { typeNameSpec = SqlTypeName(s); - } else if (jj_2_635(2)) { + } else if (jj_2_666(2)) { typeNameSpec = RowTypeName(); - } else if (jj_2_636(2)) { + } else if (jj_2_667(2)) { + typeNameSpec = MapTypeName(); + } else if (jj_2_668(2)) { typeName = CompoundIdentifier(); typeNameSpec = new SqlUserDefinedTypeNameSpec(typeName, s.end(this)); } else { @@ -6921,15 +7132,15 @@ final public SqlTypeNameSpec TypeName() throws ParseException { // Types used for JDBC and ODBC scalar conversion function final public SqlTypeNameSpec SqlTypeName(Span s) throws ParseException { final SqlTypeNameSpec sqlTypeNameSpec; - if (jj_2_637(2)) { + if (jj_2_669(2)) { sqlTypeNameSpec = SqlTypeName1(s); - } else if (jj_2_638(2)) { + } else if (jj_2_670(2)) { sqlTypeNameSpec = SqlTypeName2(s); - } else if (jj_2_639(2)) { + } else if (jj_2_671(2)) { sqlTypeNameSpec = SqlTypeName3(s); - } else if (jj_2_640(2)) { + } else if (jj_2_672(2)) { sqlTypeNameSpec = CharacterTypeName(s); - } else if (jj_2_641(2)) { + } else if (jj_2_673(2)) { sqlTypeNameSpec = DateTimeTypeName(); } else { jj_consume_token(-1); @@ -6943,48 +7154,48 @@ final public SqlTypeNameSpec SqlTypeName(Span s) throws ParseException { // For extra specification, we mean precision, scale, charSet, etc. final public SqlTypeNameSpec SqlTypeName1(Span s) throws ParseException { final SqlTypeName sqlTypeName; - if (jj_2_645(2)) { + if (jj_2_677(2)) { jj_consume_token(GEOMETRY); if (!this.conformance.allowGeometry()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.geometryDisabled());} } s.add(this); sqlTypeName = SqlTypeName.GEOMETRY; - } else if (jj_2_646(2)) { + } else if (jj_2_678(2)) { jj_consume_token(BOOLEAN); s.add(this); sqlTypeName = SqlTypeName.BOOLEAN; - } else if (jj_2_647(2)) { - if (jj_2_642(2)) { + } else if (jj_2_679(2)) { + if (jj_2_674(2)) { jj_consume_token(INTEGER); - } else if (jj_2_643(2)) { + } else if (jj_2_675(2)) { jj_consume_token(INT); } else { jj_consume_token(-1); throw new ParseException(); } s.add(this); sqlTypeName = SqlTypeName.INTEGER; - } else if (jj_2_648(2)) { + } else if (jj_2_680(2)) { jj_consume_token(TINYINT); s.add(this); sqlTypeName = SqlTypeName.TINYINT; - } else if (jj_2_649(2)) { + } else if (jj_2_681(2)) { jj_consume_token(SMALLINT); s.add(this); sqlTypeName = SqlTypeName.SMALLINT; - } else if (jj_2_650(2)) { + } else if (jj_2_682(2)) { jj_consume_token(BIGINT); s.add(this); sqlTypeName = SqlTypeName.BIGINT; - } else if (jj_2_651(2)) { + } else if (jj_2_683(2)) { jj_consume_token(REAL); s.add(this); sqlTypeName = SqlTypeName.REAL; - } else if (jj_2_652(2)) { + } else if (jj_2_684(2)) { jj_consume_token(DOUBLE); s.add(this); - if (jj_2_644(2)) { + if (jj_2_676(2)) { jj_consume_token(PRECISION); } else { ; } sqlTypeName = SqlTypeName.DOUBLE; - } else if (jj_2_653(2)) { + } else if (jj_2_685(2)) { jj_consume_token(FLOAT); s.add(this); sqlTypeName = SqlTypeName.FLOAT; } else { @@ -6999,16 +7210,16 @@ final public SqlTypeNameSpec SqlTypeName1(Span s) throws ParseException { final public SqlTypeNameSpec SqlTypeName2(Span s) throws ParseException { final SqlTypeName sqlTypeName; int precision = -1; - if (jj_2_655(2)) { + if (jj_2_687(2)) { jj_consume_token(BINARY); s.add(this); - if (jj_2_654(2)) { + if (jj_2_686(2)) { jj_consume_token(VARYING); sqlTypeName = SqlTypeName.VARBINARY; } else { sqlTypeName = SqlTypeName.BINARY; } - } else if (jj_2_656(2)) { + } else if (jj_2_688(2)) { jj_consume_token(VARBINARY); s.add(this); sqlTypeName = SqlTypeName.VARBINARY; } else { @@ -7025,29 +7236,29 @@ final public SqlTypeNameSpec SqlTypeName3(Span s) throws ParseException { final SqlTypeName sqlTypeName; int precision = -1; int scale = -1; - if (jj_2_660(2)) { - if (jj_2_657(2)) { + if (jj_2_692(2)) { + if (jj_2_689(2)) { jj_consume_token(DECIMAL); - } else if (jj_2_658(2)) { + } else if (jj_2_690(2)) { jj_consume_token(DEC); - } else if (jj_2_659(2)) { + } else if (jj_2_691(2)) { jj_consume_token(NUMERIC); } else { jj_consume_token(-1); throw new ParseException(); } s.add(this); sqlTypeName = SqlTypeName.DECIMAL; - } else if (jj_2_661(2)) { + } else if (jj_2_693(2)) { jj_consume_token(ANY); s.add(this); sqlTypeName = SqlTypeName.ANY; } else { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_663(2)) { + if (jj_2_695(2)) { jj_consume_token(LPAREN); precision = UnsignedIntLiteral(); - if (jj_2_662(2)) { + if (jj_2_694(2)) { jj_consume_token(COMMA); scale = UnsignedIntLiteral(); } else { @@ -7063,213 +7274,213 @@ final public SqlTypeNameSpec SqlTypeName3(Span s) throws ParseException { // Types used for for JDBC and ODBC scalar conversion function final public SqlJdbcDataTypeName JdbcOdbcDataTypeName() throws ParseException { - if (jj_2_698(2)) { - if (jj_2_664(2)) { + if (jj_2_730(2)) { + if (jj_2_696(2)) { jj_consume_token(SQL_CHAR); - } else if (jj_2_665(2)) { + } else if (jj_2_697(2)) { jj_consume_token(CHAR); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_CHAR;} - } else if (jj_2_699(2)) { - if (jj_2_666(2)) { + } else if (jj_2_731(2)) { + if (jj_2_698(2)) { jj_consume_token(SQL_VARCHAR); - } else if (jj_2_667(2)) { + } else if (jj_2_699(2)) { jj_consume_token(VARCHAR); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_VARCHAR;} - } else if (jj_2_700(2)) { - if (jj_2_668(2)) { + } else if (jj_2_732(2)) { + if (jj_2_700(2)) { jj_consume_token(SQL_DATE); - } else if (jj_2_669(2)) { + } else if (jj_2_701(2)) { jj_consume_token(DATE); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_DATE;} - } else if (jj_2_701(2)) { - if (jj_2_670(2)) { + } else if (jj_2_733(2)) { + if (jj_2_702(2)) { jj_consume_token(SQL_TIME); - } else if (jj_2_671(2)) { + } else if (jj_2_703(2)) { jj_consume_token(TIME); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_TIME;} - } else if (jj_2_702(2)) { - if (jj_2_672(2)) { + } else if (jj_2_734(2)) { + if (jj_2_704(2)) { jj_consume_token(SQL_TIMESTAMP); - } else if (jj_2_673(2)) { + } else if (jj_2_705(2)) { jj_consume_token(TIMESTAMP); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_TIMESTAMP;} - } else if (jj_2_703(2)) { - if (jj_2_674(2)) { + } else if (jj_2_735(2)) { + if (jj_2_706(2)) { jj_consume_token(SQL_DECIMAL); - } else if (jj_2_675(2)) { + } else if (jj_2_707(2)) { jj_consume_token(DECIMAL); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_DECIMAL;} - } else if (jj_2_704(2)) { - if (jj_2_676(2)) { + } else if (jj_2_736(2)) { + if (jj_2_708(2)) { jj_consume_token(SQL_NUMERIC); - } else if (jj_2_677(2)) { + } else if (jj_2_709(2)) { jj_consume_token(NUMERIC); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_NUMERIC;} - } else if (jj_2_705(2)) { - if (jj_2_678(2)) { + } else if (jj_2_737(2)) { + if (jj_2_710(2)) { jj_consume_token(SQL_BOOLEAN); - } else if (jj_2_679(2)) { + } else if (jj_2_711(2)) { jj_consume_token(BOOLEAN); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_BOOLEAN;} - } else if (jj_2_706(2)) { - if (jj_2_680(2)) { + } else if (jj_2_738(2)) { + if (jj_2_712(2)) { jj_consume_token(SQL_INTEGER); - } else if (jj_2_681(2)) { + } else if (jj_2_713(2)) { jj_consume_token(INTEGER); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_INTEGER;} - } else if (jj_2_707(2)) { - if (jj_2_682(2)) { + } else if (jj_2_739(2)) { + if (jj_2_714(2)) { jj_consume_token(SQL_BINARY); - } else if (jj_2_683(2)) { + } else if (jj_2_715(2)) { jj_consume_token(BINARY); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_BINARY;} - } else if (jj_2_708(2)) { - if (jj_2_684(2)) { + } else if (jj_2_740(2)) { + if (jj_2_716(2)) { jj_consume_token(SQL_VARBINARY); - } else if (jj_2_685(2)) { + } else if (jj_2_717(2)) { jj_consume_token(VARBINARY); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_VARBINARY;} - } else if (jj_2_709(2)) { - if (jj_2_686(2)) { + } else if (jj_2_741(2)) { + if (jj_2_718(2)) { jj_consume_token(SQL_TINYINT); - } else if (jj_2_687(2)) { + } else if (jj_2_719(2)) { jj_consume_token(TINYINT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_TINYINT;} - } else if (jj_2_710(2)) { - if (jj_2_688(2)) { + } else if (jj_2_742(2)) { + if (jj_2_720(2)) { jj_consume_token(SQL_SMALLINT); - } else if (jj_2_689(2)) { + } else if (jj_2_721(2)) { jj_consume_token(SMALLINT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_SMALLINT;} - } else if (jj_2_711(2)) { - if (jj_2_690(2)) { + } else if (jj_2_743(2)) { + if (jj_2_722(2)) { jj_consume_token(SQL_BIGINT); - } else if (jj_2_691(2)) { + } else if (jj_2_723(2)) { jj_consume_token(BIGINT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_BIGINT;} - } else if (jj_2_712(2)) { - if (jj_2_692(2)) { + } else if (jj_2_744(2)) { + if (jj_2_724(2)) { jj_consume_token(SQL_REAL); - } else if (jj_2_693(2)) { + } else if (jj_2_725(2)) { jj_consume_token(REAL); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_REAL;} - } else if (jj_2_713(2)) { - if (jj_2_694(2)) { + } else if (jj_2_745(2)) { + if (jj_2_726(2)) { jj_consume_token(SQL_DOUBLE); - } else if (jj_2_695(2)) { + } else if (jj_2_727(2)) { jj_consume_token(DOUBLE); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_DOUBLE;} - } else if (jj_2_714(2)) { - if (jj_2_696(2)) { + } else if (jj_2_746(2)) { + if (jj_2_728(2)) { jj_consume_token(SQL_FLOAT); - } else if (jj_2_697(2)) { + } else if (jj_2_729(2)) { jj_consume_token(FLOAT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_FLOAT;} - } else if (jj_2_715(2)) { + } else if (jj_2_747(2)) { jj_consume_token(SQL_INTERVAL_YEAR); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_YEAR;} - } else if (jj_2_716(2)) { + } else if (jj_2_748(2)) { jj_consume_token(SQL_INTERVAL_YEAR_TO_MONTH); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_YEAR_TO_MONTH;} - } else if (jj_2_717(2)) { + } else if (jj_2_749(2)) { jj_consume_token(SQL_INTERVAL_MONTH); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_MONTH;} - } else if (jj_2_718(2)) { + } else if (jj_2_750(2)) { jj_consume_token(SQL_INTERVAL_DAY); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY;} - } else if (jj_2_719(2)) { + } else if (jj_2_751(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_HOUR); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY_TO_HOUR;} - } else if (jj_2_720(2)) { + } else if (jj_2_752(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_MINUTE); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY_TO_MINUTE;} - } else if (jj_2_721(2)) { + } else if (jj_2_753(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY_TO_SECOND;} - } else if (jj_2_722(2)) { + } else if (jj_2_754(2)) { jj_consume_token(SQL_INTERVAL_HOUR); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_HOUR;} - } else if (jj_2_723(2)) { + } else if (jj_2_755(2)) { jj_consume_token(SQL_INTERVAL_HOUR_TO_MINUTE); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_HOUR_TO_MINUTE;} - } else if (jj_2_724(2)) { + } else if (jj_2_756(2)) { jj_consume_token(SQL_INTERVAL_HOUR_TO_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_HOUR_TO_SECOND;} - } else if (jj_2_725(2)) { + } else if (jj_2_757(2)) { jj_consume_token(SQL_INTERVAL_MINUTE); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_MINUTE;} - } else if (jj_2_726(2)) { + } else if (jj_2_758(2)) { jj_consume_token(SQL_INTERVAL_MINUTE_TO_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_MINUTE_TO_SECOND;} - } else if (jj_2_727(2)) { + } else if (jj_2_759(2)) { jj_consume_token(SQL_INTERVAL_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_SECOND;} } else { @@ -7292,10 +7503,10 @@ final public SqlLiteral JdbcOdbcDataType() throws ParseException { */ final public SqlTypeNameSpec CollectionsTypeName(SqlTypeNameSpec elementTypeName) throws ParseException { final SqlTypeName collectionTypeName; - if (jj_2_728(2)) { + if (jj_2_760(2)) { jj_consume_token(MULTISET); collectionTypeName = SqlTypeName.MULTISET; - } else if (jj_2_729(2)) { + } else if (jj_2_761(2)) { jj_consume_token(ARRAY); collectionTypeName = SqlTypeName.ARRAY; } else { @@ -7311,10 +7522,10 @@ final public SqlTypeNameSpec CollectionsTypeName(SqlTypeNameSpec elementTypeName * Parse a nullable option, default is true. */ final public boolean NullableOptDefaultTrue() throws ParseException { - if (jj_2_730(2)) { + if (jj_2_762(2)) { jj_consume_token(NULL); {if (true) return true;} - } else if (jj_2_731(2)) { + } else if (jj_2_763(2)) { jj_consume_token(NOT); jj_consume_token(NULL); {if (true) return false;} @@ -7328,10 +7539,10 @@ final public boolean NullableOptDefaultTrue() throws ParseException { * Parse a nullable option, default is false. */ final public boolean NullableOptDefaultFalse() throws ParseException { - if (jj_2_732(2)) { + if (jj_2_764(2)) { jj_consume_token(NULL); {if (true) return true;} - } else if (jj_2_733(2)) { + } else if (jj_2_765(2)) { jj_consume_token(NOT); jj_consume_token(NULL); {if (true) return false;} @@ -7343,7 +7554,7 @@ final public boolean NullableOptDefaultFalse() throws ParseException { /** Parses NOT NULL and returns false, or parses nothing and returns true. */ final public boolean NotNullOpt() throws ParseException { - if (jj_2_734(2)) { + if (jj_2_766(2)) { jj_consume_token(NOT); jj_consume_token(NULL); {if (true) return false;} @@ -7360,12 +7571,12 @@ final public boolean NotNullOpt() throws ParseException { final public void AddFieldNameTypes(List fieldNames, List fieldTypes) throws ParseException { AddFieldNameType(fieldNames, fieldTypes); - label_59: + label_60: while (true) { - if (jj_2_735(2)) { + if (jj_2_767(2)) { ; } else { - break label_59; + break label_60; } jj_consume_token(COMMA); AddFieldNameType(fieldNames, fieldTypes); @@ -7400,6 +7611,19 @@ final public SqlTypeNameSpec RowTypeName() throws ParseException { throw new Error("Missing return statement in function"); } + final public SqlTypeNameSpec MapTypeName() throws ParseException { + SqlDataTypeSpec keyType = null; + SqlDataTypeSpec valType = null; + jj_consume_token(MAP); + jj_consume_token(LT); + keyType = DataType(); + jj_consume_token(COMMA); + valType = DataType(); + jj_consume_token(GT); + {if (true) return new SqlMapTypeNameSpec(keyType, valType, getPos());} + throw new Error("Missing return statement in function"); + } + /** * Parse character types: char, varchar. */ @@ -7407,23 +7631,23 @@ final public SqlTypeNameSpec CharacterTypeName(Span s) throws ParseException { int precision = -1; final SqlTypeName sqlTypeName; String charSetName = null; - if (jj_2_739(2)) { - if (jj_2_736(2)) { + if (jj_2_771(2)) { + if (jj_2_768(2)) { jj_consume_token(CHARACTER); - } else if (jj_2_737(2)) { + } else if (jj_2_769(2)) { jj_consume_token(CHAR); } else { jj_consume_token(-1); throw new ParseException(); } s.add(this); - if (jj_2_738(2)) { + if (jj_2_770(2)) { jj_consume_token(VARYING); sqlTypeName = SqlTypeName.VARCHAR; } else { sqlTypeName = SqlTypeName.CHAR; } - } else if (jj_2_740(2)) { + } else if (jj_2_772(2)) { jj_consume_token(VARCHAR); s.add(this); sqlTypeName = SqlTypeName.VARCHAR; } else { @@ -7431,7 +7655,7 @@ final public SqlTypeNameSpec CharacterTypeName(Span s) throws ParseException { throw new ParseException(); } precision = PrecisionOpt(); - if (jj_2_741(2)) { + if (jj_2_773(2)) { jj_consume_token(CHARACTER); jj_consume_token(SET); charSetName = Identifier(); @@ -7448,33 +7672,22 @@ final public SqlTypeNameSpec CharacterTypeName(Span s) throws ParseException { final public SqlTypeNameSpec DateTimeTypeName() throws ParseException { int precision = -1; SqlTypeName typeName; - boolean withLocalTimeZone = false; final Span s; - if (jj_2_742(2)) { + if (jj_2_774(2)) { jj_consume_token(DATE); typeName = SqlTypeName.DATE; {if (true) return new SqlBasicTypeNameSpec(typeName, getPos());} - } else if (jj_2_743(2)) { + } else if (jj_2_775(2)) { jj_consume_token(TIME); s = span(); precision = PrecisionOpt(); - withLocalTimeZone = TimeZoneOpt(); - if (withLocalTimeZone) { - typeName = SqlTypeName.TIME_WITH_LOCAL_TIME_ZONE; - } else { - typeName = SqlTypeName.TIME; - } + typeName = TimeZoneOpt(true); {if (true) return new SqlBasicTypeNameSpec(typeName, precision, s.end(this));} - } else if (jj_2_744(2)) { + } else if (jj_2_776(2)) { jj_consume_token(TIMESTAMP); s = span(); precision = PrecisionOpt(); - withLocalTimeZone = TimeZoneOpt(); - if (withLocalTimeZone) { - typeName = SqlTypeName.TIMESTAMP_WITH_LOCAL_TIME_ZONE; - } else { - typeName = SqlTypeName.TIMESTAMP; - } + typeName = TimeZoneOpt(false); {if (true) return new SqlBasicTypeNameSpec(typeName, precision, s.end(this));} } else { jj_consume_token(-1); @@ -7486,7 +7699,7 @@ final public SqlTypeNameSpec DateTimeTypeName() throws ParseException { // Parse an optional data type precision, default is -1. final public int PrecisionOpt() throws ParseException { int precision = -1; - if (jj_2_745(2)) { + if (jj_2_777(2)) { jj_consume_token(LPAREN); precision = UnsignedIntLiteral(); jj_consume_token(RPAREN); @@ -7499,27 +7712,30 @@ final public int PrecisionOpt() throws ParseException { /** * Parse a time zone suffix for DateTime types. According to SQL-2011, -* "with time zone" and "without time zone" belong to standard SQL but we -* only implement the "without time zone". -* -*

We also support "with local time zone". -* -* @return true if this is "with local time zone". +* "with time zone" and "without time zone" belong to standard SQL. +* We also support "with local time zone". */ - final public boolean TimeZoneOpt() throws ParseException { - if (jj_2_746(3)) { + final public SqlTypeName TimeZoneOpt(boolean timeType) throws ParseException { + boolean local = false; + if (jj_2_779(3)) { jj_consume_token(WITHOUT); jj_consume_token(TIME); jj_consume_token(ZONE); - {if (true) return false;} - } else if (jj_2_747(2)) { + {if (true) return timeType ? SqlTypeName.TIME : SqlTypeName.TIMESTAMP;} + } else if (jj_2_780(2)) { jj_consume_token(WITH); - jj_consume_token(LOCAL); + if (jj_2_778(2)) { + jj_consume_token(LOCAL); + local = true; + } else { + ; + } jj_consume_token(TIME); jj_consume_token(ZONE); - {if (true) return true;} + {if (true) return timeType ? (local ? SqlTypeName.TIME_WITH_LOCAL_TIME_ZONE : SqlTypeName.TIME_TZ) + : (local ? SqlTypeName.TIMESTAMP_WITH_LOCAL_TIME_ZONE : SqlTypeName.TIMESTAMP_TZ);} } else { - {if (true) return false;} + {if (true) return timeType ? SqlTypeName.TIME : SqlTypeName.TIMESTAMP;} } throw new Error("Missing return statement in function"); } @@ -7555,16 +7771,31 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { SqlDataTypeSpec dt; final SqlIntervalQualifier unit; final SqlNode node; - if (jj_2_770(2)) { - jj_consume_token(CAST); - s = span(); + final SqlLiteral style; // mssql convert 'style' operand + final SqlFunction f; + final SqlNode format; + if (jj_2_816(2)) { + if (jj_2_781(2)) { + jj_consume_token(CAST); + f = SqlStdOperatorTable.CAST; + } else if (jj_2_782(2)) { + jj_consume_token(SAFE_CAST); + f = SqlLibraryOperators.SAFE_CAST; + } else if (jj_2_783(2)) { + jj_consume_token(TRY_CAST); + f = SqlLibraryOperators.TRY_CAST; + } else { + jj_consume_token(-1); + throw new ParseException(); + } + s = span(); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(AS); - if (jj_2_748(2)) { + if (jj_2_784(2)) { dt = DataType(); args.add(dt); - } else if (jj_2_749(2)) { + } else if (jj_2_785(2)) { jj_consume_token(INTERVAL); e = IntervalQualifier(); args.add(e); @@ -7572,9 +7803,16 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } + if (jj_2_786(2)) { + jj_consume_token(FORMAT); + format = StringLiteral(); + args.add(format); + } else { + ; + } jj_consume_token(RPAREN); - {if (true) return SqlStdOperatorTable.CAST.createCall(s.end(this), args);} - } else if (jj_2_771(2)) { + {if (true) return f.createCall(s.end(this), args);} + } else if (jj_2_817(2)) { jj_consume_token(EXTRACT); s = span(); jj_consume_token(LPAREN); @@ -7584,7 +7822,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.EXTRACT.createCall(s.end(this), args);} - } else if (jj_2_772(2)) { + } else if (jj_2_818(2)) { jj_consume_token(POSITION); s = span(); jj_consume_token(LPAREN); @@ -7595,7 +7833,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { args.add(e); jj_consume_token(IN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_750(2)) { + if (jj_2_787(2)) { jj_consume_token(FROM); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); } else { @@ -7603,35 +7841,85 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { } jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.POSITION.createCall(s.end(this), args);} - } else if (jj_2_773(2)) { + } else if (jj_2_819(2)) { jj_consume_token(CONVERT); s = span(); jj_consume_token(LPAREN); - AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - jj_consume_token(USING); - name = SimpleIdentifier(); - args.add(name); - jj_consume_token(RPAREN); - {if (true) return SqlStdOperatorTable.CONVERT.createCall(s.end(this), args);} - } else if (jj_2_774(2)) { + if (jj_2_795(2)) { + AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); + if (jj_2_788(2)) { + jj_consume_token(USING); + name = SimpleIdentifier(); + args.add(name); + jj_consume_token(RPAREN); + {if (true) return SqlStdOperatorTable.TRANSLATE.createCall(s.end(this), args);} + } else if (jj_2_789(2)) { + jj_consume_token(COMMA); + e = SimpleIdentifier(); + args.add(e); + jj_consume_token(COMMA); + e = SimpleIdentifier(); + args.add(e); + jj_consume_token(RPAREN); + {if (true) return SqlStdOperatorTable.CONVERT.createCall(s.end(this), args);} + } else { + jj_consume_token(-1); + throw new ParseException(); + } + } else if (jj_2_796(2)) { + if (jj_2_790(2)) { + dt = DataType(); + args.add(dt); + } else if (jj_2_791(2)) { + jj_consume_token(INTERVAL); + e = IntervalQualifier(); + args.add(e); + } else { + jj_consume_token(-1); + throw new ParseException(); + } + jj_consume_token(COMMA); + AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); + if (jj_2_794(2)) { + jj_consume_token(COMMA); + if (jj_2_792(2)) { + style = UnsignedNumericLiteral(); + args.add(style); + } else if (jj_2_793(2)) { + jj_consume_token(NULL); + args.add(SqlLiteral.createNull(getPos())); + } else { + jj_consume_token(-1); + throw new ParseException(); + } + } else { + ; + } + jj_consume_token(RPAREN); + {if (true) return SqlLibraryOperators.MSSQL_CONVERT.createCall(s.end(this), args);} + } else { + jj_consume_token(-1); + throw new ParseException(); + } + } else if (jj_2_820(2)) { jj_consume_token(TRANSLATE); s = span(); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_752(2)) { + if (jj_2_798(2)) { jj_consume_token(USING); name = SimpleIdentifier(); args.add(name); jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.TRANSLATE.createCall(s.end(this), args);} - } else if (jj_2_753(2)) { - label_60: + } else if (jj_2_799(2)) { + label_61: while (true) { - if (jj_2_751(2)) { + if (jj_2_797(2)) { ; } else { - break label_60; + break label_61; } jj_consume_token(COMMA); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); @@ -7643,7 +7931,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_775(2)) { + } else if (jj_2_821(2)) { jj_consume_token(OVERLAY); s = span(); jj_consume_token(LPAREN); @@ -7652,7 +7940,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(FROM); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_754(2)) { + if (jj_2_800(2)) { jj_consume_token(FOR); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); } else { @@ -7660,15 +7948,15 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { } jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.OVERLAY.createCall(s.end(this), args);} - } else if (jj_2_776(2)) { + } else if (jj_2_822(2)) { jj_consume_token(FLOOR); s = span(); e = FloorCeilOptions(s, true); {if (true) return e;} - } else if (jj_2_777(2)) { - if (jj_2_755(2)) { + } else if (jj_2_823(2)) { + if (jj_2_801(2)) { jj_consume_token(CEIL); - } else if (jj_2_756(2)) { + } else if (jj_2_802(2)) { jj_consume_token(CEILING); } else { jj_consume_token(-1); @@ -7677,24 +7965,24 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { s = span(); e = FloorCeilOptions(s, false); {if (true) return e;} - } else if (jj_2_778(2)) { + } else if (jj_2_824(2)) { jj_consume_token(SUBSTRING); s = span(); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_757(2)) { + if (jj_2_803(2)) { jj_consume_token(FROM); - } else if (jj_2_758(2)) { + } else if (jj_2_804(2)) { jj_consume_token(COMMA); } else { jj_consume_token(-1); throw new ParseException(); } AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_761(2)) { - if (jj_2_759(2)) { + if (jj_2_807(2)) { + if (jj_2_805(2)) { jj_consume_token(FOR); - } else if (jj_2_760(2)) { + } else if (jj_2_806(2)) { jj_consume_token(COMMA); } else { jj_consume_token(-1); @@ -7707,23 +7995,23 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.SUBSTRING.createCall( s.end(this), args);} - } else if (jj_2_779(2)) { + } else if (jj_2_825(2)) { jj_consume_token(TRIM); SqlLiteral flag = null; SqlNode trimChars = null; s = span(); jj_consume_token(LPAREN); - if (jj_2_769(2)) { - if (jj_2_765(2)) { - if (jj_2_762(2)) { + if (jj_2_815(2)) { + if (jj_2_811(2)) { + if (jj_2_808(2)) { jj_consume_token(BOTH); s.add(this); flag = SqlTrimFunction.Flag.BOTH.symbol(getPos()); - } else if (jj_2_763(2)) { + } else if (jj_2_809(2)) { jj_consume_token(TRAILING); s.add(this); flag = SqlTrimFunction.Flag.TRAILING.symbol(getPos()); - } else if (jj_2_764(2)) { + } else if (jj_2_810(2)) { jj_consume_token(LEADING); s.add(this); flag = SqlTrimFunction.Flag.LEADING.symbol(getPos()); @@ -7734,18 +8022,18 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { } else { ; } - if (jj_2_766(2)) { + if (jj_2_812(2)) { trimChars = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { ; } - if (jj_2_767(2)) { + if (jj_2_813(2)) { jj_consume_token(FROM); if (null == flag && null == trimChars) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.illegalFromEmpty());} } - } else if (jj_2_768(2)) { + } else if (jj_2_814(2)) { jj_consume_token(RPAREN); // This is to handle the case of TRIM(x) // (FRG-191). @@ -7773,61 +8061,67 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { args.add(e); jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.TRIM.createCall(s.end(this), args);} - } else if (jj_2_780(2)) { + } else if (jj_2_826(2)) { + node = ContainsSubstrFunctionCall(); + {if (true) return node;} + } else if (jj_2_827(2)) { node = DateTimeConstructorCall(); {if (true) return node;} - } else if (jj_2_781(2)) { + } else if (jj_2_828(2)) { node = DateDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_782(2)) { + } else if (jj_2_829(2)) { node = DateTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_783(2)) { + } else if (jj_2_830(2)) { + node = DatetimeTruncFunctionCall(); + {if (true) return node;} + } else if (jj_2_831(2)) { node = TimestampAddFunctionCall(); {if (true) return node;} - } else if (jj_2_784(2)) { + } else if (jj_2_832(2)) { node = DatetimeDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_785(2)) { + } else if (jj_2_833(2)) { node = TimestampDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_786(2)) { + } else if (jj_2_834(2)) { node = TimestampDiff3FunctionCall(); {if (true) return node;} - } else if (jj_2_787(2)) { + } else if (jj_2_835(2)) { node = TimestampTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_788(2)) { + } else if (jj_2_836(2)) { node = TimeDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_789(2)) { + } else if (jj_2_837(2)) { node = TimeTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_790(2)) { + } else if (jj_2_838(2)) { node = MatchRecognizeFunctionCall(); {if (true) return node;} - } else if (jj_2_791(2)) { + } else if (jj_2_839(2)) { node = JsonExistsFunctionCall(); {if (true) return node;} - } else if (jj_2_792(2)) { + } else if (jj_2_840(2)) { node = JsonValueFunctionCall(); {if (true) return node;} - } else if (jj_2_793(2)) { + } else if (jj_2_841(2)) { node = JsonQueryFunctionCall(); {if (true) return node;} - } else if (jj_2_794(2)) { + } else if (jj_2_842(2)) { node = JsonObjectFunctionCall(); {if (true) return node;} - } else if (jj_2_795(2)) { + } else if (jj_2_843(2)) { node = JsonObjectAggFunctionCall(); {if (true) return node;} - } else if (jj_2_796(2)) { + } else if (jj_2_844(2)) { node = JsonArrayFunctionCall(); {if (true) return node;} - } else if (jj_2_797(2)) { + } else if (jj_2_845(2)) { node = JsonArrayAggFunctionCall(); {if (true) return node;} - } else if (jj_2_798(2)) { + } else if (jj_2_846(2)) { node = GroupByWindowingCall(); {if (true) return node;} } else { @@ -7839,15 +8133,15 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { final public SqlJsonEncoding JsonRepresentation() throws ParseException { jj_consume_token(JSON); - if (jj_2_802(2)) { + if (jj_2_850(2)) { jj_consume_token(ENCODING); - if (jj_2_799(2)) { + if (jj_2_847(2)) { jj_consume_token(UTF8); {if (true) return SqlJsonEncoding.UTF8;} - } else if (jj_2_800(2)) { + } else if (jj_2_848(2)) { jj_consume_token(UTF16); {if (true) return SqlJsonEncoding.UTF16;} - } else if (jj_2_801(2)) { + } else if (jj_2_849(2)) { jj_consume_token(UTF32); {if (true) return SqlJsonEncoding.UTF32;} } else { @@ -7877,7 +8171,7 @@ final public SqlDataTypeSpec JsonReturningClause() throws ParseException { final public SqlDataTypeSpec JsonOutputClause() throws ParseException { SqlDataTypeSpec dataType; dataType = JsonReturningClause(); - if (jj_2_803(2)) { + if (jj_2_851(2)) { jj_consume_token(FORMAT); JsonRepresentation(); } else { @@ -7900,19 +8194,19 @@ final public List JsonApiCommonSyntax() throws ParseException { AddExpression(args, ExprContext.ACCEPT_NON_QUERY); jj_consume_token(COMMA); AddExpression(args, ExprContext.ACCEPT_NON_QUERY); - if (jj_2_805(2)) { + if (jj_2_853(2)) { jj_consume_token(PASSING); e = Expression(ExprContext.ACCEPT_NON_QUERY); jj_consume_token(AS); e = SimpleIdentifier(); - label_61: + label_62: while (true) { - if (jj_2_804(2)) { + if (jj_2_852(2)) { ; } else { - break label_61; + break label_62; } jj_consume_token(COMMA); e = Expression(ExprContext.ACCEPT_NON_QUERY); @@ -7929,16 +8223,16 @@ final public List JsonApiCommonSyntax() throws ParseException { } final public SqlJsonExistsErrorBehavior JsonExistsErrorBehavior() throws ParseException { - if (jj_2_806(2)) { + if (jj_2_854(2)) { jj_consume_token(TRUE); {if (true) return SqlJsonExistsErrorBehavior.TRUE;} - } else if (jj_2_807(2)) { + } else if (jj_2_855(2)) { jj_consume_token(FALSE); {if (true) return SqlJsonExistsErrorBehavior.FALSE;} - } else if (jj_2_808(2)) { + } else if (jj_2_856(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlJsonExistsErrorBehavior.UNKNOWN;} - } else if (jj_2_809(2)) { + } else if (jj_2_857(2)) { jj_consume_token(ERROR); {if (true) return SqlJsonExistsErrorBehavior.ERROR;} } else { @@ -7958,7 +8252,7 @@ final public SqlCall JsonExistsFunctionCall() throws ParseException { jj_consume_token(LPAREN); commonSyntax = JsonApiCommonSyntax(); args.addAll(commonSyntax); - if (jj_2_810(2)) { + if (jj_2_858(2)) { errorBehavior = JsonExistsErrorBehavior(); args.add(errorBehavior.symbol(getPos())); jj_consume_token(ON); @@ -7973,13 +8267,13 @@ final public SqlCall JsonExistsFunctionCall() throws ParseException { final public List JsonValueEmptyOrErrorBehavior() throws ParseException { final List list = new ArrayList(); - if (jj_2_811(2)) { + if (jj_2_859(2)) { jj_consume_token(ERROR); list.add(SqlJsonValueEmptyOrErrorBehavior.ERROR.symbol(getPos())); - } else if (jj_2_812(2)) { + } else if (jj_2_860(2)) { jj_consume_token(NULL); list.add(SqlJsonValueEmptyOrErrorBehavior.NULL.symbol(getPos())); - } else if (jj_2_813(2)) { + } else if (jj_2_861(2)) { jj_consume_token(DEFAULT_); list.add(SqlJsonValueEmptyOrErrorBehavior.DEFAULT.symbol(getPos())); AddExpression(list, ExprContext.ACCEPT_NON_QUERY); @@ -7988,10 +8282,10 @@ final public List JsonValueEmptyOrErrorBehavior() throws ParseException throw new ParseException(); } jj_consume_token(ON); - if (jj_2_814(2)) { + if (jj_2_862(2)) { jj_consume_token(EMPTY); list.add(SqlJsonEmptyOrError.EMPTY.symbol(getPos())); - } else if (jj_2_815(2)) { + } else if (jj_2_863(2)) { jj_consume_token(ERROR); list.add(SqlJsonEmptyOrError.ERROR.symbol(getPos())); } else { @@ -8013,19 +8307,19 @@ final public SqlCall JsonValueFunctionCall() throws ParseException { jj_consume_token(LPAREN); commonSyntax = JsonApiCommonSyntax(); args.addAll(commonSyntax); - if (jj_2_816(2)) { + if (jj_2_864(2)) { e = JsonReturningClause(); args.add(SqlJsonValueReturning.RETURNING.symbol(getPos())); args.add(e); } else { ; } - label_62: + label_63: while (true) { - if (jj_2_817(2)) { + if (jj_2_865(2)) { ; } else { - break label_62; + break label_63; } behavior = JsonValueEmptyOrErrorBehavior(); args.addAll(behavior); @@ -8037,17 +8331,17 @@ final public SqlCall JsonValueFunctionCall() throws ParseException { final public List JsonQueryEmptyOrErrorBehavior() throws ParseException { final List list = new ArrayList(); - if (jj_2_818(2)) { + if (jj_2_866(2)) { jj_consume_token(ERROR); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.ERROR, getPos())); - } else if (jj_2_819(2)) { + } else if (jj_2_867(2)) { jj_consume_token(NULL); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.NULL, getPos())); - } else if (jj_2_820(2)) { + } else if (jj_2_868(2)) { jj_consume_token(EMPTY); jj_consume_token(ARRAY); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.EMPTY_ARRAY, getPos())); - } else if (jj_2_821(2)) { + } else if (jj_2_869(2)) { jj_consume_token(EMPTY); jj_consume_token(OBJECT); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.EMPTY_OBJECT, getPos())); @@ -8056,10 +8350,10 @@ final public List JsonQueryEmptyOrErrorBehavior() throws ParseException throw new ParseException(); } jj_consume_token(ON); - if (jj_2_822(2)) { + if (jj_2_870(2)) { jj_consume_token(EMPTY); list.add(SqlLiteral.createSymbol(SqlJsonEmptyOrError.EMPTY, getPos())); - } else if (jj_2_823(2)) { + } else if (jj_2_871(2)) { jj_consume_token(ERROR); list.add(SqlLiteral.createSymbol(SqlJsonEmptyOrError.ERROR, getPos())); } else { @@ -8071,31 +8365,31 @@ final public List JsonQueryEmptyOrErrorBehavior() throws ParseException } final public SqlNode JsonQueryWrapperBehavior() throws ParseException { - if (jj_2_828(2)) { + if (jj_2_876(2)) { jj_consume_token(WITHOUT); - if (jj_2_824(2)) { + if (jj_2_872(2)) { jj_consume_token(ARRAY); } else { ; } {if (true) return SqlLiteral.createSymbol(SqlJsonQueryWrapperBehavior.WITHOUT_ARRAY, getPos());} - } else if (jj_2_829(2)) { + } else if (jj_2_877(2)) { jj_consume_token(WITH); jj_consume_token(CONDITIONAL); - if (jj_2_825(2)) { + if (jj_2_873(2)) { jj_consume_token(ARRAY); } else { ; } {if (true) return SqlLiteral.createSymbol(SqlJsonQueryWrapperBehavior.WITH_CONDITIONAL_ARRAY, getPos());} - } else if (jj_2_830(2)) { + } else if (jj_2_878(2)) { jj_consume_token(WITH); - if (jj_2_826(2)) { + if (jj_2_874(2)) { jj_consume_token(UNCONDITIONAL); } else { ; } - if (jj_2_827(2)) { + if (jj_2_875(2)) { jj_consume_token(ARRAY); } else { ; @@ -8120,19 +8414,19 @@ final public SqlCall JsonQueryFunctionCall() throws ParseException { commonSyntax = JsonApiCommonSyntax(); args[0] = commonSyntax.get(0); args[1] = commonSyntax.get(1); - if (jj_2_831(2)) { + if (jj_2_879(2)) { e = JsonQueryWrapperBehavior(); jj_consume_token(WRAPPER); args[2] = e; } else { ; } - label_63: + label_64: while (true) { - if (jj_2_832(2)) { + if (jj_2_880(2)) { ; } else { - break label_63; + break label_64; } behavior = JsonQueryEmptyOrErrorBehavior(); final SqlJsonEmptyOrError symbol = @@ -8162,7 +8456,7 @@ final public List JsonNameAndValue() throws ParseException { final List list = new ArrayList(); final SqlNode e; boolean kvMode = false; - if (jj_2_833(2)) { + if (jj_2_881(2)) { jj_consume_token(KEY); kvMode = true; } else { @@ -8170,9 +8464,14 @@ final public List JsonNameAndValue() throws ParseException { } e = JsonName(); list.add(e); - if (jj_2_834(2)) { + if (jj_2_882(2)) { jj_consume_token(VALUE); - } else if (jj_2_835(2)) { + } else if (jj_2_883(2)) { + jj_consume_token(COMMA); + if (kvMode) { + {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.illegalComma());} + } + } else if (jj_2_884(2)) { jj_consume_token(COLON); if (kvMode) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.illegalColon());} @@ -8187,12 +8486,12 @@ final public List JsonNameAndValue() throws ParseException { } final public SqlNode JsonConstructorNullClause() throws ParseException { - if (jj_2_836(2)) { + if (jj_2_885(2)) { jj_consume_token(NULL); jj_consume_token(ON); jj_consume_token(NULL); {if (true) return SqlLiteral.createSymbol(SqlJsonConstructorNullClause.NULL_ON_NULL, getPos());} - } else if (jj_2_837(2)) { + } else if (jj_2_886(2)) { jj_consume_token(ABSENT); jj_consume_token(ON); jj_consume_token(NULL); @@ -8213,15 +8512,15 @@ final public SqlCall JsonObjectFunctionCall() throws ParseException { jj_consume_token(JSON_OBJECT); span = span(); jj_consume_token(LPAREN); - if (jj_2_839(2)) { + if (jj_2_888(2)) { list = JsonNameAndValue(); nvArgs.addAll(list); - label_64: + label_65: while (true) { - if (jj_2_838(2)) { + if (jj_2_887(2)) { ; } else { - break label_64; + break label_65; } jj_consume_token(COMMA); list = JsonNameAndValue(); @@ -8230,7 +8529,7 @@ final public SqlCall JsonObjectFunctionCall() throws ParseException { } else { ; } - if (jj_2_840(2)) { + if (jj_2_889(2)) { e = JsonConstructorNullClause(); otherArgs[0] = e; } else { @@ -8257,7 +8556,7 @@ final public SqlCall JsonObjectAggFunctionCall() throws ParseException { list = JsonNameAndValue(); args[0] = list.get(0); args[1] = list.get(1); - if (jj_2_841(2)) { + if (jj_2_890(2)) { e = JsonConstructorNullClause(); nullClause = (SqlJsonConstructorNullClause) ((SqlLiteral) e).getValue(); } else { @@ -8277,14 +8576,14 @@ final public SqlCall JsonArrayFunctionCall() throws ParseException { jj_consume_token(JSON_ARRAY); span = span(); jj_consume_token(LPAREN); - if (jj_2_843(2)) { + if (jj_2_892(2)) { AddExpression(elements, ExprContext.ACCEPT_NON_QUERY); - label_65: + label_66: while (true) { - if (jj_2_842(2)) { + if (jj_2_891(2)) { ; } else { - break label_65; + break label_66; } jj_consume_token(COMMA); AddExpression(elements, ExprContext.ACCEPT_NON_QUERY); @@ -8292,7 +8591,7 @@ final public SqlCall JsonArrayFunctionCall() throws ParseException { } else { ; } - if (jj_2_844(2)) { + if (jj_2_893(2)) { e = JsonConstructorNullClause(); otherArgs[0] = e; } else { @@ -8325,12 +8624,12 @@ final public SqlCall JsonArrayAggFunctionCall() throws ParseException { jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_NON_QUERY); valueExpr = e; - if (jj_2_845(2)) { + if (jj_2_894(2)) { orderList = JsonArrayAggOrderByClause(); } else { orderList = null; } - if (jj_2_846(2)) { + if (jj_2_895(2)) { e = JsonConstructorNullClause(); nullClause = (SqlJsonConstructorNullClause) ((SqlLiteral) e).getValue(); } else { @@ -8339,7 +8638,7 @@ final public SqlCall JsonArrayAggFunctionCall() throws ParseException { jj_consume_token(RPAREN); aggCall = SqlStdOperatorTable.JSON_ARRAYAGG.with(nullClause) .createCall(span.end(this), valueExpr, orderList); - if (jj_2_847(2)) { + if (jj_2_896(2)) { e = withinGroup(aggCall); if (orderList != null) { {if (true) throw SqlUtil.newContextException(span.pos().plus(e.getParserPosition()), @@ -8358,6 +8657,37 @@ final public SqlCall JsonArrayAggFunctionCall() throws ParseException { throw new Error("Missing return statement in function"); } + /** + * Parses the CONTAINS_SUBSTR function, which has a unique optional third argument "JSON_SCOPE" + * that specifies what scope to search if the first argument is a JSON string. + */ + final public SqlCall ContainsSubstrFunctionCall() throws ParseException { + final List args = new ArrayList(); + final Span s; + SqlNode e; + jj_consume_token(CONTAINS_SUBSTR); + s = span(); + jj_consume_token(LPAREN); + AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); + jj_consume_token(COMMA); + AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); + if (jj_2_897(2)) { + jj_consume_token(RPAREN); + } else if (jj_2_898(2)) { + jj_consume_token(COMMA); + jj_consume_token(JSON_SCOPE); + jj_consume_token(NAMED_ARGUMENT_ASSIGNMENT); + e = Expression(ExprContext.ACCEPT_SUB_QUERY); + args.add(e); + jj_consume_token(RPAREN); + } else { + jj_consume_token(-1); + throw new ParseException(); + } + {if (true) return SqlLibraryOperators.CONTAINS_SUBSTR.createCall(s.end(this), args);} + throw new Error("Missing return statement in function"); + } + /** * Parses a call to BigQuery's DATE_DIFF. */ @@ -8482,10 +8812,10 @@ final public SqlCall DateTruncFunctionCall() throws ParseException { jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(COMMA); - if (jj_2_848(2)) { + if (jj_2_899(2)) { unit = TimeUnit(); args.add(unit); - } else if (jj_2_849(2)) { + } else if (jj_2_900(2)) { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); } else { jj_consume_token(-1); @@ -8536,6 +8866,26 @@ final public SqlCall TimeDiffFunctionCall() throws ParseException { throw new Error("Missing return statement in function"); } +/** + * Parses a call to DATETIME_TRUNC. + */ + final public SqlNode DatetimeTruncFunctionCall() throws ParseException { + final List args = new ArrayList(); + final Span s; + final SqlIntervalQualifier unit; + final SqlNode literal; + jj_consume_token(DATETIME_TRUNC); + s = span(); + jj_consume_token(LPAREN); + AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); + jj_consume_token(COMMA); + unit = TimeUnitOrName(); + args.add(unit); + jj_consume_token(RPAREN); + {if (true) return SqlLibraryOperators.DATETIME_TRUNC.createCall(s.end(this), args);} + throw new Error("Missing return statement in function"); + } + /** * Parses a call to TIME_TRUNC. */ @@ -8563,13 +8913,13 @@ final public SqlCall GroupByWindowingCall() throws ParseException { final Span s; final List args; final SqlOperator op; - if (jj_2_850(2)) { + if (jj_2_901(2)) { jj_consume_token(TUMBLE); op = SqlStdOperatorTable.TUMBLE_OLD; - } else if (jj_2_851(2)) { + } else if (jj_2_902(2)) { jj_consume_token(HOP); op = SqlStdOperatorTable.HOP_OLD; - } else if (jj_2_852(2)) { + } else if (jj_2_903(2)) { jj_consume_token(SESSION); op = SqlStdOperatorTable.SESSION_OLD; } else { @@ -8585,23 +8935,23 @@ final public SqlCall GroupByWindowingCall() throws ParseException { final public SqlCall MatchRecognizeFunctionCall() throws ParseException { final SqlCall func; final Span s; - if (jj_2_853(2)) { + if (jj_2_904(2)) { jj_consume_token(CLASSIFIER); s = span(); jj_consume_token(LPAREN); jj_consume_token(RPAREN); func = SqlStdOperatorTable.CLASSIFIER.createCall(s.end(this)); - } else if (jj_2_854(2)) { + } else if (jj_2_905(2)) { jj_consume_token(MATCH_NUMBER); s = span(); jj_consume_token(LPAREN); jj_consume_token(RPAREN); func = SqlStdOperatorTable.MATCH_NUMBER.createCall(s.end(this)); - } else if (jj_2_855(3)) { + } else if (jj_2_906(3)) { func = MatchRecognizeNavigationLogical(); - } else if (jj_2_856(2)) { + } else if (jj_2_907(2)) { func = MatchRecognizeNavigationPhysical(); - } else if (jj_2_857(2)) { + } else if (jj_2_908(2)) { func = MatchRecognizeCallWithModifier(); } else { jj_consume_token(-1); @@ -8615,10 +8965,10 @@ final public SqlCall MatchRecognizeCallWithModifier() throws ParseException { final Span s; final SqlOperator runningOp; final SqlNode func; - if (jj_2_858(2)) { + if (jj_2_909(2)) { jj_consume_token(RUNNING); runningOp = SqlStdOperatorTable.RUNNING; - } else if (jj_2_859(2)) { + } else if (jj_2_910(2)) { jj_consume_token(FINAL); runningOp = SqlStdOperatorTable.FINAL; } else { @@ -8638,19 +8988,19 @@ final public SqlCall MatchRecognizeNavigationLogical() throws ParseException { final SqlOperator runningOp; final List args = new ArrayList(); SqlNode e; - if (jj_2_860(2)) { + if (jj_2_911(2)) { jj_consume_token(RUNNING); runningOp = SqlStdOperatorTable.RUNNING; s.add(this); - } else if (jj_2_861(2)) { + } else if (jj_2_912(2)) { jj_consume_token(FINAL); runningOp = SqlStdOperatorTable.FINAL; s.add(this); } else { runningOp = null; } - if (jj_2_862(2)) { + if (jj_2_913(2)) { jj_consume_token(FIRST); funcOp = SqlStdOperatorTable.FIRST; - } else if (jj_2_863(2)) { + } else if (jj_2_914(2)) { jj_consume_token(LAST); funcOp = SqlStdOperatorTable.LAST; } else { @@ -8660,7 +9010,7 @@ final public SqlCall MatchRecognizeNavigationLogical() throws ParseException { s.add(this); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_864(2)) { + if (jj_2_915(2)) { jj_consume_token(COMMA); e = NumericLiteral(); args.add(e); @@ -8682,10 +9032,10 @@ final public SqlCall MatchRecognizeNavigationPhysical() throws ParseException { final SqlOperator funcOp; final List args = new ArrayList(); SqlNode e; - if (jj_2_865(2)) { + if (jj_2_916(2)) { jj_consume_token(PREV); funcOp = SqlStdOperatorTable.PREV; - } else if (jj_2_866(2)) { + } else if (jj_2_917(2)) { jj_consume_token(NEXT); funcOp = SqlStdOperatorTable.NEXT; } else { @@ -8695,7 +9045,7 @@ final public SqlCall MatchRecognizeNavigationPhysical() throws ParseException { s = span(); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_867(2)) { + if (jj_2_918(2)) { jj_consume_token(COMMA); e = NumericLiteral(); args.add(e); @@ -8737,12 +9087,12 @@ final public SqlCall withinGroup(SqlNode arg) throws ParseException { final public Pair NullTreatment() throws ParseException { final Span span; - if (jj_2_868(2)) { + if (jj_2_919(2)) { jj_consume_token(IGNORE); span = span(); jj_consume_token(NULLS); {if (true) return Pair.of(span.end(this), SqlStdOperatorTable.IGNORE_NULLS);} - } else if (jj_2_869(2)) { + } else if (jj_2_920(2)) { jj_consume_token(RESPECT); span = span(); jj_consume_token(NULLS); @@ -8782,31 +9132,41 @@ final public SqlNode NamedFunctionCall() throws ParseException { final SqlNode filter; final Span overSpan; final SqlNode over; - if (jj_2_870(2)) { + if (jj_2_921(2)) { call = StringAggFunctionCall(); - } else if (jj_2_871(2)) { - call = NamedCall(); } else { - jj_consume_token(-1); - throw new ParseException(); + switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { + case PERCENTILE_CONT: + case PERCENTILE_DISC: + call = PercentileFunctionCall(); + break; + default: + jj_la1[7] = jj_gen; + if (jj_2_922(2)) { + call = NamedCall(); + } else { + jj_consume_token(-1); + throw new ParseException(); + } + } } - if (jj_2_872(2)) { + if (jj_2_923(2)) { call = nullTreatment(call); } else { ; } - if (jj_2_873(2)) { + if (jj_2_924(2)) { // decide between WITHIN DISTINCT and WITHIN GROUP call = withinDistinct(call); } else { ; } - if (jj_2_874(2)) { + if (jj_2_925(2)) { call = withinGroup(call); } else { ; } - if (jj_2_875(2)) { + if (jj_2_926(2)) { jj_consume_token(FILTER); filterSpan = span(); jj_consume_token(LPAREN); @@ -8818,12 +9178,12 @@ final public SqlNode NamedFunctionCall() throws ParseException { } else { ; } - if (jj_2_878(2)) { + if (jj_2_929(2)) { jj_consume_token(OVER); overSpan = span(); - if (jj_2_876(2)) { + if (jj_2_927(2)) { over = SimpleIdentifier(); - } else if (jj_2_877(2)) { + } else if (jj_2_928(2)) { over = WindowSpecification(); } else { jj_consume_token(-1); @@ -8843,7 +9203,7 @@ final public SqlCall NamedCall() throws ParseException { final Span s; final List args; SqlLiteral quantifier = null; - if (jj_2_879(2)) { + if (jj_2_930(2)) { jj_consume_token(SPECIFIC); funcType = SqlFunctionCategory.USER_DEFINED_SPECIFIC_FUNCTION; } else { @@ -8851,16 +9211,16 @@ final public SqlCall NamedCall() throws ParseException { } qualifiedName = FunctionName(); s = span(); - if (jj_2_880(2)) { + if (jj_2_931(2)) { jj_consume_token(LPAREN); jj_consume_token(STAR); args = ImmutableList.of(SqlIdentifier.star(getPos())); jj_consume_token(RPAREN); - } else if (jj_2_881(2)) { + } else if (jj_2_932(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); args = ImmutableList.of(); - } else if (jj_2_882(2)) { + } else if (jj_2_933(2)) { args = FunctionParameterList(ExprContext.ACCEPT_SUB_QUERY); quantifier = (SqlLiteral) args.get(0); args.remove(0); @@ -8883,7 +9243,7 @@ final public SqlNode StandardFloorCeilOptions(Span s, boolean floorFlag) throws final Span s1; jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_883(2)) { + if (jj_2_934(2)) { jj_consume_token(TO); unit = TimeUnitOrName(); args.add(unit); @@ -8891,16 +9251,14 @@ final public SqlNode StandardFloorCeilOptions(Span s, boolean floorFlag) throws ; } jj_consume_token(RPAREN); - SqlOperator op = floorFlag - ? SqlStdOperatorTable.FLOOR - : SqlStdOperatorTable.CEIL; + SqlOperator op = SqlStdOperatorTable.floorCeil(floorFlag, this.conformance); function = op.createCall(s.end(this), args); - if (jj_2_886(2)) { + if (jj_2_937(2)) { jj_consume_token(OVER); s1 = span(); - if (jj_2_884(2)) { + if (jj_2_935(2)) { e = SimpleIdentifier(); - } else if (jj_2_885(2)) { + } else if (jj_2_936(2)) { e = WindowSpecification(); } else { jj_consume_token(-1); @@ -8928,9 +9286,9 @@ final public String NonReservedJdbcFunctionName() throws ParseException { */ final public SqlIdentifier FunctionName() throws ParseException { SqlIdentifier qualifiedName; - if (jj_2_887(2)) { + if (jj_2_938(2)) { qualifiedName = CompoundIdentifier(); - } else if (jj_2_888(2)) { + } else if (jj_2_939(2)) { qualifiedName = ReservedFunctionName(); } else { jj_consume_token(-1); @@ -8944,135 +9302,135 @@ final public SqlIdentifier FunctionName() throws ParseException { * Parses a reserved word which is used as the name of a function. */ final public SqlIdentifier ReservedFunctionName() throws ParseException { - if (jj_2_889(2)) { + if (jj_2_940(2)) { jj_consume_token(ABS); - } else if (jj_2_890(2)) { + } else if (jj_2_941(2)) { jj_consume_token(AVG); - } else if (jj_2_891(2)) { + } else if (jj_2_942(2)) { jj_consume_token(CARDINALITY); - } else if (jj_2_892(2)) { + } else if (jj_2_943(2)) { jj_consume_token(CEILING); - } else if (jj_2_893(2)) { + } else if (jj_2_944(2)) { jj_consume_token(CHAR); - } else if (jj_2_894(2)) { + } else if (jj_2_945(2)) { jj_consume_token(CHAR_LENGTH); - } else if (jj_2_895(2)) { + } else if (jj_2_946(2)) { jj_consume_token(CHARACTER_LENGTH); - } else if (jj_2_896(2)) { + } else if (jj_2_947(2)) { jj_consume_token(COALESCE); - } else if (jj_2_897(2)) { + } else if (jj_2_948(2)) { jj_consume_token(COLLECT); - } else if (jj_2_898(2)) { + } else if (jj_2_949(2)) { jj_consume_token(COVAR_POP); - } else if (jj_2_899(2)) { + } else if (jj_2_950(2)) { jj_consume_token(COVAR_SAMP); - } else if (jj_2_900(2)) { + } else if (jj_2_951(2)) { jj_consume_token(CUME_DIST); - } else if (jj_2_901(2)) { + } else if (jj_2_952(2)) { jj_consume_token(COUNT); - } else if (jj_2_902(2)) { + } else if (jj_2_953(2)) { jj_consume_token(CURRENT_DATE); - } else if (jj_2_903(2)) { + } else if (jj_2_954(2)) { jj_consume_token(CURRENT_TIME); - } else if (jj_2_904(2)) { + } else if (jj_2_955(2)) { jj_consume_token(CURRENT_TIMESTAMP); - } else if (jj_2_905(2)) { + } else if (jj_2_956(2)) { jj_consume_token(DENSE_RANK); - } else if (jj_2_906(2)) { + } else if (jj_2_957(2)) { jj_consume_token(ELEMENT); - } else if (jj_2_907(2)) { + } else if (jj_2_958(2)) { jj_consume_token(EVERY); - } else if (jj_2_908(2)) { + } else if (jj_2_959(2)) { jj_consume_token(EXP); - } else if (jj_2_909(2)) { + } else if (jj_2_960(2)) { jj_consume_token(FIRST_VALUE); - } else if (jj_2_910(2)) { + } else if (jj_2_961(2)) { jj_consume_token(FLOOR); - } else if (jj_2_911(2)) { + } else if (jj_2_962(2)) { jj_consume_token(FUSION); - } else if (jj_2_912(2)) { + } else if (jj_2_963(2)) { jj_consume_token(INTERSECTION); - } else if (jj_2_913(2)) { + } else if (jj_2_964(2)) { jj_consume_token(GROUPING); - } else if (jj_2_914(2)) { + } else if (jj_2_965(2)) { jj_consume_token(HOUR); - } else if (jj_2_915(2)) { + } else if (jj_2_966(2)) { jj_consume_token(LAG); - } else if (jj_2_916(2)) { + } else if (jj_2_967(2)) { jj_consume_token(LEAD); - } else if (jj_2_917(2)) { + } else if (jj_2_968(2)) { jj_consume_token(LEFT); - } else if (jj_2_918(2)) { + } else if (jj_2_969(2)) { jj_consume_token(LAST_VALUE); - } else if (jj_2_919(2)) { + } else if (jj_2_970(2)) { jj_consume_token(LN); - } else if (jj_2_920(2)) { + } else if (jj_2_971(2)) { jj_consume_token(LOCALTIME); - } else if (jj_2_921(2)) { + } else if (jj_2_972(2)) { jj_consume_token(LOCALTIMESTAMP); - } else if (jj_2_922(2)) { + } else if (jj_2_973(2)) { jj_consume_token(LOWER); - } else if (jj_2_923(2)) { + } else if (jj_2_974(2)) { jj_consume_token(MAX); - } else if (jj_2_924(2)) { + } else if (jj_2_975(2)) { jj_consume_token(MIN); - } else if (jj_2_925(2)) { + } else if (jj_2_976(2)) { jj_consume_token(MINUTE); - } else if (jj_2_926(2)) { + } else if (jj_2_977(2)) { jj_consume_token(MOD); - } else if (jj_2_927(2)) { + } else if (jj_2_978(2)) { jj_consume_token(MONTH); - } else if (jj_2_928(2)) { + } else if (jj_2_979(2)) { jj_consume_token(NTH_VALUE); - } else if (jj_2_929(2)) { + } else if (jj_2_980(2)) { jj_consume_token(NTILE); - } else if (jj_2_930(2)) { + } else if (jj_2_981(2)) { jj_consume_token(NULLIF); - } else if (jj_2_931(2)) { + } else if (jj_2_982(2)) { jj_consume_token(OCTET_LENGTH); - } else if (jj_2_932(2)) { - jj_consume_token(PERCENT_RANK); - } else if (jj_2_933(2)) { + } else if (jj_2_983(2)) { jj_consume_token(PERCENTILE_CONT); - } else if (jj_2_934(2)) { + } else if (jj_2_984(2)) { jj_consume_token(PERCENTILE_DISC); - } else if (jj_2_935(2)) { + } else if (jj_2_985(2)) { + jj_consume_token(PERCENT_RANK); + } else if (jj_2_986(2)) { jj_consume_token(POWER); - } else if (jj_2_936(2)) { + } else if (jj_2_987(2)) { jj_consume_token(RANK); - } else if (jj_2_937(2)) { + } else if (jj_2_988(2)) { jj_consume_token(REGR_COUNT); - } else if (jj_2_938(2)) { + } else if (jj_2_989(2)) { jj_consume_token(REGR_SXX); - } else if (jj_2_939(2)) { + } else if (jj_2_990(2)) { jj_consume_token(REGR_SYY); - } else if (jj_2_940(2)) { + } else if (jj_2_991(2)) { jj_consume_token(RIGHT); - } else if (jj_2_941(2)) { + } else if (jj_2_992(2)) { jj_consume_token(ROW_NUMBER); - } else if (jj_2_942(2)) { + } else if (jj_2_993(2)) { jj_consume_token(SECOND); - } else if (jj_2_943(2)) { + } else if (jj_2_994(2)) { jj_consume_token(SOME); - } else if (jj_2_944(2)) { + } else if (jj_2_995(2)) { jj_consume_token(SQRT); - } else if (jj_2_945(2)) { + } else if (jj_2_996(2)) { jj_consume_token(STDDEV_POP); - } else if (jj_2_946(2)) { + } else if (jj_2_997(2)) { jj_consume_token(STDDEV_SAMP); - } else if (jj_2_947(2)) { + } else if (jj_2_998(2)) { jj_consume_token(SUM); - } else if (jj_2_948(2)) { + } else if (jj_2_999(2)) { jj_consume_token(UPPER); - } else if (jj_2_949(2)) { + } else if (jj_2_1000(2)) { jj_consume_token(TRUNCATE); - } else if (jj_2_950(2)) { + } else if (jj_2_1001(2)) { jj_consume_token(USER); - } else if (jj_2_951(2)) { + } else if (jj_2_1002(2)) { jj_consume_token(VAR_POP); - } else if (jj_2_952(2)) { + } else if (jj_2_1003(2)) { jj_consume_token(VAR_SAMP); - } else if (jj_2_953(2)) { + } else if (jj_2_1004(2)) { jj_consume_token(YEAR); } else { jj_consume_token(-1); @@ -9083,33 +9441,33 @@ final public SqlIdentifier ReservedFunctionName() throws ParseException { } final public SqlIdentifier ContextVariable() throws ParseException { - if (jj_2_954(2)) { + if (jj_2_1005(2)) { jj_consume_token(CURRENT_CATALOG); - } else if (jj_2_955(2)) { + } else if (jj_2_1006(2)) { jj_consume_token(CURRENT_DATE); - } else if (jj_2_956(2)) { + } else if (jj_2_1007(2)) { jj_consume_token(CURRENT_DEFAULT_TRANSFORM_GROUP); - } else if (jj_2_957(2)) { + } else if (jj_2_1008(2)) { jj_consume_token(CURRENT_PATH); - } else if (jj_2_958(2)) { + } else if (jj_2_1009(2)) { jj_consume_token(CURRENT_ROLE); - } else if (jj_2_959(2)) { + } else if (jj_2_1010(2)) { jj_consume_token(CURRENT_SCHEMA); - } else if (jj_2_960(2)) { + } else if (jj_2_1011(2)) { jj_consume_token(CURRENT_TIME); - } else if (jj_2_961(2)) { + } else if (jj_2_1012(2)) { jj_consume_token(CURRENT_TIMESTAMP); - } else if (jj_2_962(2)) { + } else if (jj_2_1013(2)) { jj_consume_token(CURRENT_USER); - } else if (jj_2_963(2)) { + } else if (jj_2_1014(2)) { jj_consume_token(LOCALTIME); - } else if (jj_2_964(2)) { + } else if (jj_2_1015(2)) { jj_consume_token(LOCALTIMESTAMP); - } else if (jj_2_965(2)) { + } else if (jj_2_1016(2)) { jj_consume_token(SESSION_USER); - } else if (jj_2_966(2)) { + } else if (jj_2_1017(2)) { jj_consume_token(SYSTEM_USER); - } else if (jj_2_967(2)) { + } else if (jj_2_1018(2)) { jj_consume_token(USER); } else { jj_consume_token(-1); @@ -9133,6 +9491,11 @@ final public SqlNode JdbcFunctionCall() throws ParseException { jj_consume_token(LBRACE_FN); s = span(); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { + case CONTAINS_SUBSTR: + call = ContainsSubstrFunctionCall(); + name = call.getOperator().getName(); + args = new SqlNodeList(call.getOperandList(), getPos()); + break; case DATE_DIFF: call = DateDiffFunctionCall(); name = call.getOperator().getName(); @@ -9174,12 +9537,12 @@ final public SqlNode JdbcFunctionCall() throws ParseException { args = new SqlNodeList(call.getOperandList(), getPos()); break; default: - jj_la1[10] = jj_gen; - if (jj_2_978(3)) { + jj_la1[9] = jj_gen; + if (jj_2_1029(3)) { call = TimestampDiffFunctionCall(); name = call.getOperator().getName(); args = new SqlNodeList(call.getOperandList(), getPos()); - } else if (jj_2_979(2)) { + } else if (jj_2_1030(2)) { jj_consume_token(CONVERT); name = unquotedIdentifier(); jj_consume_token(LPAREN); @@ -9190,19 +9553,19 @@ final public SqlNode JdbcFunctionCall() throws ParseException { tl = JdbcOdbcDataType(); args.add(tl); jj_consume_token(RPAREN); - } else if (jj_2_980(2)) { + } else if (jj_2_1031(2)) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case INSERT: case LEFT: case RIGHT: case TRUNCATE: - if (jj_2_968(2)) { + if (jj_2_1019(2)) { jj_consume_token(INSERT); - } else if (jj_2_969(2)) { + } else if (jj_2_1020(2)) { jj_consume_token(LEFT); - } else if (jj_2_970(2)) { + } else if (jj_2_1021(2)) { jj_consume_token(RIGHT); - } else if (jj_2_971(2)) { + } else if (jj_2_1022(2)) { jj_consume_token(TRUNCATE); } else { jj_consume_token(-1); @@ -9211,33 +9574,33 @@ final public SqlNode JdbcFunctionCall() throws ParseException { name = unquotedIdentifier(); break; default: - jj_la1[9] = jj_gen; - if (jj_2_972(2)) { + jj_la1[8] = jj_gen; + if (jj_2_1023(2)) { // For cases like {fn power(1,2)} and {fn lower('a')} id = ReservedFunctionName(); name = id.getSimple(); - } else if (jj_2_973(2)) { + } else if (jj_2_1024(2)) { // For cases like {fn substring('foo', 1,2)} name = NonReservedJdbcFunctionName(); - } else if (jj_2_974(2)) { + } else if (jj_2_1025(2)) { name = Identifier(); } else { jj_consume_token(-1); throw new ParseException(); } } - if (jj_2_975(2)) { + if (jj_2_1026(2)) { jj_consume_token(LPAREN); jj_consume_token(STAR); s1 = span(); jj_consume_token(RPAREN); args = new SqlNodeList(s1.pos()); args.add(SqlIdentifier.star(s1.pos())); - } else if (jj_2_976(2)) { + } else if (jj_2_1027(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); args = SqlNodeList.EMPTY; - } else if (jj_2_977(2)) { + } else if (jj_2_1028(2)) { args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_SUB_QUERY); } else { jj_consume_token(-1); @@ -9258,32 +9621,32 @@ final public SqlNode JdbcFunctionCall() throws ParseException { * Parses a binary query operator like UNION. */ final public SqlBinaryOperator BinaryQueryOperator() throws ParseException { - if (jj_2_989(2)) { + if (jj_2_1040(2)) { jj_consume_token(UNION); - if (jj_2_981(2)) { + if (jj_2_1032(2)) { jj_consume_token(ALL); {if (true) return SqlStdOperatorTable.UNION_ALL;} - } else if (jj_2_982(2)) { + } else if (jj_2_1033(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.UNION;} } else { {if (true) return SqlStdOperatorTable.UNION;} } - } else if (jj_2_990(2)) { + } else if (jj_2_1041(2)) { jj_consume_token(INTERSECT); - if (jj_2_983(2)) { + if (jj_2_1034(2)) { jj_consume_token(ALL); {if (true) return SqlStdOperatorTable.INTERSECT_ALL;} - } else if (jj_2_984(2)) { + } else if (jj_2_1035(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.INTERSECT;} } else { {if (true) return SqlStdOperatorTable.INTERSECT;} } - } else if (jj_2_991(2)) { - if (jj_2_985(2)) { + } else if (jj_2_1042(2)) { + if (jj_2_1036(2)) { jj_consume_token(EXCEPT); - } else if (jj_2_986(2)) { + } else if (jj_2_1037(2)) { jj_consume_token(SET_MINUS); if (!this.conformance.isMinusAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.minusNotAllowed());} @@ -9292,10 +9655,10 @@ final public SqlBinaryOperator BinaryQueryOperator() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_987(2)) { + if (jj_2_1038(2)) { jj_consume_token(ALL); {if (true) return SqlStdOperatorTable.EXCEPT_ALL;} - } else if (jj_2_988(2)) { + } else if (jj_2_1039(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.EXCEPT;} } else { @@ -9313,12 +9676,12 @@ final public SqlBinaryOperator BinaryQueryOperator() throws ParseException { */ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { jj_consume_token(MULTISET); - if (jj_2_1001(2)) { + if (jj_2_1052(2)) { jj_consume_token(UNION); - if (jj_2_994(2)) { - if (jj_2_992(2)) { + if (jj_2_1045(2)) { + if (jj_2_1043(2)) { jj_consume_token(ALL); - } else if (jj_2_993(2)) { + } else if (jj_2_1044(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.MULTISET_UNION_DISTINCT;} } else { @@ -9329,12 +9692,12 @@ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { ; } {if (true) return SqlStdOperatorTable.MULTISET_UNION;} - } else if (jj_2_1002(2)) { + } else if (jj_2_1053(2)) { jj_consume_token(INTERSECT); - if (jj_2_997(2)) { - if (jj_2_995(2)) { + if (jj_2_1048(2)) { + if (jj_2_1046(2)) { jj_consume_token(ALL); - } else if (jj_2_996(2)) { + } else if (jj_2_1047(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.MULTISET_INTERSECT_DISTINCT;} } else { @@ -9345,12 +9708,12 @@ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { ; } {if (true) return SqlStdOperatorTable.MULTISET_INTERSECT;} - } else if (jj_2_1003(2)) { + } else if (jj_2_1054(2)) { jj_consume_token(EXCEPT); - if (jj_2_1000(2)) { - if (jj_2_998(2)) { + if (jj_2_1051(2)) { + if (jj_2_1049(2)) { jj_consume_token(ALL); - } else if (jj_2_999(2)) { + } else if (jj_2_1050(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.MULTISET_EXCEPT_DISTINCT;} } else { @@ -9373,105 +9736,105 @@ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { */ final public SqlBinaryOperator BinaryRowOperator() throws ParseException { SqlBinaryOperator op; - if (jj_2_1004(2)) { + if (jj_2_1055(2)) { jj_consume_token(EQ); {if (true) return SqlStdOperatorTable.EQUALS;} - } else if (jj_2_1005(2)) { + } else if (jj_2_1056(2)) { jj_consume_token(GT); {if (true) return SqlStdOperatorTable.GREATER_THAN;} - } else if (jj_2_1006(2)) { + } else if (jj_2_1057(2)) { jj_consume_token(LT); {if (true) return SqlStdOperatorTable.LESS_THAN;} - } else if (jj_2_1007(2)) { + } else if (jj_2_1058(2)) { jj_consume_token(LE); {if (true) return SqlStdOperatorTable.LESS_THAN_OR_EQUAL;} - } else if (jj_2_1008(2)) { + } else if (jj_2_1059(2)) { jj_consume_token(GE); {if (true) return SqlStdOperatorTable.GREATER_THAN_OR_EQUAL;} - } else if (jj_2_1009(2)) { + } else if (jj_2_1060(2)) { jj_consume_token(NE); {if (true) return SqlStdOperatorTable.NOT_EQUALS;} - } else if (jj_2_1010(2)) { + } else if (jj_2_1061(2)) { jj_consume_token(NE2); if (!this.conformance.isBangEqualAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.bangEqualNotAllowed());} } {if (true) return SqlStdOperatorTable.NOT_EQUALS;} - } else if (jj_2_1011(2)) { + } else if (jj_2_1062(2)) { jj_consume_token(PLUS); {if (true) return SqlStdOperatorTable.PLUS;} - } else if (jj_2_1012(2)) { + } else if (jj_2_1063(2)) { jj_consume_token(MINUS); {if (true) return SqlStdOperatorTable.MINUS;} - } else if (jj_2_1013(2)) { + } else if (jj_2_1064(2)) { jj_consume_token(STAR); {if (true) return SqlStdOperatorTable.MULTIPLY;} - } else if (jj_2_1014(2)) { + } else if (jj_2_1065(2)) { jj_consume_token(SLASH); {if (true) return SqlStdOperatorTable.DIVIDE;} - } else if (jj_2_1015(2)) { + } else if (jj_2_1066(2)) { jj_consume_token(PERCENT_REMAINDER); if (!this.conformance.isPercentRemainderAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.percentRemainderNotAllowed());} } {if (true) return SqlStdOperatorTable.PERCENT_REMAINDER;} - } else if (jj_2_1016(2)) { + } else if (jj_2_1067(2)) { jj_consume_token(CONCAT); {if (true) return SqlStdOperatorTable.CONCAT;} - } else if (jj_2_1017(2)) { + } else if (jj_2_1068(2)) { jj_consume_token(AND); {if (true) return SqlStdOperatorTable.AND;} - } else if (jj_2_1018(2)) { + } else if (jj_2_1069(2)) { jj_consume_token(OR); {if (true) return SqlStdOperatorTable.OR;} - } else if (jj_2_1019(2)) { + } else if (jj_2_1070(2)) { jj_consume_token(IS); jj_consume_token(DISTINCT); jj_consume_token(FROM); {if (true) return SqlStdOperatorTable.IS_DISTINCT_FROM;} - } else if (jj_2_1020(2)) { + } else if (jj_2_1071(2)) { jj_consume_token(IS); jj_consume_token(NOT); jj_consume_token(DISTINCT); jj_consume_token(FROM); {if (true) return SqlStdOperatorTable.IS_NOT_DISTINCT_FROM;} - } else if (jj_2_1021(2)) { + } else if (jj_2_1072(2)) { jj_consume_token(MEMBER); jj_consume_token(OF); {if (true) return SqlStdOperatorTable.MEMBER_OF;} - } else if (jj_2_1022(2)) { + } else if (jj_2_1073(2)) { jj_consume_token(SUBMULTISET); jj_consume_token(OF); {if (true) return SqlStdOperatorTable.SUBMULTISET_OF;} - } else if (jj_2_1023(2)) { + } else if (jj_2_1074(2)) { jj_consume_token(NOT); jj_consume_token(SUBMULTISET); jj_consume_token(OF); {if (true) return SqlStdOperatorTable.NOT_SUBMULTISET_OF;} - } else if (jj_2_1024(2)) { + } else if (jj_2_1075(2)) { jj_consume_token(CONTAINS); {if (true) return SqlStdOperatorTable.CONTAINS;} - } else if (jj_2_1025(2)) { + } else if (jj_2_1076(2)) { jj_consume_token(OVERLAPS); {if (true) return SqlStdOperatorTable.OVERLAPS;} - } else if (jj_2_1026(2)) { + } else if (jj_2_1077(2)) { jj_consume_token(EQUALS); {if (true) return SqlStdOperatorTable.PERIOD_EQUALS;} - } else if (jj_2_1027(2)) { + } else if (jj_2_1078(2)) { jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.PRECEDES;} - } else if (jj_2_1028(2)) { + } else if (jj_2_1079(2)) { jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.SUCCEEDS;} - } else if (jj_2_1029(2)) { + } else if (jj_2_1080(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.IMMEDIATELY_PRECEDES;} - } else if (jj_2_1030(2)) { + } else if (jj_2_1081(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.IMMEDIATELY_SUCCEEDS;} - } else if (jj_2_1031(2)) { + } else if (jj_2_1082(2)) { op = BinaryMultisetOperator(); {if (true) return op;} } else { @@ -9485,19 +9848,19 @@ final public SqlBinaryOperator BinaryRowOperator() throws ParseException { * Parses a prefix row operator like NOT. */ final public SqlPrefixOperator PrefixRowOperator() throws ParseException { - if (jj_2_1032(2)) { + if (jj_2_1083(2)) { jj_consume_token(PLUS); {if (true) return SqlStdOperatorTable.UNARY_PLUS;} - } else if (jj_2_1033(2)) { + } else if (jj_2_1084(2)) { jj_consume_token(MINUS); {if (true) return SqlStdOperatorTable.UNARY_MINUS;} - } else if (jj_2_1034(2)) { + } else if (jj_2_1085(2)) { jj_consume_token(NOT); {if (true) return SqlStdOperatorTable.NOT;} - } else if (jj_2_1035(2)) { + } else if (jj_2_1086(2)) { jj_consume_token(EXISTS); {if (true) return SqlStdOperatorTable.EXISTS;} - } else if (jj_2_1036(2)) { + } else if (jj_2_1087(2)) { jj_consume_token(UNIQUE); {if (true) return SqlStdOperatorTable.UNIQUE;} } else { @@ -9511,89 +9874,89 @@ final public SqlPrefixOperator PrefixRowOperator() throws ParseException { * Parses a postfix row operator like IS NOT NULL. */ final public SqlPostfixOperator PostfixRowOperator() throws ParseException { - if (jj_2_1061(2)) { + if (jj_2_1112(2)) { jj_consume_token(IS); - if (jj_2_1058(2)) { + if (jj_2_1109(2)) { jj_consume_token(A); jj_consume_token(SET); {if (true) return SqlStdOperatorTable.IS_A_SET;} - } else if (jj_2_1059(2)) { + } else if (jj_2_1110(2)) { jj_consume_token(NOT); - if (jj_2_1037(2)) { + if (jj_2_1088(2)) { jj_consume_token(NULL); {if (true) return SqlStdOperatorTable.IS_NOT_NULL;} - } else if (jj_2_1038(2)) { + } else if (jj_2_1089(2)) { jj_consume_token(TRUE); {if (true) return SqlStdOperatorTable.IS_NOT_TRUE;} - } else if (jj_2_1039(2)) { + } else if (jj_2_1090(2)) { jj_consume_token(FALSE); {if (true) return SqlStdOperatorTable.IS_NOT_FALSE;} - } else if (jj_2_1040(2)) { + } else if (jj_2_1091(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlStdOperatorTable.IS_NOT_UNKNOWN;} - } else if (jj_2_1041(2)) { + } else if (jj_2_1092(2)) { jj_consume_token(A); jj_consume_token(SET); {if (true) return SqlStdOperatorTable.IS_NOT_A_SET;} - } else if (jj_2_1042(2)) { + } else if (jj_2_1093(2)) { jj_consume_token(EMPTY); {if (true) return SqlStdOperatorTable.IS_NOT_EMPTY;} - } else if (jj_2_1043(2)) { + } else if (jj_2_1094(2)) { jj_consume_token(JSON); jj_consume_token(VALUE); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_VALUE;} - } else if (jj_2_1044(2)) { + } else if (jj_2_1095(2)) { jj_consume_token(JSON); jj_consume_token(OBJECT); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_OBJECT;} - } else if (jj_2_1045(2)) { + } else if (jj_2_1096(2)) { jj_consume_token(JSON); jj_consume_token(ARRAY); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_ARRAY;} - } else if (jj_2_1046(2)) { + } else if (jj_2_1097(2)) { jj_consume_token(JSON); jj_consume_token(SCALAR); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_SCALAR;} - } else if (jj_2_1047(2)) { + } else if (jj_2_1098(2)) { jj_consume_token(JSON); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_VALUE;} } else { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_1060(2)) { - if (jj_2_1048(2)) { + } else if (jj_2_1111(2)) { + if (jj_2_1099(2)) { jj_consume_token(NULL); {if (true) return SqlStdOperatorTable.IS_NULL;} - } else if (jj_2_1049(2)) { + } else if (jj_2_1100(2)) { jj_consume_token(TRUE); {if (true) return SqlStdOperatorTable.IS_TRUE;} - } else if (jj_2_1050(2)) { + } else if (jj_2_1101(2)) { jj_consume_token(FALSE); {if (true) return SqlStdOperatorTable.IS_FALSE;} - } else if (jj_2_1051(2)) { + } else if (jj_2_1102(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlStdOperatorTable.IS_UNKNOWN;} - } else if (jj_2_1052(2)) { + } else if (jj_2_1103(2)) { jj_consume_token(EMPTY); {if (true) return SqlStdOperatorTable.IS_EMPTY;} - } else if (jj_2_1053(2)) { + } else if (jj_2_1104(2)) { jj_consume_token(JSON); jj_consume_token(VALUE); {if (true) return SqlStdOperatorTable.IS_JSON_VALUE;} - } else if (jj_2_1054(2)) { + } else if (jj_2_1105(2)) { jj_consume_token(JSON); jj_consume_token(OBJECT); {if (true) return SqlStdOperatorTable.IS_JSON_OBJECT;} - } else if (jj_2_1055(2)) { + } else if (jj_2_1106(2)) { jj_consume_token(JSON); jj_consume_token(ARRAY); {if (true) return SqlStdOperatorTable.IS_JSON_ARRAY;} - } else if (jj_2_1056(2)) { + } else if (jj_2_1107(2)) { jj_consume_token(JSON); jj_consume_token(SCALAR); {if (true) return SqlStdOperatorTable.IS_JSON_SCALAR;} - } else if (jj_2_1057(2)) { + } else if (jj_2_1108(2)) { jj_consume_token(JSON); {if (true) return SqlStdOperatorTable.IS_JSON_VALUE;} } else { @@ -9604,7 +9967,7 @@ final public SqlPostfixOperator PostfixRowOperator() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_1062(2)) { + } else if (jj_2_1113(2)) { jj_consume_token(FORMAT); JsonRepresentation(); {if (true) return SqlStdOperatorTable.JSON_VALUE_EXPRESSION;} @@ -9630,11 +9993,11 @@ final public SqlPostfixOperator PostfixRowOperator() throws ParseException { * @see Glossary#SQL2003 SQL:2003 Part 2 Section 5.2 */ final public String NonReservedKeyWord() throws ParseException { - if (jj_2_1063(2)) { + if (jj_2_1114(2)) { NonReservedKeyWord0of3(); - } else if (jj_2_1064(2)) { + } else if (jj_2_1115(2)) { NonReservedKeyWord1of3(); - } else if (jj_2_1065(2)) { + } else if (jj_2_1116(2)) { NonReservedKeyWord2of3(); } else { jj_consume_token(-1); @@ -9646,1372 +10009,1392 @@ final public String NonReservedKeyWord() throws ParseException { /** @see #NonReservedKeyWord */ final public void NonReservedKeyWord0of3() throws ParseException { - if (jj_2_1066(2)) { + if (jj_2_1117(2)) { jj_consume_token(A); - } else if (jj_2_1067(2)) { - jj_consume_token(ACTION); - } else if (jj_2_1068(2)) { - jj_consume_token(ADMIN); - } else if (jj_2_1069(2)) { - jj_consume_token(APPLY); - } else if (jj_2_1070(2)) { - jj_consume_token(ASC); - } else if (jj_2_1071(2)) { - jj_consume_token(ATTRIBUTE); - } else if (jj_2_1072(2)) { - jj_consume_token(BERNOULLI); - } else if (jj_2_1073(2)) { - jj_consume_token(CASCADE); - } else if (jj_2_1074(2)) { - jj_consume_token(CENTURY); - } else if (jj_2_1075(2)) { - jj_consume_token(CHARACTERS); - } else if (jj_2_1076(2)) { - jj_consume_token(CHARACTER_SET_SCHEMA); - } else if (jj_2_1077(2)) { - jj_consume_token(COLLATION); - } else if (jj_2_1078(2)) { - jj_consume_token(COLLATION_SCHEMA); - } else if (jj_2_1079(2)) { - jj_consume_token(COMMAND_FUNCTION_CODE); - } else if (jj_2_1080(2)) { - jj_consume_token(CONDITION_NUMBER); - } else if (jj_2_1081(2)) { - jj_consume_token(CONSTRAINT_CATALOG); - } else if (jj_2_1082(2)) { - jj_consume_token(CONSTRAINT_SCHEMA); - } else if (jj_2_1083(2)) { - jj_consume_token(CURSOR_NAME); - } else if (jj_2_1084(2)) { - jj_consume_token(DATE_DIFF); - } else if (jj_2_1085(2)) { - jj_consume_token(DATETIME_INTERVAL_CODE); - } else if (jj_2_1086(2)) { - jj_consume_token(DECADE); - } else if (jj_2_1087(2)) { - jj_consume_token(DEFERRED); - } else if (jj_2_1088(2)) { - jj_consume_token(DEGREE); - } else if (jj_2_1089(2)) { - jj_consume_token(DESC); - } else if (jj_2_1090(2)) { - jj_consume_token(DIAGNOSTICS); - } else if (jj_2_1091(2)) { - jj_consume_token(DOW); - } else if (jj_2_1092(2)) { - jj_consume_token(DYNAMIC_FUNCTION); - } else if (jj_2_1093(2)) { - jj_consume_token(EPOCH); - } else if (jj_2_1094(2)) { - jj_consume_token(EXCLUDE); - } else if (jj_2_1095(2)) { - jj_consume_token(FIRST); - } else if (jj_2_1096(2)) { - jj_consume_token(FORTRAN); - } else if (jj_2_1097(2)) { - jj_consume_token(G); - } else if (jj_2_1098(2)) { - jj_consume_token(GEOMETRY); - } else if (jj_2_1099(2)) { - jj_consume_token(GRANTED); - } else if (jj_2_1100(2)) { - jj_consume_token(HOP); - } else if (jj_2_1101(2)) { - jj_consume_token(ILIKE); - } else if (jj_2_1102(2)) { - jj_consume_token(IMPLEMENTATION); - } else if (jj_2_1103(2)) { - jj_consume_token(INCREMENT); - } else if (jj_2_1104(2)) { - jj_consume_token(INSTANCE); - } else if (jj_2_1105(2)) { - jj_consume_token(ISODOW); - } else if (jj_2_1106(2)) { - jj_consume_token(JAVA); - } else if (jj_2_1107(2)) { - jj_consume_token(KEY); - } else if (jj_2_1108(2)) { - jj_consume_token(LABEL); - } else if (jj_2_1109(2)) { - jj_consume_token(LEVEL); - } else if (jj_2_1110(2)) { - jj_consume_token(M); - } else if (jj_2_1111(2)) { - jj_consume_token(MAXVALUE); - } else if (jj_2_1112(2)) { - jj_consume_token(MESSAGE_TEXT); - } else if (jj_2_1113(2)) { - jj_consume_token(MILLISECOND); - } else if (jj_2_1114(2)) { - jj_consume_token(MONTHS); - } else if (jj_2_1115(2)) { - jj_consume_token(NAME); - } else if (jj_2_1116(2)) { - jj_consume_token(NESTING); - } else if (jj_2_1117(2)) { - jj_consume_token(NULLS); } else if (jj_2_1118(2)) { - jj_consume_token(OCTETS); + jj_consume_token(ACTION); } else if (jj_2_1119(2)) { - jj_consume_token(ORDERING); + jj_consume_token(ADMIN); } else if (jj_2_1120(2)) { - jj_consume_token(OUTPUT); + jj_consume_token(APPLY); } else if (jj_2_1121(2)) { - jj_consume_token(PARAMETER_MODE); + jj_consume_token(ASC); } else if (jj_2_1122(2)) { - jj_consume_token(PARAMETER_SPECIFIC_CATALOG); + jj_consume_token(ATTRIBUTE); } else if (jj_2_1123(2)) { - jj_consume_token(PARTIAL); + jj_consume_token(BERNOULLI); } else if (jj_2_1124(2)) { - jj_consume_token(PASSTHROUGH); + jj_consume_token(CASCADE); } else if (jj_2_1125(2)) { - jj_consume_token(PIVOT); + jj_consume_token(CENTURY); } else if (jj_2_1126(2)) { - jj_consume_token(PLI); + jj_consume_token(CHARACTERS); } else if (jj_2_1127(2)) { - jj_consume_token(PRIOR); + jj_consume_token(CHARACTER_SET_SCHEMA); } else if (jj_2_1128(2)) { - jj_consume_token(QUARTER); + jj_consume_token(COLLATION); } else if (jj_2_1129(2)) { - jj_consume_token(RELATIVE); + jj_consume_token(COLLATION_SCHEMA); } else if (jj_2_1130(2)) { - jj_consume_token(RESPECT); + jj_consume_token(COMMAND_FUNCTION_CODE); } else if (jj_2_1131(2)) { - jj_consume_token(RETURNED_CARDINALITY); + jj_consume_token(CONDITION_NUMBER); } else if (jj_2_1132(2)) { - jj_consume_token(RETURNED_SQLSTATE); + jj_consume_token(CONSTRAINT_CATALOG); } else if (jj_2_1133(2)) { - jj_consume_token(ROLE); + jj_consume_token(CONSTRAINT_SCHEMA); } else if (jj_2_1134(2)) { - jj_consume_token(ROUTINE_NAME); + jj_consume_token(CONTINUE); } else if (jj_2_1135(2)) { - jj_consume_token(SCALAR); + jj_consume_token(DATABASE); } else if (jj_2_1136(2)) { - jj_consume_token(SCHEMA_NAME); + jj_consume_token(DATETIME_DIFF); } else if (jj_2_1137(2)) { - jj_consume_token(SCOPE_SCHEMA); + jj_consume_token(DATETIME_TRUNC); } else if (jj_2_1138(2)) { - jj_consume_token(SECURITY); + jj_consume_token(DAYS); } else if (jj_2_1139(2)) { - jj_consume_token(SEQUENCE); + jj_consume_token(DEFERRABLE); } else if (jj_2_1140(2)) { - jj_consume_token(SERVER_NAME); + jj_consume_token(DEFINER); } else if (jj_2_1141(2)) { - jj_consume_token(SIMPLE); + jj_consume_token(DERIVED); } else if (jj_2_1142(2)) { - jj_consume_token(SPACE); + jj_consume_token(DESCRIPTOR); } else if (jj_2_1143(2)) { - jj_consume_token(SQL_BINARY); + jj_consume_token(DOMAIN); } else if (jj_2_1144(2)) { - jj_consume_token(SQL_BOOLEAN); + jj_consume_token(DOT_FORMAT); } else if (jj_2_1145(2)) { - jj_consume_token(SQL_DATE); + jj_consume_token(ENCODING); } else if (jj_2_1146(2)) { - jj_consume_token(SQL_FLOAT); + jj_consume_token(EXCEPTION); } else if (jj_2_1147(2)) { - jj_consume_token(SQL_INTERVAL_DAY_TO_HOUR); + jj_consume_token(FINAL); } else if (jj_2_1148(2)) { - jj_consume_token(SQL_INTERVAL_HOUR); + jj_consume_token(FORMAT); } else if (jj_2_1149(2)) { - jj_consume_token(SQL_INTERVAL_MINUTE); + jj_consume_token(FRAC_SECOND); } else if (jj_2_1150(2)) { - jj_consume_token(SQL_INTERVAL_SECOND); + jj_consume_token(GENERATED); } else if (jj_2_1151(2)) { - jj_consume_token(SQL_LONGVARBINARY); + jj_consume_token(GOTO); } else if (jj_2_1152(2)) { - jj_consume_token(SQL_NCHAR); + jj_consume_token(HIERARCHY); } else if (jj_2_1153(2)) { - jj_consume_token(SQL_NVARCHAR); + jj_consume_token(IGNORE); } else if (jj_2_1154(2)) { - jj_consume_token(SQL_TIME); + jj_consume_token(IMMEDIATELY); } else if (jj_2_1155(2)) { - jj_consume_token(SQL_TSI_DAY); + jj_consume_token(INCLUDING); } else if (jj_2_1156(2)) { - jj_consume_token(SQL_TSI_MICROSECOND); + jj_consume_token(INPUT); } else if (jj_2_1157(2)) { - jj_consume_token(SQL_TSI_QUARTER); + jj_consume_token(INVOKER); } else if (jj_2_1158(2)) { - jj_consume_token(SQL_TSI_YEAR); + jj_consume_token(ISOYEAR); } else if (jj_2_1159(2)) { - jj_consume_token(STATE); + jj_consume_token(K); } else if (jj_2_1160(2)) { - jj_consume_token(STRUCTURE); + jj_consume_token(KEY_TYPE); } else if (jj_2_1161(2)) { - jj_consume_token(SUBSTITUTE); + jj_consume_token(LENGTH); } else if (jj_2_1162(2)) { - jj_consume_token(TIES); + jj_consume_token(LOCATOR); } else if (jj_2_1163(2)) { - jj_consume_token(TIMESTAMPADD); + jj_consume_token(MATCHED); } else if (jj_2_1164(2)) { - jj_consume_token(TIMESTAMP_TRUNC); + jj_consume_token(MESSAGE_OCTET_LENGTH); } else if (jj_2_1165(2)) { - jj_consume_token(TRANSACTIONS_ACTIVE); + jj_consume_token(MILLENNIUM); } else if (jj_2_1166(2)) { - jj_consume_token(TRANSFORM); + jj_consume_token(MINVALUE); } else if (jj_2_1167(2)) { - jj_consume_token(TRIGGER_NAME); + jj_consume_token(MUMPS); } else if (jj_2_1168(2)) { - jj_consume_token(TYPE); + jj_consume_token(NANOSECOND); } else if (jj_2_1169(2)) { - jj_consume_token(UNCONDITIONAL); + jj_consume_token(NULLABLE); } else if (jj_2_1170(2)) { - jj_consume_token(UNNAMED); + jj_consume_token(OBJECT); } else if (jj_2_1171(2)) { - jj_consume_token(USER_DEFINED_TYPE_CODE); + jj_consume_token(OPTIONS); } else if (jj_2_1172(2)) { - jj_consume_token(UTF16); + jj_consume_token(OTHERS); } else if (jj_2_1173(2)) { - jj_consume_token(VERSION); + jj_consume_token(PAD); } else if (jj_2_1174(2)) { - jj_consume_token(WEEKS); + jj_consume_token(PARAMETER_ORDINAL_POSITION); } else if (jj_2_1175(2)) { - jj_consume_token(WRITE); + jj_consume_token(PARAMETER_SPECIFIC_SCHEMA); } else if (jj_2_1176(2)) { - jj_consume_token(ZONE); + jj_consume_token(PASSING); } else if (jj_2_1177(2)) { - jj_consume_token(AFFINITY_KEY); + jj_consume_token(PATH); } else if (jj_2_1178(2)) { - jj_consume_token(CACHE_GROUP); + jj_consume_token(PLAN); } else if (jj_2_1179(2)) { - jj_consume_token(VALUE_TYPE); + jj_consume_token(PRESERVE); } else if (jj_2_1180(2)) { - jj_consume_token(INLINE_SIZE); + jj_consume_token(PUBLIC); } else if (jj_2_1181(2)) { - jj_consume_token(PASSWORD); + jj_consume_token(READ); } else if (jj_2_1182(2)) { - jj_consume_token(CONTINUOUS); + jj_consume_token(REPLACE); } else if (jj_2_1183(2)) { - jj_consume_token(ASYNC); + jj_consume_token(RESTRICT); } else if (jj_2_1184(2)) { - jj_consume_token(REFRESH); + jj_consume_token(RETURNED_OCTET_LENGTH); } else if (jj_2_1185(2)) { - jj_consume_token(TOTAL); + jj_consume_token(RLIKE); } else if (jj_2_1186(2)) { - jj_consume_token(ALLOW); + jj_consume_token(ROUTINE_CATALOG); } else if (jj_2_1187(2)) { - jj_consume_token(ASENSITIVE); + jj_consume_token(ROW_COUNT); } else if (jj_2_1188(2)) { - jj_consume_token(AUTHORIZATION); + jj_consume_token(SCHEMA); } else if (jj_2_1189(2)) { - jj_consume_token(BEGIN_FRAME); + jj_consume_token(SCOPE_NAME); } else if (jj_2_1190(2)) { - jj_consume_token(BINARY); + jj_consume_token(SECTION); } else if (jj_2_1191(2)) { - jj_consume_token(BOOLEAN); + jj_consume_token(SEPARATOR); } else if (jj_2_1192(2)) { - jj_consume_token(CARDINALITY); + jj_consume_token(SERVER); } else if (jj_2_1193(2)) { - jj_consume_token(CEILING); + jj_consume_token(SETS); } else if (jj_2_1194(2)) { - jj_consume_token(CHARACTER_LENGTH); + jj_consume_token(SOURCE); } else if (jj_2_1195(2)) { - jj_consume_token(CLASSIFIER); + jj_consume_token(SQL_BIGINT); } else if (jj_2_1196(2)) { - jj_consume_token(COALESCE); + jj_consume_token(SQL_BLOB); } else if (jj_2_1197(2)) { - jj_consume_token(COMMIT); + jj_consume_token(SQL_CLOB); } else if (jj_2_1198(2)) { - jj_consume_token(CONTAINS); + jj_consume_token(SQL_DOUBLE); } else if (jj_2_1199(2)) { - jj_consume_token(CORRESPONDING); + jj_consume_token(SQL_INTERVAL_DAY); } else if (jj_2_1200(2)) { - jj_consume_token(COVAR_SAMP); + jj_consume_token(SQL_INTERVAL_DAY_TO_SECOND); } else if (jj_2_1201(2)) { - jj_consume_token(CURRENT); + jj_consume_token(SQL_INTERVAL_HOUR_TO_SECOND); } else if (jj_2_1202(2)) { - jj_consume_token(CURRENT_PATH); + jj_consume_token(SQL_INTERVAL_MONTH); } else if (jj_2_1203(2)) { - jj_consume_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE); + jj_consume_token(SQL_INTERVAL_YEAR_TO_MONTH); } else if (jj_2_1204(2)) { - jj_consume_token(DATE); + jj_consume_token(SQL_LONGVARNCHAR); } else if (jj_2_1205(2)) { - jj_consume_token(DEALLOCATE); + jj_consume_token(SQL_NUMERIC); } else if (jj_2_1206(2)) { - jj_consume_token(DECLARE); + jj_consume_token(SQL_SMALLINT); } else if (jj_2_1207(2)) { - jj_consume_token(DEREF); + jj_consume_token(SQL_TINYINT); } else if (jj_2_1208(2)) { - jj_consume_token(DISALLOW); + jj_consume_token(SQL_TSI_HOUR); } else if (jj_2_1209(2)) { - jj_consume_token(DYNAMIC); + jj_consume_token(SQL_TSI_MONTH); } else if (jj_2_1210(2)) { - jj_consume_token(EMPTY); + jj_consume_token(SQL_TSI_WEEK); } else if (jj_2_1211(2)) { - jj_consume_token(END_FRAME); + jj_consume_token(SQL_VARCHAR); } else if (jj_2_1212(2)) { - jj_consume_token(ESCAPE); + jj_consume_token(STRING_AGG); } else if (jj_2_1213(2)) { - jj_consume_token(EXECUTE); + jj_consume_token(SUBCLASS_ORIGIN); } else if (jj_2_1214(2)) { - jj_consume_token(EXTERNAL); + jj_consume_token(TEMPORARY); } else if (jj_2_1215(2)) { - jj_consume_token(FIRST_VALUE); + jj_consume_token(TIME_TRUNC); } else if (jj_2_1216(2)) { - jj_consume_token(FOREIGN); + jj_consume_token(TIMESTAMP_DIFF); } else if (jj_2_1217(2)) { - jj_consume_token(FUNCTION); + jj_consume_token(TRANSACTION); } else if (jj_2_1218(2)) { - jj_consume_token(GLOBAL); + jj_consume_token(TRANSACTIONS_ROLLED_BACK); } else if (jj_2_1219(2)) { - jj_consume_token(GROUPS); + jj_consume_token(TRIGGER_CATALOG); } else if (jj_2_1220(2)) { - jj_consume_token(IDENTITY); + jj_consume_token(TUMBLE); } else if (jj_2_1221(2)) { - jj_consume_token(INITIAL); + jj_consume_token(UNCOMMITTED); } else if (jj_2_1222(2)) { - jj_consume_token(INT); + jj_consume_token(UNPIVOT); } else if (jj_2_1223(2)) { - jj_consume_token(JSON_ARRAY); + jj_consume_token(USER_DEFINED_TYPE_CATALOG); } else if (jj_2_1224(2)) { - jj_consume_token(JSON_OBJECT); + jj_consume_token(USER_DEFINED_TYPE_SCHEMA); } else if (jj_2_1225(2)) { - jj_consume_token(JSON_VALUE); + jj_consume_token(UTF8); } else if (jj_2_1226(2)) { - jj_consume_token(LARGE); + jj_consume_token(WEEK); } else if (jj_2_1227(2)) { - jj_consume_token(LEAD); + jj_consume_token(WRAPPER); } else if (jj_2_1228(2)) { - jj_consume_token(LOCAL); + jj_consume_token(YEARS); } else if (jj_2_1229(2)) { - jj_consume_token(MATCHES); + jj_consume_token(BACKUPS); } else if (jj_2_1230(2)) { - jj_consume_token(MAX); + jj_consume_token(WRITE_SYNCHRONIZATION_MODE); } else if (jj_2_1231(2)) { - jj_consume_token(METHOD); + jj_consume_token(DATA_REGION); } else if (jj_2_1232(2)) { - jj_consume_token(MOD); + jj_consume_token(PARALLEL); } else if (jj_2_1233(2)) { - jj_consume_token(MONTH); + jj_consume_token(NOLOGGING); } else if (jj_2_1234(2)) { - jj_consume_token(NCHAR); + jj_consume_token(SCAN); } else if (jj_2_1235(2)) { - jj_consume_token(NEXT); + jj_consume_token(COMPUTE); } else if (jj_2_1236(2)) { - jj_consume_token(NORMALIZE); + jj_consume_token(STATISTICS); } else if (jj_2_1237(2)) { - jj_consume_token(NULLIF); + jj_consume_token(MAX_CHANGED_PARTITION_ROWS_PERCENT); } else if (jj_2_1238(2)) { - jj_consume_token(OCTET_LENGTH); + jj_consume_token(ALLOCATE); } else if (jj_2_1239(2)) { - jj_consume_token(OMIT); + jj_consume_token(ARRAY_MAX_CARDINALITY); } else if (jj_2_1240(2)) { - jj_consume_token(OPEN); + jj_consume_token(ATOMIC); } else if (jj_2_1241(2)) { - jj_consume_token(OVERLAPS); + jj_consume_token(BEGIN); } else if (jj_2_1242(2)) { - jj_consume_token(PATTERN); + jj_consume_token(BIGINT); } else if (jj_2_1243(2)) { - jj_consume_token(PERCENTILE_CONT); + jj_consume_token(BLOB); } else if (jj_2_1244(2)) { - jj_consume_token(PERIOD); + jj_consume_token(CALLED); } else if (jj_2_1245(2)) { - jj_consume_token(POSITION); + jj_consume_token(CEIL); } else if (jj_2_1246(2)) { - jj_consume_token(PRECEDES); + jj_consume_token(CHARACTER); } else if (jj_2_1247(2)) { - jj_consume_token(PREV); + jj_consume_token(CHECK); } else if (jj_2_1248(2)) { - jj_consume_token(RANGE); + jj_consume_token(CLOSE); } else if (jj_2_1249(2)) { - jj_consume_token(REAL); + jj_consume_token(COLLECT); } else if (jj_2_1250(2)) { - jj_consume_token(REFERENCES); + jj_consume_token(CONNECT); } else if (jj_2_1251(2)) { - jj_consume_token(REGR_AVGY); + jj_consume_token(CORR); } else if (jj_2_1252(2)) { - jj_consume_token(REGR_R2); + jj_consume_token(COVAR_POP); } else if (jj_2_1253(2)) { - jj_consume_token(REGR_SXY); + jj_consume_token(CUME_DIST); } else if (jj_2_1254(2)) { - jj_consume_token(RESET); + jj_consume_token(CURRENT_DEFAULT_TRANSFORM_GROUP); } else if (jj_2_1255(2)) { - jj_consume_token(RETURNS); + jj_consume_token(CURRENT_ROW); } else if (jj_2_1256(2)) { - jj_consume_token(ROLLUP); + jj_consume_token(CYCLE); } else if (jj_2_1257(2)) { - jj_consume_token(RUNNING); + jj_consume_token(DAY); } else if (jj_2_1258(2)) { - jj_consume_token(SCROLL); + jj_consume_token(DECIMAL); } else if (jj_2_1259(2)) { - jj_consume_token(SEEK); + jj_consume_token(DENSE_RANK); } else if (jj_2_1260(2)) { - jj_consume_token(SHOW); + jj_consume_token(DETERMINISTIC); } else if (jj_2_1261(2)) { - jj_consume_token(SMALLINT); + jj_consume_token(DOUBLE); } else if (jj_2_1262(2)) { - jj_consume_token(SQL); + jj_consume_token(ELEMENT); } else if (jj_2_1263(2)) { - jj_consume_token(SQLWARNING); + jj_consume_token(END_EXEC); } else if (jj_2_1264(2)) { - jj_consume_token(STATIC); + jj_consume_token(EQUALS); } else if (jj_2_1265(2)) { - jj_consume_token(STREAM); + jj_consume_token(EXEC); } else if (jj_2_1266(2)) { - jj_consume_token(SUBSTRING); + jj_consume_token(EXTEND); } else if (jj_2_1267(2)) { - jj_consume_token(SUM); + jj_consume_token(FILTER); } else if (jj_2_1268(2)) { - jj_consume_token(SYSTEM_USER); + jj_consume_token(FLOOR); } else if (jj_2_1269(2)) { - jj_consume_token(TIMESTAMP); + jj_consume_token(FREE); } else if (jj_2_1270(2)) { - jj_consume_token(TINYINT); + jj_consume_token(GET); } else if (jj_2_1271(2)) { - jj_consume_token(TRANSLATION); + jj_consume_token(GROUPING); } else if (jj_2_1272(2)) { - jj_consume_token(TRIM); + jj_consume_token(HOUR); } else if (jj_2_1273(2)) { - jj_consume_token(UESCAPE); + jj_consume_token(INDICATOR); } else if (jj_2_1274(2)) { - jj_consume_token(UNNEST); + jj_consume_token(INSENSITIVE); } else if (jj_2_1275(2)) { - jj_consume_token(VALUE); + jj_consume_token(INTERSECTION); } else if (jj_2_1276(2)) { - jj_consume_token(VARCHAR); + jj_consume_token(JSON_EXISTS); } else if (jj_2_1277(2)) { - jj_consume_token(VAR_SAMP); + jj_consume_token(JSON_QUERY); } else if (jj_2_1278(2)) { - jj_consume_token(WIDTH_BUCKET); + jj_consume_token(LAG); } else if (jj_2_1279(2)) { - jj_consume_token(WITHOUT); + jj_consume_token(LAST_VALUE); } else if (jj_2_1280(2)) { - jj_consume_token(TUESDAY); + jj_consume_token(LIKE_REGEX); } else if (jj_2_1281(2)) { - jj_consume_token(FRIDAY); - } else { - jj_consume_token(-1); - throw new ParseException(); - } - } - -/** @see #NonReservedKeyWord */ - final public void NonReservedKeyWord1of3() throws ParseException { - if (jj_2_1282(2)) { - jj_consume_token(ABSENT); + jj_consume_token(LOWER); + } else if (jj_2_1282(2)) { + jj_consume_token(MATCH_NUMBER); } else if (jj_2_1283(2)) { - jj_consume_token(ADA); + jj_consume_token(MEASURES); } else if (jj_2_1284(2)) { - jj_consume_token(AFTER); + jj_consume_token(MIN); } else if (jj_2_1285(2)) { - jj_consume_token(ARRAY_AGG); + jj_consume_token(MODIFIES); } else if (jj_2_1286(2)) { - jj_consume_token(ASSERTION); + jj_consume_token(MULTISET); } else if (jj_2_1287(2)) { - jj_consume_token(ATTRIBUTES); + jj_consume_token(NCLOB); } else if (jj_2_1288(2)) { - jj_consume_token(BREADTH); + jj_consume_token(NO); } else if (jj_2_1289(2)) { - jj_consume_token(CATALOG); + jj_consume_token(NTH_VALUE); } else if (jj_2_1290(2)) { - jj_consume_token(CHAIN); + jj_consume_token(NUMERIC); } else if (jj_2_1291(2)) { - jj_consume_token(CHARACTER_SET_CATALOG); + jj_consume_token(OF); } else if (jj_2_1292(2)) { - jj_consume_token(CLASS_ORIGIN); + jj_consume_token(ONE); } else if (jj_2_1293(2)) { - jj_consume_token(COLLATION_CATALOG); + jj_consume_token(ORDINAL); } else if (jj_2_1294(2)) { - jj_consume_token(COLUMN_NAME); + jj_consume_token(OVERLAPS); } else if (jj_2_1295(2)) { - jj_consume_token(COMMITTED); + jj_consume_token(PATTERN); } else if (jj_2_1296(2)) { - jj_consume_token(CONNECTION); + jj_consume_token(PERCENTILE_CONT); } else if (jj_2_1297(2)) { - jj_consume_token(CONSTRAINT_NAME); + jj_consume_token(PERIOD); } else if (jj_2_1298(2)) { - jj_consume_token(CONSTRUCTOR); + jj_consume_token(POSITION); } else if (jj_2_1299(2)) { - jj_consume_token(DATA); + jj_consume_token(PRECEDES); } else if (jj_2_1300(2)) { - jj_consume_token(DATE_TRUNC); + jj_consume_token(PREV); } else if (jj_2_1301(2)) { - jj_consume_token(DATETIME_INTERVAL_PRECISION); + jj_consume_token(RANGE); } else if (jj_2_1302(2)) { - jj_consume_token(DEFAULTS); + jj_consume_token(REAL); } else if (jj_2_1303(2)) { - jj_consume_token(DEFINED); + jj_consume_token(REFERENCES); } else if (jj_2_1304(2)) { - jj_consume_token(DEPTH); + jj_consume_token(REGR_AVGY); } else if (jj_2_1305(2)) { - jj_consume_token(DESCRIPTION); + jj_consume_token(REGR_R2); } else if (jj_2_1306(2)) { - jj_consume_token(DISPATCH); + jj_consume_token(REGR_SXY); } else if (jj_2_1307(2)) { - jj_consume_token(DOY); + jj_consume_token(RESET); } else if (jj_2_1308(2)) { - jj_consume_token(DYNAMIC_FUNCTION_CODE); + jj_consume_token(RETURNS); } else if (jj_2_1309(2)) { - jj_consume_token(ERROR); + jj_consume_token(ROLLUP); } else if (jj_2_1310(2)) { - jj_consume_token(EXCLUDING); + jj_consume_token(RUNNING); } else if (jj_2_1311(2)) { - jj_consume_token(FOLLOWING); + jj_consume_token(SAFE_ORDINAL); } else if (jj_2_1312(2)) { - jj_consume_token(FOUND); + jj_consume_token(SCROLL); } else if (jj_2_1313(2)) { - jj_consume_token(GENERAL); + jj_consume_token(SEEK); } else if (jj_2_1314(2)) { - jj_consume_token(GO); + jj_consume_token(SHOW); } else if (jj_2_1315(2)) { - jj_consume_token(GROUP_CONCAT); + jj_consume_token(SMALLINT); } else if (jj_2_1316(2)) { - jj_consume_token(HOURS); + jj_consume_token(SQL); } else if (jj_2_1317(2)) { - jj_consume_token(IMMEDIATE); + jj_consume_token(SQLWARNING); } else if (jj_2_1318(2)) { - jj_consume_token(INCLUDE); + jj_consume_token(STATIC); } else if (jj_2_1319(2)) { - jj_consume_token(INITIALLY); + jj_consume_token(STREAM); } else if (jj_2_1320(2)) { - jj_consume_token(INSTANTIABLE); + jj_consume_token(SUBSTRING); } else if (jj_2_1321(2)) { - jj_consume_token(ISOLATION); + jj_consume_token(SUM); } else if (jj_2_1322(2)) { - jj_consume_token(JSON); + jj_consume_token(SYSTEM_USER); } else if (jj_2_1323(2)) { - jj_consume_token(KEY_MEMBER); + jj_consume_token(TIMESTAMP); } else if (jj_2_1324(2)) { - jj_consume_token(LAST); + jj_consume_token(TINYINT); } else if (jj_2_1325(2)) { - jj_consume_token(LIBRARY); + jj_consume_token(TRANSLATION); } else if (jj_2_1326(2)) { - jj_consume_token(MAP); + jj_consume_token(TRIM); } else if (jj_2_1327(2)) { - jj_consume_token(MESSAGE_LENGTH); + jj_consume_token(TRY_CAST); } else if (jj_2_1328(2)) { - jj_consume_token(MICROSECOND); + jj_consume_token(UNKNOWN); } else if (jj_2_1329(2)) { - jj_consume_token(MINUTES); + jj_consume_token(UPSERT); } else if (jj_2_1330(2)) { - jj_consume_token(MORE_); + jj_consume_token(VARBINARY); } else if (jj_2_1331(2)) { - jj_consume_token(NAMES); + jj_consume_token(VAR_POP); } else if (jj_2_1332(2)) { - jj_consume_token(NORMALIZED); + jj_consume_token(WHENEVER); } else if (jj_2_1333(2)) { - jj_consume_token(NUMBER); + jj_consume_token(WITHIN); } else if (jj_2_1334(2)) { - jj_consume_token(OPTION); + jj_consume_token(MONDAY); } else if (jj_2_1335(2)) { - jj_consume_token(ORDINALITY); + jj_consume_token(THURSDAY); } else if (jj_2_1336(2)) { - jj_consume_token(OVERRIDING); - } else if (jj_2_1337(2)) { - jj_consume_token(PARAMETER_NAME); + jj_consume_token(SUNDAY); + } else { + jj_consume_token(-1); + throw new ParseException(); + } + } + +/** @see #NonReservedKeyWord */ + final public void NonReservedKeyWord1of3() throws ParseException { + if (jj_2_1337(2)) { + jj_consume_token(ABSENT); } else if (jj_2_1338(2)) { - jj_consume_token(PARAMETER_SPECIFIC_NAME); + jj_consume_token(ADA); } else if (jj_2_1339(2)) { - jj_consume_token(PASCAL); + jj_consume_token(AFTER); } else if (jj_2_1340(2)) { - jj_consume_token(PAST); + jj_consume_token(ARRAY_AGG); } else if (jj_2_1341(2)) { - jj_consume_token(PLACING); + jj_consume_token(ASSERTION); } else if (jj_2_1342(2)) { - jj_consume_token(PRECEDING); + jj_consume_token(ATTRIBUTES); } else if (jj_2_1343(2)) { - jj_consume_token(PRIVILEGES); + jj_consume_token(BREADTH); } else if (jj_2_1344(2)) { - jj_consume_token(QUARTERS); + jj_consume_token(CATALOG); } else if (jj_2_1345(2)) { - jj_consume_token(REPEATABLE); + jj_consume_token(CHAIN); } else if (jj_2_1346(2)) { - jj_consume_token(RESTART); + jj_consume_token(CHARACTER_SET_CATALOG); } else if (jj_2_1347(2)) { - jj_consume_token(RETURNED_LENGTH); + jj_consume_token(CLASS_ORIGIN); } else if (jj_2_1348(2)) { - jj_consume_token(RETURNING); + jj_consume_token(COLLATION_CATALOG); } else if (jj_2_1349(2)) { - jj_consume_token(ROUTINE); + jj_consume_token(COLUMN_NAME); } else if (jj_2_1350(2)) { - jj_consume_token(ROUTINE_SCHEMA); + jj_consume_token(COMMITTED); } else if (jj_2_1351(2)) { - jj_consume_token(SCALE); + jj_consume_token(CONNECTION); } else if (jj_2_1352(2)) { - jj_consume_token(SCOPE_CATALOGS); + jj_consume_token(CONSTRAINT_NAME); } else if (jj_2_1353(2)) { - jj_consume_token(SECONDS); + jj_consume_token(CONSTRUCTOR); } else if (jj_2_1354(2)) { - jj_consume_token(SELF); + jj_consume_token(CURSOR_NAME); } else if (jj_2_1355(2)) { - jj_consume_token(SERIALIZABLE); + jj_consume_token(DATE_DIFF); } else if (jj_2_1356(2)) { - jj_consume_token(SESSION); + jj_consume_token(DATETIME_INTERVAL_CODE); } else if (jj_2_1357(2)) { - jj_consume_token(SIZE); + jj_consume_token(DAYOFWEEK); } else if (jj_2_1358(2)) { - jj_consume_token(SPECIFIC_NAME); + jj_consume_token(DECADE); } else if (jj_2_1359(2)) { - jj_consume_token(SQL_BIT); + jj_consume_token(DEFERRED); } else if (jj_2_1360(2)) { - jj_consume_token(SQL_CHAR); + jj_consume_token(DEGREE); } else if (jj_2_1361(2)) { - jj_consume_token(SQL_DECIMAL); + jj_consume_token(DESC); } else if (jj_2_1362(2)) { - jj_consume_token(SQL_INTEGER); + jj_consume_token(DIAGNOSTICS); } else if (jj_2_1363(2)) { - jj_consume_token(SQL_INTERVAL_DAY_TO_MINUTE); + jj_consume_token(DOW); } else if (jj_2_1364(2)) { - jj_consume_token(SQL_INTERVAL_HOUR_TO_MINUTE); + jj_consume_token(DYNAMIC_FUNCTION); } else if (jj_2_1365(2)) { - jj_consume_token(SQL_INTERVAL_MINUTE_TO_SECOND); + jj_consume_token(EPOCH); } else if (jj_2_1366(2)) { - jj_consume_token(SQL_INTERVAL_YEAR); + jj_consume_token(EXCLUDE); } else if (jj_2_1367(2)) { - jj_consume_token(SQL_LONGVARCHAR); + jj_consume_token(FIRST); } else if (jj_2_1368(2)) { - jj_consume_token(SQL_NCLOB); + jj_consume_token(FORTRAN); } else if (jj_2_1369(2)) { - jj_consume_token(SQL_REAL); + jj_consume_token(G); } else if (jj_2_1370(2)) { - jj_consume_token(SQL_TIMESTAMP); + jj_consume_token(GEOMETRY); } else if (jj_2_1371(2)) { - jj_consume_token(SQL_TSI_FRAC_SECOND); + jj_consume_token(GRANTED); } else if (jj_2_1372(2)) { - jj_consume_token(SQL_TSI_MINUTE); + jj_consume_token(HOP); } else if (jj_2_1373(2)) { - jj_consume_token(SQL_TSI_SECOND); + jj_consume_token(ILIKE); } else if (jj_2_1374(2)) { - jj_consume_token(SQL_VARBINARY); + jj_consume_token(IMPLEMENTATION); } else if (jj_2_1375(2)) { - jj_consume_token(STATEMENT); + jj_consume_token(INCREMENT); } else if (jj_2_1376(2)) { - jj_consume_token(STYLE); + jj_consume_token(INSTANCE); } else if (jj_2_1377(2)) { - jj_consume_token(TABLE_NAME); + jj_consume_token(ISODOW); } else if (jj_2_1378(2)) { - jj_consume_token(TIME_DIFF); + jj_consume_token(JAVA); } else if (jj_2_1379(2)) { - jj_consume_token(TIMESTAMPDIFF); + jj_consume_token(KEY); } else if (jj_2_1380(2)) { - jj_consume_token(TOP_LEVEL_COUNT); + jj_consume_token(LABEL); } else if (jj_2_1381(2)) { - jj_consume_token(TRANSACTIONS_COMMITTED); + jj_consume_token(LEVEL); } else if (jj_2_1382(2)) { - jj_consume_token(TRANSFORMS); + jj_consume_token(M); } else if (jj_2_1383(2)) { - jj_consume_token(TRIGGER_SCHEMA); + jj_consume_token(MAXVALUE); } else if (jj_2_1384(2)) { - jj_consume_token(UNBOUNDED); + jj_consume_token(MESSAGE_TEXT); } else if (jj_2_1385(2)) { - jj_consume_token(UNDER); + jj_consume_token(MILLISECOND); } else if (jj_2_1386(2)) { - jj_consume_token(USAGE); + jj_consume_token(MONTHS); } else if (jj_2_1387(2)) { - jj_consume_token(USER_DEFINED_TYPE_NAME); + jj_consume_token(NAME); } else if (jj_2_1388(2)) { - jj_consume_token(UTF32); + jj_consume_token(NESTING); } else if (jj_2_1389(2)) { - jj_consume_token(VIEW); + jj_consume_token(NULLS); } else if (jj_2_1390(2)) { - jj_consume_token(WORK); + jj_consume_token(OCTETS); } else if (jj_2_1391(2)) { - jj_consume_token(XML); + jj_consume_token(ORDERING); } else if (jj_2_1392(2)) { - jj_consume_token(TEMPLATE); + jj_consume_token(OUTPUT); } else if (jj_2_1393(2)) { - jj_consume_token(ATOMICITY); + jj_consume_token(PARAMETER_MODE); } else if (jj_2_1394(2)) { - jj_consume_token(CACHE_NAME); + jj_consume_token(PARAMETER_SPECIFIC_CATALOG); } else if (jj_2_1395(2)) { - jj_consume_token(ENCRYPTED); + jj_consume_token(PARTIAL); } else if (jj_2_1396(2)) { - jj_consume_token(LOGGING); + jj_consume_token(PASSTHROUGH); } else if (jj_2_1397(2)) { - jj_consume_token(KILL); + jj_consume_token(PIVOT); } else if (jj_2_1398(2)) { - jj_consume_token(SERVICE); + jj_consume_token(PLI); } else if (jj_2_1399(2)) { - jj_consume_token(QUERY); + jj_consume_token(PRIOR); } else if (jj_2_1400(2)) { - jj_consume_token(ANALYZE); + jj_consume_token(QUARTER); } else if (jj_2_1401(2)) { - jj_consume_token(ABS); + jj_consume_token(RELATIVE); } else if (jj_2_1402(2)) { - jj_consume_token(ARE); + jj_consume_token(RESPECT); } else if (jj_2_1403(2)) { - jj_consume_token(AT); + jj_consume_token(RETURNED_CARDINALITY); } else if (jj_2_1404(2)) { - jj_consume_token(AVG); + jj_consume_token(RETURNED_SQLSTATE); } else if (jj_2_1405(2)) { - jj_consume_token(BEGIN_PARTITION); + jj_consume_token(ROLE); } else if (jj_2_1406(2)) { - jj_consume_token(BIT); + jj_consume_token(ROUTINE_NAME); } else if (jj_2_1407(2)) { - jj_consume_token(CALL); + jj_consume_token(SCALAR); } else if (jj_2_1408(2)) { - jj_consume_token(CASCADED); + jj_consume_token(SCHEMA_NAME); } else if (jj_2_1409(2)) { - jj_consume_token(CHAR); + jj_consume_token(SCOPE_SCHEMA); } else if (jj_2_1410(2)) { - jj_consume_token(CHAR_LENGTH); + jj_consume_token(SECURITY); } else if (jj_2_1411(2)) { - jj_consume_token(CLOB); + jj_consume_token(SEQUENCE); } else if (jj_2_1412(2)) { - jj_consume_token(COLLATE); + jj_consume_token(SERVER_NAME); } else if (jj_2_1413(2)) { - jj_consume_token(CONDITION); + jj_consume_token(SIMPLE); } else if (jj_2_1414(2)) { - jj_consume_token(CONVERT); + jj_consume_token(SPACE); } else if (jj_2_1415(2)) { - jj_consume_token(COUNT); + jj_consume_token(SQL_BINARY); } else if (jj_2_1416(2)) { - jj_consume_token(CUBE); + jj_consume_token(SQL_BOOLEAN); } else if (jj_2_1417(2)) { - jj_consume_token(CURRENT_CATALOG); + jj_consume_token(SQL_DATE); } else if (jj_2_1418(2)) { - jj_consume_token(CURRENT_ROLE); + jj_consume_token(SQL_FLOAT); } else if (jj_2_1419(2)) { - jj_consume_token(CURSOR); + jj_consume_token(SQL_INTERVAL_DAY_TO_HOUR); } else if (jj_2_1420(2)) { - jj_consume_token(DATETIME); + jj_consume_token(SQL_INTERVAL_HOUR); } else if (jj_2_1421(2)) { - jj_consume_token(DEC); + jj_consume_token(SQL_INTERVAL_MINUTE); } else if (jj_2_1422(2)) { - jj_consume_token(DEFINE); + jj_consume_token(SQL_INTERVAL_SECOND); } else if (jj_2_1423(2)) { - jj_consume_token(DESCRIBE); + jj_consume_token(SQL_LONGVARBINARY); } else if (jj_2_1424(2)) { - jj_consume_token(DISCONNECT); + jj_consume_token(SQL_NCHAR); } else if (jj_2_1425(2)) { - jj_consume_token(EACH); + jj_consume_token(SQL_NVARCHAR); } else if (jj_2_1426(2)) { - jj_consume_token(END); + jj_consume_token(SQL_TIME); } else if (jj_2_1427(2)) { - jj_consume_token(END_PARTITION); + jj_consume_token(SQL_TSI_DAY); } else if (jj_2_1428(2)) { - jj_consume_token(EVERY); + jj_consume_token(SQL_TSI_MICROSECOND); } else if (jj_2_1429(2)) { - jj_consume_token(EXP); + jj_consume_token(SQL_TSI_QUARTER); } else if (jj_2_1430(2)) { - jj_consume_token(EXTRACT); + jj_consume_token(SQL_TSI_YEAR); } else if (jj_2_1431(2)) { - jj_consume_token(FLOAT); + jj_consume_token(STATE); } else if (jj_2_1432(2)) { - jj_consume_token(FRAME_ROW); + jj_consume_token(STRUCTURE); } else if (jj_2_1433(2)) { - jj_consume_token(FUSION); + jj_consume_token(SUBSTITUTE); } else if (jj_2_1434(2)) { - jj_consume_token(GRANT); + jj_consume_token(TIES); } else if (jj_2_1435(2)) { - jj_consume_token(HOLD); + jj_consume_token(TIMESTAMPADD); } else if (jj_2_1436(2)) { - jj_consume_token(IMPORT); + jj_consume_token(TIMESTAMP_TRUNC); } else if (jj_2_1437(2)) { - jj_consume_token(INOUT); + jj_consume_token(TRANSACTIONS_ACTIVE); } else if (jj_2_1438(2)) { - jj_consume_token(INTEGER); + jj_consume_token(TRANSFORM); } else if (jj_2_1439(2)) { - jj_consume_token(JSON_ARRAYAGG); + jj_consume_token(TRIGGER_NAME); } else if (jj_2_1440(2)) { - jj_consume_token(JSON_OBJECTAGG); + jj_consume_token(TYPE); } else if (jj_2_1441(2)) { - jj_consume_token(LAG); + jj_consume_token(UNCONDITIONAL); } else if (jj_2_1442(2)) { - jj_consume_token(LAST_VALUE); + jj_consume_token(UNNAMED); } else if (jj_2_1443(2)) { - jj_consume_token(LIKE_REGEX); + jj_consume_token(USER_DEFINED_TYPE_CODE); } else if (jj_2_1444(2)) { - jj_consume_token(LOWER); + jj_consume_token(UTF16); } else if (jj_2_1445(2)) { - jj_consume_token(MATCH_NUMBER); + jj_consume_token(VERSION); } else if (jj_2_1446(2)) { - jj_consume_token(MEASURES); + jj_consume_token(WEEKS); } else if (jj_2_1447(2)) { - jj_consume_token(MIN); + jj_consume_token(WRITE); } else if (jj_2_1448(2)) { - jj_consume_token(MODIFIES); + jj_consume_token(ZONE); } else if (jj_2_1449(2)) { - jj_consume_token(MULTISET); + jj_consume_token(AFFINITY_KEY); } else if (jj_2_1450(2)) { - jj_consume_token(NCLOB); + jj_consume_token(CACHE_GROUP); } else if (jj_2_1451(2)) { - jj_consume_token(NO); + jj_consume_token(VALUE_TYPE); } else if (jj_2_1452(2)) { - jj_consume_token(NTH_VALUE); + jj_consume_token(INLINE_SIZE); } else if (jj_2_1453(2)) { - jj_consume_token(NUMERIC); + jj_consume_token(PASSWORD); } else if (jj_2_1454(2)) { - jj_consume_token(OF); + jj_consume_token(CONTINUOUS); } else if (jj_2_1455(2)) { - jj_consume_token(ONE); + jj_consume_token(ASYNC); } else if (jj_2_1456(2)) { - jj_consume_token(OUT); + jj_consume_token(REFRESH); } else if (jj_2_1457(2)) { - jj_consume_token(OVERLAY); + jj_consume_token(TOTAL); } else if (jj_2_1458(2)) { - jj_consume_token(PER); + jj_consume_token(ALLOW); } else if (jj_2_1459(2)) { - jj_consume_token(PERCENTILE_DISC); + jj_consume_token(ASENSITIVE); } else if (jj_2_1460(2)) { - jj_consume_token(PERMUTE); + jj_consume_token(AUTHORIZATION); } else if (jj_2_1461(2)) { - jj_consume_token(POSITION_REGEX); + jj_consume_token(BEGIN_FRAME); } else if (jj_2_1462(2)) { - jj_consume_token(PRECISION); + jj_consume_token(BINARY); } else if (jj_2_1463(2)) { - jj_consume_token(PROCEDURE); + jj_consume_token(BOOLEAN); } else if (jj_2_1464(2)) { - jj_consume_token(RANK); + jj_consume_token(CARDINALITY); } else if (jj_2_1465(2)) { - jj_consume_token(RECURSIVE); + jj_consume_token(CEILING); } else if (jj_2_1466(2)) { - jj_consume_token(REFERENCING); + jj_consume_token(CHARACTER_LENGTH); } else if (jj_2_1467(2)) { - jj_consume_token(REGR_COUNT); + jj_consume_token(CLASSIFIER); } else if (jj_2_1468(2)) { - jj_consume_token(REGR_SLOPE); + jj_consume_token(COALESCE); } else if (jj_2_1469(2)) { - jj_consume_token(REGR_SYY); + jj_consume_token(COMMIT); } else if (jj_2_1470(2)) { - jj_consume_token(RESULT); + jj_consume_token(CONTAINS); } else if (jj_2_1471(2)) { - jj_consume_token(REVOKE); + jj_consume_token(CORRESPONDING); } else if (jj_2_1472(2)) { - jj_consume_token(ROWS); + jj_consume_token(COVAR_SAMP); } else if (jj_2_1473(2)) { - jj_consume_token(SAVEPOINT); + jj_consume_token(CURRENT); } else if (jj_2_1474(2)) { - jj_consume_token(SEARCH); + jj_consume_token(CURRENT_PATH); } else if (jj_2_1475(2)) { - jj_consume_token(SENSITIVE); + jj_consume_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE); } else if (jj_2_1476(2)) { - jj_consume_token(SIMILAR); + jj_consume_token(DATE); } else if (jj_2_1477(2)) { - jj_consume_token(SPECIFIC); + jj_consume_token(DEALLOCATE); } else if (jj_2_1478(2)) { - jj_consume_token(SQLEXCEPTION); + jj_consume_token(DECLARE); } else if (jj_2_1479(2)) { - jj_consume_token(SQRT); + jj_consume_token(DEREF); } else if (jj_2_1480(2)) { - jj_consume_token(STDDEV_POP); + jj_consume_token(DISALLOW); } else if (jj_2_1481(2)) { - jj_consume_token(SUBMULTISET); + jj_consume_token(DYNAMIC); } else if (jj_2_1482(2)) { - jj_consume_token(SUBSTRING_REGEX); + jj_consume_token(EMPTY); } else if (jj_2_1483(2)) { - jj_consume_token(SYSTEM); + jj_consume_token(END_FRAME); } else if (jj_2_1484(2)) { - jj_consume_token(TABLESAMPLE); + jj_consume_token(ESCAPE); } else if (jj_2_1485(2)) { - jj_consume_token(TIMEZONE_HOUR); + jj_consume_token(EXECUTE); } else if (jj_2_1486(2)) { - jj_consume_token(TRANSLATE); + jj_consume_token(EXTERNAL); } else if (jj_2_1487(2)) { - jj_consume_token(TREAT); + jj_consume_token(FIRST_VALUE); } else if (jj_2_1488(2)) { - jj_consume_token(TRIM_ARRAY); + jj_consume_token(FOREIGN); } else if (jj_2_1489(2)) { - jj_consume_token(UNIQUE); + jj_consume_token(FUNCTION); } else if (jj_2_1490(2)) { - jj_consume_token(UPPER); + jj_consume_token(GLOBAL); } else if (jj_2_1491(2)) { - jj_consume_token(VALUE_OF); + jj_consume_token(GROUPS); } else if (jj_2_1492(2)) { - jj_consume_token(VARYING); + jj_consume_token(IDENTITY); } else if (jj_2_1493(2)) { - jj_consume_token(VERSIONING); + jj_consume_token(INITIAL); } else if (jj_2_1494(2)) { - jj_consume_token(WINDOW); + jj_consume_token(INT); } else if (jj_2_1495(2)) { - jj_consume_token(YEAR); + jj_consume_token(JSON_ARRAY); } else if (jj_2_1496(2)) { - jj_consume_token(WEDNESDAY); + jj_consume_token(JSON_OBJECT); } else if (jj_2_1497(2)) { - jj_consume_token(SATURDAY); - } else { - jj_consume_token(-1); - throw new ParseException(); - } - } - -/** @see #NonReservedKeyWord */ - final public void NonReservedKeyWord2of3() throws ParseException { - if (jj_2_1498(2)) { - jj_consume_token(ABSOLUTE); + jj_consume_token(JSON_SCOPE); + } else if (jj_2_1498(2)) { + jj_consume_token(LANGUAGE); } else if (jj_2_1499(2)) { - jj_consume_token(ADD); + jj_consume_token(LATERAL); } else if (jj_2_1500(2)) { - jj_consume_token(ALWAYS); + jj_consume_token(LN); } else if (jj_2_1501(2)) { - jj_consume_token(ARRAY_CONCAT_AGG); + jj_consume_token(MATCH); } else if (jj_2_1502(2)) { - jj_consume_token(ASSIGNMENT); + jj_consume_token(MATCH_RECOGNIZE); } else if (jj_2_1503(2)) { - jj_consume_token(BEFORE); + jj_consume_token(MEMBER); } else if (jj_2_1504(2)) { - jj_consume_token(C); + jj_consume_token(MINUTE); } else if (jj_2_1505(2)) { - jj_consume_token(CATALOG_NAME); + jj_consume_token(MODULE); } else if (jj_2_1506(2)) { - jj_consume_token(CHARACTERISTICS); + jj_consume_token(NATIONAL); } else if (jj_2_1507(2)) { - jj_consume_token(CHARACTER_SET_NAME); + jj_consume_token(NEW); } else if (jj_2_1508(2)) { - jj_consume_token(COBOL); + jj_consume_token(NONE); } else if (jj_2_1509(2)) { - jj_consume_token(COLLATION_NAME); + jj_consume_token(NTILE); } else if (jj_2_1510(2)) { - jj_consume_token(COMMAND_FUNCTION); + jj_consume_token(OCCURRENCES_REGEX); } else if (jj_2_1511(2)) { - jj_consume_token(CONDITIONAL); + jj_consume_token(OLD); } else if (jj_2_1512(2)) { - jj_consume_token(CONNECTION_NAME); + jj_consume_token(ONLY); } else if (jj_2_1513(2)) { - jj_consume_token(CONSTRAINTS); + jj_consume_token(OUT); } else if (jj_2_1514(2)) { - jj_consume_token(CONTINUE); + jj_consume_token(OVERLAY); } else if (jj_2_1515(2)) { - jj_consume_token(DATABASE); + jj_consume_token(PER); } else if (jj_2_1516(2)) { - jj_consume_token(DATETIME_DIFF); + jj_consume_token(PERCENTILE_DISC); } else if (jj_2_1517(2)) { - jj_consume_token(DAYS); + jj_consume_token(PERMUTE); } else if (jj_2_1518(2)) { - jj_consume_token(DEFERRABLE); + jj_consume_token(POSITION_REGEX); } else if (jj_2_1519(2)) { - jj_consume_token(DEFINER); + jj_consume_token(PRECISION); } else if (jj_2_1520(2)) { - jj_consume_token(DERIVED); + jj_consume_token(PROCEDURE); } else if (jj_2_1521(2)) { - jj_consume_token(DESCRIPTOR); + jj_consume_token(RANK); } else if (jj_2_1522(2)) { - jj_consume_token(DOMAIN); + jj_consume_token(RECURSIVE); } else if (jj_2_1523(2)) { - jj_consume_token(DOT_FORMAT); + jj_consume_token(REFERENCING); } else if (jj_2_1524(2)) { - jj_consume_token(ENCODING); + jj_consume_token(REGR_COUNT); } else if (jj_2_1525(2)) { - jj_consume_token(EXCEPTION); + jj_consume_token(REGR_SLOPE); } else if (jj_2_1526(2)) { - jj_consume_token(FINAL); + jj_consume_token(REGR_SYY); } else if (jj_2_1527(2)) { - jj_consume_token(FORMAT); + jj_consume_token(RESULT); } else if (jj_2_1528(2)) { - jj_consume_token(FRAC_SECOND); + jj_consume_token(REVOKE); } else if (jj_2_1529(2)) { - jj_consume_token(GENERATED); + jj_consume_token(ROWS); } else if (jj_2_1530(2)) { - jj_consume_token(GOTO); + jj_consume_token(SAFE_CAST); } else if (jj_2_1531(2)) { - jj_consume_token(HIERARCHY); + jj_consume_token(SAVEPOINT); } else if (jj_2_1532(2)) { - jj_consume_token(IGNORE); + jj_consume_token(SEARCH); } else if (jj_2_1533(2)) { - jj_consume_token(IMMEDIATELY); + jj_consume_token(SENSITIVE); } else if (jj_2_1534(2)) { - jj_consume_token(INCLUDING); + jj_consume_token(SIMILAR); } else if (jj_2_1535(2)) { - jj_consume_token(INPUT); + jj_consume_token(SPECIFIC); } else if (jj_2_1536(2)) { - jj_consume_token(INVOKER); + jj_consume_token(SQLEXCEPTION); } else if (jj_2_1537(2)) { - jj_consume_token(ISOYEAR); + jj_consume_token(SQRT); } else if (jj_2_1538(2)) { - jj_consume_token(K); + jj_consume_token(STDDEV_POP); } else if (jj_2_1539(2)) { - jj_consume_token(KEY_TYPE); + jj_consume_token(SUBMULTISET); } else if (jj_2_1540(2)) { - jj_consume_token(LENGTH); + jj_consume_token(SUBSTRING_REGEX); } else if (jj_2_1541(2)) { - jj_consume_token(LOCATOR); + jj_consume_token(SYSTEM); } else if (jj_2_1542(2)) { - jj_consume_token(MATCHED); + jj_consume_token(TABLESAMPLE); } else if (jj_2_1543(2)) { - jj_consume_token(MESSAGE_OCTET_LENGTH); + jj_consume_token(TIMEZONE_HOUR); } else if (jj_2_1544(2)) { - jj_consume_token(MILLENNIUM); + jj_consume_token(TRANSLATE); } else if (jj_2_1545(2)) { - jj_consume_token(MINVALUE); + jj_consume_token(TREAT); } else if (jj_2_1546(2)) { - jj_consume_token(MUMPS); + jj_consume_token(TRIM_ARRAY); } else if (jj_2_1547(2)) { - jj_consume_token(NANOSECOND); + jj_consume_token(UESCAPE); } else if (jj_2_1548(2)) { - jj_consume_token(NULLABLE); + jj_consume_token(UNNEST); } else if (jj_2_1549(2)) { - jj_consume_token(OBJECT); + jj_consume_token(VALUE); } else if (jj_2_1550(2)) { - jj_consume_token(OPTIONS); + jj_consume_token(VARCHAR); } else if (jj_2_1551(2)) { - jj_consume_token(OTHERS); + jj_consume_token(VAR_SAMP); } else if (jj_2_1552(2)) { - jj_consume_token(PAD); + jj_consume_token(WIDTH_BUCKET); } else if (jj_2_1553(2)) { - jj_consume_token(PARAMETER_ORDINAL_POSITION); + jj_consume_token(WITHOUT); } else if (jj_2_1554(2)) { - jj_consume_token(PARAMETER_SPECIFIC_SCHEMA); + jj_consume_token(TUESDAY); } else if (jj_2_1555(2)) { - jj_consume_token(PASSING); - } else if (jj_2_1556(2)) { - jj_consume_token(PATH); + jj_consume_token(FRIDAY); + } else { + jj_consume_token(-1); + throw new ParseException(); + } + } + +/** @see #NonReservedKeyWord */ + final public void NonReservedKeyWord2of3() throws ParseException { + if (jj_2_1556(2)) { + jj_consume_token(ABSOLUTE); } else if (jj_2_1557(2)) { - jj_consume_token(PLAN); + jj_consume_token(ADD); } else if (jj_2_1558(2)) { - jj_consume_token(PRESERVE); + jj_consume_token(ALWAYS); } else if (jj_2_1559(2)) { - jj_consume_token(PUBLIC); + jj_consume_token(ARRAY_CONCAT_AGG); } else if (jj_2_1560(2)) { - jj_consume_token(READ); + jj_consume_token(ASSIGNMENT); } else if (jj_2_1561(2)) { - jj_consume_token(REPLACE); + jj_consume_token(BEFORE); } else if (jj_2_1562(2)) { - jj_consume_token(RESTRICT); + jj_consume_token(C); } else if (jj_2_1563(2)) { - jj_consume_token(RETURNED_OCTET_LENGTH); + jj_consume_token(CATALOG_NAME); } else if (jj_2_1564(2)) { - jj_consume_token(RLIKE); + jj_consume_token(CHARACTERISTICS); } else if (jj_2_1565(2)) { - jj_consume_token(ROUTINE_CATALOG); + jj_consume_token(CHARACTER_SET_NAME); } else if (jj_2_1566(2)) { - jj_consume_token(ROW_COUNT); + jj_consume_token(COBOL); } else if (jj_2_1567(2)) { - jj_consume_token(SCHEMA); + jj_consume_token(COLLATION_NAME); } else if (jj_2_1568(2)) { - jj_consume_token(SCOPE_NAME); + jj_consume_token(COMMAND_FUNCTION); } else if (jj_2_1569(2)) { - jj_consume_token(SECTION); + jj_consume_token(CONDITIONAL); } else if (jj_2_1570(2)) { - jj_consume_token(SEPARATOR); + jj_consume_token(CONNECTION_NAME); } else if (jj_2_1571(2)) { - jj_consume_token(SERVER); + jj_consume_token(CONSTRAINTS); } else if (jj_2_1572(2)) { - jj_consume_token(SETS); + jj_consume_token(CONTAINS_SUBSTR); } else if (jj_2_1573(2)) { - jj_consume_token(SOURCE); + jj_consume_token(DATA); } else if (jj_2_1574(2)) { - jj_consume_token(SQL_BIGINT); + jj_consume_token(DATE_TRUNC); } else if (jj_2_1575(2)) { - jj_consume_token(SQL_BLOB); + jj_consume_token(DATETIME_INTERVAL_PRECISION); } else if (jj_2_1576(2)) { - jj_consume_token(SQL_CLOB); + jj_consume_token(DAYOFYEAR); } else if (jj_2_1577(2)) { - jj_consume_token(SQL_DOUBLE); + jj_consume_token(DEFAULTS); } else if (jj_2_1578(2)) { - jj_consume_token(SQL_INTERVAL_DAY); + jj_consume_token(DEFINED); } else if (jj_2_1579(2)) { - jj_consume_token(SQL_INTERVAL_DAY_TO_SECOND); + jj_consume_token(DEPTH); } else if (jj_2_1580(2)) { - jj_consume_token(SQL_INTERVAL_HOUR_TO_SECOND); + jj_consume_token(DESCRIPTION); } else if (jj_2_1581(2)) { - jj_consume_token(SQL_INTERVAL_MONTH); + jj_consume_token(DISPATCH); } else if (jj_2_1582(2)) { - jj_consume_token(SQL_INTERVAL_YEAR_TO_MONTH); + jj_consume_token(DOY); } else if (jj_2_1583(2)) { - jj_consume_token(SQL_LONGVARNCHAR); + jj_consume_token(DYNAMIC_FUNCTION_CODE); } else if (jj_2_1584(2)) { - jj_consume_token(SQL_NUMERIC); + jj_consume_token(ERROR); } else if (jj_2_1585(2)) { - jj_consume_token(SQL_SMALLINT); + jj_consume_token(EXCLUDING); } else if (jj_2_1586(2)) { - jj_consume_token(SQL_TINYINT); + jj_consume_token(FOLLOWING); } else if (jj_2_1587(2)) { - jj_consume_token(SQL_TSI_HOUR); + jj_consume_token(FOUND); } else if (jj_2_1588(2)) { - jj_consume_token(SQL_TSI_MONTH); + jj_consume_token(GENERAL); } else if (jj_2_1589(2)) { - jj_consume_token(SQL_TSI_WEEK); + jj_consume_token(GO); } else if (jj_2_1590(2)) { - jj_consume_token(SQL_VARCHAR); + jj_consume_token(GROUP_CONCAT); } else if (jj_2_1591(2)) { - jj_consume_token(STRING_AGG); + jj_consume_token(HOURS); } else if (jj_2_1592(2)) { - jj_consume_token(SUBCLASS_ORIGIN); + jj_consume_token(IMMEDIATE); } else if (jj_2_1593(2)) { - jj_consume_token(TEMPORARY); + jj_consume_token(INCLUDE); } else if (jj_2_1594(2)) { - jj_consume_token(TIME_TRUNC); + jj_consume_token(INITIALLY); } else if (jj_2_1595(2)) { - jj_consume_token(TIMESTAMP_DIFF); + jj_consume_token(INSTANTIABLE); } else if (jj_2_1596(2)) { - jj_consume_token(TRANSACTION); + jj_consume_token(ISOLATION); } else if (jj_2_1597(2)) { - jj_consume_token(TRANSACTIONS_ROLLED_BACK); + jj_consume_token(JSON); } else if (jj_2_1598(2)) { - jj_consume_token(TRIGGER_CATALOG); + jj_consume_token(KEY_MEMBER); } else if (jj_2_1599(2)) { - jj_consume_token(TUMBLE); + jj_consume_token(LAST); } else if (jj_2_1600(2)) { - jj_consume_token(UNCOMMITTED); + jj_consume_token(LIBRARY); } else if (jj_2_1601(2)) { - jj_consume_token(UNPIVOT); + jj_consume_token(MAP); } else if (jj_2_1602(2)) { - jj_consume_token(USER_DEFINED_TYPE_CATALOG); + jj_consume_token(MESSAGE_LENGTH); } else if (jj_2_1603(2)) { - jj_consume_token(USER_DEFINED_TYPE_SCHEMA); + jj_consume_token(MICROSECOND); } else if (jj_2_1604(2)) { - jj_consume_token(UTF8); + jj_consume_token(MINUTES); } else if (jj_2_1605(2)) { - jj_consume_token(WEEK); + jj_consume_token(MORE_); } else if (jj_2_1606(2)) { - jj_consume_token(WRAPPER); + jj_consume_token(NAMES); } else if (jj_2_1607(2)) { - jj_consume_token(YEARS); + jj_consume_token(NORMALIZED); } else if (jj_2_1608(2)) { - jj_consume_token(BACKUPS); + jj_consume_token(NUMBER); } else if (jj_2_1609(2)) { - jj_consume_token(WRITE_SYNCHRONIZATION_MODE); + jj_consume_token(OPTION); } else if (jj_2_1610(2)) { - jj_consume_token(DATA_REGION); + jj_consume_token(ORDINALITY); } else if (jj_2_1611(2)) { - jj_consume_token(PARALLEL); + jj_consume_token(OVERRIDING); } else if (jj_2_1612(2)) { - jj_consume_token(NOLOGGING); + jj_consume_token(PARAMETER_NAME); } else if (jj_2_1613(2)) { - jj_consume_token(SCAN); + jj_consume_token(PARAMETER_SPECIFIC_NAME); } else if (jj_2_1614(2)) { - jj_consume_token(COMPUTE); + jj_consume_token(PASCAL); } else if (jj_2_1615(2)) { - jj_consume_token(STATISTICS); + jj_consume_token(PAST); } else if (jj_2_1616(2)) { - jj_consume_token(MAX_CHANGED_PARTITION_ROWS_PERCENT); + jj_consume_token(PLACING); } else if (jj_2_1617(2)) { - jj_consume_token(ALLOCATE); + jj_consume_token(PRECEDING); } else if (jj_2_1618(2)) { - jj_consume_token(ARRAY_MAX_CARDINALITY); + jj_consume_token(PRIVILEGES); } else if (jj_2_1619(2)) { - jj_consume_token(ATOMIC); + jj_consume_token(QUARTERS); } else if (jj_2_1620(2)) { - jj_consume_token(BEGIN); + jj_consume_token(REPEATABLE); } else if (jj_2_1621(2)) { - jj_consume_token(BIGINT); + jj_consume_token(RESTART); } else if (jj_2_1622(2)) { - jj_consume_token(BLOB); + jj_consume_token(RETURNED_LENGTH); } else if (jj_2_1623(2)) { - jj_consume_token(CALLED); + jj_consume_token(RETURNING); } else if (jj_2_1624(2)) { - jj_consume_token(CEIL); + jj_consume_token(ROUTINE); } else if (jj_2_1625(2)) { - jj_consume_token(CHARACTER); + jj_consume_token(ROUTINE_SCHEMA); } else if (jj_2_1626(2)) { - jj_consume_token(CHECK); + jj_consume_token(SCALE); } else if (jj_2_1627(2)) { - jj_consume_token(CLOSE); + jj_consume_token(SCOPE_CATALOGS); } else if (jj_2_1628(2)) { - jj_consume_token(COLLECT); + jj_consume_token(SECONDS); } else if (jj_2_1629(2)) { - jj_consume_token(CONNECT); + jj_consume_token(SELF); } else if (jj_2_1630(2)) { - jj_consume_token(CORR); + jj_consume_token(SERIALIZABLE); } else if (jj_2_1631(2)) { - jj_consume_token(COVAR_POP); + jj_consume_token(SESSION); } else if (jj_2_1632(2)) { - jj_consume_token(CUME_DIST); + jj_consume_token(SIZE); } else if (jj_2_1633(2)) { - jj_consume_token(CURRENT_DEFAULT_TRANSFORM_GROUP); + jj_consume_token(SPECIFIC_NAME); } else if (jj_2_1634(2)) { - jj_consume_token(CURRENT_ROW); + jj_consume_token(SQL_BIT); } else if (jj_2_1635(2)) { - jj_consume_token(CYCLE); + jj_consume_token(SQL_CHAR); } else if (jj_2_1636(2)) { - jj_consume_token(DAY); + jj_consume_token(SQL_DECIMAL); } else if (jj_2_1637(2)) { - jj_consume_token(DECIMAL); + jj_consume_token(SQL_INTEGER); } else if (jj_2_1638(2)) { - jj_consume_token(DENSE_RANK); + jj_consume_token(SQL_INTERVAL_DAY_TO_MINUTE); } else if (jj_2_1639(2)) { - jj_consume_token(DETERMINISTIC); + jj_consume_token(SQL_INTERVAL_HOUR_TO_MINUTE); } else if (jj_2_1640(2)) { - jj_consume_token(DOUBLE); + jj_consume_token(SQL_INTERVAL_MINUTE_TO_SECOND); } else if (jj_2_1641(2)) { - jj_consume_token(ELEMENT); + jj_consume_token(SQL_INTERVAL_YEAR); } else if (jj_2_1642(2)) { - jj_consume_token(END_EXEC); + jj_consume_token(SQL_LONGVARCHAR); } else if (jj_2_1643(2)) { - jj_consume_token(EQUALS); + jj_consume_token(SQL_NCLOB); } else if (jj_2_1644(2)) { - jj_consume_token(EXEC); + jj_consume_token(SQL_REAL); } else if (jj_2_1645(2)) { - jj_consume_token(EXTEND); + jj_consume_token(SQL_TIMESTAMP); } else if (jj_2_1646(2)) { - jj_consume_token(FILTER); + jj_consume_token(SQL_TSI_FRAC_SECOND); } else if (jj_2_1647(2)) { - jj_consume_token(FLOOR); + jj_consume_token(SQL_TSI_MINUTE); } else if (jj_2_1648(2)) { - jj_consume_token(FREE); + jj_consume_token(SQL_TSI_SECOND); } else if (jj_2_1649(2)) { - jj_consume_token(GET); + jj_consume_token(SQL_VARBINARY); } else if (jj_2_1650(2)) { - jj_consume_token(GROUPING); + jj_consume_token(STATEMENT); } else if (jj_2_1651(2)) { - jj_consume_token(HOUR); + jj_consume_token(STYLE); } else if (jj_2_1652(2)) { - jj_consume_token(INDICATOR); + jj_consume_token(TABLE_NAME); } else if (jj_2_1653(2)) { - jj_consume_token(INSENSITIVE); + jj_consume_token(TIME_DIFF); } else if (jj_2_1654(2)) { - jj_consume_token(INTERSECTION); + jj_consume_token(TIMESTAMPDIFF); } else if (jj_2_1655(2)) { - jj_consume_token(JSON_EXISTS); + jj_consume_token(TOP_LEVEL_COUNT); } else if (jj_2_1656(2)) { - jj_consume_token(JSON_QUERY); + jj_consume_token(TRANSACTIONS_COMMITTED); } else if (jj_2_1657(2)) { - jj_consume_token(LANGUAGE); + jj_consume_token(TRANSFORMS); } else if (jj_2_1658(2)) { - jj_consume_token(LATERAL); + jj_consume_token(TRIGGER_SCHEMA); } else if (jj_2_1659(2)) { - jj_consume_token(LN); + jj_consume_token(UNBOUNDED); } else if (jj_2_1660(2)) { - jj_consume_token(MATCH); + jj_consume_token(UNDER); } else if (jj_2_1661(2)) { - jj_consume_token(MATCH_RECOGNIZE); + jj_consume_token(USAGE); } else if (jj_2_1662(2)) { - jj_consume_token(MEMBER); + jj_consume_token(USER_DEFINED_TYPE_NAME); } else if (jj_2_1663(2)) { - jj_consume_token(MINUTE); + jj_consume_token(UTF32); } else if (jj_2_1664(2)) { - jj_consume_token(MODULE); + jj_consume_token(VIEW); } else if (jj_2_1665(2)) { - jj_consume_token(NATIONAL); + jj_consume_token(WORK); } else if (jj_2_1666(2)) { - jj_consume_token(NEW); + jj_consume_token(XML); } else if (jj_2_1667(2)) { - jj_consume_token(NONE); + jj_consume_token(TEMPLATE); } else if (jj_2_1668(2)) { - jj_consume_token(NTILE); + jj_consume_token(ATOMICITY); } else if (jj_2_1669(2)) { - jj_consume_token(OCCURRENCES_REGEX); + jj_consume_token(CACHE_NAME); } else if (jj_2_1670(2)) { - jj_consume_token(OLD); + jj_consume_token(ENCRYPTED); } else if (jj_2_1671(2)) { - jj_consume_token(ONLY); + jj_consume_token(LOGGING); } else if (jj_2_1672(2)) { - jj_consume_token(OVER); + jj_consume_token(KILL); } else if (jj_2_1673(2)) { - jj_consume_token(PARAMETER); + jj_consume_token(SERVICE); } else if (jj_2_1674(2)) { - jj_consume_token(PERCENT); + jj_consume_token(QUERY); } else if (jj_2_1675(2)) { - jj_consume_token(PERCENT_RANK); + jj_consume_token(ANALYZE); } else if (jj_2_1676(2)) { - jj_consume_token(PORTION); + jj_consume_token(ABS); } else if (jj_2_1677(2)) { - jj_consume_token(POWER); + jj_consume_token(ARE); } else if (jj_2_1678(2)) { - jj_consume_token(PREPARE); + jj_consume_token(AT); } else if (jj_2_1679(2)) { - jj_consume_token(QUALIFY); + jj_consume_token(AVG); } else if (jj_2_1680(2)) { - jj_consume_token(READS); + jj_consume_token(BEGIN_PARTITION); } else if (jj_2_1681(2)) { - jj_consume_token(REF); + jj_consume_token(BIT); } else if (jj_2_1682(2)) { - jj_consume_token(REGR_AVGX); + jj_consume_token(CALL); } else if (jj_2_1683(2)) { - jj_consume_token(REGR_INTERCEPT); + jj_consume_token(CASCADED); } else if (jj_2_1684(2)) { - jj_consume_token(REGR_SXX); + jj_consume_token(CHAR); } else if (jj_2_1685(2)) { - jj_consume_token(RELEASE); + jj_consume_token(CHAR_LENGTH); } else if (jj_2_1686(2)) { - jj_consume_token(RETURN); + jj_consume_token(CLOB); } else if (jj_2_1687(2)) { - jj_consume_token(ROLLBACK); + jj_consume_token(COLLATE); } else if (jj_2_1688(2)) { - jj_consume_token(ROW_NUMBER); + jj_consume_token(CONDITION); } else if (jj_2_1689(2)) { - jj_consume_token(SCOPE); + jj_consume_token(CONVERT); } else if (jj_2_1690(2)) { - jj_consume_token(SECOND); + jj_consume_token(COUNT); } else if (jj_2_1691(2)) { - jj_consume_token(SESSION_USER); + jj_consume_token(CUBE); } else if (jj_2_1692(2)) { - jj_consume_token(SKIP_); + jj_consume_token(CURRENT_CATALOG); } else if (jj_2_1693(2)) { - jj_consume_token(SPECIFICTYPE); + jj_consume_token(CURRENT_ROLE); } else if (jj_2_1694(2)) { - jj_consume_token(SQLSTATE); + jj_consume_token(CURSOR); } else if (jj_2_1695(2)) { - jj_consume_token(START); + jj_consume_token(DATETIME); } else if (jj_2_1696(2)) { - jj_consume_token(STDDEV_SAMP); + jj_consume_token(DEC); } else if (jj_2_1697(2)) { - jj_consume_token(SUBSET); + jj_consume_token(DEFINE); } else if (jj_2_1698(2)) { - jj_consume_token(SUCCEEDS); + jj_consume_token(DESCRIBE); } else if (jj_2_1699(2)) { - jj_consume_token(SYSTEM_TIME); + jj_consume_token(DISCONNECT); } else if (jj_2_1700(2)) { - jj_consume_token(TIME); + jj_consume_token(EACH); } else if (jj_2_1701(2)) { - jj_consume_token(TIMEZONE_MINUTE); + jj_consume_token(END); } else if (jj_2_1702(2)) { - jj_consume_token(TRANSLATE_REGEX); + jj_consume_token(END_PARTITION); } else if (jj_2_1703(2)) { - jj_consume_token(TRIGGER); + jj_consume_token(EVERY); } else if (jj_2_1704(2)) { - jj_consume_token(TRUNCATE); + jj_consume_token(EXP); } else if (jj_2_1705(2)) { - jj_consume_token(UNKNOWN); + jj_consume_token(EXTRACT); } else if (jj_2_1706(2)) { - jj_consume_token(UPSERT); + jj_consume_token(FLOAT); } else if (jj_2_1707(2)) { - jj_consume_token(VARBINARY); + jj_consume_token(FRAME_ROW); } else if (jj_2_1708(2)) { - jj_consume_token(VAR_POP); + jj_consume_token(FUSION); } else if (jj_2_1709(2)) { - jj_consume_token(WHENEVER); + jj_consume_token(GRANT); } else if (jj_2_1710(2)) { - jj_consume_token(WITHIN); + jj_consume_token(HOLD); } else if (jj_2_1711(2)) { - jj_consume_token(MONDAY); + jj_consume_token(IMPORT); } else if (jj_2_1712(2)) { - jj_consume_token(THURSDAY); + jj_consume_token(INOUT); } else if (jj_2_1713(2)) { - jj_consume_token(SUNDAY); - } else { - jj_consume_token(-1); - throw new ParseException(); - } - } - -/** - * Defines a production which can never be accepted by the parser. - * In effect, it tells the parser, "If you got here, you've gone too far." - * It is used as the default production for parser extension points; - * derived parsers replace it with a real production when they want to - * implement a particular extension point. - */ - final public void UnusedExtension() throws ParseException { - if (false) { - - } else { - jj_consume_token(-1); - throw new ParseException(); - } - jj_consume_token(ZONE); - } - - final private boolean jj_2_1(int xla) { - jj_la = xla; jj_lastpos = jj_scanpos = token; - try { return !jj_3_1(); } - catch(LookaheadSuccess ls) { return true; } - finally { jj_save(0, xla); } - } - - final private boolean jj_2_2(int xla) { - jj_la = xla; jj_lastpos = jj_scanpos = token; - try { return !jj_3_2(); } - catch(LookaheadSuccess ls) { return true; } - finally { jj_save(1, xla); } - } - - final private boolean jj_2_3(int xla) { - jj_la = xla; jj_lastpos = jj_scanpos = token; - try { return !jj_3_3(); } - catch(LookaheadSuccess ls) { return true; } - finally { jj_save(2, xla); } - } - - final private boolean jj_2_4(int xla) { - jj_la = xla; jj_lastpos = jj_scanpos = token; - try { return !jj_3_4(); } - catch(LookaheadSuccess ls) { return true; } - finally { jj_save(3, xla); } - } - - final private boolean jj_2_5(int xla) { - jj_la = xla; jj_lastpos = jj_scanpos = token; - try { return !jj_3_5(); } + jj_consume_token(INTEGER); + } else if (jj_2_1714(2)) { + jj_consume_token(JSON_ARRAYAGG); + } else if (jj_2_1715(2)) { + jj_consume_token(JSON_OBJECTAGG); + } else if (jj_2_1716(2)) { + jj_consume_token(JSON_VALUE); + } else if (jj_2_1717(2)) { + jj_consume_token(LARGE); + } else if (jj_2_1718(2)) { + jj_consume_token(LEAD); + } else if (jj_2_1719(2)) { + jj_consume_token(LOCAL); + } else if (jj_2_1720(2)) { + jj_consume_token(MATCHES); + } else if (jj_2_1721(2)) { + jj_consume_token(MAX); + } else if (jj_2_1722(2)) { + jj_consume_token(METHOD); + } else if (jj_2_1723(2)) { + jj_consume_token(MOD); + } else if (jj_2_1724(2)) { + jj_consume_token(MONTH); + } else if (jj_2_1725(2)) { + jj_consume_token(NCHAR); + } else if (jj_2_1726(2)) { + jj_consume_token(NEXT); + } else if (jj_2_1727(2)) { + jj_consume_token(NORMALIZE); + } else if (jj_2_1728(2)) { + jj_consume_token(NULLIF); + } else if (jj_2_1729(2)) { + jj_consume_token(OCTET_LENGTH); + } else if (jj_2_1730(2)) { + jj_consume_token(OMIT); + } else if (jj_2_1731(2)) { + jj_consume_token(OPEN); + } else if (jj_2_1732(2)) { + jj_consume_token(OVER); + } else if (jj_2_1733(2)) { + jj_consume_token(PARAMETER); + } else if (jj_2_1734(2)) { + jj_consume_token(PERCENT); + } else if (jj_2_1735(2)) { + jj_consume_token(PERCENT_RANK); + } else if (jj_2_1736(2)) { + jj_consume_token(PORTION); + } else if (jj_2_1737(2)) { + jj_consume_token(POWER); + } else if (jj_2_1738(2)) { + jj_consume_token(PREPARE); + } else if (jj_2_1739(2)) { + jj_consume_token(QUALIFY); + } else if (jj_2_1740(2)) { + jj_consume_token(READS); + } else if (jj_2_1741(2)) { + jj_consume_token(REF); + } else if (jj_2_1742(2)) { + jj_consume_token(REGR_AVGX); + } else if (jj_2_1743(2)) { + jj_consume_token(REGR_INTERCEPT); + } else if (jj_2_1744(2)) { + jj_consume_token(REGR_SXX); + } else if (jj_2_1745(2)) { + jj_consume_token(RELEASE); + } else if (jj_2_1746(2)) { + jj_consume_token(RETURN); + } else if (jj_2_1747(2)) { + jj_consume_token(ROLLBACK); + } else if (jj_2_1748(2)) { + jj_consume_token(ROW_NUMBER); + } else if (jj_2_1749(2)) { + jj_consume_token(SAFE_OFFSET); + } else if (jj_2_1750(2)) { + jj_consume_token(SCOPE); + } else if (jj_2_1751(2)) { + jj_consume_token(SECOND); + } else if (jj_2_1752(2)) { + jj_consume_token(SESSION_USER); + } else if (jj_2_1753(2)) { + jj_consume_token(SKIP_); + } else if (jj_2_1754(2)) { + jj_consume_token(SPECIFICTYPE); + } else if (jj_2_1755(2)) { + jj_consume_token(SQLSTATE); + } else if (jj_2_1756(2)) { + jj_consume_token(START); + } else if (jj_2_1757(2)) { + jj_consume_token(STDDEV_SAMP); + } else if (jj_2_1758(2)) { + jj_consume_token(SUBSET); + } else if (jj_2_1759(2)) { + jj_consume_token(SUCCEEDS); + } else if (jj_2_1760(2)) { + jj_consume_token(SYSTEM_TIME); + } else if (jj_2_1761(2)) { + jj_consume_token(TIME); + } else if (jj_2_1762(2)) { + jj_consume_token(TIMEZONE_MINUTE); + } else if (jj_2_1763(2)) { + jj_consume_token(TRANSLATE_REGEX); + } else if (jj_2_1764(2)) { + jj_consume_token(TRIGGER); + } else if (jj_2_1765(2)) { + jj_consume_token(TRUNCATE); + } else if (jj_2_1766(2)) { + jj_consume_token(UNIQUE); + } else if (jj_2_1767(2)) { + jj_consume_token(UPPER); + } else if (jj_2_1768(2)) { + jj_consume_token(VALUE_OF); + } else if (jj_2_1769(2)) { + jj_consume_token(VARYING); + } else if (jj_2_1770(2)) { + jj_consume_token(VERSIONING); + } else if (jj_2_1771(2)) { + jj_consume_token(WINDOW); + } else if (jj_2_1772(2)) { + jj_consume_token(YEAR); + } else if (jj_2_1773(2)) { + jj_consume_token(WEDNESDAY); + } else if (jj_2_1774(2)) { + jj_consume_token(SATURDAY); + } else { + jj_consume_token(-1); + throw new ParseException(); + } + } + +/** + * Defines a production which can never be accepted by the parser. + * In effect, it tells the parser, "If you got here, you've gone too far." + * It is used as the default production for parser extension points; + * derived parsers replace it with a real production when they want to + * implement a particular extension point. + */ + final public void UnusedExtension() throws ParseException { + if (false) { + + } else { + jj_consume_token(-1); + throw new ParseException(); + } + jj_consume_token(ZONE); + } + + final private boolean jj_2_1(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(0, xla); } + } + + final private boolean jj_2_2(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_2(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1, xla); } + } + + final private boolean jj_2_3(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_3(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(2, xla); } + } + + final private boolean jj_2_4(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_4(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(3, xla); } + } + + final private boolean jj_2_5(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_5(); } catch(LookaheadSuccess ls) { return true; } finally { jj_save(4, xla); } } @@ -22972,1200 +23355,4440 @@ final private boolean jj_2_1713(int xla) { finally { jj_save(1712, xla); } } - final private boolean jj_3_1161() { - if (jj_scan_token(SUBSTITUTE)) return true; - return false; + final private boolean jj_2_1714(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1714(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1713, xla); } } - final private boolean jj_3_1160() { - if (jj_scan_token(STRUCTURE)) return true; - return false; + final private boolean jj_2_1715(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1715(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1714, xla); } } - final private boolean jj_3_1159() { - if (jj_scan_token(STATE)) return true; - return false; + final private boolean jj_2_1716(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1716(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1715, xla); } } - final private boolean jj_3_1158() { - if (jj_scan_token(SQL_TSI_YEAR)) return true; - return false; + final private boolean jj_2_1717(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1717(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1716, xla); } } - final private boolean jj_3_1157() { - if (jj_scan_token(SQL_TSI_QUARTER)) return true; - return false; + final private boolean jj_2_1718(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1718(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1717, xla); } } - final private boolean jj_3_1156() { - if (jj_scan_token(SQL_TSI_MICROSECOND)) return true; - return false; + final private boolean jj_2_1719(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1719(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1718, xla); } } - final private boolean jj_3_1155() { - if (jj_scan_token(SQL_TSI_DAY)) return true; - return false; + final private boolean jj_2_1720(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1720(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1719, xla); } } - final private boolean jj_3_1154() { - if (jj_scan_token(SQL_TIME)) return true; - return false; + final private boolean jj_2_1721(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1721(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1720, xla); } } - final private boolean jj_3_265() { - if (jj_scan_token(EXTEND)) return true; - return false; + final private boolean jj_2_1722(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1722(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1721, xla); } } - final private boolean jj_3_1153() { - if (jj_scan_token(SQL_NVARCHAR)) return true; - return false; + final private boolean jj_2_1723(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1723(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1722, xla); } } - final private boolean jj_3R_152() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_265()) jj_scanpos = xsp; - if (jj_3R_354()) return true; - return false; + final private boolean jj_2_1724(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1724(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1723, xla); } } - final private boolean jj_3_1152() { - if (jj_scan_token(SQL_NCHAR)) return true; - return false; + final private boolean jj_2_1725(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1725(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1724, xla); } } - final private boolean jj_3_1151() { - if (jj_scan_token(SQL_LONGVARBINARY)) return true; - return false; + final private boolean jj_2_1726(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1726(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1725, xla); } } - final private boolean jj_3_1150() { - if (jj_scan_token(SQL_INTERVAL_SECOND)) return true; - return false; + final private boolean jj_2_1727(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1727(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1726, xla); } } - final private boolean jj_3_1149() { - if (jj_scan_token(SQL_INTERVAL_MINUTE)) return true; - return false; + final private boolean jj_2_1728(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1728(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1727, xla); } } - final private boolean jj_3_1148() { - if (jj_scan_token(SQL_INTERVAL_HOUR)) return true; - return false; + final private boolean jj_2_1729(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1729(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1728, xla); } } - final private boolean jj_3_1147() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_HOUR)) return true; - return false; + final private boolean jj_2_1730(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1730(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1729, xla); } } - final private boolean jj_3_1146() { - if (jj_scan_token(SQL_FLOAT)) return true; - return false; + final private boolean jj_2_1731(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1731(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1730, xla); } } - final private boolean jj_3_1145() { - if (jj_scan_token(SQL_DATE)) return true; - return false; + final private boolean jj_2_1732(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1732(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1731, xla); } } - final private boolean jj_3_626() { - if (jj_scan_token(DOT)) return true; - if (jj_scan_token(STAR)) return true; - return false; + final private boolean jj_2_1733(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1733(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1732, xla); } } - final private boolean jj_3_1144() { - if (jj_scan_token(SQL_BOOLEAN)) return true; - return false; + final private boolean jj_2_1734(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1734(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1733, xla); } } - final private boolean jj_3_1143() { - if (jj_scan_token(SQL_BINARY)) return true; - return false; + final private boolean jj_2_1735(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1735(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1734, xla); } } - final private boolean jj_3_1142() { - if (jj_scan_token(SPACE)) return true; - return false; + final private boolean jj_2_1736(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1736(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1735, xla); } } - final private boolean jj_3_1141() { - if (jj_scan_token(SIMPLE)) return true; - return false; + final private boolean jj_2_1737(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1737(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1736, xla); } } - final private boolean jj_3_1140() { - if (jj_scan_token(SERVER_NAME)) return true; - return false; + final private boolean jj_2_1738(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1738(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1737, xla); } } - final private boolean jj_3_625() { - if (jj_scan_token(DOT)) return true; - if (jj_3R_265()) return true; - return false; + final private boolean jj_2_1739(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1739(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1738, xla); } } - final private boolean jj_3_1139() { - if (jj_scan_token(SEQUENCE)) return true; - return false; + final private boolean jj_2_1740(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1740(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1739, xla); } } - final private boolean jj_3_1138() { - if (jj_scan_token(SECURITY)) return true; - return false; + final private boolean jj_2_1741(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1741(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1740, xla); } } - final private boolean jj_3_1137() { - if (jj_scan_token(SCOPE_SCHEMA)) return true; - return false; + final private boolean jj_2_1742(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1742(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1741, xla); } } - final private boolean jj_3_1136() { - if (jj_scan_token(SCHEMA_NAME)) return true; - return false; + final private boolean jj_2_1743(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1743(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1742, xla); } } - final private boolean jj_3_1135() { - if (jj_scan_token(SCALAR)) return true; - return false; + final private boolean jj_2_1744(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1744(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1743, xla); } } - final private boolean jj_3_1134() { - if (jj_scan_token(ROUTINE_NAME)) return true; - return false; + final private boolean jj_2_1745(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1745(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1744, xla); } } - final private boolean jj_3R_146() { - if (jj_3R_265()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_625()) { jj_scanpos = xsp; break; } - } - xsp = jj_scanpos; - if (jj_3_626()) jj_scanpos = xsp; - return false; + final private boolean jj_2_1746(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1746(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1745, xla); } } - final private boolean jj_3_1133() { - if (jj_scan_token(ROLE)) return true; - return false; + final private boolean jj_2_1747(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1747(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1746, xla); } } - final private boolean jj_3_1132() { - if (jj_scan_token(RETURNED_SQLSTATE)) return true; - return false; + final private boolean jj_2_1748(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1748(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1747, xla); } } - final private boolean jj_3_1131() { - if (jj_scan_token(RETURNED_CARDINALITY)) return true; - return false; + final private boolean jj_2_1749(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1749(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1748, xla); } } - final private boolean jj_3_1130() { - if (jj_scan_token(RESPECT)) return true; - return false; + final private boolean jj_2_1750(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1750(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1749, xla); } } - final private boolean jj_3_1129() { - if (jj_scan_token(RELATIVE)) return true; - return false; + final private boolean jj_2_1751(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1751(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1750, xla); } } - final private boolean jj_3_1128() { - if (jj_scan_token(QUARTER)) return true; - return false; + final private boolean jj_2_1752(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1752(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1751, xla); } } - final private boolean jj_3_1127() { - if (jj_scan_token(PRIOR)) return true; - return false; + final private boolean jj_2_1753(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1753(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1752, xla); } } - final private boolean jj_3_1126() { - if (jj_scan_token(PLI)) return true; - return false; + final private boolean jj_2_1754(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1754(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1753, xla); } } - final private boolean jj_3_1125() { - if (jj_scan_token(PIVOT)) return true; - return false; + final private boolean jj_2_1755(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1755(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1754, xla); } } - final private boolean jj_3_1124() { - if (jj_scan_token(PASSTHROUGH)) return true; - return false; + final private boolean jj_2_1756(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1756(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1755, xla); } } - final private boolean jj_3_1123() { - if (jj_scan_token(PARTIAL)) return true; - return false; + final private boolean jj_2_1757(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1757(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1756, xla); } } - final private boolean jj_3_1122() { - if (jj_scan_token(PARAMETER_SPECIFIC_CATALOG)) return true; - return false; + final private boolean jj_2_1758(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1758(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1757, xla); } } - final private boolean jj_3_1121() { - if (jj_scan_token(PARAMETER_MODE)) return true; - return false; + final private boolean jj_2_1759(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1759(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1758, xla); } } - final private boolean jj_3_1120() { - if (jj_scan_token(OUTPUT)) return true; - return false; + final private boolean jj_2_1760(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1760(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1759, xla); } } - final private boolean jj_3_1119() { - if (jj_scan_token(ORDERING)) return true; - return false; + final private boolean jj_2_1761(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1761(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1760, xla); } } - final private boolean jj_3_624() { - if (jj_3R_118()) return true; - return false; + final private boolean jj_2_1762(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1762(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1761, xla); } } - final private boolean jj_3_1118() { - if (jj_scan_token(OCTETS)) return true; - return false; + final private boolean jj_2_1763(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1763(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1762, xla); } } - final private boolean jj_3_1117() { - if (jj_scan_token(NULLS)) return true; - return false; + final private boolean jj_2_1764(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1764(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1763, xla); } } - final private boolean jj_3_1116() { - if (jj_scan_token(NESTING)) return true; - return false; + final private boolean jj_2_1765(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1765(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1764, xla); } } - final private boolean jj_3_262() { - if (jj_scan_token(REPEATABLE)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; + final private boolean jj_2_1766(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1766(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1765, xla); } } - final private boolean jj_3_1115() { - if (jj_scan_token(NAME)) return true; - return false; + final private boolean jj_2_1767(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1767(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1766, xla); } } - final private boolean jj_3R_128() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_623()) { - jj_scanpos = xsp; - if (jj_3_624()) return true; - } - return false; + final private boolean jj_2_1768(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1768(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1767, xla); } } - final private boolean jj_3_623() { - if (jj_3R_84()) return true; - return false; + final private boolean jj_2_1769(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1769(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1768, xla); } } - final private boolean jj_3_1114() { - if (jj_scan_token(MONTHS)) return true; - return false; + final private boolean jj_2_1770(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1770(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1769, xla); } } - final private boolean jj_3_1113() { - if (jj_scan_token(MILLISECOND)) return true; - return false; + final private boolean jj_2_1771(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1771(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1770, xla); } } - final private boolean jj_3_1112() { - if (jj_scan_token(MESSAGE_TEXT)) return true; - return false; + final private boolean jj_2_1772(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1772(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1771, xla); } } - final private boolean jj_3_261() { - if (jj_scan_token(SYSTEM)) return true; - return false; + final private boolean jj_2_1773(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1773(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1772, xla); } } - final private boolean jj_3_1111() { - if (jj_scan_token(MAXVALUE)) return true; - return false; + final private boolean jj_2_1774(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1774(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1773, xla); } } - final private boolean jj_3_1110() { - if (jj_scan_token(M)) return true; + final private boolean jj_3_644() { + if (jj_scan_token(UESCAPE)) return true; + if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_260() { - if (jj_scan_token(BERNOULLI)) return true; + final private boolean jj_3_651() { + if (jj_scan_token(UNICODE_QUOTED_IDENTIFIER)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_644()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1109() { - if (jj_scan_token(LEVEL)) return true; + final private boolean jj_3_267() { + if (jj_scan_token(REPEATABLE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1108() { - if (jj_scan_token(LABEL)) return true; + final private boolean jj_3_650() { + if (jj_scan_token(BRACKET_QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_1107() { - if (jj_scan_token(KEY)) return true; + final private boolean jj_3_266() { + if (jj_scan_token(SYSTEM)) return true; return false; } - final private boolean jj_3_1106() { - if (jj_scan_token(JAVA)) return true; + final private boolean jj_3_265() { + if (jj_scan_token(BERNOULLI)) return true; return false; } - final private boolean jj_3_1105() { - if (jj_scan_token(ISODOW)) return true; + final private boolean jj_3_649() { + if (jj_scan_token(BIG_QUERY_BACK_QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_264() { + final private boolean jj_3_269() { Token xsp; xsp = jj_scanpos; - if (jj_3_260()) { + if (jj_3_265()) { jj_scanpos = xsp; - if (jj_3_261()) return true; + if (jj_3_266()) return true; } if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1104() { - if (jj_scan_token(INSTANCE)) return true; - return false; - } - - final private boolean jj_3_1103() { - if (jj_scan_token(INCREMENT)) return true; - return false; - } - - final private boolean jj_3_1102() { - if (jj_scan_token(IMPLEMENTATION)) return true; + final private boolean jj_3_648() { + if (jj_scan_token(BACK_QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_1101() { - if (jj_scan_token(ILIKE)) return true; + final private boolean jj_3_647() { + if (jj_scan_token(QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_1100() { - if (jj_scan_token(HOP)) return true; + final private boolean jj_3_268() { + if (jj_scan_token(SUBSTITUTE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1099() { - if (jj_scan_token(GRANTED)) return true; + final private boolean jj_3_646() { + if (jj_scan_token(HYPHENATED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_1098() { - if (jj_scan_token(GEOMETRY)) return true; + final private boolean jj_3R_177() { + if (jj_scan_token(TABLESAMPLE)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_268()) { + jj_scanpos = xsp; + if (jj_3_269()) return true; + } return false; } - final private boolean jj_3_1097() { - if (jj_scan_token(G)) return true; + final private boolean jj_3_645() { + if (jj_scan_token(IDENTIFIER)) return true; return false; } - final private boolean jj_3_1096() { - if (jj_scan_token(FORTRAN)) return true; - return false; - } + final private boolean jj_3R_271() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_645()) { + jj_scanpos = xsp; + if (jj_3_646()) { + jj_scanpos = xsp; + if (jj_3_647()) { + jj_scanpos = xsp; + if (jj_3_648()) { + jj_scanpos = xsp; + if (jj_3_649()) { + jj_scanpos = xsp; + if (jj_3_650()) { + jj_scanpos = xsp; + if (jj_3_651()) { + jj_scanpos = xsp; + if (jj_3_652()) return true; + } + } + } + } + } + } + } + return false; + } - final private boolean jj_3_1095() { - if (jj_scan_token(FIRST)) return true; + final private boolean jj_3_264() { + if (jj_3R_177()) return true; return false; } - final private boolean jj_3R_118() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_347()) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3R_218() { + if (jj_scan_token(HOOK)) return true; return false; } - final private boolean jj_3_1094() { - if (jj_scan_token(EXCLUDE)) return true; + final private boolean jj_3R_176() { + return false; + } + + final private boolean jj_3_262() { + if (jj_3R_123()) return true; + return false; + } + + final private boolean jj_3_261() { + if (jj_scan_token(AS)) return true; + return false; + } + + final private boolean jj_3R_369() { return false; } final private boolean jj_3_263() { - if (jj_scan_token(SUBSTITUTE)) return true; - if (jj_scan_token(LPAREN)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_261()) jj_scanpos = xsp; + if (jj_3R_85()) return true; + xsp = jj_scanpos; + if (jj_3_262()) { + jj_scanpos = xsp; + if (jj_3R_176()) return true; + } return false; } - final private boolean jj_3_1093() { - if (jj_scan_token(EPOCH)) return true; + final private boolean jj_3_643() { + if (jj_scan_token(SATURDAY)) return true; return false; } - final private boolean jj_3_1092() { - if (jj_scan_token(DYNAMIC_FUNCTION)) return true; + final private boolean jj_3_642() { + if (jj_scan_token(FRIDAY)) return true; return false; } - final private boolean jj_3_1091() { - if (jj_scan_token(DOW)) return true; + final private boolean jj_3_641() { + if (jj_scan_token(THURSDAY)) return true; return false; } - final private boolean jj_3_1090() { - if (jj_scan_token(DIAGNOSTICS)) return true; + final private boolean jj_3_640() { + if (jj_scan_token(WEDNESDAY)) return true; return false; } - final private boolean jj_3_1089() { - if (jj_scan_token(DESC)) return true; + final private boolean jj_3_260() { + if (jj_3R_175()) return true; return false; } - final private boolean jj_3_1088() { - if (jj_scan_token(DEGREE)) return true; + final private boolean jj_3_639() { + if (jj_scan_token(TUESDAY)) return true; return false; } - final private boolean jj_3R_172() { - if (jj_scan_token(TABLESAMPLE)) return true; + final private boolean jj_3_638() { + if (jj_scan_token(MONDAY)) return true; + return false; + } + + final private boolean jj_3R_268() { Token xsp; xsp = jj_scanpos; - if (jj_3_263()) { + if (jj_3_637()) { + jj_scanpos = xsp; + if (jj_3_638()) { + jj_scanpos = xsp; + if (jj_3_639()) { + jj_scanpos = xsp; + if (jj_3_640()) { + jj_scanpos = xsp; + if (jj_3_641()) { + jj_scanpos = xsp; + if (jj_3_642()) { jj_scanpos = xsp; - if (jj_3_264()) return true; + if (jj_3_643()) return true; + } + } + } + } + } } return false; } - final private boolean jj_3_1087() { - if (jj_scan_token(DEFERRED)) return true; + final private boolean jj_3_637() { + if (jj_scan_token(SUNDAY)) return true; return false; } - final private boolean jj_3_1086() { + final private boolean jj_3_259() { + if (jj_3R_174()) return true; + return false; + } + + final private boolean jj_3_258() { + if (jj_3R_173()) return true; + return false; + } + + final private boolean jj_3_253() { + if (jj_scan_token(LATERAL)) return true; + return false; + } + + final private boolean jj_3_636() { + if (jj_scan_token(MILLENNIUM)) return true; + return false; + } + + final private boolean jj_3_635() { + if (jj_scan_token(CENTURY)) return true; + return false; + } + + final private boolean jj_3_257() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_253()) jj_scanpos = xsp; + if (jj_3R_172()) return true; + return false; + } + + final private boolean jj_3_634() { if (jj_scan_token(DECADE)) return true; return false; } - final private boolean jj_3_1085() { - if (jj_scan_token(DATETIME_INTERVAL_CODE)) return true; + final private boolean jj_3_633() { + if (jj_scan_token(EPOCH)) return true; return false; } - final private boolean jj_3_1084() { - if (jj_scan_token(DATE_DIFF)) return true; + final private boolean jj_3R_269() { return false; } - final private boolean jj_3_1083() { - if (jj_scan_token(CURSOR_NAME)) return true; + final private boolean jj_3_632() { + if (jj_scan_token(YEAR)) return true; return false; } - final private boolean jj_3_622() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_631() { + if (jj_scan_token(QUARTER)) return true; return false; } - final private boolean jj_3_1082() { - if (jj_scan_token(CONSTRAINT_SCHEMA)) return true; + final private boolean jj_3_252() { + if (jj_scan_token(WITH)) return true; + if (jj_scan_token(ORDINALITY)) return true; return false; } - final private boolean jj_3_1081() { - if (jj_scan_token(CONSTRAINT_CATALOG)) return true; + final private boolean jj_3_630() { + if (jj_scan_token(MONTH)) return true; return false; } - final private boolean jj_3_1080() { - if (jj_scan_token(CONDITION_NUMBER)) return true; + final private boolean jj_3_615() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_268()) return true; return false; } - final private boolean jj_3_1079() { - if (jj_scan_token(COMMAND_FUNCTION_CODE)) return true; + final private boolean jj_3_251() { + if (jj_3R_166()) return true; return false; } - final private boolean jj_3_1078() { - if (jj_scan_token(COLLATION_SCHEMA)) return true; + final private boolean jj_3_256() { + if (jj_scan_token(UNNEST)) return true; + if (jj_3R_171()) return true; return false; } - final private boolean jj_3_1077() { - if (jj_scan_token(COLLATION)) return true; + final private boolean jj_3_248() { + if (jj_3R_166()) return true; return false; } - final private boolean jj_3R_347() { - if (jj_3R_84()) return true; + final private boolean jj_3_250() { + if (jj_scan_token(LATERAL)) return true; + return false; + } + + final private boolean jj_3_629() { + if (jj_scan_token(WEEK)) return true; Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_622()) { jj_scanpos = xsp; break; } + xsp = jj_scanpos; + if (jj_3_615()) { + jj_scanpos = xsp; + if (jj_3R_269()) return true; } return false; } - final private boolean jj_3_1076() { - if (jj_scan_token(CHARACTER_SET_SCHEMA)) return true; + final private boolean jj_3_247() { + if (jj_3R_165()) return true; return false; } - final private boolean jj_3_259() { - if (jj_3R_172()) return true; + final private boolean jj_3_628() { + if (jj_scan_token(ISOYEAR)) return true; return false; } - final private boolean jj_3_1075() { - if (jj_scan_token(CHARACTERS)) return true; + final private boolean jj_3_627() { + if (jj_scan_token(ISODOW)) return true; return false; } - final private boolean jj_3_1074() { - if (jj_scan_token(CENTURY)) return true; + final private boolean jj_3_246() { + if (jj_3R_157()) return true; return false; } - final private boolean jj_3_1073() { - if (jj_scan_token(CASCADE)) return true; + final private boolean jj_3_255() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_250()) jj_scanpos = xsp; + if (jj_3R_170()) return true; return false; } - final private boolean jj_3_1072() { - if (jj_scan_token(BERNOULLI)) return true; + final private boolean jj_3_626() { + if (jj_scan_token(DOY)) return true; return false; } - final private boolean jj_3_1071() { - if (jj_scan_token(ATTRIBUTE)) return true; + final private boolean jj_3_245() { + if (jj_3R_156()) return true; return false; } - final private boolean jj_3_1070() { - if (jj_scan_token(ASC)) return true; + final private boolean jj_3_625() { + if (jj_scan_token(DOW)) return true; return false; } - final private boolean jj_3_1069() { - if (jj_scan_token(APPLY)) return true; + final private boolean jj_3_624() { + if (jj_scan_token(DAYOFYEAR)) return true; return false; } - final private boolean jj_3_1068() { - if (jj_scan_token(ADMIN)) return true; + final private boolean jj_3R_169() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_245()) { + jj_scanpos = xsp; + if (jj_3R_369()) return true; + } + xsp = jj_scanpos; + if (jj_3_246()) jj_scanpos = xsp; + if (jj_3R_370()) return true; + xsp = jj_scanpos; + if (jj_3_247()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_248()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1067() { - if (jj_scan_token(ACTION)) return true; + final private boolean jj_3_623() { + if (jj_scan_token(DAYOFWEEK)) return true; return false; } - final private boolean jj_3_1066() { - if (jj_scan_token(A)) return true; + final private boolean jj_3_622() { + if (jj_scan_token(DAY)) return true; return false; } - final private boolean jj_3R_328() { + final private boolean jj_3_621() { + if (jj_scan_token(HOUR)) return true; + return false; + } + + final private boolean jj_3_249() { + if (jj_3R_167()) return true; + return false; + } + + final private boolean jj_3_620() { + if (jj_scan_token(MINUTE)) return true; + return false; + } + + final private boolean jj_3_619() { + if (jj_scan_token(SECOND)) return true; + return false; + } + + final private boolean jj_3_618() { + if (jj_scan_token(MILLISECOND)) return true; + return false; + } + + final private boolean jj_3_617() { + if (jj_scan_token(MICROSECOND)) return true; + return false; + } + + final private boolean jj_3R_267() { Token xsp; xsp = jj_scanpos; - if (jj_3_1066()) { - jj_scanpos = xsp; - if (jj_3_1067()) { - jj_scanpos = xsp; - if (jj_3_1068()) { - jj_scanpos = xsp; - if (jj_3_1069()) { - jj_scanpos = xsp; - if (jj_3_1070()) { - jj_scanpos = xsp; - if (jj_3_1071()) { - jj_scanpos = xsp; - if (jj_3_1072()) { - jj_scanpos = xsp; - if (jj_3_1073()) { - jj_scanpos = xsp; - if (jj_3_1074()) { - jj_scanpos = xsp; - if (jj_3_1075()) { - jj_scanpos = xsp; - if (jj_3_1076()) { + if (jj_3_616()) { jj_scanpos = xsp; - if (jj_3_1077()) { + if (jj_3_617()) { jj_scanpos = xsp; - if (jj_3_1078()) { + if (jj_3_618()) { jj_scanpos = xsp; - if (jj_3_1079()) { + if (jj_3_619()) { jj_scanpos = xsp; - if (jj_3_1080()) { + if (jj_3_620()) { jj_scanpos = xsp; - if (jj_3_1081()) { + if (jj_3_621()) { jj_scanpos = xsp; - if (jj_3_1082()) { + if (jj_3_622()) { jj_scanpos = xsp; - if (jj_3_1083()) { + if (jj_3_623()) { jj_scanpos = xsp; - if (jj_3_1084()) { + if (jj_3_624()) { jj_scanpos = xsp; - if (jj_3_1085()) { + if (jj_3_625()) { jj_scanpos = xsp; - if (jj_3_1086()) { + if (jj_3_626()) { jj_scanpos = xsp; - if (jj_3_1087()) { + if (jj_3_627()) { jj_scanpos = xsp; - if (jj_3_1088()) { + if (jj_3_628()) { jj_scanpos = xsp; - if (jj_3_1089()) { + if (jj_3_629()) { jj_scanpos = xsp; - if (jj_3_1090()) { + if (jj_3_630()) { jj_scanpos = xsp; - if (jj_3_1091()) { + if (jj_3_631()) { jj_scanpos = xsp; - if (jj_3_1092()) { + if (jj_3_632()) { jj_scanpos = xsp; - if (jj_3_1093()) { + if (jj_3_633()) { jj_scanpos = xsp; - if (jj_3_1094()) { + if (jj_3_634()) { jj_scanpos = xsp; - if (jj_3_1095()) { + if (jj_3_635()) { jj_scanpos = xsp; - if (jj_3_1096()) { + if (jj_3_636()) return true; + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + return false; + } + + final private boolean jj_3_616() { + if (jj_scan_token(NANOSECOND)) return true; + return false; + } + + final private boolean jj_3_254() { + if (jj_3R_168()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_249()) { jj_scanpos = xsp; - if (jj_3_1097()) { + if (jj_3R_169()) return true; + } + return false; + } + + final private boolean jj_3R_341() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_254()) { jj_scanpos = xsp; - if (jj_3_1098()) { + if (jj_3_255()) { jj_scanpos = xsp; - if (jj_3_1099()) { + if (jj_3_256()) { jj_scanpos = xsp; - if (jj_3_1100()) { + if (jj_3_257()) { jj_scanpos = xsp; - if (jj_3_1101()) { + if (jj_3_258()) return true; + } + } + } + } + xsp = jj_scanpos; + if (jj_3_259()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_260()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_263()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_264()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3_614() { + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3R_328() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_613()) { jj_scanpos = xsp; - if (jj_3_1102()) { + if (jj_3_614()) return true; + } + return false; + } + + final private boolean jj_3_613() { + if (jj_3R_267()) return true; + return false; + } + + final private boolean jj_3R_70() { + if (jj_3R_341()) return true; + return false; + } + + final private boolean jj_3_609() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_257()) return true; + return false; + } + + final private boolean jj_3_610() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_257()) return true; + return false; + } + + final private boolean jj_3_612() { + if (jj_3R_255()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_610()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3_608() { + if (jj_3R_254()) return true; + return false; + } + + final private boolean jj_3_607() { + if (jj_3R_253()) return true; + return false; + } + + final private boolean jj_3_606() { + if (jj_3R_262()) return true; + return false; + } + + final private boolean jj_3_605() { + if (jj_3R_261()) return true; + return false; + } + + final private boolean jj_3_604() { + if (jj_3R_252()) return true; + return false; + } + + final private boolean jj_3_603() { + if (jj_3R_260()) return true; + return false; + } + + final private boolean jj_3_602() { + if (jj_3R_258()) return true; + return false; + } + + final private boolean jj_3_244() { + if (jj_scan_token(OUTER)) return true; + if (jj_scan_token(APPLY)) return true; + return false; + } + + final private boolean jj_3_611() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_602()) { jj_scanpos = xsp; - if (jj_3_1103()) { + if (jj_3_603()) { jj_scanpos = xsp; - if (jj_3_1104()) { + if (jj_3_604()) { jj_scanpos = xsp; - if (jj_3_1105()) { + if (jj_3_605()) { jj_scanpos = xsp; - if (jj_3_1106()) { + if (jj_3_606()) { jj_scanpos = xsp; - if (jj_3_1107()) { + if (jj_3_607()) { jj_scanpos = xsp; - if (jj_3_1108()) { + if (jj_3_608()) return true; + } + } + } + } + } + } + if (jj_3R_256()) return true; + return false; + } + + final private boolean jj_3R_251() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_611()) { jj_scanpos = xsp; - if (jj_3_1109()) { + if (jj_3_612()) return true; + } + return false; + } + + final private boolean jj_3_243() { + if (jj_scan_token(CROSS)) return true; + if (jj_scan_token(APPLY)) return true; + return false; + } + + final private boolean jj_3R_266() { + return false; + } + + final private boolean jj_3_592() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_257()) return true; + return false; + } + + final private boolean jj_3_593() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_257()) return true; + return false; + } + + final private boolean jj_3_590() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_257()) return true; + return false; + } + + final private boolean jj_3R_265() { + return false; + } + + final private boolean jj_3_601() { + if (jj_3R_255()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_593()) { jj_scanpos = xsp; - if (jj_3_1110()) { + if (jj_3R_266()) return true; + } + return false; + } + + final private boolean jj_3_591() { + if (jj_scan_token(TO)) return true; + if (jj_3R_255()) return true; + return false; + } + + final private boolean jj_3_241() { + if (jj_scan_token(USING)) return true; + if (jj_3R_123()) return true; + return false; + } + + final private boolean jj_3_586() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_257()) return true; + return false; + } + + final private boolean jj_3_588() { + if (jj_3R_255()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_586()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3R_264() { + return false; + } + + final private boolean jj_3_587() { + if (jj_3R_254()) return true; + return false; + } + + final private boolean jj_3_600() { + if (jj_3R_254()) return true; + if (jj_3R_256()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_591()) { jj_scanpos = xsp; - if (jj_3_1111()) { + if (jj_3R_265()) return true; + } + return false; + } + + final private boolean jj_3_240() { + if (jj_scan_token(ON)) return true; + if (jj_3R_82()) return true; + return false; + } + + final private boolean jj_3_589() { + if (jj_scan_token(TO)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_587()) { jj_scanpos = xsp; - if (jj_3_1112()) { + if (jj_3_588()) return true; + } + return false; + } + + final private boolean jj_3_584() { + if (jj_3R_255()) return true; + if (jj_3R_256()) return true; + return false; + } + + final private boolean jj_3R_263() { + return false; + } + + final private boolean jj_3_583() { + if (jj_3R_254()) return true; + return false; + } + + final private boolean jj_3_599() { + if (jj_3R_253()) return true; + if (jj_3R_256()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_589()) { jj_scanpos = xsp; - if (jj_3_1113()) { + if (jj_3R_264()) return true; + } + return false; + } + + final private boolean jj_3_582() { + if (jj_3R_253()) return true; + return false; + } + + final private boolean jj_3R_67() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_242()) { jj_scanpos = xsp; - if (jj_3_1114()) { + if (jj_3_243()) { jj_scanpos = xsp; - if (jj_3_1115()) { + if (jj_3_244()) return true; + } + } + return false; + } + + final private boolean jj_3_242() { + if (jj_3R_163()) return true; + if (jj_3R_164()) return true; + if (jj_3R_70()) return true; + return false; + } + + final private boolean jj_3_585() { + if (jj_scan_token(TO)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_582()) { jj_scanpos = xsp; - if (jj_3_1116()) { + if (jj_3_583()) { jj_scanpos = xsp; - if (jj_3_1117()) { + if (jj_3_584()) return true; + } + } + return false; + } + + final private boolean jj_3_598() { + if (jj_3R_262()) return true; + if (jj_3R_256()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_585()) { jj_scanpos = xsp; - if (jj_3_1118()) { + if (jj_3R_263()) return true; + } + return false; + } + + final private boolean jj_3_597() { + if (jj_3R_261()) return true; + if (jj_3R_256()) return true; + return false; + } + + final private boolean jj_3_596() { + if (jj_3R_252()) return true; + if (jj_3R_256()) return true; + return false; + } + + final private boolean jj_3R_259() { + return false; + } + + final private boolean jj_3_581() { + if (jj_scan_token(TO)) return true; + if (jj_3R_252()) return true; + return false; + } + + final private boolean jj_3_595() { + if (jj_3R_260()) return true; + if (jj_3R_256()) return true; + return false; + } + + final private boolean jj_3_239() { + if (jj_3R_67()) return true; + return false; + } + + final private boolean jj_3_594() { + if (jj_3R_258()) return true; + if (jj_3R_256()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_581()) { jj_scanpos = xsp; - if (jj_3_1119()) { + if (jj_3R_259()) return true; + } + return false; + } + + final private boolean jj_3R_362() { + if (jj_3R_70()) return true; + return false; + } + + final private boolean jj_3R_214() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_594()) { jj_scanpos = xsp; - if (jj_3_1120()) { + if (jj_3_595()) { jj_scanpos = xsp; - if (jj_3_1121()) { + if (jj_3_596()) { jj_scanpos = xsp; - if (jj_3_1122()) { + if (jj_3_597()) { jj_scanpos = xsp; - if (jj_3_1123()) { + if (jj_3_598()) { jj_scanpos = xsp; - if (jj_3_1124()) { + if (jj_3_599()) { jj_scanpos = xsp; - if (jj_3_1125()) { + if (jj_3_600()) { jj_scanpos = xsp; - if (jj_3_1126()) { + if (jj_3_601()) return true; + } + } + } + } + } + } + } + return false; + } + + final private boolean jj_3_580() { + if (jj_scan_token(SECONDS)) return true; + return false; + } + + final private boolean jj_3R_255() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_579()) { jj_scanpos = xsp; - if (jj_3_1127()) { + if (jj_3_580()) return true; + } + return false; + } + + final private boolean jj_3_579() { + if (jj_scan_token(SECOND)) return true; + return false; + } + + final private boolean jj_3_578() { + if (jj_scan_token(MINUTES)) return true; + return false; + } + + final private boolean jj_3R_254() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_577()) { jj_scanpos = xsp; - if (jj_3_1128()) { + if (jj_3_578()) return true; + } + return false; + } + + final private boolean jj_3_577() { + if (jj_scan_token(MINUTE)) return true; + return false; + } + + final private boolean jj_3R_149() { + if (jj_3R_362()) return true; + return false; + } + + final private boolean jj_3_576() { + if (jj_scan_token(HOURS)) return true; + return false; + } + + final private boolean jj_3R_253() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_575()) { jj_scanpos = xsp; - if (jj_3_1129()) { + if (jj_3_576()) return true; + } + return false; + } + + final private boolean jj_3_575() { + if (jj_scan_token(HOUR)) return true; + return false; + } + + final private boolean jj_3_232() { + if (jj_scan_token(OUTER)) return true; + return false; + } + + final private boolean jj_3_231() { + if (jj_scan_token(OUTER)) return true; + return false; + } + + final private boolean jj_3_574() { + if (jj_scan_token(DAYS)) return true; + return false; + } + + final private boolean jj_3R_262() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_573()) { jj_scanpos = xsp; - if (jj_3_1130()) { + if (jj_3_574()) return true; + } + return false; + } + + final private boolean jj_3_230() { + if (jj_scan_token(OUTER)) return true; + return false; + } + + final private boolean jj_3_573() { + if (jj_scan_token(DAY)) return true; + return false; + } + + final private boolean jj_3_238() { + if (jj_scan_token(CROSS)) return true; + if (jj_scan_token(JOIN)) return true; + return false; + } + + final private boolean jj_3_237() { + if (jj_scan_token(FULL)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_232()) jj_scanpos = xsp; + if (jj_scan_token(JOIN)) return true; + return false; + } + + final private boolean jj_3_236() { + if (jj_scan_token(RIGHT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_231()) jj_scanpos = xsp; + if (jj_scan_token(JOIN)) return true; + return false; + } + + final private boolean jj_3_572() { + if (jj_scan_token(WEEKS)) return true; + return false; + } + + final private boolean jj_3R_261() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_571()) { jj_scanpos = xsp; - if (jj_3_1131()) { + if (jj_3_572()) return true; + } + return false; + } + + final private boolean jj_3_235() { + if (jj_scan_token(LEFT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_230()) jj_scanpos = xsp; + if (jj_scan_token(JOIN)) return true; + return false; + } + + final private boolean jj_3_571() { + if (jj_scan_token(WEEK)) return true; + return false; + } + + final private boolean jj_3_234() { + if (jj_scan_token(INNER)) return true; + if (jj_scan_token(JOIN)) return true; + return false; + } + + final private boolean jj_3_233() { + if (jj_scan_token(JOIN)) return true; + return false; + } + + final private boolean jj_3_570() { + if (jj_scan_token(MONTHS)) return true; + return false; + } + + final private boolean jj_3R_252() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_569()) { jj_scanpos = xsp; - if (jj_3_1132()) { + if (jj_3_570()) return true; + } + return false; + } + + final private boolean jj_3R_164() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_233()) { jj_scanpos = xsp; - if (jj_3_1133()) { + if (jj_3_234()) { jj_scanpos = xsp; - if (jj_3_1134()) { + if (jj_3_235()) { jj_scanpos = xsp; - if (jj_3_1135()) { + if (jj_3_236()) { jj_scanpos = xsp; - if (jj_3_1136()) { + if (jj_3_237()) { jj_scanpos = xsp; - if (jj_3_1137()) { + if (jj_3_238()) return true; + } + } + } + } + } + return false; + } + + final private boolean jj_3_569() { + if (jj_scan_token(MONTH)) return true; + return false; + } + + final private boolean jj_3_568() { + if (jj_scan_token(QUARTERS)) return true; + return false; + } + + final private boolean jj_3R_368() { + return false; + } + + final private boolean jj_3R_260() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_567()) { jj_scanpos = xsp; - if (jj_3_1138()) { + if (jj_3_568()) return true; + } + return false; + } + + final private boolean jj_3_567() { + if (jj_scan_token(QUARTER)) return true; + return false; + } + + final private boolean jj_3R_163() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_229()) { jj_scanpos = xsp; - if (jj_3_1139()) { + if (jj_3R_368()) return true; + } + return false; + } + + final private boolean jj_3_229() { + if (jj_scan_token(NATURAL)) return true; + return false; + } + + final private boolean jj_3_566() { + if (jj_scan_token(YEARS)) return true; + return false; + } + + final private boolean jj_3R_258() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_565()) { jj_scanpos = xsp; - if (jj_3_1140()) { + if (jj_3_566()) return true; + } + return false; + } + + final private boolean jj_3_565() { + if (jj_scan_token(YEAR)) return true; + return false; + } + + final private boolean jj_3_228() { + if (jj_3R_82()) return true; + return false; + } + + final private boolean jj_3R_361() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_227()) { jj_scanpos = xsp; - if (jj_3_1141()) { + if (jj_3_228()) return true; + } + return false; + } + + final private boolean jj_3_227() { + if (jj_scan_token(STAR)) return true; + return false; + } + + final private boolean jj_3_562() { + if (jj_3R_151()) return true; + return false; + } + + final private boolean jj_3_561() { + if (jj_3R_196()) return true; + return false; + } + + final private boolean jj_3R_162() { + if (jj_3R_367()) return true; + return false; + } + + final private boolean jj_3_560() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_82()) return true; + return false; + } + + final private boolean jj_3_225() { + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_564() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_560()) { + jj_scanpos = xsp; + if (jj_3_561()) { + jj_scanpos = xsp; + if (jj_3_562()) return true; + } + } + if (jj_3R_251()) return true; + return false; + } + + final private boolean jj_3_224() { + if (jj_scan_token(AS)) return true; + return false; + } + + final private boolean jj_3_226() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_224()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_225()) { + jj_scanpos = xsp; + if (jj_3R_162()) return true; + } + return false; + } + + final private boolean jj_3_563() { + if (jj_3R_244()) return true; + if (jj_3R_214()) return true; + return false; + } + + final private boolean jj_3R_143() { + if (jj_3R_361()) return true; + return false; + } + + final private boolean jj_3_558() { + if (jj_scan_token(PLUS)) return true; + return false; + } + + final private boolean jj_3_559() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_557()) { + jj_scanpos = xsp; + if (jj_3_558()) return true; + } + return false; + } + + final private boolean jj_3_557() { + if (jj_scan_token(MINUS)) return true; + return false; + } + + final private boolean jj_3R_243() { + if (jj_scan_token(INTERVAL)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_559()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_563()) { + jj_scanpos = xsp; + if (jj_3_564()) return true; + } + return false; + } + + final private boolean jj_3_223() { + if (jj_scan_token(VALUES)) return true; + if (jj_3R_161()) return true; + return false; + } + + final private boolean jj_3_222() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(VALUES)) return true; + return false; + } + + final private boolean jj_3_221() { + if (jj_3R_123()) return true; + return false; + } + + final private boolean jj_3_555() { + if (jj_scan_token(PLUS)) return true; + return false; + } + + final private boolean jj_3_556() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_554()) { + jj_scanpos = xsp; + if (jj_3_555()) return true; + } + return false; + } + + final private boolean jj_3_554() { + if (jj_scan_token(MINUS)) return true; + return false; + } + + final private boolean jj_3R_191() { + if (jj_scan_token(INTERVAL)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_556()) jj_scanpos = xsp; + if (jj_3R_244()) return true; + return false; + } + + final private boolean jj_3R_159() { + if (jj_scan_token(WHEN)) return true; + if (jj_scan_token(NOT)) return true; + return false; + } + + final private boolean jj_3R_227() { + if (jj_scan_token(PERIOD)) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3_220() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_151()) return true; + return false; + } + + final private boolean jj_3R_250() { + return false; + } + + final private boolean jj_3R_160() { + if (jj_scan_token(WHEN)) return true; + if (jj_scan_token(MATCHED)) return true; + return false; + } + + final private boolean jj_3_551() { + if (jj_3R_233()) return true; + return false; + } + + final private boolean jj_3_553() { + if (jj_scan_token(LBRACKET)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_551()) { + jj_scanpos = xsp; + if (jj_3R_250()) return true; + } + return false; + } + + final private boolean jj_3_217() { + if (jj_3R_159()) return true; + return false; + } + + final private boolean jj_3_219() { + if (jj_3R_159()) return true; + return false; + } + + final private boolean jj_3_550() { + if (jj_3R_171()) return true; + return false; + } + + final private boolean jj_3_218() { + if (jj_3R_160()) return true; + return false; + } + + final private boolean jj_3_549() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; + return false; + } + + final private boolean jj_3_215() { + if (jj_scan_token(AS)) return true; + return false; + } + + final private boolean jj_3_216() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_215()) jj_scanpos = xsp; + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_214() { + if (jj_3R_157()) return true; + return false; + } + + final private boolean jj_3_552() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_549()) { + jj_scanpos = xsp; + if (jj_3_550()) return true; + } + return false; + } + + final private boolean jj_3_213() { + if (jj_3R_156()) return true; + return false; + } + + final private boolean jj_3R_115() { + if (jj_scan_token(MERGE)) return true; + if (jj_scan_token(INTO)) return true; + return false; + } + + final private boolean jj_3R_226() { + if (jj_scan_token(MAP)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_552()) { + jj_scanpos = xsp; + if (jj_3_553()) return true; + } + return false; + } + + final private boolean jj_3R_395() { + return false; + } + + final private boolean jj_3_546() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_249()) return true; + return false; + } + + final private boolean jj_3_548() { + if (jj_3R_249()) return true; + return false; + } + + final private boolean jj_3_545() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_118()) return true; + return false; + } + + final private boolean jj_3_547() { + if (jj_3R_118()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_545()) { jj_scanpos = xsp; break; } + } + return false; + } + + final private boolean jj_3_212() { + if (jj_3R_144()) return true; + return false; + } + + final private boolean jj_3R_249() { + if (jj_scan_token(LBRACE)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_547()) { + jj_scanpos = xsp; + if (jj_3_548()) { + jj_scanpos = xsp; + if (jj_3R_395()) return true; + } + } + return false; + } + + final private boolean jj_3_211() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_209() { + if (jj_scan_token(AS)) return true; + return false; + } + + final private boolean jj_3R_248() { + return false; + } + + final private boolean jj_3_210() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_209()) jj_scanpos = xsp; + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_208() { + if (jj_3R_157()) return true; + return false; + } + + final private boolean jj_3_207() { + if (jj_3R_156()) return true; + return false; + } + + final private boolean jj_3_542() { + if (jj_3R_233()) return true; + return false; + } + + final private boolean jj_3_544() { + if (jj_scan_token(LBRACKET)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_542()) { + jj_scanpos = xsp; + if (jj_3R_248()) return true; + } + return false; + } + + final private boolean jj_3R_114() { + if (jj_scan_token(UPDATE)) return true; + if (jj_3R_168()) return true; + return false; + } + + final private boolean jj_3_541() { + if (jj_3R_171()) return true; + return false; + } + + final private boolean jj_3_540() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; + return false; + } + + final private boolean jj_3_543() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_540()) { + jj_scanpos = xsp; + if (jj_3_541()) return true; + } + return false; + } + + final private boolean jj_3_204() { + if (jj_scan_token(AS)) return true; + return false; + } + + final private boolean jj_3_206() { + if (jj_3R_144()) return true; + return false; + } + + final private boolean jj_3_205() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_204()) jj_scanpos = xsp; + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_203() { + if (jj_3R_157()) return true; + return false; + } + + final private boolean jj_3R_225() { + if (jj_scan_token(ARRAY)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_543()) { + jj_scanpos = xsp; + if (jj_3_544()) return true; + } + return false; + } + + final private boolean jj_3_202() { + if (jj_3R_156()) return true; + return false; + } + + final private boolean jj_3R_113() { + if (jj_scan_token(DELETE)) return true; + if (jj_scan_token(FROM)) return true; + return false; + } + + final private boolean jj_3_537() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_79()) return true; + return false; + } + + final private boolean jj_3_539() { + if (jj_scan_token(LBRACKET)) return true; + if (jj_3R_79()) return true; + return false; + } + + final private boolean jj_3_536() { + if (jj_scan_token(TIMESTAMP)) return true; + return false; + } + + final private boolean jj_3_538() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_247()) return true; + return false; + } + + final private boolean jj_3_523() { + if (jj_scan_token(LOCAL)) return true; + return false; + } + + final private boolean jj_3R_224() { + if (jj_scan_token(MULTISET)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_538()) { + jj_scanpos = xsp; + if (jj_3_539()) return true; + } + return false; + } + + final private boolean jj_3_535() { + if (jj_scan_token(DATETIME)) return true; + return false; + } + + final private boolean jj_3_1108() { + if (jj_scan_token(JSON)) return true; + return false; + } + + final private boolean jj_3_1107() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(SCALAR)) return true; + return false; + } + + final private boolean jj_3_1106() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(ARRAY)) return true; + return false; + } + + final private boolean jj_3_1105() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(OBJECT)) return true; + return false; + } + + final private boolean jj_3_1104() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(VALUE)) return true; + return false; + } + + final private boolean jj_3_1113() { + if (jj_scan_token(FORMAT)) return true; + if (jj_3R_309()) return true; + return false; + } + + final private boolean jj_3_522() { + if (jj_scan_token(LOCAL)) return true; + return false; + } + + final private boolean jj_3_1103() { + if (jj_scan_token(EMPTY)) return true; + return false; + } + + final private boolean jj_3_201() { + if (jj_3R_158()) return true; + return false; + } + + final private boolean jj_3_534() { + if (jj_scan_token(TIME)) return true; + return false; + } + + final private boolean jj_3_1102() { + if (jj_scan_token(UNKNOWN)) return true; + return false; + } + + final private boolean jj_3_1101() { + if (jj_scan_token(FALSE)) return true; + return false; + } + + final private boolean jj_3_1100() { + if (jj_scan_token(TRUE)) return true; + return false; + } + + final private boolean jj_3_1099() { + if (jj_scan_token(NULL)) return true; + return false; + } + + final private boolean jj_3_200() { + if (jj_3R_157()) return true; + return false; + } + + final private boolean jj_3_199() { + if (jj_3R_156()) return true; + return false; + } + + final private boolean jj_3_1098() { + if (jj_scan_token(JSON)) return true; + return false; + } + + final private boolean jj_3_1097() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(SCALAR)) return true; + return false; + } + + final private boolean jj_3_1111() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1099()) { + jj_scanpos = xsp; + if (jj_3_1100()) { + jj_scanpos = xsp; + if (jj_3_1101()) { + jj_scanpos = xsp; + if (jj_3_1102()) { + jj_scanpos = xsp; + if (jj_3_1103()) { + jj_scanpos = xsp; + if (jj_3_1104()) { + jj_scanpos = xsp; + if (jj_3_1105()) { + jj_scanpos = xsp; + if (jj_3_1106()) { + jj_scanpos = xsp; + if (jj_3_1107()) { + jj_scanpos = xsp; + if (jj_3_1108()) return true; + } + } + } + } + } + } + } + } + } + return false; + } + + final private boolean jj_3_533() { + if (jj_scan_token(DATE)) return true; + return false; + } + + final private boolean jj_3_1096() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(ARRAY)) return true; + return false; + } + + final private boolean jj_3R_289() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_533()) { + jj_scanpos = xsp; + if (jj_3_534()) { + jj_scanpos = xsp; + if (jj_3_535()) { + jj_scanpos = xsp; + if (jj_3_536()) return true; + } + } + } + if (jj_3R_219()) return true; + return false; + } + + final private boolean jj_3_198() { + if (jj_scan_token(UPSERT)) return true; + return false; + } + + final private boolean jj_3_1095() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(OBJECT)) return true; + return false; + } + + final private boolean jj_3_1094() { + if (jj_scan_token(JSON)) return true; + if (jj_scan_token(VALUE)) return true; + return false; + } + + final private boolean jj_3_197() { + if (jj_scan_token(INSERT)) return true; + return false; + } + + final private boolean jj_3_1093() { + if (jj_scan_token(EMPTY)) return true; + return false; + } + + final private boolean jj_3_1092() { + if (jj_scan_token(A)) return true; + if (jj_scan_token(SET)) return true; + return false; + } + + final private boolean jj_3_1091() { + if (jj_scan_token(UNKNOWN)) return true; + return false; + } + + final private boolean jj_3_1090() { + if (jj_scan_token(FALSE)) return true; + return false; + } + + final private boolean jj_3_1089() { + if (jj_scan_token(TRUE)) return true; + return false; + } + + final private boolean jj_3R_112() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_197()) { + jj_scanpos = xsp; + if (jj_3_198()) return true; + } + if (jj_3R_353()) return true; + return false; + } + + final private boolean jj_3_1088() { + if (jj_scan_token(NULL)) return true; + return false; + } + + final private boolean jj_3_1110() { + if (jj_scan_token(NOT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_1088()) { + jj_scanpos = xsp; + if (jj_3_1089()) { + jj_scanpos = xsp; + if (jj_3_1090()) { + jj_scanpos = xsp; + if (jj_3_1091()) { + jj_scanpos = xsp; + if (jj_3_1092()) { + jj_scanpos = xsp; + if (jj_3_1093()) { + jj_scanpos = xsp; + if (jj_3_1094()) { + jj_scanpos = xsp; + if (jj_3_1095()) { + jj_scanpos = xsp; + if (jj_3_1096()) { + jj_scanpos = xsp; + if (jj_3_1097()) { + jj_scanpos = xsp; + if (jj_3_1098()) return true; + } + } + } + } + } + } + } + } + } + } + return false; + } + + final private boolean jj_3_1109() { + if (jj_scan_token(A)) return true; + if (jj_scan_token(SET)) return true; + return false; + } + + final private boolean jj_3_532() { + if (jj_scan_token(TIMESTAMP)) return true; + if (jj_scan_token(WITH)) return true; + return false; + } + + final private boolean jj_3R_213() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1112()) { + jj_scanpos = xsp; + if (jj_3_1113()) return true; + } + return false; + } + + final private boolean jj_3_1112() { + if (jj_scan_token(IS)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_1109()) { + jj_scanpos = xsp; + if (jj_3_1110()) { + jj_scanpos = xsp; + if (jj_3_1111()) return true; + } + } + return false; + } + + final private boolean jj_3_531() { + if (jj_scan_token(TIME)) return true; + if (jj_scan_token(WITH)) return true; + return false; + } + + final private boolean jj_3_530() { + if (jj_scan_token(TIMESTAMP)) return true; + if (jj_3R_244()) return true; + return false; + } + + final private boolean jj_3_1087() { + if (jj_scan_token(UNIQUE)) return true; + return false; + } + + final private boolean jj_3_1086() { + if (jj_scan_token(EXISTS)) return true; + return false; + } + + final private boolean jj_3_529() { + if (jj_scan_token(TIME)) return true; + if (jj_3R_244()) return true; + return false; + } + + final private boolean jj_3_1085() { + if (jj_scan_token(NOT)) return true; + return false; + } + + final private boolean jj_3_1084() { + if (jj_scan_token(MINUS)) return true; + return false; + } + + final private boolean jj_3R_412() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1083()) { + jj_scanpos = xsp; + if (jj_3_1084()) { + jj_scanpos = xsp; + if (jj_3_1085()) { + jj_scanpos = xsp; + if (jj_3_1086()) { + jj_scanpos = xsp; + if (jj_3_1087()) return true; + } + } + } + } + return false; + } + + final private boolean jj_3_1083() { + if (jj_scan_token(PLUS)) return true; + return false; + } + + final private boolean jj_3_528() { + if (jj_scan_token(DATETIME)) return true; + if (jj_3R_244()) return true; + return false; + } + + final private boolean jj_3_527() { + if (jj_scan_token(DATE)) return true; + if (jj_3R_244()) return true; + return false; + } + + final private boolean jj_3_1082() { + if (jj_3R_336()) return true; + return false; + } + + final private boolean jj_3_1081() { + if (jj_scan_token(IMMEDIATELY)) return true; + if (jj_scan_token(SUCCEEDS)) return true; + return false; + } + + final private boolean jj_3_1080() { + if (jj_scan_token(IMMEDIATELY)) return true; + if (jj_scan_token(PRECEDES)) return true; + return false; + } + + final private boolean jj_3_1079() { + if (jj_scan_token(SUCCEEDS)) return true; + return false; + } + + final private boolean jj_3_196() { + if (jj_3R_155()) return true; + return false; + } + + final private boolean jj_3_526() { + if (jj_scan_token(LBRACE_TS)) return true; + if (jj_scan_token(QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3_1078() { + if (jj_scan_token(PRECEDES)) return true; + return false; + } + + final private boolean jj_3_1077() { + if (jj_scan_token(EQUALS)) return true; + return false; + } + + final private boolean jj_3_1076() { + if (jj_scan_token(OVERLAPS)) return true; + return false; + } + + final private boolean jj_3_1075() { + if (jj_scan_token(CONTAINS)) return true; + return false; + } + + final private boolean jj_3_194() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_155()) return true; + return false; + } + + final private boolean jj_3_1074() { + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(SUBMULTISET)) return true; + if (jj_scan_token(OF)) return true; + return false; + } + + final private boolean jj_3_1073() { + if (jj_scan_token(SUBMULTISET)) return true; + if (jj_scan_token(OF)) return true; + return false; + } + + final private boolean jj_3_1072() { + if (jj_scan_token(MEMBER)) return true; + if (jj_scan_token(OF)) return true; + return false; + } + + final private boolean jj_3_525() { + if (jj_scan_token(LBRACE_T)) return true; + if (jj_scan_token(QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3_1071() { + if (jj_scan_token(IS)) return true; + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(DISTINCT)) return true; + return false; + } + + final private boolean jj_3_1070() { + if (jj_scan_token(IS)) return true; + if (jj_scan_token(DISTINCT)) return true; + if (jj_scan_token(FROM)) return true; + return false; + } + + final private boolean jj_3_1069() { + if (jj_scan_token(OR)) return true; + return false; + } + + final private boolean jj_3_1068() { + if (jj_scan_token(AND)) return true; + return false; + } + + final private boolean jj_3_195() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_155()) return true; + return false; + } + + final private boolean jj_3_1067() { + if (jj_scan_token(CONCAT)) return true; + return false; + } + + final private boolean jj_3R_242() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_524()) { + jj_scanpos = xsp; + if (jj_3_525()) { + jj_scanpos = xsp; + if (jj_3_526()) { + jj_scanpos = xsp; + if (jj_3_527()) { + jj_scanpos = xsp; + if (jj_3_528()) { + jj_scanpos = xsp; + if (jj_3_529()) { + jj_scanpos = xsp; + if (jj_3_530()) { + jj_scanpos = xsp; + if (jj_3_531()) { + jj_scanpos = xsp; + if (jj_3_532()) return true; + } + } + } + } + } + } + } + } + return false; + } + + final private boolean jj_3_524() { + if (jj_scan_token(LBRACE_D)) return true; + if (jj_scan_token(QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3_1066() { + if (jj_scan_token(PERCENT_REMAINDER)) return true; + return false; + } + + final private boolean jj_3_1065() { + if (jj_scan_token(SLASH)) return true; + return false; + } + + final private boolean jj_3R_154() { + if (jj_scan_token(ORDER)) return true; + if (jj_scan_token(BY)) return true; + return false; + } + + final private boolean jj_3_1064() { + if (jj_scan_token(STAR)) return true; + return false; + } + + final private boolean jj_3_1063() { + if (jj_scan_token(MINUS)) return true; + return false; + } + + final private boolean jj_3_1062() { + if (jj_scan_token(PLUS)) return true; + return false; + } + + final private boolean jj_3R_408() { + return false; + } + + final private boolean jj_3_193() { + if (jj_3R_154()) return true; + return false; + } + + final private boolean jj_3_1061() { + if (jj_scan_token(NE2)) return true; + return false; + } + + final private boolean jj_3R_407() { + return false; + } + + final private boolean jj_3_1060() { + if (jj_scan_token(NE)) return true; + return false; + } + + final private boolean jj_3_521() { + if (jj_scan_token(BIG_QUERY_DOUBLE_QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3_1059() { + if (jj_scan_token(GE)) return true; + return false; + } + + final private boolean jj_3_192() { + if (jj_scan_token(PARTITION)) return true; + if (jj_scan_token(BY)) return true; + return false; + } + + final private boolean jj_3_1058() { + if (jj_scan_token(LE)) return true; + return false; + } + + final private boolean jj_3_1057() { + if (jj_scan_token(LT)) return true; + return false; + } + + final private boolean jj_3_1056() { + if (jj_scan_token(GT)) return true; + return false; + } + + final private boolean jj_3R_211() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1055()) { + jj_scanpos = xsp; + if (jj_3_1056()) { + jj_scanpos = xsp; + if (jj_3_1057()) { + jj_scanpos = xsp; + if (jj_3_1058()) { + jj_scanpos = xsp; + if (jj_3_1059()) { + jj_scanpos = xsp; + if (jj_3_1060()) { + jj_scanpos = xsp; + if (jj_3_1061()) { + jj_scanpos = xsp; + if (jj_3_1062()) { + jj_scanpos = xsp; + if (jj_3_1063()) { + jj_scanpos = xsp; + if (jj_3_1064()) { + jj_scanpos = xsp; + if (jj_3_1065()) { + jj_scanpos = xsp; + if (jj_3_1066()) { + jj_scanpos = xsp; + if (jj_3_1067()) { jj_scanpos = xsp; - if (jj_3_1142()) { + if (jj_3_1068()) { jj_scanpos = xsp; - if (jj_3_1143()) { + if (jj_3_1069()) { jj_scanpos = xsp; - if (jj_3_1144()) { + if (jj_3_1070()) { jj_scanpos = xsp; - if (jj_3_1145()) { + if (jj_3_1071()) { jj_scanpos = xsp; - if (jj_3_1146()) { + if (jj_3_1072()) { jj_scanpos = xsp; - if (jj_3_1147()) { + if (jj_3_1073()) { jj_scanpos = xsp; - if (jj_3_1148()) { + if (jj_3_1074()) { jj_scanpos = xsp; - if (jj_3_1149()) { + if (jj_3_1075()) { jj_scanpos = xsp; - if (jj_3_1150()) { + if (jj_3_1076()) { jj_scanpos = xsp; - if (jj_3_1151()) { + if (jj_3_1077()) { jj_scanpos = xsp; - if (jj_3_1152()) { + if (jj_3_1078()) { jj_scanpos = xsp; - if (jj_3_1153()) { + if (jj_3_1079()) { jj_scanpos = xsp; - if (jj_3_1154()) { + if (jj_3_1080()) { jj_scanpos = xsp; - if (jj_3_1155()) { + if (jj_3_1081()) { jj_scanpos = xsp; - if (jj_3_1156()) { + if (jj_3_1082()) return true; + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + return false; + } + + final private boolean jj_3_520() { + if (jj_scan_token(BIG_QUERY_QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3_1055() { + if (jj_scan_token(EQ)) return true; + return false; + } + + final private boolean jj_3R_349() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_192()) { jj_scanpos = xsp; - if (jj_3_1157()) { + if (jj_3R_407()) return true; + } + xsp = jj_scanpos; + if (jj_3_193()) { jj_scanpos = xsp; - if (jj_3_1158()) { + if (jj_3R_408()) return true; + } + return false; + } + + final private boolean jj_3R_244() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_519()) { jj_scanpos = xsp; - if (jj_3_1159()) { + if (jj_3_520()) { + jj_scanpos = xsp; + if (jj_3_521()) return true; + } + } + return false; + } + + final private boolean jj_3_519() { + if (jj_scan_token(QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3_1050() { + if (jj_scan_token(DISTINCT)) return true; + return false; + } + + final private boolean jj_3_1049() { + if (jj_scan_token(ALL)) return true; + return false; + } + + final private boolean jj_3_1051() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1049()) { + jj_scanpos = xsp; + if (jj_3_1050()) return true; + } + return false; + } + + final private boolean jj_3_1047() { + if (jj_scan_token(DISTINCT)) return true; + return false; + } + + final private boolean jj_3_1054() { + if (jj_scan_token(EXCEPT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_1051()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3_1046() { + if (jj_scan_token(ALL)) return true; + return false; + } + + final private boolean jj_3_1048() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1046()) { + jj_scanpos = xsp; + if (jj_3_1047()) return true; + } + return false; + } + + final private boolean jj_3R_89() { + if (jj_3R_80()) return true; + if (jj_3R_349()) return true; + return false; + } + + final private boolean jj_3_1044() { + if (jj_scan_token(DISTINCT)) return true; + return false; + } + + final private boolean jj_3_1053() { + if (jj_scan_token(INTERSECT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_1048()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3R_348() { + return false; + } + + final private boolean jj_3_1043() { + if (jj_scan_token(ALL)) return true; + return false; + } + + final private boolean jj_3_1045() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1043()) { + jj_scanpos = xsp; + if (jj_3_1044()) return true; + } + return false; + } + + final private boolean jj_3_191() { + if (jj_3R_154()) return true; + return false; + } + + final private boolean jj_3_518() { + if (jj_scan_token(BIG_QUERY_QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3R_347() { + return false; + } + + final private boolean jj_3_190() { + if (jj_scan_token(PARTITION)) return true; + if (jj_scan_token(BY)) return true; + return false; + } + + final private boolean jj_3_1052() { + if (jj_scan_token(UNION)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_1045()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3R_336() { + if (jj_scan_token(MULTISET)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_1052()) { + jj_scanpos = xsp; + if (jj_3_1053()) { + jj_scanpos = xsp; + if (jj_3_1054()) return true; + } + } + return false; + } + + final private boolean jj_3R_88() { + if (jj_3R_78()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_190()) { + jj_scanpos = xsp; + if (jj_3R_347()) return true; + } + xsp = jj_scanpos; + if (jj_3_191()) { + jj_scanpos = xsp; + if (jj_3R_348()) return true; + } + return false; + } + + final private boolean jj_3_517() { + if (jj_scan_token(BIG_QUERY_DOUBLE_QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3R_335() { + return false; + } + + final private boolean jj_3_1039() { + if (jj_scan_token(DISTINCT)) return true; + return false; + } + + final private boolean jj_3_1038() { + if (jj_scan_token(ALL)) return true; + return false; + } + + final private boolean jj_3_516() { + if (jj_scan_token(C_STYLE_ESCAPED_STRING_LITERAL)) return true; + return false; + } + + final private boolean jj_3_1037() { + if (jj_scan_token(SET_MINUS)) return true; + return false; + } + + final private boolean jj_3_1036() { + if (jj_scan_token(EXCEPT)) return true; + return false; + } + + final private boolean jj_3_188() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_84()) return true; + return false; + } + + final private boolean jj_3R_334() { + return false; + } + + final private boolean jj_3_1035() { + if (jj_scan_token(DISTINCT)) return true; + return false; + } + + final private boolean jj_3_1042() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1036()) { + jj_scanpos = xsp; + if (jj_3_1037()) return true; + } + xsp = jj_scanpos; + if (jj_3_1038()) { + jj_scanpos = xsp; + if (jj_3_1039()) { + jj_scanpos = xsp; + if (jj_3R_335()) return true; + } + } + return false; + } + + final private boolean jj_3_1034() { + if (jj_scan_token(ALL)) return true; + return false; + } + + final private boolean jj_3_189() { + if (jj_3R_153()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_188()) { jj_scanpos = xsp; break; } + } + return false; + } + + final private boolean jj_3R_333() { + return false; + } + + final private boolean jj_3_1033() { + if (jj_scan_token(DISTINCT)) return true; + return false; + } + + final private boolean jj_3_1041() { + if (jj_scan_token(INTERSECT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_1034()) { + jj_scanpos = xsp; + if (jj_3_1035()) { + jj_scanpos = xsp; + if (jj_3R_334()) return true; + } + } + return false; + } + + final private boolean jj_3_1032() { + if (jj_scan_token(ALL)) return true; + return false; + } + + final private boolean jj_3R_354() { + if (jj_3R_151()) return true; + return false; + } + + final private boolean jj_3_1040() { + if (jj_scan_token(UNION)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_1032()) { + jj_scanpos = xsp; + if (jj_3_1033()) { + jj_scanpos = xsp; + if (jj_3R_333()) return true; + } + } + return false; + } + + final private boolean jj_3_1022() { + if (jj_scan_token(TRUNCATE)) return true; + return false; + } + + final private boolean jj_3_513() { + if (jj_scan_token(UESCAPE)) return true; + if (jj_scan_token(QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3R_340() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1040()) { + jj_scanpos = xsp; + if (jj_3_1041()) { + jj_scanpos = xsp; + if (jj_3_1042()) return true; + } + } + return false; + } + + final private boolean jj_3_1021() { + if (jj_scan_token(RIGHT)) return true; + return false; + } + + final private boolean jj_3_1028() { + if (jj_3R_171()) return true; + return false; + } + + final private boolean jj_3R_246() { + if (jj_scan_token(QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3_1027() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; + return false; + } + + final private boolean jj_3R_116() { + if (jj_scan_token(CALL)) return true; + if (jj_3R_354()) return true; + return false; + } + + final private boolean jj_3_1020() { + if (jj_scan_token(LEFT)) return true; + return false; + } + + final private boolean jj_3_1026() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(STAR)) return true; + return false; + } + + final private boolean jj_3_1025() { + if (jj_3R_331()) return true; + return false; + } + + final private boolean jj_3_182() { + if (jj_scan_token(SCHEMA)) return true; + return false; + } + + final private boolean jj_3_1024() { + if (jj_3R_330()) return true; + return false; + } + + final private boolean jj_3_1023() { + if (jj_3R_329()) return true; + return false; + } + + final private boolean jj_3_1019() { + if (jj_scan_token(INSERT)) return true; + return false; + } + + final private boolean jj_3R_332() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1019()) { + jj_scanpos = xsp; + if (jj_3_1020()) { + jj_scanpos = xsp; + if (jj_3_1021()) { + jj_scanpos = xsp; + if (jj_3_1022()) return true; + } + } + } + return false; + } + + final private boolean jj_3_181() { + if (jj_scan_token(CATALOG)) return true; + return false; + } + + final private boolean jj_3_512() { + if (jj_scan_token(UNICODE_STRING_LITERAL)) return true; + return false; + } + + final private boolean jj_3_187() { + Token xsp; + xsp = jj_scanpos; + if (jj_scan_token(598)) jj_scanpos = xsp; + if (jj_3R_152()) return true; + return false; + } + + final private boolean jj_3_511() { + if (jj_scan_token(QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3_1031() { + Token xsp; + xsp = jj_scanpos; + if (jj_3R_332()) { + jj_scanpos = xsp; + if (jj_3_1023()) { + jj_scanpos = xsp; + if (jj_3_1024()) { + jj_scanpos = xsp; + if (jj_3_1025()) return true; + } + } + } + xsp = jj_scanpos; + if (jj_3_1026()) { + jj_scanpos = xsp; + if (jj_3_1027()) { + jj_scanpos = xsp; + if (jj_3_1028()) return true; + } + } + return false; + } + + final private boolean jj_3_510() { + if (jj_scan_token(PREFIXED_STRING_LITERAL)) return true; + return false; + } + + final private boolean jj_3_184() { + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_186() { + Token xsp; + xsp = jj_scanpos; + if (jj_scan_token(619)) { jj_scanpos = xsp; - if (jj_3_1160()) { + if (jj_scan_token(814)) { jj_scanpos = xsp; - if (jj_3_1161()) { + if (jj_scan_token(813)) { jj_scanpos = xsp; - if (jj_3_1162()) { + if (jj_scan_token(810)) { jj_scanpos = xsp; - if (jj_3_1163()) { + if (jj_scan_token(811)) { jj_scanpos = xsp; - if (jj_3_1164()) { + if (jj_scan_token(812)) { jj_scanpos = xsp; - if (jj_3_1165()) { + if (jj_scan_token(809)) return true; + } + } + } + } + } + } + return false; + } + + final private boolean jj_3_183() { + if (jj_scan_token(TABLE)) return true; + return false; + } + + final private boolean jj_3_515() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_510()) { jj_scanpos = xsp; - if (jj_3_1166()) { + if (jj_3_511()) { jj_scanpos = xsp; - if (jj_3_1167()) { + if (jj_3_512()) return true; + } + } + while (true) { + xsp = jj_scanpos; + if (jj_3R_246()) { jj_scanpos = xsp; break; } + } + xsp = jj_scanpos; + if (jj_3_513()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3_1030() { + if (jj_scan_token(CONVERT)) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3_180() { + if (jj_scan_token(DATABASE)) return true; + return false; + } + + final private boolean jj_3R_352() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_183()) jj_scanpos = xsp; + if (jj_3R_151()) return true; + return false; + } + + final private boolean jj_3_1029() { + if (jj_3R_295()) return true; + return false; + } + + final private boolean jj_3R_392() { + if (jj_3R_298()) return true; + return false; + } + + final private boolean jj_3R_245() { + if (jj_scan_token(QUOTED_STRING)) return true; + return false; + } + + final private boolean jj_3_185() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_180()) { jj_scanpos = xsp; - if (jj_3_1168()) { + if (jj_3_181()) { jj_scanpos = xsp; - if (jj_3_1169()) { + if (jj_3_182()) return true; + } + } + if (jj_3R_151()) return true; + return false; + } + + final private boolean jj_3R_391() { + if (jj_3R_296()) return true; + return false; + } + + final private boolean jj_3R_111() { + if (jj_scan_token(DESCRIBE)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_185()) { jj_scanpos = xsp; - if (jj_3_1170()) { + if (jj_3R_352()) { jj_scanpos = xsp; - if (jj_3_1171()) { + if (jj_3_187()) return true; + } + } + return false; + } + + final private boolean jj_3R_390() { + if (jj_3R_299()) return true; + return false; + } + + final private boolean jj_3R_389() { + if (jj_3R_297()) return true; + return false; + } + + final private boolean jj_3R_388() { + if (jj_3R_291()) return true; + return false; + } + + final private boolean jj_3R_137() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_514()) { jj_scanpos = xsp; - if (jj_3_1172()) { + if (jj_3_515()) { jj_scanpos = xsp; - if (jj_3_1173()) { + if (jj_3_516()) { jj_scanpos = xsp; - if (jj_3_1174()) { + if (jj_3_517()) { jj_scanpos = xsp; - if (jj_3_1175()) { + if (jj_3_518()) return true; + } + } + } + } + return false; + } + + final private boolean jj_3_514() { + if (jj_scan_token(BINARY_STRING_LITERAL)) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3R_245()) { jj_scanpos = xsp; break; } + } + return false; + } + + final private boolean jj_3_177() { + if (jj_scan_token(ALL)) return true; + return false; + } + + final private boolean jj_3_179() { + if (jj_scan_token(INCLUDING)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_177()) jj_scanpos = xsp; + if (jj_scan_token(ATTRIBUTES)) return true; + return false; + } + + final private boolean jj_3R_387() { + if (jj_3R_293()) return true; + return false; + } + + final private boolean jj_3_178() { + if (jj_scan_token(EXCLUDING)) return true; + if (jj_scan_token(ATTRIBUTES)) return true; + return false; + } + + final private boolean jj_3R_386() { + if (jj_3R_294()) return true; + return false; + } + + final private boolean jj_3R_150() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_178()) { jj_scanpos = xsp; - if (jj_3_1176()) { + if (jj_3_179()) return true; + } + return false; + } + + final private boolean jj_3R_385() { + if (jj_3R_290()) return true; + return false; + } + + final private boolean jj_3R_384() { + if (jj_3R_288()) return true; + return false; + } + + final private boolean jj_3_509() { + if (jj_scan_token(NULL)) return true; + return false; + } + + final private boolean jj_3_176() { + if (jj_scan_token(WITHOUT)) return true; + if (jj_scan_token(IMPLEMENTATION)) return true; + return false; + } + + final private boolean jj_3_508() { + if (jj_scan_token(UNKNOWN)) return true; + return false; + } + + final private boolean jj_3R_223() { + if (jj_scan_token(LBRACE_FN)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3R_384()) { jj_scanpos = xsp; - if (jj_3_1177()) { + if (jj_3R_385()) { jj_scanpos = xsp; - if (jj_3_1178()) { + if (jj_3R_386()) { jj_scanpos = xsp; - if (jj_3_1179()) { + if (jj_3R_387()) { jj_scanpos = xsp; - if (jj_3_1180()) { + if (jj_3R_388()) { jj_scanpos = xsp; - if (jj_3_1181()) { + if (jj_3R_389()) { jj_scanpos = xsp; - if (jj_3_1182()) { + if (jj_3R_390()) { jj_scanpos = xsp; - if (jj_3_1183()) { + if (jj_3R_391()) { jj_scanpos = xsp; - if (jj_3_1184()) { + if (jj_3R_392()) { jj_scanpos = xsp; - if (jj_3_1185()) { + if (jj_3_1029()) { jj_scanpos = xsp; - if (jj_3_1186()) { + if (jj_3_1030()) { jj_scanpos = xsp; - if (jj_3_1187()) { + if (jj_3_1031()) return true; + } + } + } + } + } + } + } + } + } + } + } + return false; + } + + final private boolean jj_3_507() { + if (jj_scan_token(FALSE)) return true; + return false; + } + + final private boolean jj_3R_241() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_506()) { jj_scanpos = xsp; - if (jj_3_1188()) { + if (jj_3_507()) { jj_scanpos = xsp; - if (jj_3_1189()) { + if (jj_3_508()) { jj_scanpos = xsp; - if (jj_3_1190()) { + if (jj_3_509()) return true; + } + } + } + return false; + } + + final private boolean jj_3_175() { + if (jj_scan_token(WITH)) return true; + if (jj_scan_token(IMPLEMENTATION)) return true; + return false; + } + + final private boolean jj_3_506() { + if (jj_scan_token(TRUE)) return true; + return false; + } + + final private boolean jj_3_174() { + if (jj_scan_token(WITH)) return true; + if (jj_scan_token(TYPE)) return true; + return false; + } + + final private boolean jj_3_505() { + if (jj_3R_196()) return true; + return false; + } + + final private boolean jj_3_504() { + if (jj_scan_token(MINUS)) return true; + if (jj_3R_196()) return true; + return false; + } + + final private boolean jj_3_1018() { + if (jj_scan_token(USER)) return true; + return false; + } + + final private boolean jj_3_1017() { + if (jj_scan_token(SYSTEM_USER)) return true; + return false; + } + + final private boolean jj_3_1016() { + if (jj_scan_token(SESSION_USER)) return true; + return false; + } + + final private boolean jj_3_1015() { + if (jj_scan_token(LOCALTIMESTAMP)) return true; + return false; + } + + final private boolean jj_3R_138() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_503()) { jj_scanpos = xsp; - if (jj_3_1191()) { + if (jj_3_504()) { jj_scanpos = xsp; - if (jj_3_1192()) { + if (jj_3_505()) return true; + } + } + return false; + } + + final private boolean jj_3_503() { + if (jj_scan_token(PLUS)) return true; + if (jj_3R_196()) return true; + return false; + } + + final private boolean jj_3_1014() { + if (jj_scan_token(LOCALTIME)) return true; + return false; + } + + final private boolean jj_3_173() { + if (jj_3R_115()) return true; + return false; + } + + final private boolean jj_3_1013() { + if (jj_scan_token(CURRENT_USER)) return true; + return false; + } + + final private boolean jj_3_1012() { + if (jj_scan_token(CURRENT_TIMESTAMP)) return true; + return false; + } + + final private boolean jj_3_172() { + if (jj_3R_114()) return true; + return false; + } + + final private boolean jj_3_1011() { + if (jj_scan_token(CURRENT_TIME)) return true; + return false; + } + + final private boolean jj_3_1010() { + if (jj_scan_token(CURRENT_SCHEMA)) return true; + return false; + } + + final private boolean jj_3_171() { + if (jj_3R_113()) return true; + return false; + } + + final private boolean jj_3_1009() { + if (jj_scan_token(CURRENT_ROLE)) return true; + return false; + } + + final private boolean jj_3_1008() { + if (jj_scan_token(CURRENT_PATH)) return true; + return false; + } + + final private boolean jj_3_170() { + if (jj_3R_112()) return true; + return false; + } + + final private boolean jj_3_1007() { + if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; + return false; + } + + final private boolean jj_3_1006() { + if (jj_scan_token(CURRENT_DATE)) return true; + return false; + } + + final private boolean jj_3_169() { + if (jj_3R_80()) return true; + return false; + } + + final private boolean jj_3_1005() { + if (jj_scan_token(CURRENT_CATALOG)) return true; + return false; + } + + final private boolean jj_3_502() { + if (jj_scan_token(APPROX_NUMERIC_LITERAL)) return true; + return false; + } + + final private boolean jj_3R_229() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1005()) { jj_scanpos = xsp; - if (jj_3_1193()) { + if (jj_3_1006()) { jj_scanpos = xsp; - if (jj_3_1194()) { + if (jj_3_1007()) { jj_scanpos = xsp; - if (jj_3_1195()) { + if (jj_3_1008()) { jj_scanpos = xsp; - if (jj_3_1196()) { + if (jj_3_1009()) { jj_scanpos = xsp; - if (jj_3_1197()) { + if (jj_3_1010()) { jj_scanpos = xsp; - if (jj_3_1198()) { + if (jj_3_1011()) { jj_scanpos = xsp; - if (jj_3_1199()) { + if (jj_3_1012()) { jj_scanpos = xsp; - if (jj_3_1200()) { + if (jj_3_1013()) { jj_scanpos = xsp; - if (jj_3_1201()) { + if (jj_3_1014()) { jj_scanpos = xsp; - if (jj_3_1202()) { + if (jj_3_1015()) { jj_scanpos = xsp; - if (jj_3_1203()) { + if (jj_3_1016()) { jj_scanpos = xsp; - if (jj_3_1204()) { + if (jj_3_1017()) { jj_scanpos = xsp; - if (jj_3_1205()) { + if (jj_3_1018()) return true; + } + } + } + } + } + } + } + } + } + } + } + } + } + return false; + } + + final private boolean jj_3R_152() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_169()) { jj_scanpos = xsp; - if (jj_3_1206()) { + if (jj_3_170()) { jj_scanpos = xsp; - if (jj_3_1207()) { + if (jj_3_171()) { jj_scanpos = xsp; - if (jj_3_1208()) { + if (jj_3_172()) { jj_scanpos = xsp; - if (jj_3_1209()) { + if (jj_3_173()) return true; + } + } + } + } + return false; + } + + final private boolean jj_3_501() { + if (jj_scan_token(DECIMAL)) return true; + if (jj_3R_244()) return true; + return false; + } + + final private boolean jj_3_500() { + if (jj_scan_token(DECIMAL_NUMERIC_LITERAL)) return true; + return false; + } + + final private boolean jj_3_1004() { + if (jj_scan_token(YEAR)) return true; + return false; + } + + final private boolean jj_3_1003() { + if (jj_scan_token(VAR_SAMP)) return true; + return false; + } + + final private boolean jj_3_1002() { + if (jj_scan_token(VAR_POP)) return true; + return false; + } + + final private boolean jj_3_1001() { + if (jj_scan_token(USER)) return true; + return false; + } + + final private boolean jj_3R_196() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_499()) { jj_scanpos = xsp; - if (jj_3_1210()) { + if (jj_3_500()) { jj_scanpos = xsp; - if (jj_3_1211()) { + if (jj_3_501()) { jj_scanpos = xsp; - if (jj_3_1212()) { + if (jj_3_502()) return true; + } + } + } + return false; + } + + final private boolean jj_3_499() { + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + return false; + } + + final private boolean jj_3_1000() { + if (jj_scan_token(TRUNCATE)) return true; + return false; + } + + final private boolean jj_3_999() { + if (jj_scan_token(UPPER)) return true; + return false; + } + + final private boolean jj_3_998() { + if (jj_scan_token(SUM)) return true; + return false; + } + + final private boolean jj_3_997() { + if (jj_scan_token(STDDEV_SAMP)) return true; + return false; + } + + final private boolean jj_3_996() { + if (jj_scan_token(STDDEV_POP)) return true; + return false; + } + + final private boolean jj_3_995() { + if (jj_scan_token(SQRT)) return true; + return false; + } + + final private boolean jj_3_168() { + if (jj_scan_token(AS)) return true; + if (jj_scan_token(DOT_FORMAT)) return true; + return false; + } + + final private boolean jj_3_994() { + if (jj_scan_token(SOME)) return true; + return false; + } + + final private boolean jj_3_498() { + if (jj_3R_240()) return true; + return false; + } + + final private boolean jj_3_993() { + if (jj_scan_token(SECOND)) return true; + return false; + } + + final private boolean jj_3_992() { + if (jj_scan_token(ROW_NUMBER)) return true; + return false; + } + + final private boolean jj_3_167() { + if (jj_scan_token(AS)) return true; + if (jj_scan_token(JSON)) return true; + return false; + } + + final private boolean jj_3_497() { + if (jj_3R_243()) return true; + return false; + } + + final private boolean jj_3_991() { + if (jj_scan_token(RIGHT)) return true; + return false; + } + + final private boolean jj_3_990() { + if (jj_scan_token(REGR_SYY)) return true; + return false; + } + + final private boolean jj_3_989() { + if (jj_scan_token(REGR_SXX)) return true; + return false; + } + + final private boolean jj_3_166() { + if (jj_scan_token(AS)) return true; + if (jj_scan_token(XML)) return true; + return false; + } + + final private boolean jj_3_988() { + if (jj_scan_token(REGR_COUNT)) return true; + return false; + } + + final private boolean jj_3_987() { + if (jj_scan_token(RANK)) return true; + return false; + } + + final private boolean jj_3R_221() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_497()) { jj_scanpos = xsp; - if (jj_3_1213()) { + if (jj_3_498()) return true; + } + return false; + } + + final private boolean jj_3_986() { + if (jj_scan_token(POWER)) return true; + return false; + } + + final private boolean jj_3_985() { + if (jj_scan_token(PERCENT_RANK)) return true; + return false; + } + + final private boolean jj_3_984() { + if (jj_scan_token(PERCENTILE_DISC)) return true; + return false; + } + + final private boolean jj_3_165() { + if (jj_3R_150()) return true; + return false; + } + + final private boolean jj_3_983() { + if (jj_scan_token(PERCENTILE_CONT)) return true; + return false; + } + + final private boolean jj_3_982() { + if (jj_scan_token(OCTET_LENGTH)) return true; + return false; + } + + final private boolean jj_3_981() { + if (jj_scan_token(NULLIF)) return true; + return false; + } + + final private boolean jj_3R_110() { + if (jj_scan_token(EXPLAIN)) return true; + if (jj_scan_token(PLAN)) return true; + return false; + } + + final private boolean jj_3_980() { + if (jj_scan_token(NTILE)) return true; + return false; + } + + final private boolean jj_3_979() { + if (jj_scan_token(NTH_VALUE)) return true; + return false; + } + + final private boolean jj_3_978() { + if (jj_scan_token(MONTH)) return true; + return false; + } + + final private boolean jj_3_977() { + if (jj_scan_token(MOD)) return true; + return false; + } + + final private boolean jj_3_976() { + if (jj_scan_token(MINUTE)) return true; + return false; + } + + final private boolean jj_3_975() { + if (jj_scan_token(MIN)) return true; + return false; + } + + final private boolean jj_3_974() { + if (jj_scan_token(MAX)) return true; + return false; + } + + final private boolean jj_3_973() { + if (jj_scan_token(LOWER)) return true; + return false; + } + + final private boolean jj_3_496() { + if (jj_3R_242()) return true; + return false; + } + + final private boolean jj_3_972() { + if (jj_scan_token(LOCALTIMESTAMP)) return true; + return false; + } + + final private boolean jj_3_971() { + if (jj_scan_token(LOCALTIME)) return true; + return false; + } + + final private boolean jj_3_495() { + if (jj_3R_241()) return true; + return false; + } + + final private boolean jj_3_970() { + if (jj_scan_token(LN)) return true; + return false; + } + + final private boolean jj_3_969() { + if (jj_scan_token(LAST_VALUE)) return true; + return false; + } + + final private boolean jj_3_494() { + if (jj_3R_137()) return true; + return false; + } + + final private boolean jj_3_968() { + if (jj_scan_token(LEFT)) return true; + return false; + } + + final private boolean jj_3_967() { + if (jj_scan_token(LEAD)) return true; + return false; + } + + final private boolean jj_3_493() { + if (jj_3R_138()) return true; + return false; + } + + final private boolean jj_3_966() { + if (jj_scan_token(LAG)) return true; + return false; + } + + final private boolean jj_3_965() { + if (jj_scan_token(HOUR)) return true; + return false; + } + + final private boolean jj_3_964() { + if (jj_scan_token(GROUPING)) return true; + return false; + } + + final private boolean jj_3_963() { + if (jj_scan_token(INTERSECTION)) return true; + return false; + } + + final private boolean jj_3_962() { + if (jj_scan_token(FUSION)) return true; + return false; + } + + final private boolean jj_3R_240() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_493()) { jj_scanpos = xsp; - if (jj_3_1214()) { + if (jj_3_494()) { jj_scanpos = xsp; - if (jj_3_1215()) { + if (jj_3_495()) { jj_scanpos = xsp; - if (jj_3_1216()) { + if (jj_3_496()) return true; + } + } + } + return false; + } + + final private boolean jj_3_961() { + if (jj_scan_token(FLOOR)) return true; + return false; + } + + final private boolean jj_3_960() { + if (jj_scan_token(FIRST_VALUE)) return true; + return false; + } + + final private boolean jj_3_959() { + if (jj_scan_token(EXP)) return true; + return false; + } + + final private boolean jj_3_958() { + if (jj_scan_token(EVERY)) return true; + return false; + } + + final private boolean jj_3_957() { + if (jj_scan_token(ELEMENT)) return true; + return false; + } + + final private boolean jj_3_956() { + if (jj_scan_token(DENSE_RANK)) return true; + return false; + } + + final private boolean jj_3_955() { + if (jj_scan_token(CURRENT_TIMESTAMP)) return true; + return false; + } + + final private boolean jj_3_492() { + if (jj_3R_191()) return true; + return false; + } + + final private boolean jj_3_954() { + if (jj_scan_token(CURRENT_TIME)) return true; + return false; + } + + final private boolean jj_3_953() { + if (jj_scan_token(CURRENT_DATE)) return true; + return false; + } + + final private boolean jj_3_491() { + if (jj_3R_240()) return true; + return false; + } + + final private boolean jj_3_952() { + if (jj_scan_token(COUNT)) return true; + return false; + } + + final private boolean jj_3_154() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_142()) return true; + return false; + } + + final private boolean jj_3_951() { + if (jj_scan_token(CUME_DIST)) return true; + return false; + } + + final private boolean jj_3_950() { + if (jj_scan_token(COVAR_SAMP)) return true; + return false; + } + + final private boolean jj_3_949() { + if (jj_scan_token(COVAR_POP)) return true; + return false; + } + + final private boolean jj_3_163() { + if (jj_3R_148()) return true; + return false; + } + + final private boolean jj_3_948() { + if (jj_scan_token(COLLECT)) return true; + return false; + } + + final private boolean jj_3R_118() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_491()) { jj_scanpos = xsp; - if (jj_3_1217()) { + if (jj_3_492()) return true; + } + return false; + } + + final private boolean jj_3_162() { + if (jj_3R_147()) return true; + return false; + } + + final private boolean jj_3_947() { + if (jj_scan_token(COALESCE)) return true; + return false; + } + + final private boolean jj_3_161() { + if (jj_3R_146()) return true; + return false; + } + + final private boolean jj_3_946() { + if (jj_scan_token(CHARACTER_LENGTH)) return true; + return false; + } + + final private boolean jj_3_160() { + if (jj_3R_145()) return true; + return false; + } + + final private boolean jj_3_945() { + if (jj_scan_token(CHAR_LENGTH)) return true; + return false; + } + + final private boolean jj_3_159() { + if (jj_3R_144()) return true; + return false; + } + + final private boolean jj_3_944() { + if (jj_scan_token(CHAR)) return true; + return false; + } + + final private boolean jj_3_943() { + if (jj_scan_token(CEILING)) return true; + return false; + } + + final private boolean jj_3_942() { + if (jj_scan_token(CARDINALITY)) return true; + return false; + } + + final private boolean jj_3_164() { + if (jj_scan_token(FROM)) return true; + if (jj_3R_149()) return true; + return false; + } + + final private boolean jj_3_941() { + if (jj_scan_token(AVG)) return true; + return false; + } + + final private boolean jj_3_940() { + if (jj_scan_token(ABS)) return true; + return false; + } + + final private boolean jj_3_158() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_143()) return true; + return false; + } + + final private boolean jj_3R_329() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_940()) { jj_scanpos = xsp; - if (jj_3_1218()) { + if (jj_3_941()) { jj_scanpos = xsp; - if (jj_3_1219()) { + if (jj_3_942()) { jj_scanpos = xsp; - if (jj_3_1220()) { + if (jj_3_943()) { jj_scanpos = xsp; - if (jj_3_1221()) { + if (jj_3_944()) { jj_scanpos = xsp; - if (jj_3_1222()) { + if (jj_3_945()) { jj_scanpos = xsp; - if (jj_3_1223()) { + if (jj_3_946()) { jj_scanpos = xsp; - if (jj_3_1224()) { + if (jj_3_947()) { jj_scanpos = xsp; - if (jj_3_1225()) { + if (jj_3_948()) { jj_scanpos = xsp; - if (jj_3_1226()) { + if (jj_3_949()) { jj_scanpos = xsp; - if (jj_3_1227()) { + if (jj_3_950()) { jj_scanpos = xsp; - if (jj_3_1228()) { + if (jj_3_951()) { jj_scanpos = xsp; - if (jj_3_1229()) { + if (jj_3_952()) { jj_scanpos = xsp; - if (jj_3_1230()) { + if (jj_3_953()) { jj_scanpos = xsp; - if (jj_3_1231()) { + if (jj_3_954()) { jj_scanpos = xsp; - if (jj_3_1232()) { + if (jj_3_955()) { jj_scanpos = xsp; - if (jj_3_1233()) { + if (jj_3_956()) { jj_scanpos = xsp; - if (jj_3_1234()) { + if (jj_3_957()) { jj_scanpos = xsp; - if (jj_3_1235()) { + if (jj_3_958()) { jj_scanpos = xsp; - if (jj_3_1236()) { + if (jj_3_959()) { jj_scanpos = xsp; - if (jj_3_1237()) { + if (jj_3_960()) { jj_scanpos = xsp; - if (jj_3_1238()) { + if (jj_3_961()) { jj_scanpos = xsp; - if (jj_3_1239()) { + if (jj_3_962()) { jj_scanpos = xsp; - if (jj_3_1240()) { + if (jj_3_963()) { jj_scanpos = xsp; - if (jj_3_1241()) { + if (jj_3_964()) { jj_scanpos = xsp; - if (jj_3_1242()) { + if (jj_3_965()) { jj_scanpos = xsp; - if (jj_3_1243()) { + if (jj_3_966()) { jj_scanpos = xsp; - if (jj_3_1244()) { + if (jj_3_967()) { jj_scanpos = xsp; - if (jj_3_1245()) { + if (jj_3_968()) { jj_scanpos = xsp; - if (jj_3_1246()) { + if (jj_3_969()) { jj_scanpos = xsp; - if (jj_3_1247()) { + if (jj_3_970()) { jj_scanpos = xsp; - if (jj_3_1248()) { + if (jj_3_971()) { jj_scanpos = xsp; - if (jj_3_1249()) { + if (jj_3_972()) { jj_scanpos = xsp; - if (jj_3_1250()) { + if (jj_3_973()) { jj_scanpos = xsp; - if (jj_3_1251()) { + if (jj_3_974()) { jj_scanpos = xsp; - if (jj_3_1252()) { + if (jj_3_975()) { jj_scanpos = xsp; - if (jj_3_1253()) { + if (jj_3_976()) { jj_scanpos = xsp; - if (jj_3_1254()) { + if (jj_3_977()) { jj_scanpos = xsp; - if (jj_3_1255()) { + if (jj_3_978()) { jj_scanpos = xsp; - if (jj_3_1256()) { + if (jj_3_979()) { jj_scanpos = xsp; - if (jj_3_1257()) { + if (jj_3_980()) { jj_scanpos = xsp; - if (jj_3_1258()) { + if (jj_3_981()) { jj_scanpos = xsp; - if (jj_3_1259()) { + if (jj_3_982()) { jj_scanpos = xsp; - if (jj_3_1260()) { + if (jj_3_983()) { jj_scanpos = xsp; - if (jj_3_1261()) { + if (jj_3_984()) { jj_scanpos = xsp; - if (jj_3_1262()) { + if (jj_3_985()) { jj_scanpos = xsp; - if (jj_3_1263()) { + if (jj_3_986()) { jj_scanpos = xsp; - if (jj_3_1264()) { + if (jj_3_987()) { jj_scanpos = xsp; - if (jj_3_1265()) { + if (jj_3_988()) { jj_scanpos = xsp; - if (jj_3_1266()) { + if (jj_3_989()) { jj_scanpos = xsp; - if (jj_3_1267()) { + if (jj_3_990()) { jj_scanpos = xsp; - if (jj_3_1268()) { + if (jj_3_991()) { jj_scanpos = xsp; - if (jj_3_1269()) { + if (jj_3_992()) { jj_scanpos = xsp; - if (jj_3_1270()) { + if (jj_3_993()) { jj_scanpos = xsp; - if (jj_3_1271()) { + if (jj_3_994()) { jj_scanpos = xsp; - if (jj_3_1272()) { + if (jj_3_995()) { jj_scanpos = xsp; - if (jj_3_1273()) { + if (jj_3_996()) { jj_scanpos = xsp; - if (jj_3_1274()) { + if (jj_3_997()) { jj_scanpos = xsp; - if (jj_3_1275()) { + if (jj_3_998()) { jj_scanpos = xsp; - if (jj_3_1276()) { + if (jj_3_999()) { jj_scanpos = xsp; - if (jj_3_1277()) { + if (jj_3_1000()) { jj_scanpos = xsp; - if (jj_3_1278()) { + if (jj_3_1001()) { jj_scanpos = xsp; - if (jj_3_1279()) { + if (jj_3_1002()) { jj_scanpos = xsp; - if (jj_3_1280()) { + if (jj_3_1003()) { jj_scanpos = xsp; - if (jj_3_1281()) return true; - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } + if (jj_3_1004()) return true; } } } @@ -24233,2396 +27856,2197 @@ final private boolean jj_3R_328() { return false; } - final private boolean jj_3R_356() { - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3_157() { + if (jj_3R_83()) return true; return false; } - final private boolean jj_3R_171() { + final private boolean jj_3_156() { + if (jj_scan_token(STREAM)) return true; return false; } - final private boolean jj_3_257() { - if (jj_3R_118()) return true; + final private boolean jj_3_490() { + if (jj_3R_239()) return true; return false; } - final private boolean jj_3_256() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3_489() { + if (jj_3R_238()) return true; return false; } - final private boolean jj_3_1065() { - if (jj_3R_330()) return true; + final private boolean jj_3_939() { + if (jj_3R_329()) return true; return false; } - final private boolean jj_3_258() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_256()) jj_scanpos = xsp; - if (jj_3R_84()) return true; - xsp = jj_scanpos; - if (jj_3_257()) { - jj_scanpos = xsp; - if (jj_3R_171()) return true; - } + final private boolean jj_3_155() { + if (jj_scan_token(HINT_BEG)) return true; + if (jj_3R_142()) return true; return false; } - final private boolean jj_3_1064() { - if (jj_3R_329()) return true; + final private boolean jj_3_488() { + if (jj_3R_237()) return true; return false; } - final private boolean jj_3_1063() { - if (jj_3R_328()) return true; + final private boolean jj_3_938() { + if (jj_3R_151()) return true; return false; } - final private boolean jj_3R_163() { + final private boolean jj_3_153() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_142()) return true; return false; } - final private boolean jj_3_255() { - if (jj_3R_170()) return true; + final private boolean jj_3R_76() { + if (jj_scan_token(SELECT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_155()) jj_scanpos = xsp; + if (jj_3R_342()) return true; return false; } - final private boolean jj_3R_264() { + final private boolean jj_3R_228() { Token xsp; xsp = jj_scanpos; - if (jj_3_1063()) { - jj_scanpos = xsp; - if (jj_3_1064()) { + if (jj_3_938()) { jj_scanpos = xsp; - if (jj_3_1065()) return true; - } + if (jj_3_939()) return true; } return false; } - final private boolean jj_3R_84() { - if (jj_3R_265()) return true; - return false; - } - - final private boolean jj_3_254() { - if (jj_3R_169()) return true; - return false; - } - - final private boolean jj_3_253() { - if (jj_3R_168()) return true; + final private boolean jj_3R_109() { + if (jj_scan_token(DROP)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_488()) { + jj_scanpos = xsp; + if (jj_3_489()) { + jj_scanpos = xsp; + if (jj_3_490()) return true; + } + } return false; } - final private boolean jj_3_248() { - if (jj_scan_token(LATERAL)) return true; + final private boolean jj_3_487() { + if (jj_3R_236()) return true; return false; } - final private boolean jj_3_252() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_248()) jj_scanpos = xsp; - if (jj_3R_167()) return true; + final private boolean jj_3_486() { + if (jj_3R_235()) return true; return false; } - final private boolean jj_3_247() { - if (jj_scan_token(WITH)) return true; - if (jj_scan_token(ORDINALITY)) return true; + final private boolean jj_3R_330() { + if (jj_scan_token(SUBSTRING)) return true; return false; } - final private boolean jj_3R_322() { - if (jj_3R_265()) return true; + final private boolean jj_3_485() { + if (jj_3R_234()) return true; return false; } - final private boolean jj_3_246() { - if (jj_3R_161()) return true; + final private boolean jj_3R_156() { + if (jj_scan_token(HINT_BEG)) return true; + if (jj_3R_142()) return true; return false; } - final private boolean jj_3_251() { - if (jj_scan_token(UNNEST)) return true; - if (jj_3R_166()) return true; + final private boolean jj_3_484() { + if (jj_scan_token(OR)) return true; + if (jj_scan_token(REPLACE)) return true; return false; } - final private boolean jj_3_245() { - if (jj_scan_token(LATERAL)) return true; + final private boolean jj_3_936() { + if (jj_3R_327()) return true; return false; } - final private boolean jj_3_244() { - if (jj_3R_161()) return true; + final private boolean jj_3_935() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_250() { + final private boolean jj_3R_108() { + if (jj_scan_token(CREATE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_245()) jj_scanpos = xsp; - if (jj_3R_165()) return true; + if (jj_3_484()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_485()) { + jj_scanpos = xsp; + if (jj_3_486()) { + jj_scanpos = xsp; + if (jj_3_487()) return true; + } + } return false; } - final private boolean jj_3_243() { - if (jj_3R_160()) return true; + final private boolean jj_3_483() { + if (jj_scan_token(SESSION)) return true; return false; } - final private boolean jj_3_242() { - if (jj_3R_152()) return true; + final private boolean jj_3_937() { + if (jj_scan_token(OVER)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_935()) { + jj_scanpos = xsp; + if (jj_3_936()) return true; + } return false; } - final private boolean jj_3_241() { - if (jj_3R_151()) return true; + final private boolean jj_3_149() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_249() { - if (jj_3R_162()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_241()) { - jj_scanpos = xsp; - if (jj_3R_163()) return true; - } - xsp = jj_scanpos; - if (jj_3_242()) jj_scanpos = xsp; - if (jj_3R_164()) return true; - xsp = jj_scanpos; - if (jj_3_243()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_244()) jj_scanpos = xsp; + final private boolean jj_3_482() { + if (jj_scan_token(SYSTEM)) return true; return false; } - final private boolean jj_3R_332() { + final private boolean jj_3R_351() { Token xsp; xsp = jj_scanpos; - if (jj_3_249()) { + if (jj_3_482()) { jj_scanpos = xsp; - if (jj_3_250()) { - jj_scanpos = xsp; - if (jj_3_251()) { - jj_scanpos = xsp; - if (jj_3_252()) { - jj_scanpos = xsp; - if (jj_3_253()) return true; - } + if (jj_3_483()) return true; } - } - } - xsp = jj_scanpos; - if (jj_3_254()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_255()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_258()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_259()) jj_scanpos = xsp; return false; } - final private boolean jj_3R_266() { - if (jj_3R_265()) return true; + final private boolean jj_3_934() { + if (jj_scan_token(TO)) return true; + if (jj_3R_328()) return true; return false; } - final private boolean jj_3_621() { - if (jj_3R_264()) return true; + final private boolean jj_3_152() { + if (jj_3R_141()) return true; return false; } - final private boolean jj_3R_69() { - if (jj_3R_332()) return true; + final private boolean jj_3R_398() { + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_613() { - if (jj_scan_token(UESCAPE)) return true; - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3_151() { + if (jj_3R_123()) return true; return false; } - final private boolean jj_3_620() { - if (jj_scan_token(UNICODE_QUOTED_IDENTIFIER)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_613()) jj_scanpos = xsp; + final private boolean jj_3_148() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_139()) return true; return false; } - final private boolean jj_3_619() { - if (jj_scan_token(BRACKET_QUOTED_IDENTIFIER)) return true; + final private boolean jj_3_150() { + if (jj_3R_140()) return true; return false; } - final private boolean jj_3_618() { - if (jj_scan_token(BIG_QUERY_BACK_QUOTED_IDENTIFIER)) return true; + final private boolean jj_3R_107() { + if (jj_scan_token(ALTER)) return true; + if (jj_3R_351()) return true; return false; } - final private boolean jj_3_240() { - if (jj_scan_token(OUTER)) return true; - if (jj_scan_token(APPLY)) return true; + final private boolean jj_3R_142() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_617() { - if (jj_scan_token(BACK_QUOTED_IDENTIFIER)) return true; + final private boolean jj_3_933() { + if (jj_3R_219()) return true; return false; } - final private boolean jj_3_616() { - if (jj_scan_token(QUOTED_IDENTIFIER)) return true; + final private boolean jj_3_932() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_615() { - if (jj_scan_token(HYPHENATED_IDENTIFIER)) return true; + final private boolean jj_3_479() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_239() { - if (jj_scan_token(CROSS)) return true; - if (jj_scan_token(APPLY)) return true; + final private boolean jj_3_478() { + if (jj_3R_151()) return true; return false; } - final private boolean jj_3_614() { - if (jj_scan_token(IDENTIFIER)) return true; + final private boolean jj_3_931() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3R_265() { + final private boolean jj_3R_141() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_139()) return true; Token xsp; - xsp = jj_scanpos; - if (jj_3_614()) { - jj_scanpos = xsp; - if (jj_3_615()) { - jj_scanpos = xsp; - if (jj_3_616()) { - jj_scanpos = xsp; - if (jj_3_617()) { - jj_scanpos = xsp; - if (jj_3_618()) { - jj_scanpos = xsp; - if (jj_3_619()) { - jj_scanpos = xsp; - if (jj_3_620()) { - jj_scanpos = xsp; - if (jj_3_621()) return true; - } - } - } - } - } - } + while (true) { + xsp = jj_scanpos; + if (jj_3_148()) { jj_scanpos = xsp; break; } } + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_237() { - if (jj_scan_token(USING)) return true; - if (jj_3R_118()) return true; - return false; - } - - final private boolean jj_3R_212() { - if (jj_scan_token(HOOK)) return true; - return false; - } - - final private boolean jj_3_236() { - if (jj_scan_token(ON)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3R_402() { return false; } - final private boolean jj_3R_66() { + final private boolean jj_3_481() { + if (jj_scan_token(RESET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_238()) { - jj_scanpos = xsp; - if (jj_3_239()) { + if (jj_3_478()) { jj_scanpos = xsp; - if (jj_3_240()) return true; - } + if (jj_3_479()) return true; } return false; } - final private boolean jj_3_238() { - if (jj_3R_158()) return true; - if (jj_3R_159()) return true; - if (jj_3R_69()) return true; + final private boolean jj_3_147() { + if (jj_3R_137()) return true; return false; } - final private boolean jj_3_612() { - if (jj_scan_token(SATURDAY)) return true; + final private boolean jj_3_930() { + if (jj_scan_token(SPECIFIC)) return true; return false; } - final private boolean jj_3_611() { - if (jj_scan_token(FRIDAY)) return true; + final private boolean jj_3_146() { + if (jj_3R_138()) return true; return false; } - final private boolean jj_3_610() { - if (jj_scan_token(THURSDAY)) return true; + final private boolean jj_3_477() { + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_609() { - if (jj_scan_token(WEDNESDAY)) return true; + final private boolean jj_3_476() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_608() { - if (jj_scan_token(TUESDAY)) return true; + final private boolean jj_3R_324() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_930()) { + jj_scanpos = xsp; + if (jj_3R_402()) return true; + } + if (jj_3R_228()) return true; return false; } - final private boolean jj_3_607() { - if (jj_scan_token(MONDAY)) return true; + final private boolean jj_3_475() { + if (jj_3R_118()) return true; return false; } - final private boolean jj_3R_262() { + final private boolean jj_3R_139() { Token xsp; xsp = jj_scanpos; - if (jj_3_606()) { - jj_scanpos = xsp; - if (jj_3_607()) { - jj_scanpos = xsp; - if (jj_3_608()) { - jj_scanpos = xsp; - if (jj_3_609()) { - jj_scanpos = xsp; - if (jj_3_610()) { - jj_scanpos = xsp; - if (jj_3_611()) { + if (jj_3_146()) { jj_scanpos = xsp; - if (jj_3_612()) return true; - } - } - } - } - } + if (jj_3_147()) return true; } return false; } - final private boolean jj_3_606() { - if (jj_scan_token(SUNDAY)) return true; + final private boolean jj_3_480() { + if (jj_scan_token(SET)) return true; + if (jj_3R_151()) return true; return false; } - final private boolean jj_3_605() { - if (jj_scan_token(MILLENNIUM)) return true; + final private boolean jj_3_928() { + if (jj_3R_327()) return true; return false; } - final private boolean jj_3_604() { - if (jj_scan_token(CENTURY)) return true; + final private boolean jj_3_145() { + if (jj_3R_137()) return true; return false; } - final private boolean jj_3_603() { - if (jj_scan_token(DECADE)) return true; + final private boolean jj_3_927() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_602() { - if (jj_scan_token(EPOCH)) return true; + final private boolean jj_3_144() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_263() { + final private boolean jj_3R_106() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_480()) { + jj_scanpos = xsp; + if (jj_3_481()) return true; + } return false; } - final private boolean jj_3_601() { - if (jj_scan_token(YEAR)) return true; + final private boolean jj_3R_136() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_144()) { + jj_scanpos = xsp; + if (jj_3_145()) return true; + } + if (jj_scan_token(EQ)) return true; + if (jj_3R_137()) return true; return false; } - final private boolean jj_3_600() { - if (jj_scan_token(QUARTER)) return true; + final private boolean jj_3_929() { + if (jj_scan_token(OVER)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_927()) { + jj_scanpos = xsp; + if (jj_3_928()) return true; + } return false; } - final private boolean jj_3_599() { - if (jj_scan_token(MONTH)) return true; + final private boolean jj_3_474() { + if (jj_scan_token(CURRENT)) return true; return false; } - final private boolean jj_3_586() { + final private boolean jj_3_926() { + if (jj_scan_token(FILTER)) return true; if (jj_scan_token(LPAREN)) return true; - if (jj_3R_262()) return true; return false; } - final private boolean jj_3_235() { - if (jj_3R_66()) return true; + final private boolean jj_3_473() { + if (jj_scan_token(NEXT)) return true; return false; } - final private boolean jj_3R_352() { - if (jj_3R_69()) return true; + final private boolean jj_3_925() { + if (jj_3R_319()) return true; return false; } - final private boolean jj_3_598() { - if (jj_scan_token(WEEK)) return true; + final private boolean jj_3_143() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_136()) return true; + return false; + } + + final private boolean jj_3R_232() { Token xsp; xsp = jj_scanpos; - if (jj_3_586()) { + if (jj_3_473()) { jj_scanpos = xsp; - if (jj_3R_263()) return true; + if (jj_3_474()) return true; } + if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3_597() { - if (jj_scan_token(ISOYEAR)) return true; - return false; - } - - final private boolean jj_3_596() { - if (jj_scan_token(ISODOW)) return true; - return false; - } - - final private boolean jj_3_595() { - if (jj_scan_token(DOY)) return true; - return false; - } - - final private boolean jj_3_594() { - if (jj_scan_token(DOW)) return true; + final private boolean jj_3_924() { + if (jj_3R_326()) return true; return false; } - final private boolean jj_3_593() { - if (jj_scan_token(DAY)) return true; + final private boolean jj_3_923() { + if (jj_3R_325()) return true; return false; } - final private boolean jj_3_592() { - if (jj_scan_token(HOUR)) return true; + final private boolean jj_3R_140() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_136()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_143()) { jj_scanpos = xsp; break; } + } + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_591() { - if (jj_scan_token(MINUTE)) return true; + final private boolean jj_3_922() { + if (jj_3R_324()) return true; return false; } - final private boolean jj_3_590() { - if (jj_scan_token(SECOND)) return true; + final private boolean jj_3R_411() { + if (jj_3R_414()) return true; return false; } - final private boolean jj_3_589() { - if (jj_scan_token(MILLISECOND)) return true; + final private boolean jj_3_921() { + if (jj_3R_323()) return true; return false; } - final private boolean jj_3_588() { - if (jj_scan_token(MICROSECOND)) return true; + final private boolean jj_3_472() { + if (jj_scan_token(ELSE)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3R_261() { + final private boolean jj_3R_375() { Token xsp; xsp = jj_scanpos; - if (jj_3_587()) { - jj_scanpos = xsp; - if (jj_3_588()) { - jj_scanpos = xsp; - if (jj_3_589()) { - jj_scanpos = xsp; - if (jj_3_590()) { - jj_scanpos = xsp; - if (jj_3_591()) { - jj_scanpos = xsp; - if (jj_3_592()) { - jj_scanpos = xsp; - if (jj_3_593()) { - jj_scanpos = xsp; - if (jj_3_594()) { - jj_scanpos = xsp; - if (jj_3_595()) { - jj_scanpos = xsp; - if (jj_3_596()) { - jj_scanpos = xsp; - if (jj_3_597()) { - jj_scanpos = xsp; - if (jj_3_598()) { - jj_scanpos = xsp; - if (jj_3_599()) { - jj_scanpos = xsp; - if (jj_3_600()) { - jj_scanpos = xsp; - if (jj_3_601()) { - jj_scanpos = xsp; - if (jj_3_602()) { - jj_scanpos = xsp; - if (jj_3_603()) { + if (jj_3_921()) { jj_scanpos = xsp; - if (jj_3_604()) { + if (jj_3R_411()) { jj_scanpos = xsp; - if (jj_3_605()) return true; - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } + if (jj_3_922()) return true; } } return false; } - final private boolean jj_3_587() { - if (jj_scan_token(NANOSECOND)) return true; + final private boolean jj_3R_103() { + if (jj_scan_token(ANALYZE)) return true; + if (jj_3R_350()) return true; return false; } - final private boolean jj_3R_144() { - if (jj_3R_352()) return true; + final private boolean jj_3_471() { + if (jj_scan_token(WHEN)) return true; + if (jj_3R_233()) return true; return false; } - final private boolean jj_3_585() { - if (jj_3R_84()) return true; + final private boolean jj_3R_393() { return false; } - final private boolean jj_3R_319() { + final private boolean jj_3_470() { + if (jj_3R_82()) return true; + return false; + } + + final private boolean jj_3R_104() { + if (jj_scan_token(REFRESH)) return true; + if (jj_scan_token(STATISTICS)) return true; + return false; + } + + final private boolean jj_3R_231() { + if (jj_scan_token(CASE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_584()) { + if (jj_3_470()) { jj_scanpos = xsp; - if (jj_3_585()) return true; + if (jj_3R_393()) return true; } return false; } - final private boolean jj_3_228() { - if (jj_scan_token(OUTER)) return true; + final private boolean jj_3R_325() { + if (jj_3R_220()) return true; return false; } - final private boolean jj_3_584() { - if (jj_3R_261()) return true; + final private boolean jj_3R_105() { + if (jj_scan_token(DROP)) return true; + if (jj_scan_token(STATISTICS)) return true; return false; } - final private boolean jj_3_227() { - if (jj_scan_token(OUTER)) return true; + final private boolean jj_3_469() { + if (jj_3R_232()) return true; return false; } - final private boolean jj_3_226() { - if (jj_scan_token(OUTER)) return true; + final private boolean jj_3_464() { + Token xsp; + xsp = jj_scanpos; + if (jj_scan_token(539)) jj_scanpos = xsp; + if (jj_3R_228()) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_234() { - if (jj_scan_token(CROSS)) return true; - if (jj_scan_token(JOIN)) return true; + final private boolean jj_3_468() { + if (jj_3R_231()) return true; return false; } - final private boolean jj_3_233() { - if (jj_scan_token(FULL)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_228()) jj_scanpos = xsp; - if (jj_scan_token(JOIN)) return true; + final private boolean jj_3_142() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_232() { - if (jj_scan_token(RIGHT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_227()) jj_scanpos = xsp; - if (jj_scan_token(JOIN)) return true; + final private boolean jj_3_467() { + if (jj_3R_230()) return true; return false; } - final private boolean jj_3_231() { - if (jj_scan_token(LEFT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_226()) jj_scanpos = xsp; - if (jj_scan_token(JOIN)) return true; + final private boolean jj_3_920() { + if (jj_scan_token(RESPECT)) return true; + if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_230() { - if (jj_scan_token(INNER)) return true; - if (jj_scan_token(JOIN)) return true; + final private boolean jj_3_141() { + if (jj_3R_118()) return true; return false; } - final private boolean jj_3_229() { - if (jj_scan_token(JOIN)) return true; + final private boolean jj_3_466() { + if (jj_3R_151()) return true; return false; } - final private boolean jj_3R_159() { + final private boolean jj_3R_220() { Token xsp; xsp = jj_scanpos; - if (jj_3_229()) { - jj_scanpos = xsp; - if (jj_3_230()) { - jj_scanpos = xsp; - if (jj_3_231()) { - jj_scanpos = xsp; - if (jj_3_232()) { - jj_scanpos = xsp; - if (jj_3_233()) { + if (jj_3_919()) { jj_scanpos = xsp; - if (jj_3_234()) return true; - } - } - } - } + if (jj_3_920()) return true; } return false; } - final private boolean jj_3_580() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_251()) return true; + final private boolean jj_3_465() { + if (jj_3R_229()) return true; return false; } - final private boolean jj_3_581() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_251()) return true; + final private boolean jj_3_919() { + if (jj_scan_token(IGNORE)) return true; + if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3R_357() { + final private boolean jj_3R_382() { + if (jj_3R_375()) return true; return false; } - final private boolean jj_3R_158() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_225()) { - jj_scanpos = xsp; - if (jj_3R_357()) return true; - } + final private boolean jj_3R_135() { + if (jj_3R_360()) return true; + if (jj_scan_token(EQ)) return true; return false; } - final private boolean jj_3_225() { - if (jj_scan_token(NATURAL)) return true; + final private boolean jj_3_463() { + if (jj_3R_227()) return true; return false; } - final private boolean jj_3_583() { - if (jj_3R_249()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_581()) jj_scanpos = xsp; + final private boolean jj_3_462() { + if (jj_3R_226()) return true; return false; } - final private boolean jj_3_579() { - if (jj_3R_248()) return true; + final private boolean jj_3_461() { + if (jj_3R_225()) return true; return false; } - final private boolean jj_3_578() { - if (jj_3R_247()) return true; + final private boolean jj_3R_319() { + if (jj_scan_token(WITHIN)) return true; + if (jj_scan_token(GROUP)) return true; return false; } - final private boolean jj_3_577() { - if (jj_3R_256()) return true; + final private boolean jj_3_140() { + if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; return false; } - final private boolean jj_3_576() { - if (jj_3R_255()) return true; + final private boolean jj_3_460() { + if (jj_3R_224()) return true; return false; } - final private boolean jj_3_575() { - if (jj_3R_246()) return true; + final private boolean jj_3_139() { + if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_574() { - if (jj_3R_254()) return true; + final private boolean jj_3_459() { + if (jj_3R_223()) return true; return false; } - final private boolean jj_3_224() { - if (jj_3R_81()) return true; + final private boolean jj_3_138() { + if (jj_scan_token(SIZE)) return true; return false; } - final private boolean jj_3_573() { - if (jj_3R_252()) return true; + final private boolean jj_3_458() { + if (jj_3R_222()) return true; return false; } - final private boolean jj_3R_351() { + final private boolean jj_3_137() { + if (jj_scan_token(TOTAL)) return true; + return false; + } + + final private boolean jj_3_457() { + if (jj_3R_218()) return true; + return false; + } + + final private boolean jj_3R_360() { Token xsp; xsp = jj_scanpos; - if (jj_3_223()) { + if (jj_3_136()) { jj_scanpos = xsp; - if (jj_3_224()) return true; + if (jj_3_137()) { + jj_scanpos = xsp; + if (jj_3_138()) { + jj_scanpos = xsp; + if (jj_3_139()) { + jj_scanpos = xsp; + if (jj_3_140()) return true; + } + } + } } return false; } - final private boolean jj_3_223() { - if (jj_scan_token(STAR)) return true; + final private boolean jj_3_136() { + if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_582() { + final private boolean jj_3_456() { + if (jj_3R_221()) return true; + return false; + } + + final private boolean jj_3R_215() { Token xsp; xsp = jj_scanpos; - if (jj_3_573()) { + if (jj_3_456()) { jj_scanpos = xsp; - if (jj_3_574()) { + if (jj_3_457()) { jj_scanpos = xsp; - if (jj_3_575()) { + if (jj_3_458()) { + jj_scanpos = xsp; + if (jj_3_459()) { jj_scanpos = xsp; - if (jj_3_576()) { + if (jj_3_460()) { jj_scanpos = xsp; - if (jj_3_577()) { + if (jj_3_461()) { + jj_scanpos = xsp; + if (jj_3_462()) { + jj_scanpos = xsp; + if (jj_3_463()) { + jj_scanpos = xsp; + if (jj_3R_382()) { + jj_scanpos = xsp; + if (jj_3_465()) { jj_scanpos = xsp; - if (jj_3_578()) { + if (jj_3_466()) { + jj_scanpos = xsp; + if (jj_3_467()) { + jj_scanpos = xsp; + if (jj_3_468()) { jj_scanpos = xsp; - if (jj_3_579()) return true; + if (jj_3_469()) return true; + } + } + } + } + } + } } } } } } } - if (jj_3R_250()) return true; - return false; - } - - final private boolean jj_3R_245() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_582()) { - jj_scanpos = xsp; - if (jj_3_583()) return true; } return false; } - final private boolean jj_3R_157() { - if (jj_3R_356()) return true; + final private boolean jj_3R_326() { + if (jj_scan_token(WITHIN)) return true; + if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_221() { - if (jj_3R_84()) return true; + final private boolean jj_3_134() { + if (jj_scan_token(QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_220() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3_132() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_135()) return true; return false; } - final private boolean jj_3R_260() { + final private boolean jj_3_133() { + if (jj_3R_135()) return true; return false; } - final private boolean jj_3_563() { + final private boolean jj_3_918() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_251()) return true; + if (jj_3R_138()) return true; return false; } - final private boolean jj_3_222() { + final private boolean jj_3_135() { + if (jj_scan_token(WITH)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_220()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_221()) { + if (jj_3_133()) { jj_scanpos = xsp; - if (jj_3R_157()) return true; + if (jj_3_134()) return true; } return false; } - final private boolean jj_3_564() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_251()) return true; - return false; - } - - final private boolean jj_3R_138() { - if (jj_3R_351()) return true; + final private boolean jj_3_917() { + if (jj_scan_token(NEXT)) return true; return false; } - final private boolean jj_3_561() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_251()) return true; + final private boolean jj_3_916() { + if (jj_scan_token(PREV)) return true; return false; } - final private boolean jj_3R_259() { + final private boolean jj_3_453() { + if (jj_3R_220()) return true; return false; } - final private boolean jj_3_572() { - if (jj_3R_249()) return true; + final private boolean jj_3R_321() { Token xsp; xsp = jj_scanpos; - if (jj_3_564()) { + if (jj_3_916()) { jj_scanpos = xsp; - if (jj_3R_260()) return true; + if (jj_3_917()) return true; } + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_562() { - if (jj_scan_token(TO)) return true; - if (jj_3R_249()) return true; + final private boolean jj_3_455() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_138()) return true; return false; } - final private boolean jj_3_557() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_251()) return true; + final private boolean jj_3_131() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_134()) return true; return false; } - final private boolean jj_3_559() { - if (jj_3R_249()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_557()) jj_scanpos = xsp; + final private boolean jj_3_454() { + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_258() { + final private boolean jj_3R_350() { + if (jj_3R_134()) return true; return false; } - final private boolean jj_3_571() { - if (jj_3R_248()) return true; - if (jj_3R_250()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_562()) { - jj_scanpos = xsp; - if (jj_3R_259()) return true; - } + final private boolean jj_3_129() { + if (jj_scan_token(TRANSACTION)) return true; return false; } - final private boolean jj_3_558() { - if (jj_3R_248()) return true; + final private boolean jj_3_452() { + if (jj_scan_token(PERCENTILE_DISC)) return true; return false; } - final private boolean jj_3_560() { - if (jj_scan_token(TO)) return true; + final private boolean jj_3_451() { + if (jj_scan_token(PERCENTILE_CONT)) return true; + return false; + } + + final private boolean jj_3_915() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_138()) return true; + return false; + } + + final private boolean jj_3R_414() { Token xsp; xsp = jj_scanpos; - if (jj_3_558()) { + if (jj_3_451()) { jj_scanpos = xsp; - if (jj_3_559()) return true; + if (jj_3_452()) return true; } + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_219() { - if (jj_scan_token(VALUES)) return true; - if (jj_3R_156()) return true; + final private boolean jj_3_130() { + if (jj_3R_123()) return true; return false; } - final private boolean jj_3_555() { - if (jj_3R_249()) return true; - if (jj_3R_250()) return true; + final private boolean jj_3_128() { + if (jj_scan_token(TRANSACTION)) return true; return false; } - final private boolean jj_3R_257() { + final private boolean jj_3_914() { + if (jj_scan_token(LAST)) return true; return false; } - final private boolean jj_3_554() { - if (jj_3R_248()) return true; + final private boolean jj_3_913() { + if (jj_scan_token(FIRST)) return true; return false; } - final private boolean jj_3_218() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(VALUES)) return true; + final private boolean jj_3R_134() { + if (jj_3R_151()) return true; return false; } - final private boolean jj_3_570() { - if (jj_3R_247()) return true; - if (jj_3R_250()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_560()) { - jj_scanpos = xsp; - if (jj_3R_258()) return true; - } + final private boolean jj_3R_401() { return false; } - final private boolean jj_3_553() { - if (jj_3R_247()) return true; + final private boolean jj_3_912() { + if (jj_scan_token(FINAL)) return true; return false; } - final private boolean jj_3_217() { - if (jj_3R_118()) return true; + final private boolean jj_3_911() { + if (jj_scan_token(RUNNING)) return true; return false; } - final private boolean jj_3_556() { - if (jj_scan_token(TO)) return true; + final private boolean jj_3R_320() { Token xsp; xsp = jj_scanpos; - if (jj_3_553()) { + if (jj_3_911()) { jj_scanpos = xsp; - if (jj_3_554()) { + if (jj_3_912()) { jj_scanpos = xsp; - if (jj_3_555()) return true; + if (jj_3R_401()) return true; } } + xsp = jj_scanpos; + if (jj_3_913()) { + jj_scanpos = xsp; + if (jj_3_914()) return true; + } + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_569() { - if (jj_3R_256()) return true; - if (jj_3R_250()) return true; + final private boolean jj_3R_102() { + if (jj_scan_token(ROLLBACK)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_556()) { - jj_scanpos = xsp; - if (jj_3R_257()) return true; - } + if (jj_3_129()) jj_scanpos = xsp; return false; } - final private boolean jj_3R_154() { - if (jj_scan_token(WHEN)) return true; - if (jj_scan_token(NOT)) return true; + final private boolean jj_3_450() { + if (jj_scan_token(SEPARATOR)) return true; + if (jj_3R_137()) return true; return false; } - final private boolean jj_3_568() { - if (jj_3R_255()) return true; - if (jj_3R_250()) return true; + final private boolean jj_3R_101() { + if (jj_scan_token(COMMIT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_128()) jj_scanpos = xsp; return false; } - final private boolean jj_3_567() { - if (jj_3R_246()) return true; - if (jj_3R_250()) return true; + final private boolean jj_3_910() { + if (jj_scan_token(FINAL)) return true; return false; } - final private boolean jj_3R_253() { + final private boolean jj_3_449() { + if (jj_3R_71()) return true; return false; } - final private boolean jj_3_566() { - if (jj_3R_254()) return true; - if (jj_3R_250()) return true; + final private boolean jj_3_909() { + if (jj_scan_token(RUNNING)) return true; return false; } - final private boolean jj_3_552() { - if (jj_scan_token(TO)) return true; - if (jj_3R_246()) return true; + final private boolean jj_3_448() { + if (jj_3R_220()) return true; return false; } - final private boolean jj_3_565() { - if (jj_3R_252()) return true; - if (jj_3R_250()) return true; + final private boolean jj_3R_322() { Token xsp; xsp = jj_scanpos; - if (jj_3_552()) { + if (jj_3_909()) { jj_scanpos = xsp; - if (jj_3R_253()) return true; + if (jj_3_910()) return true; } + if (jj_3R_375()) return true; return false; } - final private boolean jj_3R_208() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_565()) { - jj_scanpos = xsp; - if (jj_3_566()) { - jj_scanpos = xsp; - if (jj_3_567()) { - jj_scanpos = xsp; - if (jj_3_568()) { - jj_scanpos = xsp; - if (jj_3_569()) { - jj_scanpos = xsp; - if (jj_3_570()) { - jj_scanpos = xsp; - if (jj_3_571()) { - jj_scanpos = xsp; - if (jj_3_572()) return true; - } - } - } - } - } - } - } + final private boolean jj_3_447() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_84()) return true; return false; } - final private boolean jj_3_216() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_146()) return true; + final private boolean jj_3_908() { + if (jj_3R_322()) return true; return false; } - final private boolean jj_3R_155() { - if (jj_scan_token(WHEN)) return true; - if (jj_scan_token(MATCHED)) return true; + final private boolean jj_3R_100() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(QUERY)) return true; return false; } - final private boolean jj_3_551() { - if (jj_scan_token(SECONDS)) return true; + final private boolean jj_3_446() { + if (jj_3R_83()) return true; return false; } - final private boolean jj_3R_249() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_550()) { - jj_scanpos = xsp; - if (jj_3_551()) return true; - } + final private boolean jj_3_907() { + if (jj_3R_321()) return true; return false; } - final private boolean jj_3_550() { - if (jj_scan_token(SECOND)) return true; + final private boolean jj_3_906() { + if (jj_3R_320()) return true; return false; } - final private boolean jj_3_549() { - if (jj_scan_token(MINUTES)) return true; + final private boolean jj_3_445() { + if (jj_scan_token(STRING_AGG)) return true; return false; } - final private boolean jj_3R_248() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_548()) { - jj_scanpos = xsp; - if (jj_3_549()) return true; - } + final private boolean jj_3_444() { + if (jj_scan_token(GROUP_CONCAT)) return true; return false; } - final private boolean jj_3_548() { - if (jj_scan_token(MINUTE)) return true; + final private boolean jj_3_443() { + if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; return false; } - final private boolean jj_3_213() { - if (jj_3R_154()) return true; + final private boolean jj_3_442() { + if (jj_scan_token(ARRAY_AGG)) return true; return false; } - final private boolean jj_3_215() { - if (jj_3R_154()) return true; + final private boolean jj_3_905() { + if (jj_scan_token(MATCH_NUMBER)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_214() { - if (jj_3R_155()) return true; + final private boolean jj_3_127() { + if (jj_scan_token(ASYNC)) return true; return false; } - final private boolean jj_3_547() { - if (jj_scan_token(HOURS)) return true; + final private boolean jj_3_904() { + if (jj_scan_token(CLASSIFIER)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_247() { + final private boolean jj_3R_323() { Token xsp; xsp = jj_scanpos; - if (jj_3_546()) { + if (jj_3_442()) { + jj_scanpos = xsp; + if (jj_3_443()) { + jj_scanpos = xsp; + if (jj_3_444()) { jj_scanpos = xsp; - if (jj_3_547()) return true; + if (jj_3_445()) return true; + } } + } + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_546() { - if (jj_scan_token(HOUR)) return true; + final private boolean jj_3R_300() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_904()) { + jj_scanpos = xsp; + if (jj_3_905()) { + jj_scanpos = xsp; + if (jj_3_906()) { + jj_scanpos = xsp; + if (jj_3_907()) { + jj_scanpos = xsp; + if (jj_3_908()) return true; + } + } + } + } return false; } - final private boolean jj_3_211() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3R_99() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(COMPUTE)) return true; return false; } - final private boolean jj_3_212() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_211()) jj_scanpos = xsp; - if (jj_3R_84()) return true; + final private boolean jj_3_903() { + if (jj_scan_token(SESSION)) return true; return false; } - final private boolean jj_3_210() { - if (jj_3R_152()) return true; + final private boolean jj_3_902() { + if (jj_scan_token(HOP)) return true; return false; } - final private boolean jj_3_209() { - if (jj_3R_151()) return true; + final private boolean jj_3_440() { + if (jj_3R_219()) return true; return false; } - final private boolean jj_3_545() { - if (jj_scan_token(DAYS)) return true; + final private boolean jj_3_901() { + if (jj_scan_token(TUMBLE)) return true; return false; } - final private boolean jj_3R_110() { - if (jj_scan_token(MERGE)) return true; - if (jj_scan_token(INTO)) return true; + final private boolean jj_3R_97() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(SERVICE)) return true; return false; } - final private boolean jj_3R_256() { + final private boolean jj_3R_308() { Token xsp; xsp = jj_scanpos; - if (jj_3_544()) { + if (jj_3_901()) { + jj_scanpos = xsp; + if (jj_3_902()) { jj_scanpos = xsp; - if (jj_3_545()) return true; + if (jj_3_903()) return true; + } } + if (jj_3R_399()) return true; return false; } - final private boolean jj_3_544() { - if (jj_scan_token(DAY)) return true; + final private boolean jj_3_439() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_543() { - if (jj_scan_token(WEEKS)) return true; + final private boolean jj_3_441() { + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_255() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_542()) { - jj_scanpos = xsp; - if (jj_3_543()) return true; - } + final private boolean jj_3_438() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_542() { - if (jj_scan_token(WEEK)) return true; + final private boolean jj_3R_98() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(TRANSACTION)) return true; return false; } - final private boolean jj_3_541() { - if (jj_scan_token(MONTHS)) return true; + final private boolean jj_3R_205() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_246() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_540()) { - jj_scanpos = xsp; - if (jj_3_541()) return true; - } + final private boolean jj_3R_299() { + if (jj_scan_token(TIME_TRUNC)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_540() { - if (jj_scan_token(MONTH)) return true; + final private boolean jj_3R_96() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(CONTINUOUS)) return true; return false; } - final private boolean jj_3_208() { - if (jj_3R_139()) return true; + final private boolean jj_3_437() { + if (jj_3R_218()) return true; return false; } - final private boolean jj_3_207() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_436() { + if (jj_3R_196()) return true; return false; } - final private boolean jj_3_539() { - if (jj_scan_token(QUARTERS)) return true; + final private boolean jj_3R_95() { + if (jj_scan_token(KILL)) return true; + if (jj_scan_token(SCAN)) return true; return false; } - final private boolean jj_3R_254() { + final private boolean jj_3R_75() { Token xsp; xsp = jj_scanpos; - if (jj_3_538()) { + if (jj_3_436()) { jj_scanpos = xsp; - if (jj_3_539()) return true; + if (jj_3_437()) return true; } return false; } - final private boolean jj_3_538() { - if (jj_scan_token(QUARTER)) return true; + final private boolean jj_3R_292() { + if (jj_scan_token(DATETIME_TRUNC)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_205() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3_435() { + if (jj_scan_token(EQUALS)) return true; return false; } - final private boolean jj_3_206() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_205()) jj_scanpos = xsp; - if (jj_3R_84()) return true; + final private boolean jj_3R_298() { + if (jj_scan_token(TIME_DIFF)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_204() { - if (jj_3R_152()) return true; + final private boolean jj_3_434() { + if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_203() { - if (jj_3R_151()) return true; + final private boolean jj_3_433() { + if (jj_scan_token(IMMEDIATELY)) return true; + if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_537() { - if (jj_scan_token(YEARS)) return true; + final private boolean jj_3_432() { + if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3R_252() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_536()) { - jj_scanpos = xsp; - if (jj_3_537()) return true; - } + final private boolean jj_3_431() { + if (jj_scan_token(IMMEDIATELY)) return true; + if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3_536() { - if (jj_scan_token(YEAR)) return true; + final private boolean jj_3_430() { + if (jj_scan_token(OVERLAPS)) return true; return false; } - final private boolean jj_3R_109() { - if (jj_scan_token(UPDATE)) return true; - if (jj_3R_162()) return true; + final private boolean jj_3_429() { + if (jj_3R_133()) return true; return false; } - final private boolean jj_3_533() { - if (jj_3R_146()) return true; + final private boolean jj_3R_297() { + if (jj_scan_token(TIMESTAMP_TRUNC)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_532() { - if (jj_3R_191()) return true; + final private boolean jj_3R_413() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_428()) { + jj_scanpos = xsp; + if (jj_3_429()) return true; + } return false; } - final private boolean jj_3_531() { + final private boolean jj_3_428() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_81()) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_535() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_531()) { - jj_scanpos = xsp; - if (jj_3_532()) { - jj_scanpos = xsp; - if (jj_3_533()) return true; - } - } - if (jj_3R_245()) return true; + final private boolean jj_3_126() { + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_200() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3_125() { + if (jj_scan_token(MINUS)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_202() { - if (jj_3R_139()) return true; + final private boolean jj_3_124() { + if (jj_scan_token(PLUS)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_201() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_200()) jj_scanpos = xsp; - if (jj_3R_84()) return true; + final private boolean jj_3_900() { + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_534() { - if (jj_3R_240()) return true; - if (jj_3R_208()) return true; + final private boolean jj_3_899() { + if (jj_3R_267()) return true; return false; } - final private boolean jj_3_199() { - if (jj_3R_152()) return true; + final private boolean jj_3R_406() { + if (jj_3R_413()) return true; + if (jj_scan_token(LAMBDA)) return true; return false; } - final private boolean jj_3_198() { - if (jj_3R_151()) return true; + final private boolean jj_3R_239() { + if (jj_scan_token(USER)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_529() { - if (jj_scan_token(PLUS)) return true; + final private boolean jj_3R_291() { + if (jj_scan_token(DATE_TRUNC)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_530() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_528()) { - jj_scanpos = xsp; - if (jj_3_529()) return true; - } + final private boolean jj_3R_94() { + if (jj_scan_token(ALTER)) return true; + if (jj_scan_token(USER)) return true; return false; } - final private boolean jj_3_528() { - if (jj_scan_token(MINUS)) return true; + final private boolean jj_3R_294() { + if (jj_scan_token(DATETIME_DIFF)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_108() { - if (jj_scan_token(DELETE)) return true; - if (jj_scan_token(FROM)) return true; + final private boolean jj_3R_236() { + if (jj_scan_token(USER)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_237() { - if (jj_scan_token(INTERVAL)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_530()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_534()) { - jj_scanpos = xsp; - if (jj_3_535()) return true; - } + final private boolean jj_3_119() { + if (jj_scan_token(COLUMN)) return true; return false; } - final private boolean jj_3_526() { - if (jj_scan_token(PLUS)) return true; + final private boolean jj_3_118() { + if (jj_scan_token(COLUMN)) return true; return false; } - final private boolean jj_3_527() { + final private boolean jj_3_123() { + if (jj_scan_token(DROP)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_525()) { - jj_scanpos = xsp; - if (jj_3_526()) return true; - } - return false; - } - - final private boolean jj_3_525() { - if (jj_scan_token(MINUS)) return true; + if (jj_3_119()) jj_scanpos = xsp; + if (jj_3R_132()) return true; + if (jj_3R_133()) return true; return false; } - final private boolean jj_3R_186() { - if (jj_scan_token(INTERVAL)) return true; + final private boolean jj_3_122() { + if (jj_scan_token(ADD)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_527()) jj_scanpos = xsp; - if (jj_3R_240()) return true; + if (jj_3_118()) jj_scanpos = xsp; + if (jj_3R_130()) return true; + if (jj_3R_131()) return true; return false; } - final private boolean jj_3_197() { - if (jj_3R_153()) return true; + final private boolean jj_3_121() { + if (jj_scan_token(NOLOGGING)) return true; return false; } - final private boolean jj_3_196() { - if (jj_3R_152()) return true; + final private boolean jj_3_120() { + if (jj_scan_token(LOGGING)) return true; return false; } - final private boolean jj_3_195() { - if (jj_3R_151()) return true; + final private boolean jj_3R_296() { + if (jj_scan_token(TIMESTAMP_DIFF)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_194() { - if (jj_scan_token(UPSERT)) return true; + final private boolean jj_3R_93() { + if (jj_scan_token(ALTER)) return true; + if (jj_scan_token(TABLE)) return true; return false; } - final private boolean jj_3_193() { - if (jj_scan_token(INSERT)) return true; + final private boolean jj_3_423() { + if (jj_3R_214()) return true; return false; } - final private boolean jj_3R_221() { - if (jj_scan_token(PERIOD)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_117() { + if (jj_3R_129()) return true; return false; } - final private boolean jj_3R_107() { + final private boolean jj_3R_131() { Token xsp; xsp = jj_scanpos; - if (jj_3_193()) { + if (jj_3_116()) { jj_scanpos = xsp; - if (jj_3_194()) return true; + if (jj_3_117()) return true; } - if (jj_3R_343()) return true; - return false; - } - - final private boolean jj_3R_244() { return false; } - final private boolean jj_3_523() { - if (jj_3R_227()) return true; + final private boolean jj_3_116() { + if (jj_3R_128()) return true; return false; } - final private boolean jj_3_524() { - if (jj_scan_token(LBRACKET)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_523()) { - jj_scanpos = xsp; - if (jj_3R_244()) return true; - } + final private boolean jj_3R_217() { return false; } - final private boolean jj_3R_380() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_241()) return true; + final private boolean jj_3_422() { + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3R_220() { - if (jj_scan_token(MAP)) return true; + final private boolean jj_3_427() { Token xsp; xsp = jj_scanpos; - if (jj_3R_380()) { + if (jj_3_422()) { jj_scanpos = xsp; - if (jj_3_524()) return true; + if (jj_3R_217()) return true; } + if (jj_3R_171()) return true; return false; } - final private boolean jj_3_192() { - if (jj_3R_150()) return true; + final private boolean jj_3R_295() { + if (jj_scan_token(TIMESTAMPDIFF)) return true; + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_328()) return true; return false; } - final private boolean jj_3R_383() { + final private boolean jj_3_115() { + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_520() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_243()) return true; + final private boolean jj_3R_128() { + if (jj_3R_85()) return true; + if (jj_3R_121()) return true; return false; } - final private boolean jj_3_190() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_150()) return true; + final private boolean jj_3_426() { + if (jj_scan_token(ROW)) return true; + if (jj_3R_171()) return true; return false; } - final private boolean jj_3_522() { - if (jj_3R_243()) return true; + final private boolean jj_3_425() { + if (jj_3R_216()) return true; return false; } - final private boolean jj_3_519() { + final private boolean jj_3_114() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_113()) return true; + if (jj_3R_128()) return true; return false; } - final private boolean jj_3_521() { - if (jj_3R_113()) return true; + final private boolean jj_3R_207() { Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_519()) { jj_scanpos = xsp; break; } + xsp = jj_scanpos; + if (jj_3_424()) { + jj_scanpos = xsp; + if (jj_3_425()) { + jj_scanpos = xsp; + if (jj_3_426()) { + jj_scanpos = xsp; + if (jj_3_427()) return true; + } + } } return false; } - final private boolean jj_3_191() { + final private boolean jj_3_424() { + if (jj_3R_215()) return true; + return false; + } + + final private boolean jj_3R_293() { + if (jj_scan_token(TIMESTAMPADD)) return true; if (jj_scan_token(LPAREN)) return true; - if (jj_3R_150()) return true; return false; } - final private boolean jj_3R_243() { - if (jj_scan_token(LBRACE)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_521()) { - jj_scanpos = xsp; - if (jj_3_522()) { - jj_scanpos = xsp; - if (jj_3R_383()) return true; - } - } + final private boolean jj_3R_129() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_128()) return true; return false; } - final private boolean jj_3R_149() { - if (jj_scan_token(ORDER)) return true; - if (jj_scan_token(BY)) return true; + final private boolean jj_3_421() { + if (jj_scan_token(NE2)) return true; return false; } - final private boolean jj_3R_395() { + final private boolean jj_3R_210() { + if (jj_scan_token(INFIX_CAST)) return true; + if (jj_3R_121()) return true; return false; } - final private boolean jj_3R_242() { + final private boolean jj_3_420() { + if (jj_scan_token(NE)) return true; return false; } - final private boolean jj_3_189() { - if (jj_3R_149()) return true; + final private boolean jj_3R_290() { + if (jj_scan_token(DATE_DIFF)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_517() { - if (jj_3R_227()) return true; + final private boolean jj_3_419() { + if (jj_scan_token(EQ)) return true; return false; } - final private boolean jj_3R_394() { + final private boolean jj_3_418() { + if (jj_scan_token(GE)) return true; return false; } - final private boolean jj_3_188() { - if (jj_scan_token(PARTITION)) return true; - if (jj_scan_token(BY)) return true; + final private boolean jj_3_417() { + if (jj_scan_token(GT)) return true; return false; } - final private boolean jj_3_518() { - if (jj_scan_token(LBRACKET)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_517()) { - jj_scanpos = xsp; - if (jj_3R_242()) return true; - } + final private boolean jj_3_416() { + if (jj_scan_token(LE)) return true; return false; } - final private boolean jj_3R_339() { + final private boolean jj_3R_238() { + if (jj_scan_token(INDEX)) return true; + if (jj_3R_132()) return true; + if (jj_3R_151()) return true; + return false; + } + + final private boolean jj_3R_206() { Token xsp; xsp = jj_scanpos; - if (jj_3_188()) { + if (jj_3_415()) { jj_scanpos = xsp; - if (jj_3R_394()) return true; - } - xsp = jj_scanpos; - if (jj_3_189()) { + if (jj_3_416()) { jj_scanpos = xsp; - if (jj_3R_395()) return true; + if (jj_3_417()) { + jj_scanpos = xsp; + if (jj_3_418()) { + jj_scanpos = xsp; + if (jj_3_419()) { + jj_scanpos = xsp; + if (jj_3_420()) { + jj_scanpos = xsp; + if (jj_3_421()) return true; + } + } + } + } + } } return false; } - final private boolean jj_3R_379() { - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_415() { + if (jj_scan_token(LT)) return true; return false; } - final private boolean jj_3R_219() { - if (jj_scan_token(ARRAY)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3R_379()) { - jj_scanpos = xsp; - if (jj_3_518()) return true; - } + final private boolean jj_3_898() { + if (jj_scan_token(COMMA)) return true; + if (jj_scan_token(JSON_SCOPE)) return true; return false; } - final private boolean jj_3R_86() { - if (jj_3R_79()) return true; - if (jj_3R_339()) return true; + final private boolean jj_3_897() { + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_338() { + final private boolean jj_3R_381() { return false; } - final private boolean jj_3_187() { - if (jj_3R_149()) return true; + final private boolean jj_3R_237() { + if (jj_scan_token(TABLE)) return true; + if (jj_3R_132()) return true; + if (jj_3R_151()) return true; return false; } - final private boolean jj_3R_337() { + final private boolean jj_3_414() { + if (jj_scan_token(SAFE_ORDINAL)) return true; return false; } - final private boolean jj_3_186() { - if (jj_scan_token(PARTITION)) return true; - if (jj_scan_token(BY)) return true; + final private boolean jj_3_413() { + if (jj_scan_token(SAFE_OFFSET)) return true; return false; } - final private boolean jj_3_514() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_412() { + if (jj_scan_token(ORDINAL)) return true; return false; } - final private boolean jj_3_516() { - if (jj_scan_token(LBRACKET)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3R_288() { + if (jj_scan_token(CONTAINS_SUBSTR)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_85() { - if (jj_3R_77()) return true; + final private boolean jj_3R_212() { Token xsp; xsp = jj_scanpos; - if (jj_3_186()) { + if (jj_3_411()) { jj_scanpos = xsp; - if (jj_3R_337()) return true; - } - xsp = jj_scanpos; - if (jj_3_187()) { + if (jj_3_412()) { jj_scanpos = xsp; - if (jj_3R_338()) return true; + if (jj_3_413()) { + jj_scanpos = xsp; + if (jj_3_414()) { + jj_scanpos = xsp; + if (jj_3R_381()) return true; + } + } + } } return false; } - final private boolean jj_3_513() { - if (jj_scan_token(TIMESTAMP)) return true; + final private boolean jj_3_411() { + if (jj_scan_token(OFFSET)) return true; return false; } - final private boolean jj_3_515() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_241()) return true; + final private boolean jj_3R_359() { return false; } - final private boolean jj_3R_218() { - if (jj_scan_token(MULTISET)) return true; + final private boolean jj_3R_132() { Token xsp; xsp = jj_scanpos; - if (jj_3_515()) { + if (jj_3_113()) { jj_scanpos = xsp; - if (jj_3_516()) return true; + if (jj_3R_359()) return true; } return false; } - final private boolean jj_3_512() { - if (jj_scan_token(DATETIME)) return true; + final private boolean jj_3_113() { + if (jj_scan_token(IF)) return true; + if (jj_scan_token(EXISTS)) return true; return false; } - final private boolean jj_3_184() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_83()) return true; + final private boolean jj_3R_405() { return false; } - final private boolean jj_3_511() { - if (jj_scan_token(TIME)) return true; + final private boolean jj_3_408() { + if (jj_3R_213()) return true; return false; } - final private boolean jj_3_185() { - if (jj_3R_148()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_184()) { jj_scanpos = xsp; break; } - } + final private boolean jj_3_401() { + if (jj_scan_token(DOT)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_510() { - if (jj_scan_token(DATE)) return true; + final private boolean jj_3_112() { + if (jj_scan_token(INLINE_SIZE)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3R_344() { - if (jj_3R_146()) return true; + final private boolean jj_3_111() { + if (jj_scan_token(PARALLEL)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3R_281() { + final private boolean jj_3_110() { Token xsp; xsp = jj_scanpos; - if (jj_3_510()) { - jj_scanpos = xsp; - if (jj_3_511()) { - jj_scanpos = xsp; - if (jj_3_512()) { + if (jj_3_111()) { jj_scanpos = xsp; - if (jj_3_513()) return true; + if (jj_3_112()) return true; } - } - } - if (jj_3R_213()) return true; return false; } - final private boolean jj_3_509() { - if (jj_scan_token(TIMESTAMP)) return true; - if (jj_scan_token(WITH)) return true; + final private boolean jj_3_896() { + if (jj_3R_319()) return true; return false; } - final private boolean jj_3R_111() { - if (jj_scan_token(CALL)) return true; - if (jj_3R_344()) return true; + final private boolean jj_3_407() { + if (jj_scan_token(LBRACKET)) return true; + if (jj_3R_212()) return true; return false; } - final private boolean jj_3_508() { - if (jj_scan_token(TIMESTAMP)) return true; - if (jj_3R_240()) return true; + final private boolean jj_3_109() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_507() { - if (jj_scan_token(TIME)) return true; - if (jj_3R_240()) return true; + final private boolean jj_3R_235() { + if (jj_scan_token(INDEX)) return true; + if (jj_3R_130()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_109()) jj_scanpos = xsp; + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_178() { - if (jj_scan_token(SCHEMA)) return true; + final private boolean jj_3_406() { + if (jj_3R_211()) return true; + if (jj_3R_208()) return true; return false; } - final private boolean jj_3_506() { - if (jj_scan_token(DATETIME)) return true; - if (jj_3R_240()) return true; + final private boolean jj_3_895() { + if (jj_3R_317()) return true; return false; } - final private boolean jj_3_505() { - if (jj_scan_token(DATE)) return true; - if (jj_3R_240()) return true; + final private boolean jj_3_405() { + if (jj_3R_210()) return true; return false; } - final private boolean jj_3_504() { - if (jj_scan_token(LBRACE_TS)) return true; - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3_894() { + if (jj_3R_318()) return true; return false; } - final private boolean jj_3_177() { - if (jj_scan_token(CATALOG)) return true; + final private boolean jj_3_400() { + if (jj_scan_token(ESCAPE)) return true; + if (jj_3R_207()) return true; return false; } - final private boolean jj_3_183() { - Token xsp; - xsp = jj_scanpos; - if (jj_scan_token(589)) jj_scanpos = xsp; - if (jj_3R_147()) return true; + final private boolean jj_3R_307() { + if (jj_scan_token(JSON_ARRAYAGG)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_180() { - if (jj_3R_84()) return true; + final private boolean jj_3_108() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_127()) return true; return false; } - final private boolean jj_3_182() { - Token xsp; - xsp = jj_scanpos; - if (jj_scan_token(610)) { - jj_scanpos = xsp; - if (jj_scan_token(803)) { - jj_scanpos = xsp; - if (jj_scan_token(802)) { - jj_scanpos = xsp; - if (jj_scan_token(799)) { - jj_scanpos = xsp; - if (jj_scan_token(800)) { - jj_scanpos = xsp; - if (jj_scan_token(801)) { - jj_scanpos = xsp; - if (jj_scan_token(798)) return true; - } - } - } - } - } - } + final private boolean jj_3_396() { + if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_503() { - if (jj_scan_token(LBRACE_T)) return true; - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3_399() { + if (jj_scan_token(TILDE)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_396()) jj_scanpos = xsp; return false; } - final private boolean jj_3_179() { - if (jj_scan_token(TABLE)) return true; + final private boolean jj_3_395() { + if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3R_236() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_502()) { - jj_scanpos = xsp; - if (jj_3_503()) { - jj_scanpos = xsp; - if (jj_3_504()) { - jj_scanpos = xsp; - if (jj_3_505()) { - jj_scanpos = xsp; - if (jj_3_506()) { - jj_scanpos = xsp; - if (jj_3_507()) { - jj_scanpos = xsp; - if (jj_3_508()) { - jj_scanpos = xsp; - if (jj_3_509()) return true; - } - } - } - } - } - } - } + final private boolean jj_3_394() { + if (jj_scan_token(SIMILAR)) return true; + if (jj_scan_token(TO)) return true; return false; } - final private boolean jj_3_176() { - if (jj_scan_token(DATABASE)) return true; + final private boolean jj_3_398() { + if (jj_scan_token(NEGATE)) return true; + if (jj_scan_token(TILDE)) return true; return false; } - final private boolean jj_3_502() { - if (jj_scan_token(LBRACE_D)) return true; - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3_393() { + if (jj_scan_token(RLIKE)) return true; return false; } - final private boolean jj_3R_342() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_179()) jj_scanpos = xsp; - if (jj_3R_146()) return true; + final private boolean jj_3_392() { + if (jj_scan_token(ILIKE)) return true; return false; } - final private boolean jj_3_181() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_176()) { - jj_scanpos = xsp; - if (jj_3_177()) { - jj_scanpos = xsp; - if (jj_3_178()) return true; - } - } - if (jj_3R_146()) return true; + final private boolean jj_3_389() { + if (jj_scan_token(SIMILAR)) return true; + if (jj_scan_token(TO)) return true; return false; } - final private boolean jj_3_501() { - if (jj_scan_token(BIG_QUERY_DOUBLE_QUOTED_STRING)) return true; + final private boolean jj_3R_318() { + if (jj_3R_71()) return true; return false; } - final private boolean jj_3_500() { - if (jj_scan_token(BIG_QUERY_QUOTED_STRING)) return true; + final private boolean jj_3_391() { + if (jj_scan_token(LIKE)) return true; return false; } - final private boolean jj_3R_106() { - if (jj_scan_token(DESCRIBE)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_181()) { - jj_scanpos = xsp; - if (jj_3R_342()) { - jj_scanpos = xsp; - if (jj_3_183()) return true; - } - } + final private boolean jj_3_388() { + if (jj_scan_token(RLIKE)) return true; return false; } - final private boolean jj_3R_240() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_499()) { - jj_scanpos = xsp; - if (jj_3_500()) { - jj_scanpos = xsp; - if (jj_3_501()) return true; - } - } + final private boolean jj_3_387() { + if (jj_scan_token(ILIKE)) return true; return false; } - final private boolean jj_3_499() { - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3_386() { + if (jj_scan_token(LIKE)) return true; return false; } - final private boolean jj_3_173() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_106() { + if (jj_scan_token(DESC)) return true; return false; } - final private boolean jj_3_175() { - if (jj_scan_token(INCLUDING)) return true; + final private boolean jj_3_107() { Token xsp; xsp = jj_scanpos; - if (jj_3_173()) jj_scanpos = xsp; - if (jj_scan_token(ATTRIBUTES)) return true; - return false; - } - - final private boolean jj_3_498() { - if (jj_scan_token(BIG_QUERY_QUOTED_STRING)) return true; + if (jj_3_105()) { + jj_scanpos = xsp; + if (jj_3_106()) return true; + } return false; } - final private boolean jj_3_174() { - if (jj_scan_token(EXCLUDING)) return true; - if (jj_scan_token(ATTRIBUTES)) return true; + final private boolean jj_3_105() { + if (jj_scan_token(ASC)) return true; return false; } - final private boolean jj_3R_145() { + final private boolean jj_3_390() { + if (jj_scan_token(NOT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_174()) { + if (jj_3_386()) { + jj_scanpos = xsp; + if (jj_3_387()) { jj_scanpos = xsp; - if (jj_3_175()) return true; + if (jj_3_388()) { + jj_scanpos = xsp; + if (jj_3_389()) return true; + } + } } return false; } - final private boolean jj_3_497() { - if (jj_scan_token(BIG_QUERY_DOUBLE_QUOTED_STRING)) return true; - return false; - } - - final private boolean jj_3_1057() { - if (jj_scan_token(JSON)) return true; + final private boolean jj_3_893() { + if (jj_3R_317()) return true; return false; } - final private boolean jj_3_1056() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(SCALAR)) return true; + final private boolean jj_3R_127() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1055() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(ARRAY)) return true; + final private boolean jj_3_891() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_172() { - if (jj_scan_token(WITHOUT)) return true; - if (jj_scan_token(IMPLEMENTATION)) return true; + final private boolean jj_3_397() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_390()) { + jj_scanpos = xsp; + if (jj_3_391()) { + jj_scanpos = xsp; + if (jj_3_392()) { + jj_scanpos = xsp; + if (jj_3_393()) { + jj_scanpos = xsp; + if (jj_3_394()) return true; + } + } + } + } return false; } - final private boolean jj_3_1054() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(OBJECT)) return true; + final private boolean jj_3_892() { + if (jj_3R_79()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_891()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3_496() { - if (jj_scan_token(C_STYLE_ESCAPED_STRING_LITERAL)) return true; + final private boolean jj_3R_125() { return false; } - final private boolean jj_3_1053() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(VALUE)) return true; + final private boolean jj_3R_306() { + if (jj_scan_token(JSON_ARRAY)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1062() { - if (jj_scan_token(FORMAT)) return true; - if (jj_3R_300()) return true; + final private boolean jj_3_102() { + if (jj_3R_123()) return true; return false; } - final private boolean jj_3_1052() { - if (jj_scan_token(EMPTY)) return true; + final private boolean jj_3_404() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_397()) { + jj_scanpos = xsp; + if (jj_3_398()) { + jj_scanpos = xsp; + if (jj_3_399()) return true; + } + } + if (jj_3R_209()) return true; return false; } - final private boolean jj_3_1051() { - if (jj_scan_token(UNKNOWN)) return true; + final private boolean jj_3_382() { + if (jj_scan_token(ASYMMETRIC)) return true; return false; } - final private boolean jj_3_1050() { - if (jj_scan_token(FALSE)) return true; + final private boolean jj_3_383() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_381()) { + jj_scanpos = xsp; + if (jj_3_382()) return true; + } return false; } - final private boolean jj_3_171() { - if (jj_scan_token(WITH)) return true; - if (jj_scan_token(IMPLEMENTATION)) return true; + final private boolean jj_3_381() { + if (jj_scan_token(SYMMETRIC)) return true; return false; } - final private boolean jj_3_1049() { - if (jj_scan_token(TRUE)) return true; + final private boolean jj_3_104() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_102()) { + jj_scanpos = xsp; + if (jj_3R_125()) return true; + } + if (jj_3R_126()) return true; + if (jj_scan_token(AS)) return true; + if (jj_3R_80()) return true; return false; } - final private boolean jj_3_1048() { - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_103() { + if (jj_3R_124()) return true; return false; } - final private boolean jj_3_1047() { - if (jj_scan_token(JSON)) return true; + final private boolean jj_3_379() { + if (jj_scan_token(ASYMMETRIC)) return true; return false; } - final private boolean jj_3_170() { - if (jj_scan_token(WITH)) return true; - if (jj_scan_token(TYPE)) return true; + final private boolean jj_3_385() { + if (jj_scan_token(BETWEEN)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_383()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1046() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(SCALAR)) return true; + final private boolean jj_3_890() { + if (jj_3R_317()) return true; return false; } - final private boolean jj_3_1060() { + final private boolean jj_3_380() { Token xsp; xsp = jj_scanpos; - if (jj_3_1048()) { - jj_scanpos = xsp; - if (jj_3_1049()) { - jj_scanpos = xsp; - if (jj_3_1050()) { - jj_scanpos = xsp; - if (jj_3_1051()) { - jj_scanpos = xsp; - if (jj_3_1052()) { - jj_scanpos = xsp; - if (jj_3_1053()) { - jj_scanpos = xsp; - if (jj_3_1054()) { - jj_scanpos = xsp; - if (jj_3_1055()) { - jj_scanpos = xsp; - if (jj_3_1056()) { + if (jj_3_378()) { jj_scanpos = xsp; - if (jj_3_1057()) return true; - } - } - } - } - } - } - } - } + if (jj_3_379()) return true; } return false; } - final private boolean jj_3_1045() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(ARRAY)) return true; + final private boolean jj_3_378() { + if (jj_scan_token(SYMMETRIC)) return true; return false; } - final private boolean jj_3_1044() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(OBJECT)) return true; + final private boolean jj_3R_234() { + if (jj_scan_token(TABLE)) return true; + if (jj_3R_130()) return true; + if (jj_3R_151()) return true; return false; } - final private boolean jj_3_1043() { - if (jj_scan_token(JSON)) return true; - if (jj_scan_token(VALUE)) return true; + final private boolean jj_3R_305() { + if (jj_scan_token(JSON_OBJECTAGG)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_1042() { - if (jj_scan_token(EMPTY)) return true; + final private boolean jj_3_384() { + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(BETWEEN)) return true; return false; } - final private boolean jj_3_1041() { - if (jj_scan_token(A)) return true; - if (jj_scan_token(SET)) return true; + final private boolean jj_3_101() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_122()) return true; return false; } - final private boolean jj_3_1040() { - if (jj_scan_token(UNKNOWN)) return true; + final private boolean jj_3_403() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_384()) { + jj_scanpos = xsp; + if (jj_3_385()) return true; + } + if (jj_3R_208()) return true; return false; } - final private boolean jj_3_1039() { - if (jj_scan_token(FALSE)) return true; + final private boolean jj_3R_124() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_122()) return true; return false; } - final private boolean jj_3_1038() { - if (jj_scan_token(TRUE)) return true; + final private boolean jj_3_889() { + if (jj_3R_317()) return true; return false; } - final private boolean jj_3_1037() { - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_374() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_169() { - if (jj_3R_110()) return true; + final private boolean jj_3_887() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_316()) return true; return false; } - final private boolean jj_3_493() { - if (jj_scan_token(UESCAPE)) return true; - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3_373() { + if (jj_scan_token(ANY)) return true; return false; } - final private boolean jj_3_168() { - if (jj_3R_109()) return true; + final private boolean jj_3_98() { + if (jj_scan_token(CONSTRAINT)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1059() { - if (jj_scan_token(NOT)) return true; + final private boolean jj_3_372() { + if (jj_scan_token(SOME)) return true; + return false; + } + + final private boolean jj_3_100() { Token xsp; xsp = jj_scanpos; - if (jj_3_1037()) { - jj_scanpos = xsp; - if (jj_3_1038()) { - jj_scanpos = xsp; - if (jj_3_1039()) { - jj_scanpos = xsp; - if (jj_3_1040()) { - jj_scanpos = xsp; - if (jj_3_1041()) { - jj_scanpos = xsp; - if (jj_3_1042()) { - jj_scanpos = xsp; - if (jj_3_1043()) { - jj_scanpos = xsp; - if (jj_3_1044()) { - jj_scanpos = xsp; - if (jj_3_1045()) { + if (jj_3_98()) jj_scanpos = xsp; + if (jj_scan_token(PRIMARY)) return true; + if (jj_scan_token(KEY)) return true; + return false; + } + + final private boolean jj_3_888() { + if (jj_3R_316()) return true; + return false; + } + + final private boolean jj_3_377() { + if (jj_3R_206()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_372()) { jj_scanpos = xsp; - if (jj_3_1046()) { + if (jj_3_373()) { jj_scanpos = xsp; - if (jj_3_1047()) return true; - } - } - } - } - } - } - } - } + if (jj_3_374()) return true; } } return false; } - final private boolean jj_3_167() { - if (jj_3R_108()) return true; + final private boolean jj_3_97() { + if (jj_scan_token(PRIMARY)) return true; + if (jj_scan_token(KEY)) return true; return false; } - final private boolean jj_3_1058() { - if (jj_scan_token(A)) return true; - if (jj_scan_token(SET)) return true; + final private boolean jj_3_376() { + if (jj_scan_token(IN)) return true; return false; } - final private boolean jj_3_166() { - if (jj_3R_107()) return true; + final private boolean jj_3R_304() { + if (jj_scan_token(JSON_OBJECT)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_165() { - if (jj_3R_79()) return true; + final private boolean jj_3_375() { + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(IN)) return true; return false; } - final private boolean jj_3R_207() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_1061()) { - jj_scanpos = xsp; - if (jj_3_1062()) return true; - } + final private boolean jj_3_96() { + if (jj_scan_token(DEFAULT_)) return true; + if (jj_3R_118()) return true; return false; } - final private boolean jj_3_1061() { - if (jj_scan_token(IS)) return true; + final private boolean jj_3_402() { Token xsp; xsp = jj_scanpos; - if (jj_3_1058()) { + if (jj_3_375()) { jj_scanpos = xsp; - if (jj_3_1059()) { + if (jj_3_376()) { jj_scanpos = xsp; - if (jj_3_1060()) return true; + if (jj_3_377()) return true; } } + if (jj_3R_171()) return true; return false; } - final private boolean jj_3R_147() { + final private boolean jj_3R_122() { Token xsp; xsp = jj_scanpos; - if (jj_3_165()) { + if (jj_3_99()) { jj_scanpos = xsp; - if (jj_3_166()) { - jj_scanpos = xsp; - if (jj_3_167()) { - jj_scanpos = xsp; - if (jj_3_168()) { - jj_scanpos = xsp; - if (jj_3_169()) return true; - } + if (jj_3_100()) return true; } - } - } - return false; - } - - final private boolean jj_3R_239() { - if (jj_scan_token(QUOTED_STRING)) return true; - return false; - } - - final private boolean jj_3_1036() { - if (jj_scan_token(UNIQUE)) return true; return false; } - final private boolean jj_3_1035() { - if (jj_scan_token(EXISTS)) return true; - return false; - } - - final private boolean jj_3_1034() { - if (jj_scan_token(NOT)) return true; + final private boolean jj_3_99() { + if (jj_3R_85()) return true; + if (jj_3R_121()) return true; return false; } - final private boolean jj_3_1033() { - if (jj_scan_token(MINUS)) return true; + final private boolean jj_3_886() { + if (jj_scan_token(ABSENT)) return true; + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3R_397() { + final private boolean jj_3_409() { Token xsp; xsp = jj_scanpos; - if (jj_3_1032()) { + if (jj_3_402()) { jj_scanpos = xsp; - if (jj_3_1033()) { + if (jj_3_403()) { jj_scanpos = xsp; - if (jj_3_1034()) { + if (jj_3_404()) { jj_scanpos = xsp; - if (jj_3_1035()) { + if (jj_3_405()) { + jj_scanpos = xsp; + if (jj_3_406()) { + jj_scanpos = xsp; + if (jj_3_407()) { jj_scanpos = xsp; - if (jj_3_1036()) return true; + if (jj_3_408()) return true; + } + } } } } @@ -26630,299 +30054,267 @@ final private boolean jj_3R_397() { return false; } - final private boolean jj_3_1032() { - if (jj_scan_token(PLUS)) return true; + final private boolean jj_3R_317() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_885()) { + jj_scanpos = xsp; + if (jj_3_886()) return true; + } return false; } - final private boolean jj_3_164() { - if (jj_scan_token(AS)) return true; - if (jj_scan_token(DOT_FORMAT)) return true; + final private boolean jj_3_885() { + if (jj_scan_token(NULL)) return true; + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_1031() { - if (jj_3R_327()) return true; + final private boolean jj_3_410() { + Token xsp; + if (jj_3_409()) return true; + while (true) { + xsp = jj_scanpos; + if (jj_3_409()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3_163() { - if (jj_scan_token(AS)) return true; - if (jj_scan_token(JSON)) return true; + final private boolean jj_3R_209() { + if (jj_3R_208()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_410()) { + jj_scanpos = xsp; + if (jj_3R_405()) return true; + } return false; } - final private boolean jj_3_1030() { - if (jj_scan_token(IMMEDIATELY)) return true; - if (jj_scan_token(SUCCEEDS)) return true; + final private boolean jj_3R_120() { + if (jj_scan_token(INTERVAL)) return true; + if (jj_3R_214()) return true; return false; } - final private boolean jj_3_1029() { - if (jj_scan_token(IMMEDIATELY)) return true; - if (jj_scan_token(PRECEDES)) return true; + final private boolean jj_3_884() { + if (jj_scan_token(COLON)) return true; return false; } - final private boolean jj_3_1028() { - if (jj_scan_token(SUCCEEDS)) return true; + final private boolean jj_3_881() { + if (jj_scan_token(KEY)) return true; + if (jj_3R_315()) return true; return false; } - final private boolean jj_3_162() { - if (jj_scan_token(AS)) return true; - if (jj_scan_token(XML)) return true; + final private boolean jj_3_883() { + if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3_1027() { - if (jj_scan_token(PRECEDES)) return true; + final private boolean jj_3_882() { + if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3_1026() { - if (jj_scan_token(EQUALS)) return true; + final private boolean jj_3_95() { + if (jj_3R_120()) return true; return false; } - final private boolean jj_3_492() { - if (jj_scan_token(UNICODE_STRING_LITERAL)) return true; + final private boolean jj_3_94() { + if (jj_3R_119()) return true; return false; } - final private boolean jj_3_1025() { - if (jj_scan_token(OVERLAPS)) return true; + final private boolean jj_3R_400() { + if (jj_scan_token(KEY)) return true; return false; } - final private boolean jj_3_491() { - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3R_121() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_94()) { + jj_scanpos = xsp; + if (jj_3_95()) return true; + } return false; } - final private boolean jj_3_1024() { - if (jj_scan_token(CONTAINS)) return true; + final private boolean jj_3R_316() { + Token xsp; + xsp = jj_scanpos; + if (jj_3R_400()) jj_scanpos = xsp; + if (jj_3R_315()) return true; + xsp = jj_scanpos; + if (jj_3_882()) { + jj_scanpos = xsp; + if (jj_3_883()) { + jj_scanpos = xsp; + if (jj_3_884()) return true; + } + } return false; } - final private boolean jj_3_1023() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(SUBMULTISET)) return true; - if (jj_scan_token(OF)) return true; + final private boolean jj_3_93() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_161() { - if (jj_3R_145()) return true; + final private boolean jj_3_92() { + if (jj_3R_118()) return true; return false; } - final private boolean jj_3_490() { - if (jj_scan_token(PREFIXED_STRING_LITERAL)) return true; + final private boolean jj_3R_315() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_1022() { - if (jj_scan_token(SUBMULTISET)) return true; - if (jj_scan_token(OF)) return true; + final private boolean jj_3_371() { + if (jj_scan_token(DOT)) return true; + if (jj_3R_205()) return true; return false; } - final private boolean jj_3_1021() { - if (jj_scan_token(MEMBER)) return true; - if (jj_scan_token(OF)) return true; + final private boolean jj_3R_117() { + if (jj_3R_355()) return true; + if (jj_scan_token(EQ)) return true; return false; } - final private boolean jj_3_1020() { - if (jj_scan_token(IS)) return true; - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3R_410() { return false; } - final private boolean jj_3R_105() { - if (jj_scan_token(EXPLAIN)) return true; - if (jj_scan_token(PLAN)) return true; + final private boolean jj_3R_380() { + if (jj_3R_412()) return true; return false; } - final private boolean jj_3_1019() { - if (jj_scan_token(IS)) return true; - if (jj_scan_token(DISTINCT)) return true; - if (jj_scan_token(FROM)) return true; + final private boolean jj_3_91() { + if (jj_scan_token(ENCRYPTED)) return true; return false; } - final private boolean jj_3_1018() { - if (jj_scan_token(OR)) return true; + final private boolean jj_3_90() { + if (jj_scan_token(VALUE_TYPE)) return true; return false; } - final private boolean jj_3_495() { + final private boolean jj_3R_208() { Token xsp; - xsp = jj_scanpos; - if (jj_3_490()) { - jj_scanpos = xsp; - if (jj_3_491()) { - jj_scanpos = xsp; - if (jj_3_492()) return true; - } + while (true) { + xsp = jj_scanpos; + if (jj_3R_380()) { jj_scanpos = xsp; break; } } + if (jj_3R_207()) return true; while (true) { xsp = jj_scanpos; - if (jj_3R_239()) { jj_scanpos = xsp; break; } + if (jj_3_371()) { jj_scanpos = xsp; break; } } - xsp = jj_scanpos; - if (jj_3_493()) jj_scanpos = xsp; - return false; - } - - final private boolean jj_3_1017() { - if (jj_scan_token(AND)) return true; return false; } - final private boolean jj_3_1016() { - if (jj_scan_token(CONCAT)) return true; + final private boolean jj_3_89() { + if (jj_scan_token(KEY_TYPE)) return true; return false; } - final private boolean jj_3_1015() { - if (jj_scan_token(PERCENT_REMAINDER)) return true; + final private boolean jj_3R_372() { + Token xsp; + xsp = jj_scanpos; + lookingAhead = true; + jj_semLA = false; + lookingAhead = false; + if (!jj_semLA || jj_3R_410()) return true; + if (jj_scan_token(ZONE)) return true; return false; } - final private boolean jj_3_1014() { - if (jj_scan_token(SLASH)) return true; + final private boolean jj_3_88() { + if (jj_scan_token(DATA_REGION)) return true; return false; } - final private boolean jj_3_1013() { - if (jj_scan_token(STAR)) return true; + final private boolean jj_3_87() { + if (jj_scan_token(CACHE_NAME)) return true; return false; } - final private boolean jj_3_1012() { - if (jj_scan_token(MINUS)) return true; + final private boolean jj_3_880() { + if (jj_3R_314()) return true; return false; } - final private boolean jj_3_1011() { - if (jj_scan_token(PLUS)) return true; + final private boolean jj_3_86() { + if (jj_scan_token(CACHE_GROUP)) return true; return false; } - final private boolean jj_3_1010() { - if (jj_scan_token(NE2)) return true; + final private boolean jj_3_85() { + if (jj_scan_token(WRITE_SYNCHRONIZATION_MODE)) return true; return false; } - final private boolean jj_3R_238() { - if (jj_scan_token(QUOTED_STRING)) return true; + final private boolean jj_3_875() { + if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3_1009() { - if (jj_scan_token(NE)) return true; + final private boolean jj_3R_82() { + if (jj_3R_209()) return true; return false; } - final private boolean jj_3_1008() { - if (jj_scan_token(GE)) return true; + final private boolean jj_3_84() { + if (jj_scan_token(ATOMICITY)) return true; return false; } - final private boolean jj_3_1007() { - if (jj_scan_token(LE)) return true; + final private boolean jj_3_879() { + if (jj_3R_313()) return true; + if (jj_scan_token(WRAPPER)) return true; return false; } - final private boolean jj_3_1006() { - if (jj_scan_token(LT)) return true; + final private boolean jj_3_83() { + if (jj_scan_token(AFFINITY_KEY)) return true; return false; } - final private boolean jj_3_1005() { - if (jj_scan_token(GT)) return true; + final private boolean jj_3_82() { + if (jj_scan_token(BACKUPS)) return true; return false; } - - final private boolean jj_3R_206() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_1004()) { - jj_scanpos = xsp; - if (jj_3_1005()) { - jj_scanpos = xsp; - if (jj_3_1006()) { - jj_scanpos = xsp; - if (jj_3_1007()) { - jj_scanpos = xsp; - if (jj_3_1008()) { - jj_scanpos = xsp; - if (jj_3_1009()) { - jj_scanpos = xsp; - if (jj_3_1010()) { - jj_scanpos = xsp; - if (jj_3_1011()) { - jj_scanpos = xsp; - if (jj_3_1012()) { - jj_scanpos = xsp; - if (jj_3_1013()) { - jj_scanpos = xsp; - if (jj_3_1014()) { - jj_scanpos = xsp; - if (jj_3_1015()) { - jj_scanpos = xsp; - if (jj_3_1016()) { - jj_scanpos = xsp; - if (jj_3_1017()) { - jj_scanpos = xsp; - if (jj_3_1018()) { - jj_scanpos = xsp; - if (jj_3_1019()) { - jj_scanpos = xsp; - if (jj_3_1020()) { - jj_scanpos = xsp; - if (jj_3_1021()) { + + final private boolean jj_3R_355() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_81()) { jj_scanpos = xsp; - if (jj_3_1022()) { + if (jj_3_82()) { jj_scanpos = xsp; - if (jj_3_1023()) { + if (jj_3_83()) { jj_scanpos = xsp; - if (jj_3_1024()) { + if (jj_3_84()) { jj_scanpos = xsp; - if (jj_3_1025()) { + if (jj_3_85()) { jj_scanpos = xsp; - if (jj_3_1026()) { + if (jj_3_86()) { jj_scanpos = xsp; - if (jj_3_1027()) { + if (jj_3_87()) { jj_scanpos = xsp; - if (jj_3_1028()) { + if (jj_3_88()) { jj_scanpos = xsp; - if (jj_3_1029()) { + if (jj_3_89()) { jj_scanpos = xsp; - if (jj_3_1030()) { + if (jj_3_90()) { jj_scanpos = xsp; - if (jj_3_1031()) return true; - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } + if (jj_3_91()) return true; } } } @@ -26936,3783 +30328,3778 @@ final private boolean jj_3R_206() { return false; } - final private boolean jj_3_1004() { - if (jj_scan_token(EQ)) return true; + final private boolean jj_3_81() { + if (jj_scan_token(TEMPLATE)) return true; return false; } - final private boolean jj_3_150() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_137()) return true; + final private boolean jj_3_873() { + if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3_159() { - if (jj_3R_143()) return true; + final private boolean jj_3_77() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_117()) return true; return false; } - final private boolean jj_3_999() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3R_303() { + if (jj_scan_token(JSON_QUERY)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_158() { - if (jj_3R_142()) return true; + final private boolean jj_3R_79() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_998() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_79() { + if (jj_3R_117()) return true; return false; } - final private boolean jj_3_1000() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_998()) { - jj_scanpos = xsp; - if (jj_3_999()) return true; - } + final private boolean jj_3_874() { + if (jj_scan_token(UNCONDITIONAL)) return true; return false; } - final private boolean jj_3_157() { - if (jj_3R_141()) return true; + final private boolean jj_3_370() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_156() { - if (jj_3R_140()) return true; + final private boolean jj_3R_247() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_369()) { + jj_scanpos = xsp; + if (jj_3_370()) return true; + } return false; } - final private boolean jj_3_155() { - if (jj_3R_139()) return true; + final private boolean jj_3_78() { + if (jj_scan_token(QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_160() { - if (jj_scan_token(FROM)) return true; - if (jj_3R_144()) return true; + final private boolean jj_3_369() { + if (jj_3R_204()) return true; return false; } - final private boolean jj_3_996() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_872() { + if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3_1003() { - if (jj_scan_token(EXCEPT)) return true; + final private boolean jj_3_878() { + if (jj_scan_token(WITH)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1000()) jj_scanpos = xsp; - return false; - } - - final private boolean jj_3_995() { - if (jj_scan_token(ALL)) return true; + if (jj_3_874()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_875()) jj_scanpos = xsp; return false; } - final private boolean jj_3_997() { + final private boolean jj_3_80() { + if (jj_scan_token(WITH)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_995()) { + if (jj_3_78()) { jj_scanpos = xsp; - if (jj_3_996()) return true; + if (jj_3_79()) return true; } return false; } - final private boolean jj_3R_132() { + final private boolean jj_3_877() { + if (jj_scan_token(WITH)) return true; + if (jj_scan_token(CONDITIONAL)) return true; + return false; + } + + final private boolean jj_3R_313() { Token xsp; xsp = jj_scanpos; - if (jj_3_494()) { - jj_scanpos = xsp; - if (jj_3_495()) { - jj_scanpos = xsp; - if (jj_3_496()) { + if (jj_3_876()) { jj_scanpos = xsp; - if (jj_3_497()) { + if (jj_3_877()) { jj_scanpos = xsp; - if (jj_3_498()) return true; - } - } + if (jj_3_878()) return true; } } return false; } - final private boolean jj_3_494() { - if (jj_scan_token(BINARY_STRING_LITERAL)) return true; + final private boolean jj_3R_126() { Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3R_238()) { jj_scanpos = xsp; break; } - } - return false; - } - - final private boolean jj_3_154() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_138()) return true; - return false; - } - - final private boolean jj_3_993() { - if (jj_scan_token(DISTINCT)) return true; + xsp = jj_scanpos; + if (jj_3_80()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1002() { - if (jj_scan_token(INTERSECT)) return true; + final private boolean jj_3_876() { + if (jj_scan_token(WITHOUT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_997()) jj_scanpos = xsp; - return false; - } - - final private boolean jj_3_153() { - if (jj_3R_82()) return true; - return false; - } - - final private boolean jj_3_992() { - if (jj_scan_token(ALL)) return true; + if (jj_3_872()) jj_scanpos = xsp; return false; } - final private boolean jj_3_994() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_992()) { - jj_scanpos = xsp; - if (jj_3_993()) return true; - } + final private boolean jj_3_368() { + if (jj_3R_123()) return true; return false; } - final private boolean jj_3_152() { - if (jj_scan_token(STREAM)) return true; + final private boolean jj_3R_203() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1001() { - if (jj_scan_token(UNION)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_994()) jj_scanpos = xsp; + final private boolean jj_3_871() { + if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_151() { - if (jj_scan_token(HINT_BEG)) return true; - if (jj_3R_137()) return true; + final private boolean jj_3R_358() { return false; } - final private boolean jj_3_149() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_137()) return true; + final private boolean jj_3_366() { + if (jj_scan_token(RECURSIVE)) return true; return false; } - final private boolean jj_3R_327() { - if (jj_scan_token(MULTISET)) return true; + final private boolean jj_3R_130() { Token xsp; xsp = jj_scanpos; - if (jj_3_1001()) { - jj_scanpos = xsp; - if (jj_3_1002()) { + if (jj_3_76()) { jj_scanpos = xsp; - if (jj_3_1003()) return true; - } + if (jj_3R_358()) return true; } return false; } - final private boolean jj_3R_75() { - if (jj_scan_token(SELECT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_151()) jj_scanpos = xsp; - if (jj_3R_333()) return true; + final private boolean jj_3_76() { + if (jj_scan_token(IF)) return true; + if (jj_scan_token(NOT)) return true; return false; } - final private boolean jj_3R_326() { + final private boolean jj_3_870() { + if (jj_scan_token(EMPTY)) return true; return false; } - final private boolean jj_3_988() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_367() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_203()) return true; return false; } - final private boolean jj_3_987() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_869() { + if (jj_scan_token(EMPTY)) return true; + if (jj_scan_token(OBJECT)) return true; return false; } - final private boolean jj_3_489() { - if (jj_scan_token(NULL)) return true; + final private boolean jj_3R_202() { + if (jj_scan_token(WITH)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_366()) jj_scanpos = xsp; + if (jj_3R_203()) return true; return false; } - final private boolean jj_3_488() { - if (jj_scan_token(UNKNOWN)) return true; + final private boolean jj_3_868() { + if (jj_scan_token(EMPTY)) return true; + if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3_986() { - if (jj_scan_token(SET_MINUS)) return true; + final private boolean jj_3_867() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_487() { - if (jj_scan_token(FALSE)) return true; + final private boolean jj_3_866() { + if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_985() { - if (jj_scan_token(EXCEPT)) return true; + final private boolean jj_3_75() { + if (jj_3R_116()) return true; return false; } - final private boolean jj_3R_235() { + final private boolean jj_3R_314() { Token xsp; xsp = jj_scanpos; - if (jj_3_486()) { + if (jj_3_866()) { jj_scanpos = xsp; - if (jj_3_487()) { + if (jj_3_867()) { jj_scanpos = xsp; - if (jj_3_488()) { + if (jj_3_868()) { jj_scanpos = xsp; - if (jj_3_489()) return true; + if (jj_3_869()) return true; } } } + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_486() { - if (jj_scan_token(TRUE)) return true; - return false; - } - - final private boolean jj_3R_325() { + final private boolean jj_3_74() { + if (jj_3R_115()) return true; return false; } - final private boolean jj_3_984() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_73() { + if (jj_3R_114()) return true; return false; } - final private boolean jj_3_991() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_985()) { - jj_scanpos = xsp; - if (jj_3_986()) return true; - } - xsp = jj_scanpos; - if (jj_3_987()) { - jj_scanpos = xsp; - if (jj_3_988()) { - jj_scanpos = xsp; - if (jj_3R_326()) return true; - } - } + final private boolean jj_3_72() { + if (jj_3R_113()) return true; return false; } - final private boolean jj_3_983() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_71() { + if (jj_3R_112()) return true; return false; } - final private boolean jj_3R_324() { + final private boolean jj_3_70() { + if (jj_3R_111()) return true; return false; } - final private boolean jj_3R_151() { - if (jj_scan_token(HINT_BEG)) return true; - if (jj_3R_137()) return true; + final private boolean jj_3R_68() { + if (jj_3R_340()) return true; return false; } - final private boolean jj_3_485() { - if (jj_3R_191()) return true; + final private boolean jj_3_69() { + if (jj_3R_110()) return true; return false; } - final private boolean jj_3_982() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_865() { + if (jj_3R_312()) return true; return false; } - final private boolean jj_3_990() { - if (jj_scan_token(INTERSECT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_983()) { - jj_scanpos = xsp; - if (jj_3_984()) { - jj_scanpos = xsp; - if (jj_3R_325()) return true; - } - } + final private boolean jj_3_68() { + if (jj_3R_80()) return true; return false; } - final private boolean jj_3_981() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_67() { + if (jj_3R_109()) return true; return false; } - final private boolean jj_3_484() { - if (jj_scan_token(MINUS)) return true; - if (jj_3R_191()) return true; + final private boolean jj_3_66() { + if (jj_3R_108()) return true; return false; } - final private boolean jj_3R_133() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_483()) { - jj_scanpos = xsp; - if (jj_3_484()) { - jj_scanpos = xsp; - if (jj_3_485()) return true; - } - } + final private boolean jj_3_864() { + if (jj_3R_311()) return true; return false; } - final private boolean jj_3_483() { - if (jj_scan_token(PLUS)) return true; - if (jj_3R_191()) return true; + final private boolean jj_3_65() { + if (jj_3R_107()) return true; return false; } - final private boolean jj_3_989() { - if (jj_scan_token(UNION)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_981()) { - jj_scanpos = xsp; - if (jj_3_982()) { - jj_scanpos = xsp; - if (jj_3R_324()) return true; - } - } + final private boolean jj_3_64() { + if (jj_3R_106()) return true; return false; } - final private boolean jj_3_971() { - if (jj_scan_token(TRUNCATE)) return true; + final private boolean jj_3_63() { + if (jj_3R_105()) return true; return false; } - final private boolean jj_3R_331() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_989()) { - jj_scanpos = xsp; - if (jj_3_990()) { - jj_scanpos = xsp; - if (jj_3_991()) return true; - } - } + final private boolean jj_3_62() { + if (jj_3R_104()) return true; return false; } - final private boolean jj_3_145() { + final private boolean jj_3R_302() { + if (jj_scan_token(JSON_VALUE)) return true; if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; - return false; - } - - final private boolean jj_3_970() { - if (jj_scan_token(RIGHT)) return true; return false; } - final private boolean jj_3_482() { - if (jj_scan_token(APPROX_NUMERIC_LITERAL)) return true; + final private boolean jj_3_61() { + if (jj_3R_103()) return true; return false; } - final private boolean jj_3_148() { - if (jj_3R_136()) return true; + final private boolean jj_3_60() { + if (jj_3R_102()) return true; return false; } - final private boolean jj_3_977() { - if (jj_3R_166()) return true; + final private boolean jj_3_59() { + if (jj_3R_101()) return true; return false; } - final private boolean jj_3_481() { - if (jj_scan_token(DECIMAL_NUMERIC_LITERAL)) return true; + final private boolean jj_3_58() { + if (jj_3R_100()) return true; return false; } - final private boolean jj_3_976() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_57() { + if (jj_3R_99()) return true; return false; } - final private boolean jj_3_147() { - if (jj_3R_118()) return true; + final private boolean jj_3_56() { + if (jj_3R_98()) return true; return false; } - final private boolean jj_3R_191() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_480()) { - jj_scanpos = xsp; - if (jj_3_481()) { - jj_scanpos = xsp; - if (jj_3_482()) return true; - } - } + final private boolean jj_3_863() { + if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_144() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_134()) return true; + final private boolean jj_3_55() { + if (jj_3R_97()) return true; return false; } - final private boolean jj_3_480() { - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_54() { + if (jj_3R_96()) return true; return false; } - final private boolean jj_3_969() { - if (jj_scan_token(LEFT)) return true; + final private boolean jj_3_862() { + if (jj_scan_token(EMPTY)) return true; return false; } - final private boolean jj_3_975() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(STAR)) return true; + final private boolean jj_3_53() { + if (jj_3R_95()) return true; return false; } - final private boolean jj_3_146() { - if (jj_3R_135()) return true; + final private boolean jj_3_52() { + if (jj_3R_94()) return true; return false; } - final private boolean jj_3_974() { - if (jj_3R_322()) return true; + final private boolean jj_3_51() { + if (jj_3R_93()) return true; return false; } - final private boolean jj_3_479() { - if (jj_3R_234()) return true; + final private boolean jj_3_861() { + if (jj_scan_token(DEFAULT_)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_973() { - if (jj_3R_321()) return true; + final private boolean jj_3R_92() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_51()) { + jj_scanpos = xsp; + if (jj_3_52()) { + jj_scanpos = xsp; + if (jj_3_53()) { + jj_scanpos = xsp; + if (jj_3_54()) { + jj_scanpos = xsp; + if (jj_3_55()) { + jj_scanpos = xsp; + if (jj_3_56()) { + jj_scanpos = xsp; + if (jj_3_57()) { + jj_scanpos = xsp; + if (jj_3_58()) { + jj_scanpos = xsp; + if (jj_3_59()) { + jj_scanpos = xsp; + if (jj_3_60()) { + jj_scanpos = xsp; + if (jj_3_61()) { + jj_scanpos = xsp; + if (jj_3_62()) { + jj_scanpos = xsp; + if (jj_3_63()) { + jj_scanpos = xsp; + if (jj_3_64()) { + jj_scanpos = xsp; + if (jj_3_65()) { + jj_scanpos = xsp; + if (jj_3_66()) { + jj_scanpos = xsp; + if (jj_3_67()) { + jj_scanpos = xsp; + if (jj_3_68()) { + jj_scanpos = xsp; + if (jj_3_69()) { + jj_scanpos = xsp; + if (jj_3_70()) { + jj_scanpos = xsp; + if (jj_3_71()) { + jj_scanpos = xsp; + if (jj_3_72()) { + jj_scanpos = xsp; + if (jj_3_73()) { + jj_scanpos = xsp; + if (jj_3_74()) { + jj_scanpos = xsp; + if (jj_3_75()) return true; + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } return false; } - - final private boolean jj_3_478() { - if (jj_3R_237()) return true; + + final private boolean jj_3_860() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3R_137() { - if (jj_3R_84()) return true; + final private boolean jj_3_365() { + if (jj_3R_68()) return true; return false; } - final private boolean jj_3_972() { - if (jj_3R_320()) return true; + final private boolean jj_3_859() { + if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_968() { - if (jj_scan_token(INSERT)) return true; + final private boolean jj_3_364() { + if (jj_3R_202()) return true; return false; } - final private boolean jj_3R_215() { + final private boolean jj_3R_69() { Token xsp; xsp = jj_scanpos; - if (jj_3_478()) { - jj_scanpos = xsp; - if (jj_3_479()) return true; - } + if (jj_3_364()) jj_scanpos = xsp; + if (jj_3R_204()) return true; return false; } - final private boolean jj_3R_323() { + final private boolean jj_3R_312() { Token xsp; xsp = jj_scanpos; - if (jj_3_968()) { - jj_scanpos = xsp; - if (jj_3_969()) { + if (jj_3_859()) { jj_scanpos = xsp; - if (jj_3_970()) { + if (jj_3_860()) { jj_scanpos = xsp; - if (jj_3_971()) return true; - } + if (jj_3_861()) return true; } } + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_980() { + final private boolean jj_3_50() { + if (jj_3R_92()) return true; + return false; + } + + final private boolean jj_3_49() { + if (jj_scan_token(SEMICOLON)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3R_323()) { - jj_scanpos = xsp; - if (jj_3_972()) { - jj_scanpos = xsp; - if (jj_3_973()) { - jj_scanpos = xsp; - if (jj_3_974()) return true; - } - } - } - xsp = jj_scanpos; - if (jj_3_975()) { - jj_scanpos = xsp; - if (jj_3_976()) { - jj_scanpos = xsp; - if (jj_3_977()) return true; - } - } + if (jj_3_50()) jj_scanpos = xsp; return false; } - final private boolean jj_3R_136() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_134()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_144()) { jj_scanpos = xsp; break; } - } - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_363() { + if (jj_3R_68()) return true; return false; } - final private boolean jj_3_477() { - if (jj_3R_236()) return true; + final private boolean jj_3_858() { + if (jj_3R_310()) return true; + if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_476() { - if (jj_3R_235()) return true; + final private boolean jj_3_362() { + if (jj_3R_202()) return true; return false; } - final private boolean jj_3_475() { - if (jj_3R_132()) return true; + final private boolean jj_3R_343() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_362()) jj_scanpos = xsp; + if (jj_3R_247()) return true; + while (true) { + xsp = jj_scanpos; + if (jj_3_363()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3_979() { - if (jj_scan_token(CONVERT)) return true; + final private boolean jj_3R_301() { + if (jj_scan_token(JSON_EXISTS)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_474() { - if (jj_3R_133()) return true; + final private boolean jj_3R_91() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_143() { - if (jj_3R_132()) return true; + final private boolean jj_3_857() { + if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_142() { - if (jj_3R_133()) return true; + final private boolean jj_3_856() { + if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_978() { - if (jj_3R_286()) return true; + final private boolean jj_3_855() { + if (jj_scan_token(FALSE)) return true; return false; } - final private boolean jj_3R_234() { + final private boolean jj_3R_310() { Token xsp; xsp = jj_scanpos; - if (jj_3_474()) { + if (jj_3_854()) { jj_scanpos = xsp; - if (jj_3_475()) { + if (jj_3_855()) { jj_scanpos = xsp; - if (jj_3_476()) { + if (jj_3_856()) { jj_scanpos = xsp; - if (jj_3_477()) return true; - } + if (jj_3_857()) return true; } } - return false; - } - - final private boolean jj_3R_134() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_142()) { - jj_scanpos = xsp; - if (jj_3_143()) return true; } return false; } - final private boolean jj_3R_378() { - if (jj_3R_289()) return true; - return false; - } - - final private boolean jj_3_473() { - if (jj_3R_186()) return true; - return false; - } - - final private boolean jj_3_472() { - if (jj_3R_234()) return true; - return false; - } - - final private boolean jj_3R_377() { - if (jj_3R_287()) return true; - return false; - } - - final private boolean jj_3R_113() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_472()) { - jj_scanpos = xsp; - if (jj_3_473()) return true; - } + final private boolean jj_3_854() { + if (jj_scan_token(TRUE)) return true; return false; } - final private boolean jj_3_141() { - if (jj_3R_132()) return true; + final private boolean jj_3R_81() { + if (jj_scan_token(DEFAULT_)) return true; return false; } - final private boolean jj_3_140() { - if (jj_3R_84()) return true; + final private boolean jj_3_852() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3R_376() { - if (jj_3R_290()) return true; + final private boolean jj_3R_90() { + if (jj_3R_133()) return true; return false; } - final private boolean jj_3R_131() { + final private boolean jj_3_46() { Token xsp; xsp = jj_scanpos; - if (jj_3_140()) { + if (jj_3R_90()) { jj_scanpos = xsp; - if (jj_3_141()) return true; + if (jj_3R_91()) return true; } - if (jj_scan_token(EQ)) return true; - if (jj_3R_132()) return true; + if (jj_scan_token(LAMBDA)) return true; return false; } - final private boolean jj_3R_375() { - if (jj_3R_288()) return true; + final private boolean jj_3R_87() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_374() { - if (jj_3R_283()) return true; + final private boolean jj_3_48() { + if (jj_3R_88()) return true; return false; } - final private boolean jj_3_471() { - if (jj_3R_233()) return true; + final private boolean jj_3_47() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3R_373() { - if (jj_3R_284()) return true; + final private boolean jj_3_853() { + if (jj_scan_token(PASSING)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_139() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_131()) return true; + final private boolean jj_3R_346() { + if (jj_3R_406()) return true; return false; } - final private boolean jj_3_470() { - if (jj_3R_232()) return true; + final private boolean jj_3_45() { + if (jj_3R_81()) return true; return false; } - final private boolean jj_3_469() { - if (jj_3R_231()) return true; + final private boolean jj_3R_345() { return false; } - final private boolean jj_3R_372() { - if (jj_3R_285()) return true; + final private boolean jj_3R_201() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_135() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_131()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_139()) { jj_scanpos = xsp; break; } - } - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_44() { + if (jj_3R_85()) return true; + if (jj_scan_token(NAMED_ARGUMENT_ASSIGNMENT)) return true; return false; } - final private boolean jj_3R_104() { - if (jj_scan_token(DROP)) return true; + final private boolean jj_3R_84() { Token xsp; xsp = jj_scanpos; - if (jj_3_469()) { - jj_scanpos = xsp; - if (jj_3_470()) { + if (jj_3_44()) { jj_scanpos = xsp; - if (jj_3_471()) return true; - } + if (jj_3R_345()) return true; } - return false; - } - - final private boolean jj_3R_371() { - if (jj_3R_282()) return true; - return false; - } - - final private boolean jj_3R_217() { - if (jj_scan_token(LBRACE_FN)) return true; - Token xsp; xsp = jj_scanpos; - if (jj_3R_371()) { - jj_scanpos = xsp; - if (jj_3R_372()) { - jj_scanpos = xsp; - if (jj_3R_373()) { - jj_scanpos = xsp; - if (jj_3R_374()) { - jj_scanpos = xsp; - if (jj_3R_375()) { - jj_scanpos = xsp; - if (jj_3R_376()) { - jj_scanpos = xsp; - if (jj_3R_377()) { - jj_scanpos = xsp; - if (jj_3R_378()) { + if (jj_3_45()) { jj_scanpos = xsp; - if (jj_3_978()) { + if (jj_3R_346()) { jj_scanpos = xsp; - if (jj_3_979()) { + if (jj_3_47()) { jj_scanpos = xsp; - if (jj_3_980()) return true; - } - } - } - } + if (jj_3_48()) return true; } } } - } - } - } - return false; - } - - final private boolean jj_3_468() { - if (jj_3R_230()) return true; - return false; - } - - final private boolean jj_3R_98() { - if (jj_scan_token(ANALYZE)) return true; - if (jj_3R_340()) return true; - return false; - } - - final private boolean jj_3_467() { - if (jj_3R_229()) return true; - return false; - } - - final private boolean jj_3_466() { - if (jj_3R_228()) return true; return false; } - final private boolean jj_3_465() { - if (jj_scan_token(OR)) return true; - if (jj_scan_token(REPLACE)) return true; + final private boolean jj_3_361() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_201()) return true; return false; } - final private boolean jj_3R_99() { - if (jj_scan_token(REFRESH)) return true; - if (jj_scan_token(STATISTICS)) return true; + final private boolean jj_3R_86() { + if (jj_3R_133()) return true; return false; } - final private boolean jj_3R_103() { - if (jj_scan_token(CREATE)) return true; + final private boolean jj_3_41() { Token xsp; xsp = jj_scanpos; - if (jj_3_465()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_466()) { + if (jj_3R_86()) { jj_scanpos = xsp; - if (jj_3_467()) { - jj_scanpos = xsp; - if (jj_3_468()) return true; - } + if (jj_3R_87()) return true; } + if (jj_scan_token(LAMBDA)) return true; return false; } - final private boolean jj_3_464() { - if (jj_scan_token(SESSION)) return true; + final private boolean jj_3_43() { + if (jj_3R_89()) return true; return false; } - final private boolean jj_3_967() { - if (jj_scan_token(USER)) return true; + final private boolean jj_3_851() { + if (jj_scan_token(FORMAT)) return true; + if (jj_3R_309()) return true; return false; } - final private boolean jj_3_966() { - if (jj_scan_token(SYSTEM_USER)) return true; + final private boolean jj_3_42() { + if (jj_3R_88()) return true; return false; } - final private boolean jj_3_965() { - if (jj_scan_token(SESSION_USER)) return true; + final private boolean jj_3R_364() { + if (jj_3R_406()) return true; return false; } - final private boolean jj_3_964() { - if (jj_scan_token(LOCALTIMESTAMP)) return true; + final private boolean jj_3_40() { + if (jj_3R_81()) return true; return false; } - final private boolean jj_3_963() { - if (jj_scan_token(LOCALTIME)) return true; + final private boolean jj_3R_363() { return false; } - final private boolean jj_3_962() { - if (jj_scan_token(CURRENT_USER)) return true; + final private boolean jj_3_39() { + if (jj_3R_85()) return true; + if (jj_scan_token(NAMED_ARGUMENT_ASSIGNMENT)) return true; return false; } - final private boolean jj_3_961() { - if (jj_scan_token(CURRENT_TIMESTAMP)) return true; + final private boolean jj_3R_311() { + if (jj_scan_token(RETURNING)) return true; + if (jj_3R_119()) return true; return false; } - final private boolean jj_3_960() { - if (jj_scan_token(CURRENT_TIME)) return true; + final private boolean jj_3R_153() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_39()) { + jj_scanpos = xsp; + if (jj_3R_363()) return true; + } + xsp = jj_scanpos; + if (jj_3_40()) { + jj_scanpos = xsp; + if (jj_3R_364()) { + jj_scanpos = xsp; + if (jj_3_42()) { + jj_scanpos = xsp; + if (jj_3_43()) return true; + } + } + } return false; } - final private boolean jj_3_959() { - if (jj_scan_token(CURRENT_SCHEMA)) return true; + final private boolean jj_3R_200() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_958() { - if (jj_scan_token(CURRENT_ROLE)) return true; + final private boolean jj_3_360() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_200()) return true; return false; } - final private boolean jj_3_957() { - if (jj_scan_token(CURRENT_PATH)) return true; + final private boolean jj_3_849() { + if (jj_scan_token(UTF32)) return true; return false; } - final private boolean jj_3_463() { - if (jj_scan_token(SYSTEM)) return true; + final private boolean jj_3R_192() { + if (jj_3R_200()) return true; return false; } - final private boolean jj_3_956() { - if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; + final private boolean jj_3_848() { + if (jj_scan_token(UTF16)) return true; return false; } - final private boolean jj_3R_100() { - if (jj_scan_token(DROP)) return true; - if (jj_scan_token(STATISTICS)) return true; + final private boolean jj_3_847() { + if (jj_scan_token(UTF8)) return true; return false; } - final private boolean jj_3_955() { - if (jj_scan_token(CURRENT_DATE)) return true; + final private boolean jj_3_355() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_199()) return true; return false; } - final private boolean jj_3R_341() { + final private boolean jj_3_850() { + if (jj_scan_token(ENCODING)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_463()) { + if (jj_3_847()) { + jj_scanpos = xsp; + if (jj_3_848()) { jj_scanpos = xsp; - if (jj_3_464()) return true; + if (jj_3_849()) return true; + } } return false; } - final private boolean jj_3_954() { - if (jj_scan_token(CURRENT_CATALOG)) return true; + final private boolean jj_3_38() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3R_223() { + final private boolean jj_3R_83() { Token xsp; xsp = jj_scanpos; - if (jj_3_954()) { - jj_scanpos = xsp; - if (jj_3_955()) { - jj_scanpos = xsp; - if (jj_3_956()) { - jj_scanpos = xsp; - if (jj_3_957()) { - jj_scanpos = xsp; - if (jj_3_958()) { - jj_scanpos = xsp; - if (jj_3_959()) { - jj_scanpos = xsp; - if (jj_3_960()) { - jj_scanpos = xsp; - if (jj_3_961()) { - jj_scanpos = xsp; - if (jj_3_962()) { - jj_scanpos = xsp; - if (jj_3_963()) { - jj_scanpos = xsp; - if (jj_3_964()) { - jj_scanpos = xsp; - if (jj_3_965()) { - jj_scanpos = xsp; - if (jj_3_966()) { + if (jj_3_37()) { jj_scanpos = xsp; - if (jj_3_967()) return true; - } - } - } - } - } - } - } - } - } - } - } - } + if (jj_3_38()) return true; } return false; } - final private boolean jj_3_138() { - if (jj_3R_84()) return true; + final private boolean jj_3_37() { + if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_137() { - if (jj_3R_113()) return true; + final private boolean jj_3R_309() { + if (jj_scan_token(JSON)) return true; return false; } - final private boolean jj_3_953() { - if (jj_scan_token(YEAR)) return true; + final private boolean jj_3_359() { + if (jj_scan_token(PERMUTE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_952() { - if (jj_scan_token(VAR_SAMP)) return true; + final private boolean jj_3_846() { + if (jj_3R_308()) return true; return false; } - final private boolean jj_3_951() { - if (jj_scan_token(VAR_POP)) return true; + final private boolean jj_3_845() { + if (jj_3R_307()) return true; return false; } - final private boolean jj_3R_102() { - if (jj_scan_token(ALTER)) return true; - if (jj_3R_341()) return true; + final private boolean jj_3_358() { + if (jj_scan_token(LBRACE)) return true; + if (jj_scan_token(MINUS)) return true; return false; } - final private boolean jj_3_950() { - if (jj_scan_token(USER)) return true; + final private boolean jj_3_844() { + if (jj_3R_306()) return true; return false; } - final private boolean jj_3R_130() { - if (jj_3R_350()) return true; - if (jj_scan_token(EQ)) return true; + final private boolean jj_3_357() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_199()) return true; return false; } - final private boolean jj_3_949() { - if (jj_scan_token(TRUNCATE)) return true; + final private boolean jj_3_843() { + if (jj_3R_305()) return true; return false; } - final private boolean jj_3_948() { - if (jj_scan_token(UPPER)) return true; + final private boolean jj_3R_377() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_356()) { + jj_scanpos = xsp; + if (jj_3_357()) { + jj_scanpos = xsp; + if (jj_3_358()) { + jj_scanpos = xsp; + if (jj_3_359()) return true; + } + } + } return false; } - final private boolean jj_3_947() { - if (jj_scan_token(SUM)) return true; + final private boolean jj_3_36() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_84()) return true; return false; } - final private boolean jj_3_946() { - if (jj_scan_token(STDDEV_SAMP)) return true; + final private boolean jj_3_356() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_945() { - if (jj_scan_token(STDDEV_POP)) return true; + final private boolean jj_3_842() { + if (jj_3R_304()) return true; return false; } - final private boolean jj_3_944() { - if (jj_scan_token(SQRT)) return true; + final private boolean jj_3_841() { + if (jj_3R_303()) return true; return false; } - final private boolean jj_3_943() { - if (jj_scan_token(SOME)) return true; + final private boolean jj_3R_383() { return false; } - final private boolean jj_3_942() { - if (jj_scan_token(SECOND)) return true; + final private boolean jj_3_840() { + if (jj_3R_302()) return true; return false; } - final private boolean jj_3_941() { - if (jj_scan_token(ROW_NUMBER)) return true; + final private boolean jj_3_35() { + if (jj_3R_83()) return true; return false; } - final private boolean jj_3_940() { - if (jj_scan_token(RIGHT)) return true; + final private boolean jj_3_839() { + if (jj_3R_301()) return true; return false; } - final private boolean jj_3_136() { - if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; + final private boolean jj_3_838() { + if (jj_3R_300()) return true; return false; } - final private boolean jj_3_939() { - if (jj_scan_token(REGR_SYY)) return true; + final private boolean jj_3R_379() { return false; } - final private boolean jj_3_938() { - if (jj_scan_token(REGR_SXX)) return true; + final private boolean jj_3_837() { + if (jj_3R_299()) return true; return false; } - final private boolean jj_3_135() { - if (jj_scan_token(NULLS)) return true; + final private boolean jj_3R_219() { + if (jj_scan_token(LPAREN)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_35()) { + jj_scanpos = xsp; + if (jj_3R_383()) return true; + } return false; } - final private boolean jj_3_937() { - if (jj_scan_token(REGR_COUNT)) return true; + final private boolean jj_3_836() { + if (jj_3R_298()) return true; return false; } - final private boolean jj_3_460() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_835() { + if (jj_3R_297()) return true; return false; } - final private boolean jj_3_936() { - if (jj_scan_token(RANK)) return true; + final private boolean jj_3_354() { + if (jj_scan_token(HOOK)) return true; return false; } - final private boolean jj_3_134() { - if (jj_scan_token(SIZE)) return true; + final private boolean jj_3_834() { + if (jj_3R_296()) return true; return false; } - final private boolean jj_3_935() { - if (jj_scan_token(POWER)) return true; + final private boolean jj_3_833() { + if (jj_3R_295()) return true; return false; } - final private boolean jj_3_459() { - if (jj_3R_146()) return true; + final private boolean jj_3_349() { + if (jj_scan_token(MINUS)) return true; + if (jj_3R_199()) return true; return false; } - final private boolean jj_3_934() { - if (jj_scan_token(PERCENTILE_DISC)) return true; + final private boolean jj_3_832() { + if (jj_3R_294()) return true; return false; } - final private boolean jj_3_133() { - if (jj_scan_token(TOTAL)) return true; + final private boolean jj_3_831() { + if (jj_3R_293()) return true; return false; } - final private boolean jj_3_933() { - if (jj_scan_token(PERCENTILE_CONT)) return true; + final private boolean jj_3R_198() { return false; } - final private boolean jj_3_932() { - if (jj_scan_token(PERCENT_RANK)) return true; + final private boolean jj_3R_197() { return false; } - final private boolean jj_3R_350() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_132()) { - jj_scanpos = xsp; - if (jj_3_133()) { - jj_scanpos = xsp; - if (jj_3_134()) { - jj_scanpos = xsp; - if (jj_3_135()) { - jj_scanpos = xsp; - if (jj_3_136()) return true; - } - } - } - } + final private boolean jj_3_830() { + if (jj_3R_292()) return true; return false; } - final private boolean jj_3_132() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_348() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_196()) return true; return false; } - final private boolean jj_3_931() { - if (jj_scan_token(OCTET_LENGTH)) return true; + final private boolean jj_3_345() { + if (jj_3R_196()) return true; return false; } - final private boolean jj_3_930() { - if (jj_scan_token(NULLIF)) return true; + final private boolean jj_3_829() { + if (jj_3R_291()) return true; return false; } - final private boolean jj_3_929() { - if (jj_scan_token(NTILE)) return true; + final private boolean jj_3R_399() { + if (jj_3R_219()) return true; return false; } - final private boolean jj_3_928() { - if (jj_scan_token(NTH_VALUE)) return true; + final private boolean jj_3_828() { + if (jj_3R_290()) return true; return false; } - final private boolean jj_3_927() { - if (jj_scan_token(MONTH)) return true; + final private boolean jj_3_827() { + if (jj_3R_289()) return true; return false; } - final private boolean jj_3_462() { - if (jj_scan_token(RESET)) return true; + final private boolean jj_3_346() { + if (jj_scan_token(COMMA)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_459()) { + if (jj_3_345()) { jj_scanpos = xsp; - if (jj_3_460()) return true; + if (jj_3R_197()) return true; } return false; } - final private boolean jj_3_926() { - if (jj_scan_token(MOD)) return true; - return false; - } - - final private boolean jj_3_925() { - if (jj_scan_token(MINUTE)) return true; + final private boolean jj_3_826() { + if (jj_3R_288()) return true; return false; } - final private boolean jj_3_924() { - if (jj_scan_token(MIN)) return true; + final private boolean jj_3_34() { + if (jj_3R_81()) return true; return false; } - final private boolean jj_3_130() { - if (jj_scan_token(QUOTED_IDENTIFIER)) return true; + final private boolean jj_3_347() { + if (jj_3R_196()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_346()) { + jj_scanpos = xsp; + if (jj_3R_198()) return true; + } + if (jj_scan_token(RBRACE)) return true; return false; } - final private boolean jj_3_923() { - if (jj_scan_token(MAX)) return true; + final private boolean jj_3_33() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_922() { - if (jj_scan_token(LOWER)) return true; + final private boolean jj_3_353() { + if (jj_scan_token(LBRACE)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_347()) { + jj_scanpos = xsp; + if (jj_3_348()) { + jj_scanpos = xsp; + if (jj_3_349()) return true; + } + } return false; } - final private boolean jj_3_128() { + final private boolean jj_3_32() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_130()) return true; - return false; - } - - final private boolean jj_3_921() { - if (jj_scan_token(LOCALTIMESTAMP)) return true; - return false; - } - - final private boolean jj_3_458() { - if (jj_scan_token(ON)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_33()) { + jj_scanpos = xsp; + if (jj_3_34()) return true; + } return false; } - final private boolean jj_3_920() { - if (jj_scan_token(LOCALTIME)) return true; + final private boolean jj_3_352() { + if (jj_scan_token(HOOK)) return true; return false; } - final private boolean jj_3_919() { - if (jj_scan_token(LN)) return true; + final private boolean jj_3_814() { + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_457() { - if (jj_3R_84()) return true; + final private boolean jj_3_31() { + if (jj_3R_81()) return true; return false; } - final private boolean jj_3_918() { - if (jj_scan_token(LAST_VALUE)) return true; + final private boolean jj_3_30() { + if (jj_3R_80()) return true; return false; } - final private boolean jj_3_917() { - if (jj_scan_token(LEFT)) return true; + final private boolean jj_3_351() { + if (jj_scan_token(PLUS)) return true; return false; } - final private boolean jj_3_456() { - if (jj_3R_113()) return true; + final private boolean jj_3_813() { + if (jj_scan_token(FROM)) return true; return false; } - final private boolean jj_3_916() { - if (jj_scan_token(LEAD)) return true; + final private boolean jj_3_350() { + if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_129() { - if (jj_3R_130()) return true; + final private boolean jj_3_812() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_915() { - if (jj_scan_token(LAG)) return true; + final private boolean jj_3_810() { + if (jj_scan_token(LEADING)) return true; return false; } - final private boolean jj_3_914() { - if (jj_scan_token(HOUR)) return true; + final private boolean jj_3R_378() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_350()) { + jj_scanpos = xsp; + if (jj_3_351()) { + jj_scanpos = xsp; + if (jj_3_352()) { + jj_scanpos = xsp; + if (jj_3_353()) return true; + } + } + } return false; } - final private boolean jj_3_913() { - if (jj_scan_token(GROUPING)) return true; + final private boolean jj_3_809() { + if (jj_scan_token(TRAILING)) return true; return false; } - final private boolean jj_3_912() { - if (jj_scan_token(INTERSECTION)) return true; + final private boolean jj_3R_195() { + if (jj_3R_377()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3R_378()) { + jj_scanpos = xsp; + if (jj_3R_379()) return true; + } return false; } - final private boolean jj_3_911() { - if (jj_scan_token(FUSION)) return true; + final private boolean jj_3R_181() { + if (jj_scan_token(LPAREN)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_30()) { + jj_scanpos = xsp; + if (jj_3_31()) return true; + } return false; } - final private boolean jj_3_910() { - if (jj_scan_token(FLOOR)) return true; + final private boolean jj_3_808() { + if (jj_scan_token(BOTH)) return true; return false; } - final private boolean jj_3_131() { - if (jj_scan_token(WITH)) return true; + final private boolean jj_3_811() { Token xsp; xsp = jj_scanpos; - if (jj_3_129()) { + if (jj_3_808()) { jj_scanpos = xsp; - if (jj_3_130()) return true; + if (jj_3_809()) { + jj_scanpos = xsp; + if (jj_3_810()) return true; + } } return false; } - final private boolean jj_3_909() { - if (jj_scan_token(FIRST_VALUE)) return true; + final private boolean jj_3_815() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_811()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_812()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_813()) { + jj_scanpos = xsp; + if (jj_3_814()) return true; + } return false; } - final private boolean jj_3_908() { - if (jj_scan_token(EXP)) return true; + final private boolean jj_3_344() { + if (jj_3R_195()) return true; return false; } - final private boolean jj_3_907() { - if (jj_scan_token(EVERY)) return true; + final private boolean jj_3_806() { + if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3_461() { - if (jj_scan_token(SET)) return true; - if (jj_3R_146()) return true; + final private boolean jj_3_804() { + if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3_906() { - if (jj_scan_token(ELEMENT)) return true; + final private boolean jj_3_825() { + if (jj_scan_token(TRIM)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_905() { - if (jj_scan_token(DENSE_RANK)) return true; + final private boolean jj_3R_194() { + if (jj_3R_195()) return true; return false; } - final private boolean jj_3_904() { - if (jj_scan_token(CURRENT_TIMESTAMP)) return true; + final private boolean jj_3_29() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_903() { - if (jj_scan_token(CURRENT_TIME)) return true; + final private boolean jj_3_805() { + if (jj_scan_token(FOR)) return true; return false; } - final private boolean jj_3_902() { - if (jj_scan_token(CURRENT_DATE)) return true; + final private boolean jj_3_1774() { + if (jj_scan_token(SATURDAY)) return true; return false; } - final private boolean jj_3R_101() { + final private boolean jj_3_807() { Token xsp; xsp = jj_scanpos; - if (jj_3_461()) { + if (jj_3_805()) { jj_scanpos = xsp; - if (jj_3_462()) return true; + if (jj_3_806()) return true; } + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_901() { - if (jj_scan_token(COUNT)) return true; + final private boolean jj_3_1773() { + if (jj_scan_token(WEDNESDAY)) return true; return false; } - final private boolean jj_3_900() { - if (jj_scan_token(CUME_DIST)) return true; + final private boolean jj_3_1772() { + if (jj_scan_token(YEAR)) return true; return false; } - final private boolean jj_3_899() { - if (jj_scan_token(COVAR_SAMP)) return true; + final private boolean jj_3_1771() { + if (jj_scan_token(WINDOW)) return true; return false; } - final private boolean jj_3_898() { - if (jj_scan_token(COVAR_POP)) return true; + final private boolean jj_3_1770() { + if (jj_scan_token(VERSIONING)) return true; return false; } - final private boolean jj_3_897() { - if (jj_scan_token(COLLECT)) return true; + final private boolean jj_3_802() { + if (jj_scan_token(CEILING)) return true; return false; } - final private boolean jj_3_896() { - if (jj_scan_token(COALESCE)) return true; + final private boolean jj_3_1769() { + if (jj_scan_token(VARYING)) return true; return false; } - final private boolean jj_3_127() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_129()) return true; + final private boolean jj_3_803() { + if (jj_scan_token(FROM)) return true; return false; } - final private boolean jj_3_895() { - if (jj_scan_token(CHARACTER_LENGTH)) return true; + final private boolean jj_3_1768() { + if (jj_scan_token(VALUE_OF)) return true; return false; } - final private boolean jj_3_894() { - if (jj_scan_token(CHAR_LENGTH)) return true; + final private boolean jj_3_1767() { + if (jj_scan_token(UPPER)) return true; return false; } - final private boolean jj_3_893() { - if (jj_scan_token(CHAR)) return true; + final private boolean jj_3_1766() { + if (jj_scan_token(UNIQUE)) return true; return false; } - final private boolean jj_3_892() { - if (jj_scan_token(CEILING)) return true; + final private boolean jj_3_1765() { + if (jj_scan_token(TRUNCATE)) return true; return false; } - final private boolean jj_3_891() { - if (jj_scan_token(CARDINALITY)) return true; + final private boolean jj_3_1764() { + if (jj_scan_token(TRIGGER)) return true; return false; } - final private boolean jj_3_890() { - if (jj_scan_token(AVG)) return true; + final private boolean jj_3_343() { + if (jj_scan_token(VERTICAL_BAR)) return true; + if (jj_3R_194()) return true; return false; } - final private boolean jj_3R_340() { - if (jj_3R_129()) return true; + final private boolean jj_3_824() { + if (jj_scan_token(SUBSTRING)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_889() { - if (jj_scan_token(ABS)) return true; + final private boolean jj_3_1763() { + if (jj_scan_token(TRANSLATE_REGEX)) return true; return false; } - final private boolean jj_3_125() { - if (jj_scan_token(TRANSACTION)) return true; + final private boolean jj_3_1762() { + if (jj_scan_token(TIMEZONE_MINUTE)) return true; return false; } - final private boolean jj_3_455() { - if (jj_scan_token(CURRENT)) return true; + final private boolean jj_3_1761() { + if (jj_scan_token(TIME)) return true; return false; } - final private boolean jj_3_454() { - if (jj_scan_token(NEXT)) return true; + final private boolean jj_3_801() { + if (jj_scan_token(CEIL)) return true; return false; } - final private boolean jj_3R_320() { + final private boolean jj_3_1760() { + if (jj_scan_token(SYSTEM_TIME)) return true; + return false; + } + + final private boolean jj_3_1759() { + if (jj_scan_token(SUCCEEDS)) return true; + return false; + } + + final private boolean jj_3_823() { Token xsp; xsp = jj_scanpos; - if (jj_3_889()) { - jj_scanpos = xsp; - if (jj_3_890()) { - jj_scanpos = xsp; - if (jj_3_891()) { - jj_scanpos = xsp; - if (jj_3_892()) { - jj_scanpos = xsp; - if (jj_3_893()) { - jj_scanpos = xsp; - if (jj_3_894()) { - jj_scanpos = xsp; - if (jj_3_895()) { - jj_scanpos = xsp; - if (jj_3_896()) { - jj_scanpos = xsp; - if (jj_3_897()) { - jj_scanpos = xsp; - if (jj_3_898()) { - jj_scanpos = xsp; - if (jj_3_899()) { - jj_scanpos = xsp; - if (jj_3_900()) { - jj_scanpos = xsp; - if (jj_3_901()) { - jj_scanpos = xsp; - if (jj_3_902()) { - jj_scanpos = xsp; - if (jj_3_903()) { - jj_scanpos = xsp; - if (jj_3_904()) { - jj_scanpos = xsp; - if (jj_3_905()) { - jj_scanpos = xsp; - if (jj_3_906()) { - jj_scanpos = xsp; - if (jj_3_907()) { - jj_scanpos = xsp; - if (jj_3_908()) { - jj_scanpos = xsp; - if (jj_3_909()) { - jj_scanpos = xsp; - if (jj_3_910()) { - jj_scanpos = xsp; - if (jj_3_911()) { - jj_scanpos = xsp; - if (jj_3_912()) { - jj_scanpos = xsp; - if (jj_3_913()) { - jj_scanpos = xsp; - if (jj_3_914()) { - jj_scanpos = xsp; - if (jj_3_915()) { - jj_scanpos = xsp; - if (jj_3_916()) { - jj_scanpos = xsp; - if (jj_3_917()) { + if (jj_3_801()) { jj_scanpos = xsp; - if (jj_3_918()) { - jj_scanpos = xsp; - if (jj_3_919()) { - jj_scanpos = xsp; - if (jj_3_920()) { - jj_scanpos = xsp; - if (jj_3_921()) { - jj_scanpos = xsp; - if (jj_3_922()) { - jj_scanpos = xsp; - if (jj_3_923()) { - jj_scanpos = xsp; - if (jj_3_924()) { - jj_scanpos = xsp; - if (jj_3_925()) { - jj_scanpos = xsp; - if (jj_3_926()) { - jj_scanpos = xsp; - if (jj_3_927()) { - jj_scanpos = xsp; - if (jj_3_928()) { - jj_scanpos = xsp; - if (jj_3_929()) { - jj_scanpos = xsp; - if (jj_3_930()) { - jj_scanpos = xsp; - if (jj_3_931()) { - jj_scanpos = xsp; - if (jj_3_932()) { - jj_scanpos = xsp; - if (jj_3_933()) { - jj_scanpos = xsp; - if (jj_3_934()) { - jj_scanpos = xsp; - if (jj_3_935()) { - jj_scanpos = xsp; - if (jj_3_936()) { - jj_scanpos = xsp; - if (jj_3_937()) { - jj_scanpos = xsp; - if (jj_3_938()) { - jj_scanpos = xsp; - if (jj_3_939()) { - jj_scanpos = xsp; - if (jj_3_940()) { - jj_scanpos = xsp; - if (jj_3_941()) { - jj_scanpos = xsp; - if (jj_3_942()) { - jj_scanpos = xsp; - if (jj_3_943()) { - jj_scanpos = xsp; - if (jj_3_944()) { - jj_scanpos = xsp; - if (jj_3_945()) { - jj_scanpos = xsp; - if (jj_3_946()) { - jj_scanpos = xsp; - if (jj_3_947()) { - jj_scanpos = xsp; - if (jj_3_948()) { - jj_scanpos = xsp; - if (jj_3_949()) { - jj_scanpos = xsp; - if (jj_3_950()) { - jj_scanpos = xsp; - if (jj_3_951()) { - jj_scanpos = xsp; - if (jj_3_952()) { - jj_scanpos = xsp; - if (jj_3_953()) return true; - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } + if (jj_3_802()) return true; } + if (jj_3R_287()) return true; + return false; + } + + final private boolean jj_3R_199() { + if (jj_3R_194()) return true; + return false; + } + + final private boolean jj_3_1758() { + if (jj_scan_token(SUBSET)) return true; + return false; + } + + final private boolean jj_3_1757() { + if (jj_scan_token(STDDEV_SAMP)) return true; return false; } - final private boolean jj_3R_226() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_454()) { - jj_scanpos = xsp; - if (jj_3_455()) return true; - } - if (jj_scan_token(VALUE)) return true; + final private boolean jj_3_1756() { + if (jj_scan_token(START)) return true; return false; } - final private boolean jj_3_126() { - if (jj_3R_118()) return true; + final private boolean jj_3R_171() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_80()) return true; return false; } - final private boolean jj_3_124() { - if (jj_scan_token(TRANSACTION)) return true; + final private boolean jj_3_1755() { + if (jj_scan_token(SQLSTATE)) return true; return false; } - final private boolean jj_3_888() { - if (jj_3R_320()) return true; + final private boolean jj_3_1754() { + if (jj_scan_token(SPECIFICTYPE)) return true; return false; } - final private boolean jj_3_887() { - if (jj_3R_146()) return true; + final private boolean jj_3_822() { + if (jj_scan_token(FLOOR)) return true; + if (jj_3R_287()) return true; return false; } - final private boolean jj_3R_129() { - if (jj_3R_146()) return true; + final private boolean jj_3_1753() { + if (jj_scan_token(SKIP_)) return true; return false; } - final private boolean jj_3R_222() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_887()) { - jj_scanpos = xsp; - if (jj_3_888()) return true; - } + final private boolean jj_3_1752() { + if (jj_scan_token(SESSION_USER)) return true; return false; } - final private boolean jj_3_453() { - if (jj_scan_token(ELSE)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_1751() { + if (jj_scan_token(SECOND)) return true; return false; } - final private boolean jj_3R_97() { + final private boolean jj_3_800() { + if (jj_scan_token(FOR)) return true; + if (jj_3R_79()) return true; + return false; + } + + final private boolean jj_3_1750() { + if (jj_scan_token(SCOPE)) return true; + return false; + } + + final private boolean jj_3_1749() { + if (jj_scan_token(SAFE_OFFSET)) return true; + return false; + } + + final private boolean jj_3_1748() { + if (jj_scan_token(ROW_NUMBER)) return true; + return false; + } + + final private boolean jj_3_1747() { if (jj_scan_token(ROLLBACK)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_125()) jj_scanpos = xsp; return false; } - final private boolean jj_3_452() { - if (jj_scan_token(WHEN)) return true; - if (jj_3R_227()) return true; + final private boolean jj_3_1746() { + if (jj_scan_token(RETURN)) return true; return false; } - final private boolean jj_3R_381() { + final private boolean jj_3R_193() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3R_321() { - if (jj_scan_token(SUBSTRING)) return true; + final private boolean jj_3_1745() { + if (jj_scan_token(RELEASE)) return true; return false; } - final private boolean jj_3R_96() { - if (jj_scan_token(COMMIT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_124()) jj_scanpos = xsp; + final private boolean jj_3_821() { + if (jj_scan_token(OVERLAY)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_451() { - if (jj_3R_81()) return true; + final private boolean jj_3_1744() { + if (jj_scan_token(REGR_SXX)) return true; return false; } - final private boolean jj_3R_225() { - if (jj_scan_token(CASE)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_451()) { - jj_scanpos = xsp; - if (jj_3R_381()) return true; - } + final private boolean jj_3_797() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_885() { - if (jj_3R_318()) return true; + final private boolean jj_3_1743() { + if (jj_scan_token(REGR_INTERCEPT)) return true; return false; } - final private boolean jj_3_884() { - if (jj_3R_84()) return true; + final private boolean jj_3_1742() { + if (jj_scan_token(REGR_AVGX)) return true; return false; } - final private boolean jj_3_886() { - if (jj_scan_token(OVER)) return true; + final private boolean jj_3_799() { Token xsp; - xsp = jj_scanpos; - if (jj_3_884()) { - jj_scanpos = xsp; - if (jj_3_885()) return true; + while (true) { + xsp = jj_scanpos; + if (jj_3_797()) { jj_scanpos = xsp; break; } } + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3R_95() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(QUERY)) return true; + final private boolean jj_3_1741() { + if (jj_scan_token(REF)) return true; return false; } - final private boolean jj_3_450() { - if (jj_3R_226()) return true; + final private boolean jj_3_1740() { + if (jj_scan_token(READS)) return true; return false; } - final private boolean jj_3_445() { - Token xsp; - xsp = jj_scanpos; - if (jj_scan_token(530)) jj_scanpos = xsp; - if (jj_3R_222()) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1739() { + if (jj_scan_token(QUALIFY)) return true; return false; } - final private boolean jj_3_449() { - if (jj_3R_225()) return true; + final private boolean jj_3_1738() { + if (jj_scan_token(PREPARE)) return true; return false; } - final private boolean jj_3_448() { - if (jj_3R_224()) return true; + final private boolean jj_3_1737() { + if (jj_scan_token(POWER)) return true; return false; } - final private boolean jj_3_447() { - if (jj_3R_146()) return true; + final private boolean jj_3_342() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_193()) return true; return false; } - final private boolean jj_3_123() { - if (jj_scan_token(ASYNC)) return true; + final private boolean jj_3_1736() { + if (jj_scan_token(PORTION)) return true; return false; } - final private boolean jj_3_446() { - if (jj_3R_223()) return true; + final private boolean jj_3_798() { + if (jj_scan_token(USING)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_883() { - if (jj_scan_token(TO)) return true; - if (jj_3R_319()) return true; + final private boolean jj_3_1735() { + if (jj_scan_token(PERCENT_RANK)) return true; return false; } - final private boolean jj_3R_369() { - if (jj_3R_363()) return true; + final private boolean jj_3R_189() { + if (jj_3R_193()) return true; return false; } - final private boolean jj_3R_386() { - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1734() { + if (jj_scan_token(PERCENT)) return true; return false; } - final private boolean jj_3_444() { - if (jj_3R_221()) return true; + final private boolean jj_3_1733() { + if (jj_scan_token(PARAMETER)) return true; return false; } - final private boolean jj_3R_94() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(COMPUTE)) return true; + final private boolean jj_3_1732() { + if (jj_scan_token(OVER)) return true; return false; } - final private boolean jj_3_443() { - if (jj_3R_220()) return true; + final private boolean jj_3_793() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_442() { - if (jj_3R_219()) return true; + final private boolean jj_3_1731() { + if (jj_scan_token(OPEN)) return true; return false; } - final private boolean jj_3_441() { - if (jj_3R_218()) return true; + final private boolean jj_3_1730() { + if (jj_scan_token(OMIT)) return true; return false; } - final private boolean jj_3_440() { - if (jj_3R_217()) return true; + final private boolean jj_3_792() { + if (jj_3R_196()) return true; return false; } - final private boolean jj_3_439() { - if (jj_3R_216()) return true; + final private boolean jj_3_1729() { + if (jj_scan_token(OCTET_LENGTH)) return true; return false; } - final private boolean jj_3_438() { - if (jj_3R_212()) return true; + final private boolean jj_3_1728() { + if (jj_scan_token(NULLIF)) return true; return false; } - final private boolean jj_3R_92() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(SERVICE)) return true; + final private boolean jj_3_820() { + if (jj_scan_token(TRANSLATE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_882() { - if (jj_3R_213()) return true; + final private boolean jj_3_1727() { + if (jj_scan_token(NORMALIZE)) return true; return false; } - final private boolean jj_3_437() { - if (jj_3R_215()) return true; + final private boolean jj_3_1726() { + if (jj_scan_token(NEXT)) return true; return false; } - final private boolean jj_3_881() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_1725() { + if (jj_scan_token(NCHAR)) return true; return false; } - final private boolean jj_3R_209() { + final private boolean jj_3_1724() { + if (jj_scan_token(MONTH)) return true; + return false; + } + + final private boolean jj_3_794() { + if (jj_scan_token(COMMA)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_437()) { - jj_scanpos = xsp; - if (jj_3_438()) { - jj_scanpos = xsp; - if (jj_3_439()) { - jj_scanpos = xsp; - if (jj_3_440()) { - jj_scanpos = xsp; - if (jj_3_441()) { - jj_scanpos = xsp; - if (jj_3_442()) { - jj_scanpos = xsp; - if (jj_3_443()) { - jj_scanpos = xsp; - if (jj_3_444()) { - jj_scanpos = xsp; - if (jj_3R_369()) { - jj_scanpos = xsp; - if (jj_3_446()) { - jj_scanpos = xsp; - if (jj_3_447()) { - jj_scanpos = xsp; - if (jj_3_448()) { - jj_scanpos = xsp; - if (jj_3_449()) { + if (jj_3_792()) { jj_scanpos = xsp; - if (jj_3_450()) return true; - } - } - } - } - } - } - } - } - } - } - } - } + if (jj_3_793()) return true; } return false; } - final private boolean jj_3_880() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(STAR)) return true; + final private boolean jj_3_1723() { + if (jj_scan_token(MOD)) return true; return false; } - final private boolean jj_3R_93() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(TRANSACTION)) return true; + final private boolean jj_3_1722() { + if (jj_scan_token(METHOD)) return true; return false; } - final private boolean jj_3R_390() { + final private boolean jj_3_1721() { + if (jj_scan_token(MAX)) return true; return false; } - final private boolean jj_3_879() { - if (jj_scan_token(SPECIFIC)) return true; + final private boolean jj_3_341() { + if (jj_scan_token(SUBSET)) return true; + if (jj_3R_192()) return true; return false; } - final private boolean jj_3R_315() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_879()) { - jj_scanpos = xsp; - if (jj_3R_390()) return true; - } - if (jj_3R_222()) return true; + final private boolean jj_3_1720() { + if (jj_scan_token(MATCHES)) return true; return false; } - final private boolean jj_3R_91() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(CONTINUOUS)) return true; + final private boolean jj_3_1719() { + if (jj_scan_token(LOCAL)) return true; return false; } - final private boolean jj_3_436() { - if (jj_scan_token(SEPARATOR)) return true; - if (jj_3R_132()) return true; + final private boolean jj_3_791() { + if (jj_scan_token(INTERVAL)) return true; + if (jj_3R_214()) return true; return false; } - final private boolean jj_3_435() { - if (jj_3R_70()) return true; + final private boolean jj_3_1718() { + if (jj_scan_token(LEAD)) return true; return false; } - final private boolean jj_3_434() { - if (jj_3R_214()) return true; + final private boolean jj_3_1717() { + if (jj_scan_token(LARGE)) return true; return false; } - final private boolean jj_3_877() { - if (jj_3R_318()) return true; + final private boolean jj_3_340() { + if (jj_scan_token(WITHIN)) return true; + if (jj_3R_191()) return true; return false; } - final private boolean jj_3_876() { - if (jj_3R_84()) return true; + final private boolean jj_3_790() { + if (jj_3R_119()) return true; return false; } - final private boolean jj_3R_90() { - if (jj_scan_token(KILL)) return true; - if (jj_scan_token(SCAN)) return true; + final private boolean jj_3_1716() { + if (jj_scan_token(JSON_VALUE)) return true; return false; } - final private boolean jj_3_433() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_83()) return true; + final private boolean jj_3_1715() { + if (jj_scan_token(JSON_OBJECTAGG)) return true; return false; } - final private boolean jj_3_878() { - if (jj_scan_token(OVER)) return true; + final private boolean jj_3_1714() { + if (jj_scan_token(JSON_ARRAYAGG)) return true; + return false; + } + + final private boolean jj_3_332() { + if (jj_scan_token(LAST)) return true; + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_1713() { + if (jj_scan_token(INTEGER)) return true; + return false; + } + + final private boolean jj_3_1712() { + if (jj_scan_token(INOUT)) return true; + return false; + } + + final private boolean jj_3_339() { + if (jj_scan_token(DOLLAR)) return true; + return false; + } + + final private boolean jj_3_796() { Token xsp; xsp = jj_scanpos; - if (jj_3_876()) { + if (jj_3_790()) { jj_scanpos = xsp; - if (jj_3_877()) return true; + if (jj_3_791()) return true; } + if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3_432() { - if (jj_3R_82()) return true; + final private boolean jj_3_1711() { + if (jj_scan_token(IMPORT)) return true; return false; } - final private boolean jj_3_431() { - if (jj_scan_token(STRING_AGG)) return true; + final private boolean jj_3_1710() { + if (jj_scan_token(HOLD)) return true; return false; } - final private boolean jj_3_430() { - if (jj_scan_token(GROUP_CONCAT)) return true; + final private boolean jj_3_1709() { + if (jj_scan_token(GRANT)) return true; return false; } - final private boolean jj_3_429() { - if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; + final private boolean jj_3_1708() { + if (jj_scan_token(FUSION)) return true; return false; } - final private boolean jj_3_428() { - if (jj_scan_token(ARRAY_AGG)) return true; + final private boolean jj_3_789() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_875() { - if (jj_scan_token(FILTER)) return true; + final private boolean jj_3_1707() { + if (jj_scan_token(FRAME_ROW)) return true; + return false; + } + + final private boolean jj_3_338() { + if (jj_scan_token(CARET)) return true; + return false; + } + + final private boolean jj_3_1706() { + if (jj_scan_token(FLOAT)) return true; + return false; + } + + final private boolean jj_3_1705() { + if (jj_scan_token(EXTRACT)) return true; + return false; + } + + final private boolean jj_3_1704() { + if (jj_scan_token(EXP)) return true; + return false; + } + + final private boolean jj_3_1703() { + if (jj_scan_token(EVERY)) return true; + return false; + } + + final private boolean jj_3_788() { + if (jj_scan_token(USING)) return true; + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_1702() { + if (jj_scan_token(END_PARTITION)) return true; + return false; + } + + final private boolean jj_3R_170() { if (jj_scan_token(LPAREN)) return true; + if (jj_3R_371()) return true; return false; } - final private boolean jj_3_874() { - if (jj_3R_310()) return true; + final private boolean jj_3_1701() { + if (jj_scan_token(END)) return true; return false; } - final private boolean jj_3R_314() { + final private boolean jj_3_336() { + if (jj_scan_token(PAST)) return true; + if (jj_scan_token(LAST)) return true; + return false; + } + + final private boolean jj_3_1700() { + if (jj_scan_token(EACH)) return true; + return false; + } + + final private boolean jj_3_1699() { + if (jj_scan_token(DISCONNECT)) return true; + return false; + } + + final private boolean jj_3R_190() { Token xsp; xsp = jj_scanpos; - if (jj_3_428()) { - jj_scanpos = xsp; - if (jj_3_429()) { - jj_scanpos = xsp; - if (jj_3_430()) { + if (jj_scan_token(303)) jj_scanpos = xsp; + if (jj_3R_85()) return true; + return false; + } + + final private boolean jj_3_1698() { + if (jj_scan_token(DESCRIBE)) return true; + return false; + } + + final private boolean jj_3_1697() { + if (jj_scan_token(DEFINE)) return true; + return false; + } + + final private boolean jj_3_1696() { + if (jj_scan_token(DEC)) return true; + return false; + } + + final private boolean jj_3_795() { + if (jj_3R_79()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_788()) { jj_scanpos = xsp; - if (jj_3_431()) return true; - } + if (jj_3_789()) return true; } - } - if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_873() { - if (jj_3R_317()) return true; + final private boolean jj_3_1695() { + if (jj_scan_token(DATETIME)) return true; return false; } - final private boolean jj_3_872() { - if (jj_3R_316()) return true; + final private boolean jj_3_1694() { + if (jj_scan_token(CURSOR)) return true; return false; } - final private boolean jj_3_871() { - if (jj_3R_315()) return true; + final private boolean jj_3_1693() { + if (jj_scan_token(CURRENT_ROLE)) return true; + return false; + } + + final private boolean jj_3_1692() { + if (jj_scan_token(CURRENT_CATALOG)) return true; + return false; + } + + final private boolean jj_3_1691() { + if (jj_scan_token(CUBE)) return true; + return false; + } + + final private boolean jj_3_1690() { + if (jj_scan_token(COUNT)) return true; + return false; + } + + final private boolean jj_3_1689() { + if (jj_scan_token(CONVERT)) return true; + return false; + } + + final private boolean jj_3_28() { + if (jj_3R_78()) return true; + return false; + } + + final private boolean jj_3_1688() { + if (jj_scan_token(CONDITION)) return true; + return false; + } + + final private boolean jj_3_1687() { + if (jj_scan_token(COLLATE)) return true; + return false; + } + + final private boolean jj_3_27() { + if (jj_3R_77()) return true; + return false; + } + + final private boolean jj_3_1686() { + if (jj_scan_token(CLOB)) return true; + return false; + } + + final private boolean jj_3_1685() { + if (jj_scan_token(CHAR_LENGTH)) return true; + return false; + } + + final private boolean jj_3_1684() { + if (jj_scan_token(CHAR)) return true; + return false; + } + + final private boolean jj_3_819() { + if (jj_scan_token(CONVERT)) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3_1683() { + if (jj_scan_token(CASCADED)) return true; + return false; + } + + final private boolean jj_3_334() { + if (jj_scan_token(FIRST)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_870() { - if (jj_3R_314()) return true; + final private boolean jj_3_1682() { + if (jj_scan_token(CALL)) return true; return false; } - final private boolean jj_3R_363() { + final private boolean jj_3R_204() { Token xsp; xsp = jj_scanpos; - if (jj_3_870()) { + if (jj_3_26()) { jj_scanpos = xsp; - if (jj_3_871()) return true; + if (jj_3_27()) { + jj_scanpos = xsp; + if (jj_3_28()) return true; + } } return false; } - final private boolean jj_3_426() { - if (jj_3R_213()) return true; + final private boolean jj_3_1681() { + if (jj_scan_token(BIT)) return true; return false; } - final private boolean jj_3_425() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_26() { + if (jj_3R_76()) return true; return false; } - final private boolean jj_3_427() { - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_787() { + if (jj_scan_token(FROM)) return true; + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_424() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(STAR)) return true; + final private boolean jj_3_1680() { + if (jj_scan_token(BEGIN_PARTITION)) return true; return false; } - final private boolean jj_3_122() { - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_1679() { + if (jj_scan_token(AVG)) return true; return false; } - final private boolean jj_3_121() { - if (jj_scan_token(MINUS)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_1678() { + if (jj_scan_token(AT)) return true; return false; } - final private boolean jj_3_120() { - if (jj_scan_token(PLUS)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_1677() { + if (jj_scan_token(ARE)) return true; return false; } - final private boolean jj_3R_200() { - if (jj_3R_84()) return true; + final private boolean jj_3_333() { + if (jj_scan_token(NEXT)) return true; + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3R_316() { - if (jj_3R_214()) return true; + final private boolean jj_3_1676() { + if (jj_scan_token(ABS)) return true; return false; } - final private boolean jj_3_869() { - if (jj_scan_token(RESPECT)) return true; - if (jj_scan_token(NULLS)) return true; + final private boolean jj_3_1675() { + if (jj_scan_token(ANALYZE)) return true; return false; } - final private boolean jj_3R_233() { - if (jj_scan_token(USER)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_1674() { + if (jj_scan_token(QUERY)) return true; return false; } - final private boolean jj_3_423() { - if (jj_3R_212()) return true; + final private boolean jj_3_1673() { + if (jj_scan_token(SERVICE)) return true; return false; } - final private boolean jj_3R_214() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_868()) { - jj_scanpos = xsp; - if (jj_3_869()) return true; - } + final private boolean jj_3_25() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_422() { - if (jj_3R_191()) return true; + final private boolean jj_3_1672() { + if (jj_scan_token(KILL)) return true; return false; } - final private boolean jj_3_868() { - if (jj_scan_token(IGNORE)) return true; - if (jj_scan_token(NULLS)) return true; + final private boolean jj_3_1671() { + if (jj_scan_token(LOGGING)) return true; return false; } - final private boolean jj_3R_74() { + final private boolean jj_3_24() { + if (jj_3R_75()) return true; + return false; + } + + final private boolean jj_3_335() { + if (jj_scan_token(TO)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_422()) { + if (jj_3_333()) { + jj_scanpos = xsp; + if (jj_3_334()) { jj_scanpos = xsp; - if (jj_3_423()) return true; + lookingAhead = true; + jj_semLA = true; + lookingAhead = false; + if (!jj_semLA || jj_3R_190()) return true; + } } return false; } - final private boolean jj_3R_89() { - if (jj_scan_token(ALTER)) return true; - if (jj_scan_token(USER)) return true; + final private boolean jj_3_818() { + if (jj_scan_token(POSITION)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_310() { - if (jj_scan_token(WITHIN)) return true; - if (jj_scan_token(GROUP)) return true; + final private boolean jj_3_1670() { + if (jj_scan_token(ENCRYPTED)) return true; return false; } - final private boolean jj_3R_230() { - if (jj_scan_token(USER)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_1669() { + if (jj_scan_token(CACHE_NAME)) return true; return false; } - final private boolean jj_3_115() { - if (jj_scan_token(COLUMN)) return true; + final private boolean jj_3_1668() { + if (jj_scan_token(ATOMICITY)) return true; return false; } - final private boolean jj_3_114() { - if (jj_scan_token(COLUMN)) return true; + final private boolean jj_3_1667() { + if (jj_scan_token(TEMPLATE)) return true; return false; } - final private boolean jj_3_421() { - if (jj_scan_token(EQUALS)) return true; + final private boolean jj_3_1666() { + if (jj_scan_token(XML)) return true; return false; } - final private boolean jj_3_119() { - if (jj_scan_token(DROP)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_115()) jj_scanpos = xsp; - if (jj_3R_127()) return true; - if (jj_3R_128()) return true; + final private boolean jj_3_1665() { + if (jj_scan_token(WORK)) return true; return false; } - final private boolean jj_3R_317() { - if (jj_scan_token(WITHIN)) return true; - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_22() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_420() { - if (jj_scan_token(SUCCEEDS)) return true; + final private boolean jj_3_337() { + if (jj_scan_token(AFTER)) return true; + if (jj_scan_token(MATCH)) return true; return false; } - final private boolean jj_3_419() { - if (jj_scan_token(IMMEDIATELY)) return true; - if (jj_scan_token(SUCCEEDS)) return true; + final private boolean jj_3_1664() { + if (jj_scan_token(VIEW)) return true; return false; } - final private boolean jj_3_118() { - if (jj_scan_token(ADD)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_114()) jj_scanpos = xsp; - if (jj_3R_125()) return true; - if (jj_3R_126()) return true; + final private boolean jj_3_1663() { + if (jj_scan_token(UTF32)) return true; return false; } - final private boolean jj_3_418() { - if (jj_scan_token(PRECEDES)) return true; + final private boolean jj_3_1662() { + if (jj_scan_token(USER_DEFINED_TYPE_NAME)) return true; return false; } - final private boolean jj_3_117() { - if (jj_scan_token(NOLOGGING)) return true; + final private boolean jj_3_1661() { + if (jj_scan_token(USAGE)) return true; return false; } - final private boolean jj_3_116() { - if (jj_scan_token(LOGGING)) return true; + final private boolean jj_3_21() { + if (jj_3R_75()) return true; return false; } - final private boolean jj_3_417() { - if (jj_scan_token(IMMEDIATELY)) return true; - if (jj_scan_token(PRECEDES)) return true; + final private boolean jj_3_817() { + if (jj_scan_token(EXTRACT)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_416() { - if (jj_scan_token(OVERLAPS)) return true; + final private boolean jj_3_1660() { + if (jj_scan_token(UNDER)) return true; return false; } - final private boolean jj_3_867() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_133()) return true; + final private boolean jj_3_1659() { + if (jj_scan_token(UNBOUNDED)) return true; return false; } - final private boolean jj_3R_88() { - if (jj_scan_token(ALTER)) return true; - if (jj_scan_token(TABLE)) return true; + final private boolean jj_3_331() { + if (jj_scan_token(ALL)) return true; + if (jj_scan_token(ROWS)) return true; return false; } - final private boolean jj_3_866() { - if (jj_scan_token(NEXT)) return true; + final private boolean jj_3_1658() { + if (jj_scan_token(TRIGGER_SCHEMA)) return true; return false; } - final private boolean jj_3_865() { - if (jj_scan_token(PREV)) return true; + final private boolean jj_3_785() { + if (jj_scan_token(INTERVAL)) return true; + if (jj_3R_214()) return true; return false; } - final private boolean jj_3R_312() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_865()) { - jj_scanpos = xsp; - if (jj_3_866()) return true; - } - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_786() { + if (jj_scan_token(FORMAT)) return true; + if (jj_3R_137()) return true; return false; } - final private boolean jj_3_113() { - if (jj_3R_124()) return true; + final private boolean jj_3_1657() { + if (jj_scan_token(TRANSFORMS)) return true; return false; } - final private boolean jj_3R_126() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_112()) { - jj_scanpos = xsp; - if (jj_3_113()) return true; - } + final private boolean jj_3_1656() { + if (jj_scan_token(TRANSACTIONS_COMMITTED)) return true; return false; } - final private boolean jj_3_112() { - if (jj_3R_123()) return true; + final private boolean jj_3_784() { + if (jj_3R_119()) return true; return false; } - final private boolean jj_3_111() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_1655() { + if (jj_scan_token(TOP_LEVEL_COUNT)) return true; return false; } - final private boolean jj_3_864() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_133()) return true; + final private boolean jj_3_330() { + if (jj_scan_token(ONE)) return true; + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3R_123() { - if (jj_3R_84()) return true; - if (jj_3R_116()) return true; + final private boolean jj_3_1654() { + if (jj_scan_token(TIMESTAMPDIFF)) return true; return false; } - final private boolean jj_3_863() { - if (jj_scan_token(LAST)) return true; + final private boolean jj_3_1653() { + if (jj_scan_token(TIME_DIFF)) return true; return false; } - final private boolean jj_3_862() { - if (jj_scan_token(FIRST)) return true; + final private boolean jj_3_23() { + if (jj_3R_75()) return true; + if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3R_389() { + final private boolean jj_3_18() { + if (jj_scan_token(NEXT)) return true; return false; } - final private boolean jj_3_861() { - if (jj_scan_token(FINAL)) return true; + final private boolean jj_3_1652() { + if (jj_scan_token(TABLE_NAME)) return true; return false; } - final private boolean jj_3_860() { - if (jj_scan_token(RUNNING)) return true; + final private boolean jj_3_1651() { + if (jj_scan_token(STYLE)) return true; return false; } - final private boolean jj_3_110() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_123()) return true; + final private boolean jj_3_1650() { + if (jj_scan_token(STATEMENT)) return true; return false; } - final private boolean jj_3R_311() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_860()) { - jj_scanpos = xsp; - if (jj_3_861()) { - jj_scanpos = xsp; - if (jj_3R_389()) return true; - } - } - xsp = jj_scanpos; - if (jj_3_862()) { - jj_scanpos = xsp; - if (jj_3_863()) return true; - } - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1649() { + if (jj_scan_token(SQL_VARBINARY)) return true; return false; } - final private boolean jj_3_411() { - if (jj_3R_208()) return true; + final private boolean jj_3_329() { + if (jj_scan_token(MEASURES)) return true; + if (jj_3R_189()) return true; return false; } - final private boolean jj_3R_124() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_123()) return true; + final private boolean jj_3_1648() { + if (jj_scan_token(SQL_TSI_SECOND)) return true; return false; } - final private boolean jj_3R_211() { + final private boolean jj_3_783() { + if (jj_scan_token(TRY_CAST)) return true; return false; } - final private boolean jj_3_410() { - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_1647() { + if (jj_scan_token(SQL_TSI_MINUTE)) return true; return false; } - final private boolean jj_3_859() { - if (jj_scan_token(FINAL)) return true; + final private boolean jj_3_781() { + if (jj_scan_token(CAST)) return true; return false; } - final private boolean jj_3_858() { - if (jj_scan_token(RUNNING)) return true; + final private boolean jj_3_782() { + if (jj_scan_token(SAFE_CAST)) return true; return false; } - final private boolean jj_3_415() { + final private boolean jj_3R_73() { + if (jj_scan_token(LIMIT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_410()) { + if (jj_3_23()) { jj_scanpos = xsp; - if (jj_3R_211()) return true; + if (jj_3_24()) { + jj_scanpos = xsp; + if (jj_3_25()) return true; + } } - if (jj_3R_166()) return true; return false; } - final private boolean jj_3R_313() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_858()) { - jj_scanpos = xsp; - if (jj_3_859()) return true; - } - if (jj_3R_363()) return true; + final private boolean jj_3_1646() { + if (jj_scan_token(SQL_TSI_FRAC_SECOND)) return true; return false; } - final private boolean jj_3R_205() { - if (jj_scan_token(INFIX_CAST)) return true; - if (jj_3R_116()) return true; + final private boolean jj_3_1645() { + if (jj_scan_token(SQL_TIMESTAMP)) return true; return false; } - final private boolean jj_3_857() { - if (jj_3R_313()) return true; + final private boolean jj_3_1644() { + if (jj_scan_token(SQL_REAL)) return true; return false; } - final private boolean jj_3R_232() { - if (jj_scan_token(INDEX)) return true; - if (jj_3R_127()) return true; - if (jj_3R_146()) return true; + final private boolean jj_3_20() { + if (jj_scan_token(ROWS)) return true; return false; } - final private boolean jj_3_856() { - if (jj_3R_312()) return true; + final private boolean jj_3_328() { + if (jj_3R_71()) return true; return false; } - final private boolean jj_3_414() { - if (jj_scan_token(ROW)) return true; - if (jj_3R_166()) return true; + final private boolean jj_3_816() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_781()) { + jj_scanpos = xsp; + if (jj_3_782()) { + jj_scanpos = xsp; + if (jj_3_783()) return true; + } + } + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_413() { - if (jj_3R_210()) return true; + final private boolean jj_3_1643() { + if (jj_scan_token(SQL_NCLOB)) return true; return false; } - final private boolean jj_3_855() { - if (jj_3R_311()) return true; + final private boolean jj_3_17() { + if (jj_scan_token(FIRST)) return true; return false; } - final private boolean jj_3_854() { - if (jj_scan_token(MATCH_NUMBER)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1642() { + if (jj_scan_token(SQL_LONGVARCHAR)) return true; return false; } - final private boolean jj_3R_202() { + final private boolean jj_3_1641() { + if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; + return false; + } + + final private boolean jj_3_1640() { + if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; + return false; + } + + final private boolean jj_3R_222() { Token xsp; xsp = jj_scanpos; - if (jj_3_412()) { + if (jj_3_816()) { jj_scanpos = xsp; - if (jj_3_413()) { + if (jj_3_817()) { jj_scanpos = xsp; - if (jj_3_414()) { + if (jj_3_818()) { + jj_scanpos = xsp; + if (jj_3_819()) { + jj_scanpos = xsp; + if (jj_3_820()) { + jj_scanpos = xsp; + if (jj_3_821()) { + jj_scanpos = xsp; + if (jj_3_822()) { + jj_scanpos = xsp; + if (jj_3_823()) { jj_scanpos = xsp; - if (jj_3_415()) return true; + if (jj_3_824()) { + jj_scanpos = xsp; + if (jj_3_825()) { + jj_scanpos = xsp; + if (jj_3_826()) { + jj_scanpos = xsp; + if (jj_3_827()) { + jj_scanpos = xsp; + if (jj_3_828()) { + jj_scanpos = xsp; + if (jj_3_829()) { + jj_scanpos = xsp; + if (jj_3_830()) { + jj_scanpos = xsp; + if (jj_3_831()) { + jj_scanpos = xsp; + if (jj_3_832()) { + jj_scanpos = xsp; + if (jj_3_833()) { + jj_scanpos = xsp; + if (jj_3_834()) { + jj_scanpos = xsp; + if (jj_3_835()) { + jj_scanpos = xsp; + if (jj_3_836()) { + jj_scanpos = xsp; + if (jj_3_837()) { + jj_scanpos = xsp; + if (jj_3_838()) { + jj_scanpos = xsp; + if (jj_3_839()) { + jj_scanpos = xsp; + if (jj_3_840()) { + jj_scanpos = xsp; + if (jj_3_841()) { + jj_scanpos = xsp; + if (jj_3_842()) { + jj_scanpos = xsp; + if (jj_3_843()) { + jj_scanpos = xsp; + if (jj_3_844()) { + jj_scanpos = xsp; + if (jj_3_845()) { + jj_scanpos = xsp; + if (jj_3_846()) return true; + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } } } } return false; } - final private boolean jj_3_412() { - if (jj_3R_209()) return true; + final private boolean jj_3_1639() { + if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; return false; } - final private boolean jj_3R_231() { - if (jj_scan_token(TABLE)) return true; - if (jj_3R_127()) return true; - if (jj_3R_146()) return true; + final private boolean jj_3_1638() { + if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; return false; } - final private boolean jj_3_853() { - if (jj_scan_token(CLASSIFIER)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_327() { + if (jj_scan_token(PARTITION)) return true; + if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3R_291() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_853()) { - jj_scanpos = xsp; - if (jj_3_854()) { - jj_scanpos = xsp; - if (jj_3_855()) { - jj_scanpos = xsp; - if (jj_3_856()) { - jj_scanpos = xsp; - if (jj_3_857()) return true; - } - } - } - } + final private boolean jj_3_1637() { + if (jj_scan_token(SQL_INTEGER)) return true; return false; } - final private boolean jj_3R_349() { + final private boolean jj_3_1636() { + if (jj_scan_token(SQL_DECIMAL)) return true; return false; } - final private boolean jj_3R_127() { + final private boolean jj_3_19() { + if (jj_scan_token(ROW)) return true; + return false; + } + + final private boolean jj_3_1635() { + if (jj_scan_token(SQL_CHAR)) return true; + return false; + } + + final private boolean jj_3_1634() { + if (jj_scan_token(SQL_BIT)) return true; + return false; + } + + final private boolean jj_3R_74() { + if (jj_scan_token(FETCH)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_109()) { + if (jj_3_17()) { jj_scanpos = xsp; - if (jj_3R_349()) return true; + if (jj_3_18()) return true; } return false; } - final private boolean jj_3_109() { - if (jj_scan_token(IF)) return true; - if (jj_scan_token(EXISTS)) return true; + final private boolean jj_3_1633() { + if (jj_scan_token(SPECIFIC_NAME)) return true; return false; } - final private boolean jj_3_852() { + final private boolean jj_3R_166() { + if (jj_scan_token(MATCH_RECOGNIZE)) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + + final private boolean jj_3_1632() { + if (jj_scan_token(SIZE)) return true; + return false; + } + + final private boolean jj_3_1631() { if (jj_scan_token(SESSION)) return true; return false; } - final private boolean jj_3_851() { - if (jj_scan_token(HOP)) return true; + final private boolean jj_3_15() { + if (jj_scan_token(ROWS)) return true; return false; } - final private boolean jj_3_850() { - if (jj_scan_token(TUMBLE)) return true; + final private boolean jj_3_1630() { + if (jj_scan_token(SERIALIZABLE)) return true; return false; } - final private boolean jj_3_409() { - if (jj_scan_token(NE2)) return true; + final private boolean jj_3_1629() { + if (jj_scan_token(SELF)) return true; return false; } - final private boolean jj_3_408() { - if (jj_scan_token(NE)) return true; + final private boolean jj_3_1628() { + if (jj_scan_token(SECONDS)) return true; return false; } - final private boolean jj_3_108() { - if (jj_scan_token(INLINE_SIZE)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_1627() { + if (jj_scan_token(SCOPE_CATALOGS)) return true; return false; } - final private boolean jj_3R_299() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_850()) { - jj_scanpos = xsp; - if (jj_3_851()) { - jj_scanpos = xsp; - if (jj_3_852()) return true; - } - } - if (jj_3R_387()) return true; + final private boolean jj_3_1626() { + if (jj_scan_token(SCALE)) return true; return false; } - final private boolean jj_3_407() { - if (jj_scan_token(EQ)) return true; + final private boolean jj_3_1625() { + if (jj_scan_token(ROUTINE_SCHEMA)) return true; return false; } - final private boolean jj_3_406() { - if (jj_scan_token(GE)) return true; + final private boolean jj_3_1624() { + if (jj_scan_token(ROUTINE)) return true; return false; } - final private boolean jj_3_405() { - if (jj_scan_token(GT)) return true; + final private boolean jj_3_1623() { + if (jj_scan_token(RETURNING)) return true; return false; } - final private boolean jj_3_107() { - if (jj_scan_token(PARALLEL)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_14() { + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_106() { + final private boolean jj_3_16() { Token xsp; xsp = jj_scanpos; - if (jj_3_107()) { + if (jj_3_14()) { jj_scanpos = xsp; - if (jj_3_108()) return true; + if (jj_3_15()) return true; } return false; } - final private boolean jj_3_404() { - if (jj_scan_token(LE)) return true; - return false; - } - - final private boolean jj_3R_201() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_403()) { - jj_scanpos = xsp; - if (jj_3_404()) { - jj_scanpos = xsp; - if (jj_3_405()) { - jj_scanpos = xsp; - if (jj_3_406()) { - jj_scanpos = xsp; - if (jj_3_407()) { - jj_scanpos = xsp; - if (jj_3_408()) { - jj_scanpos = xsp; - if (jj_3_409()) return true; - } - } - } - } - } - } + final private boolean jj_3_1622() { + if (jj_scan_token(RETURNED_LENGTH)) return true; return false; } - final private boolean jj_3_403() { - if (jj_scan_token(LT)) return true; + final private boolean jj_3_1621() { + if (jj_scan_token(RESTART)) return true; return false; } - final private boolean jj_3_105() { - if (jj_3R_84()) return true; + final private boolean jj_3_1620() { + if (jj_scan_token(REPEATABLE)) return true; return false; } - final private boolean jj_3R_393() { + final private boolean jj_3R_72() { + if (jj_scan_token(OFFSET)) return true; + if (jj_3R_75()) return true; return false; } - final private boolean jj_3R_229() { - if (jj_scan_token(INDEX)) return true; - if (jj_3R_125()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_105()) jj_scanpos = xsp; - if (jj_scan_token(ON)) return true; + final private boolean jj_3_1619() { + if (jj_scan_token(QUARTERS)) return true; return false; } - final private boolean jj_3_400() { - if (jj_3R_207()) return true; + final private boolean jj_3_1618() { + if (jj_scan_token(PRIVILEGES)) return true; return false; } - final private boolean jj_3R_290() { - if (jj_scan_token(TIME_TRUNC)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1617() { + if (jj_scan_token(PRECEDING)) return true; return false; } - final private boolean jj_3_393() { - if (jj_scan_token(DOT)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_1616() { + if (jj_scan_token(PLACING)) return true; return false; } - final private boolean jj_3_104() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_122()) return true; + final private boolean jj_3_1615() { + if (jj_scan_token(PAST)) return true; return false; } - final private boolean jj_3_399() { - if (jj_scan_token(LBRACKET)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_1614() { + if (jj_scan_token(PASCAL)) return true; return false; } - final private boolean jj_3R_289() { - if (jj_scan_token(TIME_DIFF)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1613() { + if (jj_scan_token(PARAMETER_SPECIFIC_NAME)) return true; return false; } - final private boolean jj_3_398() { - if (jj_3R_206()) return true; - if (jj_3R_203()) return true; + final private boolean jj_3_1612() { + if (jj_scan_token(PARAMETER_NAME)) return true; return false; } - final private boolean jj_3_397() { - if (jj_3R_205()) return true; + final private boolean jj_3_1611() { + if (jj_scan_token(OVERRIDING)) return true; return false; } - final private boolean jj_3_102() { - if (jj_scan_token(DESC)) return true; + final private boolean jj_3_1610() { + if (jj_scan_token(ORDINALITY)) return true; return false; } - final private boolean jj_3_103() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_101()) { - jj_scanpos = xsp; - if (jj_3_102()) return true; - } + final private boolean jj_3_325() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_188()) return true; return false; } - final private boolean jj_3_101() { - if (jj_scan_token(ASC)) return true; + final private boolean jj_3_1609() { + if (jj_scan_token(OPTION)) return true; return false; } - final private boolean jj_3_392() { - if (jj_scan_token(ESCAPE)) return true; - if (jj_3R_202()) return true; + final private boolean jj_3R_216() { + if (jj_scan_token(CURSOR)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3R_122() { - if (jj_3R_84()) return true; + final private boolean jj_3_1608() { + if (jj_scan_token(NUMBER)) return true; return false; } - final private boolean jj_3_388() { - if (jj_scan_token(STAR)) return true; + final private boolean jj_3_1607() { + if (jj_scan_token(NORMALIZED)) return true; return false; } - final private boolean jj_3_391() { - if (jj_scan_token(TILDE)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_388()) jj_scanpos = xsp; + final private boolean jj_3_1606() { + if (jj_scan_token(NAMES)) return true; return false; } - final private boolean jj_3_387() { - if (jj_scan_token(STAR)) return true; + final private boolean jj_3_1605() { + if (jj_scan_token(MORE_)) return true; return false; } - final private boolean jj_3_386() { - if (jj_scan_token(SIMILAR)) return true; - if (jj_scan_token(TO)) return true; + final private boolean jj_3_326() { + if (jj_scan_token(AS)) return true; + if (jj_3R_161()) return true; return false; } - final private boolean jj_3_390() { - if (jj_scan_token(NEGATE)) return true; - if (jj_scan_token(TILDE)) return true; + final private boolean jj_3_1604() { + if (jj_scan_token(MINUTES)) return true; return false; } - final private boolean jj_3R_288() { - if (jj_scan_token(TIMESTAMP_TRUNC)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1603() { + if (jj_scan_token(MICROSECOND)) return true; return false; } - final private boolean jj_3_385() { - if (jj_scan_token(RLIKE)) return true; + final private boolean jj_3_8() { + if (jj_3R_74()) return true; return false; } - final private boolean jj_3R_120() { + final private boolean jj_3_1602() { + if (jj_scan_token(MESSAGE_LENGTH)) return true; return false; } - final private boolean jj_3_384() { - if (jj_scan_token(ILIKE)) return true; + final private boolean jj_3_12() { + if (jj_3R_74()) return true; return false; } - final private boolean jj_3_98() { - if (jj_3R_118()) return true; + final private boolean jj_3_1601() { + if (jj_scan_token(MAP)) return true; return false; } - final private boolean jj_3_381() { - if (jj_scan_token(SIMILAR)) return true; - if (jj_scan_token(TO)) return true; + final private boolean jj_3_1600() { + if (jj_scan_token(LIBRARY)) return true; return false; } - final private boolean jj_3_383() { - if (jj_scan_token(LIKE)) return true; + final private boolean jj_3R_188() { + if (jj_3R_133()) return true; return false; } - final private boolean jj_3_380() { - if (jj_scan_token(RLIKE)) return true; + final private boolean jj_3_1599() { + if (jj_scan_token(LAST)) return true; return false; } - final private boolean jj_3_379() { - if (jj_scan_token(ILIKE)) return true; + final private boolean jj_3_778() { + if (jj_scan_token(LOCAL)) return true; return false; } - final private boolean jj_3_100() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_98()) { - jj_scanpos = xsp; - if (jj_3R_120()) return true; - } - if (jj_3R_121()) return true; - if (jj_scan_token(AS)) return true; - if (jj_3R_79()) return true; + final private boolean jj_3_1598() { + if (jj_scan_token(KEY_MEMBER)) return true; return false; } - final private boolean jj_3_378() { - if (jj_scan_token(LIKE)) return true; + final private boolean jj_3_1597() { + if (jj_scan_token(JSON)) return true; return false; } - final private boolean jj_3_99() { - if (jj_3R_119()) return true; + final private boolean jj_3_1596() { + if (jj_scan_token(ISOLATION)) return true; return false; } - final private boolean jj_3_849() { - if (jj_3R_78()) return true; + final private boolean jj_3_7() { + if (jj_3R_73()) return true; return false; } - final private boolean jj_3_382() { - if (jj_scan_token(NOT)) return true; + final private boolean jj_3_9() { Token xsp; xsp = jj_scanpos; - if (jj_3_378()) { - jj_scanpos = xsp; - if (jj_3_379()) { - jj_scanpos = xsp; - if (jj_3_380()) { + if (jj_3_7()) { jj_scanpos = xsp; - if (jj_3_381()) return true; - } - } + if (jj_3_8()) return true; } return false; } - final private boolean jj_3_848() { - if (jj_3R_261()) return true; + final private boolean jj_3_1595() { + if (jj_scan_token(INSTANTIABLE)) return true; return false; } - final private boolean jj_3_389() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_382()) { - jj_scanpos = xsp; - if (jj_3_383()) { - jj_scanpos = xsp; - if (jj_3_384()) { - jj_scanpos = xsp; - if (jj_3_385()) { - jj_scanpos = xsp; - if (jj_3_386()) return true; - } - } - } - } + final private boolean jj_3R_397() { return false; } - final private boolean jj_3R_228() { - if (jj_scan_token(TABLE)) return true; - if (jj_3R_125()) return true; - if (jj_3R_146()) return true; + final private boolean jj_3_1594() { + if (jj_scan_token(INITIALLY)) return true; return false; } - final private boolean jj_3R_283() { - if (jj_scan_token(DATE_TRUNC)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1593() { + if (jj_scan_token(INCLUDE)) return true; return false; } - final private boolean jj_3_396() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_389()) { - jj_scanpos = xsp; - if (jj_3_390()) { - jj_scanpos = xsp; - if (jj_3_391()) return true; - } - } - if (jj_3R_204()) return true; + final private boolean jj_3_1592() { + if (jj_scan_token(IMMEDIATE)) return true; return false; } - final private boolean jj_3_374() { - if (jj_scan_token(ASYMMETRIC)) return true; + final private boolean jj_3_1591() { + if (jj_scan_token(HOURS)) return true; return false; } - final private boolean jj_3_375() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_373()) { - jj_scanpos = xsp; - if (jj_3_374()) return true; - } + final private boolean jj_3_1590() { + if (jj_scan_token(GROUP_CONCAT)) return true; return false; } - final private boolean jj_3_373() { - if (jj_scan_token(SYMMETRIC)) return true; + final private boolean jj_3_6() { + if (jj_3R_72()) return true; return false; } - final private boolean jj_3_97() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_117()) return true; + final private boolean jj_3_11() { + if (jj_3R_72()) return true; return false; } - final private boolean jj_3R_119() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_117()) return true; + final private boolean jj_3_780() { + if (jj_scan_token(WITH)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_778()) jj_scanpos = xsp; + if (jj_scan_token(TIME)) return true; return false; } - final private boolean jj_3_371() { - if (jj_scan_token(ASYMMETRIC)) return true; + final private boolean jj_3_1589() { + if (jj_scan_token(GO)) return true; return false; } - final private boolean jj_3_377() { - if (jj_scan_token(BETWEEN)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_375()) jj_scanpos = xsp; + final private boolean jj_3_1588() { + if (jj_scan_token(GENERAL)) return true; return false; } - final private boolean jj_3_372() { + final private boolean jj_3R_286() { Token xsp; xsp = jj_scanpos; - if (jj_3_370()) { + if (jj_3_779()) { jj_scanpos = xsp; - if (jj_3_371()) return true; + if (jj_3_780()) { + jj_scanpos = xsp; + if (jj_3R_397()) return true; + } } return false; } - final private boolean jj_3_370() { - if (jj_scan_token(SYMMETRIC)) return true; + final private boolean jj_3_1587() { + if (jj_scan_token(FOUND)) return true; return false; } - final private boolean jj_3R_285() { - if (jj_scan_token(DATETIME_DIFF)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_10() { + if (jj_3R_73()) return true; return false; } - final private boolean jj_3_94() { - if (jj_scan_token(CONSTRAINT)) return true; - if (jj_3R_84()) return true; + final private boolean jj_3_13() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_10()) { + jj_scanpos = xsp; + if (jj_3_11()) { + jj_scanpos = xsp; + if (jj_3_12()) return true; + } + } return false; } - final private boolean jj_3_376() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(BETWEEN)) return true; + final private boolean jj_3_779() { + if (jj_scan_token(WITHOUT)) return true; + if (jj_scan_token(TIME)) return true; + if (jj_scan_token(ZONE)) return true; return false; } - final private boolean jj_3_96() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_94()) jj_scanpos = xsp; - if (jj_scan_token(PRIMARY)) return true; - if (jj_scan_token(KEY)) return true; + final private boolean jj_3_1586() { + if (jj_scan_token(FOLLOWING)) return true; return false; } - final private boolean jj_3_93() { - if (jj_scan_token(PRIMARY)) return true; - if (jj_scan_token(KEY)) return true; + final private boolean jj_3_1585() { + if (jj_scan_token(EXCLUDING)) return true; return false; } - final private boolean jj_3_395() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_376()) { - jj_scanpos = xsp; - if (jj_3_377()) return true; - } - if (jj_3R_203()) return true; + final private boolean jj_3R_404() { return false; } - final private boolean jj_3_92() { - if (jj_scan_token(DEFAULT_)) return true; - if (jj_3R_113()) return true; + final private boolean jj_3_1584() { + if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3R_287() { - if (jj_scan_token(TIMESTAMP_DIFF)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1583() { + if (jj_scan_token(DYNAMIC_FUNCTION_CODE)) return true; return false; } - final private boolean jj_3_366() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_5() { + if (jj_3R_71()) return true; return false; } - final private boolean jj_3_365() { - if (jj_scan_token(ANY)) return true; + final private boolean jj_3_1582() { + if (jj_scan_token(DOY)) return true; return false; } - final private boolean jj_3R_117() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_95()) { - jj_scanpos = xsp; - if (jj_3_96()) return true; - } + final private boolean jj_3R_373() { return false; } - final private boolean jj_3_95() { - if (jj_3R_84()) return true; - if (jj_3R_116()) return true; + final private boolean jj_3_1581() { + if (jj_scan_token(DISPATCH)) return true; return false; } - final private boolean jj_3_364() { - if (jj_scan_token(SOME)) return true; + final private boolean jj_3_1580() { + if (jj_scan_token(DESCRIPTION)) return true; return false; } - final private boolean jj_3_369() { - if (jj_3R_201()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_364()) { - jj_scanpos = xsp; - if (jj_3_365()) { - jj_scanpos = xsp; - if (jj_3_366()) return true; - } - } + final private boolean jj_3_324() { + if (jj_scan_token(EXCLUDE)) return true; + if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_368() { - if (jj_scan_token(IN)) return true; + final private boolean jj_3_1579() { + if (jj_scan_token(DEPTH)) return true; return false; } - final private boolean jj_3_367() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(IN)) return true; + final private boolean jj_3_323() { + if (jj_scan_token(INCLUDE)) return true; + if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3R_115() { - if (jj_scan_token(INTERVAL)) return true; - if (jj_3R_208()) return true; + final private boolean jj_3_1578() { + if (jj_scan_token(DEFINED)) return true; return false; } - final private boolean jj_3_394() { + final private boolean jj_3_1577() { + if (jj_scan_token(DEFAULTS)) return true; + return false; + } + + final private boolean jj_3R_344() { Token xsp; xsp = jj_scanpos; - if (jj_3_367()) { - jj_scanpos = xsp; - if (jj_3_368()) { + if (jj_3_5()) { jj_scanpos = xsp; - if (jj_3_369()) return true; - } + if (jj_3R_404()) return true; } - if (jj_3R_166()) return true; - return false; - } - - final private boolean jj_3R_286() { - if (jj_scan_token(TIMESTAMPDIFF)) return true; - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_319()) return true; - return false; - } - - final private boolean jj_3_91() { - if (jj_3R_115()) return true; + xsp = jj_scanpos; + if (jj_3_13()) jj_scanpos = xsp; return false; } - final private boolean jj_3_90() { - if (jj_3R_114()) return true; + final private boolean jj_3_1576() { + if (jj_scan_token(DAYOFYEAR)) return true; return false; } - final private boolean jj_3_401() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_394()) { - jj_scanpos = xsp; - if (jj_3_395()) { - jj_scanpos = xsp; - if (jj_3_396()) { - jj_scanpos = xsp; - if (jj_3_397()) { - jj_scanpos = xsp; - if (jj_3_398()) { - jj_scanpos = xsp; - if (jj_3_399()) { - jj_scanpos = xsp; - if (jj_3_400()) return true; - } - } - } - } - } - } + final private boolean jj_3_1575() { + if (jj_scan_token(DATETIME_INTERVAL_PRECISION)) return true; return false; } - final private boolean jj_3R_116() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_90()) { - jj_scanpos = xsp; - if (jj_3_91()) return true; - } + final private boolean jj_3R_396() { return false; } - final private boolean jj_3_402() { - Token xsp; - if (jj_3_401()) return true; - while (true) { - xsp = jj_scanpos; - if (jj_3_401()) { jj_scanpos = xsp; break; } - } + final private boolean jj_3_1574() { + if (jj_scan_token(DATE_TRUNC)) return true; return false; } - final private boolean jj_3R_204() { - if (jj_3R_203()) return true; + final private boolean jj_3R_175() { + if (jj_scan_token(UNPIVOT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_402()) { + if (jj_3_323()) { jj_scanpos = xsp; - if (jj_3R_393()) return true; + if (jj_3_324()) { + jj_scanpos = xsp; + if (jj_3R_373()) return true; + } } + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_89() { - if (jj_3R_84()) return true; + final private boolean jj_3_1573() { + if (jj_scan_token(DATA)) return true; return false; } - final private boolean jj_3_88() { - if (jj_3R_113()) return true; + final private boolean jj_3_1572() { + if (jj_scan_token(CONTAINS_SUBSTR)) return true; return false; } - final private boolean jj_3R_284() { - if (jj_scan_token(TIMESTAMPADD)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1571() { + if (jj_scan_token(CONSTRAINTS)) return true; return false; } - final private boolean jj_3R_112() { - if (jj_3R_345()) return true; - if (jj_scan_token(EQ)) return true; + final private boolean jj_3_1570() { + if (jj_scan_token(CONNECTION_NAME)) return true; return false; } - final private boolean jj_3_87() { - if (jj_scan_token(ENCRYPTED)) return true; + final private boolean jj_3R_256() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_777()) { + jj_scanpos = xsp; + if (jj_3R_396()) return true; + } return false; } - final private boolean jj_3_86() { - if (jj_scan_token(VALUE_TYPE)) return true; + final private boolean jj_3_1569() { + if (jj_scan_token(CONDITIONAL)) return true; return false; } - final private boolean jj_3_85() { - if (jj_scan_token(KEY_TYPE)) return true; + final private boolean jj_3_777() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_257()) return true; return false; } - final private boolean jj_3_84() { - if (jj_scan_token(DATA_REGION)) return true; + final private boolean jj_3_1568() { + if (jj_scan_token(COMMAND_FUNCTION)) return true; return false; } - final private boolean jj_3_83() { - if (jj_scan_token(CACHE_NAME)) return true; + final private boolean jj_3_1567() { + if (jj_scan_token(COLLATION_NAME)) return true; return false; } - final private boolean jj_3R_282() { - if (jj_scan_token(DATE_DIFF)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1566() { + if (jj_scan_token(COBOL)) return true; return false; } - final private boolean jj_3_82() { - if (jj_scan_token(CACHE_GROUP)) return true; + final private boolean jj_3_1565() { + if (jj_scan_token(CHARACTER_SET_NAME)) return true; return false; } - final private boolean jj_3_81() { - if (jj_scan_token(WRITE_SYNCHRONIZATION_MODE)) return true; + final private boolean jj_3_1564() { + if (jj_scan_token(CHARACTERISTICS)) return true; return false; } - final private boolean jj_3_363() { - if (jj_scan_token(DOT)) return true; - if (jj_3R_200()) return true; + final private boolean jj_3_1563() { + if (jj_scan_token(CATALOG_NAME)) return true; return false; } - final private boolean jj_3_80() { - if (jj_scan_token(ATOMICITY)) return true; + final private boolean jj_3_1562() { + if (jj_scan_token(C)) return true; return false; } - final private boolean jj_3_79() { - if (jj_scan_token(AFFINITY_KEY)) return true; + final private boolean jj_3R_376() { return false; } - final private boolean jj_3_78() { - if (jj_scan_token(BACKUPS)) return true; + final private boolean jj_3_1561() { + if (jj_scan_token(BEFORE)) return true; return false; } - final private boolean jj_3R_345() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_77()) { - jj_scanpos = xsp; - if (jj_3_78()) { - jj_scanpos = xsp; - if (jj_3_79()) { - jj_scanpos = xsp; - if (jj_3_80()) { - jj_scanpos = xsp; - if (jj_3_81()) { - jj_scanpos = xsp; - if (jj_3_82()) { - jj_scanpos = xsp; - if (jj_3_83()) { - jj_scanpos = xsp; - if (jj_3_84()) { - jj_scanpos = xsp; - if (jj_3_85()) { - jj_scanpos = xsp; - if (jj_3_86()) { - jj_scanpos = xsp; - if (jj_3_87()) return true; - } - } - } - } - } - } - } - } - } - } + final private boolean jj_3R_80() { + if (jj_3R_343()) return true; + if (jj_3R_344()) return true; return false; } - final private boolean jj_3_77() { - if (jj_scan_token(TEMPLATE)) return true; + final private boolean jj_3_1560() { + if (jj_scan_token(ASSIGNMENT)) return true; return false; } - final private boolean jj_3_73() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_112()) return true; + final private boolean jj_3_1559() { + if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; return false; } - final private boolean jj_3R_368() { - if (jj_3R_397()) return true; + final private boolean jj_3_1558() { + if (jj_scan_token(ALWAYS)) return true; return false; } - final private boolean jj_3R_203() { - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3R_368()) { jj_scanpos = xsp; break; } - } - if (jj_3R_202()) return true; - while (true) { - xsp = jj_scanpos; - if (jj_3_363()) { jj_scanpos = xsp; break; } - } + final private boolean jj_3_1557() { + if (jj_scan_token(ADD)) return true; return false; } - final private boolean jj_3_75() { - if (jj_3R_112()) return true; + final private boolean jj_3_321() { + if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_847() { - if (jj_3R_310()) return true; + final private boolean jj_3_1556() { + if (jj_scan_token(ABSOLUTE)) return true; return false; } - final private boolean jj_3_74() { - if (jj_scan_token(QUOTED_IDENTIFIER)) return true; + final private boolean jj_3_322() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_321()) jj_scanpos = xsp; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_81() { - if (jj_3R_204()) return true; + final private boolean jj_3_776() { + if (jj_scan_token(TIMESTAMP)) return true; + if (jj_3R_256()) return true; + if (jj_3R_286()) return true; return false; } - final private boolean jj_3_76() { - if (jj_scan_token(WITH)) return true; + final private boolean jj_3R_339() { Token xsp; xsp = jj_scanpos; - if (jj_3_74()) { + if (jj_3_1556()) { + jj_scanpos = xsp; + if (jj_3_1557()) { + jj_scanpos = xsp; + if (jj_3_1558()) { + jj_scanpos = xsp; + if (jj_3_1559()) { + jj_scanpos = xsp; + if (jj_3_1560()) { + jj_scanpos = xsp; + if (jj_3_1561()) { + jj_scanpos = xsp; + if (jj_3_1562()) { + jj_scanpos = xsp; + if (jj_3_1563()) { + jj_scanpos = xsp; + if (jj_3_1564()) { + jj_scanpos = xsp; + if (jj_3_1565()) { + jj_scanpos = xsp; + if (jj_3_1566()) { + jj_scanpos = xsp; + if (jj_3_1567()) { + jj_scanpos = xsp; + if (jj_3_1568()) { + jj_scanpos = xsp; + if (jj_3_1569()) { + jj_scanpos = xsp; + if (jj_3_1570()) { + jj_scanpos = xsp; + if (jj_3_1571()) { + jj_scanpos = xsp; + if (jj_3_1572()) { + jj_scanpos = xsp; + if (jj_3_1573()) { + jj_scanpos = xsp; + if (jj_3_1574()) { + jj_scanpos = xsp; + if (jj_3_1575()) { + jj_scanpos = xsp; + if (jj_3_1576()) { + jj_scanpos = xsp; + if (jj_3_1577()) { + jj_scanpos = xsp; + if (jj_3_1578()) { + jj_scanpos = xsp; + if (jj_3_1579()) { + jj_scanpos = xsp; + if (jj_3_1580()) { + jj_scanpos = xsp; + if (jj_3_1581()) { + jj_scanpos = xsp; + if (jj_3_1582()) { + jj_scanpos = xsp; + if (jj_3_1583()) { + jj_scanpos = xsp; + if (jj_3_1584()) { + jj_scanpos = xsp; + if (jj_3_1585()) { + jj_scanpos = xsp; + if (jj_3_1586()) { + jj_scanpos = xsp; + if (jj_3_1587()) { + jj_scanpos = xsp; + if (jj_3_1588()) { + jj_scanpos = xsp; + if (jj_3_1589()) { + jj_scanpos = xsp; + if (jj_3_1590()) { + jj_scanpos = xsp; + if (jj_3_1591()) { + jj_scanpos = xsp; + if (jj_3_1592()) { + jj_scanpos = xsp; + if (jj_3_1593()) { + jj_scanpos = xsp; + if (jj_3_1594()) { + jj_scanpos = xsp; + if (jj_3_1595()) { + jj_scanpos = xsp; + if (jj_3_1596()) { + jj_scanpos = xsp; + if (jj_3_1597()) { + jj_scanpos = xsp; + if (jj_3_1598()) { + jj_scanpos = xsp; + if (jj_3_1599()) { + jj_scanpos = xsp; + if (jj_3_1600()) { + jj_scanpos = xsp; + if (jj_3_1601()) { + jj_scanpos = xsp; + if (jj_3_1602()) { + jj_scanpos = xsp; + if (jj_3_1603()) { + jj_scanpos = xsp; + if (jj_3_1604()) { + jj_scanpos = xsp; + if (jj_3_1605()) { + jj_scanpos = xsp; + if (jj_3_1606()) { + jj_scanpos = xsp; + if (jj_3_1607()) { + jj_scanpos = xsp; + if (jj_3_1608()) { + jj_scanpos = xsp; + if (jj_3_1609()) { + jj_scanpos = xsp; + if (jj_3_1610()) { + jj_scanpos = xsp; + if (jj_3_1611()) { + jj_scanpos = xsp; + if (jj_3_1612()) { + jj_scanpos = xsp; + if (jj_3_1613()) { + jj_scanpos = xsp; + if (jj_3_1614()) { + jj_scanpos = xsp; + if (jj_3_1615()) { + jj_scanpos = xsp; + if (jj_3_1616()) { + jj_scanpos = xsp; + if (jj_3_1617()) { + jj_scanpos = xsp; + if (jj_3_1618()) { + jj_scanpos = xsp; + if (jj_3_1619()) { + jj_scanpos = xsp; + if (jj_3_1620()) { + jj_scanpos = xsp; + if (jj_3_1621()) { + jj_scanpos = xsp; + if (jj_3_1622()) { + jj_scanpos = xsp; + if (jj_3_1623()) { + jj_scanpos = xsp; + if (jj_3_1624()) { + jj_scanpos = xsp; + if (jj_3_1625()) { + jj_scanpos = xsp; + if (jj_3_1626()) { + jj_scanpos = xsp; + if (jj_3_1627()) { + jj_scanpos = xsp; + if (jj_3_1628()) { + jj_scanpos = xsp; + if (jj_3_1629()) { + jj_scanpos = xsp; + if (jj_3_1630()) { + jj_scanpos = xsp; + if (jj_3_1631()) { + jj_scanpos = xsp; + if (jj_3_1632()) { + jj_scanpos = xsp; + if (jj_3_1633()) { + jj_scanpos = xsp; + if (jj_3_1634()) { + jj_scanpos = xsp; + if (jj_3_1635()) { + jj_scanpos = xsp; + if (jj_3_1636()) { + jj_scanpos = xsp; + if (jj_3_1637()) { + jj_scanpos = xsp; + if (jj_3_1638()) { + jj_scanpos = xsp; + if (jj_3_1639()) { + jj_scanpos = xsp; + if (jj_3_1640()) { + jj_scanpos = xsp; + if (jj_3_1641()) { + jj_scanpos = xsp; + if (jj_3_1642()) { + jj_scanpos = xsp; + if (jj_3_1643()) { + jj_scanpos = xsp; + if (jj_3_1644()) { + jj_scanpos = xsp; + if (jj_3_1645()) { + jj_scanpos = xsp; + if (jj_3_1646()) { + jj_scanpos = xsp; + if (jj_3_1647()) { + jj_scanpos = xsp; + if (jj_3_1648()) { + jj_scanpos = xsp; + if (jj_3_1649()) { + jj_scanpos = xsp; + if (jj_3_1650()) { + jj_scanpos = xsp; + if (jj_3_1651()) { + jj_scanpos = xsp; + if (jj_3_1652()) { + jj_scanpos = xsp; + if (jj_3_1653()) { + jj_scanpos = xsp; + if (jj_3_1654()) { + jj_scanpos = xsp; + if (jj_3_1655()) { + jj_scanpos = xsp; + if (jj_3_1656()) { + jj_scanpos = xsp; + if (jj_3_1657()) { + jj_scanpos = xsp; + if (jj_3_1658()) { + jj_scanpos = xsp; + if (jj_3_1659()) { + jj_scanpos = xsp; + if (jj_3_1660()) { + jj_scanpos = xsp; + if (jj_3_1661()) { + jj_scanpos = xsp; + if (jj_3_1662()) { + jj_scanpos = xsp; + if (jj_3_1663()) { + jj_scanpos = xsp; + if (jj_3_1664()) { + jj_scanpos = xsp; + if (jj_3_1665()) { + jj_scanpos = xsp; + if (jj_3_1666()) { + jj_scanpos = xsp; + if (jj_3_1667()) { + jj_scanpos = xsp; + if (jj_3_1668()) { + jj_scanpos = xsp; + if (jj_3_1669()) { + jj_scanpos = xsp; + if (jj_3_1670()) { + jj_scanpos = xsp; + if (jj_3_1671()) { + jj_scanpos = xsp; + if (jj_3_1672()) { + jj_scanpos = xsp; + if (jj_3_1673()) { + jj_scanpos = xsp; + if (jj_3_1674()) { + jj_scanpos = xsp; + if (jj_3_1675()) { + jj_scanpos = xsp; + if (jj_3_1676()) { + jj_scanpos = xsp; + if (jj_3_1677()) { + jj_scanpos = xsp; + if (jj_3_1678()) { + jj_scanpos = xsp; + if (jj_3_1679()) { + jj_scanpos = xsp; + if (jj_3_1680()) { + jj_scanpos = xsp; + if (jj_3_1681()) { + jj_scanpos = xsp; + if (jj_3_1682()) { + jj_scanpos = xsp; + if (jj_3_1683()) { + jj_scanpos = xsp; + if (jj_3_1684()) { + jj_scanpos = xsp; + if (jj_3_1685()) { + jj_scanpos = xsp; + if (jj_3_1686()) { + jj_scanpos = xsp; + if (jj_3_1687()) { + jj_scanpos = xsp; + if (jj_3_1688()) { + jj_scanpos = xsp; + if (jj_3_1689()) { + jj_scanpos = xsp; + if (jj_3_1690()) { + jj_scanpos = xsp; + if (jj_3_1691()) { + jj_scanpos = xsp; + if (jj_3_1692()) { + jj_scanpos = xsp; + if (jj_3_1693()) { + jj_scanpos = xsp; + if (jj_3_1694()) { + jj_scanpos = xsp; + if (jj_3_1695()) { + jj_scanpos = xsp; + if (jj_3_1696()) { + jj_scanpos = xsp; + if (jj_3_1697()) { + jj_scanpos = xsp; + if (jj_3_1698()) { + jj_scanpos = xsp; + if (jj_3_1699()) { + jj_scanpos = xsp; + if (jj_3_1700()) { + jj_scanpos = xsp; + if (jj_3_1701()) { + jj_scanpos = xsp; + if (jj_3_1702()) { + jj_scanpos = xsp; + if (jj_3_1703()) { + jj_scanpos = xsp; + if (jj_3_1704()) { + jj_scanpos = xsp; + if (jj_3_1705()) { + jj_scanpos = xsp; + if (jj_3_1706()) { + jj_scanpos = xsp; + if (jj_3_1707()) { + jj_scanpos = xsp; + if (jj_3_1708()) { + jj_scanpos = xsp; + if (jj_3_1709()) { + jj_scanpos = xsp; + if (jj_3_1710()) { + jj_scanpos = xsp; + if (jj_3_1711()) { + jj_scanpos = xsp; + if (jj_3_1712()) { + jj_scanpos = xsp; + if (jj_3_1713()) { + jj_scanpos = xsp; + if (jj_3_1714()) { + jj_scanpos = xsp; + if (jj_3_1715()) { + jj_scanpos = xsp; + if (jj_3_1716()) { + jj_scanpos = xsp; + if (jj_3_1717()) { + jj_scanpos = xsp; + if (jj_3_1718()) { + jj_scanpos = xsp; + if (jj_3_1719()) { + jj_scanpos = xsp; + if (jj_3_1720()) { + jj_scanpos = xsp; + if (jj_3_1721()) { + jj_scanpos = xsp; + if (jj_3_1722()) { + jj_scanpos = xsp; + if (jj_3_1723()) { + jj_scanpos = xsp; + if (jj_3_1724()) { + jj_scanpos = xsp; + if (jj_3_1725()) { + jj_scanpos = xsp; + if (jj_3_1726()) { + jj_scanpos = xsp; + if (jj_3_1727()) { + jj_scanpos = xsp; + if (jj_3_1728()) { + jj_scanpos = xsp; + if (jj_3_1729()) { + jj_scanpos = xsp; + if (jj_3_1730()) { + jj_scanpos = xsp; + if (jj_3_1731()) { + jj_scanpos = xsp; + if (jj_3_1732()) { + jj_scanpos = xsp; + if (jj_3_1733()) { + jj_scanpos = xsp; + if (jj_3_1734()) { + jj_scanpos = xsp; + if (jj_3_1735()) { + jj_scanpos = xsp; + if (jj_3_1736()) { + jj_scanpos = xsp; + if (jj_3_1737()) { + jj_scanpos = xsp; + if (jj_3_1738()) { + jj_scanpos = xsp; + if (jj_3_1739()) { + jj_scanpos = xsp; + if (jj_3_1740()) { + jj_scanpos = xsp; + if (jj_3_1741()) { + jj_scanpos = xsp; + if (jj_3_1742()) { + jj_scanpos = xsp; + if (jj_3_1743()) { + jj_scanpos = xsp; + if (jj_3_1744()) { + jj_scanpos = xsp; + if (jj_3_1745()) { + jj_scanpos = xsp; + if (jj_3_1746()) { + jj_scanpos = xsp; + if (jj_3_1747()) { jj_scanpos = xsp; - if (jj_3_75()) return true; - } - return false; - } - - final private boolean jj_3_846() { - if (jj_3R_308()) return true; - return false; - } - - final private boolean jj_3R_121() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_76()) jj_scanpos = xsp; - return false; - } - - final private boolean jj_3R_78() { - if (jj_3R_81()) return true; - return false; - } - - final private boolean jj_3_845() { - if (jj_3R_309()) return true; - return false; - } - - final private boolean jj_3R_298() { - if (jj_scan_token(JSON_ARRAYAGG)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; - } - - final private boolean jj_3R_348() { - return false; - } - - final private boolean jj_3R_125() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_72()) { + if (jj_3_1748()) { jj_scanpos = xsp; - if (jj_3R_348()) return true; - } - return false; - } - - final private boolean jj_3_72() { - if (jj_scan_token(IF)) return true; - if (jj_scan_token(NOT)) return true; - return false; - } - - final private boolean jj_3_362() { - if (jj_3R_81()) return true; - return false; - } - - final private boolean jj_3R_241() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_361()) { + if (jj_3_1749()) { jj_scanpos = xsp; - if (jj_3_362()) return true; - } - return false; - } - - final private boolean jj_3_361() { - if (jj_3R_199()) return true; - return false; - } - - final private boolean jj_3_359() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_198()) return true; - return false; - } - - final private boolean jj_3R_309() { - if (jj_3R_70()) return true; - return false; - } - - final private boolean jj_3_360() { - if (jj_3R_118()) return true; - return false; - } - - final private boolean jj_3R_198() { - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_71() { - if (jj_3R_111()) return true; - return false; - } - - final private boolean jj_3_70() { - if (jj_3R_110()) return true; - return false; - } - - final private boolean jj_3_844() { - if (jj_3R_308()) return true; - return false; - } - - final private boolean jj_3_842() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; - return false; - } - - final private boolean jj_3_69() { - if (jj_3R_109()) return true; - return false; - } - - final private boolean jj_3_68() { - if (jj_3R_108()) return true; - return false; - } - - final private boolean jj_3_843() { - if (jj_3R_78()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_842()) { jj_scanpos = xsp; break; } - } - return false; - } - - final private boolean jj_3R_197() { - if (jj_scan_token(WITH)) return true; - if (jj_3R_198()) return true; - return false; - } - - final private boolean jj_3_67() { - if (jj_3R_107()) return true; - return false; - } - - final private boolean jj_3_66() { - if (jj_3R_106()) return true; - return false; - } - - final private boolean jj_3_65() { - if (jj_3R_105()) return true; - return false; - } - - final private boolean jj_3R_297() { - if (jj_scan_token(JSON_ARRAY)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; - } - - final private boolean jj_3_64() { - if (jj_3R_79()) return true; - return false; - } - - final private boolean jj_3_63() { - if (jj_3R_104()) return true; - return false; - } - - final private boolean jj_3_62() { - if (jj_3R_103()) return true; - return false; - } - - final private boolean jj_3_61() { - if (jj_3R_102()) return true; - return false; - } - - final private boolean jj_3_60() { - if (jj_3R_101()) return true; - return false; - } - - final private boolean jj_3_59() { - if (jj_3R_100()) return true; - return false; - } - - final private boolean jj_3_58() { - if (jj_3R_99()) return true; - return false; - } - - final private boolean jj_3_841() { - if (jj_3R_308()) return true; - return false; - } - - final private boolean jj_3_57() { - if (jj_3R_98()) return true; - return false; - } - - final private boolean jj_3_56() { - if (jj_3R_97()) return true; - return false; - } - - final private boolean jj_3_55() { - if (jj_3R_96()) return true; - return false; - } - - final private boolean jj_3R_67() { - if (jj_3R_331()) return true; - return false; - } - - final private boolean jj_3_54() { - if (jj_3R_95()) return true; - return false; - } - - final private boolean jj_3_53() { - if (jj_3R_94()) return true; - return false; - } - - final private boolean jj_3R_296() { - if (jj_scan_token(JSON_OBJECTAGG)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; - } - - final private boolean jj_3_52() { - if (jj_3R_93()) return true; - return false; - } - - final private boolean jj_3_51() { - if (jj_3R_92()) return true; - return false; - } - - final private boolean jj_3_50() { - if (jj_3R_91()) return true; - return false; - } - - final private boolean jj_3_49() { - if (jj_3R_90()) return true; - return false; - } - - final private boolean jj_3_48() { - if (jj_3R_89()) return true; - return false; - } - - final private boolean jj_3_47() { - if (jj_3R_88()) return true; - return false; - } - - final private boolean jj_3R_87() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_47()) { + if (jj_3_1750()) { jj_scanpos = xsp; - if (jj_3_48()) { + if (jj_3_1751()) { jj_scanpos = xsp; - if (jj_3_49()) { + if (jj_3_1752()) { jj_scanpos = xsp; - if (jj_3_50()) { + if (jj_3_1753()) { jj_scanpos = xsp; - if (jj_3_51()) { + if (jj_3_1754()) { jj_scanpos = xsp; - if (jj_3_52()) { + if (jj_3_1755()) { jj_scanpos = xsp; - if (jj_3_53()) { + if (jj_3_1756()) { jj_scanpos = xsp; - if (jj_3_54()) { + if (jj_3_1757()) { jj_scanpos = xsp; - if (jj_3_55()) { + if (jj_3_1758()) { jj_scanpos = xsp; - if (jj_3_56()) { + if (jj_3_1759()) { jj_scanpos = xsp; - if (jj_3_57()) { + if (jj_3_1760()) { jj_scanpos = xsp; - if (jj_3_58()) { + if (jj_3_1761()) { jj_scanpos = xsp; - if (jj_3_59()) { + if (jj_3_1762()) { jj_scanpos = xsp; - if (jj_3_60()) { + if (jj_3_1763()) { jj_scanpos = xsp; - if (jj_3_61()) { + if (jj_3_1764()) { jj_scanpos = xsp; - if (jj_3_62()) { + if (jj_3_1765()) { jj_scanpos = xsp; - if (jj_3_63()) { + if (jj_3_1766()) { jj_scanpos = xsp; - if (jj_3_64()) { + if (jj_3_1767()) { jj_scanpos = xsp; - if (jj_3_65()) { + if (jj_3_1768()) { jj_scanpos = xsp; - if (jj_3_66()) { + if (jj_3_1769()) { jj_scanpos = xsp; - if (jj_3_67()) { + if (jj_3_1770()) { jj_scanpos = xsp; - if (jj_3_68()) { + if (jj_3_1771()) { jj_scanpos = xsp; - if (jj_3_69()) { + if (jj_3_1772()) { jj_scanpos = xsp; - if (jj_3_70()) { + if (jj_3_1773()) { jj_scanpos = xsp; - if (jj_3_71()) return true; + if (jj_3_1774()) return true; + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } } } } @@ -30737,1462 +34124,283 @@ final private boolean jj_3R_87() { } } } - return false; - } - - final private boolean jj_3_840() { - if (jj_3R_308()) return true; - return false; - } - - final private boolean jj_3_838() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_307()) return true; - return false; - } - - final private boolean jj_3_46() { - if (jj_3R_87()) return true; - return false; - } - - final private boolean jj_3_839() { - if (jj_3R_307()) return true; - return false; - } - - final private boolean jj_3_45() { - if (jj_scan_token(SEMICOLON)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_46()) jj_scanpos = xsp; - return false; - } - - final private boolean jj_3R_295() { - if (jj_scan_token(JSON_OBJECT)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; - } - - final private boolean jj_3_358() { - if (jj_3R_67()) return true; - return false; - } - - final private boolean jj_3_357() { - if (jj_3R_197()) return true; - return false; - } - - final private boolean jj_3R_68() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_357()) jj_scanpos = xsp; - if (jj_3R_199()) return true; - return false; - } - - final private boolean jj_3_837() { - if (jj_scan_token(ABSENT)) return true; - if (jj_scan_token(ON)) return true; - return false; - } - - final private boolean jj_3R_308() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_836()) { - jj_scanpos = xsp; - if (jj_3_837()) return true; } - return false; - } - - final private boolean jj_3_836() { - if (jj_scan_token(NULL)) return true; - if (jj_scan_token(ON)) return true; - return false; - } - - final private boolean jj_3_356() { - if (jj_3R_67()) return true; - return false; - } - - final private boolean jj_3_355() { - if (jj_3R_197()) return true; - return false; - } - - final private boolean jj_3R_334() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_355()) jj_scanpos = xsp; - if (jj_3R_241()) return true; - while (true) { - xsp = jj_scanpos; - if (jj_3_356()) { jj_scanpos = xsp; break; } } - return false; - } - - final private boolean jj_3_833() { - if (jj_scan_token(KEY)) return true; - if (jj_3R_306()) return true; - return false; - } - - final private boolean jj_3_835() { - if (jj_scan_token(COLON)) return true; - return false; - } - - final private boolean jj_3_834() { - if (jj_scan_token(VALUE)) return true; - return false; - } - - final private boolean jj_3R_80() { - if (jj_scan_token(DEFAULT_)) return true; - return false; - } - - final private boolean jj_3R_388() { - if (jj_scan_token(KEY)) return true; - return false; - } - - final private boolean jj_3R_307() { - Token xsp; - xsp = jj_scanpos; - if (jj_3R_388()) jj_scanpos = xsp; - if (jj_3R_306()) return true; - xsp = jj_scanpos; - if (jj_3_834()) { - jj_scanpos = xsp; - if (jj_3_835()) return true; } - return false; - } - - final private boolean jj_3_44() { - if (jj_3R_85()) return true; - return false; - } - - final private boolean jj_3_43() { - if (jj_3R_81()) return true; - return false; - } - - final private boolean jj_3_42() { - if (jj_3R_80()) return true; - return false; - } - - final private boolean jj_3R_336() { - return false; - } - - final private boolean jj_3_41() { - if (jj_3R_84()) return true; - if (jj_scan_token(NAMED_ARGUMENT_ASSIGNMENT)) return true; - return false; - } - - final private boolean jj_3R_306() { - if (jj_3R_81()) return true; - return false; - } - - final private boolean jj_3R_83() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_41()) { - jj_scanpos = xsp; - if (jj_3R_336()) return true; } - xsp = jj_scanpos; - if (jj_3_42()) { - jj_scanpos = xsp; - if (jj_3_43()) { - jj_scanpos = xsp; - if (jj_3_44()) return true; } } - return false; - } - - final private boolean jj_3_40() { - if (jj_3R_86()) return true; - return false; - } - - final private boolean jj_3_39() { - if (jj_3R_85()) return true; - return false; - } - - final private boolean jj_3_38() { - if (jj_3R_80()) return true; - return false; - } - - final private boolean jj_3_832() { - if (jj_3R_305()) return true; - return false; - } - - final private boolean jj_3R_196() { - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3R_353() { - return false; - } - - final private boolean jj_3_827() { - if (jj_scan_token(ARRAY)) return true; - return false; - } - - final private boolean jj_3_37() { - if (jj_3R_84()) return true; - if (jj_scan_token(NAMED_ARGUMENT_ASSIGNMENT)) return true; - return false; - } - - final private boolean jj_3_831() { - if (jj_3R_304()) return true; - if (jj_scan_token(WRAPPER)) return true; - return false; - } - - final private boolean jj_3R_148() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_37()) { - jj_scanpos = xsp; - if (jj_3R_353()) return true; } - xsp = jj_scanpos; - if (jj_3_38()) { - jj_scanpos = xsp; - if (jj_3_39()) { - jj_scanpos = xsp; - if (jj_3_40()) return true; } } - return false; - } - - final private boolean jj_3_825() { - if (jj_scan_token(ARRAY)) return true; - return false; - } - - final private boolean jj_3_354() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_196()) return true; - return false; - } - - final private boolean jj_3R_294() { - if (jj_scan_token(JSON_QUERY)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; - } - - final private boolean jj_3_826() { - if (jj_scan_token(UNCONDITIONAL)) return true; - return false; - } - - final private boolean jj_3_824() { - if (jj_scan_token(ARRAY)) return true; - return false; - } - - final private boolean jj_3_830() { - if (jj_scan_token(WITH)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_826()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_827()) jj_scanpos = xsp; - return false; - } - - final private boolean jj_3_36() { - if (jj_scan_token(ALL)) return true; - return false; - } - - final private boolean jj_3_829() { - if (jj_scan_token(WITH)) return true; - if (jj_scan_token(CONDITIONAL)) return true; - return false; - } - - final private boolean jj_3R_82() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_35()) { - jj_scanpos = xsp; - if (jj_3_36()) return true; } - return false; - } - - final private boolean jj_3_35() { - if (jj_scan_token(DISTINCT)) return true; - return false; - } - - final private boolean jj_3R_304() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_828()) { - jj_scanpos = xsp; - if (jj_3_829()) { - jj_scanpos = xsp; - if (jj_3_830()) return true; } } - return false; - } - - final private boolean jj_3R_195() { - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_828() { - if (jj_scan_token(WITHOUT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_824()) jj_scanpos = xsp; - return false; - } - - final private boolean jj_3_823() { - if (jj_scan_token(ERROR)) return true; - return false; - } - - final private boolean jj_3_353() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_195()) return true; - return false; - } - - final private boolean jj_3_34() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_83()) return true; - return false; - } - - final private boolean jj_3R_187() { - if (jj_3R_195()) return true; - return false; - } - - final private boolean jj_3_822() { - if (jj_scan_token(EMPTY)) return true; - return false; - } - - final private boolean jj_3R_370() { - return false; - } - - final private boolean jj_3_33() { - if (jj_3R_82()) return true; - return false; - } - - final private boolean jj_3_821() { - if (jj_scan_token(EMPTY)) return true; - if (jj_scan_token(OBJECT)) return true; - return false; - } - - final private boolean jj_3_348() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_194()) return true; - return false; - } - - final private boolean jj_3R_213() { - if (jj_scan_token(LPAREN)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_33()) { - jj_scanpos = xsp; - if (jj_3R_370()) return true; } - return false; - } - - final private boolean jj_3_820() { - if (jj_scan_token(EMPTY)) return true; - if (jj_scan_token(ARRAY)) return true; - return false; - } - - final private boolean jj_3R_396() { - return false; - } - - final private boolean jj_3_819() { - if (jj_scan_token(NULL)) return true; - return false; - } - - final private boolean jj_3_352() { - if (jj_scan_token(PERMUTE)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; - } - - final private boolean jj_3_818() { - if (jj_scan_token(ERROR)) return true; - return false; - } - - final private boolean jj_3_351() { - if (jj_scan_token(LBRACE)) return true; - if (jj_scan_token(MINUS)) return true; - return false; - } - - final private boolean jj_3R_305() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_818()) { - jj_scanpos = xsp; - if (jj_3_819()) { - jj_scanpos = xsp; - if (jj_3_820()) { - jj_scanpos = xsp; - if (jj_3_821()) return true; } } } - if (jj_scan_token(ON)) return true; - return false; - } - - final private boolean jj_3_350() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_194()) return true; - return false; - } - - final private boolean jj_3R_387() { - if (jj_3R_213()) return true; - return false; - } - - final private boolean jj_3R_365() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_349()) { - jj_scanpos = xsp; - if (jj_3_350()) { - jj_scanpos = xsp; - if (jj_3_351()) { - jj_scanpos = xsp; - if (jj_3_352()) return true; } } } - return false; - } - - final private boolean jj_3_349() { - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3R_360() { - Token xsp; - xsp = jj_scanpos; - lookingAhead = true; - jj_semLA = false; - lookingAhead = false; - if (!jj_semLA || jj_3R_396()) return true; - if (jj_scan_token(ZONE)) return true; - return false; - } - - final private boolean jj_3_817() { - if (jj_3R_303()) return true; - return false; - } - - final private boolean jj_3_32() { - if (jj_3R_80()) return true; - return false; - } - - final private boolean jj_3R_367() { - return false; - } - - final private boolean jj_3_31() { - if (jj_3R_81()) return true; - return false; - } - - final private boolean jj_3_816() { - if (jj_3R_302()) return true; - return false; - } - - final private boolean jj_3_347() { - if (jj_scan_token(HOOK)) return true; - return false; - } - - final private boolean jj_3_342() { - if (jj_scan_token(MINUS)) return true; - if (jj_3R_194()) return true; - return false; - } - - final private boolean jj_3R_293() { - if (jj_scan_token(JSON_VALUE)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; - } - - final private boolean jj_3_30() { - if (jj_scan_token(COMMA)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_31()) { - jj_scanpos = xsp; - if (jj_3_32()) return true; } - return false; - } - - final private boolean jj_3R_193() { - return false; - } - - final private boolean jj_3R_192() { - return false; - } - - final private boolean jj_3_29() { - if (jj_3R_80()) return true; - return false; - } - - final private boolean jj_3_341() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_191()) return true; - return false; - } - - final private boolean jj_3_28() { - if (jj_3R_79()) return true; - return false; - } - - final private boolean jj_3_338() { - if (jj_3R_191()) return true; - return false; - } - - final private boolean jj_3_339() { - if (jj_scan_token(COMMA)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_338()) { - jj_scanpos = xsp; - if (jj_3R_192()) return true; } - return false; - } - - final private boolean jj_3_815() { - if (jj_scan_token(ERROR)) return true; - return false; - } - - final private boolean jj_3_814() { - if (jj_scan_token(EMPTY)) return true; - return false; - } - - final private boolean jj_3_340() { - if (jj_3R_191()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_339()) { - jj_scanpos = xsp; - if (jj_3R_193()) return true; } - if (jj_scan_token(RBRACE)) return true; - return false; - } - - final private boolean jj_3_346() { - if (jj_scan_token(LBRACE)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_340()) { - jj_scanpos = xsp; - if (jj_3_341()) { - jj_scanpos = xsp; - if (jj_3_342()) return true; } } - return false; - } - - final private boolean jj_3_813() { - if (jj_scan_token(DEFAULT_)) return true; - if (jj_3R_78()) return true; - return false; - } - - final private boolean jj_3R_176() { - if (jj_scan_token(LPAREN)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_28()) { - jj_scanpos = xsp; - if (jj_3_29()) return true; } - return false; - } - - final private boolean jj_3_812() { - if (jj_scan_token(NULL)) return true; - return false; - } - - final private boolean jj_3_345() { - if (jj_scan_token(HOOK)) return true; - return false; - } - - final private boolean jj_3_811() { - if (jj_scan_token(ERROR)) return true; - return false; - } - - final private boolean jj_3_344() { - if (jj_scan_token(PLUS)) return true; - return false; - } - - final private boolean jj_3R_303() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_811()) { - jj_scanpos = xsp; - if (jj_3_812()) { - jj_scanpos = xsp; - if (jj_3_813()) return true; } } - if (jj_scan_token(ON)) return true; - return false; - } - - final private boolean jj_3_343() { - if (jj_scan_token(STAR)) return true; - return false; - } - - final private boolean jj_3R_366() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_343()) { - jj_scanpos = xsp; - if (jj_3_344()) { - jj_scanpos = xsp; - if (jj_3_345()) { - jj_scanpos = xsp; - if (jj_3_346()) return true; } } } - return false; - } - - final private boolean jj_3_27() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; - return false; - } - - final private boolean jj_3_810() { - if (jj_3R_301()) return true; - if (jj_scan_token(ON)) return true; - return false; - } - - final private boolean jj_3R_190() { - if (jj_3R_365()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3R_366()) { - jj_scanpos = xsp; - if (jj_3R_367()) return true; } - return false; - } - - final private boolean jj_3R_292() { - if (jj_scan_token(JSON_EXISTS)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; - } - - final private boolean jj_3R_166() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_79()) return true; - return false; - } - - final private boolean jj_3_337() { - if (jj_3R_190()) return true; - return false; - } - - final private boolean jj_3_809() { - if (jj_scan_token(ERROR)) return true; - return false; - } - - final private boolean jj_3_808() { - if (jj_scan_token(UNKNOWN)) return true; - return false; - } - - final private boolean jj_3_807() { - if (jj_scan_token(FALSE)) return true; - return false; - } - - final private boolean jj_3R_301() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_806()) { - jj_scanpos = xsp; - if (jj_3_807()) { - jj_scanpos = xsp; - if (jj_3_808()) { - jj_scanpos = xsp; - if (jj_3_809()) return true; } } } - return false; - } - - final private boolean jj_3R_189() { - if (jj_3R_190()) return true; - return false; - } - - final private boolean jj_3_806() { - if (jj_scan_token(TRUE)) return true; - return false; - } - - final private boolean jj_3_804() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_81()) return true; - return false; - } - - final private boolean jj_3_336() { - if (jj_scan_token(VERTICAL_BAR)) return true; - if (jj_3R_189()) return true; - return false; - } - - final private boolean jj_3R_194() { - if (jj_3R_189()) return true; - return false; - } - - final private boolean jj_3_805() { - if (jj_scan_token(PASSING)) return true; - if (jj_3R_81()) return true; - return false; - } - - final private boolean jj_3R_188() { - if (jj_3R_81()) return true; - return false; - } - - final private boolean jj_3_335() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_188()) return true; - return false; - } - - final private boolean jj_3R_184() { - if (jj_3R_188()) return true; - return false; - } - - final private boolean jj_3R_165() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_359()) return true; - return false; - } - - final private boolean jj_3_803() { - if (jj_scan_token(FORMAT)) return true; - if (jj_3R_300()) return true; - return false; - } - - final private boolean jj_3_334() { - if (jj_scan_token(SUBSET)) return true; - if (jj_3R_187()) return true; - return false; - } - - final private boolean jj_3_26() { - if (jj_3R_77()) return true; - return false; - } - - final private boolean jj_3_333() { - if (jj_scan_token(WITHIN)) return true; - if (jj_3R_186()) return true; - return false; - } - - final private boolean jj_3_25() { - if (jj_3R_76()) return true; - return false; - } - - final private boolean jj_3_325() { - if (jj_scan_token(LAST)) return true; - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3R_302() { - if (jj_scan_token(RETURNING)) return true; - if (jj_3R_114()) return true; - return false; - } - - final private boolean jj_3_332() { - if (jj_scan_token(DOLLAR)) return true; - return false; - } - - final private boolean jj_3R_199() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_24()) { - jj_scanpos = xsp; - if (jj_3_25()) { - jj_scanpos = xsp; - if (jj_3_26()) return true; } } - return false; - } - - final private boolean jj_3_24() { - if (jj_3R_75()) return true; - return false; - } - - final private boolean jj_3_331() { - if (jj_scan_token(CARET)) return true; - return false; - } - - final private boolean jj_3_23() { - if (jj_scan_token(ALL)) return true; - return false; - } - - final private boolean jj_3_329() { - if (jj_scan_token(PAST)) return true; - if (jj_scan_token(LAST)) return true; - return false; - } - - final private boolean jj_3_801() { - if (jj_scan_token(UTF32)) return true; - return false; - } - - final private boolean jj_3_22() { - if (jj_3R_74()) return true; - return false; - } - - final private boolean jj_3_800() { - if (jj_scan_token(UTF16)) return true; - return false; - } - - final private boolean jj_3R_185() { - Token xsp; - xsp = jj_scanpos; - if (jj_scan_token(298)) jj_scanpos = xsp; - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_799() { - if (jj_scan_token(UTF8)) return true; - return false; - } - - final private boolean jj_3_18() { - if (jj_scan_token(NEXT)) return true; - return false; - } - - final private boolean jj_3_802() { - if (jj_scan_token(ENCODING)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_799()) { - jj_scanpos = xsp; - if (jj_3_800()) { - jj_scanpos = xsp; - if (jj_3_801()) return true; } } - return false; - } - - final private boolean jj_3_21() { - if (jj_3R_74()) return true; - if (jj_scan_token(COMMA)) return true; - return false; - } - - final private boolean jj_3R_300() { - if (jj_scan_token(JSON)) return true; - return false; - } - - final private boolean jj_3R_72() { - if (jj_scan_token(LIMIT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_21()) { - jj_scanpos = xsp; - if (jj_3_22()) { - jj_scanpos = xsp; - if (jj_3_23()) return true; } } - return false; - } - - final private boolean jj_3_327() { - if (jj_scan_token(FIRST)) return true; - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_20() { - if (jj_scan_token(ROWS)) return true; - return false; - } - - final private boolean jj_3_17() { - if (jj_scan_token(FIRST)) return true; - return false; - } - - final private boolean jj_3_798() { - if (jj_3R_299()) return true; - return false; - } - - final private boolean jj_3_797() { - if (jj_3R_298()) return true; - return false; - } - - final private boolean jj_3_326() { - if (jj_scan_token(NEXT)) return true; - if (jj_scan_token(ROW)) return true; - return false; - } - - final private boolean jj_3_796() { - if (jj_3R_297()) return true; - return false; - } - - final private boolean jj_3_19() { - if (jj_scan_token(ROW)) return true; - return false; - } - - final private boolean jj_3_795() { - if (jj_3R_296()) return true; - return false; - } - - final private boolean jj_3_794() { - if (jj_3R_295()) return true; - return false; - } - - final private boolean jj_3R_73() { - if (jj_scan_token(FETCH)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_17()) { - jj_scanpos = xsp; - if (jj_3_18()) return true; } - return false; - } - - final private boolean jj_3_328() { - if (jj_scan_token(TO)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_326()) { - jj_scanpos = xsp; - if (jj_3_327()) { - jj_scanpos = xsp; - lookingAhead = true; - jj_semLA = true; - lookingAhead = false; - if (!jj_semLA || jj_3R_185()) return true; } } - return false; - } - - final private boolean jj_3_793() { - if (jj_3R_294()) return true; - return false; - } - - final private boolean jj_3_15() { - if (jj_scan_token(ROWS)) return true; - return false; - } - - final private boolean jj_3_792() { - if (jj_3R_293()) return true; - return false; - } - - final private boolean jj_3_791() { - if (jj_3R_292()) return true; - return false; - } - - final private boolean jj_3_330() { - if (jj_scan_token(AFTER)) return true; - if (jj_scan_token(MATCH)) return true; - return false; - } - - final private boolean jj_3_790() { - if (jj_3R_291()) return true; - return false; - } - - final private boolean jj_3_789() { - if (jj_3R_290()) return true; - return false; - } - - final private boolean jj_3_14() { - if (jj_scan_token(ROW)) return true; - return false; - } - - final private boolean jj_3_16() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_14()) { - jj_scanpos = xsp; - if (jj_3_15()) return true; } return false; } - final private boolean jj_3_788() { - if (jj_3R_289()) return true; - return false; - } - - final private boolean jj_3_324() { - if (jj_scan_token(ALL)) return true; - if (jj_scan_token(ROWS)) return true; - return false; - } - - final private boolean jj_3_787() { - if (jj_3R_288()) return true; - return false; - } - - final private boolean jj_3R_71() { - if (jj_scan_token(OFFSET)) return true; - if (jj_3R_74()) return true; - return false; - } - - final private boolean jj_3_786() { - if (jj_3R_287()) return true; - return false; - } - - final private boolean jj_3_323() { - if (jj_scan_token(ONE)) return true; - if (jj_scan_token(ROW)) return true; - return false; - } - - final private boolean jj_3_785() { - if (jj_3R_286()) return true; - return false; - } - - final private boolean jj_3_784() { - if (jj_3R_285()) return true; - return false; - } - - final private boolean jj_3_783() { - if (jj_3R_284()) return true; - return false; - } - - final private boolean jj_3_322() { - if (jj_scan_token(MEASURES)) return true; - if (jj_3R_184()) return true; - return false; - } - - final private boolean jj_3_782() { - if (jj_3R_283()) return true; - return false; - } - - final private boolean jj_3_781() { - if (jj_3R_282()) return true; - return false; - } - - final private boolean jj_3_321() { - if (jj_3R_70()) return true; - return false; - } - - final private boolean jj_3_780() { - if (jj_3R_281()) return true; - return false; - } - - final private boolean jj_3_8() { - if (jj_3R_73()) return true; - return false; - } - - final private boolean jj_3_12() { - if (jj_3R_73()) return true; - return false; - } - - final private boolean jj_3_320() { - if (jj_scan_token(PARTITION)) return true; - if (jj_scan_token(BY)) return true; - return false; - } - - final private boolean jj_3_7() { - if (jj_3R_72()) return true; - return false; - } - - final private boolean jj_3_9() { + final private boolean jj_3R_187() { + if (jj_3R_161()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_7()) { + if (jj_3_322()) { jj_scanpos = xsp; - if (jj_3_8()) return true; + if (jj_3R_376()) return true; } return false; } - - final private boolean jj_3R_161() { - if (jj_scan_token(MATCH_RECOGNIZE)) return true; - if (jj_scan_token(LPAREN)) return true; + + final private boolean jj_3_775() { + if (jj_scan_token(TIME)) return true; + if (jj_3R_256()) return true; + if (jj_3R_286()) return true; return false; } - final private boolean jj_3_6() { - if (jj_3R_71()) return true; + final private boolean jj_3_1555() { + if (jj_scan_token(FRIDAY)) return true; return false; } - final private boolean jj_3_11() { - if (jj_3R_71()) return true; + final private boolean jj_3_1554() { + if (jj_scan_token(TUESDAY)) return true; return false; } - final private boolean jj_3_768() { - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_1553() { + if (jj_scan_token(WITHOUT)) return true; return false; } - final private boolean jj_3_10() { - if (jj_3R_72()) return true; + final private boolean jj_3_1552() { + if (jj_scan_token(WIDTH_BUCKET)) return true; return false; } - final private boolean jj_3_13() { + final private boolean jj_3R_282() { Token xsp; xsp = jj_scanpos; - if (jj_3_10()) { + if (jj_3_774()) { jj_scanpos = xsp; - if (jj_3_11()) { + if (jj_3_775()) { jj_scanpos = xsp; - if (jj_3_12()) return true; + if (jj_3_776()) return true; } } return false; } - final private boolean jj_3R_392() { - return false; - } - - final private boolean jj_3_5() { - if (jj_3R_70()) return true; + final private boolean jj_3_1551() { + if (jj_scan_token(VAR_SAMP)) return true; return false; } - final private boolean jj_3_767() { - if (jj_scan_token(FROM)) return true; + final private boolean jj_3_774() { + if (jj_scan_token(DATE)) return true; return false; } - final private boolean jj_3_766() { - if (jj_3R_81()) return true; + final private boolean jj_3_1550() { + if (jj_scan_token(VARCHAR)) return true; return false; } - final private boolean jj_3R_335() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_5()) { - jj_scanpos = xsp; - if (jj_3R_392()) return true; - } - xsp = jj_scanpos; - if (jj_3_13()) jj_scanpos = xsp; + final private boolean jj_3_1549() { + if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3_764() { - if (jj_scan_token(LEADING)) return true; + final private boolean jj_3_1548() { + if (jj_scan_token(UNNEST)) return true; return false; } final private boolean jj_3_318() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_183()) return true; + if (jj_3R_187()) return true; return false; } - final private boolean jj_3_763() { - if (jj_scan_token(TRAILING)) return true; + final private boolean jj_3_1547() { + if (jj_scan_token(UESCAPE)) return true; return false; } - final private boolean jj_3_319() { + final private boolean jj_3_320() { if (jj_scan_token(AS)) return true; - if (jj_3R_156()) return true; return false; } - final private boolean jj_3_762() { - if (jj_scan_token(BOTH)) return true; + final private boolean jj_3_1546() { + if (jj_scan_token(TRIM_ARRAY)) return true; return false; } - final private boolean jj_3_765() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_762()) { - jj_scanpos = xsp; - if (jj_3_763()) { - jj_scanpos = xsp; - if (jj_3_764()) return true; - } - } + final private boolean jj_3_1545() { + if (jj_scan_token(TREAT)) return true; return false; } - final private boolean jj_3R_183() { - if (jj_3R_128()) return true; + final private boolean jj_3_1544() { + if (jj_scan_token(TRANSLATE)) return true; return false; } - final private boolean jj_3R_79() { - if (jj_3R_334()) return true; - if (jj_3R_335()) return true; + final private boolean jj_3_1543() { + if (jj_scan_token(TIMEZONE_HOUR)) return true; + return false; + } + + final private boolean jj_3_1542() { + if (jj_scan_token(TABLESAMPLE)) return true; + return false; + } + + final private boolean jj_3_1541() { + if (jj_scan_token(SYSTEM)) return true; return false; } final private boolean jj_3_769() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_765()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_766()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_767()) { - jj_scanpos = xsp; - if (jj_3_768()) return true; - } + if (jj_scan_token(CHAR)) return true; return false; } - final private boolean jj_3_760() { - if (jj_scan_token(COMMA)) return true; + final private boolean jj_3_1540() { + if (jj_scan_token(SUBSTRING_REGEX)) return true; return false; } - final private boolean jj_3_758() { + final private boolean jj_3_1539() { + if (jj_scan_token(SUBMULTISET)) return true; + return false; + } + + final private boolean jj_3_317() { if (jj_scan_token(COMMA)) return true; + if (jj_3R_186()) return true; return false; } - final private boolean jj_3_779() { - if (jj_scan_token(TRIM)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1538() { + if (jj_scan_token(STDDEV_POP)) return true; return false; } - final private boolean jj_3_759() { - if (jj_scan_token(FOR)) return true; + final private boolean jj_3R_186() { + if (jj_3R_375()) return true; return false; } - final private boolean jj_3R_361() { + final private boolean jj_3_1537() { + if (jj_scan_token(SQRT)) return true; return false; } - final private boolean jj_3_761() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_759()) { - jj_scanpos = xsp; - if (jj_3_760()) return true; - } - if (jj_3R_78()) return true; + final private boolean jj_3_773() { + if (jj_scan_token(CHARACTER)) return true; + if (jj_scan_token(SET)) return true; return false; } - final private boolean jj_3_317() { - if (jj_scan_token(EXCLUDE)) return true; - if (jj_scan_token(NULLS)) return true; + final private boolean jj_3_1536() { + if (jj_scan_token(SQLEXCEPTION)) return true; return false; } - final private boolean jj_3_316() { - if (jj_scan_token(INCLUDE)) return true; - if (jj_scan_token(NULLS)) return true; + final private boolean jj_3_1535() { + if (jj_scan_token(SPECIFIC)) return true; return false; } - final private boolean jj_3_756() { - if (jj_scan_token(CEILING)) return true; + final private boolean jj_3R_285() { return false; } - final private boolean jj_3_757() { - if (jj_scan_token(FROM)) return true; + final private boolean jj_3_1534() { + if (jj_scan_token(SIMILAR)) return true; return false; } - final private boolean jj_3R_170() { - if (jj_scan_token(UNPIVOT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_316()) { - jj_scanpos = xsp; - if (jj_3_317()) { - jj_scanpos = xsp; - if (jj_3R_361()) return true; - } - } - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_2() { + if (jj_3R_68()) return true; return false; } - final private boolean jj_3_778() { - if (jj_scan_token(SUBSTRING)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1533() { + if (jj_scan_token(SENSITIVE)) return true; return false; } - final private boolean jj_3_755() { - if (jj_scan_token(CEIL)) return true; + final private boolean jj_3_772() { + if (jj_scan_token(VARCHAR)) return true; return false; } - final private boolean jj_3_777() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_755()) { - jj_scanpos = xsp; - if (jj_3_756()) return true; - } - if (jj_3R_280()) return true; + final private boolean jj_3_1532() { + if (jj_scan_token(SEARCH)) return true; return false; } - final private boolean jj_3_2() { + final private boolean jj_3_1() { if (jj_3R_67()) return true; return false; } - final private boolean jj_3R_364() { + final private boolean jj_3_770() { + if (jj_scan_token(VARYING)) return true; return false; } - final private boolean jj_3_1() { - if (jj_3R_66()) return true; + final private boolean jj_3_1531() { + if (jj_scan_token(SAVEPOINT)) return true; return false; } - final private boolean jj_3_776() { - if (jj_scan_token(FLOOR)) return true; - if (jj_3R_280()) return true; + final private boolean jj_3_1530() { + if (jj_scan_token(SAFE_CAST)) return true; + return false; + } + + final private boolean jj_3_1529() { + if (jj_scan_token(ROWS)) return true; return false; } final private boolean jj_3_4() { - if (jj_3R_69()) return true; + if (jj_3R_70()) return true; Token xsp; while (true) { xsp = jj_scanpos; @@ -32205,64 +34413,95 @@ final private boolean jj_3_4() { return false; } - final private boolean jj_3_754() { - if (jj_scan_token(FOR)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_1528() { + if (jj_scan_token(REVOKE)) return true; return false; } - final private boolean jj_3_314() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3_1527() { + if (jj_scan_token(RESULT)) return true; return false; } - final private boolean jj_3_315() { + final private boolean jj_3_768() { + if (jj_scan_token(CHARACTER)) return true; + return false; + } + + final private boolean jj_3_1526() { + if (jj_scan_token(REGR_SYY)) return true; + return false; + } + + final private boolean jj_3_771() { Token xsp; xsp = jj_scanpos; - if (jj_3_314()) jj_scanpos = xsp; - if (jj_3R_84()) return true; + if (jj_3_768()) { + jj_scanpos = xsp; + if (jj_3_769()) return true; + } + xsp = jj_scanpos; + if (jj_3_770()) { + jj_scanpos = xsp; + if (jj_3R_285()) return true; + } + return false; + } + + final private boolean jj_3_1525() { + if (jj_scan_token(REGR_SLOPE)) return true; + return false; + } + + final private boolean jj_3_1524() { + if (jj_scan_token(REGR_COUNT)) return true; return false; } final private boolean jj_3_3() { - if (jj_3R_68()) return true; + if (jj_3R_69()) return true; return false; } - final private boolean jj_3_775() { - if (jj_scan_token(OVERLAY)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1523() { + if (jj_scan_token(REFERENCING)) return true; return false; } - final private boolean jj_3_751() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_1522() { + if (jj_scan_token(RECURSIVE)) return true; return false; } - final private boolean jj_3R_182() { - if (jj_3R_156()) return true; + final private boolean jj_3R_281() { Token xsp; xsp = jj_scanpos; - if (jj_3_315()) { + if (jj_3_771()) { jj_scanpos = xsp; - if (jj_3R_364()) return true; + if (jj_3_772()) return true; } + if (jj_3R_256()) return true; + xsp = jj_scanpos; + if (jj_3_773()) jj_scanpos = xsp; return false; } - final private boolean jj_3_753() { - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_751()) { jj_scanpos = xsp; break; } - } - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_1521() { + if (jj_scan_token(RANK)) return true; return false; } - final private boolean jj_3R_359() { + final private boolean jj_3_319() { + if (jj_3R_187()) return true; + return false; + } + + final private boolean jj_3_1520() { + if (jj_scan_token(PROCEDURE)) return true; + return false; + } + + final private boolean jj_3R_371() { Token xsp; xsp = jj_scanpos; if (jj_3_3()) { @@ -32272,2113 +34511,2042 @@ final private boolean jj_3R_359() { return false; } - final private boolean jj_3_752() { - if (jj_scan_token(USING)) return true; - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_311() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_182()) return true; + final private boolean jj_3_1519() { + if (jj_scan_token(PRECISION)) return true; return false; } - final private boolean jj_3_313() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3_1518() { + if (jj_scan_token(POSITION_REGEX)) return true; return false; } - final private boolean jj_3_774() { - if (jj_scan_token(TRANSLATE)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1517() { + if (jj_scan_token(PERMUTE)) return true; return false; } - final private boolean jj_3_310() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_181()) return true; + final private boolean jj_3_1516() { + if (jj_scan_token(PERCENTILE_DISC)) return true; return false; } - final private boolean jj_3R_181() { - if (jj_3R_363()) return true; + final private boolean jj_3_1515() { + if (jj_scan_token(PER)) return true; return false; } - final private boolean jj_3_773() { - if (jj_scan_token(CONVERT)) return true; + final private boolean jj_3R_174() { + if (jj_scan_token(PIVOT)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_750() { - if (jj_scan_token(FROM)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_1514() { + if (jj_scan_token(OVERLAY)) return true; return false; } - final private boolean jj_3_772() { - if (jj_scan_token(POSITION)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1513() { + if (jj_scan_token(OUT)) return true; return false; } - final private boolean jj_3_312() { - if (jj_3R_182()) return true; + final private boolean jj_3_1512() { + if (jj_scan_token(ONLY)) return true; return false; } - final private boolean jj_3R_169() { - if (jj_scan_token(PIVOT)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1511() { + if (jj_scan_token(OLD)) return true; return false; } - final private boolean jj_3_771() { - if (jj_scan_token(EXTRACT)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1510() { + if (jj_scan_token(OCCURRENCES_REGEX)) return true; return false; } - final private boolean jj_3_749() { - if (jj_scan_token(INTERVAL)) return true; - if (jj_3R_208()) return true; + final private boolean jj_3_1509() { + if (jj_scan_token(NTILE)) return true; return false; } - final private boolean jj_3_748() { - if (jj_3R_114()) return true; + final private boolean jj_3_1508() { + if (jj_scan_token(NONE)) return true; return false; } - final private boolean jj_3_1713() { - if (jj_scan_token(SUNDAY)) return true; + final private boolean jj_3_1507() { + if (jj_scan_token(NEW)) return true; return false; } - final private boolean jj_3_1712() { - if (jj_scan_token(THURSDAY)) return true; + final private boolean jj_3_1506() { + if (jj_scan_token(NATIONAL)) return true; return false; } - final private boolean jj_3_1711() { - if (jj_scan_token(MONDAY)) return true; + final private boolean jj_3_1505() { + if (jj_scan_token(MODULE)) return true; return false; } - final private boolean jj_3_1710() { - if (jj_scan_token(WITHIN)) return true; + final private boolean jj_3_1504() { + if (jj_scan_token(MINUTE)) return true; return false; } - final private boolean jj_3_1709() { - if (jj_scan_token(WHENEVER)) return true; + final private boolean jj_3_1503() { + if (jj_scan_token(MEMBER)) return true; return false; } - final private boolean jj_3_1708() { - if (jj_scan_token(VAR_POP)) return true; + final private boolean jj_3_1502() { + if (jj_scan_token(MATCH_RECOGNIZE)) return true; return false; } - final private boolean jj_3_770() { - if (jj_scan_token(CAST)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1501() { + if (jj_scan_token(MATCH)) return true; return false; } - final private boolean jj_3_1707() { - if (jj_scan_token(VARBINARY)) return true; + final private boolean jj_3R_277() { + if (jj_scan_token(MAP)) return true; + if (jj_scan_token(LT)) return true; + if (jj_3R_119()) return true; return false; } - final private boolean jj_3_1706() { - if (jj_scan_token(UPSERT)) return true; + final private boolean jj_3_1500() { + if (jj_scan_token(LN)) return true; return false; } - final private boolean jj_3_1705() { - if (jj_scan_token(UNKNOWN)) return true; + final private boolean jj_3_1499() { + if (jj_scan_token(LATERAL)) return true; return false; } - final private boolean jj_3_1704() { - if (jj_scan_token(TRUNCATE)) return true; + final private boolean jj_3_1498() { + if (jj_scan_token(LANGUAGE)) return true; return false; } - final private boolean jj_3R_216() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_770()) { - jj_scanpos = xsp; - if (jj_3_771()) { - jj_scanpos = xsp; - if (jj_3_772()) { - jj_scanpos = xsp; - if (jj_3_773()) { - jj_scanpos = xsp; - if (jj_3_774()) { - jj_scanpos = xsp; - if (jj_3_775()) { - jj_scanpos = xsp; - if (jj_3_776()) { - jj_scanpos = xsp; - if (jj_3_777()) { - jj_scanpos = xsp; - if (jj_3_778()) { - jj_scanpos = xsp; - if (jj_3_779()) { - jj_scanpos = xsp; - if (jj_3_780()) { - jj_scanpos = xsp; - if (jj_3_781()) { - jj_scanpos = xsp; - if (jj_3_782()) { - jj_scanpos = xsp; - if (jj_3_783()) { - jj_scanpos = xsp; - if (jj_3_784()) { - jj_scanpos = xsp; - if (jj_3_785()) { - jj_scanpos = xsp; - if (jj_3_786()) { - jj_scanpos = xsp; - if (jj_3_787()) { - jj_scanpos = xsp; - if (jj_3_788()) { - jj_scanpos = xsp; - if (jj_3_789()) { - jj_scanpos = xsp; - if (jj_3_790()) { - jj_scanpos = xsp; - if (jj_3_791()) { - jj_scanpos = xsp; - if (jj_3_792()) { - jj_scanpos = xsp; - if (jj_3_793()) { - jj_scanpos = xsp; - if (jj_3_794()) { - jj_scanpos = xsp; - if (jj_3_795()) { - jj_scanpos = xsp; - if (jj_3_796()) { - jj_scanpos = xsp; - if (jj_3_797()) { - jj_scanpos = xsp; - if (jj_3_798()) return true; - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } - } + final private boolean jj_3_1497() { + if (jj_scan_token(JSON_SCOPE)) return true; return false; } - final private boolean jj_3_1703() { - if (jj_scan_token(TRIGGER)) return true; + final private boolean jj_3_1496() { + if (jj_scan_token(JSON_OBJECT)) return true; return false; } - final private boolean jj_3_1702() { - if (jj_scan_token(TRANSLATE_REGEX)) return true; + final private boolean jj_3_1495() { + if (jj_scan_token(JSON_ARRAY)) return true; return false; } - final private boolean jj_3_1701() { - if (jj_scan_token(TIMEZONE_MINUTE)) return true; + final private boolean jj_3_1494() { + if (jj_scan_token(INT)) return true; return false; } - final private boolean jj_3_1700() { - if (jj_scan_token(TIME)) return true; + final private boolean jj_3_1493() { + if (jj_scan_token(INITIAL)) return true; return false; } - final private boolean jj_3_1699() { - if (jj_scan_token(SYSTEM_TIME)) return true; + final private boolean jj_3_1492() { + if (jj_scan_token(IDENTITY)) return true; return false; } - final private boolean jj_3_1698() { - if (jj_scan_token(SUCCEEDS)) return true; + final private boolean jj_3_1491() { + if (jj_scan_token(GROUPS)) return true; return false; } - final private boolean jj_3_1697() { - if (jj_scan_token(SUBSET)) return true; + final private boolean jj_3_1490() { + if (jj_scan_token(GLOBAL)) return true; return false; } - final private boolean jj_3_1696() { - if (jj_scan_token(STDDEV_SAMP)) return true; + final private boolean jj_3_1489() { + if (jj_scan_token(FUNCTION)) return true; return false; } - final private boolean jj_3R_160() { + final private boolean jj_3R_165() { if (jj_scan_token(FOR)) return true; if (jj_scan_token(SYSTEM_TIME)) return true; return false; } - final private boolean jj_3_1695() { - if (jj_scan_token(START)) return true; + final private boolean jj_3_1488() { + if (jj_scan_token(FOREIGN)) return true; return false; } - final private boolean jj_3_1694() { - if (jj_scan_token(SQLSTATE)) return true; + final private boolean jj_3R_276() { + if (jj_scan_token(ROW)) return true; + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_415()) return true; return false; } - final private boolean jj_3_1693() { - if (jj_scan_token(SPECIFICTYPE)) return true; + final private boolean jj_3_1487() { + if (jj_scan_token(FIRST_VALUE)) return true; return false; } - final private boolean jj_3_1692() { - if (jj_scan_token(SKIP_)) return true; + final private boolean jj_3_1486() { + if (jj_scan_token(EXTERNAL)) return true; return false; } - final private boolean jj_3_1691() { - if (jj_scan_token(SESSION_USER)) return true; + final private boolean jj_3_1485() { + if (jj_scan_token(EXECUTE)) return true; return false; } - final private boolean jj_3_1690() { - if (jj_scan_token(SECOND)) return true; + final private boolean jj_3_1484() { + if (jj_scan_token(ESCAPE)) return true; return false; } - final private boolean jj_3_1689() { - if (jj_scan_token(SCOPE)) return true; + final private boolean jj_3_1483() { + if (jj_scan_token(END_FRAME)) return true; return false; } - final private boolean jj_3_1688() { - if (jj_scan_token(ROW_NUMBER)) return true; + final private boolean jj_3_1482() { + if (jj_scan_token(EMPTY)) return true; return false; } - final private boolean jj_3_1687() { - if (jj_scan_token(ROLLBACK)) return true; + final private boolean jj_3_1481() { + if (jj_scan_token(DYNAMIC)) return true; return false; } - final private boolean jj_3_1686() { - if (jj_scan_token(RETURN)) return true; + final private boolean jj_3_1480() { + if (jj_scan_token(DISALLOW)) return true; return false; } - final private boolean jj_3_1685() { - if (jj_scan_token(RELEASE)) return true; + final private boolean jj_3_1479() { + if (jj_scan_token(DEREF)) return true; return false; } - final private boolean jj_3_1684() { - if (jj_scan_token(REGR_SXX)) return true; + final private boolean jj_3_1478() { + if (jj_scan_token(DECLARE)) return true; return false; } - final private boolean jj_3_1683() { - if (jj_scan_token(REGR_INTERCEPT)) return true; + final private boolean jj_3_1477() { + if (jj_scan_token(DEALLOCATE)) return true; return false; } - final private boolean jj_3_1682() { - if (jj_scan_token(REGR_AVGX)) return true; + final private boolean jj_3_1476() { + if (jj_scan_token(DATE)) return true; return false; } - final private boolean jj_3_1681() { - if (jj_scan_token(REF)) return true; + final private boolean jj_3_1475() { + if (jj_scan_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE)) return true; return false; } - final private boolean jj_3_1680() { - if (jj_scan_token(READS)) return true; + final private boolean jj_3_1474() { + if (jj_scan_token(CURRENT_PATH)) return true; return false; } - final private boolean jj_3_1679() { - if (jj_scan_token(QUALIFY)) return true; + final private boolean jj_3_1473() { + if (jj_scan_token(CURRENT)) return true; return false; } - final private boolean jj_3_1678() { - if (jj_scan_token(PREPARE)) return true; + final private boolean jj_3_1472() { + if (jj_scan_token(COVAR_SAMP)) return true; return false; } - final private boolean jj_3_1677() { - if (jj_scan_token(POWER)) return true; + final private boolean jj_3_1471() { + if (jj_scan_token(CORRESPONDING)) return true; return false; } - final private boolean jj_3_1676() { - if (jj_scan_token(PORTION)) return true; + final private boolean jj_3_1470() { + if (jj_scan_token(CONTAINS)) return true; return false; } - final private boolean jj_3R_210() { - if (jj_scan_token(CURSOR)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_1469() { + if (jj_scan_token(COMMIT)) return true; return false; } - final private boolean jj_3_1675() { - if (jj_scan_token(PERCENT_RANK)) return true; + final private boolean jj_3_1468() { + if (jj_scan_token(COALESCE)) return true; return false; } - final private boolean jj_3_1674() { - if (jj_scan_token(PERCENT)) return true; + final private boolean jj_3R_284() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1673() { - if (jj_scan_token(PARAMETER)) return true; + final private boolean jj_3_1467() { + if (jj_scan_token(CLASSIFIER)) return true; return false; } - final private boolean jj_3_1672() { - if (jj_scan_token(OVER)) return true; + final private boolean jj_3_1466() { + if (jj_scan_token(CHARACTER_LENGTH)) return true; return false; } - final private boolean jj_3_1671() { - if (jj_scan_token(ONLY)) return true; + final private boolean jj_3_1465() { + if (jj_scan_token(CEILING)) return true; return false; } - final private boolean jj_3_1670() { - if (jj_scan_token(OLD)) return true; + final private boolean jj_3_1464() { + if (jj_scan_token(CARDINALITY)) return true; return false; } - final private boolean jj_3_1669() { - if (jj_scan_token(OCCURRENCES_REGEX)) return true; + final private boolean jj_3_1463() { + if (jj_scan_token(BOOLEAN)) return true; return false; } - final private boolean jj_3R_164() { - if (jj_3R_358()) return true; + final private boolean jj_3_1462() { + if (jj_scan_token(BINARY)) return true; return false; } - final private boolean jj_3_1668() { - if (jj_scan_token(NTILE)) return true; + final private boolean jj_3R_370() { + if (jj_3R_409()) return true; return false; } - final private boolean jj_3_1667() { - if (jj_scan_token(NONE)) return true; + final private boolean jj_3_1461() { + if (jj_scan_token(BEGIN_FRAME)) return true; return false; } - final private boolean jj_3_1666() { - if (jj_scan_token(NEW)) return true; + final private boolean jj_3_1460() { + if (jj_scan_token(AUTHORIZATION)) return true; return false; } - final private boolean jj_3_1665() { - if (jj_scan_token(NATIONAL)) return true; + final private boolean jj_3_1459() { + if (jj_scan_token(ASENSITIVE)) return true; return false; } - final private boolean jj_3_1664() { - if (jj_scan_token(MODULE)) return true; + final private boolean jj_3_1458() { + if (jj_scan_token(ALLOW)) return true; return false; } - final private boolean jj_3_1663() { - if (jj_scan_token(MINUTE)) return true; + final private boolean jj_3_767() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_284()) return true; return false; } - final private boolean jj_3_1662() { - if (jj_scan_token(MEMBER)) return true; + final private boolean jj_3_1457() { + if (jj_scan_token(TOTAL)) return true; return false; } - final private boolean jj_3R_385() { + final private boolean jj_3_1456() { + if (jj_scan_token(REFRESH)) return true; return false; } - final private boolean jj_3_1661() { - if (jj_scan_token(MATCH_RECOGNIZE)) return true; + final private boolean jj_3R_415() { + if (jj_3R_284()) return true; return false; } - final private boolean jj_3_1660() { - if (jj_scan_token(MATCH)) return true; + final private boolean jj_3_1455() { + if (jj_scan_token(ASYNC)) return true; return false; } - final private boolean jj_3_1659() { - if (jj_scan_token(LN)) return true; + final private boolean jj_3_1454() { + if (jj_scan_token(CONTINUOUS)) return true; return false; } - final private boolean jj_3_747() { - if (jj_scan_token(WITH)) return true; - if (jj_scan_token(LOCAL)) return true; + final private boolean jj_3_1453() { + if (jj_scan_token(PASSWORD)) return true; return false; } - final private boolean jj_3_1658() { - if (jj_scan_token(LATERAL)) return true; + final private boolean jj_3_1452() { + if (jj_scan_token(INLINE_SIZE)) return true; return false; } - final private boolean jj_3_1657() { - if (jj_scan_token(LANGUAGE)) return true; + final private boolean jj_3_1451() { + if (jj_scan_token(VALUE_TYPE)) return true; return false; } - final private boolean jj_3R_279() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_746()) { - jj_scanpos = xsp; - if (jj_3_747()) { - jj_scanpos = xsp; - if (jj_3R_385()) return true; - } - } + final private boolean jj_3_1450() { + if (jj_scan_token(CACHE_GROUP)) return true; return false; } - final private boolean jj_3_1656() { - if (jj_scan_token(JSON_QUERY)) return true; + final private boolean jj_3_1449() { + if (jj_scan_token(AFFINITY_KEY)) return true; return false; } - final private boolean jj_3_308() { + final private boolean jj_3_315() { if (jj_scan_token(NULLS)) return true; if (jj_scan_token(LAST)) return true; return false; } - final private boolean jj_3_746() { - if (jj_scan_token(WITHOUT)) return true; - if (jj_scan_token(TIME)) return true; + final private boolean jj_3_1448() { if (jj_scan_token(ZONE)) return true; return false; } - final private boolean jj_3_1655() { - if (jj_scan_token(JSON_EXISTS)) return true; - return false; - } - - final private boolean jj_3_1654() { - if (jj_scan_token(INTERSECTION)) return true; + final private boolean jj_3_1447() { + if (jj_scan_token(WRITE)) return true; return false; } - final private boolean jj_3_1653() { - if (jj_scan_token(INSENSITIVE)) return true; + final private boolean jj_3_1446() { + if (jj_scan_token(WEEKS)) return true; return false; } - final private boolean jj_3_1652() { - if (jj_scan_token(INDICATOR)) return true; + final private boolean jj_3_1445() { + if (jj_scan_token(VERSION)) return true; return false; } - final private boolean jj_3_1651() { - if (jj_scan_token(HOUR)) return true; + final private boolean jj_3_1444() { + if (jj_scan_token(UTF16)) return true; return false; } - final private boolean jj_3_309() { + final private boolean jj_3_316() { Token xsp; xsp = jj_scanpos; - if (jj_3_307()) { + if (jj_3_314()) { jj_scanpos = xsp; - if (jj_3_308()) return true; + if (jj_3_315()) return true; } return false; } - final private boolean jj_3_307() { + final private boolean jj_3_314() { if (jj_scan_token(NULLS)) return true; if (jj_scan_token(FIRST)) return true; return false; } - final private boolean jj_3_1650() { - if (jj_scan_token(GROUPING)) return true; - return false; - } - - final private boolean jj_3_1649() { - if (jj_scan_token(GET)) return true; - return false; - } - - final private boolean jj_3_1648() { - if (jj_scan_token(FREE)) return true; - return false; - } - - final private boolean jj_3_1647() { - if (jj_scan_token(FLOOR)) return true; - return false; - } - - final private boolean jj_3_1646() { - if (jj_scan_token(FILTER)) return true; + final private boolean jj_3R_374() { return false; } - final private boolean jj_3_305() { - if (jj_scan_token(DESC)) return true; + final private boolean jj_3_1443() { + if (jj_scan_token(USER_DEFINED_TYPE_CODE)) return true; return false; } - final private boolean jj_3_1645() { - if (jj_scan_token(EXTEND)) return true; + final private boolean jj_3_1442() { + if (jj_scan_token(UNNAMED)) return true; return false; } - final private boolean jj_3_306() { + final private boolean jj_3R_179() { Token xsp; xsp = jj_scanpos; - if (jj_3_304()) { + if (jj_3_766()) { jj_scanpos = xsp; - if (jj_3_305()) return true; + if (jj_3R_374()) return true; } return false; } - final private boolean jj_3_304() { - if (jj_scan_token(ASC)) return true; + final private boolean jj_3_1441() { + if (jj_scan_token(UNCONDITIONAL)) return true; return false; } - final private boolean jj_3_1644() { - if (jj_scan_token(EXEC)) return true; + final private boolean jj_3_766() { + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1643() { - if (jj_scan_token(EQUALS)) return true; + final private boolean jj_3_1440() { + if (jj_scan_token(TYPE)) return true; return false; } - final private boolean jj_3_1642() { - if (jj_scan_token(END_EXEC)) return true; + final private boolean jj_3_1439() { + if (jj_scan_token(TRIGGER_NAME)) return true; return false; } - final private boolean jj_3_1641() { - if (jj_scan_token(ELEMENT)) return true; + final private boolean jj_3_312() { + if (jj_scan_token(DESC)) return true; return false; } - final private boolean jj_3R_384() { + final private boolean jj_3_1438() { + if (jj_scan_token(TRANSFORM)) return true; return false; } - final private boolean jj_3_1640() { - if (jj_scan_token(DOUBLE)) return true; + final private boolean jj_3_313() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_311()) { + jj_scanpos = xsp; + if (jj_3_312()) return true; + } return false; } - final private boolean jj_3R_150() { - if (jj_3R_81()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_306()) jj_scanpos = xsp; - xsp = jj_scanpos; - if (jj_3_309()) jj_scanpos = xsp; + final private boolean jj_3_311() { + if (jj_scan_token(ASC)) return true; return false; } - final private boolean jj_3_1639() { - if (jj_scan_token(DETERMINISTIC)) return true; + final private boolean jj_3_1437() { + if (jj_scan_token(TRANSACTIONS_ACTIVE)) return true; return false; } - final private boolean jj_3_1638() { - if (jj_scan_token(DENSE_RANK)) return true; + final private boolean jj_3_1436() { + if (jj_scan_token(TIMESTAMP_TRUNC)) return true; return false; } - final private boolean jj_3_1637() { - if (jj_scan_token(DECIMAL)) return true; + final private boolean jj_3_1435() { + if (jj_scan_token(TIMESTAMPADD)) return true; return false; } - final private boolean jj_3_1636() { - if (jj_scan_token(DAY)) return true; + final private boolean jj_3_1434() { + if (jj_scan_token(TIES)) return true; return false; } - final private boolean jj_3R_250() { + final private boolean jj_3_1433() { + if (jj_scan_token(SUBSTITUTE)) return true; + return false; + } + + final private boolean jj_3R_155() { + if (jj_3R_82()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_745()) { - jj_scanpos = xsp; - if (jj_3R_384()) return true; - } + if (jj_3_313()) jj_scanpos = xsp; + xsp = jj_scanpos; + if (jj_3_316()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1635() { - if (jj_scan_token(CYCLE)) return true; + final private boolean jj_3_1432() { + if (jj_scan_token(STRUCTURE)) return true; return false; } - final private boolean jj_3_745() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_251()) return true; + final private boolean jj_3_1431() { + if (jj_scan_token(STATE)) return true; return false; } - final private boolean jj_3_1634() { - if (jj_scan_token(CURRENT_ROW)) return true; + final private boolean jj_3_765() { + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1633() { - if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; + final private boolean jj_3_1430() { + if (jj_scan_token(SQL_TSI_YEAR)) return true; return false; } - final private boolean jj_3_1632() { - if (jj_scan_token(CUME_DIST)) return true; + final private boolean jj_3_1429() { + if (jj_scan_token(SQL_TSI_QUARTER)) return true; return false; } - final private boolean jj_3_1631() { - if (jj_scan_token(COVAR_POP)) return true; + final private boolean jj_3_764() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1630() { - if (jj_scan_token(CORR)) return true; + final private boolean jj_3_1428() { + if (jj_scan_token(SQL_TSI_MICROSECOND)) return true; return false; } - final private boolean jj_3_1629() { - if (jj_scan_token(CONNECT)) return true; + final private boolean jj_3_1427() { + if (jj_scan_token(SQL_TSI_DAY)) return true; return false; } - final private boolean jj_3_1628() { - if (jj_scan_token(COLLECT)) return true; + final private boolean jj_3_1426() { + if (jj_scan_token(SQL_TIME)) return true; return false; } - final private boolean jj_3_303() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_150()) return true; + final private boolean jj_3_1425() { + if (jj_scan_token(SQL_NVARCHAR)) return true; return false; } - final private boolean jj_3_1627() { - if (jj_scan_token(CLOSE)) return true; + final private boolean jj_3_1424() { + if (jj_scan_token(SQL_NCHAR)) return true; return false; } - final private boolean jj_3_1626() { - if (jj_scan_token(CHECK)) return true; + final private boolean jj_3_1423() { + if (jj_scan_token(SQL_LONGVARBINARY)) return true; return false; } - final private boolean jj_3_1625() { - if (jj_scan_token(CHARACTER)) return true; + final private boolean jj_3_1422() { + if (jj_scan_token(SQL_INTERVAL_SECOND)) return true; return false; } - final private boolean jj_3_1624() { - if (jj_scan_token(CEIL)) return true; + final private boolean jj_3_1421() { + if (jj_scan_token(SQL_INTERVAL_MINUTE)) return true; return false; } - final private boolean jj_3_1623() { - if (jj_scan_token(CALLED)) return true; + final private boolean jj_3_310() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_155()) return true; return false; } - final private boolean jj_3_1622() { - if (jj_scan_token(BLOB)) return true; + final private boolean jj_3_1420() { + if (jj_scan_token(SQL_INTERVAL_HOUR)) return true; return false; } - final private boolean jj_3_1621() { - if (jj_scan_token(BIGINT)) return true; + final private boolean jj_3_1419() { + if (jj_scan_token(SQL_INTERVAL_DAY_TO_HOUR)) return true; return false; } - final private boolean jj_3_1620() { - if (jj_scan_token(BEGIN)) return true; + final private boolean jj_3_1418() { + if (jj_scan_token(SQL_FLOAT)) return true; return false; } - final private boolean jj_3_1619() { - if (jj_scan_token(ATOMIC)) return true; + final private boolean jj_3_1417() { + if (jj_scan_token(SQL_DATE)) return true; return false; } - final private boolean jj_3_1618() { - if (jj_scan_token(ARRAY_MAX_CARDINALITY)) return true; + final private boolean jj_3_763() { + if (jj_scan_token(NOT)) return true; + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1617() { - if (jj_scan_token(ALLOCATE)) return true; + final private boolean jj_3_1416() { + if (jj_scan_token(SQL_BOOLEAN)) return true; return false; } - final private boolean jj_3_1616() { - if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; + final private boolean jj_3_1415() { + if (jj_scan_token(SQL_BINARY)) return true; return false; } - final private boolean jj_3_744() { - if (jj_scan_token(TIMESTAMP)) return true; - if (jj_3R_250()) return true; - if (jj_3R_279()) return true; + final private boolean jj_3_762() { + if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_1615() { - if (jj_scan_token(STATISTICS)) return true; + final private boolean jj_3_1414() { + if (jj_scan_token(SPACE)) return true; return false; } - final private boolean jj_3_1614() { - if (jj_scan_token(COMPUTE)) return true; + final private boolean jj_3_1413() { + if (jj_scan_token(SIMPLE)) return true; return false; } - final private boolean jj_3_1613() { - if (jj_scan_token(SCAN)) return true; + final private boolean jj_3_1412() { + if (jj_scan_token(SERVER_NAME)) return true; return false; } - final private boolean jj_3_1612() { - if (jj_scan_token(NOLOGGING)) return true; + final private boolean jj_3_1411() { + if (jj_scan_token(SEQUENCE)) return true; return false; } - final private boolean jj_3R_70() { - if (jj_scan_token(ORDER)) return true; - if (jj_scan_token(BY)) return true; + final private boolean jj_3_1410() { + if (jj_scan_token(SECURITY)) return true; return false; } - final private boolean jj_3_1611() { - if (jj_scan_token(PARALLEL)) return true; + final private boolean jj_3_1409() { + if (jj_scan_token(SCOPE_SCHEMA)) return true; return false; } - final private boolean jj_3_1610() { - if (jj_scan_token(DATA_REGION)) return true; + final private boolean jj_3_1408() { + if (jj_scan_token(SCHEMA_NAME)) return true; return false; } - final private boolean jj_3_1609() { - if (jj_scan_token(WRITE_SYNCHRONIZATION_MODE)) return true; + final private boolean jj_3_1407() { + if (jj_scan_token(SCALAR)) return true; return false; } - final private boolean jj_3_1608() { - if (jj_scan_token(BACKUPS)) return true; + final private boolean jj_3_1406() { + if (jj_scan_token(ROUTINE_NAME)) return true; return false; } - final private boolean jj_3_1607() { - if (jj_scan_token(YEARS)) return true; + final private boolean jj_3_1405() { + if (jj_scan_token(ROLE)) return true; return false; } - final private boolean jj_3_1606() { - if (jj_scan_token(WRAPPER)) return true; + final private boolean jj_3R_71() { + if (jj_scan_token(ORDER)) return true; + if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3_1605() { - if (jj_scan_token(WEEK)) return true; + final private boolean jj_3_1404() { + if (jj_scan_token(RETURNED_SQLSTATE)) return true; return false; } - final private boolean jj_3_1604() { - if (jj_scan_token(UTF8)) return true; + final private boolean jj_3_761() { + if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3_1603() { - if (jj_scan_token(USER_DEFINED_TYPE_SCHEMA)) return true; + final private boolean jj_3_1403() { + if (jj_scan_token(RETURNED_CARDINALITY)) return true; return false; } - final private boolean jj_3_743() { - if (jj_scan_token(TIME)) return true; - if (jj_3R_250()) return true; - if (jj_3R_279()) return true; + final private boolean jj_3_1402() { + if (jj_scan_token(RESPECT)) return true; return false; } - final private boolean jj_3_1602() { - if (jj_scan_token(USER_DEFINED_TYPE_CATALOG)) return true; + final private boolean jj_3_760() { + if (jj_scan_token(MULTISET)) return true; return false; } - final private boolean jj_3_1601() { - if (jj_scan_token(UNPIVOT)) return true; + final private boolean jj_3_1401() { + if (jj_scan_token(RELATIVE)) return true; return false; } - final private boolean jj_3_1600() { - if (jj_scan_token(UNCOMMITTED)) return true; + final private boolean jj_3_1400() { + if (jj_scan_token(QUARTER)) return true; return false; } - final private boolean jj_3R_143() { - if (jj_scan_token(QUALIFY)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_1399() { + if (jj_scan_token(PRIOR)) return true; return false; } - final private boolean jj_3_1599() { - if (jj_scan_token(TUMBLE)) return true; + final private boolean jj_3_1398() { + if (jj_scan_token(PLI)) return true; return false; } - final private boolean jj_3R_275() { + final private boolean jj_3R_274() { Token xsp; xsp = jj_scanpos; - if (jj_3_742()) { - jj_scanpos = xsp; - if (jj_3_743()) { + if (jj_3_760()) { jj_scanpos = xsp; - if (jj_3_744()) return true; - } + if (jj_3_761()) return true; } return false; } - final private boolean jj_3_1598() { - if (jj_scan_token(TRIGGER_CATALOG)) return true; + final private boolean jj_3_1397() { + if (jj_scan_token(PIVOT)) return true; return false; } - final private boolean jj_3_742() { - if (jj_scan_token(DATE)) return true; + final private boolean jj_3_1396() { + if (jj_scan_token(PASSTHROUGH)) return true; return false; } - final private boolean jj_3_1597() { - if (jj_scan_token(TRANSACTIONS_ROLLED_BACK)) return true; + final private boolean jj_3_1395() { + if (jj_scan_token(PARTIAL)) return true; return false; } - final private boolean jj_3_1596() { - if (jj_scan_token(TRANSACTION)) return true; + final private boolean jj_3_1394() { + if (jj_scan_token(PARAMETER_SPECIFIC_CATALOG)) return true; + return false; + } + + final private boolean jj_3_1393() { + if (jj_scan_token(PARAMETER_MODE)) return true; return false; } - final private boolean jj_3_1595() { - if (jj_scan_token(TIMESTAMP_DIFF)) return true; + final private boolean jj_3R_148() { + if (jj_scan_token(QUALIFY)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_1594() { - if (jj_scan_token(TIME_TRUNC)) return true; + final private boolean jj_3_1392() { + if (jj_scan_token(OUTPUT)) return true; return false; } - final private boolean jj_3_1593() { - if (jj_scan_token(TEMPORARY)) return true; + final private boolean jj_3_1391() { + if (jj_scan_token(ORDERING)) return true; return false; } - final private boolean jj_3_1592() { - if (jj_scan_token(SUBCLASS_ORIGIN)) return true; + final private boolean jj_3_1390() { + if (jj_scan_token(OCTETS)) return true; return false; } - final private boolean jj_3_1591() { - if (jj_scan_token(STRING_AGG)) return true; + final private boolean jj_3_1389() { + if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_299() { - if (jj_scan_token(FOLLOWING)) return true; + final private boolean jj_3_1388() { + if (jj_scan_token(NESTING)) return true; return false; } - final private boolean jj_3_1590() { - if (jj_scan_token(SQL_VARCHAR)) return true; + final private boolean jj_3_1387() { + if (jj_scan_token(NAME)) return true; return false; } - final private boolean jj_3_1589() { - if (jj_scan_token(SQL_TSI_WEEK)) return true; + final private boolean jj_3_1386() { + if (jj_scan_token(MONTHS)) return true; return false; } - final private boolean jj_3_1588() { - if (jj_scan_token(SQL_TSI_MONTH)) return true; + final private boolean jj_3_1385() { + if (jj_scan_token(MILLISECOND)) return true; return false; } - final private boolean jj_3_1587() { - if (jj_scan_token(SQL_TSI_HOUR)) return true; + final private boolean jj_3_1384() { + if (jj_scan_token(MESSAGE_TEXT)) return true; return false; } - final private boolean jj_3_298() { - if (jj_scan_token(PRECEDING)) return true; + final private boolean jj_3_306() { + if (jj_scan_token(FOLLOWING)) return true; return false; } - final private boolean jj_3_737() { - if (jj_scan_token(CHAR)) return true; + final private boolean jj_3_1383() { + if (jj_scan_token(MAXVALUE)) return true; return false; } - final private boolean jj_3_1586() { - if (jj_scan_token(SQL_TINYINT)) return true; + final private boolean jj_3_1382() { + if (jj_scan_token(M)) return true; return false; } - final private boolean jj_3_1585() { - if (jj_scan_token(SQL_SMALLINT)) return true; + final private boolean jj_3_1381() { + if (jj_scan_token(LEVEL)) return true; return false; } - final private boolean jj_3_1584() { - if (jj_scan_token(SQL_NUMERIC)) return true; + final private boolean jj_3_1380() { + if (jj_scan_token(LABEL)) return true; return false; } - final private boolean jj_3_1583() { - if (jj_scan_token(SQL_LONGVARNCHAR)) return true; + final private boolean jj_3_305() { + if (jj_scan_token(PRECEDING)) return true; return false; } - final private boolean jj_3_741() { - if (jj_scan_token(CHARACTER)) return true; - if (jj_scan_token(SET)) return true; + final private boolean jj_3_1379() { + if (jj_scan_token(KEY)) return true; return false; } - final private boolean jj_3_1582() { - if (jj_scan_token(SQL_INTERVAL_YEAR_TO_MONTH)) return true; + final private boolean jj_3_1378() { + if (jj_scan_token(JAVA)) return true; return false; } - final private boolean jj_3_1581() { - if (jj_scan_token(SQL_INTERVAL_MONTH)) return true; + final private boolean jj_3_1377() { + if (jj_scan_token(ISODOW)) return true; return false; } - final private boolean jj_3_302() { - if (jj_3R_81()) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_298()) { - jj_scanpos = xsp; - if (jj_3_299()) return true; - } + final private boolean jj_3_727() { + if (jj_scan_token(DOUBLE)) return true; return false; } - final private boolean jj_3R_278() { + final private boolean jj_3_729() { + if (jj_scan_token(FLOAT)) return true; return false; } - final private boolean jj_3_1580() { - if (jj_scan_token(SQL_INTERVAL_HOUR_TO_SECOND)) return true; + final private boolean jj_3_1376() { + if (jj_scan_token(INSTANCE)) return true; return false; } - final private boolean jj_3_297() { - if (jj_scan_token(FOLLOWING)) return true; + final private boolean jj_3_721() { + if (jj_scan_token(SMALLINT)) return true; return false; } - final private boolean jj_3_1579() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_SECOND)) return true; + final private boolean jj_3_1375() { + if (jj_scan_token(INCREMENT)) return true; return false; } - final private boolean jj_3_740() { - if (jj_scan_token(VARCHAR)) return true; + final private boolean jj_3_717() { + if (jj_scan_token(VARBINARY)) return true; return false; } - final private boolean jj_3_1578() { - if (jj_scan_token(SQL_INTERVAL_DAY)) return true; + final private boolean jj_3_723() { + if (jj_scan_token(BIGINT)) return true; return false; } - final private boolean jj_3_738() { - if (jj_scan_token(VARYING)) return true; + final private boolean jj_3_759() { + if (jj_scan_token(SQL_INTERVAL_SECOND)) return true; return false; } - final private boolean jj_3_1577() { - if (jj_scan_token(SQL_DOUBLE)) return true; + final private boolean jj_3_1374() { + if (jj_scan_token(IMPLEMENTATION)) return true; return false; } - final private boolean jj_3_1576() { - if (jj_scan_token(SQL_CLOB)) return true; + final private boolean jj_3_309() { + if (jj_3R_82()) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_305()) { + jj_scanpos = xsp; + if (jj_3_306()) return true; + } return false; } - final private boolean jj_3_296() { - if (jj_scan_token(PRECEDING)) return true; + final private boolean jj_3_719() { + if (jj_scan_token(TINYINT)) return true; return false; } - final private boolean jj_3_1575() { - if (jj_scan_token(SQL_BLOB)) return true; + final private boolean jj_3_758() { + if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; return false; } - final private boolean jj_3_1574() { - if (jj_scan_token(SQL_BIGINT)) return true; + final private boolean jj_3_1373() { + if (jj_scan_token(ILIKE)) return true; return false; } - final private boolean jj_3_1573() { - if (jj_scan_token(SOURCE)) return true; + final private boolean jj_3_304() { + if (jj_scan_token(FOLLOWING)) return true; return false; } - final private boolean jj_3_736() { - if (jj_scan_token(CHARACTER)) return true; + final private boolean jj_3_725() { + if (jj_scan_token(REAL)) return true; return false; } - final private boolean jj_3_1572() { - if (jj_scan_token(SETS)) return true; + final private boolean jj_3_757() { + if (jj_scan_token(SQL_INTERVAL_MINUTE)) return true; return false; } - final private boolean jj_3_739() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_736()) { - jj_scanpos = xsp; - if (jj_3_737()) return true; - } - xsp = jj_scanpos; - if (jj_3_738()) { - jj_scanpos = xsp; - if (jj_3R_278()) return true; - } + final private boolean jj_3_1372() { + if (jj_scan_token(HOP)) return true; return false; } - final private boolean jj_3_1571() { - if (jj_scan_token(SERVER)) return true; + final private boolean jj_3_756() { + if (jj_scan_token(SQL_INTERVAL_HOUR_TO_SECOND)) return true; return false; } - final private boolean jj_3_1570() { - if (jj_scan_token(SEPARATOR)) return true; + final private boolean jj_3_1371() { + if (jj_scan_token(GRANTED)) return true; return false; } - final private boolean jj_3_1569() { - if (jj_scan_token(SECTION)) return true; + final private boolean jj_3_713() { + if (jj_scan_token(INTEGER)) return true; return false; } - final private boolean jj_3_301() { - if (jj_scan_token(UNBOUNDED)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_296()) { - jj_scanpos = xsp; - if (jj_3_297()) return true; - } + final private boolean jj_3_715() { + if (jj_scan_token(BINARY)) return true; return false; } - final private boolean jj_3_1568() { - if (jj_scan_token(SCOPE_NAME)) return true; + final private boolean jj_3_755() { + if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; return false; } - final private boolean jj_3R_274() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_739()) { - jj_scanpos = xsp; - if (jj_3_740()) return true; - } - if (jj_3R_250()) return true; - xsp = jj_scanpos; - if (jj_3_741()) jj_scanpos = xsp; + final private boolean jj_3_1370() { + if (jj_scan_token(GEOMETRY)) return true; return false; } - final private boolean jj_3_1567() { - if (jj_scan_token(SCHEMA)) return true; + final private boolean jj_3_711() { + if (jj_scan_token(BOOLEAN)) return true; return false; } - final private boolean jj_3_1566() { - if (jj_scan_token(ROW_COUNT)) return true; + final private boolean jj_3_754() { + if (jj_scan_token(SQL_INTERVAL_HOUR)) return true; return false; } - final private boolean jj_3_1565() { - if (jj_scan_token(ROUTINE_CATALOG)) return true; + final private boolean jj_3_1369() { + if (jj_scan_token(G)) return true; return false; } - final private boolean jj_3R_180() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_300()) { - jj_scanpos = xsp; - if (jj_3_301()) { - jj_scanpos = xsp; - if (jj_3_302()) return true; - } - } + final private boolean jj_3_303() { + if (jj_scan_token(PRECEDING)) return true; return false; } - final private boolean jj_3_1564() { - if (jj_scan_token(RLIKE)) return true; + final private boolean jj_3_705() { + if (jj_scan_token(TIMESTAMP)) return true; return false; } - final private boolean jj_3_300() { - if (jj_scan_token(CURRENT)) return true; - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_709() { + if (jj_scan_token(NUMERIC)) return true; return false; } - final private boolean jj_3_1563() { - if (jj_scan_token(RETURNED_OCTET_LENGTH)) return true; + final private boolean jj_3_753() { + if (jj_scan_token(SQL_INTERVAL_DAY_TO_SECOND)) return true; return false; } - final private boolean jj_3_1562() { - if (jj_scan_token(RESTRICT)) return true; + final private boolean jj_3_1368() { + if (jj_scan_token(FORTRAN)) return true; return false; } - final private boolean jj_3_1561() { - if (jj_scan_token(REPLACE)) return true; + final private boolean jj_3_707() { + if (jj_scan_token(DECIMAL)) return true; return false; } - final private boolean jj_3_1560() { - if (jj_scan_token(READ)) return true; + final private boolean jj_3_752() { + if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; return false; } - final private boolean jj_3_1559() { - if (jj_scan_token(PUBLIC)) return true; + final private boolean jj_3_1367() { + if (jj_scan_token(FIRST)) return true; return false; } - final private boolean jj_3_1558() { - if (jj_scan_token(PRESERVE)) return true; + final private boolean jj_3_751() { + if (jj_scan_token(SQL_INTERVAL_DAY_TO_HOUR)) return true; return false; } - final private boolean jj_3_1557() { - if (jj_scan_token(PLAN)) return true; + final private boolean jj_3_1366() { + if (jj_scan_token(EXCLUDE)) return true; return false; } - final private boolean jj_3_1556() { - if (jj_scan_token(PATH)) return true; + final private boolean jj_3_750() { + if (jj_scan_token(SQL_INTERVAL_DAY)) return true; return false; } - final private boolean jj_3_1555() { - if (jj_scan_token(PASSING)) return true; + final private boolean jj_3_1365() { + if (jj_scan_token(EPOCH)) return true; return false; } - final private boolean jj_3_1554() { - if (jj_scan_token(PARAMETER_SPECIFIC_SCHEMA)) return true; + final private boolean jj_3_749() { + if (jj_scan_token(SQL_INTERVAL_MONTH)) return true; return false; } - final private boolean jj_3_1553() { - if (jj_scan_token(PARAMETER_ORDINAL_POSITION)) return true; + final private boolean jj_3_1364() { + if (jj_scan_token(DYNAMIC_FUNCTION)) return true; return false; } - final private boolean jj_3_1552() { - if (jj_scan_token(PAD)) return true; + final private boolean jj_3_699() { + if (jj_scan_token(VARCHAR)) return true; return false; } - final private boolean jj_3_1551() { - if (jj_scan_token(OTHERS)) return true; + final private boolean jj_3_748() { + if (jj_scan_token(SQL_INTERVAL_YEAR_TO_MONTH)) return true; return false; } - final private boolean jj_3R_270() { - if (jj_scan_token(ROW)) return true; - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_398()) return true; + final private boolean jj_3_1363() { + if (jj_scan_token(DOW)) return true; return false; } - final private boolean jj_3_1550() { - if (jj_scan_token(OPTIONS)) return true; + final private boolean jj_3_703() { + if (jj_scan_token(TIME)) return true; return false; } - final private boolean jj_3_295() { - if (jj_scan_token(DISALLOW)) return true; - if (jj_scan_token(PARTIAL)) return true; + final private boolean jj_3_728() { + if (jj_scan_token(SQL_FLOAT)) return true; return false; } - final private boolean jj_3_1549() { - if (jj_scan_token(OBJECT)) return true; + final private boolean jj_3_747() { + if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; return false; } - final private boolean jj_3_1548() { - if (jj_scan_token(NULLABLE)) return true; + final private boolean jj_3_1362() { + if (jj_scan_token(DIAGNOSTICS)) return true; return false; } - final private boolean jj_3_1547() { - if (jj_scan_token(NANOSECOND)) return true; + final private boolean jj_3_308() { + if (jj_scan_token(UNBOUNDED)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_303()) { + jj_scanpos = xsp; + if (jj_3_304()) return true; + } return false; } - final private boolean jj_3_1546() { - if (jj_scan_token(MUMPS)) return true; + final private boolean jj_3_701() { + if (jj_scan_token(DATE)) return true; return false; } - final private boolean jj_3_294() { - if (jj_scan_token(ALLOW)) return true; - if (jj_scan_token(PARTIAL)) return true; + final private boolean jj_3_726() { + if (jj_scan_token(SQL_DOUBLE)) return true; return false; } - final private boolean jj_3_1545() { - if (jj_scan_token(MINVALUE)) return true; + final private boolean jj_3_746() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_728()) { + jj_scanpos = xsp; + if (jj_3_729()) return true; + } return false; } - final private boolean jj_3_1544() { - if (jj_scan_token(MILLENNIUM)) return true; + final private boolean jj_3_1361() { + if (jj_scan_token(DESC)) return true; return false; } - final private boolean jj_3_1543() { - if (jj_scan_token(MESSAGE_OCTET_LENGTH)) return true; + final private boolean jj_3_724() { + if (jj_scan_token(SQL_REAL)) return true; return false; } - final private boolean jj_3_1542() { - if (jj_scan_token(MATCHED)) return true; + final private boolean jj_3_745() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_726()) { + jj_scanpos = xsp; + if (jj_3_727()) return true; + } return false; } - final private boolean jj_3_1541() { - if (jj_scan_token(LOCATOR)) return true; + final private boolean jj_3_1360() { + if (jj_scan_token(DEGREE)) return true; return false; } - final private boolean jj_3_1540() { - if (jj_scan_token(LENGTH)) return true; + final private boolean jj_3_697() { + if (jj_scan_token(CHAR)) return true; return false; } - final private boolean jj_3_292() { - if (jj_3R_180()) return true; + final private boolean jj_3_722() { + if (jj_scan_token(SQL_BIGINT)) return true; return false; } - final private boolean jj_3_1539() { - if (jj_scan_token(KEY_TYPE)) return true; + final private boolean jj_3_744() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_724()) { + jj_scanpos = xsp; + if (jj_3_725()) return true; + } return false; } - final private boolean jj_3_1538() { - if (jj_scan_token(K)) return true; + final private boolean jj_3_1359() { + if (jj_scan_token(DEFERRED)) return true; return false; } - final private boolean jj_3_1537() { - if (jj_scan_token(ISOYEAR)) return true; + final private boolean jj_3_720() { + if (jj_scan_token(SQL_SMALLINT)) return true; return false; } - final private boolean jj_3_291() { - if (jj_scan_token(BETWEEN)) return true; - if (jj_3R_180()) return true; + final private boolean jj_3_743() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_722()) { + jj_scanpos = xsp; + if (jj_3_723()) return true; + } return false; } - final private boolean jj_3_1536() { - if (jj_scan_token(INVOKER)) return true; + final private boolean jj_3_1358() { + if (jj_scan_token(DECADE)) return true; return false; } - final private boolean jj_3_1535() { - if (jj_scan_token(INPUT)) return true; + final private boolean jj_3_718() { + if (jj_scan_token(SQL_TINYINT)) return true; return false; } - final private boolean jj_3_1534() { - if (jj_scan_token(INCLUDING)) return true; + final private boolean jj_3_742() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_720()) { + jj_scanpos = xsp; + if (jj_3_721()) return true; + } return false; } - final private boolean jj_3_290() { - if (jj_scan_token(RANGE)) return true; + final private boolean jj_3R_185() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_307()) { + jj_scanpos = xsp; + if (jj_3_308()) { + jj_scanpos = xsp; + if (jj_3_309()) return true; + } + } return false; } - final private boolean jj_3_1533() { - if (jj_scan_token(IMMEDIATELY)) return true; + final private boolean jj_3_1357() { + if (jj_scan_token(DAYOFWEEK)) return true; return false; } - final private boolean jj_3_1532() { - if (jj_scan_token(IGNORE)) return true; + final private boolean jj_3_307() { + if (jj_scan_token(CURRENT)) return true; + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_289() { - if (jj_scan_token(ROWS)) return true; + final private boolean jj_3_716() { + if (jj_scan_token(SQL_VARBINARY)) return true; return false; } - final private boolean jj_3_1531() { - if (jj_scan_token(HIERARCHY)) return true; + final private boolean jj_3_741() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_718()) { + jj_scanpos = xsp; + if (jj_3_719()) return true; + } return false; } - final private boolean jj_3R_277() { - if (jj_3R_84()) return true; + final private boolean jj_3_1356() { + if (jj_scan_token(DATETIME_INTERVAL_CODE)) return true; return false; } - final private boolean jj_3_1530() { - if (jj_scan_token(GOTO)) return true; + final private boolean jj_3_714() { + if (jj_scan_token(SQL_BINARY)) return true; return false; } - final private boolean jj_3_1529() { - if (jj_scan_token(GENERATED)) return true; + final private boolean jj_3_740() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_716()) { + jj_scanpos = xsp; + if (jj_3_717()) return true; + } return false; } - final private boolean jj_3_1528() { - if (jj_scan_token(FRAC_SECOND)) return true; + final private boolean jj_3_1355() { + if (jj_scan_token(DATE_DIFF)) return true; return false; } - final private boolean jj_3_1527() { - if (jj_scan_token(FORMAT)) return true; + final private boolean jj_3_712() { + if (jj_scan_token(SQL_INTEGER)) return true; return false; } - final private boolean jj_3_293() { + final private boolean jj_3_739() { Token xsp; xsp = jj_scanpos; - if (jj_3_289()) { - jj_scanpos = xsp; - if (jj_3_290()) return true; - } - xsp = jj_scanpos; - if (jj_3_291()) { + if (jj_3_714()) { jj_scanpos = xsp; - if (jj_3_292()) return true; + if (jj_3_715()) return true; } return false; } - final private boolean jj_3_1526() { - if (jj_scan_token(FINAL)) return true; + final private boolean jj_3_1354() { + if (jj_scan_token(CURSOR_NAME)) return true; return false; } - final private boolean jj_3_1525() { - if (jj_scan_token(EXCEPTION)) return true; + final private boolean jj_3_710() { + if (jj_scan_token(SQL_BOOLEAN)) return true; return false; } - final private boolean jj_3_1524() { - if (jj_scan_token(ENCODING)) return true; + final private boolean jj_3_738() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_712()) { + jj_scanpos = xsp; + if (jj_3_713()) return true; + } return false; } - final private boolean jj_3_1523() { - if (jj_scan_token(DOT_FORMAT)) return true; + final private boolean jj_3_1353() { + if (jj_scan_token(CONSTRUCTOR)) return true; return false; } - final private boolean jj_3_288() { - if (jj_3R_70()) return true; + final private boolean jj_3_708() { + if (jj_scan_token(SQL_NUMERIC)) return true; return false; } - final private boolean jj_3_1522() { - if (jj_scan_token(DOMAIN)) return true; + final private boolean jj_3_737() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_710()) { + jj_scanpos = xsp; + if (jj_3_711()) return true; + } return false; } - final private boolean jj_3_1521() { - if (jj_scan_token(DESCRIPTOR)) return true; + final private boolean jj_3_1352() { + if (jj_scan_token(CONSTRAINT_NAME)) return true; return false; } - final private boolean jj_3_735() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_277()) return true; + final private boolean jj_3_706() { + if (jj_scan_token(SQL_DECIMAL)) return true; return false; } - final private boolean jj_3_1520() { - if (jj_scan_token(DERIVED)) return true; + final private boolean jj_3_736() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_708()) { + jj_scanpos = xsp; + if (jj_3_709()) return true; + } return false; } - final private boolean jj_3_1519() { - if (jj_scan_token(DEFINER)) return true; + final private boolean jj_3_1351() { + if (jj_scan_token(CONNECTION)) return true; return false; } - final private boolean jj_3R_398() { - if (jj_3R_277()) return true; + final private boolean jj_3_704() { + if (jj_scan_token(SQL_TIMESTAMP)) return true; + return false; + } + + final private boolean jj_3_735() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_706()) { + jj_scanpos = xsp; + if (jj_3_707()) return true; + } return false; } - final private boolean jj_3_1518() { - if (jj_scan_token(DEFERRABLE)) return true; + final private boolean jj_3_1350() { + if (jj_scan_token(COMMITTED)) return true; return false; } - final private boolean jj_3_1517() { - if (jj_scan_token(DAYS)) return true; + final private boolean jj_3_702() { + if (jj_scan_token(SQL_TIME)) return true; return false; } - final private boolean jj_3_287() { - if (jj_scan_token(PARTITION)) return true; - if (jj_scan_token(BY)) return true; + final private boolean jj_3_734() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_704()) { + jj_scanpos = xsp; + if (jj_3_705()) return true; + } return false; } - final private boolean jj_3_1516() { - if (jj_scan_token(DATETIME_DIFF)) return true; + final private boolean jj_3_1349() { + if (jj_scan_token(COLUMN_NAME)) return true; return false; } - final private boolean jj_3_1515() { - if (jj_scan_token(DATABASE)) return true; + final private boolean jj_3_700() { + if (jj_scan_token(SQL_DATE)) return true; return false; } - final private boolean jj_3R_391() { + final private boolean jj_3_733() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_702()) { + jj_scanpos = xsp; + if (jj_3_703()) return true; + } return false; } - final private boolean jj_3_1514() { - if (jj_scan_token(CONTINUE)) return true; + final private boolean jj_3_1348() { + if (jj_scan_token(COLLATION_CATALOG)) return true; return false; } - final private boolean jj_3_1513() { - if (jj_scan_token(CONSTRAINTS)) return true; + final private boolean jj_3_691() { + if (jj_scan_token(NUMERIC)) return true; return false; } - final private boolean jj_3_286() { - if (jj_3R_84()) return true; + final private boolean jj_3_698() { + if (jj_scan_token(SQL_VARCHAR)) return true; return false; } - final private boolean jj_3_1512() { - if (jj_scan_token(CONNECTION_NAME)) return true; + final private boolean jj_3_732() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_700()) { + jj_scanpos = xsp; + if (jj_3_701()) return true; + } return false; } - final private boolean jj_3_1511() { - if (jj_scan_token(CONDITIONAL)) return true; + final private boolean jj_3_1347() { + if (jj_scan_token(CLASS_ORIGIN)) return true; return false; } - final private boolean jj_3_1510() { - if (jj_scan_token(COMMAND_FUNCTION)) return true; + final private boolean jj_3_696() { + if (jj_scan_token(SQL_CHAR)) return true; return false; } - final private boolean jj_3_1509() { - if (jj_scan_token(COLLATION_NAME)) return true; + final private boolean jj_3_731() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_698()) { + jj_scanpos = xsp; + if (jj_3_699()) return true; + } return false; } - final private boolean jj_3_1508() { - if (jj_scan_token(COBOL)) return true; + final private boolean jj_3_1346() { + if (jj_scan_token(CHARACTER_SET_CATALOG)) return true; return false; } - final private boolean jj_3R_318() { - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_730() { Token xsp; xsp = jj_scanpos; - if (jj_3_286()) { + if (jj_3_696()) { jj_scanpos = xsp; - if (jj_3R_391()) return true; + if (jj_3_697()) return true; } return false; } - final private boolean jj_3_1507() { - if (jj_scan_token(CHARACTER_SET_NAME)) return true; + final private boolean jj_3_1345() { + if (jj_scan_token(CHAIN)) return true; return false; } - final private boolean jj_3R_362() { + final private boolean jj_3_1344() { + if (jj_scan_token(CATALOG)) return true; return false; } - final private boolean jj_3_1506() { - if (jj_scan_token(CHARACTERISTICS)) return true; + final private boolean jj_3_1343() { + if (jj_scan_token(BREADTH)) return true; return false; } - final private boolean jj_3_1505() { - if (jj_scan_token(CATALOG_NAME)) return true; + final private boolean jj_3_302() { + if (jj_scan_token(DISALLOW)) return true; + if (jj_scan_token(PARTIAL)) return true; return false; } - final private boolean jj_3R_174() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_734()) { - jj_scanpos = xsp; - if (jj_3R_362()) return true; - } + final private boolean jj_3_1342() { + if (jj_scan_token(ATTRIBUTES)) return true; return false; } - final private boolean jj_3_1504() { - if (jj_scan_token(C)) return true; + final private boolean jj_3_1341() { + if (jj_scan_token(ASSERTION)) return true; return false; } - final private boolean jj_3_734() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_1340() { + if (jj_scan_token(ARRAY_AGG)) return true; return false; } - final private boolean jj_3_1503() { - if (jj_scan_token(BEFORE)) return true; + final private boolean jj_3_690() { + if (jj_scan_token(DEC)) return true; return false; } - final private boolean jj_3_1502() { - if (jj_scan_token(ASSIGNMENT)) return true; + final private boolean jj_3_1339() { + if (jj_scan_token(AFTER)) return true; return false; } - final private boolean jj_3_1501() { - if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; + final private boolean jj_3_301() { + if (jj_scan_token(ALLOW)) return true; + if (jj_scan_token(PARTIAL)) return true; return false; } - final private boolean jj_3_1500() { - if (jj_scan_token(ALWAYS)) return true; + final private boolean jj_3_694() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_257()) return true; return false; } - final private boolean jj_3_1499() { - if (jj_scan_token(ADD)) return true; + final private boolean jj_3_1338() { + if (jj_scan_token(ADA)) return true; return false; } - final private boolean jj_3_1498() { - if (jj_scan_token(ABSOLUTE)) return true; + final private boolean jj_3_1337() { + if (jj_scan_token(ABSENT)) return true; return false; } - final private boolean jj_3_733() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_299() { + if (jj_3R_185()) return true; return false; } - final private boolean jj_3R_330() { + final private boolean jj_3R_338() { Token xsp; xsp = jj_scanpos; - if (jj_3_1498()) { + if (jj_3_1337()) { jj_scanpos = xsp; - if (jj_3_1499()) { + if (jj_3_1338()) { jj_scanpos = xsp; - if (jj_3_1500()) { + if (jj_3_1339()) { jj_scanpos = xsp; - if (jj_3_1501()) { + if (jj_3_1340()) { jj_scanpos = xsp; - if (jj_3_1502()) { + if (jj_3_1341()) { jj_scanpos = xsp; - if (jj_3_1503()) { + if (jj_3_1342()) { jj_scanpos = xsp; - if (jj_3_1504()) { + if (jj_3_1343()) { jj_scanpos = xsp; - if (jj_3_1505()) { + if (jj_3_1344()) { jj_scanpos = xsp; - if (jj_3_1506()) { + if (jj_3_1345()) { jj_scanpos = xsp; - if (jj_3_1507()) { + if (jj_3_1346()) { jj_scanpos = xsp; - if (jj_3_1508()) { + if (jj_3_1347()) { jj_scanpos = xsp; - if (jj_3_1509()) { + if (jj_3_1348()) { jj_scanpos = xsp; - if (jj_3_1510()) { + if (jj_3_1349()) { jj_scanpos = xsp; - if (jj_3_1511()) { + if (jj_3_1350()) { jj_scanpos = xsp; - if (jj_3_1512()) { + if (jj_3_1351()) { jj_scanpos = xsp; - if (jj_3_1513()) { + if (jj_3_1352()) { jj_scanpos = xsp; - if (jj_3_1514()) { + if (jj_3_1353()) { jj_scanpos = xsp; - if (jj_3_1515()) { + if (jj_3_1354()) { jj_scanpos = xsp; - if (jj_3_1516()) { + if (jj_3_1355()) { jj_scanpos = xsp; - if (jj_3_1517()) { + if (jj_3_1356()) { jj_scanpos = xsp; - if (jj_3_1518()) { + if (jj_3_1357()) { jj_scanpos = xsp; - if (jj_3_1519()) { + if (jj_3_1358()) { jj_scanpos = xsp; - if (jj_3_1520()) { + if (jj_3_1359()) { jj_scanpos = xsp; - if (jj_3_1521()) { + if (jj_3_1360()) { jj_scanpos = xsp; - if (jj_3_1522()) { + if (jj_3_1361()) { jj_scanpos = xsp; - if (jj_3_1523()) { + if (jj_3_1362()) { jj_scanpos = xsp; - if (jj_3_1524()) { + if (jj_3_1363()) { jj_scanpos = xsp; - if (jj_3_1525()) { + if (jj_3_1364()) { jj_scanpos = xsp; - if (jj_3_1526()) { + if (jj_3_1365()) { jj_scanpos = xsp; - if (jj_3_1527()) { + if (jj_3_1366()) { jj_scanpos = xsp; - if (jj_3_1528()) { + if (jj_3_1367()) { jj_scanpos = xsp; - if (jj_3_1529()) { + if (jj_3_1368()) { jj_scanpos = xsp; - if (jj_3_1530()) { + if (jj_3_1369()) { jj_scanpos = xsp; - if (jj_3_1531()) { + if (jj_3_1370()) { jj_scanpos = xsp; - if (jj_3_1532()) { + if (jj_3_1371()) { jj_scanpos = xsp; - if (jj_3_1533()) { + if (jj_3_1372()) { jj_scanpos = xsp; - if (jj_3_1534()) { + if (jj_3_1373()) { jj_scanpos = xsp; - if (jj_3_1535()) { + if (jj_3_1374()) { jj_scanpos = xsp; - if (jj_3_1536()) { + if (jj_3_1375()) { jj_scanpos = xsp; - if (jj_3_1537()) { + if (jj_3_1376()) { jj_scanpos = xsp; - if (jj_3_1538()) { + if (jj_3_1377()) { jj_scanpos = xsp; - if (jj_3_1539()) { + if (jj_3_1378()) { jj_scanpos = xsp; - if (jj_3_1540()) { + if (jj_3_1379()) { jj_scanpos = xsp; - if (jj_3_1541()) { + if (jj_3_1380()) { jj_scanpos = xsp; - if (jj_3_1542()) { + if (jj_3_1381()) { jj_scanpos = xsp; - if (jj_3_1543()) { + if (jj_3_1382()) { jj_scanpos = xsp; - if (jj_3_1544()) { + if (jj_3_1383()) { jj_scanpos = xsp; - if (jj_3_1545()) { + if (jj_3_1384()) { jj_scanpos = xsp; - if (jj_3_1546()) { + if (jj_3_1385()) { jj_scanpos = xsp; - if (jj_3_1547()) { + if (jj_3_1386()) { jj_scanpos = xsp; - if (jj_3_1548()) { + if (jj_3_1387()) { jj_scanpos = xsp; - if (jj_3_1549()) { + if (jj_3_1388()) { jj_scanpos = xsp; - if (jj_3_1550()) { + if (jj_3_1389()) { jj_scanpos = xsp; - if (jj_3_1551()) { + if (jj_3_1390()) { jj_scanpos = xsp; - if (jj_3_1552()) { + if (jj_3_1391()) { jj_scanpos = xsp; - if (jj_3_1553()) { + if (jj_3_1392()) { jj_scanpos = xsp; - if (jj_3_1554()) { + if (jj_3_1393()) { + jj_scanpos = xsp; + if (jj_3_1394()) { jj_scanpos = xsp; - if (jj_3_1555()) { + if (jj_3_1395()) { jj_scanpos = xsp; - if (jj_3_1556()) { + if (jj_3_1396()) { jj_scanpos = xsp; - if (jj_3_1557()) { + if (jj_3_1397()) { jj_scanpos = xsp; - if (jj_3_1558()) { + if (jj_3_1398()) { jj_scanpos = xsp; - if (jj_3_1559()) { + if (jj_3_1399()) { jj_scanpos = xsp; - if (jj_3_1560()) { + if (jj_3_1400()) { jj_scanpos = xsp; - if (jj_3_1561()) { + if (jj_3_1401()) { jj_scanpos = xsp; - if (jj_3_1562()) { + if (jj_3_1402()) { jj_scanpos = xsp; - if (jj_3_1563()) { + if (jj_3_1403()) { jj_scanpos = xsp; - if (jj_3_1564()) { + if (jj_3_1404()) { jj_scanpos = xsp; - if (jj_3_1565()) { + if (jj_3_1405()) { jj_scanpos = xsp; - if (jj_3_1566()) { + if (jj_3_1406()) { jj_scanpos = xsp; - if (jj_3_1567()) { + if (jj_3_1407()) { jj_scanpos = xsp; - if (jj_3_1568()) { + if (jj_3_1408()) { jj_scanpos = xsp; - if (jj_3_1569()) { + if (jj_3_1409()) { jj_scanpos = xsp; - if (jj_3_1570()) { + if (jj_3_1410()) { jj_scanpos = xsp; - if (jj_3_1571()) { + if (jj_3_1411()) { jj_scanpos = xsp; - if (jj_3_1572()) { + if (jj_3_1412()) { jj_scanpos = xsp; - if (jj_3_1573()) { + if (jj_3_1413()) { jj_scanpos = xsp; - if (jj_3_1574()) { + if (jj_3_1414()) { jj_scanpos = xsp; - if (jj_3_1575()) { + if (jj_3_1415()) { jj_scanpos = xsp; - if (jj_3_1576()) { + if (jj_3_1416()) { jj_scanpos = xsp; - if (jj_3_1577()) { + if (jj_3_1417()) { jj_scanpos = xsp; - if (jj_3_1578()) { + if (jj_3_1418()) { jj_scanpos = xsp; - if (jj_3_1579()) { + if (jj_3_1419()) { jj_scanpos = xsp; - if (jj_3_1580()) { + if (jj_3_1420()) { jj_scanpos = xsp; - if (jj_3_1581()) { + if (jj_3_1421()) { jj_scanpos = xsp; - if (jj_3_1582()) { + if (jj_3_1422()) { jj_scanpos = xsp; - if (jj_3_1583()) { + if (jj_3_1423()) { jj_scanpos = xsp; - if (jj_3_1584()) { + if (jj_3_1424()) { jj_scanpos = xsp; - if (jj_3_1585()) { + if (jj_3_1425()) { jj_scanpos = xsp; - if (jj_3_1586()) { + if (jj_3_1426()) { jj_scanpos = xsp; - if (jj_3_1587()) { + if (jj_3_1427()) { jj_scanpos = xsp; - if (jj_3_1588()) { + if (jj_3_1428()) { jj_scanpos = xsp; - if (jj_3_1589()) { + if (jj_3_1429()) { jj_scanpos = xsp; - if (jj_3_1590()) { + if (jj_3_1430()) { jj_scanpos = xsp; - if (jj_3_1591()) { + if (jj_3_1431()) { jj_scanpos = xsp; - if (jj_3_1592()) { + if (jj_3_1432()) { jj_scanpos = xsp; - if (jj_3_1593()) { + if (jj_3_1433()) { jj_scanpos = xsp; - if (jj_3_1594()) { + if (jj_3_1434()) { jj_scanpos = xsp; - if (jj_3_1595()) { + if (jj_3_1435()) { jj_scanpos = xsp; - if (jj_3_1596()) { + if (jj_3_1436()) { jj_scanpos = xsp; - if (jj_3_1597()) { + if (jj_3_1437()) { jj_scanpos = xsp; - if (jj_3_1598()) { + if (jj_3_1438()) { jj_scanpos = xsp; - if (jj_3_1599()) { + if (jj_3_1439()) { jj_scanpos = xsp; - if (jj_3_1600()) { + if (jj_3_1440()) { jj_scanpos = xsp; - if (jj_3_1601()) { + if (jj_3_1441()) { jj_scanpos = xsp; - if (jj_3_1602()) { + if (jj_3_1442()) { jj_scanpos = xsp; - if (jj_3_1603()) { + if (jj_3_1443()) { jj_scanpos = xsp; - if (jj_3_1604()) { + if (jj_3_1444()) { jj_scanpos = xsp; - if (jj_3_1605()) { + if (jj_3_1445()) { jj_scanpos = xsp; - if (jj_3_1606()) { + if (jj_3_1446()) { jj_scanpos = xsp; - if (jj_3_1607()) { + if (jj_3_1447()) { jj_scanpos = xsp; - if (jj_3_1608()) { + if (jj_3_1448()) { jj_scanpos = xsp; - if (jj_3_1609()) { + if (jj_3_1449()) { jj_scanpos = xsp; - if (jj_3_1610()) { + if (jj_3_1450()) { jj_scanpos = xsp; - if (jj_3_1611()) { + if (jj_3_1451()) { jj_scanpos = xsp; - if (jj_3_1612()) { + if (jj_3_1452()) { jj_scanpos = xsp; - if (jj_3_1613()) { + if (jj_3_1453()) { jj_scanpos = xsp; - if (jj_3_1614()) { + if (jj_3_1454()) { jj_scanpos = xsp; - if (jj_3_1615()) { + if (jj_3_1455()) { jj_scanpos = xsp; - if (jj_3_1616()) { + if (jj_3_1456()) { jj_scanpos = xsp; - if (jj_3_1617()) { + if (jj_3_1457()) { jj_scanpos = xsp; - if (jj_3_1618()) { + if (jj_3_1458()) { jj_scanpos = xsp; - if (jj_3_1619()) { + if (jj_3_1459()) { jj_scanpos = xsp; - if (jj_3_1620()) { + if (jj_3_1460()) { jj_scanpos = xsp; - if (jj_3_1621()) { + if (jj_3_1461()) { jj_scanpos = xsp; - if (jj_3_1622()) { + if (jj_3_1462()) { jj_scanpos = xsp; - if (jj_3_1623()) { + if (jj_3_1463()) { jj_scanpos = xsp; - if (jj_3_1624()) { + if (jj_3_1464()) { jj_scanpos = xsp; - if (jj_3_1625()) { + if (jj_3_1465()) { jj_scanpos = xsp; - if (jj_3_1626()) { + if (jj_3_1466()) { jj_scanpos = xsp; - if (jj_3_1627()) { + if (jj_3_1467()) { jj_scanpos = xsp; - if (jj_3_1628()) { + if (jj_3_1468()) { jj_scanpos = xsp; - if (jj_3_1629()) { + if (jj_3_1469()) { jj_scanpos = xsp; - if (jj_3_1630()) { + if (jj_3_1470()) { jj_scanpos = xsp; - if (jj_3_1631()) { + if (jj_3_1471()) { jj_scanpos = xsp; - if (jj_3_1632()) { + if (jj_3_1472()) { jj_scanpos = xsp; - if (jj_3_1633()) { + if (jj_3_1473()) { jj_scanpos = xsp; - if (jj_3_1634()) { + if (jj_3_1474()) { jj_scanpos = xsp; - if (jj_3_1635()) { + if (jj_3_1475()) { jj_scanpos = xsp; - if (jj_3_1636()) { + if (jj_3_1476()) { jj_scanpos = xsp; - if (jj_3_1637()) { + if (jj_3_1477()) { jj_scanpos = xsp; - if (jj_3_1638()) { + if (jj_3_1478()) { jj_scanpos = xsp; - if (jj_3_1639()) { + if (jj_3_1479()) { jj_scanpos = xsp; - if (jj_3_1640()) { + if (jj_3_1480()) { jj_scanpos = xsp; - if (jj_3_1641()) { + if (jj_3_1481()) { jj_scanpos = xsp; - if (jj_3_1642()) { + if (jj_3_1482()) { jj_scanpos = xsp; - if (jj_3_1643()) { + if (jj_3_1483()) { jj_scanpos = xsp; - if (jj_3_1644()) { + if (jj_3_1484()) { jj_scanpos = xsp; - if (jj_3_1645()) { + if (jj_3_1485()) { jj_scanpos = xsp; - if (jj_3_1646()) { + if (jj_3_1486()) { jj_scanpos = xsp; - if (jj_3_1647()) { + if (jj_3_1487()) { jj_scanpos = xsp; - if (jj_3_1648()) { + if (jj_3_1488()) { jj_scanpos = xsp; - if (jj_3_1649()) { + if (jj_3_1489()) { jj_scanpos = xsp; - if (jj_3_1650()) { + if (jj_3_1490()) { jj_scanpos = xsp; - if (jj_3_1651()) { + if (jj_3_1491()) { jj_scanpos = xsp; - if (jj_3_1652()) { + if (jj_3_1492()) { jj_scanpos = xsp; - if (jj_3_1653()) { + if (jj_3_1493()) { jj_scanpos = xsp; - if (jj_3_1654()) { + if (jj_3_1494()) { jj_scanpos = xsp; - if (jj_3_1655()) { + if (jj_3_1495()) { jj_scanpos = xsp; - if (jj_3_1656()) { + if (jj_3_1496()) { jj_scanpos = xsp; - if (jj_3_1657()) { + if (jj_3_1497()) { jj_scanpos = xsp; - if (jj_3_1658()) { + if (jj_3_1498()) { jj_scanpos = xsp; - if (jj_3_1659()) { + if (jj_3_1499()) { jj_scanpos = xsp; - if (jj_3_1660()) { + if (jj_3_1500()) { jj_scanpos = xsp; - if (jj_3_1661()) { + if (jj_3_1501()) { jj_scanpos = xsp; - if (jj_3_1662()) { + if (jj_3_1502()) { jj_scanpos = xsp; - if (jj_3_1663()) { + if (jj_3_1503()) { jj_scanpos = xsp; - if (jj_3_1664()) { + if (jj_3_1504()) { jj_scanpos = xsp; - if (jj_3_1665()) { + if (jj_3_1505()) { jj_scanpos = xsp; - if (jj_3_1666()) { + if (jj_3_1506()) { jj_scanpos = xsp; - if (jj_3_1667()) { + if (jj_3_1507()) { jj_scanpos = xsp; - if (jj_3_1668()) { + if (jj_3_1508()) { jj_scanpos = xsp; - if (jj_3_1669()) { + if (jj_3_1509()) { jj_scanpos = xsp; - if (jj_3_1670()) { + if (jj_3_1510()) { jj_scanpos = xsp; - if (jj_3_1671()) { + if (jj_3_1511()) { jj_scanpos = xsp; - if (jj_3_1672()) { + if (jj_3_1512()) { jj_scanpos = xsp; - if (jj_3_1673()) { + if (jj_3_1513()) { jj_scanpos = xsp; - if (jj_3_1674()) { + if (jj_3_1514()) { jj_scanpos = xsp; - if (jj_3_1675()) { + if (jj_3_1515()) { jj_scanpos = xsp; - if (jj_3_1676()) { + if (jj_3_1516()) { jj_scanpos = xsp; - if (jj_3_1677()) { + if (jj_3_1517()) { jj_scanpos = xsp; - if (jj_3_1678()) { + if (jj_3_1518()) { jj_scanpos = xsp; - if (jj_3_1679()) { + if (jj_3_1519()) { jj_scanpos = xsp; - if (jj_3_1680()) { + if (jj_3_1520()) { jj_scanpos = xsp; - if (jj_3_1681()) { + if (jj_3_1521()) { + jj_scanpos = xsp; + if (jj_3_1522()) { + jj_scanpos = xsp; + if (jj_3_1523()) { jj_scanpos = xsp; - if (jj_3_1682()) { + if (jj_3_1524()) { jj_scanpos = xsp; - if (jj_3_1683()) { + if (jj_3_1525()) { jj_scanpos = xsp; - if (jj_3_1684()) { + if (jj_3_1526()) { jj_scanpos = xsp; - if (jj_3_1685()) { + if (jj_3_1527()) { jj_scanpos = xsp; - if (jj_3_1686()) { + if (jj_3_1528()) { jj_scanpos = xsp; - if (jj_3_1687()) { + if (jj_3_1529()) { jj_scanpos = xsp; - if (jj_3_1688()) { + if (jj_3_1530()) { jj_scanpos = xsp; - if (jj_3_1689()) { + if (jj_3_1531()) { jj_scanpos = xsp; - if (jj_3_1690()) { + if (jj_3_1532()) { jj_scanpos = xsp; - if (jj_3_1691()) { + if (jj_3_1533()) { jj_scanpos = xsp; - if (jj_3_1692()) { + if (jj_3_1534()) { jj_scanpos = xsp; - if (jj_3_1693()) { + if (jj_3_1535()) { jj_scanpos = xsp; - if (jj_3_1694()) { + if (jj_3_1536()) { jj_scanpos = xsp; - if (jj_3_1695()) { + if (jj_3_1537()) { jj_scanpos = xsp; - if (jj_3_1696()) { + if (jj_3_1538()) { jj_scanpos = xsp; - if (jj_3_1697()) { + if (jj_3_1539()) { jj_scanpos = xsp; - if (jj_3_1698()) { + if (jj_3_1540()) { jj_scanpos = xsp; - if (jj_3_1699()) { + if (jj_3_1541()) { jj_scanpos = xsp; - if (jj_3_1700()) { + if (jj_3_1542()) { jj_scanpos = xsp; - if (jj_3_1701()) { + if (jj_3_1543()) { jj_scanpos = xsp; - if (jj_3_1702()) { + if (jj_3_1544()) { jj_scanpos = xsp; - if (jj_3_1703()) { + if (jj_3_1545()) { jj_scanpos = xsp; - if (jj_3_1704()) { + if (jj_3_1546()) { jj_scanpos = xsp; - if (jj_3_1705()) { + if (jj_3_1547()) { jj_scanpos = xsp; - if (jj_3_1706()) { + if (jj_3_1548()) { jj_scanpos = xsp; - if (jj_3_1707()) { + if (jj_3_1549()) { jj_scanpos = xsp; - if (jj_3_1708()) { + if (jj_3_1550()) { jj_scanpos = xsp; - if (jj_3_1709()) { + if (jj_3_1551()) { jj_scanpos = xsp; - if (jj_3_1710()) { + if (jj_3_1552()) { jj_scanpos = xsp; - if (jj_3_1711()) { + if (jj_3_1553()) { jj_scanpos = xsp; - if (jj_3_1712()) { + if (jj_3_1554()) { jj_scanpos = xsp; - if (jj_3_1713()) return true; + if (jj_3_1555()) return true; + } + } + } } } } @@ -34597,822 +36765,464 @@ final private boolean jj_3R_330() { return false; } - final private boolean jj_3_732() { - if (jj_scan_token(NULL)) return true; - return false; - } - - final private boolean jj_3_1497() { - if (jj_scan_token(SATURDAY)) return true; - return false; - } - - final private boolean jj_3R_179() { - if (jj_3R_84()) return true; - return false; - } - - final private boolean jj_3_1496() { - if (jj_scan_token(WEDNESDAY)) return true; - return false; - } - - final private boolean jj_3_1495() { - if (jj_scan_token(YEAR)) return true; - return false; - } - - final private boolean jj_3_1494() { - if (jj_scan_token(WINDOW)) return true; - return false; - } - - final private boolean jj_3_1493() { - if (jj_scan_token(VERSIONING)) return true; - return false; - } - - final private boolean jj_3_1492() { - if (jj_scan_token(VARYING)) return true; - return false; - } - - final private boolean jj_3_1491() { - if (jj_scan_token(VALUE_OF)) return true; - return false; - } - - final private boolean jj_3_1490() { - if (jj_scan_token(UPPER)) return true; - return false; - } - - final private boolean jj_3_1489() { - if (jj_scan_token(UNIQUE)) return true; - return false; - } - - final private boolean jj_3_731() { - if (jj_scan_token(NOT)) return true; - if (jj_scan_token(NULL)) return true; - return false; - } - - final private boolean jj_3R_280() { - if (jj_3R_386()) return true; - return false; - } - - final private boolean jj_3_1488() { - if (jj_scan_token(TRIM_ARRAY)) return true; - return false; - } - - final private boolean jj_3_1487() { - if (jj_scan_token(TREAT)) return true; - return false; - } - - final private boolean jj_3_730() { - if (jj_scan_token(NULL)) return true; - return false; - } - - final private boolean jj_3_1486() { - if (jj_scan_token(TRANSLATE)) return true; - return false; - } - - final private boolean jj_3_285() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_179()) return true; - return false; - } - - final private boolean jj_3_1485() { - if (jj_scan_token(TIMEZONE_HOUR)) return true; - return false; - } - - final private boolean jj_3_1484() { - if (jj_scan_token(TABLESAMPLE)) return true; - return false; - } - - final private boolean jj_3_1483() { - if (jj_scan_token(SYSTEM)) return true; - return false; - } - - final private boolean jj_3_1482() { - if (jj_scan_token(SUBSTRING_REGEX)) return true; - return false; - } - - final private boolean jj_3_1481() { - if (jj_scan_token(SUBMULTISET)) return true; - return false; - } - - final private boolean jj_3_1480() { - if (jj_scan_token(STDDEV_POP)) return true; - return false; - } - - final private boolean jj_3R_142() { - if (jj_scan_token(WINDOW)) return true; - if (jj_3R_179()) return true; - return false; - } - - final private boolean jj_3_1479() { - if (jj_scan_token(SQRT)) return true; - return false; - } - - final private boolean jj_3_1478() { - if (jj_scan_token(SQLEXCEPTION)) return true; - return false; - } - - final private boolean jj_3R_343() { - if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} - return false; - } - - final private boolean jj_3_1477() { - if (jj_scan_token(SPECIFIC)) return true; - return false; - } - - final private boolean jj_3_1476() { - if (jj_scan_token(SIMILAR)) return true; - return false; - } - - final private boolean jj_3_729() { - if (jj_scan_token(ARRAY)) return true; - return false; - } - - final private boolean jj_3_1475() { - if (jj_scan_token(SENSITIVE)) return true; - return false; - } - - final private boolean jj_3_1474() { - if (jj_scan_token(SEARCH)) return true; + final private boolean jj_3_695() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_257()) return true; return false; } - final private boolean jj_3_728() { - if (jj_scan_token(MULTISET)) return true; + final private boolean jj_3_298() { + if (jj_scan_token(BETWEEN)) return true; + if (jj_3R_185()) return true; return false; } - final private boolean jj_3_1473() { - if (jj_scan_token(SAVEPOINT)) return true; + final private boolean jj_3_693() { + if (jj_scan_token(ANY)) return true; return false; } - final private boolean jj_3_1472() { - if (jj_scan_token(ROWS)) return true; + final private boolean jj_3_689() { + if (jj_scan_token(DECIMAL)) return true; return false; } - final private boolean jj_3_1471() { - if (jj_scan_token(REVOKE)) return true; + final private boolean jj_3_1336() { + if (jj_scan_token(SUNDAY)) return true; return false; } - final private boolean jj_3_1470() { - if (jj_scan_token(RESULT)) return true; + final private boolean jj_3_297() { + if (jj_scan_token(RANGE)) return true; return false; } - final private boolean jj_3R_268() { + final private boolean jj_3_692() { Token xsp; xsp = jj_scanpos; - if (jj_3_728()) { + if (jj_3_689()) { jj_scanpos = xsp; - if (jj_3_729()) return true; + if (jj_3_690()) { + jj_scanpos = xsp; + if (jj_3_691()) return true; + } } return false; } - final private boolean jj_3R_141() { - if (jj_scan_token(HAVING)) return true; - if (jj_3R_81()) return true; - return false; - } - - final private boolean jj_3_1469() { - if (jj_scan_token(REGR_SYY)) return true; - return false; - } - - final private boolean jj_3R_333() { - if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} - return false; - } - - final private boolean jj_3_1468() { - if (jj_scan_token(REGR_SLOPE)) return true; - return false; - } - - final private boolean jj_3_1467() { - if (jj_scan_token(REGR_COUNT)) return true; - return false; - } - - final private boolean jj_3_1466() { - if (jj_scan_token(REFERENCING)) return true; - return false; - } - - final private boolean jj_3_1465() { - if (jj_scan_token(RECURSIVE)) return true; - return false; - } - - final private boolean jj_3_1464() { - if (jj_scan_token(RANK)) return true; - return false; - } - - final private boolean jj_3_1463() { - if (jj_scan_token(PROCEDURE)) return true; - return false; - } - - final private boolean jj_3_1462() { - if (jj_scan_token(PRECISION)) return true; - return false; - } - - final private boolean jj_3_284() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; - return false; - } - - final private boolean jj_3_1461() { - if (jj_scan_token(POSITION_REGEX)) return true; - return false; - } - - final private boolean jj_3_1460() { - if (jj_scan_token(PERMUTE)) return true; - return false; - } - - final private boolean jj_3_1459() { - if (jj_scan_token(PERCENTILE_DISC)) return true; - return false; - } - - final private boolean jj_3_1458() { - if (jj_scan_token(PER)) return true; + final private boolean jj_3_1335() { + if (jj_scan_token(THURSDAY)) return true; return false; } - final private boolean jj_3R_358() { + final private boolean jj_3_1334() { + if (jj_scan_token(MONDAY)) return true; return false; } - final private boolean jj_3_1457() { - if (jj_scan_token(OVERLAY)) return true; + final private boolean jj_3_296() { + if (jj_scan_token(ROWS)) return true; return false; } - final private boolean jj_3_1456() { - if (jj_scan_token(OUT)) return true; + final private boolean jj_3_1333() { + if (jj_scan_token(WITHIN)) return true; return false; } - final private boolean jj_3_1455() { - if (jj_scan_token(ONE)) return true; + final private boolean jj_3_1332() { + if (jj_scan_token(WHENEVER)) return true; return false; } - final private boolean jj_3R_382() { - if (jj_3R_78()) return true; + final private boolean jj_3R_280() { Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_284()) { jj_scanpos = xsp; break; } + xsp = jj_scanpos; + if (jj_3_692()) { + jj_scanpos = xsp; + if (jj_3_693()) return true; } + xsp = jj_scanpos; + if (jj_3_695()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1454() { - if (jj_scan_token(OF)) return true; - return false; - } - - final private boolean jj_3_1453() { - if (jj_scan_token(NUMERIC)) return true; - return false; - } - - final private boolean jj_3_1452() { - if (jj_scan_token(NTH_VALUE)) return true; - return false; - } - - final private boolean jj_3_1451() { - if (jj_scan_token(NO)) return true; - return false; - } - - final private boolean jj_3_1450() { - if (jj_scan_token(NCLOB)) return true; - return false; - } - - final private boolean jj_3_1449() { - if (jj_scan_token(MULTISET)) return true; - return false; - } - - final private boolean jj_3_695() { - if (jj_scan_token(DOUBLE)) return true; - return false; - } - - final private boolean jj_3_697() { - if (jj_scan_token(FLOAT)) return true; - return false; - } - - final private boolean jj_3_1448() { - if (jj_scan_token(MODIFIES)) return true; - return false; - } - - final private boolean jj_3_689() { - if (jj_scan_token(SMALLINT)) return true; - return false; - } - - final private boolean jj_3_1447() { - if (jj_scan_token(MIN)) return true; + final private boolean jj_3_1331() { + if (jj_scan_token(VAR_POP)) return true; return false; } - final private boolean jj_3_685() { + final private boolean jj_3_1330() { if (jj_scan_token(VARBINARY)) return true; return false; } - final private boolean jj_3_691() { - if (jj_scan_token(BIGINT)) return true; - return false; - } - - final private boolean jj_3_727() { - if (jj_scan_token(SQL_INTERVAL_SECOND)) return true; - return false; - } - - final private boolean jj_3_1446() { - if (jj_scan_token(MEASURES)) return true; - return false; - } - - final private boolean jj_3_687() { - if (jj_scan_token(TINYINT)) return true; - return false; - } - - final private boolean jj_3_726() { - if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; - return false; - } - - final private boolean jj_3_1445() { - if (jj_scan_token(MATCH_NUMBER)) return true; - return false; - } - - final private boolean jj_3_693() { - if (jj_scan_token(REAL)) return true; - return false; - } - - final private boolean jj_3_725() { - if (jj_scan_token(SQL_INTERVAL_MINUTE)) return true; - return false; - } - - final private boolean jj_3_1444() { - if (jj_scan_token(LOWER)) return true; - return false; - } - - final private boolean jj_3_724() { - if (jj_scan_token(SQL_INTERVAL_HOUR_TO_SECOND)) return true; - return false; - } - - final private boolean jj_3R_168() { - if (jj_3R_360()) return true; - return false; - } - - final private boolean jj_3_1443() { - if (jj_scan_token(LIKE_REGEX)) return true; - return false; - } - - final private boolean jj_3_681() { - if (jj_scan_token(INTEGER)) return true; - return false; - } - - final private boolean jj_3_683() { - if (jj_scan_token(BINARY)) return true; + final private boolean jj_3_1329() { + if (jj_scan_token(UPSERT)) return true; return false; } - final private boolean jj_3_723() { - if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; + final private boolean jj_3_300() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_296()) { + jj_scanpos = xsp; + if (jj_3_297()) return true; + } + xsp = jj_scanpos; + if (jj_3_298()) { + jj_scanpos = xsp; + if (jj_3_299()) return true; + } return false; } - final private boolean jj_3_1442() { - if (jj_scan_token(LAST_VALUE)) return true; + final private boolean jj_3_1328() { + if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_679() { - if (jj_scan_token(BOOLEAN)) return true; + final private boolean jj_3_1327() { + if (jj_scan_token(TRY_CAST)) return true; return false; } - final private boolean jj_3_722() { - if (jj_scan_token(SQL_INTERVAL_HOUR)) return true; + final private boolean jj_3_1326() { + if (jj_scan_token(TRIM)) return true; return false; } - final private boolean jj_3R_227() { - if (jj_3R_382()) return true; + final private boolean jj_3_1325() { + if (jj_scan_token(TRANSLATION)) return true; return false; } - final private boolean jj_3_1441() { - if (jj_scan_token(LAG)) return true; + final private boolean jj_3_295() { + if (jj_3R_71()) return true; return false; } - final private boolean jj_3_673() { - if (jj_scan_token(TIMESTAMP)) return true; + final private boolean jj_3_1324() { + if (jj_scan_token(TINYINT)) return true; return false; } - final private boolean jj_3_677() { - if (jj_scan_token(NUMERIC)) return true; + final private boolean jj_3_1323() { + if (jj_scan_token(TIMESTAMP)) return true; return false; } - final private boolean jj_3_721() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_SECOND)) return true; + final private boolean jj_3_1322() { + if (jj_scan_token(SYSTEM_USER)) return true; return false; } - final private boolean jj_3_1440() { - if (jj_scan_token(JSON_OBJECTAGG)) return true; + final private boolean jj_3_1321() { + if (jj_scan_token(SUM)) return true; return false; } - final private boolean jj_3_675() { - if (jj_scan_token(DECIMAL)) return true; + final private boolean jj_3R_283() { return false; } - final private boolean jj_3_720() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; + final private boolean jj_3_1320() { + if (jj_scan_token(SUBSTRING)) return true; return false; } - final private boolean jj_3_1439() { - if (jj_scan_token(JSON_ARRAYAGG)) return true; + final private boolean jj_3_1319() { + if (jj_scan_token(STREAM)) return true; return false; } - final private boolean jj_3_719() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_HOUR)) return true; + final private boolean jj_3_294() { + if (jj_scan_token(PARTITION)) return true; + if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3_1438() { - if (jj_scan_token(INTEGER)) return true; + final private boolean jj_3_688() { + if (jj_scan_token(VARBINARY)) return true; return false; } - final private boolean jj_3_718() { - if (jj_scan_token(SQL_INTERVAL_DAY)) return true; + final private boolean jj_3_1318() { + if (jj_scan_token(STATIC)) return true; return false; } - final private boolean jj_3_1437() { - if (jj_scan_token(INOUT)) return true; + final private boolean jj_3_686() { + if (jj_scan_token(VARYING)) return true; return false; } - final private boolean jj_3_717() { - if (jj_scan_token(SQL_INTERVAL_MONTH)) return true; + final private boolean jj_3_1317() { + if (jj_scan_token(SQLWARNING)) return true; return false; } - final private boolean jj_3_1436() { - if (jj_scan_token(IMPORT)) return true; + final private boolean jj_3R_403() { return false; } - final private boolean jj_3_667() { - if (jj_scan_token(VARCHAR)) return true; + final private boolean jj_3_1316() { + if (jj_scan_token(SQL)) return true; return false; } - final private boolean jj_3_716() { - if (jj_scan_token(SQL_INTERVAL_YEAR_TO_MONTH)) return true; + final private boolean jj_3_1315() { + if (jj_scan_token(SMALLINT)) return true; return false; } - final private boolean jj_3_1435() { - if (jj_scan_token(HOLD)) return true; + final private boolean jj_3_293() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_671() { - if (jj_scan_token(TIME)) return true; + final private boolean jj_3_1314() { + if (jj_scan_token(SHOW)) return true; return false; } - final private boolean jj_3_696() { - if (jj_scan_token(SQL_FLOAT)) return true; + final private boolean jj_3_1313() { + if (jj_scan_token(SEEK)) return true; return false; } - final private boolean jj_3_715() { - if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; + final private boolean jj_3_1312() { + if (jj_scan_token(SCROLL)) return true; return false; } - final private boolean jj_3_1434() { - if (jj_scan_token(GRANT)) return true; + final private boolean jj_3_687() { + if (jj_scan_token(BINARY)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_686()) { + jj_scanpos = xsp; + if (jj_3R_283()) return true; + } return false; } - final private boolean jj_3_669() { - if (jj_scan_token(DATE)) return true; + final private boolean jj_3_1311() { + if (jj_scan_token(SAFE_ORDINAL)) return true; return false; } - final private boolean jj_3_694() { - if (jj_scan_token(SQL_DOUBLE)) return true; + final private boolean jj_3_1310() { + if (jj_scan_token(RUNNING)) return true; return false; } - final private boolean jj_3_714() { + final private boolean jj_3R_327() { + if (jj_scan_token(LPAREN)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_696()) { + if (jj_3_293()) { jj_scanpos = xsp; - if (jj_3_697()) return true; + if (jj_3R_403()) return true; } return false; } - final private boolean jj_3_1433() { - if (jj_scan_token(FUSION)) return true; + final private boolean jj_3_1309() { + if (jj_scan_token(ROLLUP)) return true; return false; } - final private boolean jj_3_692() { - if (jj_scan_token(SQL_REAL)) return true; + final private boolean jj_3_1308() { + if (jj_scan_token(RETURNS)) return true; return false; } - final private boolean jj_3_713() { + final private boolean jj_3R_279() { Token xsp; xsp = jj_scanpos; - if (jj_3_694()) { + if (jj_3_687()) { jj_scanpos = xsp; - if (jj_3_695()) return true; + if (jj_3_688()) return true; } + if (jj_3R_256()) return true; return false; } - final private boolean jj_3_1432() { - if (jj_scan_token(FRAME_ROW)) return true; + final private boolean jj_3_1307() { + if (jj_scan_token(RESET)) return true; return false; } - final private boolean jj_3_665() { - if (jj_scan_token(CHAR)) return true; + final private boolean jj_3_1306() { + if (jj_scan_token(REGR_SXY)) return true; return false; } - final private boolean jj_3_690() { - if (jj_scan_token(SQL_BIGINT)) return true; + final private boolean jj_3_1305() { + if (jj_scan_token(REGR_R2)) return true; return false; } - final private boolean jj_3_712() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_692()) { - jj_scanpos = xsp; - if (jj_3_693()) return true; - } + final private boolean jj_3_1304() { + if (jj_scan_token(REGR_AVGY)) return true; return false; } - final private boolean jj_3_1431() { - if (jj_scan_token(FLOAT)) return true; + final private boolean jj_3_1303() { + if (jj_scan_token(REFERENCES)) return true; return false; } - final private boolean jj_3_688() { - if (jj_scan_token(SQL_SMALLINT)) return true; + final private boolean jj_3_1302() { + if (jj_scan_token(REAL)) return true; return false; } - final private boolean jj_3_711() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_690()) { - jj_scanpos = xsp; - if (jj_3_691()) return true; - } + final private boolean jj_3_1301() { + if (jj_scan_token(RANGE)) return true; return false; } - final private boolean jj_3_1430() { - if (jj_scan_token(EXTRACT)) return true; + final private boolean jj_3_1300() { + if (jj_scan_token(PREV)) return true; return false; } - final private boolean jj_3_686() { - if (jj_scan_token(SQL_TINYINT)) return true; + final private boolean jj_3_1299() { + if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3_710() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_688()) { - jj_scanpos = xsp; - if (jj_3_689()) return true; - } + final private boolean jj_3_1298() { + if (jj_scan_token(POSITION)) return true; return false; } - final private boolean jj_3_1429() { - if (jj_scan_token(EXP)) return true; + final private boolean jj_3_675() { + if (jj_scan_token(INT)) return true; return false; } - final private boolean jj_3_684() { - if (jj_scan_token(SQL_VARBINARY)) return true; + final private boolean jj_3_1297() { + if (jj_scan_token(PERIOD)) return true; return false; } - final private boolean jj_3_709() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_686()) { - jj_scanpos = xsp; - if (jj_3_687()) return true; - } + final private boolean jj_3_676() { + if (jj_scan_token(PRECISION)) return true; return false; } - final private boolean jj_3_1428() { - if (jj_scan_token(EVERY)) return true; + final private boolean jj_3_685() { + if (jj_scan_token(FLOAT)) return true; return false; } - final private boolean jj_3_283() { - if (jj_3R_78()) return true; + final private boolean jj_3_1296() { + if (jj_scan_token(PERCENTILE_CONT)) return true; return false; } - final private boolean jj_3_682() { - if (jj_scan_token(SQL_BINARY)) return true; + final private boolean jj_3_1295() { + if (jj_scan_token(PATTERN)) return true; return false; } - final private boolean jj_3_708() { + final private boolean jj_3_1294() { + if (jj_scan_token(OVERLAPS)) return true; + return false; + } + + final private boolean jj_3_684() { + if (jj_scan_token(DOUBLE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_684()) { - jj_scanpos = xsp; - if (jj_3_685()) return true; - } + if (jj_3_676()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1427() { - if (jj_scan_token(END_PARTITION)) return true; + final private boolean jj_3_1293() { + if (jj_scan_token(ORDINAL)) return true; return false; } - final private boolean jj_3_680() { - if (jj_scan_token(SQL_INTEGER)) return true; + final private boolean jj_3_1292() { + if (jj_scan_token(ONE)) return true; return false; } - final private boolean jj_3_707() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_682()) { - jj_scanpos = xsp; - if (jj_3_683()) return true; - } + final private boolean jj_3_683() { + if (jj_scan_token(REAL)) return true; return false; } - final private boolean jj_3_1426() { - if (jj_scan_token(END)) return true; + final private boolean jj_3_1291() { + if (jj_scan_token(OF)) return true; return false; } - final private boolean jj_3_678() { - if (jj_scan_token(SQL_BOOLEAN)) return true; + final private boolean jj_3_1290() { + if (jj_scan_token(NUMERIC)) return true; return false; } - final private boolean jj_3_706() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_680()) { - jj_scanpos = xsp; - if (jj_3_681()) return true; - } + final private boolean jj_3_682() { + if (jj_scan_token(BIGINT)) return true; return false; } - final private boolean jj_3_1425() { - if (jj_scan_token(EACH)) return true; + final private boolean jj_3R_184() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_676() { - if (jj_scan_token(SQL_NUMERIC)) return true; + final private boolean jj_3_1289() { + if (jj_scan_token(NTH_VALUE)) return true; return false; } - final private boolean jj_3_705() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_678()) { - jj_scanpos = xsp; - if (jj_3_679()) return true; - } + final private boolean jj_3_1288() { + if (jj_scan_token(NO)) return true; return false; } - final private boolean jj_3_1424() { - if (jj_scan_token(DISCONNECT)) return true; + final private boolean jj_3_681() { + if (jj_scan_token(SMALLINT)) return true; return false; } - final private boolean jj_3_282() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_1287() { + if (jj_scan_token(NCLOB)) return true; + return false; + } + + final private boolean jj_3_1286() { + if (jj_scan_token(MULTISET)) return true; return false; } final private boolean jj_3_674() { - if (jj_scan_token(SQL_DECIMAL)) return true; + if (jj_scan_token(INTEGER)) return true; return false; } - final private boolean jj_3_704() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_676()) { - jj_scanpos = xsp; - if (jj_3_677()) return true; - } + final private boolean jj_3_680() { + if (jj_scan_token(TINYINT)) return true; return false; } - final private boolean jj_3_1423() { - if (jj_scan_token(DESCRIBE)) return true; + final private boolean jj_3_1285() { + if (jj_scan_token(MODIFIES)) return true; return false; } - final private boolean jj_3_672() { - if (jj_scan_token(SQL_TIMESTAMP)) return true; + final private boolean jj_3_1284() { + if (jj_scan_token(MIN)) return true; return false; } - final private boolean jj_3_703() { + final private boolean jj_3_679() { Token xsp; xsp = jj_scanpos; if (jj_3_674()) { @@ -35422,1613 +37232,1648 @@ final private boolean jj_3_703() { return false; } - final private boolean jj_3_1422() { - if (jj_scan_token(DEFINE)) return true; + final private boolean jj_3_1283() { + if (jj_scan_token(MEASURES)) return true; return false; } - final private boolean jj_3_670() { - if (jj_scan_token(SQL_TIME)) return true; + final private boolean jj_3_1282() { + if (jj_scan_token(MATCH_NUMBER)) return true; return false; } - final private boolean jj_3_702() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_672()) { - jj_scanpos = xsp; - if (jj_3_673()) return true; - } + final private boolean jj_3_678() { + if (jj_scan_token(BOOLEAN)) return true; return false; } - final private boolean jj_3_1421() { - if (jj_scan_token(DEC)) return true; + final private boolean jj_3_1281() { + if (jj_scan_token(LOWER)) return true; return false; } - final private boolean jj_3_668() { - if (jj_scan_token(SQL_DATE)) return true; + final private boolean jj_3_1280() { + if (jj_scan_token(LIKE_REGEX)) return true; return false; } - final private boolean jj_3_701() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_670()) { - jj_scanpos = xsp; - if (jj_3_671()) return true; - } + final private boolean jj_3_1279() { + if (jj_scan_token(LAST_VALUE)) return true; return false; } - final private boolean jj_3_1420() { - if (jj_scan_token(DATETIME)) return true; + final private boolean jj_3_292() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_184()) return true; return false; } - final private boolean jj_3_659() { - if (jj_scan_token(NUMERIC)) return true; + final private boolean jj_3_1278() { + if (jj_scan_token(LAG)) return true; return false; } - final private boolean jj_3_666() { - if (jj_scan_token(SQL_VARCHAR)) return true; + final private boolean jj_3_1277() { + if (jj_scan_token(JSON_QUERY)) return true; return false; } - final private boolean jj_3_700() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_668()) { - jj_scanpos = xsp; - if (jj_3_669()) return true; - } + final private boolean jj_3_1276() { + if (jj_scan_token(JSON_EXISTS)) return true; return false; } - final private boolean jj_3_1419() { - if (jj_scan_token(CURSOR)) return true; + final private boolean jj_3_1275() { + if (jj_scan_token(INTERSECTION)) return true; return false; } - final private boolean jj_3_664() { - if (jj_scan_token(SQL_CHAR)) return true; + final private boolean jj_3_1274() { + if (jj_scan_token(INSENSITIVE)) return true; return false; } - final private boolean jj_3_699() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_666()) { - jj_scanpos = xsp; - if (jj_3_667()) return true; - } + final private boolean jj_3_677() { + if (jj_scan_token(GEOMETRY)) return true; return false; } - final private boolean jj_3_1418() { - if (jj_scan_token(CURRENT_ROLE)) return true; + final private boolean jj_3_1273() { + if (jj_scan_token(INDICATOR)) return true; return false; } - final private boolean jj_3_281() { - if (jj_scan_token(CUBE)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3R_147() { + if (jj_scan_token(WINDOW)) return true; + if (jj_3R_184()) return true; return false; } - final private boolean jj_3_698() { + final private boolean jj_3_1272() { + if (jj_scan_token(HOUR)) return true; + return false; + } + + final private boolean jj_3_1271() { + if (jj_scan_token(GROUPING)) return true; + return false; + } + + final private boolean jj_3_1270() { + if (jj_scan_token(GET)) return true; + return false; + } + + final private boolean jj_3R_278() { Token xsp; xsp = jj_scanpos; - if (jj_3_664()) { + if (jj_3_677()) { + jj_scanpos = xsp; + if (jj_3_678()) { + jj_scanpos = xsp; + if (jj_3_679()) { + jj_scanpos = xsp; + if (jj_3_680()) { + jj_scanpos = xsp; + if (jj_3_681()) { + jj_scanpos = xsp; + if (jj_3_682()) { + jj_scanpos = xsp; + if (jj_3_683()) { jj_scanpos = xsp; - if (jj_3_665()) return true; + if (jj_3_684()) { + jj_scanpos = xsp; + if (jj_3_685()) return true; + } + } + } + } + } + } + } } return false; } - final private boolean jj_3_1417() { - if (jj_scan_token(CURRENT_CATALOG)) return true; + final private boolean jj_3_1269() { + if (jj_scan_token(FREE)) return true; return false; } - final private boolean jj_3_1416() { - if (jj_scan_token(CUBE)) return true; + final private boolean jj_3_1268() { + if (jj_scan_token(FLOOR)) return true; return false; } - final private boolean jj_3_1415() { - if (jj_scan_token(COUNT)) return true; + final private boolean jj_3_1267() { + if (jj_scan_token(FILTER)) return true; return false; } - final private boolean jj_3_1414() { - if (jj_scan_token(CONVERT)) return true; + final private boolean jj_3_1266() { + if (jj_scan_token(EXTEND)) return true; return false; } - final private boolean jj_3_1413() { - if (jj_scan_token(CONDITION)) return true; + final private boolean jj_3_1265() { + if (jj_scan_token(EXEC)) return true; return false; } - final private boolean jj_3_1412() { - if (jj_scan_token(COLLATE)) return true; + final private boolean jj_3_1264() { + if (jj_scan_token(EQUALS)) return true; return false; } - final private boolean jj_3_280() { - if (jj_scan_token(ROLLUP)) return true; - if (jj_scan_token(LPAREN)) return true; + final private boolean jj_3_1263() { + if (jj_scan_token(END_EXEC)) return true; return false; } - final private boolean jj_3_658() { - if (jj_scan_token(DEC)) return true; + final private boolean jj_3R_146() { + if (jj_scan_token(HAVING)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_1411() { - if (jj_scan_token(CLOB)) return true; + final private boolean jj_3_1262() { + if (jj_scan_token(ELEMENT)) return true; return false; } - final private boolean jj_3_662() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_251()) return true; + final private boolean jj_3_1261() { + if (jj_scan_token(DOUBLE)) return true; return false; } - final private boolean jj_3_1410() { - if (jj_scan_token(CHAR_LENGTH)) return true; + final private boolean jj_3_1260() { + if (jj_scan_token(DETERMINISTIC)) return true; return false; } - final private boolean jj_3_1409() { - if (jj_scan_token(CHAR)) return true; + final private boolean jj_3_1259() { + if (jj_scan_token(DENSE_RANK)) return true; return false; } - final private boolean jj_3_1408() { - if (jj_scan_token(CASCADED)) return true; + final private boolean jj_3_673() { + if (jj_3R_282()) return true; return false; } - final private boolean jj_3_1407() { - if (jj_scan_token(CALL)) return true; + final private boolean jj_3_1258() { + if (jj_scan_token(DECIMAL)) return true; return false; } - final private boolean jj_3R_178() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_279()) { - jj_scanpos = xsp; - if (jj_3_280()) { - jj_scanpos = xsp; - if (jj_3_281()) { - jj_scanpos = xsp; - if (jj_3_282()) { - jj_scanpos = xsp; - if (jj_3_283()) return true; - } - } - } - } + final private boolean jj_3_1257() { + if (jj_scan_token(DAY)) return true; return false; } - final private boolean jj_3_1406() { - if (jj_scan_token(BIT)) return true; + final private boolean jj_3_672() { + if (jj_3R_281()) return true; return false; } - final private boolean jj_3_279() { - if (jj_scan_token(GROUPING)) return true; - if (jj_scan_token(SETS)) return true; + final private boolean jj_3_1256() { + if (jj_scan_token(CYCLE)) return true; return false; } - final private boolean jj_3_1405() { - if (jj_scan_token(BEGIN_PARTITION)) return true; + final private boolean jj_3_1255() { + if (jj_scan_token(CURRENT_ROW)) return true; return false; } - final private boolean jj_3_1404() { - if (jj_scan_token(AVG)) return true; + final private boolean jj_3_291() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_79()) return true; + return false; + } + + final private boolean jj_3_671() { + if (jj_3R_280()) return true; + return false; + } + + final private boolean jj_3_1254() { + if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; + return false; + } + + final private boolean jj_3_1253() { + if (jj_scan_token(CUME_DIST)) return true; + return false; + } + + final private boolean jj_3_670() { + if (jj_3R_279()) return true; return false; } - final private boolean jj_3_663() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_251()) return true; + final private boolean jj_3_1252() { + if (jj_scan_token(COVAR_POP)) return true; return false; } - final private boolean jj_3_1403() { - if (jj_scan_token(AT)) return true; + final private boolean jj_3_1251() { + if (jj_scan_token(CORR)) return true; return false; } - final private boolean jj_3_1402() { - if (jj_scan_token(ARE)) return true; + final private boolean jj_3_669() { + if (jj_3R_278()) return true; return false; } - final private boolean jj_3_1401() { - if (jj_scan_token(ABS)) return true; + final private boolean jj_3_1250() { + if (jj_scan_token(CONNECT)) return true; return false; } - final private boolean jj_3_661() { - if (jj_scan_token(ANY)) return true; + final private boolean jj_3_1249() { + if (jj_scan_token(COLLECT)) return true; return false; } - final private boolean jj_3_1400() { - if (jj_scan_token(ANALYZE)) return true; + final private boolean jj_3_1248() { + if (jj_scan_token(CLOSE)) return true; return false; } - final private boolean jj_3_657() { - if (jj_scan_token(DECIMAL)) return true; + final private boolean jj_3R_394() { + if (jj_3R_79()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_291()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3_1399() { - if (jj_scan_token(QUERY)) return true; + final private boolean jj_3_1247() { + if (jj_scan_token(CHECK)) return true; return false; } - final private boolean jj_3_660() { + final private boolean jj_3R_275() { Token xsp; xsp = jj_scanpos; - if (jj_3_657()) { + if (jj_3_669()) { + jj_scanpos = xsp; + if (jj_3_670()) { jj_scanpos = xsp; - if (jj_3_658()) { + if (jj_3_671()) { jj_scanpos = xsp; - if (jj_3_659()) return true; + if (jj_3_672()) { + jj_scanpos = xsp; + if (jj_3_673()) return true; + } + } } } return false; } - final private boolean jj_3_1398() { - if (jj_scan_token(SERVICE)) return true; + final private boolean jj_3_1246() { + if (jj_scan_token(CHARACTER)) return true; return false; } - final private boolean jj_3_1397() { - if (jj_scan_token(KILL)) return true; + final private boolean jj_3_1245() { + if (jj_scan_token(CEIL)) return true; return false; } - final private boolean jj_3_278() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_178()) return true; + final private boolean jj_3_1244() { + if (jj_scan_token(CALLED)) return true; return false; } - final private boolean jj_3_1396() { - if (jj_scan_token(LOGGING)) return true; + final private boolean jj_3R_287() { + if (jj_3R_398()) return true; return false; } - final private boolean jj_3_1395() { - if (jj_scan_token(ENCRYPTED)) return true; + final private boolean jj_3_1243() { + if (jj_scan_token(BLOB)) return true; return false; } - final private boolean jj_3R_273() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_660()) { - jj_scanpos = xsp; - if (jj_3_661()) return true; - } - xsp = jj_scanpos; - if (jj_3_663()) jj_scanpos = xsp; + final private boolean jj_3_1242() { + if (jj_scan_token(BIGINT)) return true; return false; } - final private boolean jj_3_1394() { - if (jj_scan_token(CACHE_NAME)) return true; + final private boolean jj_3_1241() { + if (jj_scan_token(BEGIN)) return true; return false; } - final private boolean jj_3_1393() { - if (jj_scan_token(ATOMICITY)) return true; + final private boolean jj_3_1240() { + if (jj_scan_token(ATOMIC)) return true; return false; } - final private boolean jj_3_1392() { - if (jj_scan_token(TEMPLATE)) return true; + final private boolean jj_3_1239() { + if (jj_scan_token(ARRAY_MAX_CARDINALITY)) return true; return false; } - final private boolean jj_3_1391() { - if (jj_scan_token(XML)) return true; + final private boolean jj_3_1238() { + if (jj_scan_token(ALLOCATE)) return true; return false; } - final private boolean jj_3_1390() { - if (jj_scan_token(WORK)) return true; + final private boolean jj_3_1237() { + if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; return false; } - final private boolean jj_3_1389() { - if (jj_scan_token(VIEW)) return true; + final private boolean jj_3_1236() { + if (jj_scan_token(STATISTICS)) return true; return false; } - final private boolean jj_3_1388() { - if (jj_scan_token(UTF32)) return true; + final private boolean jj_3_1235() { + if (jj_scan_token(COMPUTE)) return true; return false; } - final private boolean jj_3_1387() { - if (jj_scan_token(USER_DEFINED_TYPE_NAME)) return true; + final private boolean jj_3_668() { + if (jj_3R_151()) return true; return false; } - final private boolean jj_3_1386() { - if (jj_scan_token(USAGE)) return true; + final private boolean jj_3R_233() { + if (jj_3R_394()) return true; return false; } - final private boolean jj_3_1385() { - if (jj_scan_token(UNDER)) return true; + final private boolean jj_3_1234() { + if (jj_scan_token(SCAN)) return true; return false; } - final private boolean jj_3_1384() { - if (jj_scan_token(UNBOUNDED)) return true; + final private boolean jj_3_1233() { + if (jj_scan_token(NOLOGGING)) return true; return false; } - final private boolean jj_3R_276() { + final private boolean jj_3R_353() { + if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} return false; } - final private boolean jj_3_1383() { - if (jj_scan_token(TRIGGER_SCHEMA)) return true; + final private boolean jj_3_1232() { + if (jj_scan_token(PARALLEL)) return true; return false; } - final private boolean jj_3_1382() { - if (jj_scan_token(TRANSFORMS)) return true; + final private boolean jj_3_667() { + if (jj_3R_277()) return true; return false; } - final private boolean jj_3_656() { - if (jj_scan_token(VARBINARY)) return true; + final private boolean jj_3_1231() { + if (jj_scan_token(DATA_REGION)) return true; return false; } - final private boolean jj_3_1381() { - if (jj_scan_token(TRANSACTIONS_COMMITTED)) return true; + final private boolean jj_3_1230() { + if (jj_scan_token(WRITE_SYNCHRONIZATION_MODE)) return true; return false; } - final private boolean jj_3_654() { - if (jj_scan_token(VARYING)) return true; + final private boolean jj_3_666() { + if (jj_3R_276()) return true; return false; } - final private boolean jj_3_1380() { - if (jj_scan_token(TOP_LEVEL_COUNT)) return true; + final private boolean jj_3_1229() { + if (jj_scan_token(BACKUPS)) return true; return false; } - final private boolean jj_3_277() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_1228() { + if (jj_scan_token(YEARS)) return true; return false; } - final private boolean jj_3_1379() { - if (jj_scan_token(TIMESTAMPDIFF)) return true; + final private boolean jj_3_1227() { + if (jj_scan_token(WRAPPER)) return true; return false; } - final private boolean jj_3_276() { - if (jj_scan_token(DISTINCT)) return true; + final private boolean jj_3_665() { + if (jj_3R_275()) return true; return false; } - final private boolean jj_3_1378() { - if (jj_scan_token(TIME_DIFF)) return true; + final private boolean jj_3_1226() { + if (jj_scan_token(WEEK)) return true; return false; } - final private boolean jj_3_1377() { - if (jj_scan_token(TABLE_NAME)) return true; + final private boolean jj_3_1225() { + if (jj_scan_token(UTF8)) return true; return false; } - final private boolean jj_3_1376() { - if (jj_scan_token(STYLE)) return true; + final private boolean jj_3_1224() { + if (jj_scan_token(USER_DEFINED_TYPE_SCHEMA)) return true; return false; } - final private boolean jj_3_1375() { - if (jj_scan_token(STATEMENT)) return true; + final private boolean jj_3R_342() { + if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} return false; } - final private boolean jj_3_655() { - if (jj_scan_token(BINARY)) return true; + final private boolean jj_3_1223() { + if (jj_scan_token(USER_DEFINED_TYPE_CATALOG)) return true; + return false; + } + + final private boolean jj_3R_356() { Token xsp; xsp = jj_scanpos; - if (jj_3_654()) { + if (jj_3_665()) { jj_scanpos = xsp; - if (jj_3R_276()) return true; + if (jj_3_666()) { + jj_scanpos = xsp; + if (jj_3_667()) { + jj_scanpos = xsp; + if (jj_3_668()) return true; + } + } } return false; } - final private boolean jj_3_1374() { - if (jj_scan_token(SQL_VARBINARY)) return true; + final private boolean jj_3_1222() { + if (jj_scan_token(UNPIVOT)) return true; return false; } - final private boolean jj_3_1373() { - if (jj_scan_token(SQL_TSI_SECOND)) return true; + final private boolean jj_3_1221() { + if (jj_scan_token(UNCOMMITTED)) return true; return false; } - final private boolean jj_3R_140() { - if (jj_scan_token(GROUP)) return true; - if (jj_scan_token(BY)) return true; + final private boolean jj_3_290() { + if (jj_3R_79()) return true; return false; } - final private boolean jj_3_1372() { - if (jj_scan_token(SQL_TSI_MINUTE)) return true; + final private boolean jj_3_1220() { + if (jj_scan_token(TUMBLE)) return true; return false; } - final private boolean jj_3_1371() { - if (jj_scan_token(SQL_TSI_FRAC_SECOND)) return true; + final private boolean jj_3_1219() { + if (jj_scan_token(TRIGGER_CATALOG)) return true; return false; } - final private boolean jj_3R_272() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_655()) { - jj_scanpos = xsp; - if (jj_3_656()) return true; - } - if (jj_3R_250()) return true; + final private boolean jj_3_1218() { + if (jj_scan_token(TRANSACTIONS_ROLLED_BACK)) return true; return false; } - final private boolean jj_3_1370() { - if (jj_scan_token(SQL_TIMESTAMP)) return true; + final private boolean jj_3_1217() { + if (jj_scan_token(TRANSACTION)) return true; return false; } - final private boolean jj_3_1369() { - if (jj_scan_token(SQL_REAL)) return true; + final private boolean jj_3_289() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_1368() { - if (jj_scan_token(SQL_NCLOB)) return true; + final private boolean jj_3_1216() { + if (jj_scan_token(TIMESTAMP_DIFF)) return true; return false; } - final private boolean jj_3_1367() { - if (jj_scan_token(SQL_LONGVARCHAR)) return true; + final private boolean jj_3_1215() { + if (jj_scan_token(TIME_TRUNC)) return true; return false; } - final private boolean jj_3_1366() { - if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; + final private boolean jj_3_1214() { + if (jj_scan_token(TEMPORARY)) return true; return false; } - final private boolean jj_3_1365() { - if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; + final private boolean jj_3_1213() { + if (jj_scan_token(SUBCLASS_ORIGIN)) return true; return false; } - final private boolean jj_3_1364() { - if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; + final private boolean jj_3R_409() { return false; } - final private boolean jj_3_1363() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; + final private boolean jj_3_1212() { + if (jj_scan_token(STRING_AGG)) return true; return false; } - final private boolean jj_3_1362() { - if (jj_scan_token(SQL_INTEGER)) return true; + final private boolean jj_3_1211() { + if (jj_scan_token(SQL_VARCHAR)) return true; return false; } - final private boolean jj_3_1361() { - if (jj_scan_token(SQL_DECIMAL)) return true; + final private boolean jj_3_288() { + if (jj_scan_token(CUBE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_643() { - if (jj_scan_token(INT)) return true; + final private boolean jj_3_1210() { + if (jj_scan_token(SQL_TSI_WEEK)) return true; return false; } - final private boolean jj_3_1360() { - if (jj_scan_token(SQL_CHAR)) return true; + final private boolean jj_3_664() { + if (jj_3R_274()) return true; return false; } - final private boolean jj_3_644() { - if (jj_scan_token(PRECISION)) return true; + final private boolean jj_3_1209() { + if (jj_scan_token(SQL_TSI_MONTH)) return true; return false; } - final private boolean jj_3_653() { - if (jj_scan_token(FLOAT)) return true; + final private boolean jj_3_1208() { + if (jj_scan_token(SQL_TSI_HOUR)) return true; return false; } - final private boolean jj_3R_139() { - if (jj_scan_token(WHERE)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_1207() { + if (jj_scan_token(SQL_TINYINT)) return true; return false; } - final private boolean jj_3_1359() { - if (jj_scan_token(SQL_BIT)) return true; + final private boolean jj_3_1206() { + if (jj_scan_token(SQL_SMALLINT)) return true; return false; } - final private boolean jj_3_1358() { - if (jj_scan_token(SPECIFIC_NAME)) return true; + final private boolean jj_3_1205() { + if (jj_scan_token(SQL_NUMERIC)) return true; return false; } - final private boolean jj_3_1357() { - if (jj_scan_token(SIZE)) return true; + final private boolean jj_3_287() { + if (jj_scan_token(ROLLUP)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_652() { - if (jj_scan_token(DOUBLE)) return true; + final private boolean jj_3_1204() { + if (jj_scan_token(SQL_LONGVARNCHAR)) return true; + return false; + } + + final private boolean jj_3_1203() { + if (jj_scan_token(SQL_INTERVAL_YEAR_TO_MONTH)) return true; + return false; + } + + final private boolean jj_3R_119() { + if (jj_3R_356()) return true; Token xsp; - xsp = jj_scanpos; - if (jj_3_644()) jj_scanpos = xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_664()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3_1356() { - if (jj_scan_token(SESSION)) return true; + final private boolean jj_3_1202() { + if (jj_scan_token(SQL_INTERVAL_MONTH)) return true; return false; } - final private boolean jj_3_1355() { - if (jj_scan_token(SERIALIZABLE)) return true; + final private boolean jj_3_1201() { + if (jj_scan_token(SQL_INTERVAL_HOUR_TO_SECOND)) return true; return false; } - final private boolean jj_3_651() { - if (jj_scan_token(REAL)) return true; + final private boolean jj_3_1200() { + if (jj_scan_token(SQL_INTERVAL_DAY_TO_SECOND)) return true; return false; } - final private boolean jj_3_1354() { - if (jj_scan_token(SELF)) return true; + final private boolean jj_3R_183() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_286()) { + jj_scanpos = xsp; + if (jj_3_287()) { + jj_scanpos = xsp; + if (jj_3_288()) { + jj_scanpos = xsp; + if (jj_3_289()) { + jj_scanpos = xsp; + if (jj_3_290()) return true; + } + } + } + } return false; } - final private boolean jj_3_1353() { - if (jj_scan_token(SECONDS)) return true; + final private boolean jj_3_1199() { + if (jj_scan_token(SQL_INTERVAL_DAY)) return true; return false; } - final private boolean jj_3_650() { - if (jj_scan_token(BIGINT)) return true; + final private boolean jj_3_286() { + if (jj_scan_token(GROUPING)) return true; + if (jj_scan_token(SETS)) return true; return false; } - final private boolean jj_3_1352() { - if (jj_scan_token(SCOPE_CATALOGS)) return true; + final private boolean jj_3R_173() { + if (jj_3R_372()) return true; return false; } - final private boolean jj_3_1351() { - if (jj_scan_token(SCALE)) return true; + final private boolean jj_3_1198() { + if (jj_scan_token(SQL_DOUBLE)) return true; return false; } - final private boolean jj_3_649() { - if (jj_scan_token(SMALLINT)) return true; + final private boolean jj_3_1197() { + if (jj_scan_token(SQL_CLOB)) return true; return false; } - final private boolean jj_3_1350() { - if (jj_scan_token(ROUTINE_SCHEMA)) return true; + final private boolean jj_3_1196() { + if (jj_scan_token(SQL_BLOB)) return true; return false; } - final private boolean jj_3_1349() { - if (jj_scan_token(ROUTINE)) return true; + final private boolean jj_3_1195() { + if (jj_scan_token(SQL_BIGINT)) return true; return false; } - final private boolean jj_3_642() { - if (jj_scan_token(INTEGER)) return true; + final private boolean jj_3_1194() { + if (jj_scan_token(SOURCE)) return true; return false; } - final private boolean jj_3_648() { - if (jj_scan_token(TINYINT)) return true; + final private boolean jj_3_1193() { + if (jj_scan_token(SETS)) return true; return false; } - final private boolean jj_3_1348() { - if (jj_scan_token(RETURNING)) return true; + final private boolean jj_3_1192() { + if (jj_scan_token(SERVER)) return true; return false; } - final private boolean jj_3_1347() { - if (jj_scan_token(RETURNED_LENGTH)) return true; + final private boolean jj_3_1191() { + if (jj_scan_token(SEPARATOR)) return true; return false; } - final private boolean jj_3_647() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_642()) { - jj_scanpos = xsp; - if (jj_3_643()) return true; - } + final private boolean jj_3_1190() { + if (jj_scan_token(SECTION)) return true; return false; } - final private boolean jj_3_1346() { - if (jj_scan_token(RESTART)) return true; + final private boolean jj_3_285() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_183()) return true; return false; } - final private boolean jj_3_1345() { - if (jj_scan_token(REPEATABLE)) return true; + final private boolean jj_3_1189() { + if (jj_scan_token(SCOPE_NAME)) return true; return false; } - final private boolean jj_3_646() { - if (jj_scan_token(BOOLEAN)) return true; + final private boolean jj_3_1188() { + if (jj_scan_token(SCHEMA)) return true; return false; } - final private boolean jj_3_1344() { - if (jj_scan_token(QUARTERS)) return true; + final private boolean jj_3_1187() { + if (jj_scan_token(ROW_COUNT)) return true; return false; } - final private boolean jj_3_1343() { - if (jj_scan_token(PRIVILEGES)) return true; + final private boolean jj_3_1186() { + if (jj_scan_token(ROUTINE_CATALOG)) return true; return false; } - final private boolean jj_3_1342() { - if (jj_scan_token(PRECEDING)) return true; + final private boolean jj_3_1185() { + if (jj_scan_token(RLIKE)) return true; return false; } - final private boolean jj_3_1341() { - if (jj_scan_token(PLACING)) return true; + final private boolean jj_3_663() { + if (jj_scan_token(MINUS)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_1340() { - if (jj_scan_token(PAST)) return true; + final private boolean jj_3_1184() { + if (jj_scan_token(RETURNED_OCTET_LENGTH)) return true; return false; } - final private boolean jj_3_1339() { - if (jj_scan_token(PASCAL)) return true; + final private boolean jj_3_1183() { + if (jj_scan_token(RESTRICT)) return true; return false; } - final private boolean jj_3_1338() { - if (jj_scan_token(PARAMETER_SPECIFIC_NAME)) return true; + final private boolean jj_3_1182() { + if (jj_scan_token(REPLACE)) return true; return false; } - final private boolean jj_3_1337() { - if (jj_scan_token(PARAMETER_NAME)) return true; + final private boolean jj_3_1181() { + if (jj_scan_token(READ)) return true; return false; } - final private boolean jj_3_645() { - if (jj_scan_token(GEOMETRY)) return true; + final private boolean jj_3_1180() { + if (jj_scan_token(PUBLIC)) return true; return false; } - final private boolean jj_3_1336() { - if (jj_scan_token(OVERRIDING)) return true; + final private boolean jj_3_1179() { + if (jj_scan_token(PRESERVE)) return true; return false; } - final private boolean jj_3R_177() { + final private boolean jj_3_1178() { + if (jj_scan_token(PLAN)) return true; return false; } - final private boolean jj_3_1335() { - if (jj_scan_token(ORDINALITY)) return true; + final private boolean jj_3_661() { + if (jj_scan_token(PLUS)) return true; + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_275() { - if (jj_3R_81()) return true; + final private boolean jj_3_1177() { + if (jj_scan_token(PATH)) return true; return false; } - final private boolean jj_3_1334() { - if (jj_scan_token(OPTION)) return true; + final private boolean jj_3_1176() { + if (jj_scan_token(PASSING)) return true; return false; } - final private boolean jj_3_1333() { - if (jj_scan_token(NUMBER)) return true; + final private boolean jj_3_660() { + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_272() { - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_1175() { + if (jj_scan_token(PARAMETER_SPECIFIC_SCHEMA)) return true; return false; } - final private boolean jj_3R_271() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_645()) { - jj_scanpos = xsp; - if (jj_3_646()) { - jj_scanpos = xsp; - if (jj_3_647()) { - jj_scanpos = xsp; - if (jj_3_648()) { - jj_scanpos = xsp; - if (jj_3_649()) { - jj_scanpos = xsp; - if (jj_3_650()) { - jj_scanpos = xsp; - if (jj_3_651()) { - jj_scanpos = xsp; - if (jj_3_652()) { - jj_scanpos = xsp; - if (jj_3_653()) return true; - } - } - } - } - } - } - } - } + final private boolean jj_3_1174() { + if (jj_scan_token(PARAMETER_ORDINAL_POSITION)) return true; + return false; + } + + final private boolean jj_3_1173() { + if (jj_scan_token(PAD)) return true; + return false; + } + + final private boolean jj_3_284() { + if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_1332() { - if (jj_scan_token(NORMALIZED)) return true; + final private boolean jj_3_1172() { + if (jj_scan_token(OTHERS)) return true; return false; } - final private boolean jj_3_1331() { - if (jj_scan_token(NAMES)) return true; + final private boolean jj_3_283() { + if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1330() { - if (jj_scan_token(MORE_)) return true; + final private boolean jj_3_1171() { + if (jj_scan_token(OPTIONS)) return true; return false; } - final private boolean jj_3_1329() { - if (jj_scan_token(MINUTES)) return true; + final private boolean jj_3_662() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_660()) { + jj_scanpos = xsp; + if (jj_3_661()) return true; + } return false; } - final private boolean jj_3_1328() { - if (jj_scan_token(MICROSECOND)) return true; + final private boolean jj_3_1170() { + if (jj_scan_token(OBJECT)) return true; return false; } - final private boolean jj_3_1327() { - if (jj_scan_token(MESSAGE_LENGTH)) return true; + final private boolean jj_3_1169() { + if (jj_scan_token(NULLABLE)) return true; return false; } - final private boolean jj_3_274() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_272()) { - jj_scanpos = xsp; - if (jj_3R_177()) return true; - } - if (jj_3R_176()) return true; + final private boolean jj_3_1168() { + if (jj_scan_token(NANOSECOND)) return true; return false; } - final private boolean jj_3_1326() { - if (jj_scan_token(MAP)) return true; + final private boolean jj_3_1167() { + if (jj_scan_token(MUMPS)) return true; return false; } - final private boolean jj_3_1325() { - if (jj_scan_token(LIBRARY)) return true; + final private boolean jj_3_1166() { + if (jj_scan_token(MINVALUE)) return true; return false; } - final private boolean jj_3_1324() { - if (jj_scan_token(LAST)) return true; + final private boolean jj_3R_145() { + if (jj_scan_token(GROUP)) return true; + if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3_1323() { - if (jj_scan_token(KEY_MEMBER)) return true; + final private boolean jj_3_1165() { + if (jj_scan_token(MILLENNIUM)) return true; return false; } - final private boolean jj_3_1322() { - if (jj_scan_token(JSON)) return true; + final private boolean jj_3_1164() { + if (jj_scan_token(MESSAGE_OCTET_LENGTH)) return true; return false; } - final private boolean jj_3_641() { - if (jj_3R_275()) return true; + final private boolean jj_3_1163() { + if (jj_scan_token(MATCHED)) return true; return false; } - final private boolean jj_3_1321() { - if (jj_scan_token(ISOLATION)) return true; + final private boolean jj_3_1162() { + if (jj_scan_token(LOCATOR)) return true; return false; } - final private boolean jj_3_273() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(ROW)) return true; - if (jj_3R_176()) return true; + final private boolean jj_3_1161() { + if (jj_scan_token(LENGTH)) return true; return false; } - final private boolean jj_3_1320() { - if (jj_scan_token(INSTANTIABLE)) return true; + final private boolean jj_3_1160() { + if (jj_scan_token(KEY_TYPE)) return true; return false; } - final private boolean jj_3_640() { - if (jj_3R_274()) return true; + final private boolean jj_3_1159() { + if (jj_scan_token(K)) return true; return false; } - final private boolean jj_3_1319() { - if (jj_scan_token(INITIALLY)) return true; + final private boolean jj_3_1158() { + if (jj_scan_token(ISOYEAR)) return true; return false; } - final private boolean jj_3_1318() { - if (jj_scan_token(INCLUDE)) return true; + final private boolean jj_3_1157() { + if (jj_scan_token(INVOKER)) return true; return false; } - final private boolean jj_3_639() { - if (jj_3R_273()) return true; + final private boolean jj_3_1156() { + if (jj_scan_token(INPUT)) return true; return false; } - final private boolean jj_3_1317() { - if (jj_scan_token(IMMEDIATE)) return true; + final private boolean jj_3R_257() { + if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_1316() { - if (jj_scan_token(HOURS)) return true; + final private boolean jj_3_1155() { + if (jj_scan_token(INCLUDING)) return true; return false; } - final private boolean jj_3_638() { - if (jj_3R_272()) return true; + final private boolean jj_3_1154() { + if (jj_scan_token(IMMEDIATELY)) return true; return false; } - final private boolean jj_3_1315() { - if (jj_scan_token(GROUP_CONCAT)) return true; + final private boolean jj_3_1153() { + if (jj_scan_token(IGNORE)) return true; return false; } - final private boolean jj_3_1314() { - if (jj_scan_token(GO)) return true; + final private boolean jj_3R_144() { + if (jj_scan_token(WHERE)) return true; + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_637() { - if (jj_3R_271()) return true; + final private boolean jj_3_1152() { + if (jj_scan_token(HIERARCHY)) return true; return false; } - final private boolean jj_3R_156() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_273()) { - jj_scanpos = xsp; - if (jj_3_274()) { - jj_scanpos = xsp; - if (jj_3_275()) return true; - } - } + final private boolean jj_3_1151() { + if (jj_scan_token(GOTO)) return true; return false; } - final private boolean jj_3_1313() { - if (jj_scan_token(GENERAL)) return true; + final private boolean jj_3_1150() { + if (jj_scan_token(GENERATED)) return true; return false; } - final private boolean jj_3_1312() { - if (jj_scan_token(FOUND)) return true; + final private boolean jj_3_1149() { + if (jj_scan_token(FRAC_SECOND)) return true; return false; } - final private boolean jj_3_1311() { - if (jj_scan_token(FOLLOWING)) return true; + final private boolean jj_3_1148() { + if (jj_scan_token(FORMAT)) return true; return false; } - final private boolean jj_3_1310() { - if (jj_scan_token(EXCLUDING)) return true; + final private boolean jj_3_1147() { + if (jj_scan_token(FINAL)) return true; return false; } - final private boolean jj_3R_269() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_637()) { - jj_scanpos = xsp; - if (jj_3_638()) { - jj_scanpos = xsp; - if (jj_3_639()) { - jj_scanpos = xsp; - if (jj_3_640()) { - jj_scanpos = xsp; - if (jj_3_641()) return true; - } - } - } - } + final private boolean jj_3_1146() { + if (jj_scan_token(EXCEPTION)) return true; return false; } - final private boolean jj_3_1309() { - if (jj_scan_token(ERROR)) return true; + final private boolean jj_3_1145() { + if (jj_scan_token(ENCODING)) return true; return false; } - final private boolean jj_3_1308() { - if (jj_scan_token(DYNAMIC_FUNCTION_CODE)) return true; + final private boolean jj_3_1144() { + if (jj_scan_token(DOT_FORMAT)) return true; return false; } - final private boolean jj_3_1307() { - if (jj_scan_token(DOY)) return true; + final private boolean jj_3_1143() { + if (jj_scan_token(DOMAIN)) return true; return false; } - final private boolean jj_3_1306() { - if (jj_scan_token(DISPATCH)) return true; + final private boolean jj_3_1142() { + if (jj_scan_token(DESCRIPTOR)) return true; return false; } - final private boolean jj_3_1305() { - if (jj_scan_token(DESCRIPTION)) return true; + final private boolean jj_3R_230() { + if (jj_scan_token(NEW)) return true; + if (jj_3R_354()) return true; return false; } - final private boolean jj_3_1304() { - if (jj_scan_token(DEPTH)) return true; + final private boolean jj_3_1141() { + if (jj_scan_token(DERIVED)) return true; return false; } - final private boolean jj_3_1303() { - if (jj_scan_token(DEFINED)) return true; + final private boolean jj_3_1140() { + if (jj_scan_token(DEFINER)) return true; return false; } - final private boolean jj_3_1302() { - if (jj_scan_token(DEFAULTS)) return true; + final private boolean jj_3_1139() { + if (jj_scan_token(DEFERRABLE)) return true; return false; } - final private boolean jj_3_1301() { - if (jj_scan_token(DATETIME_INTERVAL_PRECISION)) return true; + final private boolean jj_3_1138() { + if (jj_scan_token(DAYS)) return true; return false; } - final private boolean jj_3_1300() { - if (jj_scan_token(DATE_TRUNC)) return true; + final private boolean jj_3_1137() { + if (jj_scan_token(DATETIME_TRUNC)) return true; return false; } - final private boolean jj_3R_175() { - if (jj_3R_156()) return true; + final private boolean jj_3_1136() { + if (jj_scan_token(DATETIME_DIFF)) return true; return false; } - final private boolean jj_3_1299() { - if (jj_scan_token(DATA)) return true; + final private boolean jj_3_1135() { + if (jj_scan_token(DATABASE)) return true; return false; } - final private boolean jj_3_1298() { - if (jj_scan_token(CONSTRUCTOR)) return true; + final private boolean jj_3_1134() { + if (jj_scan_token(CONTINUE)) return true; return false; } - final private boolean jj_3_636() { - if (jj_3R_146()) return true; + final private boolean jj_3_1133() { + if (jj_scan_token(CONSTRAINT_SCHEMA)) return true; return false; } - final private boolean jj_3_1297() { - if (jj_scan_token(CONSTRAINT_NAME)) return true; + final private boolean jj_3_1132() { + if (jj_scan_token(CONSTRAINT_CATALOG)) return true; return false; } - final private boolean jj_3_1296() { - if (jj_scan_token(CONNECTION)) return true; + final private boolean jj_3_1131() { + if (jj_scan_token(CONDITION_NUMBER)) return true; return false; } - final private boolean jj_3_635() { - if (jj_3R_270()) return true; + final private boolean jj_3_1130() { + if (jj_scan_token(COMMAND_FUNCTION_CODE)) return true; return false; } - final private boolean jj_3_1295() { - if (jj_scan_token(COMMITTED)) return true; + final private boolean jj_3_1129() { + if (jj_scan_token(COLLATION_SCHEMA)) return true; return false; } - final private boolean jj_3_1294() { - if (jj_scan_token(COLUMN_NAME)) return true; + final private boolean jj_3R_182() { return false; } - final private boolean jj_3_1293() { - if (jj_scan_token(COLLATION_CATALOG)) return true; + final private boolean jj_3_282() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_634() { - if (jj_3R_269()) return true; + final private boolean jj_3_1128() { + if (jj_scan_token(COLLATION)) return true; return false; } - final private boolean jj_3_1292() { - if (jj_scan_token(CLASS_ORIGIN)) return true; + final private boolean jj_3_1127() { + if (jj_scan_token(CHARACTER_SET_SCHEMA)) return true; return false; } - final private boolean jj_3_1291() { - if (jj_scan_token(CHARACTER_SET_CATALOG)) return true; + final private boolean jj_3_279() { + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_1290() { - if (jj_scan_token(CHAIN)) return true; + final private boolean jj_3_1126() { + if (jj_scan_token(CHARACTERS)) return true; return false; } - final private boolean jj_3_1289() { - if (jj_scan_token(CATALOG)) return true; + final private boolean jj_3R_158() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_366()) return true; return false; } - final private boolean jj_3_271() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_175()) return true; + final private boolean jj_3_1125() { + if (jj_scan_token(CENTURY)) return true; return false; } - final private boolean jj_3R_346() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_634()) { - jj_scanpos = xsp; - if (jj_3_635()) { - jj_scanpos = xsp; - if (jj_3_636()) return true; - } - } + final private boolean jj_3_1124() { + if (jj_scan_token(CASCADE)) return true; return false; } - final private boolean jj_3_1288() { - if (jj_scan_token(BREADTH)) return true; + final private boolean jj_3_1123() { + if (jj_scan_token(BERNOULLI)) return true; return false; } - final private boolean jj_3_1287() { - if (jj_scan_token(ATTRIBUTES)) return true; + final private boolean jj_3_1122() { + if (jj_scan_token(ATTRIBUTE)) return true; return false; } - final private boolean jj_3_1286() { - if (jj_scan_token(ASSERTION)) return true; + final private boolean jj_3_1121() { + if (jj_scan_token(ASC)) return true; return false; } - final private boolean jj_3_1285() { - if (jj_scan_token(ARRAY_AGG)) return true; + final private boolean jj_3_281() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_279()) { + jj_scanpos = xsp; + if (jj_3R_182()) return true; + } + if (jj_3R_181()) return true; return false; } - final private boolean jj_3_1284() { - if (jj_scan_token(AFTER)) return true; + final private boolean jj_3_1120() { + if (jj_scan_token(APPLY)) return true; return false; } - final private boolean jj_3_1283() { - if (jj_scan_token(ADA)) return true; + final private boolean jj_3_1119() { + if (jj_scan_token(ADMIN)) return true; return false; } - final private boolean jj_3_1282() { - if (jj_scan_token(ABSENT)) return true; + final private boolean jj_3_1118() { + if (jj_scan_token(ACTION)) return true; return false; } - final private boolean jj_3_270() { - if (jj_scan_token(VALUE)) return true; + final private boolean jj_3_1117() { + if (jj_scan_token(A)) return true; return false; } - final private boolean jj_3R_329() { + final private boolean jj_3_280() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(ROW)) return true; + if (jj_3R_181()) return true; + return false; + } + + final private boolean jj_3R_337() { Token xsp; xsp = jj_scanpos; - if (jj_3_1282()) { + if (jj_3_1117()) { jj_scanpos = xsp; - if (jj_3_1283()) { + if (jj_3_1118()) { jj_scanpos = xsp; - if (jj_3_1284()) { + if (jj_3_1119()) { jj_scanpos = xsp; - if (jj_3_1285()) { + if (jj_3_1120()) { jj_scanpos = xsp; - if (jj_3_1286()) { + if (jj_3_1121()) { jj_scanpos = xsp; - if (jj_3_1287()) { + if (jj_3_1122()) { jj_scanpos = xsp; - if (jj_3_1288()) { + if (jj_3_1123()) { jj_scanpos = xsp; - if (jj_3_1289()) { + if (jj_3_1124()) { jj_scanpos = xsp; - if (jj_3_1290()) { + if (jj_3_1125()) { jj_scanpos = xsp; - if (jj_3_1291()) { + if (jj_3_1126()) { jj_scanpos = xsp; - if (jj_3_1292()) { + if (jj_3_1127()) { jj_scanpos = xsp; - if (jj_3_1293()) { + if (jj_3_1128()) { jj_scanpos = xsp; - if (jj_3_1294()) { + if (jj_3_1129()) { jj_scanpos = xsp; - if (jj_3_1295()) { + if (jj_3_1130()) { jj_scanpos = xsp; - if (jj_3_1296()) { + if (jj_3_1131()) { jj_scanpos = xsp; - if (jj_3_1297()) { + if (jj_3_1132()) { jj_scanpos = xsp; - if (jj_3_1298()) { + if (jj_3_1133()) { jj_scanpos = xsp; - if (jj_3_1299()) { + if (jj_3_1134()) { jj_scanpos = xsp; - if (jj_3_1300()) { + if (jj_3_1135()) { jj_scanpos = xsp; - if (jj_3_1301()) { + if (jj_3_1136()) { jj_scanpos = xsp; - if (jj_3_1302()) { + if (jj_3_1137()) { jj_scanpos = xsp; - if (jj_3_1303()) { + if (jj_3_1138()) { jj_scanpos = xsp; - if (jj_3_1304()) { + if (jj_3_1139()) { jj_scanpos = xsp; - if (jj_3_1305()) { + if (jj_3_1140()) { jj_scanpos = xsp; - if (jj_3_1306()) { + if (jj_3_1141()) { jj_scanpos = xsp; - if (jj_3_1307()) { + if (jj_3_1142()) { jj_scanpos = xsp; - if (jj_3_1308()) { + if (jj_3_1143()) { jj_scanpos = xsp; - if (jj_3_1309()) { + if (jj_3_1144()) { jj_scanpos = xsp; - if (jj_3_1310()) { + if (jj_3_1145()) { jj_scanpos = xsp; - if (jj_3_1311()) { + if (jj_3_1146()) { jj_scanpos = xsp; - if (jj_3_1312()) { + if (jj_3_1147()) { jj_scanpos = xsp; - if (jj_3_1313()) { + if (jj_3_1148()) { jj_scanpos = xsp; - if (jj_3_1314()) { + if (jj_3_1149()) { jj_scanpos = xsp; - if (jj_3_1315()) { + if (jj_3_1150()) { jj_scanpos = xsp; - if (jj_3_1316()) { + if (jj_3_1151()) { jj_scanpos = xsp; - if (jj_3_1317()) { + if (jj_3_1152()) { jj_scanpos = xsp; - if (jj_3_1318()) { + if (jj_3_1153()) { jj_scanpos = xsp; - if (jj_3_1319()) { + if (jj_3_1154()) { jj_scanpos = xsp; - if (jj_3_1320()) { + if (jj_3_1155()) { jj_scanpos = xsp; - if (jj_3_1321()) { + if (jj_3_1156()) { jj_scanpos = xsp; - if (jj_3_1322()) { + if (jj_3_1157()) { jj_scanpos = xsp; - if (jj_3_1323()) { + if (jj_3_1158()) { jj_scanpos = xsp; - if (jj_3_1324()) { + if (jj_3_1159()) { jj_scanpos = xsp; - if (jj_3_1325()) { + if (jj_3_1160()) { jj_scanpos = xsp; - if (jj_3_1326()) { + if (jj_3_1161()) { jj_scanpos = xsp; - if (jj_3_1327()) { + if (jj_3_1162()) { jj_scanpos = xsp; - if (jj_3_1328()) { + if (jj_3_1163()) { jj_scanpos = xsp; - if (jj_3_1329()) { + if (jj_3_1164()) { jj_scanpos = xsp; - if (jj_3_1330()) { + if (jj_3_1165()) { jj_scanpos = xsp; - if (jj_3_1331()) { + if (jj_3_1166()) { jj_scanpos = xsp; - if (jj_3_1332()) { + if (jj_3_1167()) { jj_scanpos = xsp; - if (jj_3_1333()) { + if (jj_3_1168()) { jj_scanpos = xsp; - if (jj_3_1334()) { + if (jj_3_1169()) { jj_scanpos = xsp; - if (jj_3_1335()) { + if (jj_3_1170()) { jj_scanpos = xsp; - if (jj_3_1336()) { + if (jj_3_1171()) { jj_scanpos = xsp; - if (jj_3_1337()) { + if (jj_3_1172()) { jj_scanpos = xsp; - if (jj_3_1338()) { + if (jj_3_1173()) { jj_scanpos = xsp; - if (jj_3_1339()) { + if (jj_3_1174()) { jj_scanpos = xsp; - if (jj_3_1340()) { + if (jj_3_1175()) { jj_scanpos = xsp; - if (jj_3_1341()) { + if (jj_3_1176()) { jj_scanpos = xsp; - if (jj_3_1342()) { + if (jj_3_1177()) { jj_scanpos = xsp; - if (jj_3_1343()) { + if (jj_3_1178()) { jj_scanpos = xsp; - if (jj_3_1344()) { + if (jj_3_1179()) { jj_scanpos = xsp; - if (jj_3_1345()) { + if (jj_3_1180()) { jj_scanpos = xsp; - if (jj_3_1346()) { + if (jj_3_1181()) { jj_scanpos = xsp; - if (jj_3_1347()) { + if (jj_3_1182()) { jj_scanpos = xsp; - if (jj_3_1348()) { + if (jj_3_1183()) { jj_scanpos = xsp; - if (jj_3_1349()) { + if (jj_3_1184()) { jj_scanpos = xsp; - if (jj_3_1350()) { + if (jj_3_1185()) { jj_scanpos = xsp; - if (jj_3_1351()) { + if (jj_3_1186()) { jj_scanpos = xsp; - if (jj_3_1352()) { + if (jj_3_1187()) { jj_scanpos = xsp; - if (jj_3_1353()) { + if (jj_3_1188()) { jj_scanpos = xsp; - if (jj_3_1354()) { + if (jj_3_1189()) { jj_scanpos = xsp; - if (jj_3_1355()) { + if (jj_3_1190()) { jj_scanpos = xsp; - if (jj_3_1356()) { + if (jj_3_1191()) { jj_scanpos = xsp; - if (jj_3_1357()) { + if (jj_3_1192()) { jj_scanpos = xsp; - if (jj_3_1358()) { + if (jj_3_1193()) { jj_scanpos = xsp; - if (jj_3_1359()) { + if (jj_3_1194()) { jj_scanpos = xsp; - if (jj_3_1360()) { + if (jj_3_1195()) { jj_scanpos = xsp; - if (jj_3_1361()) { + if (jj_3_1196()) { jj_scanpos = xsp; - if (jj_3_1362()) { + if (jj_3_1197()) { jj_scanpos = xsp; - if (jj_3_1363()) { + if (jj_3_1198()) { jj_scanpos = xsp; - if (jj_3_1364()) { + if (jj_3_1199()) { jj_scanpos = xsp; - if (jj_3_1365()) { + if (jj_3_1200()) { jj_scanpos = xsp; - if (jj_3_1366()) { + if (jj_3_1201()) { jj_scanpos = xsp; - if (jj_3_1367()) { + if (jj_3_1202()) { jj_scanpos = xsp; - if (jj_3_1368()) { + if (jj_3_1203()) { jj_scanpos = xsp; - if (jj_3_1369()) { + if (jj_3_1204()) { jj_scanpos = xsp; - if (jj_3_1370()) { + if (jj_3_1205()) { jj_scanpos = xsp; - if (jj_3_1371()) { + if (jj_3_1206()) { jj_scanpos = xsp; - if (jj_3_1372()) { + if (jj_3_1207()) { + jj_scanpos = xsp; + if (jj_3_1208()) { + jj_scanpos = xsp; + if (jj_3_1209()) { + jj_scanpos = xsp; + if (jj_3_1210()) { + jj_scanpos = xsp; + if (jj_3_1211()) { jj_scanpos = xsp; - if (jj_3_1373()) { + if (jj_3_1212()) { jj_scanpos = xsp; - if (jj_3_1374()) { + if (jj_3_1213()) { jj_scanpos = xsp; - if (jj_3_1375()) { + if (jj_3_1214()) { jj_scanpos = xsp; - if (jj_3_1376()) { + if (jj_3_1215()) { jj_scanpos = xsp; - if (jj_3_1377()) { + if (jj_3_1216()) { jj_scanpos = xsp; - if (jj_3_1378()) { + if (jj_3_1217()) { jj_scanpos = xsp; - if (jj_3_1379()) { + if (jj_3_1218()) { jj_scanpos = xsp; - if (jj_3_1380()) { + if (jj_3_1219()) { jj_scanpos = xsp; - if (jj_3_1381()) { + if (jj_3_1220()) { jj_scanpos = xsp; - if (jj_3_1382()) { + if (jj_3_1221()) { jj_scanpos = xsp; - if (jj_3_1383()) { + if (jj_3_1222()) { jj_scanpos = xsp; - if (jj_3_1384()) { + if (jj_3_1223()) { jj_scanpos = xsp; - if (jj_3_1385()) { + if (jj_3_1224()) { jj_scanpos = xsp; - if (jj_3_1386()) { + if (jj_3_1225()) { jj_scanpos = xsp; - if (jj_3_1387()) { + if (jj_3_1226()) { jj_scanpos = xsp; - if (jj_3_1388()) { + if (jj_3_1227()) { jj_scanpos = xsp; - if (jj_3_1389()) { + if (jj_3_1228()) { jj_scanpos = xsp; - if (jj_3_1390()) { + if (jj_3_1229()) { jj_scanpos = xsp; - if (jj_3_1391()) { + if (jj_3_1230()) { jj_scanpos = xsp; - if (jj_3_1392()) { + if (jj_3_1231()) { jj_scanpos = xsp; - if (jj_3_1393()) { + if (jj_3_1232()) { jj_scanpos = xsp; - if (jj_3_1394()) { + if (jj_3_1233()) { jj_scanpos = xsp; - if (jj_3_1395()) { + if (jj_3_1234()) { jj_scanpos = xsp; - if (jj_3_1396()) { + if (jj_3_1235()) { jj_scanpos = xsp; - if (jj_3_1397()) { + if (jj_3_1236()) { jj_scanpos = xsp; - if (jj_3_1398()) { + if (jj_3_1237()) { jj_scanpos = xsp; - if (jj_3_1399()) { + if (jj_3_1238()) { jj_scanpos = xsp; - if (jj_3_1400()) { + if (jj_3_1239()) { jj_scanpos = xsp; - if (jj_3_1401()) { + if (jj_3_1240()) { jj_scanpos = xsp; - if (jj_3_1402()) { + if (jj_3_1241()) { jj_scanpos = xsp; - if (jj_3_1403()) { + if (jj_3_1242()) { jj_scanpos = xsp; - if (jj_3_1404()) { + if (jj_3_1243()) { jj_scanpos = xsp; - if (jj_3_1405()) { + if (jj_3_1244()) { jj_scanpos = xsp; - if (jj_3_1406()) { + if (jj_3_1245()) { jj_scanpos = xsp; - if (jj_3_1407()) { + if (jj_3_1246()) { jj_scanpos = xsp; - if (jj_3_1408()) { + if (jj_3_1247()) { jj_scanpos = xsp; - if (jj_3_1409()) { + if (jj_3_1248()) { jj_scanpos = xsp; - if (jj_3_1410()) { + if (jj_3_1249()) { jj_scanpos = xsp; - if (jj_3_1411()) { + if (jj_3_1250()) { jj_scanpos = xsp; - if (jj_3_1412()) { + if (jj_3_1251()) { jj_scanpos = xsp; - if (jj_3_1413()) { + if (jj_3_1252()) { jj_scanpos = xsp; - if (jj_3_1414()) { + if (jj_3_1253()) { jj_scanpos = xsp; - if (jj_3_1415()) { + if (jj_3_1254()) { jj_scanpos = xsp; - if (jj_3_1416()) { + if (jj_3_1255()) { jj_scanpos = xsp; - if (jj_3_1417()) { + if (jj_3_1256()) { jj_scanpos = xsp; - if (jj_3_1418()) { + if (jj_3_1257()) { jj_scanpos = xsp; - if (jj_3_1419()) { + if (jj_3_1258()) { jj_scanpos = xsp; - if (jj_3_1420()) { + if (jj_3_1259()) { jj_scanpos = xsp; - if (jj_3_1421()) { + if (jj_3_1260()) { jj_scanpos = xsp; - if (jj_3_1422()) { + if (jj_3_1261()) { jj_scanpos = xsp; - if (jj_3_1423()) { + if (jj_3_1262()) { jj_scanpos = xsp; - if (jj_3_1424()) { + if (jj_3_1263()) { jj_scanpos = xsp; - if (jj_3_1425()) { + if (jj_3_1264()) { jj_scanpos = xsp; - if (jj_3_1426()) { + if (jj_3_1265()) { jj_scanpos = xsp; - if (jj_3_1427()) { + if (jj_3_1266()) { jj_scanpos = xsp; - if (jj_3_1428()) { + if (jj_3_1267()) { jj_scanpos = xsp; - if (jj_3_1429()) { + if (jj_3_1268()) { jj_scanpos = xsp; - if (jj_3_1430()) { + if (jj_3_1269()) { jj_scanpos = xsp; - if (jj_3_1431()) { + if (jj_3_1270()) { jj_scanpos = xsp; - if (jj_3_1432()) { + if (jj_3_1271()) { jj_scanpos = xsp; - if (jj_3_1433()) { + if (jj_3_1272()) { jj_scanpos = xsp; - if (jj_3_1434()) { + if (jj_3_1273()) { jj_scanpos = xsp; - if (jj_3_1435()) { + if (jj_3_1274()) { jj_scanpos = xsp; - if (jj_3_1436()) { + if (jj_3_1275()) { jj_scanpos = xsp; - if (jj_3_1437()) { + if (jj_3_1276()) { jj_scanpos = xsp; - if (jj_3_1438()) { + if (jj_3_1277()) { jj_scanpos = xsp; - if (jj_3_1439()) { + if (jj_3_1278()) { jj_scanpos = xsp; - if (jj_3_1440()) { + if (jj_3_1279()) { jj_scanpos = xsp; - if (jj_3_1441()) { + if (jj_3_1280()) { jj_scanpos = xsp; - if (jj_3_1442()) { + if (jj_3_1281()) { jj_scanpos = xsp; - if (jj_3_1443()) { + if (jj_3_1282()) { jj_scanpos = xsp; - if (jj_3_1444()) { + if (jj_3_1283()) { jj_scanpos = xsp; - if (jj_3_1445()) { + if (jj_3_1284()) { jj_scanpos = xsp; - if (jj_3_1446()) { + if (jj_3_1285()) { jj_scanpos = xsp; - if (jj_3_1447()) { + if (jj_3_1286()) { jj_scanpos = xsp; - if (jj_3_1448()) { + if (jj_3_1287()) { jj_scanpos = xsp; - if (jj_3_1449()) { + if (jj_3_1288()) { jj_scanpos = xsp; - if (jj_3_1450()) { + if (jj_3_1289()) { jj_scanpos = xsp; - if (jj_3_1451()) { + if (jj_3_1290()) { jj_scanpos = xsp; - if (jj_3_1452()) { + if (jj_3_1291()) { jj_scanpos = xsp; - if (jj_3_1453()) { + if (jj_3_1292()) { jj_scanpos = xsp; - if (jj_3_1454()) { + if (jj_3_1293()) { jj_scanpos = xsp; - if (jj_3_1455()) { + if (jj_3_1294()) { jj_scanpos = xsp; - if (jj_3_1456()) { + if (jj_3_1295()) { jj_scanpos = xsp; - if (jj_3_1457()) { + if (jj_3_1296()) { jj_scanpos = xsp; - if (jj_3_1458()) { + if (jj_3_1297()) { jj_scanpos = xsp; - if (jj_3_1459()) { + if (jj_3_1298()) { jj_scanpos = xsp; - if (jj_3_1460()) { + if (jj_3_1299()) { jj_scanpos = xsp; - if (jj_3_1461()) { + if (jj_3_1300()) { jj_scanpos = xsp; - if (jj_3_1462()) { + if (jj_3_1301()) { jj_scanpos = xsp; - if (jj_3_1463()) { + if (jj_3_1302()) { jj_scanpos = xsp; - if (jj_3_1464()) { + if (jj_3_1303()) { jj_scanpos = xsp; - if (jj_3_1465()) { + if (jj_3_1304()) { jj_scanpos = xsp; - if (jj_3_1466()) { + if (jj_3_1305()) { jj_scanpos = xsp; - if (jj_3_1467()) { + if (jj_3_1306()) { jj_scanpos = xsp; - if (jj_3_1468()) { + if (jj_3_1307()) { jj_scanpos = xsp; - if (jj_3_1469()) { + if (jj_3_1308()) { jj_scanpos = xsp; - if (jj_3_1470()) { + if (jj_3_1309()) { jj_scanpos = xsp; - if (jj_3_1471()) { + if (jj_3_1310()) { jj_scanpos = xsp; - if (jj_3_1472()) { + if (jj_3_1311()) { jj_scanpos = xsp; - if (jj_3_1473()) { + if (jj_3_1312()) { jj_scanpos = xsp; - if (jj_3_1474()) { + if (jj_3_1313()) { jj_scanpos = xsp; - if (jj_3_1475()) { + if (jj_3_1314()) { jj_scanpos = xsp; - if (jj_3_1476()) { + if (jj_3_1315()) { jj_scanpos = xsp; - if (jj_3_1477()) { + if (jj_3_1316()) { jj_scanpos = xsp; - if (jj_3_1478()) { + if (jj_3_1317()) { jj_scanpos = xsp; - if (jj_3_1479()) { + if (jj_3_1318()) { jj_scanpos = xsp; - if (jj_3_1480()) { + if (jj_3_1319()) { jj_scanpos = xsp; - if (jj_3_1481()) { + if (jj_3_1320()) { jj_scanpos = xsp; - if (jj_3_1482()) { + if (jj_3_1321()) { jj_scanpos = xsp; - if (jj_3_1483()) { + if (jj_3_1322()) { jj_scanpos = xsp; - if (jj_3_1484()) { + if (jj_3_1323()) { jj_scanpos = xsp; - if (jj_3_1485()) { + if (jj_3_1324()) { jj_scanpos = xsp; - if (jj_3_1486()) { + if (jj_3_1325()) { jj_scanpos = xsp; - if (jj_3_1487()) { + if (jj_3_1326()) { jj_scanpos = xsp; - if (jj_3_1488()) { + if (jj_3_1327()) { jj_scanpos = xsp; - if (jj_3_1489()) { + if (jj_3_1328()) { jj_scanpos = xsp; - if (jj_3_1490()) { + if (jj_3_1329()) { jj_scanpos = xsp; - if (jj_3_1491()) { + if (jj_3_1330()) { jj_scanpos = xsp; - if (jj_3_1492()) { + if (jj_3_1331()) { jj_scanpos = xsp; - if (jj_3_1493()) { + if (jj_3_1332()) { jj_scanpos = xsp; - if (jj_3_1494()) { + if (jj_3_1333()) { jj_scanpos = xsp; - if (jj_3_1495()) { + if (jj_3_1334()) { jj_scanpos = xsp; - if (jj_3_1496()) { + if (jj_3_1335()) { jj_scanpos = xsp; - if (jj_3_1497()) return true; - } - } - } - } - } - } - } - } + if (jj_3_1336()) return true; + } + } + } + } + } + } + } + } + } + } + } + } + } + } } } } @@ -37234,763 +39079,289 @@ final private boolean jj_3R_329() { } } } - } - } - return false; - } - - final private boolean jj_3_269() { - if (jj_scan_token(VALUES)) return true; - return false; - } - - final private boolean jj_3_633() { - if (jj_3R_268()) return true; - return false; - } - - final private boolean jj_3R_76() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_269()) { - jj_scanpos = xsp; - if (jj_3_270()) return true; - } - if (jj_3R_175()) return true; - return false; - } - - final private boolean jj_3_1281() { - if (jj_scan_token(FRIDAY)) return true; - return false; - } - - final private boolean jj_3_1280() { - if (jj_scan_token(TUESDAY)) return true; - return false; - } - - final private boolean jj_3_1279() { - if (jj_scan_token(WITHOUT)) return true; - return false; - } - - final private boolean jj_3_1278() { - if (jj_scan_token(WIDTH_BUCKET)) return true; - return false; - } - - final private boolean jj_3R_114() { - if (jj_3R_346()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_633()) { jj_scanpos = xsp; break; } - } - return false; - } - - final private boolean jj_3_1277() { - if (jj_scan_token(VAR_SAMP)) return true; - return false; - } - - final private boolean jj_3_1276() { - if (jj_scan_token(VARCHAR)) return true; - return false; - } - - final private boolean jj_3_1275() { - if (jj_scan_token(VALUE)) return true; - return false; - } - - final private boolean jj_3_1274() { - if (jj_scan_token(UNNEST)) return true; - return false; - } - - final private boolean jj_3_1273() { - if (jj_scan_token(UESCAPE)) return true; - return false; - } - - final private boolean jj_3_1272() { - if (jj_scan_token(TRIM)) return true; - return false; - } - - final private boolean jj_3_1271() { - if (jj_scan_token(TRANSLATION)) return true; - return false; - } - - final private boolean jj_3_1270() { - if (jj_scan_token(TINYINT)) return true; - return false; - } - - final private boolean jj_3_1269() { - if (jj_scan_token(TIMESTAMP)) return true; - return false; - } - - final private boolean jj_3_1268() { - if (jj_scan_token(SYSTEM_USER)) return true; - return false; - } - - final private boolean jj_3_1267() { - if (jj_scan_token(SUM)) return true; - return false; - } - - final private boolean jj_3R_77() { - if (jj_scan_token(TABLE)) return true; - if (jj_3R_146()) return true; - return false; - } - - final private boolean jj_3_1266() { - if (jj_scan_token(SUBSTRING)) return true; - return false; - } - - final private boolean jj_3_1265() { - if (jj_scan_token(STREAM)) return true; - return false; - } - - final private boolean jj_3_1264() { - if (jj_scan_token(STATIC)) return true; - return false; - } - - final private boolean jj_3_1263() { - if (jj_scan_token(SQLWARNING)) return true; - return false; - } - - final private boolean jj_3_1262() { - if (jj_scan_token(SQL)) return true; - return false; - } - - final private boolean jj_3_1261() { - if (jj_scan_token(SMALLINT)) return true; - return false; - } - - final private boolean jj_3_1260() { - if (jj_scan_token(SHOW)) return true; - return false; - } - - final private boolean jj_3_632() { - if (jj_scan_token(MINUS)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; - return false; - } - - final private boolean jj_3_1259() { - if (jj_scan_token(SEEK)) return true; - return false; - } - - final private boolean jj_3_1258() { - if (jj_scan_token(SCROLL)) return true; - return false; - } - - final private boolean jj_3_1257() { - if (jj_scan_token(RUNNING)) return true; - return false; - } - - final private boolean jj_3_1256() { - if (jj_scan_token(ROLLUP)) return true; - return false; - } - - final private boolean jj_3_1255() { - if (jj_scan_token(RETURNS)) return true; - return false; - } - - final private boolean jj_3_1254() { - if (jj_scan_token(RESET)) return true; - return false; - } - - final private boolean jj_3_1253() { - if (jj_scan_token(REGR_SXY)) return true; - return false; - } - - final private boolean jj_3_630() { - if (jj_scan_token(PLUS)) return true; - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; - return false; - } - - final private boolean jj_3_1252() { - if (jj_scan_token(REGR_R2)) return true; - return false; - } - - final private boolean jj_3_1251() { - if (jj_scan_token(REGR_AVGY)) return true; - return false; - } - - final private boolean jj_3_629() { - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; - return false; - } - - final private boolean jj_3_1250() { - if (jj_scan_token(REFERENCES)) return true; - return false; - } - - final private boolean jj_3_1249() { - if (jj_scan_token(REAL)) return true; - return false; - } - - final private boolean jj_3_1248() { - if (jj_scan_token(RANGE)) return true; - return false; - } - - final private boolean jj_3_1247() { - if (jj_scan_token(PREV)) return true; - return false; - } - - final private boolean jj_3_1246() { - if (jj_scan_token(PRECEDES)) return true; - return false; - } - - final private boolean jj_3_631() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_629()) { - jj_scanpos = xsp; - if (jj_3_630()) return true; - } - return false; - } - - final private boolean jj_3_1245() { - if (jj_scan_token(POSITION)) return true; - return false; - } - - final private boolean jj_3_1244() { - if (jj_scan_token(PERIOD)) return true; - return false; - } - - final private boolean jj_3_1243() { - if (jj_scan_token(PERCENTILE_CONT)) return true; return false; } - final private boolean jj_3_1242() { - if (jj_scan_token(PATTERN)) return true; + final private boolean jj_3_659() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_273()) return true; return false; } - final private boolean jj_3_1241() { - if (jj_scan_token(OVERLAPS)) return true; + final private boolean jj_3R_366() { + if (jj_3R_273()) return true; return false; } - final private boolean jj_3_1240() { - if (jj_scan_token(OPEN)) return true; + final private boolean jj_3R_161() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_280()) { + jj_scanpos = xsp; + if (jj_3_281()) { + jj_scanpos = xsp; + if (jj_3_282()) return true; + } + } return false; } - final private boolean jj_3_1239() { - if (jj_scan_token(OMIT)) return true; + final private boolean jj_3_1116() { + if (jj_3R_339()) return true; return false; } - final private boolean jj_3_1238() { - if (jj_scan_token(OCTET_LENGTH)) return true; + final private boolean jj_3_1115() { + if (jj_3R_338()) return true; return false; } - final private boolean jj_3_1237() { - if (jj_scan_token(NULLIF)) return true; + final private boolean jj_3_1114() { + if (jj_3R_337()) return true; return false; } - final private boolean jj_3_1236() { - if (jj_scan_token(NORMALIZE)) return true; + final private boolean jj_3R_270() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_1114()) { + jj_scanpos = xsp; + if (jj_3_1115()) { + jj_scanpos = xsp; + if (jj_3_1116()) return true; + } + } return false; } - final private boolean jj_3_1235() { - if (jj_scan_token(NEXT)) return true; + final private boolean jj_3_658() { + if (jj_scan_token(DOT)) return true; + if (jj_3R_272()) return true; return false; } - final private boolean jj_3_1234() { - if (jj_scan_token(NCHAR)) return true; + final private boolean jj_3R_180() { + if (jj_3R_161()) return true; return false; } - final private boolean jj_3_1233() { - if (jj_scan_token(MONTH)) return true; + final private boolean jj_3R_168() { + if (jj_3R_272()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_658()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3_268() { - if (jj_scan_token(SPECIFIC)) return true; + final private boolean jj_3_278() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_180()) return true; return false; } - final private boolean jj_3_1232() { - if (jj_scan_token(MOD)) return true; + final private boolean jj_3_277() { + if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3_1231() { - if (jj_scan_token(METHOD)) return true; + final private boolean jj_3_276() { + if (jj_scan_token(VALUES)) return true; return false; } - final private boolean jj_3R_251() { - if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; + final private boolean jj_3_657() { + if (jj_scan_token(DOT)) return true; + if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_1230() { - if (jj_scan_token(MAX)) return true; + final private boolean jj_3R_77() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_276()) { + jj_scanpos = xsp; + if (jj_3_277()) return true; + } + if (jj_3R_180()) return true; return false; } - final private boolean jj_3_1229() { - if (jj_scan_token(MATCHES)) return true; + final private boolean jj_3_656() { + if (jj_scan_token(DOT)) return true; + if (jj_3R_271()) return true; return false; } - final private boolean jj_3_1228() { - if (jj_scan_token(LOCAL)) return true; + final private boolean jj_3R_151() { + if (jj_3R_271()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_656()) { jj_scanpos = xsp; break; } + } + xsp = jj_scanpos; + if (jj_3_657()) jj_scanpos = xsp; return false; } - final private boolean jj_3R_167() { + final private boolean jj_3R_78() { if (jj_scan_token(TABLE)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; - } - - final private boolean jj_3_1227() { - if (jj_scan_token(LEAD)) return true; - return false; - } - - final private boolean jj_3_1226() { - if (jj_scan_token(LARGE)) return true; - return false; - } - - final private boolean jj_3_1225() { - if (jj_scan_token(JSON_VALUE)) return true; - return false; - } - - final private boolean jj_3_1224() { - if (jj_scan_token(JSON_OBJECT)) return true; - return false; - } - - final private boolean jj_3_1223() { - if (jj_scan_token(JSON_ARRAY)) return true; - return false; - } - - final private boolean jj_3_1222() { - if (jj_scan_token(INT)) return true; - return false; - } - - final private boolean jj_3_1221() { - if (jj_scan_token(INITIAL)) return true; - return false; - } - - final private boolean jj_3_1220() { - if (jj_scan_token(IDENTITY)) return true; - return false; - } - - final private boolean jj_3_1219() { - if (jj_scan_token(GROUPS)) return true; - return false; - } - - final private boolean jj_3_1218() { - if (jj_scan_token(GLOBAL)) return true; - return false; - } - - final private boolean jj_3_1217() { - if (jj_scan_token(FUNCTION)) return true; - return false; - } - - final private boolean jj_3R_224() { - if (jj_scan_token(NEW)) return true; - if (jj_3R_344()) return true; - return false; - } - - final private boolean jj_3_1216() { - if (jj_scan_token(FOREIGN)) return true; - return false; - } - - final private boolean jj_3_1215() { - if (jj_scan_token(FIRST_VALUE)) return true; - return false; - } - - final private boolean jj_3_1214() { - if (jj_scan_token(EXTERNAL)) return true; - return false; - } - - final private boolean jj_3_1213() { - if (jj_scan_token(EXECUTE)) return true; - return false; - } - - final private boolean jj_3_1212() { - if (jj_scan_token(ESCAPE)) return true; - return false; - } - - final private boolean jj_3_1211() { - if (jj_scan_token(END_FRAME)) return true; - return false; - } - - final private boolean jj_3_1210() { - if (jj_scan_token(EMPTY)) return true; - return false; - } - - final private boolean jj_3_1209() { - if (jj_scan_token(DYNAMIC)) return true; - return false; - } - - final private boolean jj_3_1208() { - if (jj_scan_token(DISALLOW)) return true; - return false; - } - - final private boolean jj_3_1207() { - if (jj_scan_token(DEREF)) return true; - return false; - } - - final private boolean jj_3_1206() { - if (jj_scan_token(DECLARE)) return true; - return false; - } - - final private boolean jj_3_267() { - if (jj_3R_114()) return true; - if (jj_3R_174()) return true; - return false; - } - - final private boolean jj_3_1205() { - if (jj_scan_token(DEALLOCATE)) return true; - return false; - } - - final private boolean jj_3_1204() { - if (jj_scan_token(DATE)) return true; - return false; - } - - final private boolean jj_3_1203() { - if (jj_scan_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE)) return true; + if (jj_3R_151()) return true; return false; } - final private boolean jj_3_1202() { - if (jj_scan_token(CURRENT_PATH)) return true; + final private boolean jj_3_655() { + if (jj_3R_123()) return true; return false; } - final private boolean jj_3_1201() { - if (jj_scan_token(CURRENT)) return true; + final private boolean jj_3R_133() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_654()) { + jj_scanpos = xsp; + if (jj_3_655()) return true; + } return false; } - final private boolean jj_3R_267() { - if (jj_3R_146()) return true; + final private boolean jj_3_654() { + if (jj_3R_85()) return true; return false; } - final private boolean jj_3R_153() { + final private boolean jj_3R_123() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_355()) return true; - return false; - } - - final private boolean jj_3_1200() { - if (jj_scan_token(COVAR_SAMP)) return true; - return false; - } - - final private boolean jj_3_1199() { - if (jj_scan_token(CORRESPONDING)) return true; - return false; - } - - final private boolean jj_3_1198() { - if (jj_scan_token(CONTAINS)) return true; - return false; - } - - final private boolean jj_3_1197() { - if (jj_scan_token(COMMIT)) return true; - return false; - } - - final private boolean jj_3_1196() { - if (jj_scan_token(COALESCE)) return true; - return false; - } - - final private boolean jj_3_1195() { - if (jj_scan_token(CLASSIFIER)) return true; - return false; - } - - final private boolean jj_3_1194() { - if (jj_scan_token(CHARACTER_LENGTH)) return true; - return false; - } - - final private boolean jj_3_1193() { - if (jj_scan_token(CEILING)) return true; - return false; - } - - final private boolean jj_3_1192() { - if (jj_scan_token(CARDINALITY)) return true; - return false; - } - - final private boolean jj_3_1191() { - if (jj_scan_token(BOOLEAN)) return true; - return false; - } - - final private boolean jj_3_1190() { - if (jj_scan_token(BINARY)) return true; - return false; - } - - final private boolean jj_3_1189() { - if (jj_scan_token(BEGIN_FRAME)) return true; + if (jj_3R_357()) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_1188() { - if (jj_scan_token(AUTHORIZATION)) return true; + final private boolean jj_3_275() { + if (jj_scan_token(SPECIFIC)) return true; return false; } - final private boolean jj_3_1187() { - if (jj_scan_token(ASENSITIVE)) return true; + final private boolean jj_3R_172() { + if (jj_scan_token(TABLE)) return true; + if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_628() { + final private boolean jj_3_653() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_267()) return true; - return false; - } - - final private boolean jj_3_1186() { - if (jj_scan_token(ALLOW)) return true; - return false; - } - - final private boolean jj_3R_355() { - if (jj_3R_267()) return true; - return false; - } - - final private boolean jj_3_1185() { - if (jj_scan_token(TOTAL)) return true; - return false; - } - - final private boolean jj_3_1184() { - if (jj_scan_token(REFRESH)) return true; - return false; - } - - final private boolean jj_3_1183() { - if (jj_scan_token(ASYNC)) return true; - return false; - } - - final private boolean jj_3_1182() { - if (jj_scan_token(CONTINUOUS)) return true; - return false; - } - - final private boolean jj_3R_173() { - if (jj_3R_146()) return true; - if (jj_3R_114()) return true; - if (jj_3R_174()) return true; - return false; - } - - final private boolean jj_3_1181() { - if (jj_scan_token(PASSWORD)) return true; + if (jj_3R_85()) return true; return false; } - final private boolean jj_3_1180() { - if (jj_scan_token(INLINE_SIZE)) return true; + final private boolean jj_3R_357() { + if (jj_3R_85()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_653()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3_1179() { - if (jj_scan_token(VALUE_TYPE)) return true; + final private boolean jj_3_273() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_84()) return true; return false; } - final private boolean jj_3_1178() { - if (jj_scan_token(CACHE_GROUP)) return true; + final private boolean jj_3_274() { + if (jj_3R_153()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_273()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3_1177() { - if (jj_scan_token(AFFINITY_KEY)) return true; + final private boolean jj_3R_367() { + if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1176() { - if (jj_scan_token(ZONE)) return true; + final private boolean jj_3R_167() { + if (jj_scan_token(LPAREN)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_274()) jj_scanpos = xsp; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_1175() { - if (jj_scan_token(WRITE)) return true; + final private boolean jj_3R_85() { + if (jj_3R_271()) return true; return false; } - final private boolean jj_3_1174() { - if (jj_scan_token(WEEKS)) return true; + final private boolean jj_3_272() { + if (jj_3R_119()) return true; + if (jj_3R_179()) return true; return false; } - final private boolean jj_3_1173() { - if (jj_scan_token(VERSION)) return true; + final private boolean jj_3R_331() { + if (jj_3R_271()) return true; return false; } - final private boolean jj_3_1172() { - if (jj_scan_token(UTF16)) return true; + final private boolean jj_3R_273() { + if (jj_3R_151()) return true; return false; } - final private boolean jj_3_627() { - if (jj_scan_token(DOT)) return true; - if (jj_3R_266()) return true; + final private boolean jj_3R_178() { + if (jj_3R_151()) return true; + if (jj_3R_119()) return true; + if (jj_3R_179()) return true; return false; } - final private boolean jj_3_1171() { - if (jj_scan_token(USER_DEFINED_TYPE_CODE)) return true; + final private boolean jj_3R_272() { + if (jj_3R_271()) return true; return false; } - final private boolean jj_3_266() { + final private boolean jj_3_271() { if (jj_scan_token(COMMA)) return true; - if (jj_3R_173()) return true; - return false; - } - - final private boolean jj_3_1170() { - if (jj_scan_token(UNNAMED)) return true; - return false; - } - - final private boolean jj_3_1169() { - if (jj_scan_token(UNCONDITIONAL)) return true; - return false; - } - - final private boolean jj_3_1168() { - if (jj_scan_token(TYPE)) return true; - return false; - } - - final private boolean jj_3_1167() { - if (jj_scan_token(TRIGGER_NAME)) return true; - return false; - } - - final private boolean jj_3R_162() { - if (jj_3R_266()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_627()) { jj_scanpos = xsp; break; } - } - return false; - } - - final private boolean jj_3_1166() { - if (jj_scan_token(TRANSFORM)) return true; - return false; - } - - final private boolean jj_3_1165() { - if (jj_scan_token(TRANSACTIONS_ACTIVE)) return true; + if (jj_3R_178()) return true; return false; } - final private boolean jj_3R_354() { + final private boolean jj_3R_365() { if (jj_scan_token(LPAREN)) return true; - if (jj_3R_173()) return true; + if (jj_3R_178()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_266()) { jj_scanpos = xsp; break; } + if (jj_3_271()) { jj_scanpos = xsp; break; } } if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_1164() { - if (jj_scan_token(TIMESTAMP_TRUNC)) return true; + final private boolean jj_3_652() { + if (jj_3R_270()) return true; return false; } - final private boolean jj_3_1163() { - if (jj_scan_token(TIMESTAMPADD)) return true; + final private boolean jj_3_270() { + if (jj_scan_token(EXTEND)) return true; return false; } - final private boolean jj_3_1162() { - if (jj_scan_token(TIES)) return true; + final private boolean jj_3R_157() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_270()) jj_scanpos = xsp; + if (jj_3R_365()) return true; return false; } @@ -38003,7 +39374,7 @@ final private boolean jj_3_1162() { public boolean lookingAhead = false; private boolean jj_semLA; private int jj_gen; - final private int[] jj_la1 = new int[11]; + final private int[] jj_la1 = new int[10]; static private int[] jj_la1_0; static private int[] jj_la1_1; static private int[] jj_la1_2; @@ -38059,84 +39430,84 @@ final private boolean jj_3_1162() { jj_la1_25(); } private static void jj_la1_0() { - jj_la1_0 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_0 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_1() { - jj_la1_1 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_1 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_2() { - jj_la1_2 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_2 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_3() { - jj_la1_3 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_3 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x400,}; } private static void jj_la1_4() { - jj_la1_4 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1280,}; + jj_la1_4 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb00,}; } private static void jj_la1_5() { - jj_la1_5 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_5 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_6() { - jj_la1_6 = new int[] {0x0,0x0,0x0,0x0,0x100,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_6 = new int[] {0x0,0x0,0x0,0x0,0x1000,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_7() { - jj_la1_7 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_7 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_8() { - jj_la1_8 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x400,0x0,}; + jj_la1_8 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4000,0x0,}; } private static void jj_la1_9() { - jj_la1_9 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8000,0x0,}; + jj_la1_9 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x100000,0x0,}; } private static void jj_la1_10() { - jj_la1_10 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_10 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_11() { - jj_la1_11 = new int[] {0x0,0x0,0x0,0x0,0x400,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_11 = new int[] {0x0,0x0,0x0,0x0,0x8000,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_12() { - jj_la1_12 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_12 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_13() { - jj_la1_13 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_13 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x0,0x0,}; } private static void jj_la1_14() { - jj_la1_14 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20000000,0x0,}; + jj_la1_14 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_15() { - jj_la1_15 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_15 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,}; } private static void jj_la1_16() { - jj_la1_16 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_16 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_17() { - jj_la1_17 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_17 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_18() { - jj_la1_18 = new int[] {0x2000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_18 = new int[] {0x400000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_19() { - jj_la1_19 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ac00,}; + jj_la1_19 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3580000,}; } private static void jj_la1_20() { - jj_la1_20 = new int[] {0x0,0x0,0x0,0x0,0x40000,0x0,0x0,0x0,0x0,0x100,0x0,}; + jj_la1_20 = new int[] {0x0,0x0,0x0,0x0,0x10000000,0x0,0x0,0x0,0x20000,0x0,}; } private static void jj_la1_21() { - jj_la1_21 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_21 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_22() { - jj_la1_22 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_22 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_23() { - jj_la1_23 = new int[] {0x0,0x20,0x2000000,0x20080000,0x0,0x20,0x20,0x2000,0x2000,0x0,0x0,}; + jj_la1_23 = new int[] {0x0,0x8000,0x0,0x20000000,0x0,0x8000,0x8000,0x0,0x0,0x0,}; } private static void jj_la1_24() { - jj_la1_24 = new int[] {0x0,0x0,0x0,0x28,0x18,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_24 = new int[] {0x0,0x0,0x8,0x12080,0x6000,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_25() { - jj_la1_25 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_25 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } - final private JJCalls[] jj_2_rtns = new JJCalls[1713]; + final private JJCalls[] jj_2_rtns = new JJCalls[1774]; private boolean jj_rescan = false; private int jj_gc = 0; @@ -38149,7 +39520,7 @@ public IgniteSqlParserImpl(java.io.InputStream stream, String encoding) { token = new Token(); jj_ntk = -1; jj_gen = 0; - for (int i = 0; i < 11; i++) jj_la1[i] = -1; + for (int i = 0; i < 10; i++) jj_la1[i] = -1; for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls(); } @@ -38162,7 +39533,7 @@ public void ReInit(java.io.InputStream stream, String encoding) { token = new Token(); jj_ntk = -1; jj_gen = 0; - for (int i = 0; i < 11; i++) jj_la1[i] = -1; + for (int i = 0; i < 10; i++) jj_la1[i] = -1; for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls(); } @@ -38172,7 +39543,7 @@ public IgniteSqlParserImpl(java.io.Reader stream) { token = new Token(); jj_ntk = -1; jj_gen = 0; - for (int i = 0; i < 11; i++) jj_la1[i] = -1; + for (int i = 0; i < 10; i++) jj_la1[i] = -1; for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls(); } @@ -38182,7 +39553,7 @@ public void ReInit(java.io.Reader stream) { token = new Token(); jj_ntk = -1; jj_gen = 0; - for (int i = 0; i < 11; i++) jj_la1[i] = -1; + for (int i = 0; i < 10; i++) jj_la1[i] = -1; for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls(); } @@ -38191,7 +39562,7 @@ public IgniteSqlParserImpl(IgniteSqlParserImplTokenManager tm) { token = new Token(); jj_ntk = -1; jj_gen = 0; - for (int i = 0; i < 11; i++) jj_la1[i] = -1; + for (int i = 0; i < 10; i++) jj_la1[i] = -1; for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls(); } @@ -38200,7 +39571,7 @@ public void ReInit(IgniteSqlParserImplTokenManager tm) { token = new Token(); jj_ntk = -1; jj_gen = 0; - for (int i = 0; i < 11; i++) jj_la1[i] = -1; + for (int i = 0; i < 10; i++) jj_la1[i] = -1; for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls(); } @@ -38311,15 +39682,15 @@ private void jj_add_error_token(int kind, int pos) { public ParseException generateParseException() { jj_expentries.removeAllElements(); - boolean[] la1tokens = new boolean[809]; - for (int i = 0; i < 809; i++) { + boolean[] la1tokens = new boolean[820]; + for (int i = 0; i < 820; i++) { la1tokens[i] = false; } if (jj_kind >= 0) { la1tokens[jj_kind] = true; jj_kind = -1; } - for (int i = 0; i < 11; i++) { + for (int i = 0; i < 10; i++) { if (jj_la1[i] == jj_gen) { for (int j = 0; j < 32; j++) { if ((jj_la1_0[i] & (1<\"", "\"*\"", "\"/\"", "\"%\"", @@ -1606,12 +1628,12 @@ public interface IgniteSqlParserImplConstants { "\"\\f\"", "\"/*+\"", "\"*/\"", - "", + "", "\"/*\"", "", "", "", - "", + "", "", "", "", diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java index 26e97ac5d3594..a71ffda4ab063 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java @@ -31,6 +31,7 @@ import org.apache.calcite.sql.SqlExplain; import org.apache.calcite.sql.SqlExplainFormat; import org.apache.calcite.sql.SqlExplainLevel; +import org.apache.calcite.sql.SqlFunction; import org.apache.calcite.sql.SqlFunctionCategory; import org.apache.calcite.sql.SqlHint; import org.apache.calcite.sql.SqlIdentifier; @@ -49,9 +50,11 @@ import org.apache.calcite.sql.SqlJsonValueEmptyOrErrorBehavior; import org.apache.calcite.sql.SqlJsonValueReturning; import org.apache.calcite.sql.SqlKind; +import org.apache.calcite.sql.SqlLambda; import org.apache.calcite.sql.SqlLiteral; import org.apache.calcite.sql.SqlMatchRecognize; import org.apache.calcite.sql.SqlMerge; +import org.apache.calcite.sql.SqlMapTypeNameSpec; import org.apache.calcite.sql.SqlNode; import org.apache.calcite.sql.SqlNodeList; import org.apache.calcite.sql.SqlNumericLiteral; @@ -90,6 +93,7 @@ import org.apache.calcite.sql.parser.SqlParserUtil; import org.apache.calcite.sql.type.SqlTypeName; import org.apache.calcite.sql.validate.SqlConformance; +import org.apache.calcite.sql.validate.SqlConformanceEnum; import org.apache.calcite.util.Glossary; import org.apache.calcite.util.Pair; import org.apache.calcite.util.SourceStringReader; @@ -139,412 +143,412 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, switch (pos) { case 0: - if ((active0 & 0x7ffe000000000L) != 0L || (active2 & 0xffffffffffff0L) != 0L || (active3 & 0xfffc000fffffc000L) != 0L || (active4 & 0xfffffc3ffffffffL) != 0L || (active5 & 0xfff8000000000000L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xfffffffffffffeffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xdffffff000000fffL) != 0L || (active11 & 0x272af64fL) != 0L) - { - jjmatchedKind = 803; + if ((active11 & 0x2000000000000000L) != 0L) return 94; + if ((active12 & 0x400000L) != 0L) + return 63; + if ((active10 & 0x3fffffc00000L) != 0L) + { + jjmatchedKind = 814; + return 66; } - if ((active11 & 0x8000000000000L) != 0L) + if ((active12 & 0x1200020000L) != 0L) + return 92; + if ((active12 & 0x800000L) != 0L) return 95; - if ((active2 & 0xfff0000000000000L) != 0L || (active3 & 0x3fffL) != 0L || (active11 & 0x800L) != 0L) + if ((active2 & 0xff00000000000000L) != 0L || (active3 & 0x3ffffL) != 0L || (active11 & 0x200000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; return 16; } - if ((active10 & 0xffffff000L) != 0L) + if ((active0 & 0x7ffe000000000L) != 0L || (active2 & 0xffffffffffffe0L) != 0L || (active3 & 0xffc000fffffc0000L) != 0L || (active4 & 0xfffff87fffffffffL) != 0L || (active5 & 0xff00000000000001L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xfffffffffffdffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xffffc000003fffffL) != 0L || (active11 & 0x9cabd93f7fL) != 0L) { - jjmatchedKind = 803; - return 66; + jjmatchedKind = 814; + return 96; } - if ((active12 & 0x800L) != 0L) - return 63; - if ((active12 & 0x2400040L) != 0L) - return 92; - if ((active12 & 0x1000L) != 0L) + if ((active0 & 0xfff8001ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x1fL) != 0L || (active3 & 0x3fff0000000000L) != 0L || (active4 & 0x78000000000L) != 0L || (active5 & 0x1fffffffeL) != 0L || (active8 & 0x20000L) != 0L || (active11 & 0x635006c000L) != 0L || (active12 & 0x4000000L) != 0L) return 96; - if ((active10 & 0x2000000000000000L) != 0L) + if ((active12 & 0x200004L) != 0L) + return 97; + if ((active5 & 0xfffffe00000000L) != 0L || (active11 & 0x4000000L) != 0L) { - jjmatchedKind = 803; - return 1; + jjmatchedKind = 814; + return 98; } - if ((active0 & 0xfff8001ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xfL) != 0L || (active3 & 0x3fff000000000L) != 0L || (active4 & 0xf000003c00000000L) != 0L || (active5 & 0xfffffffL) != 0L || (active8 & 0x100L) != 0L || (active11 & 0x18d401b0L) != 0L || (active12 & 0x8000L) != 0L) - return 94; - if ((active5 & 0x7fffff0000000L) != 0L || (active11 & 0x10000L) != 0L) + if ((active11 & 0x80L) != 0L) { - jjmatchedKind = 803; - return 97; + jjmatchedKind = 814; + return 1; } - if ((active11 & 0x100000000000000L) != 0L || (active12 & 0x400L) != 0L) - return 98; - if ((active12 & 0x10L) != 0L) + if ((active12 & 0xc000L) != 0L) return 23; return -1; case 1: - if ((active12 & 0x2400000L) != 0L) + if ((active12 & 0x1200000000L) != 0L) return 90; - if ((active0 & 0xfff3fff801fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0x7ffff3efffffffffL) != 0L || (active4 & 0xefbffffbff000000L) != 0L || (active5 & 0xc67ff83fffffffffL) != 0L || (active6 & 0xffffffffffffffe1L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffcfffffffffffffL) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0x1f7eafddL) != 0L) + if ((active0 & 0x40007fe000000L) != 0L || (active3 & 0xc00000000000L) != 0L || (active4 & 0x80000000ffffff8L) != 0L || (active5 & 0x3000f80000000000L) != 0L || (active6 & 0x7c7L) != 0L || (active9 & 0x6000000000000000L) != 0L || (active11 & 0x8205408800L) != 0L) + return 96; + if ((active0 & 0xfff3fff801fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xffff3effffffffffL) != 0L || (active4 & 0xf7ffff7ff0000007L) != 0L || (active5 & 0xcfff07fffffffffdL) != 0L || (active6 & 0xfffffffffffff838L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0x9fffffffffffffffL) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0x7dfabf77ffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 1; } - return 94; + return 96; } - if ((active0 & 0x40007fe000000L) != 0L || (active3 & 0x80000c0000000000L) != 0L || (active4 & 0x40000000ffffffL) != 0L || (active5 & 0x398007c000000000L) != 0L || (active6 & 0x1eL) != 0L || (active9 & 0x30000000000000L) != 0L || (active11 & 0x20815022L) != 0L) - return 94; return -1; case 2: - if ((active0 & 0xfff3dfef79e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xe1ff2ffffff09fffL) != 0L || (active3 & 0x7fdffaeff87ff9ffL) != 0L || (active4 & 0xcfbfff43ffe81fffL) != 0L || (active5 & 0xe57ffbafffc07fe7L) != 0L || (active6 & 0xffffff701fffde3dL) != 0L || (active7 & 0xfffffc3ffffffff8L) != 0L || (active8 & 0x1ffe3fL) != 0L || (active9 & 0xffefffffeffffc00L) != 0L || (active10 & 0xdfffffffffffffffL) != 0L || (active11 & 0x2bfffffdL) != 0L) + if ((active0 & 0x201004167370L) != 0L || (active2 & 0xe00d000000f78000L) != 0L || (active3 & 0x200100078006001L) != 0L || (active4 & 0x1700007e0000L) != 0L || (active5 & 0x4000820007f00304L) != 0L || (active6 & 0x23f800087002L) != 0L || (active7 & 0xf000000001c0L) != 0L || (active8 & 0xffffffffc0038000L) != 0L || (active9 & 0x200007ffffL) != 0L || (active11 & 0x5000000080L) != 0L) + return 96; + if ((active0 & 0xfff3dfef79e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x1ff2ffffff087fffL) != 0L || (active3 & 0xfdffaeff87ff9ffeL) != 0L || (active4 & 0xf7ffe87ffe81fff7L) != 0L || (active5 & 0xafff75fff80ffcf9L) != 0L || (active6 & 0xffffdc07fff78fbcL) != 0L || (active7 & 0xffff0ffffffffe3fL) != 0L || (active8 & 0x3ffc7fffL) != 0L || (active9 & 0xdfffffdffff80000L) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0xaffffff77fL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 2; } - return 94; + return 96; } - if ((active0 & 0x201004167370L) != 0L || (active2 & 0x1e00d000000f6000L) != 0L || (active3 & 0x20010007800600L) != 0L || (active4 & 0x200000b80007e000L) != 0L || (active5 & 0x12000410003f8018L) != 0L || (active6 & 0x8fe00021c0L) != 0L || (active7 & 0x3c000000007L) != 0L || (active8 & 0xffffffffffe001c0L) != 0L || (active9 & 0x100003ffL) != 0L || (active10 & 0x2000000000000000L) != 0L || (active11 & 0x14000000L) != 0L) - return 94; return -1; case 3: - if ((active0 & 0x6631400000000000L) != 0L || (active1 & 0x83000000023feL) != 0L || (active2 & 0x51001e00005ff0L) != 0L || (active3 & 0xd00803400000c0L) != 0L || (active4 & 0x18ec03ff040000L) != 0L || (active5 & 0x6401e0a032000000L) != 0L || (active6 & 0x780200400c001e00L) != 0L || (active7 & 0x2800020080000000L) != 0L || (active8 & 0xb280L) != 0L || (active9 & 0x7ff4000000400L) != 0L || (active10 & 0xc78f4002f80008e0L) != 0L || (active11 & 0xc0201L) != 0L) - return 94; - if ((active2 & 0x400000000000000L) != 0L) - return 99; - if ((active0 & 0x99c29fef79e9ece0L) != 0L || (active1 & 0xfff7cfffffffdc01L) != 0L || (active2 & 0xf9ae2fe1fffe800fL) != 0L || (active3 & 0x7f0ff2ecbf7ffd3fL) != 0L || (active4 & 0xcfa7137000ebdfffL) != 0L || (active5 & 0x817e1b0fcdf77ff7L) != 0L || (active6 & 0x87fdff3fd3ffc1bdL) != 0L || (active7 & 0xd7fffdbf7ffffffeL) != 0L || (active8 & 0xffffffffffdf4d3fL) != 0L || (active9 & 0xffe800bfeffffbffL) != 0L || (active10 & 0x1870bffd07fff71fL) != 0L || (active11 & 0x3ff3fdfcL) != 0L) + if ((active0 & 0x99c29fef79e9ece0L) != 0L || (active1 & 0xffef9fffffffdc01L) != 0L || (active2 & 0x9ae2fe1fffeb001fL) != 0L || (active3 & 0xf0ff2ecbf7ffd3ffL) != 0L || (active4 & 0xf4e26e000ebdfff7L) != 0L || (active5 & 0x2fc361f9beeffef9L) != 0L || (active6 & 0xff7fcff4fff06fb0L) != 0L || (active7 & 0xffff6fdfffffffa1L) != 0L || (active8 & 0xffffffffbe9a7fafL) != 0L || (active9 & 0xd0017fdffff7ffffL) != 0L || (active10 & 0xc2fff41fffde3fffL) != 0L || (active11 & 0xffcff7f061L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 3; } - return 94; + return 96; } + if ((active0 & 0x6631400000000000L) != 0L || (active1 & 0x106000000023feL) != 0L || (active2 & 0x51001e000047fe0L) != 0L || (active3 & 0xd00803400000c00L) != 0L || (active4 & 0x31d807ff0400000L) != 0L || (active5 & 0x803c140640000000L) != 0L || (active6 & 0x8010030007800cL) != 0L || (active7 & 0x80200000001eL) != 0L || (active8 & 0x1650050L) != 0L || (active9 & 0xffe800000080000L) != 0L || (active10 & 0x3d000be00021c000L) != 0L || (active11 & 0x3008071eL) != 0L) + return 96; + if ((active2 & 0x4000000000000000L) != 0L) + return 99; return -1; case 4: - if ((active0 & 0x1c001e8cc00L) != 0L || (active1 & 0x4400000014401L) != 0L || (active2 & 0xa0800000c0000008L) != 0L || (active3 & 0x483f000083ec002L) != 0L || (active4 & 0xcba20240000001c0L) != 0L || (active5 & 0x1100629800087L) != 0L || (active6 & 0x240808100000008cL) != 0L || (active7 & 0x1e400060010000L) != 0L || (active8 & 0x20100L) != 0L || (active9 & 0x1c00103800L) != 0L || (active10 & 0x9012007d05030001L) != 0L || (active11 & 0x21801440L) != 0L) - return 94; - if ((active0 & 0xd9e29e2f780120e0L) != 0L || (active1 & 0xfff3affffffe9bfcL) != 0L || (active2 & 0x592e2ffd3ffe9fa7L) != 0L || (active3 & 0x7b0c02ecb7413dbdL) != 0L || (active4 & 0x4155933f8ebde3fL) != 0L || (active5 & 0x817ecb09c4777f70L) != 0L || (active6 & 0x83f5f72fd3ffdd31L) != 0L || (active7 & 0xd7e1bdbf1ffefffeL) != 0L || (active8 & 0xffffffffffdd4c3fL) != 0L || (active9 & 0xffeffca3efefc3ffL) != 0L || (active10 & 0xb68bf80f2fcf75eL) != 0L || (active11 & 0x1e73ebbcL) != 0L) + if ((active0 & 0xd9e29e2f780120e0L) != 0L || (active1 & 0xffe75ffffffe9bfcL) != 0L || (active2 & 0x92e2ffd3ffeb7f4fL) != 0L || (active3 & 0xb0c02ecb7413dbd5L) != 0L || (active4 & 0x82ab267f8ebde3f7L) != 0L || (active5 & 0x2fd961388eefee00L) != 0L || (active6 & 0xfd7dcbf4fff74e30L) != 0L || (active7 & 0xc37f6fc7ffbfffa0L) != 0L || (active8 & 0xffffffffba987fafL) != 0L || (active9 & 0xdff947dfdf87ffffL) != 0L || (active10 & 0xa2fe03cbf3debdffL) != 0L || (active11 & 0x79cfaef02dL) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 4; } - return 94; + return 96; } - if ((active2 & 0x400000000000000L) != 0L) + if ((active0 & 0x1c001e8cc00L) != 0L || (active1 & 0x8800000014401L) != 0L || (active2 & 0x800000c00000010L) != 0L || (active3 & 0x483f000083ec002aL) != 0L || (active4 & 0x7440480000001c00L) != 0L || (active5 & 0x2200c5300010f9L) != 0L || (active6 & 0x202040000002180L) != 0L || (active7 & 0x3c80001800400009L) != 0L || (active8 & 0x4020000L) != 0L || (active9 & 0x380020700000L) != 0L || (active10 & 0x4801f4140c000200L) != 0L || (active11 & 0x8600510240L) != 0L) + return 96; + if ((active2 & 0x4000000000000000L) != 0L) return 99; return -1; case 5: - if ((active0 & 0xd9c2878e79c02040L) != 0L || (active1 & 0xfff1afffe67e9bfcL) != 0L || (active2 & 0x192e07fd20fc9fa1L) != 0L || (active3 & 0x3909a0e4364834b0L) != 0L || (active4 & 0x87145933f8cbda3fL) != 0L || (active5 & 0x344b09c4147737L) != 0L || (active6 & 0x83b5f72bd37fdc18L) != 0L || (active7 & 0xc61c1dbd000efffeL) != 0L || (active8 & 0xffffffffffdc4433L) != 0L || (active9 & 0xffeffcb84f6da3ffL) != 0L || (active10 & 0xa28bfc0f038f35eL) != 0L || (active11 & 0x1e73efdcL) != 0L) + if ((active0 & 0x201821000100a0L) != 0L || (active1 & 0x4000019800000L) != 0L || (active2 & 0x28001f020000cL) != 0L || (active3 & 0x20602088101090d4L) != 0L || (active4 & 0x20000002004004L) != 0L || (active5 & 0x295000002c610800L) != 0L || (active6 & 0x1000010020004830L) != 0L || (active7 & 0xc3400087fc000000L) != 0L || (active8 & 0x2101823L) != 0L || (active9 & 0x74104800000L) != 0L || (active10 & 0x800b10100000L) != 0L || (active11 & 0x8005L) != 0L) + return 96; + if ((active2 & 0x4000000000000000L) != 0L) + return 99; + if ((active0 & 0xd9c2878e79c02040L) != 0L || (active1 & 0xffe35fffe67e9bfcL) != 0L || (active2 & 0x92e07fd20fcb7f43L) != 0L || (active3 & 0x909a0e4364834b01L) != 0L || (active4 & 0xe28b267f8cbda3f3L) != 0L || (active5 & 0x6896138828ee6f0L) != 0L || (active6 & 0xed7dcaf4dff70700L) != 0L || (active7 & 0x383f6f4003bfffa0L) != 0L || (active8 & 0xffffffffb888678cL) != 0L || (active9 & 0xdff9709edb47ffffL) != 0L || (active10 & 0xa2ff03c0e3cebdffL) != 0L || (active11 & 0x79cfbf7028L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 5; } - return 94; + return 96; } - if ((active0 & 0x201821000100a0L) != 0L || (active1 & 0x2000019800000L) != 0L || (active2 & 0x400028001f020006L) != 0L || (active3 & 0x420602088101090dL) != 0L || (active4 & 0x1000000200400L) != 0L || (active5 & 0x814a800001630840L) != 0L || (active6 & 0x40000400800121L) != 0L || (active7 & 0x11e1a0021ff00000L) != 0L || (active8 & 0x1080cL) != 0L || (active9 & 0x3a0824000L) != 0L || (active10 & 0x140002002c40400L) != 0L || (active11 & 0x20L) != 0L) - return 94; - if ((active2 & 0x400000000000000L) != 0L) - return 99; return -1; case 6: - if ((active0 & 0x40038e79c02040L) != 0L || (active1 & 0x11a7f8f73c9bfcL) != 0L || (active2 & 0x190007fc20c09fa4L) != 0L || (active3 & 0x390980c430481028L) != 0L || (active4 & 0x3100933f8839a0eL) != 0L || (active5 & 0x304b00c4147736L) != 0L || (active6 & 0x80317600025fd418L) != 0L || (active7 & 0xc41d198107c85f7eL) != 0L || (active8 & 0xfffffffff7dc400bL) != 0L || (active9 & 0xffe7fcbb4f6da3ffL) != 0L || (active10 & 0x288340f000e140L) != 0L || (active11 & 0x12136ff4L) != 0L) + if ((active0 & 0xd982840000000000L) != 0L || (active1 & 0xffc0100700420000L) != 0L || (active2 & 0x2e0001063c00003L) != 0L || (active3 & 0x2020060024900L) != 0L || (active4 & 0x808a000004840310L) != 0L || (active5 & 0x80012000400030L) != 0L || (active6 & 0xe1204af448020620L) != 0L || (active7 & 0x10f0201a82000L) != 0L || (active8 & 0x1000086006L) != 0L || (active9 & 0x1000000000000000L) != 0L || (active10 & 0xf20000e0483c00L) != 0L || (active11 & 0x3182002028L) != 0L) + return 96; + if ((active0 & 0x40038e79c02040L) != 0L || (active1 & 0x234ff8f73c9bfcL) != 0L || (active2 & 0x90007fc20c0b7f48L) != 0L || (active3 & 0x90980c4304810281L) != 0L || (active4 & 0x6201267f8839a0e3L) != 0L || (active5 & 0x6096018828ee6c0L) != 0L || (active6 & 0xc5d800097f50100L) != 0L || (active7 & 0x3a3e6041f217dfa0L) != 0L || (active8 & 0xffffffefb8801788L) != 0L || (active9 & 0xcff9769edb47ffffL) != 0L || (active10 & 0xa20d03c0038681ffL) != 0L || (active11 & 0x484dbfd000L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 6; } - return 94; + return 96; } - if ((active0 & 0xd982840000000000L) != 0L || (active1 & 0xffe0080700420000L) != 0L || (active2 & 0x2e0001063c0001L) != 0L || (active3 & 0x202006002490L) != 0L || (active4 & 0x8404500000484031L) != 0L || (active5 & 0x4000900020001L) != 0L || (active6 & 0x384812bd1200801L) != 0L || (active7 & 0x300043c0806a080L) != 0L || (active8 & 0x8000430L) != 0L || (active9 & 0x8000000000000L) != 0L || (active10 & 0xa003c800038121eL) != 0L || (active11 & 0xc608008L) != 0L) - return 94; - if ((active2 & 0x400000000000000L) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) return 99; return -1; case 7: - if ((active0 & 0x100000000002040L) != 0L || (active1 & 0x60000008000L) != 0L || (active2 & 0x100068400a00f20L) != 0L || (active3 & 0x101008400001000L) != 0L || (active4 & 0x12000020800L) != 0L || (active5 & 0x400084140030L) != 0L || (active6 & 0x201160000000408L) != 0L || (active7 & 0x400080100081e00L) != 0L || (active8 & 0x1a000001d09c4001L) != 0L || (active9 & 0x40008008000000L) != 0L || (active10 & 0x8014000000100L) != 0L || (active11 & 0x22004L) != 0L) - return 94; - if ((active2 & 0x400000000000000L) != 0L) - return 99; - if ((active0 & 0x1040038e79c00000L) != 0L || (active1 & 0xffd1a1fef73c1bfcL) != 0L || (active2 & 0x180c017820409085L) != 0L || (active3 & 0x3808804030480028L) != 0L || (active4 & 0x3100813f881922eL) != 0L || (active5 & 0x300b0040007706L) != 0L || (active6 & 0x80306003825fd010L) != 0L || (active7 & 0xc01d11b807c0417eL) != 0L || (active8 & 0xe5fffffe2740002aL) != 0L || (active9 & 0xffa7fc3b476da3ffL) != 0L || (active10 & 0x20a200f000e05cL) != 0L || (active11 & 0x12114ff0L) != 0L) + if ((active0 & 0x1040038e79c00000L) != 0L || (active1 & 0xffa341fef73c1bfcL) != 0L || (active2 & 0x80c01782040b030bL) != 0L || (active3 & 0x8088040304800281L) != 0L || (active4 & 0x6201027f881922e3L) != 0L || (active5 & 0x6016008000ee0c0L) != 0L || (active6 & 0xc1800e097f40400L) != 0L || (active7 & 0x3a2e6e01f0105fa0L) != 0L || (active8 & 0xfffffc4e80005580L) != 0L || (active9 & 0x4ff8768edb47ffcbL) != 0L || (active10 & 0x828803c00380b9ffL) != 0L || (active11 & 0x48453fc000L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 7; } - return 94; + return 96; } + if ((active0 & 0x100000000002040L) != 0L || (active1 & 0xe0000008000L) != 0L || (active2 & 0x100068400a007c40L) != 0L || (active3 & 0x1010084000010000L) != 0L || (active4 & 0x240000208000L) != 0L || (active5 & 0x8001082800600L) != 0L || (active6 & 0x8045800000010100L) != 0L || (active7 & 0x10004002078000L) != 0L || (active8 & 0x3a138800208L) != 0L || (active9 & 0x8001001000000034L) != 0L || (active10 & 0x2005000000060000L) != 0L || (active11 & 0x8801000L) != 0L) + return 96; + if ((active2 & 0x4000000000000000L) != 0L) + return 99; return -1; case 8: - if ((active0 & 0x1040018869800000L) != 0L || (active1 & 0xffc121fe07001804L) != 0L || (active2 & 0x100c017820408e85L) != 0L || (active3 & 0x2000800010080000L) != 0L || (active4 & 0x100813f8001200L) != 0L || (active5 & 0x30000040007706L) != 0L || (active6 & 0x10040382001010L) != 0L || (active7 & 0x1d013803c04166L) != 0L || (active8 & 0xf59ffff62758002aL) != 0L || (active9 & 0x87a6081b016583ffL) != 0L || (active10 & 0x202000f000c05cL) != 0L || (active11 & 0x121047d0L) != 0L) + if ((active0 & 0x1040018869800000L) != 0L || (active1 & 0xff8245fe07001804L) != 0L || (active2 & 0xc0178204087a0bL) != 0L || (active3 & 0x8000100800001L) != 0L || (active4 & 0x201027f80012002L) != 0L || (active5 & 0x6000008000ee0c0L) != 0L || (active6 & 0x40100e080040400L) != 0L || (active7 & 0x3a0c4e00f0105980L) != 0L || (active8 & 0x3fffec4eb0005400L) != 0L || (active9 & 0x4c103602cb07ffebL) != 0L || (active10 & 0x808003c00300b90fL) != 0L || (active11 & 0x48411f4000L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 8; } - return 94; + return 96; } - if ((active0 & 0x20610400000L) != 0L || (active1 & 0x108000f03c03f8L) != 0L || (active2 & 0x800000000001000L) != 0L || (active3 & 0x1808004020400028L) != 0L || (active4 & 0x30000000081802eL) != 0L || (active5 & 0xb0000000000L) != 0L || (active6 & 0x80206000005fc000L) != 0L || (active7 & 0xc000108004000018L) != 0L || (active8 & 0x60000800000000L) != 0L || (active9 & 0x7801f42046082000L) != 0L || (active10 & 0x820000002000L) != 0L || (active11 & 0x10820L) != 0L) - return 94; + if ((active0 & 0x20610400000L) != 0L || (active1 & 0x210000f03c03f8L) != 0L || (active2 & 0x8000000000030100L) != 0L || (active3 & 0x8080040204000280L) != 0L || (active4 & 0x60000000081802e1L) != 0L || (active5 & 0x1600000000000L) != 0L || (active6 & 0x818000017f00000L) != 0L || (active7 & 0x22200100000620L) != 0L || (active8 & 0xc000100000000180L) != 0L || (active9 & 0x3e8408c10400000L) != 0L || (active10 & 0x2080000008000f0L) != 0L || (active11 & 0x4208000L) != 0L) + return 96; return -1; case 9: - if ((active0 & 0x1040018801800000L) != 0L || (active1 & 0xffc02100c73811f4L) != 0L || (active2 & 0x100c006800000e05L) != 0L || (active3 & 0x3000800010080000L) != 0L || (active4 & 0x2000000e0011200L) != 0L || (active5 & 0x30000000003706L) != 0L || (active6 & 0x403821f8000L) != 0L || (active7 & 0x15003803c00044L) != 0L || (active8 & 0xf59ffff22058002aL) != 0L || (active9 & 0xc7a7e013046103ffL) != 0L || (active10 & 0x200000f000c01cL) != 0L || (active11 & 0x100042d0L) != 0L) + if ((active0 & 0x468000000L) != 0L || (active1 & 0x200fe00000a00L) != 0L || (active2 & 0x110204080200L) != 0L || (active4 & 0x201027180000000L) != 0L || (active5 & 0x400800080000L) != 0L || (active6 & 0x400000000040400L) != 0L || (active7 & 0x1000400000104880L) != 0L || (active8 & 0x80e00000000L) != 0L || (active9 & 0x10100209000000L) != 0L || (active10 & 0x80000000008020L) != 0L || (active11 & 0x840140000L) != 0L) + return 96; + if ((active0 & 0x1040018801800000L) != 0L || (active1 & 0xff804500c73811f4L) != 0L || (active2 & 0xc006800000780bL) != 0L || (active3 & 0x8000100800001L) != 0L || (active4 & 0x4000000e00112003L) != 0L || (active5 & 0x60000000006e0c0L) != 0L || (active6 & 0x100e087e00000L) != 0L || (active7 & 0x2a0c0e00f0001100L) != 0L || (active8 & 0x3fffe440b0005400L) != 0L || (active9 & 0x4fc02608c207ffebL) != 0L || (active10 & 0x800003c00300398fL) != 0L || (active11 & 0x40010b4000L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 9; } - return 94; + return 96; } - if ((active0 & 0x468000000L) != 0L || (active1 & 0x100fe00000a00L) != 0L || (active2 & 0x11020408080L) != 0L || (active4 & 0x10081318000000L) != 0L || (active5 & 0x20040004000L) != 0L || (active6 & 0x10000000001010L) != 0L || (active7 & 0x8010000004122L) != 0L || (active8 & 0x407000000L) != 0L || (active9 & 0x1000080801048000L) != 0L || (active10 & 0x200000000040L) != 0L || (active11 & 0x2100500L) != 0L) - return 94; return -1; case 10: - if ((active0 & 0x1000010801800000L) != 0L || (active1 & 0xf7c02074863811f0L) != 0L || (active2 & 0x100c002000000e01L) != 0L || (active3 & 0x2000800000000000L) != 0L || (active4 & 0x200000010011000L) != 0L || (active5 & 0x30000000000706L) != 0L || (active6 & 0x403801f8000L) != 0L || (active7 & 0x14003803c00040L) != 0L || (active8 & 0x951fffe000580022L) != 0L || (active9 & 0x4027e000042001ffL) != 0L || (active10 & 0x200000f000801cL) != 0L || (active11 & 0x10000050L) != 0L) + if ((active0 & 0x40008000000000L) != 0L || (active1 & 0x1000018041000004L) != 0L || (active2 & 0x48000000008L) != 0L || (active3 & 0x100800000L) != 0L || (active4 & 0xe00002001L) != 0L || (active5 & 0x60000L) != 0L || (active6 & 0x80000000L) != 0L || (active7 & 0x204000000000100L) != 0L || (active8 & 0x244000001000L) != 0L || (active9 & 0x2600820400c1L) != 0L || (active10 & 0x100010fL) != 0L || (active11 & 0x10a0000L) != 0L) + return 96; + if ((active0 & 0x1000010801800000L) != 0L || (active1 & 0xef804474863811f0L) != 0L || (active2 & 0xc0020000007803L) != 0L || (active3 & 0x8000000000001L) != 0L || (active4 & 0x4000000100110002L) != 0L || (active5 & 0x60000000000e0c0L) != 0L || (active6 & 0x100e007e00000L) != 0L || (active7 & 0x28080e00f0001000L) != 0L || (active8 & 0x3fffc000b0004400L) != 0L || (active9 & 0x4fc000084003ff2aL) != 0L || (active10 & 0x800003c002003880L) != 0L || (active11 & 0x4000014000L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 10; } - return 94; + return 96; } - if ((active0 & 0x40008000000000L) != 0L || (active1 & 0x800018041000004L) != 0L || (active2 & 0x4800000004L) != 0L || (active3 & 0x1000000010080000L) != 0L || (active4 & 0xe0000200L) != 0L || (active5 & 0x3000L) != 0L || (active6 & 0x2000000L) != 0L || (active7 & 0x1000000000004L) != 0L || (active8 & 0x6080001220000008L) != 0L || (active9 & 0x8780001300410200L) != 0L || (active10 & 0x4000L) != 0L || (active11 & 0x4280L) != 0L) - return 94; return -1; case 11: - if ((active0 & 0x10801800000L) != 0L || (active1 & 0x91402074863801f0L) != 0L || (active2 & 0x100c002000000e00L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000090000000L) != 0L || (active5 & 0x10000000000304L) != 0L || (active6 & 0x401801f8000L) != 0L || (active7 & 0x4002803c00040L) != 0L || (active8 & 0x901fffe000080000L) != 0L || (active9 & 0x4727c0000420013eL) != 0L || (active10 & 0xf0008014L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000000000000L) != 0L || (active1 & 0xcd00000000001000L) != 0L || (active2 & 0x2L) != 0L || (active3 & 0x8000000000000L) != 0L || (active4 & 0x110000L) != 0L || (active5 & 0x400000000008040L) != 0L || (active6 & 0x8000000000L) != 0L || (active7 & 0x2008040000000000L) != 0L || (active8 & 0xa0004400L) != 0L || (active9 & 0x4000000001820aL) != 0L || (active10 & 0x8000000000001000L) != 0L || (active11 & 0x4000L) != 0L) + return 96; + if ((active0 & 0x10801800000L) != 0L || (active1 & 0x22804474863801f0L) != 0L || (active2 & 0xc0020000007801L) != 0L || (active3 & 0x1L) != 0L || (active4 & 0x4000000900000002L) != 0L || (active5 & 0x200000000006080L) != 0L || (active6 & 0x1006007e00000L) != 0L || (active7 & 0x8000a00f0001000L) != 0L || (active8 & 0x3fffc00010000000L) != 0L || (active9 & 0x4f80000840027d20L) != 0L || (active10 & 0x3c00200288eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 11; } - return 94; + return 96; } - if ((active0 & 0x1000000000000000L) != 0L || (active1 & 0x6680000000001000L) != 0L || (active2 & 0x1L) != 0L || (active3 & 0x800000000000L) != 0L || (active4 & 0x11000L) != 0L || (active5 & 0x20000000000402L) != 0L || (active6 & 0x200000000L) != 0L || (active7 & 0x10001000000000L) != 0L || (active8 & 0x500000000500022L) != 0L || (active9 & 0x2000000000c1L) != 0L || (active10 & 0x20000000000008L) != 0L || (active11 & 0x10L) != 0L) - return 94; return -1; case 12: - if ((active0 & 0x800000000L) != 0L || (active1 & 0x200000000000L) != 0L || (active2 & 0x1000002000000200L) != 0L || (active4 & 0x10000000L) != 0L || (active8 & 0x1000000000080000L) != 0L || (active9 & 0x2400000000108L) != 0L || (active10 & 0x8000L) != 0L) - return 94; - if ((active0 & 0x10001800000L) != 0L || (active1 & 0xd1400074863801f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000080000000L) != 0L || (active5 & 0x10000000000304L) != 0L || (active6 & 0x401801f8000L) != 0L || (active7 & 0x4002803c00040L) != 0L || (active8 & 0x801fffe000000000L) != 0L || (active9 & 0x4725800004200036L) != 0L || (active10 & 0xf0000014L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x10001800000L) != 0L || (active1 & 0xa2800474863801f0L) != 0L || (active2 & 0xc0000000007001L) != 0L || (active4 & 0x4000000800000002L) != 0L || (active5 & 0x200000000006080L) != 0L || (active6 & 0x1006007e00000L) != 0L || (active7 & 0x8000a00f0001000L) != 0L || (active8 & 0x3fffc00000000000L) != 0L || (active9 & 0x4b00000840006d00L) != 0L || (active10 & 0x3c00000288eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 12; - return 94; + return 96; } + if ((active0 & 0x800000000L) != 0L || (active1 & 0x400000000000L) != 0L || (active2 & 0x20000000800L) != 0L || (active3 & 0x1L) != 0L || (active4 & 0x100000000L) != 0L || (active8 & 0x10000000L) != 0L || (active9 & 0x480000000021020L) != 0L || (active10 & 0x2000000L) != 0L) + return 96; return -1; case 13: - if ((active1 & 0x1000000000100000L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000080000000L) != 0L || (active5 & 0x100L) != 0L || (active6 & 0x40000018000L) != 0L || (active7 & 0x4002000000040L) != 0L || (active9 & 0x800000000024L) != 0L || (active10 & 0x10L) != 0L) - return 94; - if ((active0 & 0x10001800000L) != 0L || (active1 & 0xc1400074862801f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active5 & 0x10000000000204L) != 0L || (active6 & 0x1801e0000L) != 0L || (active7 & 0x803c00000L) != 0L || (active8 & 0x801fffe000000000L) != 0L || (active9 & 0x4725000004200012L) != 0L || (active10 & 0xf0000004L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x10001800000L) != 0L || (active1 & 0x82800474862801f0L) != 0L || (active2 & 0xc0000000003001L) != 0L || (active5 & 0x200000000004080L) != 0L || (active6 & 0x6007800000L) != 0L || (active7 & 0x200f0000000L) != 0L || (active8 & 0x3fffc00000000000L) != 0L || (active9 & 0x4a00000840002500L) != 0L || (active10 & 0x3c00000088eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 13; - return 94; + return 96; } + if ((active1 & 0x2000000000100000L) != 0L || (active2 & 0x4000L) != 0L || (active4 & 0x4000000800000002L) != 0L || (active5 & 0x2000L) != 0L || (active6 & 0x1000000600000L) != 0L || (active7 & 0x800080000001000L) != 0L || (active9 & 0x100000000004800L) != 0L || (active10 & 0x2000L) != 0L) + return 96; return -1; case 14: - if ((active0 & 0x1800000L) != 0L || (active1 & 0xc1000050862800f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active5 & 0x10000000000200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x3400000L) != 0L || (active8 & 0x8017ffe000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x10000000000L) != 0L || (active1 & 0x80042400000100L) != 0L || (active5 & 0x80L) != 0L || (active6 & 0x6000000000L) != 0L || (active7 & 0x20020000000L) != 0L || (active8 & 0x1000000000000000L) != 0L || (active9 & 0x4a00000840002000L) != 0L || (active10 & 0x880L) != 0L) + return 96; + if ((active0 & 0x1800000L) != 0L || (active1 & 0x82000050862800f0L) != 0L || (active2 & 0xc0000000003001L) != 0L || (active5 & 0x200000000004000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0xd0000000L) != 0L || (active8 & 0x2fffc00000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 14; - return 94; + return 96; } - if ((active0 & 0x10000000000L) != 0L || (active1 & 0x40002400000100L) != 0L || (active5 & 0x4L) != 0L || (active6 & 0x180000000L) != 0L || (active7 & 0x800800000L) != 0L || (active8 & 0x8000000000000L) != 0L || (active9 & 0x4025000004200010L) != 0L || (active10 & 0x4L) != 0L) - return 94; return -1; case 15: - if ((active0 & 0x800000L) != 0L || (active1 & 0x86200010L) != 0L || (active2 & 0xc000000000000L) != 0L || (active8 & 0x1001e000000000L) != 0L) - return 94; - if ((active0 & 0x1000000L) != 0L || (active1 & 0xc1000050000800e0L) != 0L || (active2 & 0xc00L) != 0L || (active5 & 0x10000000000200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x3400000L) != 0L || (active8 & 0x8007fe0000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x800000L) != 0L || (active1 & 0x86200010L) != 0L || (active2 & 0xc0000000000000L) != 0L || (active8 & 0x2003c00000000000L) != 0L) + return 96; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x82000050000800e0L) != 0L || (active2 & 0x3001L) != 0L || (active5 & 0x200000000004000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0xd0000000L) != 0L || (active8 & 0xffc000000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 15; } - return 94; + return 96; } return -1; case 16: - if ((active1 & 0x4000004000080000L) != 0L || (active5 & 0x10000000000000L) != 0L || (active7 & 0x2000000L) != 0L || (active8 & 0x70e0000000000L) != 0L) - return 94; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000010040000e0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x8000f1c000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000010040000e0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x1e3800000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 16; } - return 94; + return 96; } + if ((active1 & 0x8000004000080000L) != 0L || (active5 & 0x200000000000000L) != 0L || (active7 & 0x80000000L) != 0L || (active8 & 0xe1c000000000000L) != 0L) + return 96; return -1; case 17: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000000040000a0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x8002bdc000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000000040000a0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x57b800000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 17; - return 94; + return 96; } - if ((active1 & 0x1000000040L) != 0L || (active8 & 0x400000000000L) != 0L) - return 94; + if ((active1 & 0x1000000040L) != 0L || (active8 & 0x80000000000000L) != 0L) + return 96; return -1; case 18: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000000040000a0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x20dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active8 & 0x160000000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x2L) != 0L) + return 96; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000000040000a0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x41b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 18; } - return 94; + return 96; } - if ((active8 & 0x8000b00000000000L) != 0L || (active9 & 0x100000000000002L) != 0L) - return 94; return -1; case 19: - if ((active1 & 0x80L) != 0L || (active5 & 0x200L) != 0L || (active7 & 0x400000L) != 0L) - return 94; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x8100000004000020L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1000000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x80L) != 0L || (active5 & 0x4000L) != 0L || (active7 & 0x10000000L) != 0L) + return 96; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x200000004000020L) != 0L || (active2 & 0x80000000003001L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x40000000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 19; - return 94; + return 96; } return -1; case 20: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0xc00L) != 0L || (active6 & 0x1e0000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020L) != 0L || (active2 & 0x80000000000000L) != 0L || (active7 & 0x40000000L) != 0L) + return 96; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x3001L) != 0L || (active6 & 0x7800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 20; - return 94; + return 96; } - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020L) != 0L || (active2 & 0x8000000000000L) != 0L || (active7 & 0x1000000L) != 0L) - return 94; return -1; case 21: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x1e0000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x90000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active2 & 0x1000L) != 0L || (active10 & 0x18000000004L) != 0L) + return 96; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x7800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x24000000008L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 21; - return 94; + return 96; } - if ((active2 & 0x400L) != 0L || (active9 & 0x200000000000000L) != 0L || (active10 & 0x60000000L) != 0L) - return 94; return -1; case 22: - if ((active6 & 0x80000L) != 0L) - return 94; - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x160000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x90000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x5800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x24000000008L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 22; - return 94; + return 96; } + if ((active6 & 0x2000000L) != 0L) + return 96; return -1; case 23: - if ((active8 & 0x4000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x80000000L) != 0L) - return 94; - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x160000L) != 0L || (active8 & 0x22d8000000000L) != 0L || (active10 & 0x10000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x5800000L) != 0L || (active8 & 0x45b000000000000L) != 0L || (active10 & 0x4000000000L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 23; - return 94; + return 96; } + if ((active8 & 0x800000000000L) != 0L || (active10 & 0x20000000008L) != 0L) + return 96; return -1; case 24: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x60000L) != 0L || (active8 & 0x22d8000000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active6 & 0x4000000L) != 0L || (active10 & 0x4000000000L) != 0L) + return 96; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x1800000L) != 0L || (active8 & 0x45b000000000000L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 24; - return 94; + return 96; } - if ((active6 & 0x100000L) != 0L || (active10 & 0x10000000L) != 0L) - return 94; return -1; case 25: - if ((active6 & 0x60000L) != 0L || (active8 & 0x2018000000000L) != 0L || (active11 & 0x40L) != 0L) - return 94; - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active8 & 0x2c0000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active6 & 0x1800000L) != 0L || (active8 & 0x403000000000000L) != 0L || (active11 & 0x10000L) != 0L) + return 96; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active8 & 0x58000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 25; - return 94; + return 96; } return -1; case 26: - if ((active2 & 0x800L) != 0L || (active8 & 0xc0000000000L) != 0L) - return 94; - if ((active1 & 0x8100000000000000L) != 0L || (active8 & 0x200000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active8 & 0x40000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 26; - return 94; + return 96; } + if ((active2 & 0x2000L) != 0L || (active8 & 0x18000000000000L) != 0L) + return 96; return -1; case 27: - if ((active1 & 0x8100000000000000L) != 0L || (active8 & 0x200000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active8 & 0x40000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 27; - return 94; + return 96; } return -1; case 28: - if ((active1 & 0x8100000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active8 & 0x40000000000000L) != 0L) + return 96; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 28; - return 94; + return 96; } - if ((active8 & 0x200000000000L) != 0L) - return 94; return -1; case 29: - if ((active1 & 0x8100000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 29; - return 94; + return 96; } return -1; case 30: - if ((active1 & 0x8000000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L) + return 96; + if ((active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 30; - return 94; + return 96; } - if ((active1 & 0x100000000000000L) != 0L) - return 94; return -1; case 31: - if ((active1 & 0x8000000000000000L) != 0L) - return 94; - if ((active11 & 0x10000000L) != 0L) + if ((active2 & 0x1L) != 0L) + return 96; + if ((active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 31; - return 94; + return 96; } return -1; case 32: - if ((active11 & 0x10000000L) != 0L) + if ((active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 32; - return 94; + return 96; } return -1; default : @@ -575,146 +579,147 @@ private final int jjMoveStringLiteralDfa0_1() { case 33: jjmatchedKind = 1; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L); case 34: - return jjStartNfaWithStates_1(0, 780, 96); + return jjStartNfaWithStates_1(0, 791, 95); case 36: - return jjStartNfaWithStates_1(0, 783, 94); + return jjStartNfaWithStates_1(0, 794, 96); case 37: - return jjStopAtPos(0, 775); + return jjStopAtPos(0, 786); case 39: - return jjStartNfaWithStates_1(0, 779, 63); + return jjStartNfaWithStates_1(0, 790, 63); case 40: - return jjStopAtPos(0, 749); + return jjStopAtPos(0, 759); case 41: - return jjStopAtPos(0, 750); + return jjStopAtPos(0, 760); case 42: - jjmatchedKind = 773; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000L); + jjmatchedKind = 784; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); case 43: - return jjStopAtPos(0, 771); + return jjStopAtPos(0, 781); case 44: - return jjStopAtPos(0, 761); + return jjStopAtPos(0, 771); case 45: - return jjStartNfaWithStates_1(0, 772, 23); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L); case 46: - jjmatchedKind = 760; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L); + jjmatchedKind = 770; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L); case 47: - jjmatchedKind = 774; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2400000L); + jjmatchedKind = 785; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1200000000L); case 58: - jjmatchedKind = 766; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L); + jjmatchedKind = 776; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 59: - return jjStopAtPos(0, 759); + return jjStopAtPos(0, 769); case 60: - jjmatchedKind = 764; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000000000L, 0x2L); + jjmatchedKind = 774; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa00L); case 61: - jjmatchedKind = 762; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200L); + jjmatchedKind = 772; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); case 62: - jjmatchedKind = 763; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1L); + jjmatchedKind = 773; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L); case 63: - return jjStopAtPos(0, 765); + return jjStopAtPos(0, 775); case 91: - return jjStopAtPos(0, 757); + return jjStopAtPos(0, 767); case 93: - return jjStopAtPos(0, 758); + return jjStopAtPos(0, 768); case 94: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 793); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_1(0x1ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8800030L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x1ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x220000c000L, 0x0L); case 66: case 98: - return jjMoveStringLiteralDfa1_1(0x7ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x7ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000L, 0x0L); case 67: case 99: jjmatchedKind = 51; - return jjMoveStringLiteralDfa1_1(0xfff0000000000000L, 0xffffffffffffffffL, 0xfL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x500180L, 0x0L); + return jjMoveStringLiteralDfa1_1(0xfff0000000000000L, 0xffffffffffffffffL, 0x1fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140060000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0xffffffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0xffffffffffffe0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0xfff0000000000000L, 0x3fffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0xff00000000000000L, 0x3ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L, 0x0L); case 70: case 102: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0xfffffc000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0xfffffc0000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 71: case 103: - jjmatchedKind = 228; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x3ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + jjmatchedKind = 232; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x3ffe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 72: case 104: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0xfc000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0xfc0000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0xff00000000000000L, 0xffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x5002L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0xf000000000000000L, 0xfffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1400800L, 0x0L); case 74: case 106: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x3ff000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x7ff0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: - jjmatchedKind = 290; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x3800000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); + jjmatchedKind = 295; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x70000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xfffffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0x1L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L, 0x0L); case 77: case 109: - jjmatchedKind = 316; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0xfffffffL, 0x0L, 0x0L, 0x100L, 0x0L, 0x0L, 0x10000000L, 0x0L); + jjmatchedKind = 321; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1fffffffcL, 0x0L, 0x0L, 0x20000L, 0x0L, 0x0L, 0x4000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffffe00000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 79: case 111: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff8000000000000L, 0x1fffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xff00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffffffffe000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x22000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffffffffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8800000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x380000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfc00000000000000L, 0x7ffffffffffL, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffffffffffffL, 0x0L, 0x0L, 0x0L, 0x1000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0xfffffffffffffeffL, 0x3ffffffffL, 0x0L, 0x2280000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffe000000000000L, 0xfffffffffffdffffL, 0x7ffffffffffL, 0x0L, 0x8a0000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffffffc00000000L, 0xfffL, 0x20000004L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0x3fffffL, 0x8000001000L, 0x0L); case 85: case 117: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffff000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffc00000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7ff000000000L, 0x400L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffc00000000000L, 0x100000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1fff800000000000L, 0x40L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfe00000000000000L, 0x1007fL, 0x0L); case 88: case 120: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000000000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80L, 0x0L); case 89: case 121: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x300L, 0x0L); case 90: case 122: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L, 0x0L); case 123: - return jjStartNfaWithStates_1(0, 755, 95); + return jjStartNfaWithStates_1(0, 765, 94); case 124: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 125: - return jjStopAtPos(0, 756); + return jjStopAtPos(0, 766); case 126: return jjStopAtPos(0, 2); default : @@ -731,128 +736,130 @@ private final int jjMoveStringLiteralDfa1_1(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x2000000L) != 0L) + if ((active12 & 0x1000000000L) != 0L) { - jjmatchedKind = 793; + jjmatchedKind = 804; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x400000L); + return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x200000000L); case 46: - if ((active12 & 0x400L) != 0L) - return jjStopAtPos(1, 778); + if ((active12 & 0x200000L) != 0L) + return jjStopAtPos(1, 789); break; case 47: - if ((active12 & 0x800000L) != 0L) - return jjStopAtPos(1, 791); + if ((active12 & 0x400000000L) != 0L) + return jjStopAtPos(1, 802); break; case 58: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); + if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; case 61: - if ((active11 & 0x8000000000000000L) != 0L) - return jjStopAtPos(1, 767); - else if ((active12 & 0x1L) != 0L) - return jjStopAtPos(1, 768); - else if ((active12 & 0x4L) != 0L) - return jjStopAtPos(1, 770); + if ((active12 & 0x200L) != 0L) + return jjStopAtPos(1, 777); + else if ((active12 & 0x400L) != 0L) + return jjStopAtPos(1, 778); + else if ((active12 & 0x1000L) != 0L) + return jjStopAtPos(1, 780); break; case 62: - if ((active12 & 0x2L) != 0L) - return jjStopAtPos(1, 769); - else if ((active12 & 0x200L) != 0L) - return jjStopAtPos(1, 777); + if ((active12 & 0x800L) != 0L) + return jjStopAtPos(1, 779); + else if ((active12 & 0x8000L) != 0L) + return jjStopAtPos(1, 783); + else if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); break; case 65: case 97: - return jjMoveStringLiteralDfa2_1(active0, 0x1ff0000000000000L, active1, 0L, active2, 0x10000000007ff0L, active3, 0x4000000004000L, active4, 0xe0001fc001000000L, active5, 0x1f000001fL, active6, 0xc0000001fffe000L, active7, 0x180000000000L, active8, 0L, active9, 0x1c00000000L, active10, 0xff000000000L, active11, 0x10022788L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x1ff0000000000000L, active1, 0L, active2, 0x10000000007ffe0L, active3, 0x40000000040000L, active4, 0x3f80010000000L, active5, 0x3e000003fcL, active6, 0x7fff80000L, active7, 0x3e000000000003L, active8, 0L, active9, 0x380000000000L, active10, 0x3fc00000000000L, active11, 0x40089e2000L, active12, 0L); case 66: case 98: - return jjMoveStringLiteralDfa2_1(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_1(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x70000600000000L, active6, 0L, active7, 0x3fe00000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0xe0000c000000000L, active6, 0L, active7, 0x7fc0000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L, active12, 0L); case 68: case 100: - return jjMoveStringLiteralDfa2_1(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x1000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_1(active0, 0xe00007e000000000L, active1, 0L, active2, 0x3fffff8000L, active3, 0x1e000008000L, active4, 0x3e03800000000L, active5, 0x3800000fe0L, active6, 0xf000000fe0000000L, active7, 0xffc000001fffffffL, active8, 0xffL, active9, 0x2000000000L, active10, 0xc003b00000001000L, active11, 0x4200004L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0xe00007e000000000L, active1, 0L, active2, 0x3fffff80000L, active3, 0x1e0000080000L, active4, 0x7c070000000000L, active5, 0x7000001fc00L, active6, 0x3f800000000L, active7, 0x80000007fffffffcL, active8, 0x1ffffL, active9, 0x400000000000L, active10, 0xec0000000400000L, active11, 0x1080001300L, active12, 0L); case 70: case 102: - if ((active5 & 0x80000000000000L) != 0L) + if ((active5 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 375; + jjmatchedKind = 380; jjmatchedPos = 1; } - else if ((active11 & 0x2L) != 0L) - return jjStartNfaWithStates_1(1, 705, 94); - return jjMoveStringLiteralDfa2_1(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L, active12, 0L); + else if ((active11 & 0x800L) != 0L) + return jjStartNfaWithStates_1(1, 715, 96); + return jjMoveStringLiteralDfa2_1(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000L, active12, 0L); case 71: case 103: - return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x200000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x7ffL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200L, active9, 0xc000000000L, active10, 0x1c000000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x7ffL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x40000L, active9, 0x1800000000000L, active10, 0x7000000000000000L, active11, 0L, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_1(active0, 0x380000000000L, active1, 0L, active2, 0x7c000000000L, active3, 0x80000000f0000L, active4, 0x3c000000000000L, active5, 0x7f000L, active6, 0x1000000000L, active7, 0x20000000L, active8, 0x1d00L, active9, 0xfff0000000000L, active10, 0x3e0400000000000L, active11, 0x40000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x380000000000L, active1, 0L, active2, 0x7c0000000000L, active3, 0x80000000f00000L, active4, 0x780000000000000L, active5, 0xfe0000L, active6, 0x40000000000L, active7, 0x800000000L, active8, 0x3a0000L, active9, 0x1ffe000000000000L, active10, 0x8100000000000000L, active11, 0x1000000fL, active12, 0L); case 75: case 107: - return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 76: case 108: - return jjMoveStringLiteralDfa2_1(active0, 0x40000001f000L, active1, 0x7800L, active2, 0x60000000000000L, active3, 0x400020000300000L, active4, 0L, active5, 0x200000000000000L, active6, 0xe000000000L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x40000001f000L, active1, 0x7800L, active2, 0x600000000000000L, active3, 0x4000200003000000L, active4, 0L, active5, 0x4000000000000000L, active6, 0x380000000000L, active7, 0x1000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 77: case 109: - return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0x80000000000000L, active3, 0x7800000000000000L, active4, 0L, active5, 0x400000000000000L, active6, 0L, active7, 0L, active8, 0x4000L, active9, 0L, active10, 0x2000000000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0x8000000000000000L, active4, 0x7L, active5, 0x8000000000000000L, active6, 0L, active7, 0L, active8, 0x800000L, active9, 0L, active10, 0L, active11, 0x80L, active12, 0L); case 78: case 110: - if ((active3 & 0x8000000000000000L) != 0L) + if ((active4 & 0x8L) != 0L) { - jjmatchedKind = 255; + jjmatchedKind = 259; jjmatchedPos = 1; } - else if ((active4 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(1, 310, 94); - else if ((active5 & 0x800000000000000L) != 0L) + else if ((active4 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_1(1, 315, 96); + else if ((active6 & 0x1L) != 0L) { - jjmatchedKind = 379; + jjmatchedKind = 384; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0x60000L, active1, 0L, active2, 0x1f00000000000000L, active3, 0L, active4, 0xfffffL, active5, 0x3000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7fe000L, active11, 0x8005800L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x60000L, active1, 0L, active2, 0xf000000000000000L, active3, 0x1L, active4, 0xfffff0L, active5, 0L, active6, 0x6L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1ff800000L, active11, 0x2001600000L, active12, 0L); case 79: case 111: - if ((active3 & 0x40000000000L) != 0L) + if ((active3 & 0x400000000000L) != 0L) { - jjmatchedKind = 234; + jjmatchedKind = 238; jjmatchedPos = 1; } - else if ((active5 & 0x4000000000L) != 0L) + else if ((active5 & 0x80000000000L) != 0L) { - jjmatchedKind = 358; + jjmatchedKind = 363; jjmatchedPos = 1; } - else if ((active9 & 0x10000000000000L) != 0L) + else if ((active9 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 628; + jjmatchedKind = 637; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0x1800000000000L, active1, 0x1ffffffff8000L, active2, 0xf80000000000L, active3, 0xf008000fc00000L, active4, 0xf80000002000000L, active5, 0x78003f80000L, active6, 0xf0000000000L, active7, 0x3ff80000000L, active8, 0x18000L, active9, 0x20000000000000L, active10, 0x400000000000000L, active11, 0x20518001L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x1800000000000L, active1, 0x3ffffffff8000L, active2, 0xf800000000000L, active3, 0xf008000fc000000L, active4, 0xf000000020000000L, active5, 0xf0007f000001L, active6, 0x3c00000000000L, active7, 0xffe000000000L, active8, 0x3000000L, active9, 0x4000000000000000L, active10, 0L, active11, 0x8146000410L, active12, 0L); case 80: case 112: - return jjMoveStringLiteralDfa2_1(active0, 0x80000L, active1, 0L, active2, 0x2000000000000000L, active3, 0L, active4, 0L, active5, 0xc000000000000000L, active6, 0x1L, active7, 0L, active8, 0x1e0000L, active9, 0L, active10, 0x3800000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x2L, active4, 0L, active5, 0L, active6, 0x38L, active7, 0L, active8, 0x3c000000L, active9, 0L, active10, 0xe00000000L, active11, 0L, active12, 0L); case 81: case 113: - return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xffffffffffe00000L, active9, 0x7ffL, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xffffffffc0000000L, active9, 0xfffffL, active10, 0L, active11, 0L, active12, 0L); case 82: case 114: - if ((active6 & 0x2L) != 0L) + if ((active6 & 0x40L) != 0L) { - jjmatchedKind = 385; + jjmatchedKind = 390; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0x2000001f00000L, active1, 0x6000000000000L, active2, 0x8001000000000000L, active3, 0x3f001f0000000L, active4, 0L, active5, 0L, active6, 0x3ff0000000001cL, active7, 0L, active8, 0L, active9, 0xffc0000000000000L, active10, 0x18000000000001ffL, active11, 0x40L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x2000001f00000L, active1, 0xc000000000000L, active2, 0x10000000000000L, active3, 0x3f001f00000008L, active4, 0L, active5, 0L, active6, 0xffc000000000780L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x7ffffL, active11, 0x10060L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -860,12 +867,12 @@ else if ((active9 & 0x10000000000000L) != 0L) jjmatchedKind = 25; jjmatchedPos = 1; } - else if ((active4 & 0x100000L) != 0L) + else if ((active4 & 0x1000000L) != 0L) { - jjmatchedKind = 276; + jjmatchedKind = 280; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0x7c000000L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0x3fce00000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1fc000000L, active11, 0x800000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x7c000000L, active1, 0L, active2, 0L, active3, 0x10L, active4, 0x7fce000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7f000000000L, active11, 0x200000000L, active12, 0L); case 84: case 116: if ((active0 & 0x80000000L) != 0L) @@ -873,24 +880,24 @@ else if ((active4 & 0x100000L) != 0L) jjmatchedKind = 31; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0x700000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x180000000000L, active6, 0x20L, active7, 0L, active8, 0L, active9, 0x1ff800L, active10, 0xe00000000L, active11, 0x2000020L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x700000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0x800L, active7, 0L, active8, 0L, active9, 0x3ff00000L, active10, 0x380000000000L, active11, 0x800008000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_1(active0, 0x800000000L, active1, 0xfff8000000000000L, active2, 0x7L, active3, 0xe00000000L, active4, 0L, active5, 0x7e0000c000000L, active6, 0x3c00000000001c0L, active7, 0x40000000000L, active8, 0L, active9, 0x3fe00000L, active10, 0x600L, active11, 0x1000000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x800000000L, active1, 0xfff0000000000000L, active2, 0xfL, active3, 0xe000000000L, active4, 0L, active5, 0xfc000180000000L, active6, 0xf000000000007000L, active7, 0x1000000000000L, active8, 0L, active9, 0x7fc0000000L, active10, 0x180000L, active11, 0x400000000L, active12, 0L); case 86: case 118: - return jjMoveStringLiteralDfa2_1(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0x2L, active4, 0L, active5, 0L, active6, 0x1e00L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0L, active5, 0L, active6, 0x78000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 88: case 120: - return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x3ffcL, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x3ffc0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 89: case 121: if ((active0 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(1, 50, 94); - return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0xe000000000008L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000L, active10, 0x800L, active11, 0L, active12, 0L); + return jjStartNfaWithStates_1(1, 50, 96); + return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0xe0000000000010L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x78000000000L, active10, 0x200000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x100L) != 0L) - return jjStopAtPos(1, 776); + if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); break; default : break; @@ -909,84 +916,84 @@ private final int jjMoveStringLiteralDfa2_1(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x400000L) != 0L) - return jjStopAtPos(2, 790); + if ((active12 & 0x200000000L) != 0L) + return jjStopAtPos(2, 801); break; case 65: case 97: if ((active0 & 0x100L) != 0L) - return jjStartNfaWithStates_1(2, 8, 94); - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x9bffL, active2, 0x4000008000L, active3, 0x300030000000L, active4, 0x600000000000L, active5, 0x20L, active6, 0x7380006000000000L, active7, 0x40600000000000L, active8, 0x24000L, active9, 0xffc0000000007800L, active10, 0xc800000004000000L, active11, 0xa080000L, active12, 0L); + return jjStartNfaWithStates_1(2, 8, 96); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x9bffL, active2, 0x40000080000L, active3, 0x3000300000000L, active4, 0xc000000000000L, active5, 0x400L, active6, 0xe000180000000000L, active7, 0x80c000000000001cL, active8, 0x4800000L, active9, 0x8000000000f00000L, active10, 0x10000001ffL, active11, 0x2820000320L, active12, 0L); case 66: case 98: - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x8000000010000L, active2, 0L, active3, 0L, active4, 0x4004000000000L, active5, 0L, active6, 0x40000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000L, active10, 0x2000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x10000000010000L, active2, 0L, active3, 0L, active4, 0x80080000000000L, active5, 0L, active6, 0x1000000000000000L, active7, 0L, active8, 0L, active9, 0x380fc0000000L, active10, 0x800000L, active11, 0L, active12, 0L); case 67: case 99: if ((active0 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(2, 26, 94); - else if ((active2 & 0x10000L) != 0L) + return jjStartNfaWithStates_1(2, 26, 96); + else if ((active2 & 0x100000L) != 0L) { - jjmatchedKind = 144; + jjmatchedKind = 148; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x1100000000e0008L, active3, 0x3dL, active4, 0x780000000000007L, active5, 0x10000000001000L, active6, 0x8000000000000000L, active7, 0x780000000000000L, active8, 0L, active9, 0x8000000L, active10, 0xc000L, active11, 0x988L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x1100000000e00010L, active3, 0x3d0L, active4, 0xf000000000000070L, active5, 0x200000000020000L, active6, 0L, active7, 0x20L, active8, 0xfL, active9, 0x1000000000L, active10, 0x3000000L, active11, 0x262000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) - return jjStartNfaWithStates_1(2, 9, 94); + return jjStartNfaWithStates_1(2, 9, 96); else if ((active0 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(2, 17, 94); - else if ((active2 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_1(2, 17, 96); + else if ((active2 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 185; + jjmatchedKind = 189; jjmatchedPos = 2; } - else if ((active5 & 0x80000L) != 0L) + else if ((active5 & 0x1000000L) != 0L) { - jjmatchedKind = 339; + jjmatchedKind = 344; jjmatchedPos = 2; } - else if ((active5 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(2, 377, 94); - else if ((active6 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(2, 397, 94); - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x1c00000000000000L, active3, 0L, active4, 0x8L, active5, 0x300000L, active6, 0x1cL, active7, 0L, active8, 0L, active9, 0x18000L, active10, 0x20800000810000L, active11, 0x1000L, active12, 0L); + else if ((active5 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_1(2, 382, 96); + else if ((active6 & 0x80000L) != 0L) + return jjStartNfaWithStates_1(2, 403, 96); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0xc000000000000000L, active3, 0x1L, active4, 0x80L, active5, 0x6000000L, active6, 0x780L, active7, 0L, active8, 0L, active9, 0x3000000L, active10, 0x8200000204000000L, active11, 0x400000L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(2, 20, 94); - else if ((active5 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(2, 380, 94); - return jjMoveStringLiteralDfa3_1(active0, 0x2000008000000L, active1, 0x2000000000400L, active2, 0x20000000000000L, active3, 0x1080000400000c2L, active4, 0L, active5, 0x4000000000000000L, active6, 0x3f00000001e00L, active7, 0x800000000000000L, active8, 0x1c0000L, active9, 0x14000000000L, active10, 0x1f4000f8000201L, active11, 0x1000000L, active12, 0L); + return jjStartNfaWithStates_1(2, 20, 96); + else if ((active6 & 0x2L) != 0L) + return jjStartNfaWithStates_1(2, 385, 96); + return jjMoveStringLiteralDfa3_1(active0, 0x2000008000000L, active1, 0x4000000000400L, active2, 0x200000000000000L, active3, 0x1080000400000c20L, active4, 0L, active5, 0L, active6, 0xfc000000078008L, active7, 0L, active8, 0x38000010L, active9, 0x2800000000000L, active10, 0x7d0003e000080200L, active11, 0x400000000L, active12, 0L); case 70: case 102: - if ((active7 & 0x1L) != 0L) + if ((active7 & 0x40L) != 0L) { - jjmatchedKind = 448; + jjmatchedKind = 454; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x2000000000L, active1, 0L, active2, 0x7f00000L, active3, 0L, active4, 0x800000000000L, active5, 0x100000000000000L, active6, 0L, active7, 0x6L, active8, 0L, active9, 0L, active10, 0xe00000000L, active11, 0x4000010L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x2000000000L, active1, 0L, active2, 0x7f000000L, active3, 0L, active4, 0x10000000000000L, active5, 0x2000000000000000L, active6, 0L, active7, 0xe000000000180L, active8, 0L, active9, 0L, active10, 0x380000000000L, active11, 0x1000004000L, active12, 0L); case 71: case 103: if ((active0 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(2, 36, 94); - else if ((active4 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(2, 295, 94); - return jjMoveStringLiteralDfa3_1(active0, 0x9c000000000L, active1, 0L, active2, 0x8000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000ff8L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000L, active12, 0L); + return jjStartNfaWithStates_1(2, 36, 96); + else if ((active4 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_1(2, 300, 96); + return jjMoveStringLiteralDfa3_1(active0, 0x9c000000000L, active1, 0L, active2, 0x80000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80003fe00L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000000L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80200000000L, active6, 0x20L, active7, 0x1800000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1004000000000L, active6, 0x800L, active7, 0x300000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 73: case 105: - if ((active6 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(2, 423, 94); - return jjMoveStringLiteralDfa3_1(active0, 0x6000000000000000L, active1, 0L, active2, 0L, active3, 0x400000080000100L, active4, 0x2000030L, active5, 0x400100000000000L, active6, 0x1c000000000000L, active7, 0x40000000L, active8, 0x2000L, active9, 0L, active10, 0x100000010006007eL, active11, 0x40L, active12, 0L); + if ((active6 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_1(2, 429, 96); + return jjMoveStringLiteralDfa3_1(active0, 0x6000000000000000L, active1, 0L, active2, 0L, active3, 0x4000000800001000L, active4, 0x20000300L, active5, 0x8002000000000000L, active6, 0x700000000000000L, active7, 0x1000000000L, active8, 0x400000L, active9, 0L, active10, 0x4001800fc00L, active11, 0x10040L, active12, 0L); case 74: case 106: - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 75: case 107: - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x18000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x300000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L, active12, 0L); case 76: case 108: if ((active0 & 0x1000L) != 0L) @@ -994,58 +1001,58 @@ else if ((active4 & 0x8000000000L) != 0L) jjmatchedKind = 12; jjmatchedPos = 2; } - else if ((active8 & 0x200000L) != 0L) + else if ((active8 & 0x40000000L) != 0L) { - jjmatchedKind = 533; + jjmatchedKind = 542; jjmatchedPos = 2; } - else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(2, 701, 94); - return jjMoveStringLiteralDfa3_1(active0, 0x30000000006000L, active1, 0x1fe0000L, active2, 0x10000000L, active3, 0x10000200414000L, active4, 0L, active5, 0x2001e00404006000L, active6, 0L, active7, 0x3000000380003000L, active8, 0xffffffffffc00000L, active9, 0x3ffL, active10, 0x7000000000L, active11, 0x54400L, active12, 0L); + else if ((active11 & 0x80L) != 0L) + return jjStartNfaWithStates_1(2, 711, 96); + return jjMoveStringLiteralDfa3_1(active0, 0x30000000006000L, active1, 0x1fe0000L, active2, 0x100000000L, active3, 0x100002004140000L, active4, 0L, active5, 0x3c0080800c0000L, active6, 0x4L, active7, 0xe0000c0000L, active8, 0xffffffff80000060L, active9, 0x7ffffL, active10, 0x1c00000000000L, active11, 0x15100000L, active12, 0L); case 77: case 109: - if ((active9 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(2, 604, 94); - return jjMoveStringLiteralDfa3_1(active0, 0x400L, active1, 0x1000001e000000L, active2, 0x80000000000L, active3, 0x1800000000000000L, active4, 0x20000000000000L, active5, 0x6000038000040L, active6, 0L, active7, 0L, active8, 0x8c00L, active9, 0x7fe2040000000L, active10, 0x400L, active11, 0x400004L, active12, 0L); + if ((active9 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_1(2, 613, 96); + return jjMoveStringLiteralDfa3_1(active0, 0x400L, active1, 0x2000001e000000L, active2, 0x800000000000L, active3, 0x8000000000000000L, active4, 0x400000000000001L, active5, 0xc0000700000800L, active6, 0L, active7, 0L, active8, 0x1180000L, active9, 0xffc408000000000L, active10, 0x100000L, active11, 0x100001000L, active12, 0L); case 78: case 110: - if ((active5 & 0x8000L) != 0L) + if ((active5 & 0x100000L) != 0L) { - jjmatchedKind = 335; + jjmatchedKind = 340; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x8000100000000000L, active1, 0xfffe0000000L, active2, 0xe000020000000L, active3, 0x200006400020000L, active4, 0x1010000000040L, active5, 0x8041c70000L, active6, 0xc00000000000000L, active7, 0x4000040000000000L, active8, 0x100L, active9, 0x8000020000000L, active10, 0x40000000600000L, active11, 0x100001L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x8000100000000000L, active1, 0x1fffe0000000L, active2, 0xe0000200000000L, active3, 0x2000064000200000L, active4, 0x20200000000400L, active5, 0x100838e00000L, active6, 0L, active7, 0x1000000000003L, active8, 0x20080L, active9, 0x1000004000000000L, active10, 0x180000000L, active11, 0x40000401L, active12, 0L); case 79: case 111: - return jjMoveStringLiteralDfa3_1(active0, 0xc00100000000L, active1, 0x4000000006000L, active2, 0x2001000000000000L, active3, 0x3c28100300000L, active4, 0x3fce00080L, active5, 0L, active6, 0x20000000000000L, active7, 0x1e000000000000L, active8, 0x200L, active9, 0L, active10, 0L, active11, 0x20L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0xc00100000000L, active1, 0x8000000006000L, active2, 0x10000000000000L, active3, 0x3c281003000002L, active4, 0x7fce000800L, active5, 0L, active6, 0x800000000000000L, active7, 0x3c00000000000000L, active8, 0x40000L, active9, 0L, active10, 0L, active11, 0x8000L, active12, 0L); case 80: case 112: - if ((active3 & 0x200L) != 0L) + if ((active3 & 0x2000L) != 0L) { - jjmatchedKind = 201; + jjmatchedKind = 205; jjmatchedPos = 2; } - else if ((active3 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(2, 245, 94); - else if ((active4 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(2, 317, 94); - return jjMoveStringLiteralDfa3_1(active0, 0x80000L, active1, 0L, active2, 0x80000040000000L, active3, 0x6000000000000400L, active4, 0x100L, active5, 0L, active6, 0L, active7, 0x800000000000c000L, active8, 0L, active9, 0x20000000000000L, active10, 0x1100800L, active11, 0L, active12, 0L); + else if ((active3 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_1(2, 249, 96); + else if ((active5 & 0x4L) != 0L) + return jjStartNfaWithStates_1(2, 322, 96); + return jjMoveStringLiteralDfa3_1(active0, 0x80000L, active1, 0L, active2, 0x800000400000000L, active3, 0x4000L, active4, 0x1006L, active5, 0L, active6, 0L, active7, 0x300000L, active8, 0x100L, active9, 0x4000000000000000L, active10, 0x440200000L, active11, 0L, active12, 0L); case 81: case 113: - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 82: case 114: - if ((active3 & 0x800000L) != 0L) + if ((active3 & 0x8000000L) != 0L) { - jjmatchedKind = 215; + jjmatchedKind = 219; jjmatchedPos = 2; } - else if ((active6 & 0x20000000L) != 0L) + else if ((active6 & 0x800000000L) != 0L) { - jjmatchedKind = 413; + jjmatchedKind = 419; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x40020001e00000L, active1, 0xffe0300000000000L, active2, 0x8000000180000007L, active3, 0x70c0000L, active4, 0x20000000000L, active5, 0x30002000080L, active6, 0x10fc07fc000L, active7, 0x20000000000000L, active8, 0xeL, active9, 0xe0400L, active10, 0x4003f8000000000L, active11, 0x202000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x40020001e00000L, active1, 0xffc0600000000000L, active2, 0x180000000fL, active3, 0x70c00008L, active4, 0x400000000000L, active5, 0x600040001000L, active6, 0x43f01ff00000L, active7, 0x4000000000000000L, active8, 0x1c00L, active9, 0x1c080000L, active10, 0xfe000000000000L, active11, 0x80800010L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -1053,79 +1060,79 @@ else if ((active6 & 0x20000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x780000030000060L, active1, 0L, active2, 0x40079e00000000L, active3, 0x800000000L, active4, 0xc0000001e00L, active5, 0x800000700L, active6, 0x60007800000L, active7, 0x1f0000L, active8, 0x30L, active9, 0x380000000L, active10, 0x2001000L, active11, 0x20000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x780000030000060L, active1, 0L, active2, 0x40079e000000000L, active3, 0x8000000000L, active4, 0x180000001e000L, active5, 0x1000000e000L, active6, 0x18001e0000000L, active7, 0x7c00000L, active8, 0x6000L, active9, 0x70000000000L, active10, 0x800400000L, active11, 0x8000000L, active12, 0L); case 84: case 116: if ((active0 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(2, 45, 94); - else if ((active2 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(2, 172, 94); - else if ((active3 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(2, 232, 94); - else if ((active4 & 0x2000L) != 0L) + return jjStartNfaWithStates_1(2, 45, 96); + else if ((active2 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_1(2, 176, 96); + else if ((active3 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_1(2, 236, 96); + else if ((active4 & 0x20000L) != 0L) { - jjmatchedKind = 269; + jjmatchedKind = 273; jjmatchedPos = 2; } - else if ((active5 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(2, 362, 94); - else if ((active6 & 0x40L) != 0L) + else if ((active5 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_1(2, 367, 96); + else if ((active6 & 0x1000L) != 0L) { - jjmatchedKind = 390; + jjmatchedKind = 396; jjmatchedPos = 2; } - else if ((active8 & 0x40L) != 0L) + else if ((active8 & 0x8000L) != 0L) { - jjmatchedKind = 518; + jjmatchedKind = 527; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x1801040e00008880L, active1, 0L, active2, 0x2000001ff0L, active3, 0x8000000b800L, active4, 0xc00010000007c000L, active5, 0x8060000180000807L, active6, 0x18000181L, active7, 0x8000fe00000L, active8, 0x80L, active9, 0L, active10, 0x380000000000000L, active11, 0x20000200L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x1801040e00008880L, active1, 0L, active2, 0x20000007fe0L, active3, 0x8000000b8000L, active4, 0x20000007c0000L, active5, 0xc000030000100f8L, active6, 0x600006030L, active7, 0x100003f8000000L, active8, 0x10000L, active9, 0L, active10, 0L, active11, 0x800008000eL, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x400000000000L, active2, 0x4000200000000000L, active3, 0xc0000008000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3c00000000L, active8, 0x10000L, active9, 0x8000000000L, active10, 0x180L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x800000000000L, active2, 0x2000000000000L, active3, 0xc00000080000004L, active4, 0L, active5, 0L, active6, 0L, active7, 0xf0000000000L, active8, 0x2000000L, active9, 0x1000000000000L, active10, 0x30000L, active11, 0L, active12, 0L); case 86: case 118: - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x1800000000000L, active2, 0L, active3, 0x4000000000000L, active4, 0x2000001080000L, active5, 0L, active6, 0x1000000000L, active7, 0x100010000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x3000000000000L, active2, 0L, active3, 0x40000000000000L, active4, 0x40000010800000L, active5, 0L, active6, 0x40000000000L, active7, 0x20000400000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 87: case 119: - if ((active2 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(2, 174, 94); - else if ((active5 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(2, 356, 94); - else if ((active7 & 0x4000000000L) != 0L) + if ((active2 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_1(2, 178, 96); + else if ((active5 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_1(2, 361, 96); + else if ((active7 & 0x100000000000L) != 0L) { - jjmatchedKind = 486; + jjmatchedKind = 492; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000000000000L, active5, 0L, active6, 0x80000000000L, active7, 0x38000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1L, active6, 0x2000000000000L, active7, 0xe00000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 88: case 120: - if ((active5 & 0x8L) != 0L) + if ((active5 & 0x100L) != 0L) { - jjmatchedKind = 323; + jjmatchedKind = 328; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000010L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(2, 18, 94); - else if ((active2 & 0x2000L) != 0L) + return jjStartNfaWithStates_1(2, 18, 96); + else if ((active2 & 0x8000L) != 0L) { - jjmatchedKind = 141; + jjmatchedKind = 143; jjmatchedPos = 2; } - else if ((active2 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(2, 175, 94); - else if ((active4 & 0x800000000L) != 0L) + else if ((active2 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_1(2, 179, 96); + else if ((active4 & 0x10000000000L) != 0L) { - jjmatchedKind = 291; + jjmatchedKind = 296; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x40000000L, active1, 0L, active2, 0x4000L, active3, 0L, active4, 0x3000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000L, active10, 0L, active11, 0x800000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x40000000L, active1, 0L, active2, 0x70000L, active3, 0L, active4, 0x60000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000000L, active10, 0x40000L, active11, 0x200000000L, active12, 0L); case 90: case 122: - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); default : break; } @@ -1143,148 +1150,148 @@ private final int jjMoveStringLiteralDfa3_1(long old0, long active0, long old1, switch(curChar) { case 45: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x400000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 49: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400000000L, active11, 0L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); case 51: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x800000000L, active11, 0L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000L, active11, 0L); case 56: - if ((active10 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(3, 673, 94); + if ((active10 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_1(3, 683, 96); break; case 95: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x1800000000000000L, active3, 0L, active4, 0x3000000000L, active5, 0x80000000000L, active6, 0L, active7, 0x18000000000L, active8, 0xfffffffffe000000L, active9, 0x200000000003ffL, active10, 0x18000000000L, active11, 0x10000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x1L, active4, 0x60000000000L, active5, 0x1000000000000L, active6, 0L, active7, 0x600000000000L, active8, 0xfffffffc00000000L, active9, 0x400000000007ffffL, active10, 0x6000000040000L, active11, 0x4000000000L); case 65: case 97: - if ((active2 & 0x10L) != 0L) + if ((active2 & 0x20L) != 0L) { - jjmatchedKind = 132; + jjmatchedKind = 133; jjmatchedPos = 3; } - else if ((active4 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(3, 280, 94); - return jjMoveStringLiteralDfa4_1(active0, 0x1802100001e10000L, active1, 0x3800000000000L, active2, 0x400e088000320020L, active3, 0x120001L, active4, 0x780000000000000L, active5, 0x200000000L, active6, 0x1fc000L, active7, 0x8000000000001000L, active8, 0L, active9, 0L, active10, 0xa00001L, active11, 0x20002200L); + else if ((active4 & 0x10000000L) != 0L) + return jjStartNfaWithStates_1(3, 284, 96); + return jjMoveStringLiteralDfa4_1(active0, 0x1802100001e10000L, active1, 0x7000000000000L, active2, 0xe0880003200040L, active3, 0x1200014L, active4, 0xf000000000000000L, active5, 0x4000000000L, active6, 0x7f00000L, active7, 0x40000L, active8, 0x100L, active9, 0L, active10, 0x280000200L, active11, 0x8000880000L); case 66: case 98: if ((active0 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(3, 46, 94); + return jjStartNfaWithStates_1(3, 46, 96); else if ((active1 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(3, 77, 94); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x200000000000L, active3, 0x20000000000L, active4, 0L, active5, 0x2000000000040L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000400L, active11, 0L); + return jjStartNfaWithStates_1(3, 77, 96); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x2000000000000L, active3, 0x200000000000L, active4, 0L, active5, 0x40000000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000100000L, active11, 0L); case 67: case 99: - if ((active2 & 0x200000000L) != 0L) + if ((active2 & 0x2000000000L) != 0L) { - jjmatchedKind = 161; + jjmatchedKind = 165; jjmatchedPos = 3; } - else if ((active3 & 0x40L) != 0L) + else if ((active3 & 0x400L) != 0L) { - jjmatchedKind = 198; + jjmatchedKind = 202; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_1(active0, 0x180000000000000L, active1, 0x400L, active2, 0x2000011c00000000L, active3, 0x410008080L, active4, 0xc000000000000000L, active5, 0x7L, active6, 0x207023c0800000L, active7, 0L, active8, 0x1e0000L, active9, 0x8200000L, active10, 0x40000001000L, active11, 0L); + return jjMoveStringLiteralDfa4_1(active0, 0x180000000000000L, active1, 0x400L, active2, 0x11c000000000L, active3, 0x4100080802L, active4, 0L, active5, 0xf8L, active6, 0x81c08f020000000L, active7, 0L, active8, 0x3c000000L, active9, 0x1040000000L, active10, 0x10000000400000L, active11, 0L); case 68: case 100: - if ((active3 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 244, 94); - else if ((active4 & 0x200000000000L) != 0L) + if ((active3 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_1(3, 248, 96); + else if ((active4 & 0x4000000000000L) != 0L) { - jjmatchedKind = 301; + jjmatchedKind = 306; jjmatchedPos = 3; } - else if ((active6 & 0x1000000000000000L) != 0L) + else if ((active7 & 0x4L) != 0L) { - jjmatchedKind = 444; + jjmatchedKind = 450; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_1(active0, 0x40000000000000L, active1, 0xe0000000L, active2, 0L, active3, 0x80000000L, active4, 0x400000200000L, active5, 0x400000L, active6, 0x2000000000000000L, active7, 0L, active8, 0L, active9, 0x20018000L, active10, 0x40000000000000L, active11, 0L); + return jjMoveStringLiteralDfa4_1(active0, 0x40000000000000L, active1, 0xe0000000L, active2, 0L, active3, 0x800000000L, active4, 0x8000002000000L, active5, 0x8000000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0x4003000000L, active10, 0L, active11, 0x1L); case 69: case 101: if ((active0 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 57, 94); - else if ((active1 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 115, 94); - else if ((active2 & 0x40L) != 0L) + return jjStartNfaWithStates_1(3, 57, 96); + else if ((active1 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_1(3, 116, 96); + else if ((active2 & 0x80L) != 0L) { - jjmatchedKind = 134; + jjmatchedKind = 135; jjmatchedPos = 3; } - else if ((active2 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 182, 94); - else if ((active3 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(3, 222, 94); - else if ((active4 & 0x8000000000000L) != 0L) + else if ((active2 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_1(3, 186, 96); + else if ((active3 & 0x400000000L) != 0L) + return jjStartNfaWithStates_1(3, 226, 96); + else if ((active4 & 0x100000000000000L) != 0L) { - jjmatchedKind = 307; + jjmatchedKind = 312; jjmatchedPos = 3; } - else if ((active5 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(3, 345, 94); - else if ((active5 & 0x10000000L) != 0L) + else if ((active5 & 0x40000000L) != 0L) + return jjStartNfaWithStates_1(3, 350, 96); + else if ((active5 & 0x200000000L) != 0L) { - jjmatchedKind = 348; + jjmatchedKind = 353; jjmatchedPos = 3; } - else if ((active5 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(3, 359, 94); - else if ((active7 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(3, 479, 94); - else if ((active8 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(3, 524, 94); - else if ((active8 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(3, 527, 94); - else if ((active9 & 0x20000000000L) != 0L) + else if ((active5 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_1(3, 364, 96); + else if ((active7 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_1(3, 485, 96); + else if ((active8 & 0x200000L) != 0L) + return jjStartNfaWithStates_1(3, 533, 96); + else if ((active8 & 0x1000000L) != 0L) + return jjStartNfaWithStates_1(3, 536, 96); + else if ((active9 & 0x4000000000000L) != 0L) { - jjmatchedKind = 617; + jjmatchedKind = 626; jjmatchedPos = 3; } - else if ((active10 & 0x80L) != 0L) - return jjStartNfaWithStates_1(3, 647, 94); - else if ((active10 & 0x800L) != 0L) - return jjStartNfaWithStates_1(3, 651, 94); - else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_1(3, 704, 94); - return jjMoveStringLiteralDfa4_1(active0, 0x10008820L, active1, 0x10000000000000L, active2, 0x2090c01f80L, active3, 0x180000600200180cL, active4, 0x81210400003c640L, active5, 0x6c000020000000L, active6, 0x800000000acL, active7, 0x1001900000016006L, active8, 0x400000L, active9, 0x7fc0000020000L, active10, 0x3410000L, active11, 0x1000L); + else if ((active10 & 0x10000L) != 0L) + return jjStartNfaWithStates_1(3, 656, 96); + else if ((active10 & 0x200000L) != 0L) + return jjStartNfaWithStates_1(3, 661, 96); + else if ((active11 & 0x400L) != 0L) + return jjStartNfaWithStates_1(3, 714, 96); + return jjMoveStringLiteralDfa4_1(active0, 0x10008820L, active1, 0x20000000000000L, active2, 0x2090c007f00L, active3, 0x80000600200180c0L, active4, 0x2420800003c6401L, active5, 0xd80000400000001L, active6, 0x2000000002980L, active7, 0x32e000000580180L, active8, 0x80000020L, active9, 0xff8000004000000L, active10, 0xd04000000L, active11, 0x400000L); case 70: case 102: - if ((active7 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 509, 94); + if ((active8 & 0x40L) != 0L) + return jjStartNfaWithStates_1(3, 518, 96); break; case 71: case 103: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x4000000000L, active3, 0L, active4, 0x1030000000000L, active5, 0x80L, active6, 0x400000000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400001eL, active11, 0x8000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x40000000000L, active3, 0L, active4, 0x20600000000000L, active5, 0x1000L, active6, 0L, active7, 0x1L, active8, 0L, active9, 0L, active10, 0x1000003c00L, active11, 0x2000000L); case 72: case 104: if ((active0 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 48, 94); - else if ((active2 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 180, 94); - else if ((active6 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(3, 411, 94); - else if ((active10 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_1(3, 48, 96); + else if ((active2 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_1(3, 184, 96); + else if ((active6 & 0x200000000L) != 0L) + return jjStartNfaWithStates_1(3, 417, 96); + else if ((active11 & 0x2L) != 0L) { - jjmatchedKind = 695; + jjmatchedKind = 705; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_1(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800L, active6, 0L, active7, 0x20000000L, active8, 0L, active9, 0L, active10, 0x300000000000000L, active11, 0x180L); + return jjMoveStringLiteralDfa4_1(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x6000cL); case 73: case 105: - return jjMoveStringLiteralDfa4_1(active0, 0x9c020000480L, active1, 0x1L, active2, 0x107040000L, active3, 0x4000800000000L, active4, 0x20000000000008L, active5, 0x8000000080100000L, active6, 0x60400000011L, active7, 0L, active8, 0x402L, active9, 0x40000000040000L, active10, 0x100000L, active11, 0x4010L); + return jjMoveStringLiteralDfa4_1(active0, 0x9c020000480L, active1, 0x1L, active2, 0x1070400000L, active3, 0x40008000000000L, active4, 0x400000000000080L, active5, 0x1002000000L, active6, 0x1810000000630L, active7, 0L, active8, 0x80400L, active9, 0x8000000008000000L, active10, 0x40000000L, active11, 0x1004000L); case 75: case 107: - if ((active6 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 443, 94); - else if ((active7 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 507, 94); - else if ((active10 & 0x1000000000000L) != 0L) + if ((active7 & 0x2L) != 0L) + return jjStartNfaWithStates_1(3, 449, 96); + else if ((active8 & 0x10L) != 0L) + return jjStartNfaWithStates_1(3, 516, 96); + else if ((active10 & 0x400000000000000L) != 0L) { - jjmatchedKind = 688; + jjmatchedKind = 698; jjmatchedPos = 3; } - else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 698, 94); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x400000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0x8L); + else if ((active11 & 0x10L) != 0L) + return jjStartNfaWithStates_1(3, 708, 96); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x4000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000L, active8, 0L, active9, 0L, active10, 0x800000000000000L, active11, 0x2000L); case 76: case 108: if ((active0 & 0x10000000000000L) != 0L) @@ -1297,68 +1304,68 @@ else if ((active0 & 0x2000000000000000L) != 0L) jjmatchedKind = 61; jjmatchedPos = 3; } - else if ((active3 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(3, 225, 94); - else if ((active5 & 0x200000000000L) != 0L) + else if ((active3 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_1(3, 229, 96); + else if ((active5 & 0x4000000000000L) != 0L) { - jjmatchedKind = 365; + jjmatchedKind = 370; jjmatchedPos = 3; } - else if ((active6 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 446, 94); - else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(3, 722, 94); - return jjMoveStringLiteralDfa4_1(active0, 0x4020800000080000L, active1, 0x7e8000L, active2, 0x88008L, active3, 0x2000000000400430L, active4, 0x800003L, active5, 0x1d00000006000L, active6, 0xc0000000000000L, active7, 0x600300008000L, active8, 0x4000L, active9, 0x1c00100000L, active10, 0L, active11, 0x8000000L); + else if ((active7 & 0x10L) != 0L) + return jjStartNfaWithStates_1(3, 452, 96); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_1(3, 732, 96); + return jjMoveStringLiteralDfa4_1(active0, 0x4020800000080000L, active1, 0x7e8000L, active2, 0x880010L, active3, 0x4004300L, active4, 0x8000032L, active5, 0x3a0000000c0000L, active6, 0x3000000000000000L, active7, 0xc000c000200000L, active8, 0x800000L, active9, 0x380020000000L, active10, 0L, active11, 0x2000000000L); case 77: case 109: - if ((active3 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(3, 224, 94); - else if ((active10 & 0x20L) != 0L) + if ((active3 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_1(3, 228, 96); + else if ((active10 & 0x4000L) != 0L) { - jjmatchedKind = 645; + jjmatchedKind = 654; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_1(active0, 0x140000000L, active1, 0x1e000000L, active2, 0x20000000000000L, active3, 0x8021000000L, active4, 0L, active5, 0x30000000000L, active6, 0x4000800000000L, active7, 0L, active8, 0L, active9, 0x40400000L, active10, 0x40L, active11, 0x20L); + return jjMoveStringLiteralDfa4_1(active0, 0x140000000L, active1, 0x1e000000L, active2, 0x200000000000000L, active3, 0x80210000000L, active4, 0L, active5, 0x600000000000L, active6, 0x100020000000000L, active7, 0L, active8, 0L, active9, 0x8080000000L, active10, 0x8000L, active11, 0x8000L); case 78: case 110: - if ((active4 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(3, 281, 94); - else if ((active4 & 0x4000000L) != 0L) + if ((active4 & 0x20000000L) != 0L) + return jjStartNfaWithStates_1(3, 285, 96); + else if ((active4 & 0x40000000L) != 0L) { - jjmatchedKind = 282; + jjmatchedKind = 286; jjmatchedPos = 3; } - else if ((active5 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 382, 94); - else if ((active6 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(3, 422, 94); - else if ((active9 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(3, 614, 94); - else if ((active10 & 0x4000000000000L) != 0L) + else if ((active6 & 0x8L) != 0L) + return jjStartNfaWithStates_1(3, 387, 96); + else if ((active6 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_1(3, 428, 96); + else if ((active9 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_1(3, 623, 96); + else if ((active10 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 690; + jjmatchedKind = 700; jjmatchedPos = 3; } - else if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(3, 723, 94); - return jjMoveStringLiteralDfa4_1(active0, 0x20008000000L, active1, 0x400700000000L, active2, 0L, active3, 0x100300008000000L, active4, 0x3f8000000L, active5, 0L, active6, 0L, active7, 0x40000000000L, active8, 0L, active9, 0xff80000000000000L, active10, 0x8800100080100L, active11, 0x800000L); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_1(3, 733, 96); + return jjMoveStringLiteralDfa4_1(active0, 0x20008000000L, active1, 0x800700000000L, active2, 0L, active3, 0x1003000080000000L, active4, 0x7f80000000L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0L, active9, 0L, active10, 0x22000400200201ffL, active11, 0x200000000L); case 79: case 111: - if ((active3 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(3, 235, 94); - else if ((active4 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(3, 274, 94); - return jjMoveStringLiteralDfa4_1(active0, 0x2000006040L, active1, 0x10000L, active2, 0x8100000000000000L, active3, 0x4200000000200000L, active4, 0x80000L, active5, 0x440000000L, active6, 0x8001000000000L, active7, 0x1a0000010000000L, active8, 0L, active9, 0L, active10, 0x2e000L, active11, 0x10000L); + if ((active3 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_1(3, 239, 96); + else if ((active4 & 0x400000L) != 0L) + return jjStartNfaWithStates_1(3, 278, 96); + return jjMoveStringLiteralDfa4_1(active0, 0x2000006040L, active1, 0x10000L, active2, 0x1000000000030000L, active3, 0x2000000002000008L, active4, 0x800004L, active5, 0x8800000000L, active6, 0x200040000000000L, active7, 0x4000000400000000L, active8, 0x3L, active9, 0L, active10, 0xb800000L, active11, 0x4000000L); case 80: case 112: - if ((active2 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 176, 94); - else if ((active8 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(3, 525, 94); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0L, active5, 0x8000000L, active6, 0x800000000100L, active7, 0x1e000000020000L, active8, 0x800L, active9, 0x2000000000L, active10, 0x800000000000000L, active11, 0x400004L); + if ((active2 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_1(3, 180, 96); + else if ((active8 & 0x400000L) != 0L) + return jjStartNfaWithStates_1(3, 534, 96); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x100000000L, active6, 0x20000000004000L, active7, 0x3c00000000800000L, active8, 0x100000L, active9, 0x400000000000L, active10, 0L, active11, 0x100001020L); case 81: case 113: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40000L, active11, 0L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10000000L, active11, 0L); case 82: case 114: if ((active1 & 0x2L) != 0L) @@ -1366,83 +1373,83 @@ else if ((active8 & 0x2000L) != 0L) jjmatchedKind = 65; jjmatchedPos = 3; } - else if ((active1 & 0x100000000000L) != 0L) + else if ((active1 & 0x200000000000L) != 0L) { - jjmatchedKind = 108; + jjmatchedKind = 109; jjmatchedPos = 3; } - else if ((active3 & 0x40000000000000L) != 0L) + else if ((active3 & 0x400000000000000L) != 0L) { - jjmatchedKind = 246; + jjmatchedKind = 250; jjmatchedPos = 3; } - else if ((active6 & 0x200L) != 0L) + else if ((active6 & 0x8000L) != 0L) { - jjmatchedKind = 393; + jjmatchedKind = 399; jjmatchedPos = 3; } - else if ((active10 & 0x8000000L) != 0L) + else if ((active10 & 0x2000000000L) != 0L) { - jjmatchedKind = 667; + jjmatchedKind = 677; jjmatchedPos = 3; } - else if ((active10 & 0x4000000000000000L) != 0L) + else if ((active11 & 0x100L) != 0L) { - jjmatchedKind = 702; + jjmatchedKind = 712; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_1(active0, 0x600000000L, active1, 0xffe02000000003fcL, active2, 0x8000001L, active3, 0x88000000002002L, active4, 0x4000000000004L, active5, 0x1000L, active6, 0x300000000001c00L, active7, 0x40000000000ff8L, active8, 0x10000L, active9, 0x8000000800L, active10, 0x80100000f0000000L, active11, 0x5000800L); + return jjMoveStringLiteralDfa4_1(active0, 0x600000000L, active1, 0xffc04000000003fcL, active2, 0x80000003L, active3, 0x880000000020020L, active4, 0x80000000000040L, active5, 0x20000L, active6, 0xc000000000070000L, active7, 0x800000000003fe00L, active8, 0x2000000L, active9, 0x1000000100000L, active10, 0x400003c000000000L, active11, 0x1400200200L); case 83: case 115: - if ((active2 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(3, 142, 94); - else if ((active7 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(3, 489, 94); - else if ((active8 & 0x80L) != 0L) - return jjStartNfaWithStates_1(3, 519, 94); - else if ((active9 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(3, 616, 94); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x401f800005800L, active2, 0x20000006L, active3, 0xc4100L, active4, 0L, active5, 0x100000000000720L, active6, 0x1000003000000L, active7, 0x4000000000000000L, active8, 0x800030L, active9, 0x7800000L, active10, 0x300000000200L, active11, 0x20000L); + if ((active2 & 0x40000L) != 0L) + return jjStartNfaWithStates_1(3, 146, 96); + else if ((active7 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_1(3, 495, 96); + else if ((active8 & 0x10000L) != 0L) + return jjStartNfaWithStates_1(3, 528, 96); + else if ((active9 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_1(3, 625, 96); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x801f800005800L, active2, 0x20000000cL, active3, 0xc41000L, active4, 0L, active5, 0x200000000000e400L, active6, 0x400000c0000000L, active7, 0L, active8, 0x100006080L, active9, 0xf00000000L, active10, 0xc0000000080000L, active11, 0x8000000L); case 84: case 116: if ((active0 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 58, 94); - else if ((active4 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(3, 58, 96); + else if ((active4 & 0x800000000000L) != 0L) { - jjmatchedKind = 298; + jjmatchedKind = 303; jjmatchedPos = 3; } - else if ((active4 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(3, 303, 94); - else if ((active5 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(3, 357, 94); - else if ((active5 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 378, 94); - else if ((active6 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(3, 410, 94); - else if ((active9 & 0x400L) != 0L) - return jjStartNfaWithStates_1(3, 586, 94); - return jjMoveStringLiteralDfa4_1(active0, 0x8000000000000000L, active1, 0x60000000000L, active2, 0x80040040000000L, active3, 0x4010000L, active4, 0x80000001830L, active5, 0x805800000L, active6, 0x10010600000L, active7, 0x200003c000c0000L, active8, 0L, active9, 0x380007000L, active10, 0x1020000000000000L, active11, 0x2100040L); + else if ((active4 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_1(3, 308, 96); + else if ((active5 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(3, 362, 96); + else if ((active5 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_1(3, 383, 96); + else if ((active6 & 0x100000000L) != 0L) + return jjStartNfaWithStates_1(3, 416, 96); + else if ((active9 & 0x80000L) != 0L) + return jjStartNfaWithStates_1(3, 595, 96); + return jjMoveStringLiteralDfa4_1(active0, 0x8000000000000000L, active1, 0xe0000000000L, active2, 0x800400400000000L, active3, 0x40100000L, active4, 0x1000000018300L, active5, 0x100b0000000L, active6, 0x400418000000L, active7, 0xf0003000000L, active8, 0x4L, active9, 0x70000e00000L, active10, 0x8000000000000000L, active11, 0x840010040L); case 85: case 117: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1800000L, active2, 0L, active3, 0x3c00000000000L, active4, 0x180L, active5, 0x10000100230000L, active6, 0x8000000000000000L, active7, 0x40008000ff00000L, active8, 0x101L, active9, 0x80000L, active10, 0x7000000000L, active11, 0x400L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1800000L, active2, 0L, active3, 0x3c000000000000L, active4, 0x1800L, active5, 0x200002004600000L, active6, 0L, active7, 0x100003fc000020L, active8, 0x20208L, active9, 0x10000000L, active10, 0x1c00000000000L, active11, 0x100000L); case 86: case 118: - if ((active6 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 433, 94); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x80000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40010L, active6, 0x10000000000000L, active7, 0L, active8, 0xcL, active9, 0L, active10, 0L, active11, 0x200000L); + if ((active6 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_1(3, 439, 96); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x100000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800200L, active6, 0x400000000000000L, active7, 0L, active8, 0x1800L, active9, 0L, active10, 0L, active11, 0x80000000L); case 87: case 119: - if ((active8 & 0x200L) != 0L) - return jjStartNfaWithStates_1(3, 521, 94); - else if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(3, 686, 94); - return jjMoveStringLiteralDfa4_1(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x40000L) != 0L) + return jjStartNfaWithStates_1(3, 530, 96); + else if ((active10 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_1(3, 696, 96); + return jjMoveStringLiteralDfa4_1(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active5 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(3, 381, 94); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); + if ((active6 & 0x4L) != 0L) + return jjStartNfaWithStates_1(3, 386, 96); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1000000000000000L, active10, 0x20000000000000L, active11, 0L); default : break; } @@ -1460,293 +1467,293 @@ private final int jjMoveStringLiteralDfa4_1(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active10 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(4, 675, 94); + if ((active10 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_1(4, 685, 96); break; case 54: - if ((active10 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(4, 674, 94); + if ((active10 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_1(4, 684, 96); break; case 95: - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x10000000000004L, active2, 0x1080L, active3, 0x10000000L, active4, 0x100803f8000000L, active5, 0L, active6, 0L, active7, 0xff8L, active8, 0L, active9, 0xc0000000000L, active10, 0xf0000040L, active11, 0x200L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x20000000000004L, active2, 0x300L, active3, 0x100000000L, active4, 0x201007f80000000L, active5, 0L, active6, 0L, active7, 0xe00000003fe00L, active8, 0L, active9, 0x18000000000000L, active10, 0x3c000008000L, active11, 0x80000L); case 65: case 97: - return jjMoveStringLiteralDfa5_1(active0, 0x180000000000000L, active1, 0x200063e03f8L, active2, 0x20000080000L, active3, 0x8020081002400L, active4, 0x4000000801800L, active5, 0x430000440710L, active6, 0x4800000800000L, active7, 0x20000004e000L, active8, 0x1000002L, active9, 0x20020000L, active10, 0x1000L, active11, 0L); + return jjMoveStringLiteralDfa5_1(active0, 0x180000000000000L, active1, 0x600063e03f8L, active2, 0x200000800000L, active3, 0x80200810024000L, active4, 0x80000008018000L, active5, 0x860000880e200L, active6, 0x120000020000000L, active7, 0x40000001380000L, active8, 0x200000400L, active9, 0x4004000000L, active10, 0x400000L, active11, 0L); case 66: case 98: - if ((active5 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(4, 354, 94); - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x20L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000L, active8, 0x3e000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active5 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_1(4, 359, 96); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x40L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000L, active8, 0x7c00000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(4, 727, 94); - return jjMoveStringLiteralDfa5_1(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8L, active5, 0x8000000000000L, active6, 0L, active7, 0x1040008000000000L, active8, 0xc0010000L, active9, 0x80000L, active10, 0x100L, active11, 0x10000000L); + if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_1(4, 737, 96); + return jjMoveStringLiteralDfa5_1(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80L, active5, 0x100000000000000L, active6, 0L, active7, 0x8000200000000000L, active8, 0x18002000020L, active9, 0x10000000L, active10, 0x60000L, active11, 0x4000000000L); case 68: case 100: - if ((active3 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(4, 219, 94); - return jjMoveStringLiteralDfa5_1(active0, 0x2000000000000L, active1, 0L, active2, 0x100000000020000L, active3, 0x1800000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000L, active9, 0L, active10, 0x200L, active11, 0L); + if ((active3 & 0x80000000L) != 0L) + return jjStartNfaWithStates_1(4, 223, 96); + return jjMoveStringLiteralDfa5_1(active0, 0x2000000000000L, active1, 0L, active2, 0x1000000000200000L, active3, 0x8000000000000000L, active4, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000L, active9, 0L, active10, 0x80000L, active11, 0L); case 69: case 101: if ((active1 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(4, 78, 94); - else if ((active2 & 0x8L) != 0L) - return jjStartNfaWithStates_1(4, 131, 94); - else if ((active3 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(4, 206, 94); - else if ((active3 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 250, 94); - else if ((active4 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(4, 297, 94); - else if ((active5 & 0x80L) != 0L) - return jjStartNfaWithStates_1(4, 327, 94); - else if ((active5 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(4, 364, 94); - else if ((active6 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 442, 94); - else if ((active7 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(4, 478, 94); - else if ((active7 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(4, 494, 94); - else if ((active7 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 78, 96); + else if ((active2 & 0x10L) != 0L) + return jjStartNfaWithStates_1(4, 132, 96); + else if ((active3 & 0x40000L) != 0L) + return jjStartNfaWithStates_1(4, 210, 96); + else if ((active3 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 254, 96); + else if ((active4 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_1(4, 302, 96); + else if ((active5 & 0x1000L) != 0L) + return jjStartNfaWithStates_1(4, 332, 96); + else if ((active5 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 369, 96); + else if ((active7 & 0x1L) != 0L) + return jjStartNfaWithStates_1(4, 448, 96); + else if ((active7 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_1(4, 484, 96); + else if ((active7 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 503, 96); + else if ((active7 & 0x400000000000000L) != 0L) { - jjmatchedKind = 497; + jjmatchedKind = 506; jjmatchedPos = 4; } - else if ((active8 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(4, 529, 94); - else if ((active9 & 0x1000L) != 0L) + else if ((active8 & 0x4000000L) != 0L) + return jjStartNfaWithStates_1(4, 538, 96); + else if ((active9 & 0x200000L) != 0L) { - jjmatchedKind = 588; + jjmatchedKind = 597; jjmatchedPos = 4; } - else if ((active9 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(4, 596, 94); - else if ((active9 & 0x400000000L) != 0L) + else if ((active9 & 0x20000000L) != 0L) + return jjStartNfaWithStates_1(4, 605, 96); + else if ((active9 & 0x80000000000L) != 0L) { - jjmatchedKind = 610; + jjmatchedKind = 619; jjmatchedPos = 4; } - else if ((active10 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(4, 666, 94); else if ((active10 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_1(4, 676, 96); + else if ((active10 & 0x400000000000L) != 0L) { - jjmatchedKind = 676; + jjmatchedKind = 686; jjmatchedPos = 4; } - else if ((active10 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 692, 94); - else if ((active10 & 0x1000000000000000L) != 0L) + else if ((active10 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 702, 96); + else if ((active11 & 0x40L) != 0L) { - jjmatchedKind = 700; + jjmatchedKind = 710; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_1(active0, 0x20840000000000L, active1, 0xffe0280700408000L, active2, 0x420000028000001L, active3, 0x2000008020010000L, active4, 0x400004L, active5, 0x102000000004040L, active6, 0x213003d0000000L, active7, 0x1c000000020000L, active8, 0xdL, active9, 0x1bc881a000L, active10, 0x8806000000000L, active11, 0x40005c0L); + return jjMoveStringLiteralDfa5_1(active0, 0x20840000000000L, active1, 0xffc0500700408000L, active2, 0x4200000280000003L, active3, 0x80200100000L, active4, 0x4000042L, active5, 0x2040000000080800L, active6, 0x84c00f400000000L, active7, 0x3800000000800000L, active8, 0x1a00L, active9, 0x379103400000L, active10, 0x2201800000000000L, active11, 0x1000170000L); case 70: case 102: - if ((active2 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(4, 159, 94); - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0L, active4, 0L, active5, 0x100000L, active6, 0L, active7, 0L, active8, 0x800000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x800000000L) != 0L) + return jjStartNfaWithStates_1(4, 163, 96); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x8000000000030000L, active3, 0L, active4, 0L, active5, 0x2000000L, active6, 0L, active7, 0L, active8, 0x100000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(4, 672, 94); - return jjMoveStringLiteralDfa5_1(active0, 0x20000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1eL, active11, 0x10000L); + if ((active10 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(4, 682, 96); + return jjMoveStringLiteralDfa5_1(active0, 0x20000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x40000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c00L, active11, 0x4000000L); case 72: case 104: - if ((active2 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(4, 158, 94); - else if ((active2 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 189, 94); - else if ((active3 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(4, 207, 94); - else if ((active4 & 0x4000000000000000L) != 0L) + if ((active2 & 0x400000000L) != 0L) + return jjStartNfaWithStates_1(4, 162, 96); + else if ((active3 & 0x2L) != 0L) + return jjStartNfaWithStates_1(4, 193, 96); + else if ((active3 & 0x80000L) != 0L) + return jjStartNfaWithStates_1(4, 211, 96); + else if ((active5 & 0x8L) != 0L) { - jjmatchedKind = 318; + jjmatchedKind = 323; jjmatchedPos = 4; } - else if ((active5 & 0x800000L) != 0L) + else if ((active5 & 0x10000000L) != 0L) { - jjmatchedKind = 343; + jjmatchedKind = 348; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000000000000L, active5, 0x1000007L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20040000000000L, active11, 0L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000f0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8010000000000000L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa5_1(active0, 0x4040000700000000L, active1, 0x400f8000000L, active2, 0xc0000000000L, active3, 0x2000000L, active4, 0x400000000030L, active5, 0x800804002000L, active6, 0xd0412001600000L, active7, 0x4200043c00000000L, active8, 0x3fff0001c0030L, active9, 0x8000000004000L, active10, 0x1003a0000000000L, active11, 0x2308020L); + return jjMoveStringLiteralDfa5_1(active0, 0x4040000700000000L, active1, 0x800f8000000L, active2, 0xc00000000000L, active3, 0x20000000L, active4, 0x8000000000300L, active5, 0x10010080040000L, active6, 0x3410480058000000L, active7, 0x10f0000000000L, active8, 0x7ffe00038006084L, active9, 0x1000000000800000L, active10, 0xe8000000000000L, active11, 0x8c2008004L); case 75: case 107: if ((active1 & 0x400L) != 0L) - return jjStartNfaWithStates_1(4, 74, 94); - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(4, 74, 96); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(4, 80, 94); - else if ((active3 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(4, 209, 94); - else if ((active4 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(4, 294, 94); - else if ((active4 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 305, 94); - else if ((active4 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 80, 96); + else if ((active3 & 0x200000L) != 0L) + return jjStartNfaWithStates_1(4, 213, 96); + else if ((active4 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_1(4, 299, 96); + else if ((active4 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 310, 96); + else if ((active4 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 311; + jjmatchedKind = 316; jjmatchedPos = 4; } - else if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(4, 733, 94); - return jjMoveStringLiteralDfa5_1(active0, 0x1800000000000040L, active1, 0L, active2, 0x4000208000008000L, active3, 0L, active4, 0x300000000000000L, active5, 0x200000L, active6, 0xc00L, active7, 0x20000000100000L, active8, 0x1c000000004c00L, active9, 0x60000000200000L, active10, 0x400L, active11, 0x2004L); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_1(4, 743, 96); + return jjMoveStringLiteralDfa5_1(active0, 0x1800000000000040L, active1, 0L, active2, 0x2080000080000L, active3, 0x4L, active4, 0x6000000000000000L, active5, 0x4000000L, active6, 0x30000L, active7, 0x4000000004000000L, active8, 0x3800000000980000L, active9, 0xc000000040000000L, active10, 0x100000L, active11, 0x801000L); case 77: case 109: - return jjMoveStringLiteralDfa5_1(active0, 0x40000000L, active1, 0x1800000L, active2, 0xe000000040000L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0x1fc000L, active7, 0x1800000000000L, active8, 0L, active9, 0L, active10, 0x204000L, active11, 0L); + return jjMoveStringLiteralDfa5_1(active0, 0x40000000L, active1, 0x1800000L, active2, 0xe0000000400000L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0x7f00000L, active7, 0x300000000000000L, active8, 0L, active9, 0L, active10, 0x81000000L, active11, 0L); case 78: case 110: if ((active0 & 0x400L) != 0L) - return jjStartNfaWithStates_1(4, 10, 94); + return jjStartNfaWithStates_1(4, 10, 96); else if ((active0 & 0x4000000000L) != 0L) { jjmatchedKind = 38; jjmatchedPos = 4; } else if ((active1 & 0x1L) != 0L) - return jjStartNfaWithStates_1(4, 64, 94); - else if ((active10 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(4, 657, 94); - return jjMoveStringLiteralDfa5_1(active0, 0x98000000020L, active1, 0L, active2, 0x4007000000L, active3, 0x4000000000800L, active4, 0x200L, active5, 0L, active6, 0x10L, active7, 0x180010000000000L, active8, 0x1e0000000000000L, active9, 0x40000L, active10, 0x8000L, active11, 0x4010L); + return jjStartNfaWithStates_1(4, 64, 96); + else if ((active10 & 0x8000000L) != 0L) + return jjStartNfaWithStates_1(4, 667, 96); + return jjMoveStringLiteralDfa5_1(active0, 0x98000000020L, active1, 0L, active2, 0x40070000000L, active3, 0x40000000008000L, active4, 0x2000L, active5, 0L, active6, 0x600L, active7, 0x400000000000L, active8, 0xc000000000000003L, active9, 0x8000003L, active10, 0x2000000L, active11, 0x1004000L); case 79: case 111: - return jjMoveStringLiteralDfa5_1(active0, 0x20800000080L, active1, 0L, active2, 0x10000000006L, active3, 0x800400000L, active4, 0x200000L, active5, 0x8000000080001800L, active6, 0x400000001L, active7, 0L, active8, 0L, active9, 0x2000000000L, active10, 0x240000000080000L, active11, 0L); + return jjMoveStringLiteralDfa5_1(active0, 0x20800000080L, active1, 0L, active2, 0x10000000000cL, active3, 0x8004000000L, active4, 0x2000000L, active5, 0x1000030000L, active6, 0x10000000030L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0x20000000L, active11, 0x9L); case 80: case 112: - if ((active3 & 0x400000000000L) != 0L) + if ((active3 & 0x4000000000000L) != 0L) { - jjmatchedKind = 238; + jjmatchedKind = 242; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0x380000000000dL, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x800008000000000L, active11, 0L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x380000000000d1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0x20L); case 82: case 114: if ((active0 & 0x800L) != 0L) - return jjStartNfaWithStates_1(4, 11, 94); + return jjStartNfaWithStates_1(4, 11, 96); else if ((active0 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(4, 15, 94); - else if ((active2 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 191, 94); - else if ((active3 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(4, 213, 94); - else if ((active4 & 0x40L) != 0L) - return jjStartNfaWithStates_1(4, 262, 94); - else if ((active4 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 315, 94); - else if ((active5 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(4, 353, 94); - else if ((active6 & 0x4L) != 0L) + return jjStartNfaWithStates_1(4, 15, 96); + else if ((active3 & 0x8L) != 0L) + return jjStartNfaWithStates_1(4, 195, 96); + else if ((active3 & 0x2000000L) != 0L) + return jjStartNfaWithStates_1(4, 217, 96); + else if ((active4 & 0x400L) != 0L) + return jjStartNfaWithStates_1(4, 266, 96); + else if ((active5 & 0x1L) != 0L) + return jjStartNfaWithStates_1(4, 320, 96); + else if ((active5 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_1(4, 358, 96); + else if ((active6 & 0x80L) != 0L) { - jjmatchedKind = 386; + jjmatchedKind = 391; jjmatchedPos = 4; } - else if ((active6 & 0x80L) != 0L) - return jjStartNfaWithStates_1(4, 391, 94); - else if ((active6 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(4, 427, 94); - else if ((active6 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 435, 94); - else if ((active10 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(4, 656, 94); - else if ((active10 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(4, 664, 94); - return jjMoveStringLiteralDfa5_1(active0, 0x102010000000L, active1, 0x1800000000000L, active2, 0x3c00c00000L, active3, 0x4200006004001000L, active4, 0x100000038400L, active5, 0x14000100000000L, active6, 0x8000000000001028L, active7, 0x840008000fe80006L, active8, 0x200000000000000L, active9, 0L, active10, 0x2000000L, active11, 0L); + else if ((active6 & 0x2000L) != 0L) + return jjStartNfaWithStates_1(4, 397, 96); + else if ((active6 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 433, 96); + else if ((active6 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 441, 96); + else if ((active10 & 0x4000000L) != 0L) + return jjStartNfaWithStates_1(4, 666, 96); + else if ((active10 & 0x400000000L) != 0L) + return jjStartNfaWithStates_1(4, 674, 96); + return jjMoveStringLiteralDfa5_1(active0, 0x102010000000L, active1, 0x3000000000000L, active2, 0x3c00c000000L, active3, 0x2000060040010000L, active4, 0x2000000384004L, active5, 0x280002000000000L, active6, 0x40900L, active7, 0x100003fa0001a0L, active8, 0x108L, active9, 0x4L, active10, 0x800000000L, active11, 0L); case 83: case 115: - if ((active1 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 114, 94); - else if ((active3 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 247, 94); - else if ((active5 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(4, 347, 94); - else if ((active5 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(4, 349, 94); - else if ((active5 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 368, 94); - else if ((active6 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 445, 94); - else if ((active8 & 0x100L) != 0L) - return jjStartNfaWithStates_1(4, 520, 94); - else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 689, 94); - else if ((active10 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 703, 94); - return jjMoveStringLiteralDfa5_1(active0, 0x8000000L, active1, 0x1800L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000L, active6, 0L, active7, 0L, active8, 0x400000000000000L, active9, 0xff81f08000000000L, active10, 0x10000400000L, active11, 0L); + if ((active1 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 115, 96); + else if ((active3 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 251, 96); + else if ((active5 & 0x100000000L) != 0L) + return jjStartNfaWithStates_1(4, 352, 96); + else if ((active5 & 0x400000000L) != 0L) + return jjStartNfaWithStates_1(4, 354, 96); + else if ((active5 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 373, 96); + else if ((active7 & 0x8L) != 0L) + return jjStartNfaWithStates_1(4, 451, 96); + else if ((active8 & 0x20000L) != 0L) + return jjStartNfaWithStates_1(4, 529, 96); + else if ((active10 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 699, 96); + else if ((active11 & 0x200L) != 0L) + return jjStartNfaWithStates_1(4, 713, 96); + return jjMoveStringLiteralDfa5_1(active0, 0x8000000L, active1, 0x1800L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3e1000000000008L, active10, 0x40001000001ffL, active11, 0L); case 84: case 116: - if ((active1 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(4, 110, 94); - else if ((active3 & 0x40000L) != 0L) + if ((active1 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_1(4, 111, 96); + else if ((active3 & 0x400000L) != 0L) { - jjmatchedKind = 210; + jjmatchedKind = 214; jjmatchedPos = 4; } - else if ((active3 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(4, 212, 94); - else if ((active3 & 0x100000000000L) != 0L) + else if ((active3 & 0x1000000L) != 0L) + return jjStartNfaWithStates_1(4, 216, 96); + else if ((active3 & 0x1000000000000L) != 0L) { - jjmatchedKind = 236; + jjmatchedKind = 240; jjmatchedPos = 4; } - else if ((active4 & 0x80L) != 0L) - return jjStartNfaWithStates_1(4, 263, 94); - else if ((active4 & 0x100L) != 0L) - return jjStartNfaWithStates_1(4, 264, 94); - else if ((active4 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 309, 94); - else if ((active6 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(4, 420, 94); - else if ((active7 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(4, 464, 94); - else if ((active7 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(4, 477, 94); - else if ((active9 & 0x800L) != 0L) - return jjStartNfaWithStates_1(4, 587, 94); - else if ((active10 & 0x1L) != 0L) - return jjStartNfaWithStates_1(4, 640, 94); - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x201f800000000L, active2, 0x10000f00L, active3, 0x100200400080100L, active4, 0x401002000000000L, active5, 0x60000000030000L, active6, 0x300060002000000L, active7, 0x1000L, active8, 0xf800000000800000L, active9, 0x70000ffL, active10, 0x800000L, active11, 0L); + else if ((active4 & 0x800L) != 0L) + return jjStartNfaWithStates_1(4, 267, 96); + else if ((active4 & 0x1000L) != 0L) + return jjStartNfaWithStates_1(4, 268, 96); + else if ((active4 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 314, 96); + else if ((active6 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(4, 426, 96); + else if ((active7 & 0x400000L) != 0L) + return jjStartNfaWithStates_1(4, 470, 96); + else if ((active7 & 0x800000000L) != 0L) + return jjStartNfaWithStates_1(4, 483, 96); + else if ((active9 & 0x100000L) != 0L) + return jjStartNfaWithStates_1(4, 596, 96); + else if ((active10 & 0x200L) != 0L) + return jjStartNfaWithStates_1(4, 649, 96); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x401f800000000L, active2, 0x100007c00L, active3, 0x1002004000801000L, active4, 0x8020040000000000L, active5, 0xc00000000600000L, active6, 0xc001800080000000L, active7, 0x40000L, active8, 0x100000000L, active9, 0xe0001fff0L, active10, 0x200000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_1(active0, 0x8000000000000000L, active1, 0L, active2, 0x300000L, active3, 0xb0L, active4, 0x10000000003L, active5, 0x20L, active6, 0x800000100L, active7, 0x200000000L, active8, 0L, active9, 0x400000L, active10, 0x42000L, active11, 0x400008L); + return jjMoveStringLiteralDfa5_1(active0, 0x8000000000000000L, active1, 0L, active2, 0x3000000L, active3, 0xb00L, active4, 0x200000000030L, active5, 0x400L, active6, 0x20000004000L, active7, 0x8000000000L, active8, 0L, active9, 0x80000000L, active10, 0x10800000L, active11, 0x100002000L); case 86: case 118: - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0x80000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300L, active10, 0x100000L, active11, 0L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x1000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x60000L, active10, 0x40000000L, active11, 0L); case 87: case 119: if ((active0 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(4, 14, 94); - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000L); + return jjStartNfaWithStates_1(4, 14, 96); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); case 88: case 120: - if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(4, 716, 94); - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0L, active10, 0L, active11, 0L); + if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_1(4, 726, 96); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(4, 19, 94); + return jjStartNfaWithStates_1(4, 19, 96); else if ((active0 & 0x200000L) != 0L) { jjmatchedKind = 21; jjmatchedPos = 4; } - else if ((active2 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_1(4, 183, 94); - else if ((active3 & 0x2L) != 0L) - return jjStartNfaWithStates_1(4, 193, 94); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(4, 728, 94); - return jjMoveStringLiteralDfa5_1(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000800L); + else if ((active2 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_1(4, 187, 96); + else if ((active3 & 0x20L) != 0L) + return jjStartNfaWithStates_1(4, 197, 96); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_1(4, 738, 96); + return jjMoveStringLiteralDfa5_1(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000200000L); case 90: case 122: - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xc00000000000000L, active10, 0L, active11, 0L); default : break; } @@ -1764,18 +1771,18 @@ private final int jjMoveStringLiteralDfa5_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_1(active0, 0x18001c00000L, active1, 0x1800000001000L, active2, 0x20000000L, active3, 0x800020080000L, active4, 0L, active5, 0x20000000000006L, active6, 0L, active7, 0x1c000000000000L, active8, 0L, active9, 0x800000000L, active10, 0x20004000000000L, active11, 0x5c0L); + return jjMoveStringLiteralDfa6_1(active0, 0x18001c00000L, active1, 0x3000000001000L, active2, 0x200000000L, active3, 0x8000200800000L, active4, 0L, active5, 0x4000000000000c0L, active6, 0L, active7, 0x3800000000000000L, active8, 0L, active9, 0x100000000000L, active10, 0x8001000000000000L, active11, 0x170000L); case 65: case 97: - if ((active7 & 0x800000000000L) != 0L) + if ((active7 & 0x100000000000000L) != 0L) { - jjmatchedKind = 495; + jjmatchedKind = 504; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_1(active0, 0x800000002000L, active1, 0L, active2, 0x1000000000040020L, active3, 0x6004000000L, active4, 0x110018400038L, active5, 0x80100000000L, active6, 0x200c10L, active7, 0x8001000100000018L, active8, 0x100800400L, active9, 0x780000000200300L, active10, 0x50000000340L, active11, 0x4L); + return jjMoveStringLiteralDfa6_1(active0, 0x800000002000L, active1, 0L, active2, 0x400040L, active3, 0x60040000001L, active4, 0x2200184000380L, active5, 0x1002000000000L, active6, 0x8030600L, active7, 0x200004000000600L, active8, 0x20100080100L, active9, 0x40060000L, active10, 0x140000000e800fL, active11, 0x1000L); case 66: case 98: - return jjMoveStringLiteralDfa6_1(active0, 0x600000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_1(active0, 0x600000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: if ((active0 & 0x100000000L) != 0L) @@ -1783,255 +1790,255 @@ private final int jjMoveStringLiteralDfa5_1(long old0, long active0, long old1, jjmatchedKind = 32; jjmatchedPos = 5; } - else if ((active6 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 438, 94); - else if ((active9 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(5, 590, 94); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x7004003f8L, active2, 0L, active3, 0x2000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x28020L, active8, 0x60000000400000L, active9, 0L, active10, 0L, active11, 0x200020L); + else if ((active6 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 444, 96); + else if ((active9 & 0x800000L) != 0L) + return jjStartNfaWithStates_1(5, 599, 96); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x7004003f8L, active2, 0L, active3, 0x20000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000a00800L, active8, 0xc000000080000000L, active9, 0L, active10, 0L, active11, 0x80008000L); case 68: case 100: if ((active0 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 53, 94); - else if ((active3 & 0x800L) != 0L) - return jjStartNfaWithStates_1(5, 203, 94); - else if ((active5 & 0x800L) != 0L) - return jjStartNfaWithStates_1(5, 331, 94); - else if ((active6 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(5, 418, 94); - else if ((active7 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 53, 96); + else if ((active3 & 0x8000L) != 0L) + return jjStartNfaWithStates_1(5, 207, 96); + else if ((active5 & 0x10000L) != 0L) + return jjStartNfaWithStates_1(5, 336, 96); + else if ((active6 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_1(5, 424, 96); + else if ((active8 & 0x1L) != 0L) { - jjmatchedKind = 503; + jjmatchedKind = 512; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_1(active0, 0x180000000000000L, active1, 0x10000000000000L, active2, 0x1000L, active3, 0x30L, active4, 0x3L, active5, 0L, active6, 0x20300000000000L, active7, 0x100080000000000L, active8, 0L, active9, 0x48000000000L, active10, 0xf0008000L, active11, 0L); + return jjMoveStringLiteralDfa6_1(active0, 0x180000000000000L, active1, 0x20000000000000L, active2, 0x100L, active3, 0x300L, active4, 0x30L, active5, 0L, active6, 0x80c000000000000L, active7, 0x10000000000000L, active8, 0x2L, active9, 0x9000000000000L, active10, 0x3c002000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(5, 37, 94); - else if ((active1 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 113, 94); - else if ((active2 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(5, 145, 94); - else if ((active2 & 0x1000000L) != 0L) + return jjStartNfaWithStates_1(5, 37, 96); + else if ((active1 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 114, 96); + else if ((active2 & 0x200000L) != 0L) + return jjStartNfaWithStates_1(5, 149, 96); + else if ((active2 & 0x10000000L) != 0L) { - jjmatchedKind = 152; + jjmatchedKind = 156; jjmatchedPos = 5; } - else if ((active2 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(5, 155, 94); - else if ((active2 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(5, 156, 94); - else if ((active2 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(5, 173, 94); - else if ((active3 & 0x1L) != 0L) - return jjStartNfaWithStates_1(5, 192, 94); - else if ((active3 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 249, 94); - else if ((active5 & 0x10000L) != 0L) + else if ((active2 & 0x80000000L) != 0L) + return jjStartNfaWithStates_1(5, 159, 96); + else if ((active2 & 0x100000000L) != 0L) + return jjStartNfaWithStates_1(5, 160, 96); + else if ((active2 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 177, 96); + else if ((active3 & 0x10L) != 0L) + return jjStartNfaWithStates_1(5, 196, 96); + else if ((active3 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 253, 96); + else if ((active5 & 0x200000L) != 0L) { - jjmatchedKind = 336; + jjmatchedKind = 341; jjmatchedPos = 5; } - else if ((active5 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(5, 341, 94); - else if ((active7 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(5, 476, 94); - else if ((active8 & 0x800L) != 0L) - return jjStartNfaWithStates_1(5, 523, 94); - else if ((active8 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(5, 528, 94); - else if ((active10 & 0x400L) != 0L) - return jjStartNfaWithStates_1(5, 650, 94); - else if ((active10 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(5, 658, 94); - else if ((active10 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(5, 663, 94); - return jjMoveStringLiteralDfa6_1(active0, 0x40040000000L, active1, 0L, active2, 0x106000000L, active3, 0x200000000000L, active4, 0x8000001020084000L, active5, 0x40020001L, active6, 0x3000000001fc000L, active7, 0x6L, active8, 0x200000200000000L, active9, 0x20000008000000L, active10, 0x80000000020001eL, active11, 0x4000L); + else if ((active5 & 0x4000000L) != 0L) + return jjStartNfaWithStates_1(5, 346, 96); + else if ((active7 & 0x400000000L) != 0L) + return jjStartNfaWithStates_1(5, 482, 96); + else if ((active8 & 0x100000L) != 0L) + return jjStartNfaWithStates_1(5, 532, 96); + else if ((active8 & 0x2000000L) != 0L) + return jjStartNfaWithStates_1(5, 537, 96); + else if ((active10 & 0x100000L) != 0L) + return jjStartNfaWithStates_1(5, 660, 96); + else if ((active10 & 0x10000000L) != 0L) + return jjStartNfaWithStates_1(5, 668, 96); + else if ((active10 & 0x200000000L) != 0L) + return jjStartNfaWithStates_1(5, 673, 96); + return jjMoveStringLiteralDfa6_1(active0, 0x40040000000L, active1, 0L, active2, 0x1060000000L, active3, 0x2000000000000L, active4, 0x20200840000L, active5, 0x800400030L, active6, 0xc000000007f00000L, active7, 0x180L, active8, 0x40000000000L, active9, 0x4000001000000004L, active10, 0x80003c00L, active11, 0x1000020L); case 70: case 102: - if ((active5 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(5, 367, 94); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000000000L, active7, 0L, active8, 0x1c0000L, active9, 0x1800000000000000L, active10, 0L, active11, 0L); + if ((active5 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 372, 96); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000000000000L, active7, 0L, active8, 0x38000000L, active9, 0L, active10, 0x30L, active11, 0L); case 71: case 103: - if ((active3 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 242, 94); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000L, active4, 0L, active5, 0x700L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000L, active10, 0L, active11, 0x10000L); + if ((active3 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 246, 96); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x20000000L, active4, 0L, active5, 0xe000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x4000000L); case 72: case 104: - if ((active4 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 304, 94); - else if ((active7 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 502, 94); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000L, active7, 0L, active8, 0x40000000L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active4 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 309, 96); + else if ((active7 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 511, 96); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 73: case 105: - return jjMoveStringLiteralDfa6_1(active0, 0x8000000L, active1, 0x20000000800L, active2, 0x10e001c00000f00L, active3, 0x1901000400000400L, active4, 0L, active5, 0x4000000100000L, active6, 0x60000001008L, active7, 0x400000000081040L, active8, 0x380000000e004000L, active9, 0x40000001000000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa6_1(active0, 0x8000000L, active1, 0x60000000800L, active2, 0x10e001c000007c00L, active3, 0x9010004000004000L, active4, 0x1L, active5, 0x80000002000000L, active6, 0x1800000040100L, active7, 0x2041000L, active8, 0x1c00800008L, active9, 0x8000000200000070L, active10, 0L, active11, 0x4000L); case 76: case 108: - if ((active3 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(5, 233, 94); - else if ((active6 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(5, 407, 94); - else if ((active7 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 501, 94); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x4L, active2, 0x8000300000L, active3, 0L, active4, 0L, active5, 0x30000040010L, active6, 0x10000000000000L, active7, 0L, active8, 0x890000002L, active9, 0xe000000000400000L, active10, 0L, active11, 0x2000L); + if ((active3 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_1(5, 237, 96); + else if ((active6 & 0x20000000L) != 0L) + return jjStartNfaWithStates_1(5, 413, 96); + else if ((active7 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 510, 96); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x4L, active2, 0x80003000000L, active3, 0L, active4, 0L, active5, 0x600000800200L, active6, 0x400000000000000L, active7, 0L, active8, 0x112000000400L, active9, 0x80000000L, active10, 0x1c0L, active11, 0x800000L); case 77: case 109: - if ((active9 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(5, 593, 94); - else if ((active9 & 0x80000000L) != 0L) + if ((active9 & 0x4000000L) != 0L) + return jjStartNfaWithStates_1(5, 602, 96); + else if ((active9 & 0x10000000000L) != 0L) { - jjmatchedKind = 607; + jjmatchedKind = 616; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0x4L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000000000L, active9, 0x300002000L, active10, 0x4000L, active11, 0L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0x42L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x60000400008L, active10, 0x1000000L, active11, 0L); case 78: case 110: if ((active0 & 0x80L) != 0L) - return jjStartNfaWithStates_1(5, 7, 94); + return jjStartNfaWithStates_1(5, 7, 96); else if ((active1 & 0x800000L) != 0L) { jjmatchedKind = 87; jjmatchedPos = 5; } - else if ((active2 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(5, 171, 94); - else if ((active3 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(5, 227, 94); - else if ((active5 & 0x8000000000000000L) != 0L) + else if ((active2 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_1(5, 175, 96); + else if ((active3 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_1(5, 231, 96); + else if ((active6 & 0x10L) != 0L) { - jjmatchedKind = 383; + jjmatchedKind = 388; jjmatchedPos = 5; } - else if ((active7 & 0x200000L) != 0L) + else if ((active7 & 0x8000000L) != 0L) { - jjmatchedKind = 469; + jjmatchedKind = 475; jjmatchedPos = 5; } - else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 696, 94); - return jjMoveStringLiteralDfa6_1(active0, 0x4040000020000000L, active1, 0xffe0040007000000L, active2, 0x20050000000001L, active3, 0x1000L, active4, 0x400000001800L, active5, 0x880004000L, active6, 0x23c1000001L, active7, 0x43c0fc00000L, active8, 0x3fff000000001L, active9, 0x8000000000000L, active10, 0xa0000002000L, active11, 0x108000L); + else if ((active11 & 0x4L) != 0L) + return jjStartNfaWithStates_1(5, 706, 96); + return jjMoveStringLiteralDfa6_1(active0, 0x4040000020000000L, active1, 0xffc0080007000000L, active2, 0x200500000000003L, active3, 0x10000L, active4, 0x8000000018000L, active5, 0x11000080000L, active6, 0x8f040000020L, active7, 0x10f03f0000000L, active8, 0x7ffe00000000200L, active9, 0x1000000000000000L, active10, 0x28000000800000L, active11, 0x42000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_1(active0, 0x1800000000000000L, active1, 0L, active2, 0x4000008000L, active3, 0L, active4, 0x4000000c0000000L, active5, 0L, active6, 0x10000000000L, active7, 0x200108000000000L, active8, 0x1c000420000030L, active9, 0x6000000000000L, active10, 0x308000100000L, active11, 0x20000L); + return jjMoveStringLiteralDfa6_1(active0, 0x1800000000000000L, active1, 0L, active2, 0x40000080000L, active3, 0L, active4, 0x8000000c00000000L, active5, 0L, active6, 0x400000000000L, active7, 0x2c200000000000L, active8, 0x3800084000006004L, active9, 0xc00000000000000L, active10, 0xc2000040000000L, active11, 0x8000000L); case 80: case 112: - if ((active7 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(5, 481, 94); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000L, active11, 0x808L); + if ((active7 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_1(5, 487, 96); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400000L, active11, 0x202000L); case 81: case 113: - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x2L) != 0L) + if ((active2 & 0x4L) != 0L) { - jjmatchedKind = 129; + jjmatchedKind = 130; jjmatchedPos = 5; } - else if ((active3 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(5, 208, 94); - else if ((active5 & 0x40L) != 0L) - return jjStartNfaWithStates_1(5, 326, 94); - else if ((active5 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 369, 94); - else if ((active7 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(5, 493, 94); - else if ((active8 & 0x4L) != 0L) + else if ((active3 & 0x100000L) != 0L) + return jjStartNfaWithStates_1(5, 212, 96); + else if ((active5 & 0x800L) != 0L) + return jjStartNfaWithStates_1(5, 331, 96); + else if ((active5 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 374, 96); + else if ((active7 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 502, 96); + else if ((active8 & 0x800L) != 0L) { - jjmatchedKind = 514; + jjmatchedKind = 523; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_1(active0, 0x8000000800000000L, active1, 0x9f800000000L, active2, 0x800000000c80004L, active3, 0x8000000000000L, active4, 0x14000000000000L, active5, 0x10000000000020L, active6, 0x5800010000000L, active7, 0x40080L, active8, 0x1000008L, active9, 0x2006000000L, active10, 0L, active11, 0x200L); + return jjMoveStringLiteralDfa6_1(active0, 0x8000000800000000L, active1, 0x11f800000000L, active2, 0x800000000c800008L, active3, 0x80000000000000L, active4, 0x280000000000000L, active5, 0x200000000000400L, active6, 0x160000400000000L, active7, 0x1002000L, active8, 0x200001000L, active9, 0x400c00000000L, active10, 0L, active11, 0x80000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(5, 16, 94); - else if ((active2 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 190, 94); - else if ((active3 & 0x100L) != 0L) - return jjStartNfaWithStates_1(5, 200, 94); - else if ((active3 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 241, 94); - else if ((active5 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(5, 344, 94); - else if ((active5 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 374, 94); - else if ((active6 & 0x20L) != 0L) - return jjStartNfaWithStates_1(5, 389, 94); - else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(5, 677, 94); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x200000008000L, active2, 0L, active3, 0x10000000L, active4, 0x18200L, active5, 0x4003000L, active6, 0x8000400000000000L, active7, 0x2f00L, active8, 0xc000000000000000L, active9, 0x10000000ffL, active10, 0x800000000000L, active11, 0x6000000L); + return jjStartNfaWithStates_1(5, 16, 96); + else if ((active3 & 0x4L) != 0L) + return jjStartNfaWithStates_1(5, 194, 96); + else if ((active3 & 0x1000L) != 0L) + return jjStartNfaWithStates_1(5, 204, 96); + else if ((active3 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 245, 96); + else if ((active5 & 0x20000000L) != 0L) + return jjStartNfaWithStates_1(5, 349, 96); + else if ((active5 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 379, 96); + else if ((active6 & 0x800L) != 0L) + return jjStartNfaWithStates_1(5, 395, 96); + else if ((active10 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_1(5, 687, 96); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x400000008000L, active2, 0L, active3, 0x100000000L, active4, 0x2000182000L, active5, 0x80060000L, active6, 0x10000000000000L, active7, 0xbc020L, active8, 0L, active9, 0x20000001ff80L, active10, 0x200000000000000L, active11, 0x1800000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) - return jjStartNfaWithStates_1(5, 5, 94); + return jjStartNfaWithStates_1(5, 5, 96); else if ((active0 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(5, 43, 94); + return jjStartNfaWithStates_1(5, 43, 96); else if ((active1 & 0x8000000L) != 0L) { jjmatchedKind = 91; jjmatchedPos = 5; } - else if ((active3 & 0x4L) != 0L) + else if ((active3 & 0x40L) != 0L) { - jjmatchedKind = 194; + jjmatchedKind = 198; jjmatchedPos = 5; } - else if ((active3 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(5, 216, 94); - else if ((active3 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 254, 94); - else if ((active4 & 0x400L) != 0L) - return jjStartNfaWithStates_1(5, 266, 94); - else if ((active5 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 371, 94); + else if ((active3 & 0x10000000L) != 0L) + return jjStartNfaWithStates_1(5, 220, 96); + else if ((active4 & 0x4L) != 0L) + return jjStartNfaWithStates_1(5, 258, 96); + else if ((active4 & 0x4000L) != 0L) + return jjStartNfaWithStates_1(5, 270, 96); else if ((active5 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 376, 94); - else if ((active6 & 0x100L) != 0L) - return jjStartNfaWithStates_1(5, 392, 94); - else if ((active7 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(5, 468, 94); - else if ((active7 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 508, 94); - else if ((active9 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(5, 599, 94); - else if ((active10 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(5, 662, 94); - else if ((active10 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(5, 665, 94); - return jjMoveStringLiteralDfa6_1(active0, 0x2000010000000L, active1, 0xf03e0000L, active2, 0x20000000080L, active3, 0x8000000088L, active4, 0x300000000800000L, active5, 0L, active6, 0x800400000L, active7, 0x4000000000004000L, active8, 0L, active9, 0x1f80040080000L, active10, 0L, active11, 0x400000L); + return jjStartNfaWithStates_1(5, 376, 96); + else if ((active5 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_1(5, 381, 96); + else if ((active6 & 0x4000L) != 0L) + return jjStartNfaWithStates_1(5, 398, 96); + else if ((active7 & 0x4000000L) != 0L) + return jjStartNfaWithStates_1(5, 474, 96); + else if ((active8 & 0x20L) != 0L) + return jjStartNfaWithStates_1(5, 517, 96); + else if ((active9 & 0x100000000L) != 0L) + return jjStartNfaWithStates_1(5, 608, 96); + else if ((active10 & 0x100000000L) != 0L) + return jjStartNfaWithStates_1(5, 672, 96); + else if ((active10 & 0x800000000L) != 0L) + return jjStartNfaWithStates_1(5, 675, 96); + return jjMoveStringLiteralDfa6_1(active0, 0x2000010000000L, active1, 0xf03e0000L, active2, 0x200000000200L, active3, 0x80000000880L, active4, 0x6000000008000000L, active5, 0L, active6, 0x20010000000L, active7, 0x100000L, active8, 0x80L, active9, 0x3f0008010000000L, active10, 0L, active11, 0x100000000L); case 85: case 117: - return jjMoveStringLiteralDfa6_1(active0, 0x20000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000L, active8, 0x80000000000000L, active9, 0L, active10, 0x200000000000000L, active11, 0L); + return jjMoveStringLiteralDfa6_1(active0, 0x20000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0x8L); case 86: case 118: - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80200020000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x18000L, active10, 0x8000000000000L, active11, 0L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1004000200000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3000002L, active10, 0x2000000000000000L, active11, 0L); case 87: case 119: - if ((active4 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(5, 277, 94); - else if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(5, 694, 94); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x400000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000L, active11, 0L); + if ((active4 & 0x2000000L) != 0L) + return jjStartNfaWithStates_1(5, 281, 96); + else if ((active11 & 0x1L) != 0L) + return jjStartNfaWithStates_1(5, 704, 96); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x10000L, active3, 0x4000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L); case 88: case 120: - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x400000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(5, 44, 94); - else if ((active3 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(5, 223, 94); - else if ((active5 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(5, 342, 94); - else if ((active9 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(5, 605, 94); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(5, 44, 96); + else if ((active3 & 0x800000000L) != 0L) + return jjStartNfaWithStates_1(5, 227, 96); + else if ((active5 & 0x8000000L) != 0L) + return jjStartNfaWithStates_1(5, 347, 96); + else if ((active9 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_1(5, 614, 96); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000000000L); default : break; } @@ -2049,40 +2056,40 @@ private final int jjMoveStringLiteralDfa6_1(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active7 & 0x80L) != 0L) - return jjStartNfaWithStates_1(6, 455, 94); + if ((active7 & 0x2000L) != 0L) + return jjStartNfaWithStates_1(6, 461, 96); break; case 95: - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0x8L, active9, 0x300058000L, active10, 0L, active11, 0x4000L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1000L, active9, 0x6000b000000L, active10, 0L, active11, 0x1000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_1(active0, 0x40000000400000L, active1, 0xf800000000L, active2, 0x800000000400000L, active3, 0x1800000000001000L, active4, 0x80200020000L, active5, 0x80000000L, active6, 0L, active7, 0x80000004000L, active8, 0x700000040000000L, active9, 0xe001f0b000000000L, active10, 0x20000000000L, active11, 0x10000000L); + return jjMoveStringLiteralDfa7_1(active0, 0x40000000400000L, active1, 0xf800000000L, active2, 0x8000000004000000L, active3, 0x8000000000010000L, active4, 0x1004000200001L, active5, 0x1000000000L, active6, 0L, active7, 0x12000000100000L, active8, 0x8000000000L, active9, 0x3e160000000000eL, active10, 0x80000000001c0L, active11, 0x4000000000L); case 66: case 98: - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x400000000L, active3, 0L, active4, 0xc0000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x4000000000L, active3, 0L, active4, 0xc00000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000000000000L, active11, 0L); case 67: case 99: - if ((active2 & 0x2000000000000L) != 0L) + if ((active2 & 0x20000000000000L) != 0L) { - jjmatchedKind = 177; + jjmatchedKind = 181; jjmatchedPos = 6; } - else if ((active5 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 370, 94); - return jjMoveStringLiteralDfa7_1(active0, 0x800000L, active1, 0x8000L, active2, 0xc060000008000L, active3, 0x8800000000000L, active4, 0x800L, active5, 0x40000000L, active6, 0L, active7, 0x4000100080000L, active8, 0x200000001L, active9, 0x780000000000000L, active10, 0L, active11, 0L); + else if ((active5 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 375, 96); + return jjMoveStringLiteralDfa7_1(active0, 0x800000L, active1, 0x8000L, active2, 0xc0600000080000L, active3, 0x88000000000000L, active4, 0x2000008000L, active5, 0x800000000L, active6, 0L, active7, 0x800004002000000L, active8, 0x40000000200L, active9, 0L, active10, 0xfL, active11, 0L); case 68: case 100: - if ((active2 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(6, 153, 94); - else if ((active2 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(6, 160, 94); - else if ((active3 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(6, 237, 94); - else if ((active4 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 319, 94); - else if ((active10 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(6, 661, 94); - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x6000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0x800000002000L, active11, 0L); + if ((active2 & 0x20000000L) != 0L) + return jjStartNfaWithStates_1(6, 157, 96); + else if ((active2 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_1(6, 164, 96); + else if ((active3 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 241, 96); + else if ((active5 & 0x10L) != 0L) + return jjStartNfaWithStates_1(6, 324, 96); + else if ((active10 & 0x80000000L) != 0L) + return jjStartNfaWithStates_1(6, 671, 96); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x6000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000L, active7, 0L, active8, 0L, active9, 0x1000000000L, active10, 0x200000000800000L, active11, 0L); case 69: case 101: if ((active0 & 0x80000000000000L) != 0L) @@ -2091,40 +2098,40 @@ else if ((active10 & 0x200000L) != 0L) jjmatchedPos = 6; } else if ((active1 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(6, 81, 94); - else if ((active2 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(6, 147, 94); - else if ((active3 & 0x10L) != 0L) - return jjStartNfaWithStates_1(6, 196, 94); - else if ((active3 & 0x80L) != 0L) - return jjStartNfaWithStates_1(6, 199, 94); - else if ((active4 & 0x1L) != 0L) - return jjStartNfaWithStates_1(6, 256, 94); - else if ((active6 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(6, 419, 94); - else if ((active6 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(6, 431, 94); - else if ((active7 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(6, 461, 94); - else if ((active7 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(6, 463, 94); - else if ((active7 & 0x400000000L) != 0L) + return jjStartNfaWithStates_1(6, 81, 96); + else if ((active2 & 0x800000L) != 0L) + return jjStartNfaWithStates_1(6, 151, 96); + else if ((active3 & 0x100L) != 0L) + return jjStartNfaWithStates_1(6, 200, 96); + else if ((active3 & 0x800L) != 0L) + return jjStartNfaWithStates_1(6, 203, 96); + else if ((active4 & 0x10L) != 0L) + return jjStartNfaWithStates_1(6, 260, 96); + else if ((active6 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_1(6, 425, 96); + else if ((active6 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 437, 96); + else if ((active7 & 0x80000L) != 0L) + return jjStartNfaWithStates_1(6, 467, 96); + else if ((active7 & 0x200000L) != 0L) + return jjStartNfaWithStates_1(6, 469, 96); + else if ((active7 & 0x10000000000L) != 0L) { - jjmatchedKind = 482; + jjmatchedKind = 488; jjmatchedPos = 6; } - else if ((active10 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(6, 652, 94); - else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(6, 725, 94); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(6, 726, 94); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(6, 731, 94); - return jjMoveStringLiteralDfa7_1(active0, 0x100000000000000L, active1, 0x4L, active2, 0x400000000800000L, active3, 0x2000000010000000L, active4, 0x10000000018004L, active5, 0x10000004103720L, active6, 0x10100000000000L, active7, 0x3803c00000L, active8, 0x400000L, active9, 0x2000L, active10, 0x80000f0000000L, active11, 0x2200L); + else if ((active10 & 0x400000L) != 0L) + return jjStartNfaWithStates_1(6, 662, 96); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_1(6, 735, 96); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_1(6, 736, 96); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_1(6, 741, 96); + return jjMoveStringLiteralDfa7_1(active0, 0x100000000000000L, active1, 0x4L, active2, 0x4000000008030000L, active3, 0x100000000L, active4, 0x200000000180042L, active5, 0x20000008206e400L, active6, 0x404000000000000L, active7, 0xe00f0000000L, active8, 0x80000000L, active9, 0x400000L, active10, 0x200003c000000000L, active11, 0x880000L); case 70: case 102: - return jjMoveStringLiteralDfa7_1(active0, 0x8000000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_1(active0, 0x8000000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x800000000000000L) != 0L) @@ -2133,203 +2140,208 @@ else if ((active11 & 0x8000000L) != 0L) jjmatchedPos = 6; } else if ((active0 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 62, 94); - else if ((active4 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(6, 302, 94); - else if ((active5 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(6, 355, 94); - else if ((active6 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(6, 408, 94); - else if ((active6 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(6, 421, 94); - else if ((active7 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(6, 490, 94); - else if ((active10 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(6, 683, 94); - else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(6, 719, 94); - return jjMoveStringLiteralDfa7_1(active0, 0x1000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0x80L); + return jjStartNfaWithStates_1(6, 62, 96); + else if ((active4 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 307, 96); + else if ((active5 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_1(6, 360, 96); + else if ((active6 & 0x40000000L) != 0L) + return jjStartNfaWithStates_1(6, 414, 96); + else if ((active6 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_1(6, 427, 96); + else if ((active7 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 496, 96); + else if ((active10 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 693, 96); + else if ((active11 & 0x2000000L) != 0L) + return jjStartNfaWithStates_1(6, 729, 96); + return jjMoveStringLiteralDfa7_1(active0, 0x1000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0x20000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 49, 94); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(6, 730, 94); - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(6, 49, 96); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_1(6, 740, 96); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_1(active0, 0x810000000L, active1, 0x100000e03c0000L, active2, 0x2000001000L, active3, 0x400028L, active4, 0x300000000800202L, active5, 0x30000000000L, active6, 0x8000600000400000L, active7, 0x4000100004000000L, active8, 0xc0000000001c0002L, active9, 0x400060000ffL, active10, 0xc000L, active11, 0x10020L); + return jjMoveStringLiteralDfa7_1(active0, 0x810000000L, active1, 0x200000e03c0000L, active2, 0x20000000100L, active3, 0x4000280L, active4, 0x6000000008002020L, active5, 0x600000000000L, active6, 0x18000010000000L, active7, 0x20000100000020L, active8, 0x38000480L, active9, 0x8000c0001ff80L, active10, 0x3000000L, active11, 0x4008000L); case 76: case 108: - if ((active2 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(6, 146, 94); - else if ((active3 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(6, 229, 94); - else if ((active4 & 0x10L) != 0L) + if ((active2 & 0x400000L) != 0L) + return jjStartNfaWithStates_1(6, 150, 96); + else if ((active3 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_1(6, 233, 96); + else if ((active4 & 0x100L) != 0L) { - jjmatchedKind = 260; + jjmatchedKind = 264; jjmatchedPos = 6; } - else if ((active4 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(6, 300, 94); - else if ((active5 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(6, 352, 94); - else if ((active6 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(6, 405, 94); - return jjMoveStringLiteralDfa7_1(active0, 0x20000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20L, active5, 0x20480000000000L, active6, 0x10L, active7, 0x100L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active4 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 305, 96); + else if ((active5 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_1(6, 357, 96); + else if ((active6 & 0x200L) != 0L) + { + jjmatchedKind = 393; + jjmatchedPos = 6; + } + else if ((active6 & 0x8000000L) != 0L) + return jjStartNfaWithStates_1(6, 411, 96); + return jjMoveStringLiteralDfa7_1(active0, 0x20000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200L, active5, 0x409000000000000L, active6, 0x400L, active7, 0x4000L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa7_1(active0, 0x21000000L, active1, 0L, active2, 0xf00L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x10000000000L, active8, 0x1880000000000000L, active9, 0L, active10, 0x10000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_1(active0, 0x21000000L, active1, 0L, active2, 0x7c00L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0x31L, active10, 0x4000000000000L, active11, 0L); case 78: case 110: if ((active0 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(6, 42, 94); + return jjStartNfaWithStates_1(6, 42, 96); else if ((active0 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(6, 47, 94); - else if ((active3 & 0x400L) != 0L) - return jjStartNfaWithStates_1(6, 202, 94); - else if ((active3 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(6, 217, 94); - else if ((active3 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(6, 218, 94); - else if ((active6 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(6, 412, 94); - else if ((active6 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(6, 424, 94); - else if ((active7 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 505, 94); - else if ((active8 & 0x10L) != 0L) + return jjStartNfaWithStates_1(6, 47, 96); + else if ((active3 & 0x4000L) != 0L) + return jjStartNfaWithStates_1(6, 206, 96); + else if ((active3 & 0x20000000L) != 0L) + return jjStartNfaWithStates_1(6, 221, 96); + else if ((active3 & 0x40000000L) != 0L) + return jjStartNfaWithStates_1(6, 222, 96); + else if ((active6 & 0x400000000L) != 0L) + return jjStartNfaWithStates_1(6, 418, 96); + else if ((active6 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_1(6, 430, 96); + else if ((active8 & 0x4L) != 0L) + return jjStartNfaWithStates_1(6, 514, 96); + else if ((active8 & 0x2000L) != 0L) { - jjmatchedKind = 516; + jjmatchedKind = 525; jjmatchedPos = 6; } - else if ((active10 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(6, 659, 94); - else if ((active10 & 0x100000000000L) != 0L) + else if ((active10 & 0x20000000L) != 0L) + return jjStartNfaWithStates_1(6, 669, 96); + else if ((active10 & 0x40000000000000L) != 0L) { - jjmatchedKind = 684; + jjmatchedKind = 694; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x20000000000L, active2, 0x100010000000000L, active3, 0x1000000000000L, active4, 0L, active5, 0x4002L, active6, 0x8L, active7, 0x8000000000046L, active8, 0x201c000005004020L, active9, 0x46000800000000L, active10, 0x200000000000L, active11, 0x100L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x60000000000L, active2, 0x1000100000000000L, active3, 0x10000000000000L, active4, 0L, active5, 0x80040L, active6, 0x100L, active7, 0x1000000000001180L, active8, 0x3800000a00804000L, active9, 0x8c00100000000040L, active10, 0x80000000000000L, active11, 0x40000L); case 79: case 111: - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x1000L, active2, 0x8000000000L, active3, 0x400000000L, active4, 0L, active5, 0L, active6, 0x60000000000L, active7, 0x20L, active8, 0x8b0000000L, active9, 0x1800000000000000L, active10, 0x4000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x1000L, active2, 0x80000000000L, active3, 0x4000000000L, active4, 0L, active5, 0L, active6, 0x1800000000000L, active7, 0x800L, active8, 0x116000000000L, active9, 0L, active10, 0x1000000000030L, active11, 0L); case 80: case 112: - if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(6, 679, 94); - return jjMoveStringLiteralDfa7_1(active0, 0x10000000000L, active1, 0xa00000000000L, active2, 0x1800000000L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0x400L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active10 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 689, 96); + return jjMoveStringLiteralDfa7_1(active0, 0x10000000000L, active1, 0x1400000000000L, active2, 0x18000000000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x10000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(6, 154, 94); - else if ((active4 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(6, 270, 94); - else if ((active4 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(6, 275, 94); - else if ((active4 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(6, 278, 94); - else if ((active4 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 314, 94); - else if ((active6 & 0x100000000000000L) != 0L) + if ((active2 & 0x40000000L) != 0L) + return jjStartNfaWithStates_1(6, 158, 96); + else if ((active4 & 0x40000L) != 0L) + return jjStartNfaWithStates_1(6, 274, 96); + else if ((active4 & 0x800000L) != 0L) + return jjStartNfaWithStates_1(6, 279, 96); + else if ((active4 & 0x4000000L) != 0L) + return jjStartNfaWithStates_1(6, 282, 96); + else if ((active4 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 319, 96); + else if ((active6 & 0x4000000000000000L) != 0L) { - jjmatchedKind = 440; + jjmatchedKind = 446; jjmatchedPos = 6; } - else if ((active8 & 0x400L) != 0L) - return jjStartNfaWithStates_1(6, 522, 94); - else if ((active10 & 0x2L) != 0L) + else if ((active8 & 0x80000L) != 0L) + return jjStartNfaWithStates_1(6, 531, 96); + else if ((active10 & 0x400L) != 0L) { - jjmatchedKind = 641; + jjmatchedKind = 650; jjmatchedPos = 6; } - else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(6, 682, 94); - else if ((active10 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 699, 94); - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x1000000020000080L, active3, 0x8020000000L, active4, 0x18000000L, active5, 0x4L, active6, 0x200000002000000L, active7, 0L, active8, 0L, active9, 0x80040000300L, active10, 0x5cL, active11, 0x20000L); + else if ((active10 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 692, 96); + else if ((active11 & 0x20L) != 0L) + return jjStartNfaWithStates_1(6, 709, 96); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x200000200L, active3, 0x80200000001L, active4, 0x180000000L, active5, 0x80L, active6, 0x8000000080000000L, active7, 0x8000000000000L, active8, 0L, active9, 0x10008000060000L, active10, 0xb800L, active11, 0x8000000L); case 83: case 115: - if ((active5 & 0x1L) != 0L) - return jjStartNfaWithStates_1(6, 320, 94); - else if ((active5 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(6, 337, 94); - else if ((active6 & 0x1L) != 0L) - return jjStartNfaWithStates_1(6, 384, 94); - else if ((active7 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(6, 475, 94); - else if ((active7 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 504, 94); - else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_1(6, 707, 94); - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x200000L, active10, 0L, active11, 0x40L); + if ((active5 & 0x20L) != 0L) + return jjStartNfaWithStates_1(6, 325, 96); + else if ((active5 & 0x400000L) != 0L) + return jjStartNfaWithStates_1(6, 342, 96); + else if ((active6 & 0x20L) != 0L) + return jjStartNfaWithStates_1(6, 389, 96); + else if ((active7 & 0x200000000L) != 0L) + return jjStartNfaWithStates_1(6, 481, 96); + else if ((active8 & 0x2L) != 0L) + return jjStartNfaWithStates_1(6, 513, 96); + else if ((active11 & 0x2000L) != 0L) + return jjStartNfaWithStates_1(6, 717, 96); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x2000000000000L, active2, 0x40000000040L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000000L, active8, 0L, active9, 0x40000000L, active10, 0x40000L, active11, 0x10000L); case 84: case 116: if ((active1 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(6, 86, 94); + return jjStartNfaWithStates_1(6, 86, 96); else if ((active1 & 0x100000000L) != 0L) { jjmatchedKind = 96; jjmatchedPos = 6; } - else if ((active1 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(6, 107, 94); - else if ((active1 & 0x20000000000000L) != 0L) + else if ((active1 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_1(6, 108, 96); + else if ((active1 & 0x40000000000000L) != 0L) { - jjmatchedKind = 117; + jjmatchedKind = 118; jjmatchedPos = 6; } - else if ((active2 & 0x100000L) != 0L) + else if ((active2 & 0x1000000L) != 0L) { - jjmatchedKind = 148; + jjmatchedKind = 152; jjmatchedPos = 6; } - else if ((active2 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 181, 94); - else if ((active3 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(6, 205, 94); - else if ((active6 & 0x40000000L) != 0L) + else if ((active2 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 185, 96); + else if ((active3 & 0x20000L) != 0L) + return jjStartNfaWithStates_1(6, 209, 96); + else if ((active6 & 0x1000000000L) != 0L) { - jjmatchedKind = 414; + jjmatchedKind = 420; jjmatchedPos = 6; } - else if ((active7 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(6, 465, 94); - else if ((active7 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(6, 466, 94); - else if ((active8 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(6, 539, 94); - else if ((active9 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 627, 94); - else if ((active10 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(6, 660, 94); - else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 697, 94); - return jjMoveStringLiteralDfa7_1(active0, 0x48002040L, active1, 0xffc00006100003f8L, active2, 0x200001L, active3, 0x100004000000000L, active4, 0x1008L, active5, 0L, active6, 0x3801fc000L, active7, 0x8400000000000000L, active8, 0x3fff100800000L, active9, 0x1400000L, active10, 0x100L, active11, 0x2000c14L); + else if ((active7 & 0x800000L) != 0L) + return jjStartNfaWithStates_1(6, 471, 96); + else if ((active7 & 0x1000000L) != 0L) + return jjStartNfaWithStates_1(6, 472, 96); + else if ((active8 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_1(6, 548, 96); + else if ((active9 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 636, 96); + else if ((active10 & 0x40000000L) != 0L) + return jjStartNfaWithStates_1(6, 670, 96); + else if ((active11 & 0x8L) != 0L) + return jjStartNfaWithStates_1(6, 707, 96); + return jjMoveStringLiteralDfa7_1(active0, 0x48002040L, active1, 0xff800006100003f8L, active2, 0x2000003L, active3, 0x1000040000000000L, active4, 0x10080L, active5, 0L, active6, 0xe007f00000L, active7, 0L, active8, 0x7ffe20100000108L, active9, 0x280000000L, active10, 0x20000L, active11, 0x800305000L); case 85: case 117: - return jjMoveStringLiteralDfa7_1(active0, 0x600000000L, active1, 0x50000000000L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0x40010L, active6, 0x20000000000000L, active7, 0x8000000000L, active8, 0x400000000L, active9, 0x80000L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa7_1(active0, 0x600000000L, active1, 0x90000000000L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0x800200L, active6, 0x800000000000000L, active7, 0x200000000000L, active8, 0x80000000000L, active9, 0x10000000L, active10, 0L, active11, 0x40000000L); case 86: case 118: - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0x1018L, active8, 0L, active9, 0x20000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0x40000000000000L, active7, 0x40600L, active8, 0L, active9, 0x4000000000000000L, active10, 0L, active11, 0L); case 88: case 120: - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0x600L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0x18000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 63, 94); - else if ((active4 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 306, 94); - else if ((active6 & 0x800L) != 0L) - return jjStartNfaWithStates_1(6, 395, 94); - else if ((active6 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 434, 94); - else if ((active6 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_1(6, 439, 94); - else if ((active10 & 0x200L) != 0L) - return jjStartNfaWithStates_1(6, 649, 94); - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(6, 63, 96); + else if ((active4 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 311, 96); + else if ((active6 & 0x20000L) != 0L) + return jjStartNfaWithStates_1(6, 401, 96); + else if ((active6 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 440, 96); + else if ((active6 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_1(6, 445, 96); + else if ((active10 & 0x80000L) != 0L) + return jjStartNfaWithStates_1(6, 659, 96); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; } @@ -2347,226 +2359,231 @@ private final int jjMoveStringLiteralDfa7_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa8_1(active0, 0x1000000000000000L, active1, 0xffc0000006000000L, active2, 0xc000000000001L, active3, 0L, active4, 0L, active5, 0x700L, active6, 0x200000000L, active7, 0x3800000000L, active8, 0xc000000000000020L, active9, 0xffL, active10, 0x1cL, active11, 0L); + return jjMoveStringLiteralDfa8_1(active0, 0x1000000000000000L, active1, 0xff80000006000000L, active2, 0xc0000000000003L, active3, 0L, active4, 0L, active5, 0xe000L, active6, 0x8000000000L, active7, 0xe0000000000L, active8, 0x4000L, active9, 0x1ff80L, active10, 0x3800L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_1(active0, 0x10001000000L, active1, 0x1000000000000L, active2, 0x20008000L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000L, active8, 0x20000804000000L, active9, 0x800040000L, active10, 0x800000000000L, active11, 0x100L); + return jjMoveStringLiteralDfa8_1(active0, 0x10001000000L, active1, 0x2000000000000L, active2, 0x2000a0000L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1800000000000000L, active8, 0x4000100800000000L, active9, 0x100008000000L, active10, 0x200000000000000L, active11, 0x40000L); case 66: case 98: - if ((active8 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(7, 540, 94); - else if ((active8 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(7, 543, 94); - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0x400000L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x10000004000L, active8, 0x400000000L, active9, 0x100L, active10, 0L, active11, 0L); + if ((active8 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_1(7, 549, 96); + else if ((active8 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_1(7, 552, 96); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0x4000000L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0L, active7, 0x400000100000L, active8, 0x80000000000L, active9, 0x20000L, active10, 0L, active11, 0L); case 67: case 99: - if ((active2 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 186, 99); - else if ((active8 & 0x40000L) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 190, 99); + else if ((active8 & 0x8000000L) != 0L) { - jjmatchedKind = 530; + jjmatchedKind = 539; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x10000000000L, active2, 0L, active3, 0x10000000L, active4, 0x18000L, active5, 0x3000L, active6, 0L, active7, 0x10000000000006L, active8, 0x180000L, active9, 0x200L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x10000000000L, active2, 0L, active3, 0x100000000L, active4, 0x180000L, active5, 0x60000L, active6, 0L, active7, 0x2000000000000180L, active8, 0x30000000L, active9, 0x40000L, active10, 0L, active11, 0L); case 68: case 100: if ((active0 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 56, 94); - else if ((active2 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(7, 151, 94); - else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(7, 721, 94); - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3c00000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(7, 56, 96); + else if ((active2 & 0x8000000L) != 0L) + return jjStartNfaWithStates_1(7, 155, 96); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_1(7, 731, 96); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000f0000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x40L) != 0L) - return jjStartNfaWithStates_1(7, 6, 94); + return jjStartNfaWithStates_1(7, 6, 96); else if ((active0 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(7, 13, 94); + return jjStartNfaWithStates_1(7, 13, 96); else if ((active1 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(7, 79, 94); - else if ((active1 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(7, 106, 94); - else if ((active2 & 0x20L) != 0L) - return jjStartNfaWithStates_1(7, 133, 94); - else if ((active2 & 0x100L) != 0L) - { - jjmatchedKind = 136; + return jjStartNfaWithStates_1(7, 79, 96); + else if ((active1 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_1(7, 107, 96); + else if ((active2 & 0x40L) != 0L) + return jjStartNfaWithStates_1(7, 134, 96); + else if ((active2 & 0x400L) != 0L) + { + jjmatchedKind = 138; jjmatchedPos = 7; } - else if ((active2 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(7, 162, 94); - else if ((active4 & 0x800L) != 0L) - return jjStartNfaWithStates_1(7, 267, 94); - else if ((active4 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(7, 293, 94); - else if ((active4 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(7, 296, 94); - else if ((active5 & 0x10L) != 0L) - return jjStartNfaWithStates_1(7, 324, 94); - else if ((active5 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(7, 338, 94); - else if ((active5 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(7, 366, 94); - else if ((active6 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 432, 94); - else if ((active7 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(7, 460, 94); - else if ((active8 & 0x1L) != 0L) - return jjStartNfaWithStates_1(7, 512, 94); - else if ((active8 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(7, 535, 94); + else if ((active2 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_1(7, 166, 96); + else if ((active4 & 0x8000L) != 0L) + return jjStartNfaWithStates_1(7, 271, 96); + else if ((active4 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(7, 298, 96); + else if ((active4 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_1(7, 301, 96); + else if ((active5 & 0x200L) != 0L) + return jjStartNfaWithStates_1(7, 329, 96); + else if ((active5 & 0x800000L) != 0L) + return jjStartNfaWithStates_1(7, 343, 96); + else if ((active5 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 371, 96); + else if ((active6 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 438, 96); + else if ((active7 & 0x40000L) != 0L) + return jjStartNfaWithStates_1(7, 466, 96); + else if ((active8 & 0x200L) != 0L) + return jjStartNfaWithStates_1(7, 521, 96); else if ((active8 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(7, 544, 94); - else if ((active8 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 544, 96); + else if ((active8 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_1(7, 553, 96); + else if ((active9 & 0x10L) != 0L) { - jjmatchedKind = 571; + jjmatchedKind = 580; jjmatchedPos = 7; } - else if ((active10 & 0x100L) != 0L) - return jjStartNfaWithStates_1(7, 648, 94); - else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_1(7, 706, 94); - return jjMoveStringLiteralDfa8_1(active0, 0x20000000L, active1, 0x100003f8L, active2, 0x10000000e00L, active3, 0x4000000000L, active4, 0x100000000L, active5, 0x20000000000004L, active6, 0x1fc000L, active7, 0L, active8, 0x1083fff000000000L, active9, 0x26000000000000L, active10, 0x2000L, active11, 0x800L); + else if ((active10 & 0x20000L) != 0L) + return jjStartNfaWithStates_1(7, 657, 96); + else if ((active11 & 0x1000L) != 0L) + return jjStartNfaWithStates_1(7, 716, 96); + return jjMoveStringLiteralDfa8_1(active0, 0x20000000L, active1, 0x100003f8L, active2, 0x100000017800L, active3, 0x40000000000L, active4, 0x1000000000L, active5, 0x400000000000080L, active6, 0x7f00000L, active7, 0L, active8, 0x7ffe00000000000L, active9, 0x4c00000000000021L, active10, 0x800000L, active11, 0x200000L); case 70: case 102: - if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(7, 678, 94); - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0x1000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000000L, active10, 0xf0000000L, active11, 0L); + if ((active10 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 688, 96); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0x100L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0L, active9, 0x8000000000000L, active10, 0x3c000000000L, active11, 0L); case 71: case 103: - if ((active2 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 184, 94); - else if ((active3 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 240, 94); - else if ((active6 & 0x8L) != 0L) - return jjStartNfaWithStates_1(7, 387, 94); - else if ((active9 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 630, 94); - return jjMoveStringLiteralDfa8_1(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000000000L, active5, 0L, active6, 0x10000000000000L, active7, 0x18L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0x200L); + if ((active2 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 188, 96); + else if ((active3 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 244, 96); + else if ((active6 & 0x100L) != 0L) + return jjStartNfaWithStates_1(7, 392, 96); + else if ((active9 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 639, 96); + return jjMoveStringLiteralDfa8_1(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0x400000000000000L, active7, 0x600L, active8, 0x3800000000000000L, active9, 0L, active10, 0L, active11, 0x80000L); case 72: case 104: - if ((active2 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(7, 169, 94); - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_1(7, 173, 96); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x80000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_1(active0, 0x8000000L, active1, 0xfe00000800L, active2, 0L, active3, 0L, active4, 0x20001000L, active5, 0x4000L, active6, 0x180001010L, active7, 0L, active8, 0x203000000L, active9, 0x40400000L, active10, 0x200000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa8_1(active0, 0x8000000L, active1, 0xfe00000800L, active2, 0L, active3, 0L, active4, 0x200010000L, active5, 0x80000L, active6, 0x6000040400L, active7, 0L, active8, 0x40600000000L, active9, 0x8080000000L, active10, 0x80000000000000L, active11, 0x800000000L); case 74: case 106: - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0xc0000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0xc00000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 75: case 107: - if ((active7 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(7, 480, 94); + if ((active7 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_1(7, 486, 96); break; case 76: case 108: - if ((active3 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(7, 204, 94); - else if ((active4 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(7, 273, 94); - else if ((active5 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(7, 351, 94); - else if ((active8 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 569, 94); - else if ((active11 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(7, 717, 94); - return jjMoveStringLiteralDfa8_1(active0, 0x40020000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80200000020L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000020000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active3 & 0x10000L) != 0L) + return jjStartNfaWithStates_1(7, 208, 96); + else if ((active4 & 0x200000L) != 0L) + return jjStartNfaWithStates_1(7, 277, 96); + else if ((active5 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_1(7, 356, 96); + else if ((active9 & 0x4L) != 0L) + return jjStartNfaWithStates_1(7, 578, 96); + else if ((active11 & 0x800000L) != 0L) + return jjStartNfaWithStates_1(7, 727, 96); + return jjMoveStringLiteralDfa8_1(active0, 0x40020000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1004000000200L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000L, active9, 0x8L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0L, active4, 0x300000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0L, active4, 0x6000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3e0200000000000L, active10, 0L, active11, 0L); case 78: case 110: - if ((active3 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(7, 226, 94); - else if ((active6 & 0x20000000000L) != 0L) + if ((active3 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_1(7, 230, 96); + else if ((active6 & 0x800000000000L) != 0L) { - jjmatchedKind = 425; + jjmatchedKind = 431; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x1000004L, active2, 0x2000000004L, active3, 0x2000000000400020L, active4, 0x6L, active5, 0x10000000000000L, active6, 0x240000000000L, active7, 0x1108004000000L, active8, 0x8L, active9, 0x6002000L, active10, 0L, active11, 0x10010000L); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x1000004L, active2, 0x20000000008L, active3, 0x4000200L, active4, 0x62L, active5, 0x200000000000000L, active6, 0x9000000000000L, active7, 0x220200100000000L, active8, 0x1000L, active9, 0xc00400000L, active10, 0L, active11, 0x4004000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_1(active0, 0x10800000L, active1, 0xa000e03c0000L, active2, 0L, active3, 0x800020000008L, active4, 0x800008L, active5, 0x40000000L, active6, 0x400002400000L, active7, 0x8000000000000100L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa8_1(active0, 0x10800000L, active1, 0x14000e03c0000L, active2, 0L, active3, 0x8000200000080L, active4, 0x2008000080L, active5, 0x800000000L, active6, 0x10000090000000L, active7, 0x4000L, active8, 0x8000000000000100L, active9, 0L, active10, 0L, active11, 0x40000000L); case 80: case 112: - if ((active10 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(7, 680, 94); - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0x8000L, active10, 0L, active11, 0L); + if ((active10 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 690, 96); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0x1000000L, active10, 0L, active11, 0L); case 82: case 114: - if ((active8 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(7, 542, 94); - else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 691, 94); - return jjMoveStringLiteralDfa8_1(active0, 0x8040000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0x18000000L, active5, 0L, active6, 0x20000000000000L, active7, 0L, active8, 0x100000000000000L, active9, 0x1800002000080000L, active10, 0x20000000040L, active11, 0x80L); + if ((active8 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_1(7, 551, 96); + else if ((active10 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 701, 96); + return jjMoveStringLiteralDfa8_1(active0, 0x8040000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0x180000000L, active5, 0L, active6, 0x800000000000000L, active7, 0L, active8, 0L, active9, 0x400010000002L, active10, 0x8000000008030L, active11, 0x20000L); case 83: case 115: if ((active1 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(7, 105, 94); - else if ((active2 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(7, 149, 94); - else if ((active5 & 0x20L) != 0L) - return jjStartNfaWithStates_1(7, 325, 94); - else if ((active5 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(7, 340, 94); - else if ((active6 & 0x400L) != 0L) - return jjStartNfaWithStates_1(7, 394, 94); - else if ((active6 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(7, 428, 94); - else if ((active6 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 441, 94); - else if ((active9 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(7, 603, 94); - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x10000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x210000L, active10, 0L, active11, 0x4000L); + { + jjmatchedKind = 105; + jjmatchedPos = 7; + } + else if ((active2 & 0x2000000L) != 0L) + return jjStartNfaWithStates_1(7, 153, 96); + else if ((active5 & 0x400L) != 0L) + return jjStartNfaWithStates_1(7, 330, 96); + else if ((active5 & 0x2000000L) != 0L) + return jjStartNfaWithStates_1(7, 345, 96); + else if ((active6 & 0x10000L) != 0L) + return jjStartNfaWithStates_1(7, 400, 96); + else if ((active6 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 434, 96); + else if ((active6 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 447, 96); + else if ((active9 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_1(7, 612, 96); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x20040000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x42000000L, active10, 0L, active11, 0x1000000L); case 84: case 116: - if ((active2 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(7, 170, 94); - else if ((active5 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(7, 346, 94); - else if ((active7 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(7, 467, 94); - else if ((active8 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(7, 526, 94); - return jjMoveStringLiteralDfa8_1(active0, 0x600000000L, active1, 0L, active2, 0x1000005800000000L, active3, 0x1800000000000000L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0xe780000100000000L, active10, 0xc000L, active11, 0x20L); + if ((active2 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_1(7, 174, 96); + else if ((active5 & 0x80000000L) != 0L) + return jjStartNfaWithStates_1(7, 351, 96); + else if ((active7 & 0x2000000L) != 0L) + return jjStartNfaWithStates_1(7, 473, 96); + else if ((active8 & 0x800000L) != 0L) + return jjStartNfaWithStates_1(7, 535, 96); + else if ((active10 & 0x40000L) != 0L) + return jjStartNfaWithStates_1(7, 658, 96); + return jjMoveStringLiteralDfa8_1(active0, 0x600000000L, active1, 0L, active2, 0x58000000000L, active3, 0x8000000000000001L, active4, 0x2001L, active5, 0L, active6, 0L, active7, 0x1000L, active8, 0L, active9, 0x20000000000L, active10, 0x30001cfL, active11, 0x8000L); case 85: case 117: - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0x80000000002L, active6, 0L, active7, 0x20L, active8, 0L, active9, 0x80201000000L, active10, 0x20000000000000L, active11, 0L); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0x1000000000040L, active6, 0L, active7, 0x800L, active8, 0L, active9, 0x10040200000000L, active10, 0x8000000000000000L, active11, 0L); case 86: case 118: - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000000L, active7, 0x4000000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20L, active8, 0x80L, active9, 0L, active10, 0L, active11, 0L); case 87: case 119: - if ((active2 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(7, 167, 94); + if ((active2 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_1(7, 171, 96); break; case 88: case 120: - if ((active7 & 0x200L) != 0L) - return jjStartNfaWithStates_1(7, 457, 94); + if ((active7 & 0x8000L) != 0L) + return jjStartNfaWithStates_1(7, 463, 96); break; case 89: case 121: - if ((active3 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(7, 231, 94); - else if ((active3 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 248, 94); - else if ((active7 & 0x400L) != 0L) - return jjStartNfaWithStates_1(7, 458, 94); - else if ((active7 & 0x800L) != 0L) - return jjStartNfaWithStates_1(7, 459, 94); - else if ((active7 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(7, 491, 94); - else if ((active7 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(7, 506, 94); - else if ((active9 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(7, 615, 94); - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000000000L, active9, 0L, active10, 0L, active11, 0x450L); + if ((active3 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_1(7, 235, 96); + else if ((active3 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 252, 96); + else if ((active7 & 0x10000L) != 0L) + return jjStartNfaWithStates_1(7, 464, 96); + else if ((active7 & 0x20000L) != 0L) + return jjStartNfaWithStates_1(7, 465, 96); + else if ((active7 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 500, 96); + else if ((active8 & 0x8L) != 0L) + return jjStartNfaWithStates_1(7, 515, 96); + else if ((active9 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_1(7, 624, 96); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40L, active10, 0L, active11, 0x114000L); case 90: case 122: - return jjMoveStringLiteralDfa8_1(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x30000000000L, active6, 0L, active7, 0L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_1(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x600000000000L, active6, 0L, active7, 0L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); default : break; } @@ -2584,31 +2601,31 @@ private final int jjMoveStringLiteralDfa8_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0xe00L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000000000L, active7, 0x3c00000L, active8, 0x80000L, active9, 0x6000000200000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x40000000000L, active2, 0x7800L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0xf0000000L, active8, 0x10000000L, active9, 0xc00000040000000L, active10, 0L, active11, 0x4000L); case 65: case 97: - return jjMoveStringLiteralDfa9_1(active0, 0x8800000000L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0x18001000L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0xaL, active9, 0x10000L, active10, 0x40L, active11, 0L); + return jjMoveStringLiteralDfa9_1(active0, 0x8800000000L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0x180010000L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1400L, active9, 0x2000000L, active10, 0x8000L, active11, 0L); case 66: case 98: - if ((active8 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 566, 94); + if ((active8 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 575, 96); break; case 67: case 99: - if ((active9 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(8, 606, 94); - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x40000000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x10000000000004L, active6, 0L, active7, 0x800000000L, active8, 0x100000000000000L, active9, 0L, active10, 0x20000000000004L, active11, 0x2000000L); + if ((active9 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_1(8, 615, 96); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x80000000000000L, active2, 0x100000000000L, active3, 0L, active4, 0L, active5, 0x200000000000080L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0x2L, active10, 0x8000000000000800L, active11, 0x800000000L); case 68: case 100: if ((active1 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(8, 92, 94); - else if ((active3 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(8, 230, 94); - else if ((active10 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(8, 653, 94); - else if ((active11 & 0x800L) != 0L) - return jjStartNfaWithStates_1(8, 715, 94); - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x180000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(8, 92, 96); + else if ((active3 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(8, 234, 96); + else if ((active10 & 0x800000L) != 0L) + return jjStartNfaWithStates_1(8, 663, 96); + else if ((active11 & 0x200000L) != 0L) + return jjStartNfaWithStates_1(8, 725, 96); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x300000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x200000000L) != 0L) @@ -2616,91 +2633,96 @@ else if ((active11 & 0x800L) != 0L) jjmatchedKind = 33; jjmatchedPos = 8; } - else if ((active2 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 187, 94); - else if ((active3 & 0x800000000000000L) != 0L) + else if ((active2 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 191, 96); + else if ((active3 & 0x8000000000000000L) != 0L) { - jjmatchedKind = 251; + jjmatchedKind = 255; jjmatchedPos = 8; } - else if ((active4 & 0x100000000000000L) != 0L) + else if ((active4 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 312; + jjmatchedKind = 317; jjmatchedPos = 8; } - else if ((active5 & 0x10000000000L) != 0L) + else if ((active5 & 0x200000000000L) != 0L) { - jjmatchedKind = 360; + jjmatchedKind = 365; jjmatchedPos = 8; } - else if ((active5 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(8, 363, 94); - else if ((active6 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 437, 94); - else if ((active6 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 447, 94); - else if ((active7 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 510, 94); - else if ((active9 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(8, 595, 94); - else if ((active9 & 0x2000000000000000L) != 0L) + else if ((active5 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 368, 96); + else if ((active6 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 443, 96); + else if ((active7 & 0x20L) != 0L) + return jjStartNfaWithStates_1(8, 453, 96); + else if ((active8 & 0x80L) != 0L) + return jjStartNfaWithStates_1(8, 519, 96); + else if ((active9 & 0x10000000L) != 0L) + return jjStartNfaWithStates_1(8, 604, 96); + else if ((active10 & 0x40L) != 0L) { - jjmatchedKind = 637; + jjmatchedKind = 646; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_1(active0, 0x400000000L, active1, 0x800L, active2, 0L, active3, 0x1000000000000000L, active4, 0x2100010c0000000L, active5, 0x20000000000L, active6, 0x10000000000000L, active7, 0x10000000042L, active8, 0x20000000L, active9, 0x4000000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_1(active0, 0x400000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0x4200020c00000001L, active5, 0x400000000000L, active6, 0x400000000000000L, active7, 0x400000001080L, active8, 0x4000000000L, active9, 0L, active10, 0x80L, active11, 0L); case 70: case 102: - if ((active2 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(8, 140, 94); - else if ((active9 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(8, 618, 94); - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x100L) != 0L) + return jjStartNfaWithStates_1(8, 136, 96); + else if ((active9 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 627, 96); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(8, 22, 94); - else if ((active3 & 0x20L) != 0L) - return jjStartNfaWithStates_1(8, 197, 94); - else if ((active3 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(8, 214, 94); - else if ((active4 & 0x2L) != 0L) - return jjStartNfaWithStates_1(8, 257, 94); - else if ((active6 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(8, 429, 94); - else if ((active7 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(8, 474, 94); - else if ((active9 & 0x2000000L) != 0L) + return jjStartNfaWithStates_1(8, 22, 96); + else if ((active3 & 0x200L) != 0L) + return jjStartNfaWithStates_1(8, 201, 96); + else if ((active3 & 0x4000000L) != 0L) + return jjStartNfaWithStates_1(8, 218, 96); + else if ((active4 & 0x20L) != 0L) + return jjStartNfaWithStates_1(8, 261, 96); + else if ((active6 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 435, 96); + else if ((active7 & 0x100000000L) != 0L) + return jjStartNfaWithStates_1(8, 480, 96); + else if ((active9 & 0x400000000L) != 0L) { - jjmatchedKind = 601; + jjmatchedKind = 610; jjmatchedPos = 8; } - else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(8, 720, 94); - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x4L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0x4040000L, active10, 0L, active11, 0x10000000L); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_1(8, 730, 96); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x4L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0x808000000L, active10, 0L, active11, 0x4000000000L); case 72: case 104: - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x201L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000000L, active8, 0L, active9, 0x40200L, active10, 0L, active11, 0L); case 73: case 105: if ((active0 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(8, 41, 94); - return jjMoveStringLiteralDfa9_1(active0, 0x40000040000000L, active1, 0x1000L, active2, 0x1000006800000000L, active3, 0L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0x4L, active8, 0x2000000000000000L, active9, 0x8780000100000100L, active10, 0xf0008000L, active11, 0x4200L); + return jjStartNfaWithStates_1(8, 41, 96); + return jjMoveStringLiteralDfa9_1(active0, 0x40000040000000L, active1, 0x1000L, active2, 0x68000000000L, active3, 0x1L, active4, 0x2000L, active5, 0L, active6, 0L, active7, 0x8000000000100L, active8, 0L, active9, 0x20000020040L, active10, 0x3c00200010fL, active11, 0x1080000L); + case 75: + case 107: + if ((active2 & 0x10000L) != 0L) + return jjStartNfaWithStates_1(8, 144, 96); + break; case 76: case 108: - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0x400000L, active3, 0x80000L, active4, 0L, active5, 0x100L, active6, 0x180000000L, active7, 0x4000L, active8, 0x400000400000000L, active9, 0x20000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0x4000000L, active3, 0x800000L, active4, 0L, active5, 0x2000L, active6, 0x6000000000L, active7, 0x100000L, active8, 0x80000000000L, active9, 0x4000000000000008L, active10, 0L, active11, 0L); case 77: case 109: - if ((active9 & 0x800000000000000L) != 0L) + if ((active10 & 0x10L) != 0L) { - jjmatchedKind = 635; + jjmatchedKind = 644; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x1000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0L, active7, 0x8000000000000L, active8, 0x200000000L, active9, 0x100000080000000eL, active10, 0L, active11, 0x100L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x2000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40L, active6, 0L, active7, 0x1000000000000000L, active8, 0x40000000000L, active9, 0x100000001c00L, active10, 0x20L, active11, 0x40000L); case 78: case 110: if ((active0 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(8, 28, 94); + return jjStartNfaWithStates_1(8, 28, 96); else if ((active1 & 0x40000L) != 0L) { jjmatchedKind = 82; @@ -2711,31 +2733,31 @@ else if ((active1 & 0x20000000L) != 0L) jjmatchedKind = 93; jjmatchedPos = 8; } - else if ((active3 & 0x8L) != 0L) - return jjStartNfaWithStates_1(8, 195, 94); - else if ((active4 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(8, 279, 94); - else if ((active6 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(8, 406, 94); - else if ((active6 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(8, 430, 94); - return jjMoveStringLiteralDfa9_1(active0, 0x1000000020800000L, active1, 0x20f8c0380000L, active2, 0x20000080L, active3, 0x800000000000L, active4, 0L, active5, 0x20000040000000L, active6, 0x1000L, active7, 0x1000000020L, active8, 0x3000000L, active9, 0x80000000000L, active10, 0x200000000008L, active11, 0x40L); + else if ((active3 & 0x80L) != 0L) + return jjStartNfaWithStates_1(8, 199, 96); + else if ((active4 & 0x8000000L) != 0L) + return jjStartNfaWithStates_1(8, 283, 96); + else if ((active6 & 0x10000000L) != 0L) + return jjStartNfaWithStates_1(8, 412, 96); + else if ((active6 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 436, 96); + return jjMoveStringLiteralDfa9_1(active0, 0x1000000020800000L, active1, 0x40f8c0380000L, active2, 0x200000200L, active3, 0x8000000000000L, active4, 0L, active5, 0x400000800000000L, active6, 0x40000L, active7, 0x40000000800L, active8, 0x600000000L, active9, 0x10000000000000L, active10, 0x80000000001000L, active11, 0x10000L); case 79: case 111: - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x600000000L, active2, 0x1000000000L, active3, 0x10000000L, active4, 0L, active5, 0x3200L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0x80L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x600000000L, active2, 0x10000000000L, active3, 0x100000000L, active4, 0L, active5, 0x64000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1000000L, active10, 0L, active11, 0x20000L); case 80: case 112: - if ((active1 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(8, 111, 94); - else if ((active9 & 0x100000000000L) != 0L) + if ((active1 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 112, 96); + else if ((active9 & 0x20000000000000L) != 0L) { - jjmatchedKind = 620; + jjmatchedKind = 629; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100L, active8, 0L, active9, 0x1e01000000000L, active10, 0L, active11, 0x400L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x3c0200000000000L, active10, 0L, active11, 0x100000L); case 81: case 113: - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0L); case 82: case 114: if ((active1 & 0x8L) != 0L) @@ -2743,74 +2765,78 @@ else if ((active9 & 0x100000000000L) != 0L) jjmatchedKind = 67; jjmatchedPos = 8; } - else if ((active4 & 0x8L) != 0L) - return jjStartNfaWithStates_1(8, 259, 94); - else if ((active6 & 0x4000L) != 0L) + else if ((active2 & 0x20000L) != 0L) + return jjStartNfaWithStates_1(8, 145, 96); + else if ((active4 & 0x80L) != 0L) + return jjStartNfaWithStates_1(8, 263, 96); + else if ((active6 & 0x100000L) != 0L) { - jjmatchedKind = 398; + jjmatchedKind = 404; jjmatchedPos = 8; } - else if ((active7 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 511, 94); - else if ((active8 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 565, 94); - return jjMoveStringLiteralDfa9_1(active0, 0x10000000000L, active1, 0xc000000000003f0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0x2001f8000L, active7, 0L, active8, 0x83ffe004000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active8 & 0x100L) != 0L) + return jjStartNfaWithStates_1(8, 520, 96); + else if ((active8 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 574, 96); + return jjMoveStringLiteralDfa9_1(active0, 0x10000000000L, active1, 0x18000000000003f0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0x8007e00000L, active7, 0L, active8, 0x7ffc00800000000L, active9, 0x1L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x1000000000000000L, active2, 0L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0x1000000000000000L, active9, 0x200400020L, active10, 0x10L, active11, 0L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x2000000000000000L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0x4080000000000L, active8, 0L, active9, 0x40080004020L, active10, 0x2000L, active11, 0L); case 84: case 116: - if ((active1 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 116, 94); - else if ((active4 & 0x4L) != 0L) - return jjStartNfaWithStates_1(8, 258, 94); - else if ((active4 & 0x8000L) != 0L) + if ((active1 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 117, 96); + else if ((active4 & 0x40L) != 0L) + return jjStartNfaWithStates_1(8, 262, 96); + else if ((active4 & 0x80000L) != 0L) { - jjmatchedKind = 271; + jjmatchedKind = 275; jjmatchedPos = 8; } - else if ((active7 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(8, 487, 94); - else if ((active7 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(8, 492, 94); - else if ((active8 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(8, 547, 94); - else if ((active9 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(8, 589, 94); - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0xe000010000000000L, active2, 0x8000L, active3, 0x2000000000000000L, active4, 0x10000L, active5, 0x400L, active6, 0x10L, active7, 0x4000000000000L, active8, 0x500000L, active9, 0x1000000L, active10, 0x4000L, active11, 0L); + else if ((active7 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_1(8, 493, 96); + else if ((active7 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 497, 96); + else if ((active7 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 501, 96); + else if ((active8 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_1(8, 556, 96); + else if ((active9 & 0x400000L) != 0L) + return jjStartNfaWithStates_1(8, 598, 96); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0xc000010000000000L, active2, 0x80001L, active3, 0L, active4, 0x100002L, active5, 0x8000L, active6, 0x400L, active7, 0x800000000000000L, active8, 0xa0000000L, active9, 0x200000000L, active10, 0x1000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0x80200000000L, active5, 0x4000L, active6, 0x2000000L, active7, 0L, active8, 0x20L, active9, 0L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0x1004000000000L, active5, 0x80000L, active6, 0x80000000L, active7, 0L, active8, 0x4000L, active9, 0L, active10, 0L, active11, 0x40000000L); case 86: case 118: - return jjMoveStringLiteralDfa9_1(active0, 0x8000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_1(active0, 0x8000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 87: case 119: - if ((active3 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(8, 221, 94); - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40L, active10, 0L, active11, 0L); + if ((active3 & 0x200000000L) != 0L) + return jjStartNfaWithStates_1(8, 225, 96); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 88: case 120: - if ((active7 & 0x8L) != 0L) - return jjStartNfaWithStates_1(8, 451, 94); + if ((active7 & 0x200L) != 0L) + return jjStartNfaWithStates_1(8, 457, 96); return jjMoveStringLiteralDfa9_1(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active3 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(8, 243, 94); - else if ((active4 & 0x20L) != 0L) - return jjStartNfaWithStates_1(8, 261, 94); - else if ((active7 & 0x10L) != 0L) - return jjStartNfaWithStates_1(8, 452, 94); - else if ((active9 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(8, 613, 94); - else if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(8, 681, 94); - else if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(8, 687, 94); - else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_1(8, 709, 94); - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80L, active10, 0L, active11, 0L); + if ((active3 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 247, 96); + else if ((active4 & 0x200L) != 0L) + return jjStartNfaWithStates_1(8, 265, 96); + else if ((active7 & 0x400L) != 0L) + return jjStartNfaWithStates_1(8, 458, 96); + else if ((active9 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_1(8, 622, 96); + else if ((active10 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 691, 96); + else if ((active10 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_1(8, 697, 96); + else if ((active11 & 0x8000L) != 0L) + return jjStartNfaWithStates_1(8, 719, 96); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); default : break; } @@ -2828,88 +2854,90 @@ private final int jjMoveStringLiteralDfa9_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa10_1(active0, 0x1000000L, active1, 0x803800f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1f8000L, active7, 0L, active8, 0L, active9, 0x4021800004000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_1(active0, 0x1000000L, active1, 0x803800f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x7e00000L, active7, 0L, active8, 0L, active9, 0x4300000800000000L, active10, 0x80L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa10_1(active0, 0x1000000000000000L, active1, 0x2c0000040000000L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0x200000000L, active7, 0x4001800000000L, active8, 0x401c000220000000L, active9, 0x200000000200L, active10, 0xcL, active11, 0L); + return jjMoveStringLiteralDfa10_1(active0, 0x1000000000000000L, active1, 0x580000040000000L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0x8000000000L, active7, 0x800060000000000L, active8, 0x3800044000000000L, active9, 0x40000000040080L, active10, 0x1800L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000L, active5, 0x2L, active6, 0L, active7, 0L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0x40L, active6, 0L, active7, 0L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: if ((active0 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(9, 30, 94); - else if ((active2 & 0x80L) != 0L) - return jjStartNfaWithStates_1(9, 135, 94); - else if ((active9 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(9, 619, 94); - return jjMoveStringLiteralDfa10_1(active0, 0x800000L, active1, 0x1000000000000000L, active2, 0x4000000000L, active3, 0x800000000000L, active4, 0xc0000000L, active5, 0x200L, active6, 0L, active7, 0x2000400000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x40L); + return jjStartNfaWithStates_1(9, 30, 96); + else if ((active2 & 0x200L) != 0L) + return jjStartNfaWithStates_1(9, 137, 96); + else if ((active9 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_1(9, 628, 96); + return jjMoveStringLiteralDfa10_1(active0, 0x800000L, active1, 0x2000000000000000L, active2, 0x40000000000L, active3, 0x8000000000000L, active4, 0xc00000000L, active5, 0x4000L, active6, 0L, active7, 0x80010000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0x10000L); case 68: case 100: - if ((active5 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(9, 350, 94); - else if ((active5 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(9, 361, 94); - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x200000000000L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0L, active11, 0L); + if ((active5 & 0x800000000L) != 0L) + return jjStartNfaWithStates_1(9, 355, 96); + else if ((active5 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_1(9, 366, 96); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x400000000000L, active2, 0x800L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000000000000L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(9, 27, 94); - else if ((active2 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(9, 143, 94); - else if ((active2 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(9, 150, 94); - else if ((active4 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(9, 289, 94); - else if ((active4 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(9, 299, 94); - else if ((active7 & 0x100L) != 0L) - return jjStartNfaWithStates_1(9, 456, 94); + return jjStartNfaWithStates_1(9, 27, 96); + else if ((active2 & 0x80000L) != 0L) + return jjStartNfaWithStates_1(9, 147, 96); + else if ((active2 & 0x4000000L) != 0L) + return jjStartNfaWithStates_1(9, 154, 96); + else if ((active4 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_1(9, 293, 96); + else if ((active4 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_1(9, 294, 96); + else if ((active4 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_1(9, 304, 96); else if ((active7 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(9, 462, 94); - else if ((active7 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 499, 94); - else if ((active8 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(9, 546, 94); - else if ((active9 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(9, 600, 94); - else if ((active9 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(9, 611, 94); - else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_1(9, 712, 94); - else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_1(9, 714, 94); - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000500L, active6, 0x180000000L, active7, 0x10000000000000L, active8, 0x1000000000L, active9, 0x2004000e0L, active10, 0x4000L, active11, 0x10000000L); + return jjStartNfaWithStates_1(9, 462, 96); + else if ((active7 & 0x100000L) != 0L) + return jjStartNfaWithStates_1(9, 468, 96); + else if ((active7 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_1(9, 508, 96); + else if ((active8 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_1(9, 555, 96); + else if ((active9 & 0x200000000L) != 0L) + return jjStartNfaWithStates_1(9, 609, 96); + else if ((active9 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_1(9, 620, 96); + else if ((active11 & 0x40000L) != 0L) + return jjStartNfaWithStates_1(9, 722, 96); + else if ((active11 & 0x100000L) != 0L) + return jjStartNfaWithStates_1(9, 724, 96); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x20000000000a000L, active6, 0x6000000000L, active7, 0x2004000000000000L, active8, 0x200000000000L, active9, 0x4008001c000L, active10, 0x1000000L, active11, 0x4000000000L); case 71: case 103: - if ((active6 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(9, 396, 94); - else if ((active8 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(9, 536, 94); - else if ((active9 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(9, 594, 94); - else if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(9, 685, 94); - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x20000000000000L, active6, 0x2000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x40000L) != 0L) + return jjStartNfaWithStates_1(9, 402, 96); + else if ((active8 & 0x200000000L) != 0L) + return jjStartNfaWithStates_1(9, 545, 96); + else if ((active9 & 0x8000000L) != 0L) + return jjStartNfaWithStates_1(9, 603, 96); + else if ((active10 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_1(9, 695, 96); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400000000000000L, active6, 0x80000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x2000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000002L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x6000000000000100L, active2, 0xc00L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x480000000400000L, active9, 0x6L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0xc000000000000100L, active2, 0x3000L, active3, 0L, active4, 0x100000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0xc09L, active10, 0L, active11, 0L); case 75: case 107: - if ((active2 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(9, 157, 94); - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0x10L); + if ((active2 & 0x200000000L) != 0L) + return jjStartNfaWithStates_1(9, 161, 96); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000000000000L, active11, 0x4000L); case 76: case 108: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000L, active8, 0L, active9, 0x1000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1L, active5, 0L, active6, 0L, active7, 0x20000000L, active8, 0L, active9, 0x200000000000L, active10, 0L, active11, 0L); case 77: case 109: - if ((active5 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(9, 334, 94); - return jjMoveStringLiteralDfa10_1(active0, 0x8000000000L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0x8L, active9, 0x4000100010000L, active10, 0L, active11, 0L); + if ((active5 & 0x80000L) != 0L) + return jjStartNfaWithStates_1(9, 339, 96); + return jjMoveStringLiteralDfa10_1(active0, 0x8000000000L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1000L, active9, 0x800020002000000L, active10, 0L, active11, 0L); case 78: case 110: if ((active1 & 0x200000000L) != 0L) @@ -2917,91 +2945,91 @@ else if ((active10 & 0x200000000000L) != 0L) jjmatchedKind = 97; jjmatchedPos = 9; } - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x400000000L, active2, 0L, active3, 0x10000000L, active4, 0L, active5, 0x3000L, active6, 0L, active7, 0x4L, active8, 0x2000000000080000L, active9, 0x100L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x400000000L, active2, 0L, active3, 0x100000000L, active4, 0L, active5, 0x60000L, active6, 0L, active7, 0x8000000000100L, active8, 0x10000000L, active9, 0x20040L, active10, 0x3c000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0xc00010000000000L, active2, 0x800000000L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x8780000000200009L, active10, 0x8000L, active11, 0x200L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x1800010000000000L, active2, 0x8000000000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0x40001200L, active10, 0x200010fL, active11, 0x80000L); case 80: case 112: - if ((active1 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 112, 94); - else if ((active9 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(9, 591, 94); + if ((active1 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_1(9, 113, 96); + else if ((active9 & 0x1000000L) != 0L) + return jjStartNfaWithStates_1(9, 600, 96); break; case 82: case 114: if ((active1 & 0x800L) != 0L) - return jjStartNfaWithStates_1(9, 75, 94); - else if ((active2 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(9, 164, 94); - else if ((active4 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(9, 292, 94); - else if ((active7 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(9, 488, 94); - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000000000L, active7, 0x40L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(9, 75, 96); + else if ((active2 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_1(9, 168, 96); + else if ((active4 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_1(9, 297, 96); + else if ((active7 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_1(9, 494, 96); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0x1000L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 83: case 115: if ((active0 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(9, 34, 94); + return jjStartNfaWithStates_1(9, 34, 96); else if ((active1 & 0x200L) != 0L) - return jjStartNfaWithStates_1(9, 73, 94); - else if ((active6 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 436, 94); - else if ((active7 & 0x2L) != 0L) - return jjStartNfaWithStates_1(9, 449, 94); - else if ((active9 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 636, 94); - else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(9, 724, 94); - else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(9, 729, 94); - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0x2000000001L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x20L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(9, 73, 96); + else if ((active6 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_1(9, 442, 96); + else if ((active7 & 0x80L) != 0L) + return jjStartNfaWithStates_1(9, 455, 96); + else if ((active10 & 0x20L) != 0L) + return jjStartNfaWithStates_1(9, 645, 96); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_1(9, 734, 96); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_1(9, 739, 96); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x40000000000L, active2, 0x20000000002L, active3, 0L, active4, 0x4000000000000000L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x4000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: if ((active0 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(9, 29, 94); + return jjStartNfaWithStates_1(9, 29, 96); else if ((active1 & 0x800000000L) != 0L) { jjmatchedKind = 99; jjmatchedPos = 9; } - else if ((active2 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(9, 168, 94); - else if ((active7 & 0x20L) != 0L) - return jjStartNfaWithStates_1(9, 453, 94); - else if ((active8 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(9, 537, 94); - return jjMoveStringLiteralDfa10_1(active0, 0x40010800000000L, active1, 0xf000000004L, active2, 0x1000000000000000L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active2 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_1(9, 172, 96); + else if ((active7 & 0x800L) != 0L) + return jjStartNfaWithStates_1(9, 459, 96); + else if ((active8 & 0x400000000L) != 0L) + return jjStartNfaWithStates_1(9, 546, 96); + return jjMoveStringLiteralDfa10_1(active0, 0x40010800000000L, active1, 0xf000000004L, active2, 0x4000L, active3, 0x1L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10L, active10, 0L, active11, 0x80L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x20000L); case 86: case 118: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x7ffc00000000000L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active4 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(9, 308, 94); + if ((active4 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_1(9, 313, 96); break; case 89: case 121: - if ((active4 & 0x8000000L) != 0L) + if ((active4 & 0x80000000L) != 0L) { - jjmatchedKind = 283; + jjmatchedKind = 287; jjmatchedPos = 9; } - else if ((active4 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(9, 288, 94); - else if ((active6 & 0x10L) != 0L) - return jjStartNfaWithStates_1(9, 388, 94); - else if ((active8 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(9, 538, 94); - else if ((active10 & 0x40L) != 0L) - return jjStartNfaWithStates_1(9, 646, 94); - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active4 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_1(9, 292, 96); + else if ((active6 & 0x400L) != 0L) + return jjStartNfaWithStates_1(9, 394, 96); + else if ((active8 & 0x800000000L) != 0L) + return jjStartNfaWithStates_1(9, 547, 96); + else if ((active10 & 0x8000L) != 0L) + return jjStartNfaWithStates_1(9, 655, 96); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1000000L); default : break; } @@ -3019,157 +3047,159 @@ private final int jjMoveStringLiteralDfa10_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x7400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x180000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x7400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x6000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa11_1(active0, 0x800000L, active1, 0x8000000000000000L, active2, 0L, active3, 0x800000000000L, active4, 0x10000000L, active5, 0L, active6, 0L, active7, 0x400000L, active8, 0x9103ffe000080000L, active9, 0x190L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_1(active0, 0x800000L, active1, 0L, active2, 0x1L, active3, 0x8000000000000L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0x8000010000000L, active8, 0x7ffc00010000000L, active9, 0x32122L, active10, 0L, active11, 0L); case 67: case 99: - if ((active8 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_1(10, 567, 94); - return jjMoveStringLiteralDfa11_1(active0, 0x1000000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000040L, active8, 0L, active9, 0x20000000000022L, active10, 0L, active11, 0L); + if ((active9 & 0x1L) != 0L) + return jjStartNfaWithStates_1(10, 576, 96); + return jjMoveStringLiteralDfa11_1(active0, 0x1000000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001000L, active8, 0L, active9, 0x4000000000004400L, active10, 0L, active11, 0L); case 68: case 100: - if ((active3 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(10, 220, 94); - else if ((active5 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(10, 332, 94); - else if ((active5 & 0x2000L) != 0L) - return jjStartNfaWithStates_1(10, 333, 94); - else if ((active10 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(10, 654, 94); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000L, active10, 0L, active11, 0x10000000L); + if ((active3 & 0x100000000L) != 0L) + return jjStartNfaWithStates_1(10, 224, 96); + else if ((active5 & 0x20000L) != 0L) + return jjStartNfaWithStates_1(10, 337, 96); + else if ((active5 & 0x40000L) != 0L) + return jjStartNfaWithStates_1(10, 338, 96); + else if ((active10 & 0x1000000L) != 0L) + return jjStartNfaWithStates_1(10, 664, 96); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x140000000000000L, active10, 0L, active11, 0x4000000000L); case 69: case 101: if ((active0 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(10, 39, 94); + return jjStartNfaWithStates_1(10, 39, 96); else if ((active1 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(10, 88, 94); - else if ((active2 & 0x4L) != 0L) - return jjStartNfaWithStates_1(10, 130, 94); - else if ((active3 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(10, 211, 94); - else if ((active4 & 0x200L) != 0L) - return jjStartNfaWithStates_1(10, 265, 94); - else if ((active7 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(10, 496, 94); - else if ((active8 & 0x8L) != 0L) - return jjStartNfaWithStates_1(10, 515, 94); - else if ((active9 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(10, 608, 94); - else if ((active9 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(10, 612, 94); - else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_1(10, 718, 94); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x40000000000L, active7, 0x800000L, active8, 0x20L, active9, 0x40L, active10, 0x200000f0000000L, active11, 0x10L); + return jjStartNfaWithStates_1(10, 88, 96); + else if ((active2 & 0x8L) != 0L) + return jjStartNfaWithStates_1(10, 131, 96); + else if ((active3 & 0x800000L) != 0L) + return jjStartNfaWithStates_1(10, 215, 96); + else if ((active4 & 0x2000L) != 0L) + return jjStartNfaWithStates_1(10, 269, 96); + else if ((active7 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_1(10, 505, 96); + else if ((active8 & 0x1000L) != 0L) + return jjStartNfaWithStates_1(10, 524, 96); + else if ((active9 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_1(10, 617, 96); + else if ((active9 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_1(10, 621, 96); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_1(10, 728, 96); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0x40L, active6, 0x1000000000000L, active7, 0x20000000L, active8, 0x4000L, active9, 0x8000L, active10, 0x800003c000000000L, active11, 0x4000L); case 70: case 102: - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active7 & 0x4L) != 0L) - return jjStartNfaWithStates_1(10, 450, 94); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active7 & 0x100L) != 0L) + return jjStartNfaWithStates_1(10, 456, 96); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active1 & 0x4L) != 0L) - return jjStartNfaWithStates_1(10, 66, 94); - else if ((active6 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(10, 409, 94); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x1000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x40L); + return jjStartNfaWithStates_1(10, 66, 96); + else if ((active6 & 0x80000000L) != 0L) + return jjStartNfaWithStates_1(10, 415, 96); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x2000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0x10000L); case 73: case 105: - return jjMoveStringLiteralDfa11_1(active0, 0x10800000000L, active1, 0x200000001000L, active2, 0x1000000000000200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4400000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_1(active0, 0x10800000000L, active1, 0x400000001000L, active2, 0x800L, active3, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x880000000000000L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(10, 94, 94); - else if ((active8 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(10, 545, 94); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x400000000000010L, active2, 0L, active3, 0L, active4, 0x1000L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(10, 94, 96); + else if ((active8 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(10, 554, 96); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x800000000000010L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0L, active7, 0x800000000000000L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa11_1(active0, 0x1000000000000000L, active1, 0x6000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000L, active7, 0x10001000000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); + return jjMoveStringLiteralDfa11_1(active0, 0x1000000000000000L, active1, 0xc000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0x2000040000000000L, active8, 0L, active9, 0L, active10, 0x1000L, active11, 0L); case 78: case 110: - if ((active2 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(10, 163, 94); - else if ((active8 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(10, 541, 94); - else if ((active9 & 0x80000000000000L) != 0L) + if ((active2 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_1(10, 167, 96); + else if ((active8 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_1(10, 550, 96); + else if ((active10 & 0x1L) != 0L) { - jjmatchedKind = 631; + jjmatchedKind = 640; jjmatchedPos = 10; } - else if ((active9 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(10, 639, 94); - else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_1(10, 713, 94); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x86100000L, active2, 0xc000000000c00L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x200010000L, active7, 0L, active8, 0x400000000000000L, active9, 0x70000000000000cL, active10, 0x8000L, active11, 0L); + else if ((active10 & 0x100L) != 0L) + return jjStartNfaWithStates_1(10, 648, 96); + else if ((active11 & 0x80000L) != 0L) + return jjStartNfaWithStates_1(10, 723, 96); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x86100000L, active2, 0xc0000000003000L, active3, 0L, active4, 0L, active5, 0x2000L, active6, 0x8000400000L, active7, 0L, active8, 0L, active9, 0x1808L, active10, 0x200000eL, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x400000L, active9, 0x2000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x80000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); case 80: case 112: - if ((active9 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(10, 592, 94); - else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_1(10, 711, 94); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x2000000L) != 0L) + return jjStartNfaWithStates_1(10, 601, 96); + else if ((active11 & 0x20000L) != 0L) + return jjStartNfaWithStates_1(10, 721, 96); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: if ((active1 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(10, 104, 94); - else if ((active8 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(10, 548, 94); - else if ((active9 & 0x200L) != 0L) - return jjStartNfaWithStates_1(10, 585, 94); - else if ((active9 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(10, 609, 94); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0x4000000004200000L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(10, 104, 96); + else if ((active8 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_1(10, 557, 96); + else if ((active9 & 0x40000L) != 0L) + return jjStartNfaWithStates_1(10, 594, 96); + else if ((active9 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(10, 618, 96); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0x840000000L, active10, 0x80L, active11, 0L); case 83: case 115: if ((active1 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(10, 103, 94); - else if ((active2 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(10, 166, 94); - else if ((active4 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(10, 285, 94); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x2001e0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(10, 103, 96); + else if ((active2 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(10, 170, 96); + else if ((active4 & 0x200000000L) != 0L) + return jjStartNfaWithStates_1(10, 289, 96); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x2001e0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - if ((active4 & 0x40000000L) != 0L) + if ((active4 & 0x400000000L) != 0L) { - jjmatchedKind = 286; + jjmatchedKind = 290; jjmatchedPos = 10; } - else if ((active8 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(10, 573, 94); - else if ((active9 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(10, 598, 94); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x2c0000000000000L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0x200000080000000L, active5, 0x20000000000200L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0x1000000000000L, active10, 0x4L, active11, 0L); + else if ((active7 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_1(10, 498, 96); + else if ((active9 & 0x40L) != 0L) + return jjStartNfaWithStates_1(10, 582, 96); + else if ((active9 & 0x80000000L) != 0L) + return jjStartNfaWithStates_1(10, 607, 96); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x580000000000000L, active2, 0x20000000000L, active3, 0L, active4, 0x4000000800000002L, active5, 0x400000000004000L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0x200000000000000L, active10, 0x800L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x40000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0L); case 87: case 119: - if ((active1 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_1(10, 123, 94); + if ((active1 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_1(10, 124, 96); break; case 88: case 120: - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(10, 54, 94); - else if ((active3 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(10, 252, 94); - else if ((active8 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(10, 574, 94); + return jjStartNfaWithStates_1(10, 54, 96); + else if ((active4 & 0x1L) != 0L) + return jjStartNfaWithStates_1(10, 256, 96); + else if ((active9 & 0x80L) != 0L) + return jjStartNfaWithStates_1(10, 583, 96); break; default : break; @@ -3188,127 +3218,129 @@ private final int jjMoveStringLiteralDfa11_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 65: case 97: - if ((active7 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 500, 94); - return jjMoveStringLiteralDfa12_1(active0, 0x1000000L, active1, 0x140000000180000L, active2, 0L, active3, 0L, active4, 0x200000080000000L, active5, 0L, active6, 0x10000L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x8004L, active11, 0L); + if ((active7 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_1(11, 509, 96); + return jjMoveStringLiteralDfa12_1(active0, 0x1000000L, active1, 0x280000000180000L, active2, 0L, active3, 0L, active4, 0x4000000800000000L, active5, 0L, active6, 0x400000L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x2000800L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0x40000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0x1006200000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x8008000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0x1006200000L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0x1000000000000000L, active9, 0x100L, active10, 0L, active11, 0L); case 68: case 100: - if ((active9 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(11, 621, 94); - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x100000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + if ((active9 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_1(11, 630, 96); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 60, 94); - else if ((active1 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 119, 94); - else if ((active1 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 122, 94); - else if ((active1 & 0x2000000000000000L) != 0L) - { - jjmatchedKind = 125; + return jjStartNfaWithStates_1(11, 60, 96); + else if ((active1 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_1(11, 120, 96); + else if ((active1 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_1(11, 123, 96); + else if ((active1 & 0x4000000000000000L) != 0L) + { + jjmatchedKind = 126; jjmatchedPos = 11; } - else if ((active4 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(11, 268, 94); - else if ((active7 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(11, 484, 94); - else if ((active8 & 0x2L) != 0L) - return jjStartNfaWithStates_1(11, 513, 94); - else if ((active8 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(11, 532, 94); - else if ((active10 & 0x8L) != 0L) - return jjStartNfaWithStates_1(11, 643, 94); - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0x50000000000000f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x2000000040L, active8, 0L, active9, 0x4000000004000000L, active10, 0x10L, active11, 0L); + else if ((active4 & 0x10000L) != 0L) + return jjStartNfaWithStates_1(11, 272, 96); + else if ((active7 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(11, 490, 96); + else if ((active8 & 0x400L) != 0L) + return jjStartNfaWithStates_1(11, 522, 96); + else if ((active8 & 0x20000000L) != 0L) + return jjStartNfaWithStates_1(11, 541, 96); + else if ((active10 & 0x1000L) != 0L) + return jjStartNfaWithStates_1(11, 652, 96); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0xa0000000000000f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000L, active6, 0L, active7, 0x80000001000L, active8, 0L, active9, 0x800000000L, active10, 0x2080L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0x800L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000000000000L, active10, 0L, active11, 0L); case 71: case 103: - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000L, active5, 0x100L, active6, 0x40000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0x2000L, active6, 0x1000000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active1 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 121, 94); - else if ((active5 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 373, 94); + if ((active1 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_1(11, 122, 96); + else if ((active5 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_1(11, 378, 96); break; case 73: case 105: - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000200000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000040000000L, active10, 0L, active11, 0L); case 75: case 107: - if ((active6 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(11, 417, 94); - else if ((active9 & 0x40L) != 0L) - return jjStartNfaWithStates_1(11, 582, 94); + if ((active6 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_1(11, 423, 96); + else if ((active9 & 0x8000L) != 0L) + return jjStartNfaWithStates_1(11, 591, 96); break; case 76: case 108: - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x3ffe000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active7 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_1(11, 499, 96); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x7ffc00000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000080000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x10000000L, active9, 0x20L, active10, 0L, active11, 0L); case 78: case 110: if ((active1 & 0x1000L) != 0L) - return jjStartNfaWithStates_1(11, 76, 94); - else if ((active4 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(11, 272, 94); - else if ((active8 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(11, 534, 94); - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0x8000202400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0x800000L, active8, 0x10000000000000L, active9, 0x4000000000000L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(11, 76, 96); + else if ((active4 & 0x100000L) != 0L) + return jjStartNfaWithStates_1(11, 276, 96); + else if ((active8 & 0x80000000L) != 0L) + return jjStartNfaWithStates_1(11, 543, 96); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0x402400000000L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x20000000L, active8, 0x2000000000000000L, active9, 0x800000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa12_1(active0, 0x800000000L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000L, active7, 0x4000000000000L, active8, 0L, active9, 0x20000000000020L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_1(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0x800000000000000L, active8, 0L, active9, 0x4000000000004000L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x1L) != 0L) - return jjStartNfaWithStates_1(11, 128, 94); - else if ((active5 & 0x2L) != 0L) - return jjStartNfaWithStates_1(11, 321, 94); - else if ((active8 & 0x20L) != 0L) - return jjStartNfaWithStates_1(11, 517, 94); - else if ((active8 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 568, 94); - else if ((active9 & 0x1L) != 0L) - return jjStartNfaWithStates_1(11, 576, 94); - else if ((active9 & 0x80L) != 0L) - return jjStartNfaWithStates_1(11, 583, 94); - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x1000000000112L, active10, 0L, active11, 0x40L); + if ((active2 & 0x2L) != 0L) + return jjStartNfaWithStates_1(11, 129, 96); + else if ((active5 & 0x40L) != 0L) + return jjStartNfaWithStates_1(11, 326, 96); + else if ((active8 & 0x4000L) != 0L) + return jjStartNfaWithStates_1(11, 526, 96); + else if ((active9 & 0x2L) != 0L) + return jjStartNfaWithStates_1(11, 577, 96); + else if ((active9 & 0x200L) != 0L) + return jjStartNfaWithStates_1(11, 585, 96); + else if ((active9 & 0x10000L) != 0L) + return jjStartNfaWithStates_1(11, 592, 96); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0x200000000022400L, active10, 0L, active11, 0x10000L); case 83: case 115: - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x700000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xeL, active11, 0L); case 84: case 116: - if ((active3 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(11, 239, 94); - else if ((active5 & 0x400L) != 0L) - return jjStartNfaWithStates_1(11, 330, 94); - else if ((active8 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 570, 94); - else if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(11, 693, 94); - return jjMoveStringLiteralDfa12_1(active0, 0x10000800000L, active1, 0x100L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0L); + if ((active3 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_1(11, 243, 96); + else if ((active5 & 0x8000L) != 0L) + return jjStartNfaWithStates_1(11, 335, 96); + else if ((active9 & 0x8L) != 0L) + return jjStartNfaWithStates_1(11, 579, 96); + else if ((active10 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_1(11, 703, 96); + return jjMoveStringLiteralDfa12_1(active0, 0x10000800000L, active1, 0x100L, active2, 0x3000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0x1000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0x80000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000000000004L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0x80000000L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000800L, active10, 0L, active11, 0L); case 89: case 121: - if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_1(11, 708, 94); + if ((active11 & 0x4000L) != 0L) + return jjStartNfaWithStates_1(11, 718, 96); break; default : break; @@ -3327,86 +3359,86 @@ private final int jjMoveStringLiteralDfa12_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa13_1(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8003ffe000000000L, active9, 0x700000000000000L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa13_1(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x7ffc00000000000L, active9, 0x100L, active10, 0x3c00000000eL, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x3400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active2 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(12, 165, 94); - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x10000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_1(12, 169, 96); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x28000L, active7, 0x400000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0xa00000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: - if ((active8 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(12, 531, 94); - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400001c0000L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x10000000L) != 0L) + return jjStartNfaWithStates_1(12, 540, 96); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0x3000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000007000000L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: - if ((active2 & 0x200L) != 0L) - return jjStartNfaWithStates_1(12, 137, 94); - else if ((active9 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(12, 622, 94); - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000000000L, active10, 0L, active11, 0L); + if ((active2 & 0x800L) != 0L) + return jjStartNfaWithStates_1(12, 139, 96); + else if ((active9 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_1(12, 631, 96); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); case 71: case 103: - if ((active1 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(12, 109, 94); - else if ((active4 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(12, 284, 94); - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000000L, active5, 0L, active6, 0L, active7, 0x4000000800000L, active8, 0L, active9, 0x4000000004200000L, active10, 0L, active11, 0L); + if ((active1 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_1(12, 110, 96); + else if ((active4 & 0x100000000L) != 0L) + return jjStartNfaWithStates_1(12, 288, 96); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000000L, active5, 0L, active6, 0L, active7, 0x800000020000000L, active8, 0L, active9, 0x840000000L, active10, 0x80L, active11, 0L); case 72: case 104: - if ((active9 & 0x8L) != 0L) - return jjStartNfaWithStates_1(12, 579, 94); - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x1000L) != 0L) + return jjStartNfaWithStates_1(12, 588, 96); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa13_1(active0, 0x10000000000L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0x100000000L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_1(active0, 0x10000000000L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0x4000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: - if ((active10 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(12, 655, 94); - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x40000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); + if ((active10 & 0x2000000L) != 0L) + return jjStartNfaWithStates_1(12, 665, 96); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x80000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x800L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x1000000080100000L, active2, 0L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0x10000L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x2000000080100000L, active2, 0L, active3, 0L, active4, 0x4000000000000000L, active5, 0L, active6, 0x400000L, active7, 0x80000000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0L); case 78: case 110: if ((active0 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(12, 35, 94); - else if ((active2 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(12, 188, 94); - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x10L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(12, 35, 96); + else if ((active3 & 0x1L) != 0L) + return jjStartNfaWithStates_1(12, 192, 96); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x10L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0x10000L); case 80: case 112: - if ((active8 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(12, 572, 94); - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active9 & 0x20L) != 0L) + return jjStartNfaWithStates_1(12, 581, 96); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 82: case 114: - if ((active9 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(12, 625, 94); - return jjMoveStringLiteralDfa13_1(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_1(12, 634, 96); + return jjMoveStringLiteralDfa13_1(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0xc000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x8000040000000000L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x60800e0L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0x300L, active6, 0L, active7, 0L, active8, 0L, active9, 0x14L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x60800e0L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0x6000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2800L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x25000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4a00000000000000L, active10, 0L, active11, 0L); case 89: case 121: - if ((active9 & 0x100L) != 0L) - return jjStartNfaWithStates_1(12, 584, 94); + if ((active9 & 0x20000L) != 0L) + return jjStartNfaWithStates_1(12, 593, 96); break; default : break; @@ -3419,114 +3451,116 @@ private final int jjMoveStringLiteralDfa13_1(long old0, long active0, long old1, return jjStartNfa_1(11, old0, old1, old2, old3, old4, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_1(12, active0, active1, active2, active3, active4, active5, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_1(12, active0, active1, active2, 0L, active4, active5, active6, active7, active8, active9, active10, active11, 0L); return 13; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0xe0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0xe0L, active2, 0L, active4, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active1 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_1(13, 124, 94); - else if ((active7 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(13, 485, 94); - else if ((active10 & 0x10L) != 0L) - return jjStartNfaWithStates_1(13, 644, 94); - return jjMoveStringLiteralDfa14_1(active0, 0x800000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + if ((active1 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_1(13, 125, 96); + else if ((active7 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_1(13, 491, 96); + else if ((active10 & 0x2000L) != 0L) + return jjStartNfaWithStates_1(13, 653, 96); + return jjMoveStringLiteralDfa14_1(active0, 0x800000L, active1, 0x80000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 66: case 98: - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x80000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x80000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + if ((active2 & 0x4000L) != 0L) + return jjStartNfaWithStates_1(13, 142, 96); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x100L, active2, 0L, active4, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 68: case 100: - if ((active9 & 0x20L) != 0L) - return jjStartNfaWithStates_1(13, 581, 94); - return jjMoveStringLiteralDfa14_1(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1e000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x4000L) != 0L) + return jjStartNfaWithStates_1(13, 590, 96); + return jjMoveStringLiteralDfa14_1(active0, 0x1000000L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3c00000000000L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(13, 84, 94); - else if ((active6 & 0x8000L) != 0L) - return jjStartNfaWithStates_1(13, 399, 94); - else if ((active6 & 0x10000L) != 0L) - return jjStartNfaWithStates_1(13, 400, 94); - else if ((active9 & 0x4L) != 0L) - return jjStartNfaWithStates_1(13, 578, 94); - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000000004000010L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(13, 84, 96); + else if ((active6 & 0x200000L) != 0L) + return jjStartNfaWithStates_1(13, 405, 96); + else if ((active6 & 0x400000L) != 0L) + return jjStartNfaWithStates_1(13, 406, 96); + else if ((active9 & 0x800L) != 0L) + return jjStartNfaWithStates_1(13, 587, 96); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x200000L, active2, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800002000L, active10, 0x80L, active11, 0L); case 70: case 102: - if ((active9 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(13, 623, 94); - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_1(13, 632, 96); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active4 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(13, 287, 94); - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x10L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active4 & 0x800000000L) != 0L) + return jjStartNfaWithStates_1(13, 291, 96); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x10L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active5 & 0x100L) != 0L) - return jjStartNfaWithStates_1(13, 328, 94); - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100e0000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active5 & 0x2000L) != 0L) + return jjStartNfaWithStates_1(13, 333, 96); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x4000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x201c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x200000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active4, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x200000000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x2400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x2400000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - if ((active3 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_1(13, 253, 94); - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x4000000000000L, active9, 0x21000000000000L, active10, 0L, active11, 0x40L); + if ((active4 & 0x2L) != 0L) + return jjStartNfaWithStates_1(13, 257, 96); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0x4200000000000000L, active10, 0L, active11, 0x10000L); case 79: case 111: - return jjMoveStringLiteralDfa14_1(active0, 0x10000000000L, active1, 0x40000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); + return jjMoveStringLiteralDfa14_1(active0, 0x10000000000L, active1, 0x80000000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x800L, active11, 0L); case 80: case 112: - if ((active4 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(13, 313, 94); + if ((active4 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_1(13, 318, 96); break; case 82: case 114: - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0x3000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 83: case 115: - if ((active7 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(13, 498, 94); - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x100000000L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + if ((active7 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_1(13, 507, 96); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x4000000000L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 84: case 116: - if ((active7 & 0x40L) != 0L) - return jjStartNfaWithStates_1(13, 454, 94); - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x4000001000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3800000L, active8, 0L, active9, 0x4000000000000L, active10, 0xf0000000L, active11, 0L); + if ((active7 & 0x1000L) != 0L) + return jjStartNfaWithStates_1(13, 460, 96); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x8000041000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0xe0000000L, active8, 0L, active9, 0x800000000000000L, active10, 0x3c000000000L, active11, 0L); case 88: case 120: - if ((active6 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(13, 426, 94); + if ((active6 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_1(13, 432, 96); break; case 89: case 121: - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x600000000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_1(12, active0, active1, active2, active3, active4, active5, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_1(12, active0, active1, active2, 0L, active4, active5, active6, active7, active8, active9, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa14_1(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa14_1(long old0, long active0, long old1, long active1, long old2, long active2, long old4, long active4, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_1(12, old0, old1, old2, old3, old4, old5, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active4 &= old4) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_1(12, old0, old1, old2, 0L, old4, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_1(13, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); @@ -3535,93 +3569,95 @@ private final int jjMoveStringLiteralDfa14_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x4000001000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x1401e000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x8000001000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x2803c00000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active6 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(14, 416, 94); - else if ((active9 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_1(14, 624, 94); - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); + if ((active6 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_1(14, 422, 96); + else if ((active9 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_1(14, 633, 96); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); case 69: case 101: if ((active1 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(14, 98, 94); + return jjStartNfaWithStates_1(14, 98, 96); else if ((active1 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(14, 101, 94); - else if ((active5 & 0x4L) != 0L) - return jjStartNfaWithStates_1(14, 322, 94); - else if ((active9 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(14, 626, 94); - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x4080000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8003800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(14, 101, 96); + else if ((active5 & 0x80L) != 0L) + return jjStartNfaWithStates_1(14, 327, 96); + else if ((active9 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_1(14, 635, 96); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x4080000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 71: case 103: - if ((active1 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_1(14, 118, 94); - else if ((active7 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(14, 483, 94); - else if ((active10 & 0x4L) != 0L) - return jjStartNfaWithStates_1(14, 642, 94); - return jjMoveStringLiteralDfa15_1(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active1 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_1(14, 119, 96); + else if ((active7 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_1(14, 489, 96); + else if ((active10 & 0x800L) != 0L) + return jjStartNfaWithStates_1(14, 651, 96); + return jjMoveStringLiteralDfa15_1(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active7 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(14, 471, 94); + if ((active7 & 0x20000000L) != 0L) + return jjStartNfaWithStates_1(14, 477, 96); break; case 73: case 105: - return jjMoveStringLiteralDfa15_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0x300000000000L, active9, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa15_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0x60000000000000L, active9, 0L, active10, 0L, active11, 0x10000L); case 76: case 108: - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x200000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: if ((active0 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(14, 40, 94); - else if ((active9 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(14, 597, 94); - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(14, 40, 96); + else if ((active9 & 0x40000000L) != 0L) + return jjStartNfaWithStates_1(14, 606, 96); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x8000000006000000L, active2, 0xc000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4e0000000000L, active9, 0x600000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000001L, active5, 0L, active6, 0L, active7, 0L, active8, 0x9c000000000000L, active9, 0L, active10, 0xcL, active11, 0L); case 82: case 114: - if ((active8 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(14, 563, 94); - else if ((active9 & 0x10L) != 0L) - return jjStartNfaWithStates_1(14, 580, 94); - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active1 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(14, 106, 96); + else if ((active8 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_1(14, 572, 96); + else if ((active9 & 0x2000L) != 0L) + return jjStartNfaWithStates_1(14, 589, 96); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 83: case 115: if ((active1 & 0x100L) != 0L) - return jjStartNfaWithStates_1(14, 72, 94); + return jjStartNfaWithStates_1(14, 72, 96); return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - if ((active6 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(14, 415, 94); - else if ((active9 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_1(14, 629, 94); - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x100000000000010L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_1(14, 421, 96); + else if ((active9 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_1(14, 638, 96); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0x200000000000010L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 86: case 118: - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0xc00L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0x3000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active9 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(14, 602, 94); - else if ((active9 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(14, 638, 94); + if ((active9 & 0x800000000L) != 0L) + return jjStartNfaWithStates_1(14, 611, 96); + else if ((active10 & 0x80L) != 0L) + return jjStartNfaWithStates_1(14, 647, 96); break; case 89: case 121: - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); default : break; } @@ -3639,37 +3675,37 @@ private final int jjMoveStringLiteralDfa15_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: if ((active1 & 0x200000L) != 0L) - return jjStartNfaWithStates_1(15, 85, 94); - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0x60L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0x3000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(15, 85, 96); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0x60L, active2, 0x3000L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0x600000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 69: case 101: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0x10000000000200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x800000L) != 0L) - return jjStartNfaWithStates_1(15, 23, 94); + return jjStartNfaWithStates_1(15, 23, 96); break; case 72: case 104: if ((active1 & 0x10L) != 0L) - return jjStartNfaWithStates_1(15, 68, 94); + return jjStartNfaWithStates_1(15, 68, 96); break; case 76: case 108: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0x4000004000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0x8000004000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 78: case 110: if ((active1 & 0x2000000L) != 0L) @@ -3677,42 +3713,42 @@ private final int jjMoveStringLiteralDfa15_1(long old0, long active0, long old1, jjmatchedKind = 89; jjmatchedPos = 15; } - else if ((active2 & 0x4000000000000L) != 0L) + else if ((active2 & 0x40000000000000L) != 0L) { - jjmatchedKind = 178; + jjmatchedKind = 182; jjmatchedPos = 15; } - return jjMoveStringLiteralDfa16_1(active0, 0x1000000L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_1(active0, 0x1000000L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 82: case 114: if ((active1 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(15, 95, 94); - else if ((active8 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(15, 564, 94); - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(15, 95, 96); + else if ((active8 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_1(15, 573, 96); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 85: case 117: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active8 & 0x2000000000L) != 0L) + if ((active8 & 0x400000000000L) != 0L) { - jjmatchedKind = 549; + jjmatchedKind = 558; jjmatchedPos = 15; } - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000L); default : break; } @@ -3730,73 +3766,73 @@ private final int jjMoveStringLiteralDfa16_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: if ((active1 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(16, 102, 94); - return jjMoveStringLiteralDfa17_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40L); + return jjStartNfaWithStates_1(16, 102, 96); + return jjMoveStringLiteralDfa17_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000L); case 69: case 101: - if ((active7 & 0x2000000L) != 0L) - return jjStartNfaWithStates_1(16, 473, 94); - return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + if ((active7 & 0x80000000L) != 0L) + return jjStartNfaWithStates_1(16, 479, 96); + return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(16, 83, 94); + return jjStartNfaWithStates_1(16, 83, 96); break; case 72: case 104: return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 76: case 108: - return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0x3000L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0x8000000000000040L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0x40L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 80: case 112: - if ((active1 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_1(16, 126, 94); + if ((active1 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_1(16, 127, 96); break; case 82: case 114: - if ((active8 & 0x20000000000L) != 0L) + if ((active8 & 0x4000000000000L) != 0L) { - jjmatchedKind = 553; + jjmatchedKind = 562; jjmatchedPos = 16; } - else if ((active8 & 0x1000000000000L) != 0L) + else if ((active8 & 0x200000000000000L) != 0L) { - jjmatchedKind = 560; + jjmatchedKind = 569; jjmatchedPos = 16; } - return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x418000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0x100000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0x200000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000000000L, active9, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x300000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x60000000000000L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active5 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_1(16, 372, 94); + if ((active5 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_1(16, 377, 96); break; case 89: case 121: - if ((active8 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_1(16, 562, 94); + if ((active8 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_1(16, 571, 96); break; default : break; @@ -3815,46 +3851,46 @@ private final int jjMoveStringLiteralDfa17_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0x8000000000000000L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0x3001L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x418000000000000L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x40L) != 0L) - return jjStartNfaWithStates_1(17, 70, 94); - return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(17, 70, 96); + return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 71: case 103: if ((active1 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(17, 100, 94); - return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(17, 100, 96); + return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active8 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(17, 558, 94); + if ((active8 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_1(17, 567, 96); break; case 73: case 105: - return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 76: case 108: return jjMoveStringLiteralDfa18_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x63800000000000L, active9, 0L, active10, 0L, active11, 0x4000010000L); case 86: case 118: - return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); default : break; } @@ -3872,38 +3908,38 @@ private final int jjMoveStringLiteralDfa18_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0x400L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x30000000L, active11, 0L); + return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0x1000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xc000000000L, active11, 0L); case 68: case 100: - if ((active8 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_1(18, 559, 94); - else if ((active8 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(18, 575, 94); - else if ((active9 & 0x2L) != 0L) - return jjStartNfaWithStates_1(18, 577, 94); - return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + if ((active8 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_1(18, 568, 96); + else if ((active9 & 0x100L) != 0L) + return jjStartNfaWithStates_1(18, 584, 96); + else if ((active9 & 0x400L) != 0L) + return jjStartNfaWithStates_1(18, 586, 96); + return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 69: case 101: - if ((active8 & 0x100000000000L) != 0L) + if ((active8 & 0x20000000000000L) != 0L) { - jjmatchedKind = 556; + jjmatchedKind = 565; jjmatchedPos = 18; } - else if ((active9 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(18, 632, 94); - return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active10 & 0x2L) != 0L) + return jjStartNfaWithStates_1(18, 641, 96); + return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa19_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000010000L); case 76: case 108: return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -3912,19 +3948,19 @@ else if ((active9 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40000000L, active11, 0L); + return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0x800L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); + return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0x400000L, active8, 0x20c0000000000L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0x10000000L, active8, 0x418000000000000L, active9, 0L, active10, 0x4L, active11, 0L); default : break; } @@ -3936,300 +3972,300 @@ private final int jjMoveStringLiteralDfa19_1(long old0, long active0, long old1, return jjStartNfa_1(17, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_1(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_1(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, 0L, active10, active11, 0L); return 19; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x21c000000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x43800000000000L, active10, 0x8L, active11, 0L); case 65: case 97: if ((active1 & 0x80L) != 0L) - return jjStartNfaWithStates_1(19, 71, 94); - return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x50000000L, active11, 0L); + return jjStartNfaWithStates_1(19, 71, 96); + return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x14000000000L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x40000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); + return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1000000L, active7, 0L, active8, 0L, active10, 0x20000000000L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active5 & 0x200L) != 0L) - return jjStartNfaWithStates_1(19, 329, 94); + if ((active5 & 0x4000L) != 0L) + return jjStartNfaWithStates_1(19, 334, 96); break; case 78: case 110: - return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0x2000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x20L, active2, 0x400L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0x20000000L, active11, 0x10000040L); + return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x20L, active2, 0x1000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x418000000000000L, active10, 0x8000000000L, active11, 0x4000010000L); case 82: case 114: - return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x8000000000000000L, active2, 0x800L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0x2001L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x100000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa20_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active10, 0x4L, active11, 0L); case 89: case 121: - if ((active7 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(19, 470, 94); + if ((active7 & 0x10000000L) != 0L) + return jjStartNfaWithStates_1(19, 476, 96); break; default : break; } - return jjStartNfa_1(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_1(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa20_1(long old0, long active0, long old1, long active1, long old2, long active2, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa20_1(long old0, long active0, long old1, long active1, long old2, long active2, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_1(18, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_1(18, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_1(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_1(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, 0L, active10, active11, 0L); return 20; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x418000000000000L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0xc0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0x3000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x8L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0x100000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0x400L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0x1000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x8000000000L, active11, 0L); case 69: case 101: if ((active1 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(20, 90, 94); - else if ((active2 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_1(20, 179, 94); - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0x800L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_1(20, 90, 96); + else if ((active2 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_1(20, 183, 96); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x4L, active11, 0L); case 71: case 103: if ((active1 & 0x20L) != 0L) - return jjStartNfaWithStates_1(20, 69, 94); + return jjStartNfaWithStates_1(20, 69, 96); break; case 72: case 104: - if ((active7 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(20, 472, 94); - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000L, active9, 0L, active10, 0x80000000L, active11, 0L); + if ((active7 & 0x40000000L) != 0L) + return jjStartNfaWithStates_1(20, 478, 96); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x800000000000L, active10, 0x20000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000L, active9, 0L, active10, 0x40000000L, active11, 0L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active10, 0x10000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x4000010000L); case 79: case 111: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0x1L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0x100000000000000L, active2, 0L, active6, 0x20000L, active7, 0L, active8, 0x10000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0x200000000000000L, active2, 0L, active6, 0x800000L, active7, 0L, active8, 0x2000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x40000000000000L, active10, 0x4000000000L, active11, 0L); case 89: case 121: if ((active0 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(20, 24, 94); + return jjStartNfaWithStates_1(20, 24, 96); break; default : break; } - return jjStartNfa_1(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_1(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa21_1(long old0, long active0, long old1, long active1, long old2, long active2, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa21_1(long old0, long active0, long old1, long active1, long old2, long active2, long old6, long active6, long old7, long active7, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_1(19, old0, old1, old2, 0L, 0L, 0L, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_1(19, old0, old1, old2, 0L, 0L, 0L, old6, old7, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_1(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_1(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 21; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000010000L); case 65: case 97: - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x4000000008L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0x800L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - if ((active9 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_1(21, 633, 94); + if ((active10 & 0x4L) != 0L) + return jjStartNfaWithStates_1(21, 642, 96); break; case 69: case 101: - if ((active2 & 0x400L) != 0L) - return jjStartNfaWithStates_1(21, 138, 94); - else if ((active10 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(21, 669, 94); - else if ((active10 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(21, 670, 94); - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0L, active10, 0x80000000L, active11, 0L); + if ((active2 & 0x1000L) != 0L) + return jjStartNfaWithStates_1(21, 140, 96); + else if ((active10 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_1(21, 679, 96); + else if ((active10 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_1(21, 680, 96); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x20000000000L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa22_1(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_1(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 72: case 104: - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0x1000000000000L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0x80000L, active8, 0x2040000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0x2000000L, active8, 0x408000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x204000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x40800000000000L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa22_1(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_1(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_1(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa22_1(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa22_1(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_1(20, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_1(20, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_1(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_1(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 22; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x8L, active11, 0L); case 69: case 101: - if ((active6 & 0x80000L) != 0L) - return jjStartNfaWithStates_1(22, 403, 94); - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x2000000L) != 0L) + return jjStartNfaWithStates_1(22, 409, 96); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0x800L, active6, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x4000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0x40L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000000L, active11, 0x10000L); case 78: case 110: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x1000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa23_1(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_1(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0x400000000000000L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa23_1(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000000000L); case 84: case 116: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x4000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x800000000000L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_1(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_1(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa23_1(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa23_1(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_1(21, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_1(21, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_1(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_1(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 23; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa24_1(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active10 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(23, 671, 94); + if ((active10 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_1(23, 681, 96); break; case 67: case 99: - return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0L, active10, 0L, active11, 0L); case 75: case 107: - if ((active9 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_1(23, 634, 94); + if ((active10 & 0x8L) != 0L) + return jjStartNfaWithStates_1(23, 643, 96); break; case 76: case 108: - return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x408000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0L, active10, 0x10000000L, active11, 0x10000040L); + return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x4000000000L, active11, 0x4000010000L); case 82: case 114: - if ((active8 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(23, 550, 94); - return jjMoveStringLiteralDfa24_1(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_1(23, 559, 96); + return jjMoveStringLiteralDfa24_1(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0x800L, active6, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x1000000000000L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_1(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_1(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa24_1(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa24_1(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_1(22, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_1(22, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_1(23, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); @@ -4239,44 +4275,44 @@ private final int jjMoveStringLiteralDfa24_1(long old1, long active1, long old2, { case 65: case 97: - if ((active6 & 0x100000L) != 0L) - return jjStartNfaWithStates_1(24, 404, 94); + if ((active6 & 0x4000000L) != 0L) + return jjStartNfaWithStates_1(24, 410, 96); break; case 68: case 100: - return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x10000L); case 69: case 101: - return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa25_1(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(24, 668, 94); + if ((active10 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_1(24, 678, 96); break; case 73: case 105: - return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0x800L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa25_1(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_1(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0x60000L, active8, 0x80000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0x1800000L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x2008000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x401000000000000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000000000L); default : break; } @@ -4294,46 +4330,46 @@ private final int jjMoveStringLiteralDfa25_1(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa26_1(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa26_1(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); case 68: case 100: - if ((active8 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(25, 552, 94); + if ((active8 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_1(25, 561, 96); break; case 69: case 101: - if ((active8 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(25, 551, 94); - else if ((active11 & 0x40L) != 0L) - return jjStartNfaWithStates_1(25, 710, 94); + if ((active8 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_1(25, 560, 96); + else if ((active11 & 0x10000L) != 0L) + return jjStartNfaWithStates_1(25, 720, 96); break; case 71: case 103: - if ((active6 & 0x40000L) != 0L) - return jjStartNfaWithStates_1(25, 402, 94); + if ((active6 & 0x1000000L) != 0L) + return jjStartNfaWithStates_1(25, 408, 96); break; case 72: case 104: - if ((active8 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_1(25, 561, 94); + if ((active8 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_1(25, 570, 96); break; case 78: case 110: - if ((active6 & 0x20000L) != 0L) - return jjStartNfaWithStates_1(25, 401, 94); - return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active11, 0L); + if ((active6 & 0x800000L) != 0L) + return jjStartNfaWithStates_1(25, 407, 96); + return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa26_1(active1, 0x8000000000000000L, active2, 0x800L, active6, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0x2001L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x4000000000L); case 84: case 116: - return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000L, active11, 0L); + return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active11, 0L); default : break; } @@ -4351,31 +4387,31 @@ private final int jjMoveStringLiteralDfa26_1(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa27_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 68: case 100: - if ((active8 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(26, 555, 94); + if ((active8 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_1(26, 564, 96); break; case 69: case 101: - if ((active8 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(26, 554, 94); + if ((active8 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_1(26, 563, 96); break; case 71: case 103: - return jjMoveStringLiteralDfa27_1(active1, 0x100000000000000L, active2, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa27_1(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); case 78: case 110: - if ((active2 & 0x800L) != 0L) - return jjStartNfaWithStates_1(26, 139, 94); + if ((active2 & 0x2000L) != 0L) + return jjStartNfaWithStates_1(26, 141, 96); break; case 79: case 111: - return jjMoveStringLiteralDfa27_1(active1, 0L, active2, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa27_1(active1, 0L, active2, 0L, active8, 0x40000000000000L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa27_1(active1, 0x8000000000000000L, active2, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa27_1(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); default : break; } @@ -4387,131 +4423,131 @@ private final int jjMoveStringLiteralDfa27_1(long old1, long active1, long old2, return jjStartNfa_1(25, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_1(26, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_1(26, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); return 27; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa28_1(active1, 0x8000000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa28_1(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa28_1(active1, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa28_1(active1, 0L, active2, 0L, active8, 0x40000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_1(active1, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa28_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 82: case 114: - return jjMoveStringLiteralDfa28_1(active1, 0x100000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa28_1(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); default : break; } - return jjStartNfa_1(26, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + return jjStartNfa_1(26, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa28_1(long old1, long active1, long old8, long active8, long old11, long active11) +private final int jjMoveStringLiteralDfa28_1(long old1, long active1, long old2, long active2, long old8, long active8, long old11, long active11) { - if (((active1 &= old1) | (active8 &= old8) | (active11 &= old11)) == 0L) - return jjStartNfa_1(26, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active8 &= old8) | (active11 &= old11)) == 0L) + return jjStartNfa_1(26, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_1(27, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_1(27, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); return 28; } switch(curChar) { case 68: case 100: - if ((active8 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(28, 557, 94); + if ((active8 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_1(28, 566, 96); break; case 69: case 101: - return jjMoveStringLiteralDfa29_1(active1, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa29_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 79: case 111: - return jjMoveStringLiteralDfa29_1(active1, 0x100000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa29_1(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa29_1(active1, 0x8000000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa29_1(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); default : break; } - return jjStartNfa_1(27, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + return jjStartNfa_1(27, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa29_1(long old1, long active1, long old8, long active8, long old11, long active11) +private final int jjMoveStringLiteralDfa29_1(long old1, long active1, long old2, long active2, long old8, long active8, long old11, long active11) { - if (((active1 &= old1) | (active8 &= old8) | (active11 &= old11)) == 0L) - return jjStartNfa_1(27, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active8 &= old8) | (active11 &= old11)) == 0L) + return jjStartNfa_1(27, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_1(28, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_1(28, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 29; } switch(curChar) { case 82: case 114: - return jjMoveStringLiteralDfa30_1(active1, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa30_1(active1, 0L, active2, 0L, active11, 0x4000000000L); case 85: case 117: - return jjMoveStringLiteralDfa30_1(active1, 0x100000000000000L, active11, 0L); + return jjMoveStringLiteralDfa30_1(active1, 0x200000000000000L, active2, 0L, active11, 0L); case 89: case 121: - return jjMoveStringLiteralDfa30_1(active1, 0x8000000000000000L, active11, 0L); + return jjMoveStringLiteralDfa30_1(active1, 0L, active2, 0x1L, active11, 0L); default : break; } - return jjStartNfa_1(28, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_1(28, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa30_1(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa30_1(long old1, long active1, long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_1(28, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_1(28, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_1(29, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_1(29, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 30; } switch(curChar) { case 67: case 99: - return jjMoveStringLiteralDfa31_1(active1, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa31_1(active1, 0L, active2, 0L, active11, 0x4000000000L); case 80: case 112: - if ((active1 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_1(30, 120, 94); - return jjMoveStringLiteralDfa31_1(active1, 0x8000000000000000L, active11, 0L); + if ((active1 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_1(30, 121, 96); + return jjMoveStringLiteralDfa31_1(active1, 0L, active2, 0x1L, active11, 0L); default : break; } - return jjStartNfa_1(29, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_1(29, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa31_1(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa31_1(long old1, long active1, long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_1(29, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_1(29, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_1(30, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_1(30, 0L, 0L, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 31; } switch(curChar) { case 69: case 101: - if ((active1 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_1(31, 127, 94); - return jjMoveStringLiteralDfa32_1(active1, 0L, active11, 0x10000000L); + if ((active2 & 0x1L) != 0L) + return jjStartNfaWithStates_1(31, 128, 96); + return jjMoveStringLiteralDfa32_1(active2, 0L, active11, 0x4000000000L); default : break; } - return jjStartNfa_1(30, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_1(30, 0L, 0L, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa32_1(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa32_1(long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_1(30, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_1(30, 0L, 0L, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_1(31, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); @@ -4521,7 +4557,7 @@ private final int jjMoveStringLiteralDfa32_1(long old1, long active1, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_1(active11, 0x10000000L); + return jjMoveStringLiteralDfa33_1(active11, 0x4000000000L); default : break; } @@ -4540,8 +4576,8 @@ private final int jjMoveStringLiteralDfa33_1(long old11, long active11) { case 84: case 116: - if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(33, 732, 94); + if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_1(33, 742, 96); break; default : break; @@ -4635,8 +4671,8 @@ else if (curChar == 46) jjCheckNAddTwoStates(56, 57); else if (curChar == 7) { - if (kind > 808) - kind = 808; + if (kind > 819) + kind = 819; } else if (curChar == 34) jjCheckNAddTwoStates(30, 32); @@ -4644,14 +4680,14 @@ else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 23; if ((0x3ff000000000000L & l) != 0L) { - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAddStates(9, 15); } else if (curChar == 36) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; @@ -4664,28 +4700,28 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 94: + case 96: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x3ff001000000000L & l) != 0L) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 97: + case 98: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(37, 38); else if (curChar == 39) @@ -4694,14 +4730,14 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 96: + case 95: if ((0xfffffffbffffdbffL & l) != 0L) jjCheckNAddStates(22, 24); else if (curChar == 34) @@ -4718,8 +4754,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 67; if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) @@ -4728,8 +4764,8 @@ else if (curChar == 38) case 92: if (curChar == 47) { - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(25, 27); } else if (curChar == 42) @@ -4744,14 +4780,14 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 95: + case 94: if (curChar == 32) jjCheckNAddTwoStates(86, 87); if (curChar == 32) @@ -4766,19 +4802,19 @@ else if (curChar == 39) jjCheckNAddStates(32, 34); else if (curChar == 39) { - if (kind > 741) - kind = 741; + if (kind > 751) + kind = 751; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 64; if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; - case 98: + case 97: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(57); } if ((0x3ff000000000000L & l) != 0L) @@ -4803,8 +4839,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 740) - kind = 740; + if (curChar == 39 && kind > 750) + kind = 750; break; case 7: if ((0x3ff000000000000L & l) != 0L) @@ -4828,8 +4864,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 11; break; case 13: - if (curChar == 39 && kind > 742) - kind = 742; + if (curChar == 39 && kind > 752) + kind = 752; break; case 17: if ((0xffffff7fffffffffL & l) != 0L) @@ -4847,30 +4883,30 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 20; break; case 22: - if (curChar == 39 && kind > 744) - kind = 744; + if (curChar == 39 && kind > 754) + kind = 754; break; case 23: if (curChar != 45) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(25, 27); break; case 24: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(25, 27); break; case 25: - if ((0x2400L & l) != 0L && kind > 794) - kind = 794; + if ((0x2400L & l) != 0L && kind > 805) + kind = 805; break; case 26: - if (curChar == 10 && kind > 794) - kind = 794; + if (curChar == 10 && kind > 805) + kind = 805; break; case 27: if (curChar == 13) @@ -4897,21 +4933,21 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 31; break; case 33: - if (curChar == 34 && kind > 799) - kind = 799; + if (curChar == 34 && kind > 810) + kind = 810; break; case 34: if (curChar != 36) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 35: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 36: @@ -4929,8 +4965,8 @@ else if (curChar == 39) case 39: if (curChar != 36) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjCheckNAddTwoStates(39, 40); break; case 40: @@ -4940,26 +4976,26 @@ else if (curChar == 39) case 41: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjCheckNAdd(41); break; case 42: - if (curChar == 7 && kind > 808) - kind = 808; + if (curChar == 7 && kind > 819) + kind = 819; break; case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAddStates(9, 15); break; case 44: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAdd(44); break; case 45: @@ -4973,8 +5009,8 @@ else if (curChar == 39) case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 735) - kind = 735; + if (kind > 745) + kind = 745; jjCheckNAdd(48); break; case 49: @@ -4988,22 +5024,22 @@ else if (curChar == 39) case 51: if (curChar != 46) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(52); break; case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(52); break; case 53: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAddStates(35, 37); break; case 54: @@ -5021,8 +5057,8 @@ else if (curChar == 39) case 57: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(57); break; case 58: @@ -5042,12 +5078,12 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; case 62: - if (curChar == 39 && kind > 741) - kind = 741; + if (curChar == 39 && kind > 751) + kind = 751; break; case 64: - if (curChar == 39 && kind > 748) - kind = 748; + if (curChar == 39 && kind > 758) + kind = 758; break; case 67: case 69: @@ -5063,8 +5099,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 69; break; case 71: - if (curChar == 39 && kind > 743) - kind = 743; + if (curChar == 39 && kind > 753) + kind = 753; break; case 72: if (curChar == 38) @@ -5087,8 +5123,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 75; break; case 77: - if (curChar == 34 && kind > 805) - kind = 805; + if (curChar == 34 && kind > 816) + kind = 816; break; case 79: if (curChar == 32) @@ -5115,14 +5151,14 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 91; break; case 91: - if ((0xffff7fffffffffffL & l) != 0L && kind > 792) - kind = 792; + if ((0xffff7fffffffffffL & l) != 0L && kind > 803) + kind = 803; break; case 93: if (curChar != 47) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(25, 27); break; default : break; @@ -5143,8 +5179,8 @@ else if (curChar == 123) jjAddStates(48, 55); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if ((0x20000000200000L & l) != 0L) @@ -5165,36 +5201,36 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; - case 94: + case 96: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; - case 97: + case 98: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; - case 96: + case 95: case 30: jjCheckNAddStates(22, 24); break; @@ -5205,8 +5241,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; @@ -5217,25 +5253,25 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; - case 95: + case 94: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; else if ((0x1000000010L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 761) + kind = 761; } if ((0x10000000100000L & l) != 0L) { - if (kind > 752) - kind = 752; + if (kind > 762) + kind = 762; } break; case 63: @@ -5286,22 +5322,22 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(28, 31); break; case 24: - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjAddStates(25, 27); break; case 34: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 35: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 36: @@ -5311,15 +5347,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjAddStates(58, 59); break; case 41: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjstateSet[jjnewStateCnt++] = 41; break; case 46: @@ -5344,32 +5380,32 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(48, 55); break; case 80: - if ((0x1000000010L & l) != 0L && kind > 751) - kind = 751; + if ((0x1000000010L & l) != 0L && kind > 761) + kind = 761; break; case 82: - if ((0x10000000100000L & l) != 0L && kind > 752) - kind = 752; + if ((0x10000000100000L & l) != 0L && kind > 762) + kind = 762; break; case 84: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; break; case 85: - if ((0x8000000080000L & l) != 0L && kind > 753) - kind = 753; + if ((0x8000000080000L & l) != 0L && kind > 763) + kind = 763; break; case 87: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; break; case 88: - if ((0x400000004000L & l) != 0L && kind > 754) - kind = 754; + if ((0x400000004000L & l) != 0L && kind > 764) + kind = 764; break; case 91: - if (kind > 792) - kind = 792; + if (kind > 803) + kind = 803; break; default : break; } @@ -5389,8 +5425,8 @@ else if ((0x1000000010L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5399,8 +5435,8 @@ else if ((0x1000000010L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5408,11 +5444,11 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 94: + case 96: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5420,11 +5456,11 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 97: + case 98: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5432,7 +5468,7 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 96: + case 95: case 30: if (jjCanMove_0(hiByte, i1, i2, l1, l2)) jjCheckNAddStates(22, 24); @@ -5440,8 +5476,8 @@ else if ((0x1000000010L & l) != 0L) case 66: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5452,8 +5488,8 @@ else if ((0x1000000010L & l) != 0L) case 16: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5488,22 +5524,22 @@ else if ((0x1000000010L & l) != 0L) case 24: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjAddStates(25, 27); break; case 34: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 35: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 36: @@ -5513,15 +5549,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjAddStates(58, 59); break; case 41: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjstateSet[jjnewStateCnt++] = 41; break; case 59: @@ -5537,8 +5573,8 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(45, 47); break; case 91: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 792) - kind = 792; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 803) + kind = 803; break; default : break; } @@ -5562,412 +5598,412 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, switch (pos) { case 0: - if ((active0 & 0x7ffe000000000L) != 0L || (active2 & 0xffffffffffff0L) != 0L || (active3 & 0xfffc000fffffc000L) != 0L || (active4 & 0xfffffc3ffffffffL) != 0L || (active5 & 0xfff8000000000000L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xfffffffffffffeffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xdffffff000000fffL) != 0L || (active11 & 0x272af64fL) != 0L) - { - jjmatchedKind = 803; + if ((active11 & 0x2000000000000000L) != 0L) return 94; + if ((active12 & 0x400000L) != 0L) + return 63; + if ((active10 & 0x3fffffc00000L) != 0L) + { + jjmatchedKind = 814; + return 66; } - if ((active11 & 0x8000000000000L) != 0L) + if ((active12 & 0x1200020000L) != 0L) + return 92; + if ((active11 & 0x8000000000000000L) != 0L) return 95; - if ((active2 & 0xfff0000000000000L) != 0L || (active3 & 0x3fffL) != 0L || (active11 & 0x800L) != 0L) + if ((active2 & 0xff00000000000000L) != 0L || (active3 & 0x3ffffL) != 0L || (active11 & 0x200000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; return 16; } - if ((active10 & 0xffffff000L) != 0L) + if ((active0 & 0x7ffe000000000L) != 0L || (active2 & 0xffffffffffffe0L) != 0L || (active3 & 0xffc000fffffc0000L) != 0L || (active4 & 0xfffff87fffffffffL) != 0L || (active5 & 0xff00000000000001L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xfffffffffffdffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xffffc000003fffffL) != 0L || (active11 & 0x9cabd93f7fL) != 0L) { - jjmatchedKind = 803; - return 66; + jjmatchedKind = 814; + return 96; } - if ((active12 & 0x800L) != 0L) - return 63; - if ((active12 & 0x2400040L) != 0L) - return 92; - if ((active11 & 0x20000000000000L) != 0L) + if ((active0 & 0xfff8001ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x1fL) != 0L || (active3 & 0x3fff0000000000L) != 0L || (active4 & 0x78000000000L) != 0L || (active5 & 0x1fffffffeL) != 0L || (active8 & 0x20000L) != 0L || (active11 & 0x635006c000L) != 0L || (active12 & 0x4000000L) != 0L) return 96; - if ((active10 & 0x2000000000000000L) != 0L) + if ((active12 & 0x200004L) != 0L) + return 97; + if ((active5 & 0xfffffe00000000L) != 0L || (active11 & 0x4000000L) != 0L) { - jjmatchedKind = 803; - return 1; + jjmatchedKind = 814; + return 98; } - if ((active0 & 0xfff8001ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xfL) != 0L || (active3 & 0x3fff000000000L) != 0L || (active4 & 0xf000003c00000000L) != 0L || (active5 & 0xfffffffL) != 0L || (active8 & 0x100L) != 0L || (active11 & 0x18d401b0L) != 0L || (active12 & 0x8000L) != 0L) - return 94; - if ((active5 & 0x7fffff0000000L) != 0L || (active11 & 0x10000L) != 0L) + if ((active11 & 0x80L) != 0L) { - jjmatchedKind = 803; - return 97; + jjmatchedKind = 814; + return 1; } - if ((active11 & 0x100000000000000L) != 0L || (active12 & 0x400L) != 0L) - return 98; - if ((active12 & 0x10L) != 0L) + if ((active12 & 0xc000L) != 0L) return 23; return -1; case 1: - if ((active12 & 0x2400000L) != 0L) + if ((active12 & 0x1200000000L) != 0L) return 90; - if ((active0 & 0xfff3fff801fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0x7ffff3efffffffffL) != 0L || (active4 & 0xefbffffbff000000L) != 0L || (active5 & 0xc67ff83fffffffffL) != 0L || (active6 & 0xffffffffffffffe1L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffcfffffffffffffL) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0x1f7eafddL) != 0L) + if ((active0 & 0x40007fe000000L) != 0L || (active3 & 0xc00000000000L) != 0L || (active4 & 0x80000000ffffff8L) != 0L || (active5 & 0x3000f80000000000L) != 0L || (active6 & 0x7c7L) != 0L || (active9 & 0x6000000000000000L) != 0L || (active11 & 0x8205408800L) != 0L) + return 96; + if ((active0 & 0xfff3fff801fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xffff3effffffffffL) != 0L || (active4 & 0xf7ffff7ff0000007L) != 0L || (active5 & 0xcfff07fffffffffdL) != 0L || (active6 & 0xfffffffffffff838L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0x9fffffffffffffffL) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0x7dfabf77ffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 1; } - return 94; + return 96; } - if ((active0 & 0x40007fe000000L) != 0L || (active3 & 0x80000c0000000000L) != 0L || (active4 & 0x40000000ffffffL) != 0L || (active5 & 0x398007c000000000L) != 0L || (active6 & 0x1eL) != 0L || (active9 & 0x30000000000000L) != 0L || (active11 & 0x20815022L) != 0L) - return 94; return -1; case 2: - if ((active0 & 0xfff3dfef79e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xe1ff2ffffff09fffL) != 0L || (active3 & 0x7fdffaeff87ff9ffL) != 0L || (active4 & 0xcfbfff43ffe81fffL) != 0L || (active5 & 0xe57ffbafffc07fe7L) != 0L || (active6 & 0xffffff701fffde3dL) != 0L || (active7 & 0xfffffc3ffffffff8L) != 0L || (active8 & 0x1ffe3fL) != 0L || (active9 & 0xffefffffeffffc00L) != 0L || (active10 & 0xdfffffffffffffffL) != 0L || (active11 & 0x2bfffffdL) != 0L) + if ((active0 & 0x201004167370L) != 0L || (active2 & 0xe00d000000f78000L) != 0L || (active3 & 0x200100078006001L) != 0L || (active4 & 0x1700007e0000L) != 0L || (active5 & 0x4000820007f00304L) != 0L || (active6 & 0x23f800087002L) != 0L || (active7 & 0xf000000001c0L) != 0L || (active8 & 0xffffffffc0038000L) != 0L || (active9 & 0x200007ffffL) != 0L || (active11 & 0x5000000080L) != 0L) + return 96; + if ((active0 & 0xfff3dfef79e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x1ff2ffffff087fffL) != 0L || (active3 & 0xfdffaeff87ff9ffeL) != 0L || (active4 & 0xf7ffe87ffe81fff7L) != 0L || (active5 & 0xafff75fff80ffcf9L) != 0L || (active6 & 0xffffdc07fff78fbcL) != 0L || (active7 & 0xffff0ffffffffe3fL) != 0L || (active8 & 0x3ffc7fffL) != 0L || (active9 & 0xdfffffdffff80000L) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0xaffffff77fL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 2; } - return 94; + return 96; } - if ((active0 & 0x201004167370L) != 0L || (active2 & 0x1e00d000000f6000L) != 0L || (active3 & 0x20010007800600L) != 0L || (active4 & 0x200000b80007e000L) != 0L || (active5 & 0x12000410003f8018L) != 0L || (active6 & 0x8fe00021c0L) != 0L || (active7 & 0x3c000000007L) != 0L || (active8 & 0xffffffffffe001c0L) != 0L || (active9 & 0x100003ffL) != 0L || (active10 & 0x2000000000000000L) != 0L || (active11 & 0x14000000L) != 0L) - return 94; return -1; case 3: - if ((active0 & 0x6631400000000000L) != 0L || (active1 & 0x83000000023feL) != 0L || (active2 & 0x51001e00005ff0L) != 0L || (active3 & 0xd00803400000c0L) != 0L || (active4 & 0x18ec03ff040000L) != 0L || (active5 & 0x6401e0a032000000L) != 0L || (active6 & 0x780200400c001e00L) != 0L || (active7 & 0x2800020080000000L) != 0L || (active8 & 0xb280L) != 0L || (active9 & 0x7ff4000000400L) != 0L || (active10 & 0xc78f4002f80008e0L) != 0L || (active11 & 0xc0201L) != 0L) - return 94; - if ((active2 & 0x400000000000000L) != 0L) - return 99; - if ((active0 & 0x99c29fef79e9ece0L) != 0L || (active1 & 0xfff7cfffffffdc01L) != 0L || (active2 & 0xf9ae2fe1fffe800fL) != 0L || (active3 & 0x7f0ff2ecbf7ffd3fL) != 0L || (active4 & 0xcfa7137000ebdfffL) != 0L || (active5 & 0x817e1b0fcdf77ff7L) != 0L || (active6 & 0x87fdff3fd3ffc1bdL) != 0L || (active7 & 0xd7fffdbf7ffffffeL) != 0L || (active8 & 0xffffffffffdf4d3fL) != 0L || (active9 & 0xffe800bfeffffbffL) != 0L || (active10 & 0x1870bffd07fff71fL) != 0L || (active11 & 0x3ff3fdfcL) != 0L) + if ((active0 & 0x99c29fef79e9ece0L) != 0L || (active1 & 0xffef9fffffffdc01L) != 0L || (active2 & 0x9ae2fe1fffeb001fL) != 0L || (active3 & 0xf0ff2ecbf7ffd3ffL) != 0L || (active4 & 0xf4e26e000ebdfff7L) != 0L || (active5 & 0x2fc361f9beeffef9L) != 0L || (active6 & 0xff7fcff4fff06fb0L) != 0L || (active7 & 0xffff6fdfffffffa1L) != 0L || (active8 & 0xffffffffbe9a7fafL) != 0L || (active9 & 0xd0017fdffff7ffffL) != 0L || (active10 & 0xc2fff41fffde3fffL) != 0L || (active11 & 0xffcff7f061L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 3; } - return 94; + return 96; } + if ((active0 & 0x6631400000000000L) != 0L || (active1 & 0x106000000023feL) != 0L || (active2 & 0x51001e000047fe0L) != 0L || (active3 & 0xd00803400000c00L) != 0L || (active4 & 0x31d807ff0400000L) != 0L || (active5 & 0x803c140640000000L) != 0L || (active6 & 0x8010030007800cL) != 0L || (active7 & 0x80200000001eL) != 0L || (active8 & 0x1650050L) != 0L || (active9 & 0xffe800000080000L) != 0L || (active10 & 0x3d000be00021c000L) != 0L || (active11 & 0x3008071eL) != 0L) + return 96; + if ((active2 & 0x4000000000000000L) != 0L) + return 99; return -1; case 4: - if ((active0 & 0x1c001e8cc00L) != 0L || (active1 & 0x4400000014401L) != 0L || (active2 & 0xa0800000c0000008L) != 0L || (active3 & 0x483f000083ec002L) != 0L || (active4 & 0xcba20240000001c0L) != 0L || (active5 & 0x1100629800087L) != 0L || (active6 & 0x240808100000008cL) != 0L || (active7 & 0x1e400060010000L) != 0L || (active8 & 0x20100L) != 0L || (active9 & 0x1c00103800L) != 0L || (active10 & 0x9012007d05030001L) != 0L || (active11 & 0x21801440L) != 0L) - return 94; - if ((active0 & 0xd9e29e2f780120e0L) != 0L || (active1 & 0xfff3affffffe9bfcL) != 0L || (active2 & 0x592e2ffd3ffe9fa7L) != 0L || (active3 & 0x7b0c02ecb7413dbdL) != 0L || (active4 & 0x4155933f8ebde3fL) != 0L || (active5 & 0x817ecb09c4777f70L) != 0L || (active6 & 0x83f5f72fd3ffdd31L) != 0L || (active7 & 0xd7e1bdbf1ffefffeL) != 0L || (active8 & 0xffffffffffdd4c3fL) != 0L || (active9 & 0xffeffca3efefc3ffL) != 0L || (active10 & 0xb68bf80f2fcf75eL) != 0L || (active11 & 0x1e73ebbcL) != 0L) + if ((active0 & 0xd9e29e2f780120e0L) != 0L || (active1 & 0xffe75ffffffe9bfcL) != 0L || (active2 & 0x92e2ffd3ffeb7f4fL) != 0L || (active3 & 0xb0c02ecb7413dbd5L) != 0L || (active4 & 0x82ab267f8ebde3f7L) != 0L || (active5 & 0x2fd961388eefee00L) != 0L || (active6 & 0xfd7dcbf4fff74e30L) != 0L || (active7 & 0xc37f6fc7ffbfffa0L) != 0L || (active8 & 0xffffffffba987fafL) != 0L || (active9 & 0xdff947dfdf87ffffL) != 0L || (active10 & 0xa2fe03cbf3debdffL) != 0L || (active11 & 0x79cfaef02dL) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 4; } - return 94; + return 96; } - if ((active2 & 0x400000000000000L) != 0L) + if ((active0 & 0x1c001e8cc00L) != 0L || (active1 & 0x8800000014401L) != 0L || (active2 & 0x800000c00000010L) != 0L || (active3 & 0x483f000083ec002aL) != 0L || (active4 & 0x7440480000001c00L) != 0L || (active5 & 0x2200c5300010f9L) != 0L || (active6 & 0x202040000002180L) != 0L || (active7 & 0x3c80001800400009L) != 0L || (active8 & 0x4020000L) != 0L || (active9 & 0x380020700000L) != 0L || (active10 & 0x4801f4140c000200L) != 0L || (active11 & 0x8600510240L) != 0L) + return 96; + if ((active2 & 0x4000000000000000L) != 0L) return 99; return -1; case 5: - if ((active0 & 0xd9c2878e79c02040L) != 0L || (active1 & 0xfff1afffe67e9bfcL) != 0L || (active2 & 0x192e07fd20fc9fa1L) != 0L || (active3 & 0x3909a0e4364834b0L) != 0L || (active4 & 0x87145933f8cbda3fL) != 0L || (active5 & 0x344b09c4147737L) != 0L || (active6 & 0x83b5f72bd37fdc18L) != 0L || (active7 & 0xc61c1dbd000efffeL) != 0L || (active8 & 0xffffffffffdc4433L) != 0L || (active9 & 0xffeffcb84f6da3ffL) != 0L || (active10 & 0xa28bfc0f038f35eL) != 0L || (active11 & 0x1e73efdcL) != 0L) + if ((active0 & 0x201821000100a0L) != 0L || (active1 & 0x4000019800000L) != 0L || (active2 & 0x28001f020000cL) != 0L || (active3 & 0x20602088101090d4L) != 0L || (active4 & 0x20000002004004L) != 0L || (active5 & 0x295000002c610800L) != 0L || (active6 & 0x1000010020004830L) != 0L || (active7 & 0xc3400087fc000000L) != 0L || (active8 & 0x2101823L) != 0L || (active9 & 0x74104800000L) != 0L || (active10 & 0x800b10100000L) != 0L || (active11 & 0x8005L) != 0L) + return 96; + if ((active2 & 0x4000000000000000L) != 0L) + return 99; + if ((active0 & 0xd9c2878e79c02040L) != 0L || (active1 & 0xffe35fffe67e9bfcL) != 0L || (active2 & 0x92e07fd20fcb7f43L) != 0L || (active3 & 0x909a0e4364834b01L) != 0L || (active4 & 0xe28b267f8cbda3f3L) != 0L || (active5 & 0x6896138828ee6f0L) != 0L || (active6 & 0xed7dcaf4dff70700L) != 0L || (active7 & 0x383f6f4003bfffa0L) != 0L || (active8 & 0xffffffffb888678cL) != 0L || (active9 & 0xdff9709edb47ffffL) != 0L || (active10 & 0xa2ff03c0e3cebdffL) != 0L || (active11 & 0x79cfbf7028L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 5; } - return 94; + return 96; } - if ((active0 & 0x201821000100a0L) != 0L || (active1 & 0x2000019800000L) != 0L || (active2 & 0x400028001f020006L) != 0L || (active3 & 0x420602088101090dL) != 0L || (active4 & 0x1000000200400L) != 0L || (active5 & 0x814a800001630840L) != 0L || (active6 & 0x40000400800121L) != 0L || (active7 & 0x11e1a0021ff00000L) != 0L || (active8 & 0x1080cL) != 0L || (active9 & 0x3a0824000L) != 0L || (active10 & 0x140002002c40400L) != 0L || (active11 & 0x20L) != 0L) - return 94; - if ((active2 & 0x400000000000000L) != 0L) - return 99; return -1; case 6: - if ((active0 & 0x40038e79c02040L) != 0L || (active1 & 0x11a7f8f73c9bfcL) != 0L || (active2 & 0x190007fc20c09fa4L) != 0L || (active3 & 0x390980c430481028L) != 0L || (active4 & 0x3100933f8839a0eL) != 0L || (active5 & 0x304b00c4147736L) != 0L || (active6 & 0x80317600025fd418L) != 0L || (active7 & 0xc41d198107c85f7eL) != 0L || (active8 & 0xfffffffff7dc400bL) != 0L || (active9 & 0xffe7fcbb4f6da3ffL) != 0L || (active10 & 0x288340f000e140L) != 0L || (active11 & 0x12136ff4L) != 0L) + if ((active0 & 0xd982840000000000L) != 0L || (active1 & 0xffc0100700420000L) != 0L || (active2 & 0x2e0001063c00003L) != 0L || (active3 & 0x2020060024900L) != 0L || (active4 & 0x808a000004840310L) != 0L || (active5 & 0x80012000400030L) != 0L || (active6 & 0xe1204af448020620L) != 0L || (active7 & 0x10f0201a82000L) != 0L || (active8 & 0x1000086006L) != 0L || (active9 & 0x1000000000000000L) != 0L || (active10 & 0xf20000e0483c00L) != 0L || (active11 & 0x3182002028L) != 0L) + return 96; + if ((active0 & 0x40038e79c02040L) != 0L || (active1 & 0x234ff8f73c9bfcL) != 0L || (active2 & 0x90007fc20c0b7f48L) != 0L || (active3 & 0x90980c4304810281L) != 0L || (active4 & 0x6201267f8839a0e3L) != 0L || (active5 & 0x6096018828ee6c0L) != 0L || (active6 & 0xc5d800097f50100L) != 0L || (active7 & 0x3a3e6041f217dfa0L) != 0L || (active8 & 0xffffffefb8801788L) != 0L || (active9 & 0xcff9769edb47ffffL) != 0L || (active10 & 0xa20d03c0038681ffL) != 0L || (active11 & 0x484dbfd000L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 6; } - return 94; + return 96; } - if ((active0 & 0xd982840000000000L) != 0L || (active1 & 0xffe0080700420000L) != 0L || (active2 & 0x2e0001063c0001L) != 0L || (active3 & 0x202006002490L) != 0L || (active4 & 0x8404500000484031L) != 0L || (active5 & 0x4000900020001L) != 0L || (active6 & 0x384812bd1200801L) != 0L || (active7 & 0x300043c0806a080L) != 0L || (active8 & 0x8000430L) != 0L || (active9 & 0x8000000000000L) != 0L || (active10 & 0xa003c800038121eL) != 0L || (active11 & 0xc608008L) != 0L) - return 94; - if ((active2 & 0x400000000000000L) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) return 99; return -1; case 7: - if ((active0 & 0x100000000002040L) != 0L || (active1 & 0x60000008000L) != 0L || (active2 & 0x100068400a00f20L) != 0L || (active3 & 0x101008400001000L) != 0L || (active4 & 0x12000020800L) != 0L || (active5 & 0x400084140030L) != 0L || (active6 & 0x201160000000408L) != 0L || (active7 & 0x400080100081e00L) != 0L || (active8 & 0x1a000001d09c4001L) != 0L || (active9 & 0x40008008000000L) != 0L || (active10 & 0x8014000000100L) != 0L || (active11 & 0x22004L) != 0L) - return 94; - if ((active2 & 0x400000000000000L) != 0L) - return 99; - if ((active0 & 0x1040038e79c00000L) != 0L || (active1 & 0xffd1a1fef73c1bfcL) != 0L || (active2 & 0x180c017820409085L) != 0L || (active3 & 0x3808804030480028L) != 0L || (active4 & 0x3100813f881922eL) != 0L || (active5 & 0x300b0040007706L) != 0L || (active6 & 0x80306003825fd010L) != 0L || (active7 & 0xc01d11b807c0417eL) != 0L || (active8 & 0xe5fffffe2740002aL) != 0L || (active9 & 0xffa7fc3b476da3ffL) != 0L || (active10 & 0x20a200f000e05cL) != 0L || (active11 & 0x12114ff0L) != 0L) + if ((active0 & 0x1040038e79c00000L) != 0L || (active1 & 0xffa341fef73c1bfcL) != 0L || (active2 & 0x80c01782040b030bL) != 0L || (active3 & 0x8088040304800281L) != 0L || (active4 & 0x6201027f881922e3L) != 0L || (active5 & 0x6016008000ee0c0L) != 0L || (active6 & 0xc1800e097f40400L) != 0L || (active7 & 0x3a2e6e01f0105fa0L) != 0L || (active8 & 0xfffffc4e80005580L) != 0L || (active9 & 0x4ff8768edb47ffcbL) != 0L || (active10 & 0x828803c00380b9ffL) != 0L || (active11 & 0x48453fc000L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 7; } - return 94; + return 96; } + if ((active0 & 0x100000000002040L) != 0L || (active1 & 0xe0000008000L) != 0L || (active2 & 0x100068400a007c40L) != 0L || (active3 & 0x1010084000010000L) != 0L || (active4 & 0x240000208000L) != 0L || (active5 & 0x8001082800600L) != 0L || (active6 & 0x8045800000010100L) != 0L || (active7 & 0x10004002078000L) != 0L || (active8 & 0x3a138800208L) != 0L || (active9 & 0x8001001000000034L) != 0L || (active10 & 0x2005000000060000L) != 0L || (active11 & 0x8801000L) != 0L) + return 96; + if ((active2 & 0x4000000000000000L) != 0L) + return 99; return -1; case 8: - if ((active0 & 0x1040018869800000L) != 0L || (active1 & 0xffc121fe07001804L) != 0L || (active2 & 0x100c017820408e85L) != 0L || (active3 & 0x2000800010080000L) != 0L || (active4 & 0x100813f8001200L) != 0L || (active5 & 0x30000040007706L) != 0L || (active6 & 0x10040382001010L) != 0L || (active7 & 0x1d013803c04166L) != 0L || (active8 & 0xf59ffff62758002aL) != 0L || (active9 & 0x87a6081b016583ffL) != 0L || (active10 & 0x202000f000c05cL) != 0L || (active11 & 0x121047d0L) != 0L) + if ((active0 & 0x1040018869800000L) != 0L || (active1 & 0xff8245fe07001804L) != 0L || (active2 & 0xc0178204087a0bL) != 0L || (active3 & 0x8000100800001L) != 0L || (active4 & 0x201027f80012002L) != 0L || (active5 & 0x6000008000ee0c0L) != 0L || (active6 & 0x40100e080040400L) != 0L || (active7 & 0x3a0c4e00f0105980L) != 0L || (active8 & 0x3fffec4eb0005400L) != 0L || (active9 & 0x4c103602cb07ffebL) != 0L || (active10 & 0x808003c00300b90fL) != 0L || (active11 & 0x48411f4000L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 8; } - return 94; + return 96; } - if ((active0 & 0x20610400000L) != 0L || (active1 & 0x108000f03c03f8L) != 0L || (active2 & 0x800000000001000L) != 0L || (active3 & 0x1808004020400028L) != 0L || (active4 & 0x30000000081802eL) != 0L || (active5 & 0xb0000000000L) != 0L || (active6 & 0x80206000005fc000L) != 0L || (active7 & 0xc000108004000018L) != 0L || (active8 & 0x60000800000000L) != 0L || (active9 & 0x7801f42046082000L) != 0L || (active10 & 0x820000002000L) != 0L || (active11 & 0x10820L) != 0L) - return 94; + if ((active0 & 0x20610400000L) != 0L || (active1 & 0x210000f03c03f8L) != 0L || (active2 & 0x8000000000030100L) != 0L || (active3 & 0x8080040204000280L) != 0L || (active4 & 0x60000000081802e1L) != 0L || (active5 & 0x1600000000000L) != 0L || (active6 & 0x818000017f00000L) != 0L || (active7 & 0x22200100000620L) != 0L || (active8 & 0xc000100000000180L) != 0L || (active9 & 0x3e8408c10400000L) != 0L || (active10 & 0x2080000008000f0L) != 0L || (active11 & 0x4208000L) != 0L) + return 96; return -1; case 9: - if ((active0 & 0x1040018801800000L) != 0L || (active1 & 0xffc02100c73811f4L) != 0L || (active2 & 0x100c006800000e05L) != 0L || (active3 & 0x3000800010080000L) != 0L || (active4 & 0x2000000e0011200L) != 0L || (active5 & 0x30000000003706L) != 0L || (active6 & 0x403821f8000L) != 0L || (active7 & 0x15003803c00044L) != 0L || (active8 & 0xf59ffff22058002aL) != 0L || (active9 & 0xc7a7e013046103ffL) != 0L || (active10 & 0x200000f000c01cL) != 0L || (active11 & 0x100042d0L) != 0L) + if ((active0 & 0x468000000L) != 0L || (active1 & 0x200fe00000a00L) != 0L || (active2 & 0x110204080200L) != 0L || (active4 & 0x201027180000000L) != 0L || (active5 & 0x400800080000L) != 0L || (active6 & 0x400000000040400L) != 0L || (active7 & 0x1000400000104880L) != 0L || (active8 & 0x80e00000000L) != 0L || (active9 & 0x10100209000000L) != 0L || (active10 & 0x80000000008020L) != 0L || (active11 & 0x840140000L) != 0L) + return 96; + if ((active0 & 0x1040018801800000L) != 0L || (active1 & 0xff804500c73811f4L) != 0L || (active2 & 0xc006800000780bL) != 0L || (active3 & 0x8000100800001L) != 0L || (active4 & 0x4000000e00112003L) != 0L || (active5 & 0x60000000006e0c0L) != 0L || (active6 & 0x100e087e00000L) != 0L || (active7 & 0x2a0c0e00f0001100L) != 0L || (active8 & 0x3fffe440b0005400L) != 0L || (active9 & 0x4fc02608c207ffebL) != 0L || (active10 & 0x800003c00300398fL) != 0L || (active11 & 0x40010b4000L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 9; } - return 94; + return 96; } - if ((active0 & 0x468000000L) != 0L || (active1 & 0x100fe00000a00L) != 0L || (active2 & 0x11020408080L) != 0L || (active4 & 0x10081318000000L) != 0L || (active5 & 0x20040004000L) != 0L || (active6 & 0x10000000001010L) != 0L || (active7 & 0x8010000004122L) != 0L || (active8 & 0x407000000L) != 0L || (active9 & 0x1000080801048000L) != 0L || (active10 & 0x200000000040L) != 0L || (active11 & 0x2100500L) != 0L) - return 94; return -1; case 10: - if ((active0 & 0x1000010801800000L) != 0L || (active1 & 0xf7c02074863811f0L) != 0L || (active2 & 0x100c002000000e01L) != 0L || (active3 & 0x2000800000000000L) != 0L || (active4 & 0x200000010011000L) != 0L || (active5 & 0x30000000000706L) != 0L || (active6 & 0x403801f8000L) != 0L || (active7 & 0x14003803c00040L) != 0L || (active8 & 0x951fffe000580022L) != 0L || (active9 & 0x4027e000042001ffL) != 0L || (active10 & 0x200000f000801cL) != 0L || (active11 & 0x10000050L) != 0L) + if ((active0 & 0x40008000000000L) != 0L || (active1 & 0x1000018041000004L) != 0L || (active2 & 0x48000000008L) != 0L || (active3 & 0x100800000L) != 0L || (active4 & 0xe00002001L) != 0L || (active5 & 0x60000L) != 0L || (active6 & 0x80000000L) != 0L || (active7 & 0x204000000000100L) != 0L || (active8 & 0x244000001000L) != 0L || (active9 & 0x2600820400c1L) != 0L || (active10 & 0x100010fL) != 0L || (active11 & 0x10a0000L) != 0L) + return 96; + if ((active0 & 0x1000010801800000L) != 0L || (active1 & 0xef804474863811f0L) != 0L || (active2 & 0xc0020000007803L) != 0L || (active3 & 0x8000000000001L) != 0L || (active4 & 0x4000000100110002L) != 0L || (active5 & 0x60000000000e0c0L) != 0L || (active6 & 0x100e007e00000L) != 0L || (active7 & 0x28080e00f0001000L) != 0L || (active8 & 0x3fffc000b0004400L) != 0L || (active9 & 0x4fc000084003ff2aL) != 0L || (active10 & 0x800003c002003880L) != 0L || (active11 & 0x4000014000L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 10; } - return 94; + return 96; } - if ((active0 & 0x40008000000000L) != 0L || (active1 & 0x800018041000004L) != 0L || (active2 & 0x4800000004L) != 0L || (active3 & 0x1000000010080000L) != 0L || (active4 & 0xe0000200L) != 0L || (active5 & 0x3000L) != 0L || (active6 & 0x2000000L) != 0L || (active7 & 0x1000000000004L) != 0L || (active8 & 0x6080001220000008L) != 0L || (active9 & 0x8780001300410200L) != 0L || (active10 & 0x4000L) != 0L || (active11 & 0x4280L) != 0L) - return 94; return -1; case 11: - if ((active0 & 0x10801800000L) != 0L || (active1 & 0x91402074863801f0L) != 0L || (active2 & 0x100c002000000e00L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000090000000L) != 0L || (active5 & 0x10000000000304L) != 0L || (active6 & 0x401801f8000L) != 0L || (active7 & 0x4002803c00040L) != 0L || (active8 & 0x901fffe000080000L) != 0L || (active9 & 0x4727c0000420013eL) != 0L || (active10 & 0xf0008014L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000000000000L) != 0L || (active1 & 0xcd00000000001000L) != 0L || (active2 & 0x2L) != 0L || (active3 & 0x8000000000000L) != 0L || (active4 & 0x110000L) != 0L || (active5 & 0x400000000008040L) != 0L || (active6 & 0x8000000000L) != 0L || (active7 & 0x2008040000000000L) != 0L || (active8 & 0xa0004400L) != 0L || (active9 & 0x4000000001820aL) != 0L || (active10 & 0x8000000000001000L) != 0L || (active11 & 0x4000L) != 0L) + return 96; + if ((active0 & 0x10801800000L) != 0L || (active1 & 0x22804474863801f0L) != 0L || (active2 & 0xc0020000007801L) != 0L || (active3 & 0x1L) != 0L || (active4 & 0x4000000900000002L) != 0L || (active5 & 0x200000000006080L) != 0L || (active6 & 0x1006007e00000L) != 0L || (active7 & 0x8000a00f0001000L) != 0L || (active8 & 0x3fffc00010000000L) != 0L || (active9 & 0x4f80000840027d20L) != 0L || (active10 & 0x3c00200288eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 11; } - return 94; + return 96; } - if ((active0 & 0x1000000000000000L) != 0L || (active1 & 0x6680000000001000L) != 0L || (active2 & 0x1L) != 0L || (active3 & 0x800000000000L) != 0L || (active4 & 0x11000L) != 0L || (active5 & 0x20000000000402L) != 0L || (active6 & 0x200000000L) != 0L || (active7 & 0x10001000000000L) != 0L || (active8 & 0x500000000500022L) != 0L || (active9 & 0x2000000000c1L) != 0L || (active10 & 0x20000000000008L) != 0L || (active11 & 0x10L) != 0L) - return 94; return -1; case 12: - if ((active0 & 0x800000000L) != 0L || (active1 & 0x200000000000L) != 0L || (active2 & 0x1000002000000200L) != 0L || (active4 & 0x10000000L) != 0L || (active8 & 0x1000000000080000L) != 0L || (active9 & 0x2400000000108L) != 0L || (active10 & 0x8000L) != 0L) - return 94; - if ((active0 & 0x10001800000L) != 0L || (active1 & 0xd1400074863801f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000080000000L) != 0L || (active5 & 0x10000000000304L) != 0L || (active6 & 0x401801f8000L) != 0L || (active7 & 0x4002803c00040L) != 0L || (active8 & 0x801fffe000000000L) != 0L || (active9 & 0x4725800004200036L) != 0L || (active10 & 0xf0000014L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x10001800000L) != 0L || (active1 & 0xa2800474863801f0L) != 0L || (active2 & 0xc0000000007001L) != 0L || (active4 & 0x4000000800000002L) != 0L || (active5 & 0x200000000006080L) != 0L || (active6 & 0x1006007e00000L) != 0L || (active7 & 0x8000a00f0001000L) != 0L || (active8 & 0x3fffc00000000000L) != 0L || (active9 & 0x4b00000840006d00L) != 0L || (active10 & 0x3c00000288eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 12; - return 94; + return 96; } + if ((active0 & 0x800000000L) != 0L || (active1 & 0x400000000000L) != 0L || (active2 & 0x20000000800L) != 0L || (active3 & 0x1L) != 0L || (active4 & 0x100000000L) != 0L || (active8 & 0x10000000L) != 0L || (active9 & 0x480000000021020L) != 0L || (active10 & 0x2000000L) != 0L) + return 96; return -1; case 13: - if ((active1 & 0x1000000000100000L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000080000000L) != 0L || (active5 & 0x100L) != 0L || (active6 & 0x40000018000L) != 0L || (active7 & 0x4002000000040L) != 0L || (active9 & 0x800000000024L) != 0L || (active10 & 0x10L) != 0L) - return 94; - if ((active0 & 0x10001800000L) != 0L || (active1 & 0xc1400074862801f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active5 & 0x10000000000204L) != 0L || (active6 & 0x1801e0000L) != 0L || (active7 & 0x803c00000L) != 0L || (active8 & 0x801fffe000000000L) != 0L || (active9 & 0x4725000004200012L) != 0L || (active10 & 0xf0000004L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x10001800000L) != 0L || (active1 & 0x82800474862801f0L) != 0L || (active2 & 0xc0000000003001L) != 0L || (active5 & 0x200000000004080L) != 0L || (active6 & 0x6007800000L) != 0L || (active7 & 0x200f0000000L) != 0L || (active8 & 0x3fffc00000000000L) != 0L || (active9 & 0x4a00000840002500L) != 0L || (active10 & 0x3c00000088eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 13; - return 94; + return 96; } + if ((active1 & 0x2000000000100000L) != 0L || (active2 & 0x4000L) != 0L || (active4 & 0x4000000800000002L) != 0L || (active5 & 0x2000L) != 0L || (active6 & 0x1000000600000L) != 0L || (active7 & 0x800080000001000L) != 0L || (active9 & 0x100000000004800L) != 0L || (active10 & 0x2000L) != 0L) + return 96; return -1; case 14: - if ((active0 & 0x1800000L) != 0L || (active1 & 0xc1000050862800f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active5 & 0x10000000000200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x3400000L) != 0L || (active8 & 0x8017ffe000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x10000000000L) != 0L || (active1 & 0x80042400000100L) != 0L || (active5 & 0x80L) != 0L || (active6 & 0x6000000000L) != 0L || (active7 & 0x20020000000L) != 0L || (active8 & 0x1000000000000000L) != 0L || (active9 & 0x4a00000840002000L) != 0L || (active10 & 0x880L) != 0L) + return 96; + if ((active0 & 0x1800000L) != 0L || (active1 & 0x82000050862800f0L) != 0L || (active2 & 0xc0000000003001L) != 0L || (active5 & 0x200000000004000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0xd0000000L) != 0L || (active8 & 0x2fffc00000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 14; - return 94; + return 96; } - if ((active0 & 0x10000000000L) != 0L || (active1 & 0x40002400000100L) != 0L || (active5 & 0x4L) != 0L || (active6 & 0x180000000L) != 0L || (active7 & 0x800800000L) != 0L || (active8 & 0x8000000000000L) != 0L || (active9 & 0x4025000004200010L) != 0L || (active10 & 0x4L) != 0L) - return 94; return -1; case 15: - if ((active0 & 0x800000L) != 0L || (active1 & 0x86200010L) != 0L || (active2 & 0xc000000000000L) != 0L || (active8 & 0x1001e000000000L) != 0L) - return 94; - if ((active0 & 0x1000000L) != 0L || (active1 & 0xc1000050000800e0L) != 0L || (active2 & 0xc00L) != 0L || (active5 & 0x10000000000200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x3400000L) != 0L || (active8 & 0x8007fe0000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x800000L) != 0L || (active1 & 0x86200010L) != 0L || (active2 & 0xc0000000000000L) != 0L || (active8 & 0x2003c00000000000L) != 0L) + return 96; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x82000050000800e0L) != 0L || (active2 & 0x3001L) != 0L || (active5 & 0x200000000004000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0xd0000000L) != 0L || (active8 & 0xffc000000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 15; } - return 94; + return 96; } return -1; case 16: - if ((active1 & 0x4000004000080000L) != 0L || (active5 & 0x10000000000000L) != 0L || (active7 & 0x2000000L) != 0L || (active8 & 0x70e0000000000L) != 0L) - return 94; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000010040000e0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x8000f1c000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000010040000e0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x1e3800000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 16; } - return 94; + return 96; } + if ((active1 & 0x8000004000080000L) != 0L || (active5 & 0x200000000000000L) != 0L || (active7 & 0x80000000L) != 0L || (active8 & 0xe1c000000000000L) != 0L) + return 96; return -1; case 17: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000000040000a0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x8002bdc000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000000040000a0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x57b800000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 17; - return 94; + return 96; } - if ((active1 & 0x1000000040L) != 0L || (active8 & 0x400000000000L) != 0L) - return 94; + if ((active1 & 0x1000000040L) != 0L || (active8 & 0x80000000000000L) != 0L) + return 96; return -1; case 18: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000000040000a0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x20dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active8 & 0x160000000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x2L) != 0L) + return 96; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000000040000a0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x41b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 18; } - return 94; + return 96; } - if ((active8 & 0x8000b00000000000L) != 0L || (active9 & 0x100000000000002L) != 0L) - return 94; return -1; case 19: - if ((active1 & 0x80L) != 0L || (active5 & 0x200L) != 0L || (active7 & 0x400000L) != 0L) - return 94; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x8100000004000020L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1000000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x80L) != 0L || (active5 & 0x4000L) != 0L || (active7 & 0x10000000L) != 0L) + return 96; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x200000004000020L) != 0L || (active2 & 0x80000000003001L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x40000000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 19; - return 94; + return 96; } return -1; case 20: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0xc00L) != 0L || (active6 & 0x1e0000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020L) != 0L || (active2 & 0x80000000000000L) != 0L || (active7 & 0x40000000L) != 0L) + return 96; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x3001L) != 0L || (active6 & 0x7800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 20; - return 94; + return 96; } - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020L) != 0L || (active2 & 0x8000000000000L) != 0L || (active7 & 0x1000000L) != 0L) - return 94; return -1; case 21: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x1e0000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x90000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active2 & 0x1000L) != 0L || (active10 & 0x18000000004L) != 0L) + return 96; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x7800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x24000000008L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 21; - return 94; + return 96; } - if ((active2 & 0x400L) != 0L || (active9 & 0x200000000000000L) != 0L || (active10 & 0x60000000L) != 0L) - return 94; return -1; case 22: - if ((active6 & 0x80000L) != 0L) - return 94; - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x160000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x90000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x5800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x24000000008L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 22; - return 94; + return 96; } + if ((active6 & 0x2000000L) != 0L) + return 96; return -1; case 23: - if ((active8 & 0x4000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x80000000L) != 0L) - return 94; - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x160000L) != 0L || (active8 & 0x22d8000000000L) != 0L || (active10 & 0x10000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x5800000L) != 0L || (active8 & 0x45b000000000000L) != 0L || (active10 & 0x4000000000L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 23; - return 94; + return 96; } + if ((active8 & 0x800000000000L) != 0L || (active10 & 0x20000000008L) != 0L) + return 96; return -1; case 24: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x60000L) != 0L || (active8 & 0x22d8000000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active6 & 0x4000000L) != 0L || (active10 & 0x4000000000L) != 0L) + return 96; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x1800000L) != 0L || (active8 & 0x45b000000000000L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 24; - return 94; + return 96; } - if ((active6 & 0x100000L) != 0L || (active10 & 0x10000000L) != 0L) - return 94; return -1; case 25: - if ((active6 & 0x60000L) != 0L || (active8 & 0x2018000000000L) != 0L || (active11 & 0x40L) != 0L) - return 94; - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active8 & 0x2c0000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active6 & 0x1800000L) != 0L || (active8 & 0x403000000000000L) != 0L || (active11 & 0x10000L) != 0L) + return 96; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active8 & 0x58000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 25; - return 94; + return 96; } return -1; case 26: - if ((active2 & 0x800L) != 0L || (active8 & 0xc0000000000L) != 0L) - return 94; - if ((active1 & 0x8100000000000000L) != 0L || (active8 & 0x200000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active8 & 0x40000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 26; - return 94; + return 96; } + if ((active2 & 0x2000L) != 0L || (active8 & 0x18000000000000L) != 0L) + return 96; return -1; case 27: - if ((active1 & 0x8100000000000000L) != 0L || (active8 & 0x200000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active8 & 0x40000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 27; - return 94; + return 96; } return -1; case 28: - if ((active1 & 0x8100000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active8 & 0x40000000000000L) != 0L) + return 96; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 28; - return 94; + return 96; } - if ((active8 & 0x200000000000L) != 0L) - return 94; return -1; case 29: - if ((active1 & 0x8100000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 29; - return 94; + return 96; } return -1; case 30: - if ((active1 & 0x8000000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L) + return 96; + if ((active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 30; - return 94; + return 96; } - if ((active1 & 0x100000000000000L) != 0L) - return 94; return -1; case 31: - if ((active1 & 0x8000000000000000L) != 0L) - return 94; - if ((active11 & 0x10000000L) != 0L) + if ((active2 & 0x1L) != 0L) + return 96; + if ((active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 31; - return 94; + return 96; } return -1; case 32: - if ((active11 & 0x10000000L) != 0L) + if ((active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 32; - return 94; + return 96; } return -1; default : @@ -5992,146 +6028,147 @@ private final int jjMoveStringLiteralDfa0_0() { case 33: jjmatchedKind = 1; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L); case 34: - return jjStopAtPos(0, 780); + return jjStopAtPos(0, 791); case 36: - return jjStartNfaWithStates_0(0, 783, 94); + return jjStartNfaWithStates_0(0, 794, 96); case 37: - return jjStopAtPos(0, 775); + return jjStopAtPos(0, 786); case 39: - return jjStartNfaWithStates_0(0, 779, 63); + return jjStartNfaWithStates_0(0, 790, 63); case 40: - return jjStopAtPos(0, 749); + return jjStopAtPos(0, 759); case 41: - return jjStopAtPos(0, 750); + return jjStopAtPos(0, 760); case 42: - jjmatchedKind = 773; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000L); + jjmatchedKind = 784; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); case 43: - return jjStopAtPos(0, 771); + return jjStopAtPos(0, 781); case 44: - return jjStopAtPos(0, 761); + return jjStopAtPos(0, 771); case 45: - return jjStartNfaWithStates_0(0, 772, 23); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L); case 46: - jjmatchedKind = 760; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L); + jjmatchedKind = 770; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L); case 47: - jjmatchedKind = 774; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2400000L); + jjmatchedKind = 785; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1200000000L); case 58: - jjmatchedKind = 766; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L); + jjmatchedKind = 776; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 59: - return jjStopAtPos(0, 759); + return jjStopAtPos(0, 769); case 60: - jjmatchedKind = 764; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000000000L, 0x2L); + jjmatchedKind = 774; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa00L); case 61: - jjmatchedKind = 762; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200L); + jjmatchedKind = 772; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); case 62: - jjmatchedKind = 763; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1L); + jjmatchedKind = 773; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L); case 63: - return jjStopAtPos(0, 765); + return jjStopAtPos(0, 775); case 91: - return jjStartNfaWithStates_0(0, 757, 96); + return jjStartNfaWithStates_0(0, 767, 95); case 93: - return jjStopAtPos(0, 758); + return jjStopAtPos(0, 768); case 94: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 793); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_0(0x1ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8800030L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x1ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x220000c000L, 0x0L); case 66: case 98: - return jjMoveStringLiteralDfa1_0(0x7ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x7ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000L, 0x0L); case 67: case 99: jjmatchedKind = 51; - return jjMoveStringLiteralDfa1_0(0xfff0000000000000L, 0xffffffffffffffffL, 0xfL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x500180L, 0x0L); + return jjMoveStringLiteralDfa1_0(0xfff0000000000000L, 0xffffffffffffffffL, 0x1fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140060000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0xffffffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0xffffffffffffe0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0xfff0000000000000L, 0x3fffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0xff00000000000000L, 0x3ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L, 0x0L); case 70: case 102: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0xfffffc000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0xfffffc0000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 71: case 103: - jjmatchedKind = 228; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x3ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + jjmatchedKind = 232; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x3ffe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 72: case 104: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0xfc000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0xfc0000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0xff00000000000000L, 0xffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x5002L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0xf000000000000000L, 0xfffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1400800L, 0x0L); case 74: case 106: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x3ff000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x7ff0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: - jjmatchedKind = 290; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x3800000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); + jjmatchedKind = 295; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x70000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xfffffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0x1L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L, 0x0L); case 77: case 109: - jjmatchedKind = 316; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0xfffffffL, 0x0L, 0x0L, 0x100L, 0x0L, 0x0L, 0x10000000L, 0x0L); + jjmatchedKind = 321; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1fffffffcL, 0x0L, 0x0L, 0x20000L, 0x0L, 0x0L, 0x4000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffffe00000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 79: case 111: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff8000000000000L, 0x1fffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xff00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffffffffe000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x22000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffffffffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8800000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x380000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfc00000000000000L, 0x7ffffffffffL, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffffffffffffL, 0x0L, 0x0L, 0x0L, 0x1000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0xfffffffffffffeffL, 0x3ffffffffL, 0x0L, 0x2280000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffe000000000000L, 0xfffffffffffdffffL, 0x7ffffffffffL, 0x0L, 0x8a0000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffffffc00000000L, 0xfffL, 0x20000004L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0x3fffffL, 0x8000001000L, 0x0L); case 85: case 117: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffff000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffc00000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7ff000000000L, 0x400L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffc00000000000L, 0x100000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1fff800000000000L, 0x40L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfe00000000000000L, 0x1007fL, 0x0L); case 88: case 120: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000000000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80L, 0x0L); case 89: case 121: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x300L, 0x0L); case 90: case 122: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L, 0x0L); case 123: - return jjStartNfaWithStates_0(0, 755, 95); + return jjStartNfaWithStates_0(0, 765, 94); case 124: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 125: - return jjStopAtPos(0, 756); + return jjStopAtPos(0, 766); case 126: return jjStopAtPos(0, 2); default : @@ -6148,128 +6185,130 @@ private final int jjMoveStringLiteralDfa1_0(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x2000000L) != 0L) + if ((active12 & 0x1000000000L) != 0L) { - jjmatchedKind = 793; + jjmatchedKind = 804; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x400000L); + return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x200000000L); case 46: - if ((active12 & 0x400L) != 0L) - return jjStopAtPos(1, 778); + if ((active12 & 0x200000L) != 0L) + return jjStopAtPos(1, 789); break; case 47: - if ((active12 & 0x800000L) != 0L) - return jjStopAtPos(1, 791); + if ((active12 & 0x400000000L) != 0L) + return jjStopAtPos(1, 802); break; case 58: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); + if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; case 61: - if ((active11 & 0x8000000000000000L) != 0L) - return jjStopAtPos(1, 767); - else if ((active12 & 0x1L) != 0L) - return jjStopAtPos(1, 768); - else if ((active12 & 0x4L) != 0L) - return jjStopAtPos(1, 770); + if ((active12 & 0x200L) != 0L) + return jjStopAtPos(1, 777); + else if ((active12 & 0x400L) != 0L) + return jjStopAtPos(1, 778); + else if ((active12 & 0x1000L) != 0L) + return jjStopAtPos(1, 780); break; case 62: - if ((active12 & 0x2L) != 0L) - return jjStopAtPos(1, 769); - else if ((active12 & 0x200L) != 0L) - return jjStopAtPos(1, 777); + if ((active12 & 0x800L) != 0L) + return jjStopAtPos(1, 779); + else if ((active12 & 0x8000L) != 0L) + return jjStopAtPos(1, 783); + else if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); break; case 65: case 97: - return jjMoveStringLiteralDfa2_0(active0, 0x1ff0000000000000L, active1, 0L, active2, 0x10000000007ff0L, active3, 0x4000000004000L, active4, 0xe0001fc001000000L, active5, 0x1f000001fL, active6, 0xc0000001fffe000L, active7, 0x180000000000L, active8, 0L, active9, 0x1c00000000L, active10, 0xff000000000L, active11, 0x10022788L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x1ff0000000000000L, active1, 0L, active2, 0x10000000007ffe0L, active3, 0x40000000040000L, active4, 0x3f80010000000L, active5, 0x3e000003fcL, active6, 0x7fff80000L, active7, 0x3e000000000003L, active8, 0L, active9, 0x380000000000L, active10, 0x3fc00000000000L, active11, 0x40089e2000L, active12, 0L); case 66: case 98: - return jjMoveStringLiteralDfa2_0(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_0(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x70000600000000L, active6, 0L, active7, 0x3fe00000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0xe0000c000000000L, active6, 0L, active7, 0x7fc0000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L, active12, 0L); case 68: case 100: - return jjMoveStringLiteralDfa2_0(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x1000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_0(active0, 0xe00007e000000000L, active1, 0L, active2, 0x3fffff8000L, active3, 0x1e000008000L, active4, 0x3e03800000000L, active5, 0x3800000fe0L, active6, 0xf000000fe0000000L, active7, 0xffc000001fffffffL, active8, 0xffL, active9, 0x2000000000L, active10, 0xc003b00000001000L, active11, 0x4200004L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0xe00007e000000000L, active1, 0L, active2, 0x3fffff80000L, active3, 0x1e0000080000L, active4, 0x7c070000000000L, active5, 0x7000001fc00L, active6, 0x3f800000000L, active7, 0x80000007fffffffcL, active8, 0x1ffffL, active9, 0x400000000000L, active10, 0xec0000000400000L, active11, 0x1080001300L, active12, 0L); case 70: case 102: - if ((active5 & 0x80000000000000L) != 0L) + if ((active5 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 375; + jjmatchedKind = 380; jjmatchedPos = 1; } - else if ((active11 & 0x2L) != 0L) - return jjStartNfaWithStates_0(1, 705, 94); - return jjMoveStringLiteralDfa2_0(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L, active12, 0L); + else if ((active11 & 0x800L) != 0L) + return jjStartNfaWithStates_0(1, 715, 96); + return jjMoveStringLiteralDfa2_0(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000L, active12, 0L); case 71: case 103: - return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x200000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0x7ffL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200L, active9, 0xc000000000L, active10, 0x1c000000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0x7ffL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x40000L, active9, 0x1800000000000L, active10, 0x7000000000000000L, active11, 0L, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_0(active0, 0x380000000000L, active1, 0L, active2, 0x7c000000000L, active3, 0x80000000f0000L, active4, 0x3c000000000000L, active5, 0x7f000L, active6, 0x1000000000L, active7, 0x20000000L, active8, 0x1d00L, active9, 0xfff0000000000L, active10, 0x3e0400000000000L, active11, 0x40000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x380000000000L, active1, 0L, active2, 0x7c0000000000L, active3, 0x80000000f00000L, active4, 0x780000000000000L, active5, 0xfe0000L, active6, 0x40000000000L, active7, 0x800000000L, active8, 0x3a0000L, active9, 0x1ffe000000000000L, active10, 0x8100000000000000L, active11, 0x1000000fL, active12, 0L); case 75: case 107: - return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 76: case 108: - return jjMoveStringLiteralDfa2_0(active0, 0x40000001f000L, active1, 0x7800L, active2, 0x60000000000000L, active3, 0x400020000300000L, active4, 0L, active5, 0x200000000000000L, active6, 0xe000000000L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x40000001f000L, active1, 0x7800L, active2, 0x600000000000000L, active3, 0x4000200003000000L, active4, 0L, active5, 0x4000000000000000L, active6, 0x380000000000L, active7, 0x1000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 77: case 109: - return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0x80000000000000L, active3, 0x7800000000000000L, active4, 0L, active5, 0x400000000000000L, active6, 0L, active7, 0L, active8, 0x4000L, active9, 0L, active10, 0x2000000000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0x8000000000000000L, active4, 0x7L, active5, 0x8000000000000000L, active6, 0L, active7, 0L, active8, 0x800000L, active9, 0L, active10, 0L, active11, 0x80L, active12, 0L); case 78: case 110: - if ((active3 & 0x8000000000000000L) != 0L) + if ((active4 & 0x8L) != 0L) { - jjmatchedKind = 255; + jjmatchedKind = 259; jjmatchedPos = 1; } - else if ((active4 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(1, 310, 94); - else if ((active5 & 0x800000000000000L) != 0L) + else if ((active4 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_0(1, 315, 96); + else if ((active6 & 0x1L) != 0L) { - jjmatchedKind = 379; + jjmatchedKind = 384; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0x60000L, active1, 0L, active2, 0x1f00000000000000L, active3, 0L, active4, 0xfffffL, active5, 0x3000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7fe000L, active11, 0x8005800L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x60000L, active1, 0L, active2, 0xf000000000000000L, active3, 0x1L, active4, 0xfffff0L, active5, 0L, active6, 0x6L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1ff800000L, active11, 0x2001600000L, active12, 0L); case 79: case 111: - if ((active3 & 0x40000000000L) != 0L) + if ((active3 & 0x400000000000L) != 0L) { - jjmatchedKind = 234; + jjmatchedKind = 238; jjmatchedPos = 1; } - else if ((active5 & 0x4000000000L) != 0L) + else if ((active5 & 0x80000000000L) != 0L) { - jjmatchedKind = 358; + jjmatchedKind = 363; jjmatchedPos = 1; } - else if ((active9 & 0x10000000000000L) != 0L) + else if ((active9 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 628; + jjmatchedKind = 637; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0x1800000000000L, active1, 0x1ffffffff8000L, active2, 0xf80000000000L, active3, 0xf008000fc00000L, active4, 0xf80000002000000L, active5, 0x78003f80000L, active6, 0xf0000000000L, active7, 0x3ff80000000L, active8, 0x18000L, active9, 0x20000000000000L, active10, 0x400000000000000L, active11, 0x20518001L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x1800000000000L, active1, 0x3ffffffff8000L, active2, 0xf800000000000L, active3, 0xf008000fc000000L, active4, 0xf000000020000000L, active5, 0xf0007f000001L, active6, 0x3c00000000000L, active7, 0xffe000000000L, active8, 0x3000000L, active9, 0x4000000000000000L, active10, 0L, active11, 0x8146000410L, active12, 0L); case 80: case 112: - return jjMoveStringLiteralDfa2_0(active0, 0x80000L, active1, 0L, active2, 0x2000000000000000L, active3, 0L, active4, 0L, active5, 0xc000000000000000L, active6, 0x1L, active7, 0L, active8, 0x1e0000L, active9, 0L, active10, 0x3800000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x2L, active4, 0L, active5, 0L, active6, 0x38L, active7, 0L, active8, 0x3c000000L, active9, 0L, active10, 0xe00000000L, active11, 0L, active12, 0L); case 81: case 113: - return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xffffffffffe00000L, active9, 0x7ffL, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xffffffffc0000000L, active9, 0xfffffL, active10, 0L, active11, 0L, active12, 0L); case 82: case 114: - if ((active6 & 0x2L) != 0L) + if ((active6 & 0x40L) != 0L) { - jjmatchedKind = 385; + jjmatchedKind = 390; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0x2000001f00000L, active1, 0x6000000000000L, active2, 0x8001000000000000L, active3, 0x3f001f0000000L, active4, 0L, active5, 0L, active6, 0x3ff0000000001cL, active7, 0L, active8, 0L, active9, 0xffc0000000000000L, active10, 0x18000000000001ffL, active11, 0x40L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x2000001f00000L, active1, 0xc000000000000L, active2, 0x10000000000000L, active3, 0x3f001f00000008L, active4, 0L, active5, 0L, active6, 0xffc000000000780L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x7ffffL, active11, 0x10060L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -6277,12 +6316,12 @@ else if ((active9 & 0x10000000000000L) != 0L) jjmatchedKind = 25; jjmatchedPos = 1; } - else if ((active4 & 0x100000L) != 0L) + else if ((active4 & 0x1000000L) != 0L) { - jjmatchedKind = 276; + jjmatchedKind = 280; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0x7c000000L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0x3fce00000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1fc000000L, active11, 0x800000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x7c000000L, active1, 0L, active2, 0L, active3, 0x10L, active4, 0x7fce000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7f000000000L, active11, 0x200000000L, active12, 0L); case 84: case 116: if ((active0 & 0x80000000L) != 0L) @@ -6290,24 +6329,24 @@ else if ((active4 & 0x100000L) != 0L) jjmatchedKind = 31; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0x700000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x180000000000L, active6, 0x20L, active7, 0L, active8, 0L, active9, 0x1ff800L, active10, 0xe00000000L, active11, 0x2000020L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x700000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0x800L, active7, 0L, active8, 0L, active9, 0x3ff00000L, active10, 0x380000000000L, active11, 0x800008000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_0(active0, 0x800000000L, active1, 0xfff8000000000000L, active2, 0x7L, active3, 0xe00000000L, active4, 0L, active5, 0x7e0000c000000L, active6, 0x3c00000000001c0L, active7, 0x40000000000L, active8, 0L, active9, 0x3fe00000L, active10, 0x600L, active11, 0x1000000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x800000000L, active1, 0xfff0000000000000L, active2, 0xfL, active3, 0xe000000000L, active4, 0L, active5, 0xfc000180000000L, active6, 0xf000000000007000L, active7, 0x1000000000000L, active8, 0L, active9, 0x7fc0000000L, active10, 0x180000L, active11, 0x400000000L, active12, 0L); case 86: case 118: - return jjMoveStringLiteralDfa2_0(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0x2L, active4, 0L, active5, 0L, active6, 0x1e00L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0L, active5, 0L, active6, 0x78000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 88: case 120: - return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x3ffcL, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x3ffc0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 89: case 121: if ((active0 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(1, 50, 94); - return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0xe000000000008L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000L, active10, 0x800L, active11, 0L, active12, 0L); + return jjStartNfaWithStates_0(1, 50, 96); + return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0xe0000000000010L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x78000000000L, active10, 0x200000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x100L) != 0L) - return jjStopAtPos(1, 776); + if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); break; default : break; @@ -6326,84 +6365,84 @@ private final int jjMoveStringLiteralDfa2_0(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x400000L) != 0L) - return jjStopAtPos(2, 790); + if ((active12 & 0x200000000L) != 0L) + return jjStopAtPos(2, 801); break; case 65: case 97: if ((active0 & 0x100L) != 0L) - return jjStartNfaWithStates_0(2, 8, 94); - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x9bffL, active2, 0x4000008000L, active3, 0x300030000000L, active4, 0x600000000000L, active5, 0x20L, active6, 0x7380006000000000L, active7, 0x40600000000000L, active8, 0x24000L, active9, 0xffc0000000007800L, active10, 0xc800000004000000L, active11, 0xa080000L, active12, 0L); + return jjStartNfaWithStates_0(2, 8, 96); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x9bffL, active2, 0x40000080000L, active3, 0x3000300000000L, active4, 0xc000000000000L, active5, 0x400L, active6, 0xe000180000000000L, active7, 0x80c000000000001cL, active8, 0x4800000L, active9, 0x8000000000f00000L, active10, 0x10000001ffL, active11, 0x2820000320L, active12, 0L); case 66: case 98: - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x8000000010000L, active2, 0L, active3, 0L, active4, 0x4004000000000L, active5, 0L, active6, 0x40000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000L, active10, 0x2000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x10000000010000L, active2, 0L, active3, 0L, active4, 0x80080000000000L, active5, 0L, active6, 0x1000000000000000L, active7, 0L, active8, 0L, active9, 0x380fc0000000L, active10, 0x800000L, active11, 0L, active12, 0L); case 67: case 99: if ((active0 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(2, 26, 94); - else if ((active2 & 0x10000L) != 0L) + return jjStartNfaWithStates_0(2, 26, 96); + else if ((active2 & 0x100000L) != 0L) { - jjmatchedKind = 144; + jjmatchedKind = 148; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x1100000000e0008L, active3, 0x3dL, active4, 0x780000000000007L, active5, 0x10000000001000L, active6, 0x8000000000000000L, active7, 0x780000000000000L, active8, 0L, active9, 0x8000000L, active10, 0xc000L, active11, 0x988L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x1100000000e00010L, active3, 0x3d0L, active4, 0xf000000000000070L, active5, 0x200000000020000L, active6, 0L, active7, 0x20L, active8, 0xfL, active9, 0x1000000000L, active10, 0x3000000L, active11, 0x262000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) - return jjStartNfaWithStates_0(2, 9, 94); + return jjStartNfaWithStates_0(2, 9, 96); else if ((active0 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(2, 17, 94); - else if ((active2 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_0(2, 17, 96); + else if ((active2 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 185; + jjmatchedKind = 189; jjmatchedPos = 2; } - else if ((active5 & 0x80000L) != 0L) + else if ((active5 & 0x1000000L) != 0L) { - jjmatchedKind = 339; + jjmatchedKind = 344; jjmatchedPos = 2; } - else if ((active5 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(2, 377, 94); - else if ((active6 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(2, 397, 94); - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x1c00000000000000L, active3, 0L, active4, 0x8L, active5, 0x300000L, active6, 0x1cL, active7, 0L, active8, 0L, active9, 0x18000L, active10, 0x20800000810000L, active11, 0x1000L, active12, 0L); + else if ((active5 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_0(2, 382, 96); + else if ((active6 & 0x80000L) != 0L) + return jjStartNfaWithStates_0(2, 403, 96); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0xc000000000000000L, active3, 0x1L, active4, 0x80L, active5, 0x6000000L, active6, 0x780L, active7, 0L, active8, 0L, active9, 0x3000000L, active10, 0x8200000204000000L, active11, 0x400000L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(2, 20, 94); - else if ((active5 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(2, 380, 94); - return jjMoveStringLiteralDfa3_0(active0, 0x2000008000000L, active1, 0x2000000000400L, active2, 0x20000000000000L, active3, 0x1080000400000c2L, active4, 0L, active5, 0x4000000000000000L, active6, 0x3f00000001e00L, active7, 0x800000000000000L, active8, 0x1c0000L, active9, 0x14000000000L, active10, 0x1f4000f8000201L, active11, 0x1000000L, active12, 0L); + return jjStartNfaWithStates_0(2, 20, 96); + else if ((active6 & 0x2L) != 0L) + return jjStartNfaWithStates_0(2, 385, 96); + return jjMoveStringLiteralDfa3_0(active0, 0x2000008000000L, active1, 0x4000000000400L, active2, 0x200000000000000L, active3, 0x1080000400000c20L, active4, 0L, active5, 0L, active6, 0xfc000000078008L, active7, 0L, active8, 0x38000010L, active9, 0x2800000000000L, active10, 0x7d0003e000080200L, active11, 0x400000000L, active12, 0L); case 70: case 102: - if ((active7 & 0x1L) != 0L) + if ((active7 & 0x40L) != 0L) { - jjmatchedKind = 448; + jjmatchedKind = 454; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x2000000000L, active1, 0L, active2, 0x7f00000L, active3, 0L, active4, 0x800000000000L, active5, 0x100000000000000L, active6, 0L, active7, 0x6L, active8, 0L, active9, 0L, active10, 0xe00000000L, active11, 0x4000010L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x2000000000L, active1, 0L, active2, 0x7f000000L, active3, 0L, active4, 0x10000000000000L, active5, 0x2000000000000000L, active6, 0L, active7, 0xe000000000180L, active8, 0L, active9, 0L, active10, 0x380000000000L, active11, 0x1000004000L, active12, 0L); case 71: case 103: if ((active0 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(2, 36, 94); - else if ((active4 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(2, 295, 94); - return jjMoveStringLiteralDfa3_0(active0, 0x9c000000000L, active1, 0L, active2, 0x8000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000ff8L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000L, active12, 0L); + return jjStartNfaWithStates_0(2, 36, 96); + else if ((active4 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_0(2, 300, 96); + return jjMoveStringLiteralDfa3_0(active0, 0x9c000000000L, active1, 0L, active2, 0x80000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80003fe00L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000000L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80200000000L, active6, 0x20L, active7, 0x1800000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1004000000000L, active6, 0x800L, active7, 0x300000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 73: case 105: - if ((active6 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(2, 423, 94); - return jjMoveStringLiteralDfa3_0(active0, 0x6000000000000000L, active1, 0L, active2, 0L, active3, 0x400000080000100L, active4, 0x2000030L, active5, 0x400100000000000L, active6, 0x1c000000000000L, active7, 0x40000000L, active8, 0x2000L, active9, 0L, active10, 0x100000010006007eL, active11, 0x40L, active12, 0L); + if ((active6 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_0(2, 429, 96); + return jjMoveStringLiteralDfa3_0(active0, 0x6000000000000000L, active1, 0L, active2, 0L, active3, 0x4000000800001000L, active4, 0x20000300L, active5, 0x8002000000000000L, active6, 0x700000000000000L, active7, 0x1000000000L, active8, 0x400000L, active9, 0L, active10, 0x4001800fc00L, active11, 0x10040L, active12, 0L); case 74: case 106: - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 75: case 107: - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x18000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x300000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L, active12, 0L); case 76: case 108: if ((active0 & 0x1000L) != 0L) @@ -6411,58 +6450,58 @@ else if ((active4 & 0x8000000000L) != 0L) jjmatchedKind = 12; jjmatchedPos = 2; } - else if ((active8 & 0x200000L) != 0L) + else if ((active8 & 0x40000000L) != 0L) { - jjmatchedKind = 533; + jjmatchedKind = 542; jjmatchedPos = 2; } - else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(2, 701, 94); - return jjMoveStringLiteralDfa3_0(active0, 0x30000000006000L, active1, 0x1fe0000L, active2, 0x10000000L, active3, 0x10000200414000L, active4, 0L, active5, 0x2001e00404006000L, active6, 0L, active7, 0x3000000380003000L, active8, 0xffffffffffc00000L, active9, 0x3ffL, active10, 0x7000000000L, active11, 0x54400L, active12, 0L); + else if ((active11 & 0x80L) != 0L) + return jjStartNfaWithStates_0(2, 711, 96); + return jjMoveStringLiteralDfa3_0(active0, 0x30000000006000L, active1, 0x1fe0000L, active2, 0x100000000L, active3, 0x100002004140000L, active4, 0L, active5, 0x3c0080800c0000L, active6, 0x4L, active7, 0xe0000c0000L, active8, 0xffffffff80000060L, active9, 0x7ffffL, active10, 0x1c00000000000L, active11, 0x15100000L, active12, 0L); case 77: case 109: - if ((active9 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(2, 604, 94); - return jjMoveStringLiteralDfa3_0(active0, 0x400L, active1, 0x1000001e000000L, active2, 0x80000000000L, active3, 0x1800000000000000L, active4, 0x20000000000000L, active5, 0x6000038000040L, active6, 0L, active7, 0L, active8, 0x8c00L, active9, 0x7fe2040000000L, active10, 0x400L, active11, 0x400004L, active12, 0L); + if ((active9 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_0(2, 613, 96); + return jjMoveStringLiteralDfa3_0(active0, 0x400L, active1, 0x2000001e000000L, active2, 0x800000000000L, active3, 0x8000000000000000L, active4, 0x400000000000001L, active5, 0xc0000700000800L, active6, 0L, active7, 0L, active8, 0x1180000L, active9, 0xffc408000000000L, active10, 0x100000L, active11, 0x100001000L, active12, 0L); case 78: case 110: - if ((active5 & 0x8000L) != 0L) + if ((active5 & 0x100000L) != 0L) { - jjmatchedKind = 335; + jjmatchedKind = 340; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x8000100000000000L, active1, 0xfffe0000000L, active2, 0xe000020000000L, active3, 0x200006400020000L, active4, 0x1010000000040L, active5, 0x8041c70000L, active6, 0xc00000000000000L, active7, 0x4000040000000000L, active8, 0x100L, active9, 0x8000020000000L, active10, 0x40000000600000L, active11, 0x100001L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x8000100000000000L, active1, 0x1fffe0000000L, active2, 0xe0000200000000L, active3, 0x2000064000200000L, active4, 0x20200000000400L, active5, 0x100838e00000L, active6, 0L, active7, 0x1000000000003L, active8, 0x20080L, active9, 0x1000004000000000L, active10, 0x180000000L, active11, 0x40000401L, active12, 0L); case 79: case 111: - return jjMoveStringLiteralDfa3_0(active0, 0xc00100000000L, active1, 0x4000000006000L, active2, 0x2001000000000000L, active3, 0x3c28100300000L, active4, 0x3fce00080L, active5, 0L, active6, 0x20000000000000L, active7, 0x1e000000000000L, active8, 0x200L, active9, 0L, active10, 0L, active11, 0x20L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0xc00100000000L, active1, 0x8000000006000L, active2, 0x10000000000000L, active3, 0x3c281003000002L, active4, 0x7fce000800L, active5, 0L, active6, 0x800000000000000L, active7, 0x3c00000000000000L, active8, 0x40000L, active9, 0L, active10, 0L, active11, 0x8000L, active12, 0L); case 80: case 112: - if ((active3 & 0x200L) != 0L) + if ((active3 & 0x2000L) != 0L) { - jjmatchedKind = 201; + jjmatchedKind = 205; jjmatchedPos = 2; } - else if ((active3 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(2, 245, 94); - else if ((active4 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(2, 317, 94); - return jjMoveStringLiteralDfa3_0(active0, 0x80000L, active1, 0L, active2, 0x80000040000000L, active3, 0x6000000000000400L, active4, 0x100L, active5, 0L, active6, 0L, active7, 0x800000000000c000L, active8, 0L, active9, 0x20000000000000L, active10, 0x1100800L, active11, 0L, active12, 0L); + else if ((active3 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_0(2, 249, 96); + else if ((active5 & 0x4L) != 0L) + return jjStartNfaWithStates_0(2, 322, 96); + return jjMoveStringLiteralDfa3_0(active0, 0x80000L, active1, 0L, active2, 0x800000400000000L, active3, 0x4000L, active4, 0x1006L, active5, 0L, active6, 0L, active7, 0x300000L, active8, 0x100L, active9, 0x4000000000000000L, active10, 0x440200000L, active11, 0L, active12, 0L); case 81: case 113: - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 82: case 114: - if ((active3 & 0x800000L) != 0L) + if ((active3 & 0x8000000L) != 0L) { - jjmatchedKind = 215; + jjmatchedKind = 219; jjmatchedPos = 2; } - else if ((active6 & 0x20000000L) != 0L) + else if ((active6 & 0x800000000L) != 0L) { - jjmatchedKind = 413; + jjmatchedKind = 419; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x40020001e00000L, active1, 0xffe0300000000000L, active2, 0x8000000180000007L, active3, 0x70c0000L, active4, 0x20000000000L, active5, 0x30002000080L, active6, 0x10fc07fc000L, active7, 0x20000000000000L, active8, 0xeL, active9, 0xe0400L, active10, 0x4003f8000000000L, active11, 0x202000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x40020001e00000L, active1, 0xffc0600000000000L, active2, 0x180000000fL, active3, 0x70c00008L, active4, 0x400000000000L, active5, 0x600040001000L, active6, 0x43f01ff00000L, active7, 0x4000000000000000L, active8, 0x1c00L, active9, 0x1c080000L, active10, 0xfe000000000000L, active11, 0x80800010L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -6470,79 +6509,79 @@ else if ((active6 & 0x20000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x780000030000060L, active1, 0L, active2, 0x40079e00000000L, active3, 0x800000000L, active4, 0xc0000001e00L, active5, 0x800000700L, active6, 0x60007800000L, active7, 0x1f0000L, active8, 0x30L, active9, 0x380000000L, active10, 0x2001000L, active11, 0x20000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x780000030000060L, active1, 0L, active2, 0x40079e000000000L, active3, 0x8000000000L, active4, 0x180000001e000L, active5, 0x1000000e000L, active6, 0x18001e0000000L, active7, 0x7c00000L, active8, 0x6000L, active9, 0x70000000000L, active10, 0x800400000L, active11, 0x8000000L, active12, 0L); case 84: case 116: if ((active0 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(2, 45, 94); - else if ((active2 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(2, 172, 94); - else if ((active3 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(2, 232, 94); - else if ((active4 & 0x2000L) != 0L) + return jjStartNfaWithStates_0(2, 45, 96); + else if ((active2 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_0(2, 176, 96); + else if ((active3 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_0(2, 236, 96); + else if ((active4 & 0x20000L) != 0L) { - jjmatchedKind = 269; + jjmatchedKind = 273; jjmatchedPos = 2; } - else if ((active5 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(2, 362, 94); - else if ((active6 & 0x40L) != 0L) + else if ((active5 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_0(2, 367, 96); + else if ((active6 & 0x1000L) != 0L) { - jjmatchedKind = 390; + jjmatchedKind = 396; jjmatchedPos = 2; } - else if ((active8 & 0x40L) != 0L) + else if ((active8 & 0x8000L) != 0L) { - jjmatchedKind = 518; + jjmatchedKind = 527; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x1801040e00008880L, active1, 0L, active2, 0x2000001ff0L, active3, 0x8000000b800L, active4, 0xc00010000007c000L, active5, 0x8060000180000807L, active6, 0x18000181L, active7, 0x8000fe00000L, active8, 0x80L, active9, 0L, active10, 0x380000000000000L, active11, 0x20000200L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x1801040e00008880L, active1, 0L, active2, 0x20000007fe0L, active3, 0x8000000b8000L, active4, 0x20000007c0000L, active5, 0xc000030000100f8L, active6, 0x600006030L, active7, 0x100003f8000000L, active8, 0x10000L, active9, 0L, active10, 0L, active11, 0x800008000eL, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x400000000000L, active2, 0x4000200000000000L, active3, 0xc0000008000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3c00000000L, active8, 0x10000L, active9, 0x8000000000L, active10, 0x180L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x800000000000L, active2, 0x2000000000000L, active3, 0xc00000080000004L, active4, 0L, active5, 0L, active6, 0L, active7, 0xf0000000000L, active8, 0x2000000L, active9, 0x1000000000000L, active10, 0x30000L, active11, 0L, active12, 0L); case 86: case 118: - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x1800000000000L, active2, 0L, active3, 0x4000000000000L, active4, 0x2000001080000L, active5, 0L, active6, 0x1000000000L, active7, 0x100010000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x3000000000000L, active2, 0L, active3, 0x40000000000000L, active4, 0x40000010800000L, active5, 0L, active6, 0x40000000000L, active7, 0x20000400000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 87: case 119: - if ((active2 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(2, 174, 94); - else if ((active5 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(2, 356, 94); - else if ((active7 & 0x4000000000L) != 0L) + if ((active2 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_0(2, 178, 96); + else if ((active5 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_0(2, 361, 96); + else if ((active7 & 0x100000000000L) != 0L) { - jjmatchedKind = 486; + jjmatchedKind = 492; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000000000000L, active5, 0L, active6, 0x80000000000L, active7, 0x38000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1L, active6, 0x2000000000000L, active7, 0xe00000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 88: case 120: - if ((active5 & 0x8L) != 0L) + if ((active5 & 0x100L) != 0L) { - jjmatchedKind = 323; + jjmatchedKind = 328; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000010L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(2, 18, 94); - else if ((active2 & 0x2000L) != 0L) + return jjStartNfaWithStates_0(2, 18, 96); + else if ((active2 & 0x8000L) != 0L) { - jjmatchedKind = 141; + jjmatchedKind = 143; jjmatchedPos = 2; } - else if ((active2 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(2, 175, 94); - else if ((active4 & 0x800000000L) != 0L) + else if ((active2 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_0(2, 179, 96); + else if ((active4 & 0x10000000000L) != 0L) { - jjmatchedKind = 291; + jjmatchedKind = 296; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x40000000L, active1, 0L, active2, 0x4000L, active3, 0L, active4, 0x3000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000L, active10, 0L, active11, 0x800000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x40000000L, active1, 0L, active2, 0x70000L, active3, 0L, active4, 0x60000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000000L, active10, 0x40000L, active11, 0x200000000L, active12, 0L); case 90: case 122: - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); default : break; } @@ -6560,148 +6599,148 @@ private final int jjMoveStringLiteralDfa3_0(long old0, long active0, long old1, switch(curChar) { case 45: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x400000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 49: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400000000L, active11, 0L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); case 51: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x800000000L, active11, 0L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000L, active11, 0L); case 56: - if ((active10 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(3, 673, 94); + if ((active10 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_0(3, 683, 96); break; case 95: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x1800000000000000L, active3, 0L, active4, 0x3000000000L, active5, 0x80000000000L, active6, 0L, active7, 0x18000000000L, active8, 0xfffffffffe000000L, active9, 0x200000000003ffL, active10, 0x18000000000L, active11, 0x10000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x1L, active4, 0x60000000000L, active5, 0x1000000000000L, active6, 0L, active7, 0x600000000000L, active8, 0xfffffffc00000000L, active9, 0x400000000007ffffL, active10, 0x6000000040000L, active11, 0x4000000000L); case 65: case 97: - if ((active2 & 0x10L) != 0L) + if ((active2 & 0x20L) != 0L) { - jjmatchedKind = 132; + jjmatchedKind = 133; jjmatchedPos = 3; } - else if ((active4 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(3, 280, 94); - return jjMoveStringLiteralDfa4_0(active0, 0x1802100001e10000L, active1, 0x3800000000000L, active2, 0x400e088000320020L, active3, 0x120001L, active4, 0x780000000000000L, active5, 0x200000000L, active6, 0x1fc000L, active7, 0x8000000000001000L, active8, 0L, active9, 0L, active10, 0xa00001L, active11, 0x20002200L); + else if ((active4 & 0x10000000L) != 0L) + return jjStartNfaWithStates_0(3, 284, 96); + return jjMoveStringLiteralDfa4_0(active0, 0x1802100001e10000L, active1, 0x7000000000000L, active2, 0xe0880003200040L, active3, 0x1200014L, active4, 0xf000000000000000L, active5, 0x4000000000L, active6, 0x7f00000L, active7, 0x40000L, active8, 0x100L, active9, 0L, active10, 0x280000200L, active11, 0x8000880000L); case 66: case 98: if ((active0 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(3, 46, 94); + return jjStartNfaWithStates_0(3, 46, 96); else if ((active1 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(3, 77, 94); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x200000000000L, active3, 0x20000000000L, active4, 0L, active5, 0x2000000000040L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000400L, active11, 0L); + return jjStartNfaWithStates_0(3, 77, 96); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x2000000000000L, active3, 0x200000000000L, active4, 0L, active5, 0x40000000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000100000L, active11, 0L); case 67: case 99: - if ((active2 & 0x200000000L) != 0L) + if ((active2 & 0x2000000000L) != 0L) { - jjmatchedKind = 161; + jjmatchedKind = 165; jjmatchedPos = 3; } - else if ((active3 & 0x40L) != 0L) + else if ((active3 & 0x400L) != 0L) { - jjmatchedKind = 198; + jjmatchedKind = 202; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_0(active0, 0x180000000000000L, active1, 0x400L, active2, 0x2000011c00000000L, active3, 0x410008080L, active4, 0xc000000000000000L, active5, 0x7L, active6, 0x207023c0800000L, active7, 0L, active8, 0x1e0000L, active9, 0x8200000L, active10, 0x40000001000L, active11, 0L); + return jjMoveStringLiteralDfa4_0(active0, 0x180000000000000L, active1, 0x400L, active2, 0x11c000000000L, active3, 0x4100080802L, active4, 0L, active5, 0xf8L, active6, 0x81c08f020000000L, active7, 0L, active8, 0x3c000000L, active9, 0x1040000000L, active10, 0x10000000400000L, active11, 0L); case 68: case 100: - if ((active3 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 244, 94); - else if ((active4 & 0x200000000000L) != 0L) + if ((active3 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_0(3, 248, 96); + else if ((active4 & 0x4000000000000L) != 0L) { - jjmatchedKind = 301; + jjmatchedKind = 306; jjmatchedPos = 3; } - else if ((active6 & 0x1000000000000000L) != 0L) + else if ((active7 & 0x4L) != 0L) { - jjmatchedKind = 444; + jjmatchedKind = 450; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_0(active0, 0x40000000000000L, active1, 0xe0000000L, active2, 0L, active3, 0x80000000L, active4, 0x400000200000L, active5, 0x400000L, active6, 0x2000000000000000L, active7, 0L, active8, 0L, active9, 0x20018000L, active10, 0x40000000000000L, active11, 0L); + return jjMoveStringLiteralDfa4_0(active0, 0x40000000000000L, active1, 0xe0000000L, active2, 0L, active3, 0x800000000L, active4, 0x8000002000000L, active5, 0x8000000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0x4003000000L, active10, 0L, active11, 0x1L); case 69: case 101: if ((active0 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 57, 94); - else if ((active1 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 115, 94); - else if ((active2 & 0x40L) != 0L) + return jjStartNfaWithStates_0(3, 57, 96); + else if ((active1 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_0(3, 116, 96); + else if ((active2 & 0x80L) != 0L) { - jjmatchedKind = 134; + jjmatchedKind = 135; jjmatchedPos = 3; } - else if ((active2 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 182, 94); - else if ((active3 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(3, 222, 94); - else if ((active4 & 0x8000000000000L) != 0L) + else if ((active2 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_0(3, 186, 96); + else if ((active3 & 0x400000000L) != 0L) + return jjStartNfaWithStates_0(3, 226, 96); + else if ((active4 & 0x100000000000000L) != 0L) { - jjmatchedKind = 307; + jjmatchedKind = 312; jjmatchedPos = 3; } - else if ((active5 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(3, 345, 94); - else if ((active5 & 0x10000000L) != 0L) + else if ((active5 & 0x40000000L) != 0L) + return jjStartNfaWithStates_0(3, 350, 96); + else if ((active5 & 0x200000000L) != 0L) { - jjmatchedKind = 348; + jjmatchedKind = 353; jjmatchedPos = 3; } - else if ((active5 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(3, 359, 94); - else if ((active7 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(3, 479, 94); - else if ((active8 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(3, 524, 94); - else if ((active8 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(3, 527, 94); - else if ((active9 & 0x20000000000L) != 0L) + else if ((active5 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_0(3, 364, 96); + else if ((active7 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_0(3, 485, 96); + else if ((active8 & 0x200000L) != 0L) + return jjStartNfaWithStates_0(3, 533, 96); + else if ((active8 & 0x1000000L) != 0L) + return jjStartNfaWithStates_0(3, 536, 96); + else if ((active9 & 0x4000000000000L) != 0L) { - jjmatchedKind = 617; + jjmatchedKind = 626; jjmatchedPos = 3; } - else if ((active10 & 0x80L) != 0L) - return jjStartNfaWithStates_0(3, 647, 94); - else if ((active10 & 0x800L) != 0L) - return jjStartNfaWithStates_0(3, 651, 94); - else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_0(3, 704, 94); - return jjMoveStringLiteralDfa4_0(active0, 0x10008820L, active1, 0x10000000000000L, active2, 0x2090c01f80L, active3, 0x180000600200180cL, active4, 0x81210400003c640L, active5, 0x6c000020000000L, active6, 0x800000000acL, active7, 0x1001900000016006L, active8, 0x400000L, active9, 0x7fc0000020000L, active10, 0x3410000L, active11, 0x1000L); + else if ((active10 & 0x10000L) != 0L) + return jjStartNfaWithStates_0(3, 656, 96); + else if ((active10 & 0x200000L) != 0L) + return jjStartNfaWithStates_0(3, 661, 96); + else if ((active11 & 0x400L) != 0L) + return jjStartNfaWithStates_0(3, 714, 96); + return jjMoveStringLiteralDfa4_0(active0, 0x10008820L, active1, 0x20000000000000L, active2, 0x2090c007f00L, active3, 0x80000600200180c0L, active4, 0x2420800003c6401L, active5, 0xd80000400000001L, active6, 0x2000000002980L, active7, 0x32e000000580180L, active8, 0x80000020L, active9, 0xff8000004000000L, active10, 0xd04000000L, active11, 0x400000L); case 70: case 102: - if ((active7 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 509, 94); + if ((active8 & 0x40L) != 0L) + return jjStartNfaWithStates_0(3, 518, 96); break; case 71: case 103: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x4000000000L, active3, 0L, active4, 0x1030000000000L, active5, 0x80L, active6, 0x400000000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400001eL, active11, 0x8000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x40000000000L, active3, 0L, active4, 0x20600000000000L, active5, 0x1000L, active6, 0L, active7, 0x1L, active8, 0L, active9, 0L, active10, 0x1000003c00L, active11, 0x2000000L); case 72: case 104: if ((active0 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 48, 94); - else if ((active2 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 180, 94); - else if ((active6 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(3, 411, 94); - else if ((active10 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_0(3, 48, 96); + else if ((active2 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_0(3, 184, 96); + else if ((active6 & 0x200000000L) != 0L) + return jjStartNfaWithStates_0(3, 417, 96); + else if ((active11 & 0x2L) != 0L) { - jjmatchedKind = 695; + jjmatchedKind = 705; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_0(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800L, active6, 0L, active7, 0x20000000L, active8, 0L, active9, 0L, active10, 0x300000000000000L, active11, 0x180L); + return jjMoveStringLiteralDfa4_0(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x6000cL); case 73: case 105: - return jjMoveStringLiteralDfa4_0(active0, 0x9c020000480L, active1, 0x1L, active2, 0x107040000L, active3, 0x4000800000000L, active4, 0x20000000000008L, active5, 0x8000000080100000L, active6, 0x60400000011L, active7, 0L, active8, 0x402L, active9, 0x40000000040000L, active10, 0x100000L, active11, 0x4010L); + return jjMoveStringLiteralDfa4_0(active0, 0x9c020000480L, active1, 0x1L, active2, 0x1070400000L, active3, 0x40008000000000L, active4, 0x400000000000080L, active5, 0x1002000000L, active6, 0x1810000000630L, active7, 0L, active8, 0x80400L, active9, 0x8000000008000000L, active10, 0x40000000L, active11, 0x1004000L); case 75: case 107: - if ((active6 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 443, 94); - else if ((active7 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 507, 94); - else if ((active10 & 0x1000000000000L) != 0L) + if ((active7 & 0x2L) != 0L) + return jjStartNfaWithStates_0(3, 449, 96); + else if ((active8 & 0x10L) != 0L) + return jjStartNfaWithStates_0(3, 516, 96); + else if ((active10 & 0x400000000000000L) != 0L) { - jjmatchedKind = 688; + jjmatchedKind = 698; jjmatchedPos = 3; } - else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 698, 94); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x400000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0x8L); + else if ((active11 & 0x10L) != 0L) + return jjStartNfaWithStates_0(3, 708, 96); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x4000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000L, active8, 0L, active9, 0L, active10, 0x800000000000000L, active11, 0x2000L); case 76: case 108: if ((active0 & 0x10000000000000L) != 0L) @@ -6714,68 +6753,68 @@ else if ((active0 & 0x2000000000000000L) != 0L) jjmatchedKind = 61; jjmatchedPos = 3; } - else if ((active3 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(3, 225, 94); - else if ((active5 & 0x200000000000L) != 0L) + else if ((active3 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_0(3, 229, 96); + else if ((active5 & 0x4000000000000L) != 0L) { - jjmatchedKind = 365; + jjmatchedKind = 370; jjmatchedPos = 3; } - else if ((active6 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 446, 94); - else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(3, 722, 94); - return jjMoveStringLiteralDfa4_0(active0, 0x4020800000080000L, active1, 0x7e8000L, active2, 0x88008L, active3, 0x2000000000400430L, active4, 0x800003L, active5, 0x1d00000006000L, active6, 0xc0000000000000L, active7, 0x600300008000L, active8, 0x4000L, active9, 0x1c00100000L, active10, 0L, active11, 0x8000000L); + else if ((active7 & 0x10L) != 0L) + return jjStartNfaWithStates_0(3, 452, 96); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_0(3, 732, 96); + return jjMoveStringLiteralDfa4_0(active0, 0x4020800000080000L, active1, 0x7e8000L, active2, 0x880010L, active3, 0x4004300L, active4, 0x8000032L, active5, 0x3a0000000c0000L, active6, 0x3000000000000000L, active7, 0xc000c000200000L, active8, 0x800000L, active9, 0x380020000000L, active10, 0L, active11, 0x2000000000L); case 77: case 109: - if ((active3 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(3, 224, 94); - else if ((active10 & 0x20L) != 0L) + if ((active3 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_0(3, 228, 96); + else if ((active10 & 0x4000L) != 0L) { - jjmatchedKind = 645; + jjmatchedKind = 654; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_0(active0, 0x140000000L, active1, 0x1e000000L, active2, 0x20000000000000L, active3, 0x8021000000L, active4, 0L, active5, 0x30000000000L, active6, 0x4000800000000L, active7, 0L, active8, 0L, active9, 0x40400000L, active10, 0x40L, active11, 0x20L); + return jjMoveStringLiteralDfa4_0(active0, 0x140000000L, active1, 0x1e000000L, active2, 0x200000000000000L, active3, 0x80210000000L, active4, 0L, active5, 0x600000000000L, active6, 0x100020000000000L, active7, 0L, active8, 0L, active9, 0x8080000000L, active10, 0x8000L, active11, 0x8000L); case 78: case 110: - if ((active4 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(3, 281, 94); - else if ((active4 & 0x4000000L) != 0L) + if ((active4 & 0x20000000L) != 0L) + return jjStartNfaWithStates_0(3, 285, 96); + else if ((active4 & 0x40000000L) != 0L) { - jjmatchedKind = 282; + jjmatchedKind = 286; jjmatchedPos = 3; } - else if ((active5 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 382, 94); - else if ((active6 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(3, 422, 94); - else if ((active9 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(3, 614, 94); - else if ((active10 & 0x4000000000000L) != 0L) + else if ((active6 & 0x8L) != 0L) + return jjStartNfaWithStates_0(3, 387, 96); + else if ((active6 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_0(3, 428, 96); + else if ((active9 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_0(3, 623, 96); + else if ((active10 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 690; + jjmatchedKind = 700; jjmatchedPos = 3; } - else if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(3, 723, 94); - return jjMoveStringLiteralDfa4_0(active0, 0x20008000000L, active1, 0x400700000000L, active2, 0L, active3, 0x100300008000000L, active4, 0x3f8000000L, active5, 0L, active6, 0L, active7, 0x40000000000L, active8, 0L, active9, 0xff80000000000000L, active10, 0x8800100080100L, active11, 0x800000L); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_0(3, 733, 96); + return jjMoveStringLiteralDfa4_0(active0, 0x20008000000L, active1, 0x800700000000L, active2, 0L, active3, 0x1003000080000000L, active4, 0x7f80000000L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0L, active9, 0L, active10, 0x22000400200201ffL, active11, 0x200000000L); case 79: case 111: - if ((active3 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(3, 235, 94); - else if ((active4 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(3, 274, 94); - return jjMoveStringLiteralDfa4_0(active0, 0x2000006040L, active1, 0x10000L, active2, 0x8100000000000000L, active3, 0x4200000000200000L, active4, 0x80000L, active5, 0x440000000L, active6, 0x8001000000000L, active7, 0x1a0000010000000L, active8, 0L, active9, 0L, active10, 0x2e000L, active11, 0x10000L); + if ((active3 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_0(3, 239, 96); + else if ((active4 & 0x400000L) != 0L) + return jjStartNfaWithStates_0(3, 278, 96); + return jjMoveStringLiteralDfa4_0(active0, 0x2000006040L, active1, 0x10000L, active2, 0x1000000000030000L, active3, 0x2000000002000008L, active4, 0x800004L, active5, 0x8800000000L, active6, 0x200040000000000L, active7, 0x4000000400000000L, active8, 0x3L, active9, 0L, active10, 0xb800000L, active11, 0x4000000L); case 80: case 112: - if ((active2 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 176, 94); - else if ((active8 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(3, 525, 94); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0L, active5, 0x8000000L, active6, 0x800000000100L, active7, 0x1e000000020000L, active8, 0x800L, active9, 0x2000000000L, active10, 0x800000000000000L, active11, 0x400004L); + if ((active2 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_0(3, 180, 96); + else if ((active8 & 0x400000L) != 0L) + return jjStartNfaWithStates_0(3, 534, 96); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x100000000L, active6, 0x20000000004000L, active7, 0x3c00000000800000L, active8, 0x100000L, active9, 0x400000000000L, active10, 0L, active11, 0x100001020L); case 81: case 113: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40000L, active11, 0L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10000000L, active11, 0L); case 82: case 114: if ((active1 & 0x2L) != 0L) @@ -6783,83 +6822,83 @@ else if ((active8 & 0x2000L) != 0L) jjmatchedKind = 65; jjmatchedPos = 3; } - else if ((active1 & 0x100000000000L) != 0L) + else if ((active1 & 0x200000000000L) != 0L) { - jjmatchedKind = 108; + jjmatchedKind = 109; jjmatchedPos = 3; } - else if ((active3 & 0x40000000000000L) != 0L) + else if ((active3 & 0x400000000000000L) != 0L) { - jjmatchedKind = 246; + jjmatchedKind = 250; jjmatchedPos = 3; } - else if ((active6 & 0x200L) != 0L) + else if ((active6 & 0x8000L) != 0L) { - jjmatchedKind = 393; + jjmatchedKind = 399; jjmatchedPos = 3; } - else if ((active10 & 0x8000000L) != 0L) + else if ((active10 & 0x2000000000L) != 0L) { - jjmatchedKind = 667; + jjmatchedKind = 677; jjmatchedPos = 3; } - else if ((active10 & 0x4000000000000000L) != 0L) + else if ((active11 & 0x100L) != 0L) { - jjmatchedKind = 702; + jjmatchedKind = 712; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_0(active0, 0x600000000L, active1, 0xffe02000000003fcL, active2, 0x8000001L, active3, 0x88000000002002L, active4, 0x4000000000004L, active5, 0x1000L, active6, 0x300000000001c00L, active7, 0x40000000000ff8L, active8, 0x10000L, active9, 0x8000000800L, active10, 0x80100000f0000000L, active11, 0x5000800L); + return jjMoveStringLiteralDfa4_0(active0, 0x600000000L, active1, 0xffc04000000003fcL, active2, 0x80000003L, active3, 0x880000000020020L, active4, 0x80000000000040L, active5, 0x20000L, active6, 0xc000000000070000L, active7, 0x800000000003fe00L, active8, 0x2000000L, active9, 0x1000000100000L, active10, 0x400003c000000000L, active11, 0x1400200200L); case 83: case 115: - if ((active2 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(3, 142, 94); - else if ((active7 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(3, 489, 94); - else if ((active8 & 0x80L) != 0L) - return jjStartNfaWithStates_0(3, 519, 94); - else if ((active9 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(3, 616, 94); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x401f800005800L, active2, 0x20000006L, active3, 0xc4100L, active4, 0L, active5, 0x100000000000720L, active6, 0x1000003000000L, active7, 0x4000000000000000L, active8, 0x800030L, active9, 0x7800000L, active10, 0x300000000200L, active11, 0x20000L); + if ((active2 & 0x40000L) != 0L) + return jjStartNfaWithStates_0(3, 146, 96); + else if ((active7 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_0(3, 495, 96); + else if ((active8 & 0x10000L) != 0L) + return jjStartNfaWithStates_0(3, 528, 96); + else if ((active9 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_0(3, 625, 96); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x801f800005800L, active2, 0x20000000cL, active3, 0xc41000L, active4, 0L, active5, 0x200000000000e400L, active6, 0x400000c0000000L, active7, 0L, active8, 0x100006080L, active9, 0xf00000000L, active10, 0xc0000000080000L, active11, 0x8000000L); case 84: case 116: if ((active0 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 58, 94); - else if ((active4 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(3, 58, 96); + else if ((active4 & 0x800000000000L) != 0L) { - jjmatchedKind = 298; + jjmatchedKind = 303; jjmatchedPos = 3; } - else if ((active4 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(3, 303, 94); - else if ((active5 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(3, 357, 94); - else if ((active5 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 378, 94); - else if ((active6 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(3, 410, 94); - else if ((active9 & 0x400L) != 0L) - return jjStartNfaWithStates_0(3, 586, 94); - return jjMoveStringLiteralDfa4_0(active0, 0x8000000000000000L, active1, 0x60000000000L, active2, 0x80040040000000L, active3, 0x4010000L, active4, 0x80000001830L, active5, 0x805800000L, active6, 0x10010600000L, active7, 0x200003c000c0000L, active8, 0L, active9, 0x380007000L, active10, 0x1020000000000000L, active11, 0x2100040L); + else if ((active4 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_0(3, 308, 96); + else if ((active5 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(3, 362, 96); + else if ((active5 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_0(3, 383, 96); + else if ((active6 & 0x100000000L) != 0L) + return jjStartNfaWithStates_0(3, 416, 96); + else if ((active9 & 0x80000L) != 0L) + return jjStartNfaWithStates_0(3, 595, 96); + return jjMoveStringLiteralDfa4_0(active0, 0x8000000000000000L, active1, 0xe0000000000L, active2, 0x800400400000000L, active3, 0x40100000L, active4, 0x1000000018300L, active5, 0x100b0000000L, active6, 0x400418000000L, active7, 0xf0003000000L, active8, 0x4L, active9, 0x70000e00000L, active10, 0x8000000000000000L, active11, 0x840010040L); case 85: case 117: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x1800000L, active2, 0L, active3, 0x3c00000000000L, active4, 0x180L, active5, 0x10000100230000L, active6, 0x8000000000000000L, active7, 0x40008000ff00000L, active8, 0x101L, active9, 0x80000L, active10, 0x7000000000L, active11, 0x400L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x1800000L, active2, 0L, active3, 0x3c000000000000L, active4, 0x1800L, active5, 0x200002004600000L, active6, 0L, active7, 0x100003fc000020L, active8, 0x20208L, active9, 0x10000000L, active10, 0x1c00000000000L, active11, 0x100000L); case 86: case 118: - if ((active6 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 433, 94); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x80000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40010L, active6, 0x10000000000000L, active7, 0L, active8, 0xcL, active9, 0L, active10, 0L, active11, 0x200000L); + if ((active6 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_0(3, 439, 96); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x100000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800200L, active6, 0x400000000000000L, active7, 0L, active8, 0x1800L, active9, 0L, active10, 0L, active11, 0x80000000L); case 87: case 119: - if ((active8 & 0x200L) != 0L) - return jjStartNfaWithStates_0(3, 521, 94); - else if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(3, 686, 94); - return jjMoveStringLiteralDfa4_0(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x40000L) != 0L) + return jjStartNfaWithStates_0(3, 530, 96); + else if ((active10 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_0(3, 696, 96); + return jjMoveStringLiteralDfa4_0(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active5 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(3, 381, 94); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); + if ((active6 & 0x4L) != 0L) + return jjStartNfaWithStates_0(3, 386, 96); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1000000000000000L, active10, 0x20000000000000L, active11, 0L); default : break; } @@ -6877,293 +6916,293 @@ private final int jjMoveStringLiteralDfa4_0(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active10 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(4, 675, 94); + if ((active10 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_0(4, 685, 96); break; case 54: - if ((active10 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(4, 674, 94); + if ((active10 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_0(4, 684, 96); break; case 95: - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x10000000000004L, active2, 0x1080L, active3, 0x10000000L, active4, 0x100803f8000000L, active5, 0L, active6, 0L, active7, 0xff8L, active8, 0L, active9, 0xc0000000000L, active10, 0xf0000040L, active11, 0x200L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x20000000000004L, active2, 0x300L, active3, 0x100000000L, active4, 0x201007f80000000L, active5, 0L, active6, 0L, active7, 0xe00000003fe00L, active8, 0L, active9, 0x18000000000000L, active10, 0x3c000008000L, active11, 0x80000L); case 65: case 97: - return jjMoveStringLiteralDfa5_0(active0, 0x180000000000000L, active1, 0x200063e03f8L, active2, 0x20000080000L, active3, 0x8020081002400L, active4, 0x4000000801800L, active5, 0x430000440710L, active6, 0x4800000800000L, active7, 0x20000004e000L, active8, 0x1000002L, active9, 0x20020000L, active10, 0x1000L, active11, 0L); + return jjMoveStringLiteralDfa5_0(active0, 0x180000000000000L, active1, 0x600063e03f8L, active2, 0x200000800000L, active3, 0x80200810024000L, active4, 0x80000008018000L, active5, 0x860000880e200L, active6, 0x120000020000000L, active7, 0x40000001380000L, active8, 0x200000400L, active9, 0x4004000000L, active10, 0x400000L, active11, 0L); case 66: case 98: - if ((active5 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(4, 354, 94); - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x20L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000L, active8, 0x3e000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active5 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_0(4, 359, 96); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x40L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000L, active8, 0x7c00000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(4, 727, 94); - return jjMoveStringLiteralDfa5_0(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8L, active5, 0x8000000000000L, active6, 0L, active7, 0x1040008000000000L, active8, 0xc0010000L, active9, 0x80000L, active10, 0x100L, active11, 0x10000000L); + if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_0(4, 737, 96); + return jjMoveStringLiteralDfa5_0(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80L, active5, 0x100000000000000L, active6, 0L, active7, 0x8000200000000000L, active8, 0x18002000020L, active9, 0x10000000L, active10, 0x60000L, active11, 0x4000000000L); case 68: case 100: - if ((active3 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(4, 219, 94); - return jjMoveStringLiteralDfa5_0(active0, 0x2000000000000L, active1, 0L, active2, 0x100000000020000L, active3, 0x1800000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000L, active9, 0L, active10, 0x200L, active11, 0L); + if ((active3 & 0x80000000L) != 0L) + return jjStartNfaWithStates_0(4, 223, 96); + return jjMoveStringLiteralDfa5_0(active0, 0x2000000000000L, active1, 0L, active2, 0x1000000000200000L, active3, 0x8000000000000000L, active4, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000L, active9, 0L, active10, 0x80000L, active11, 0L); case 69: case 101: if ((active1 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(4, 78, 94); - else if ((active2 & 0x8L) != 0L) - return jjStartNfaWithStates_0(4, 131, 94); - else if ((active3 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(4, 206, 94); - else if ((active3 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 250, 94); - else if ((active4 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(4, 297, 94); - else if ((active5 & 0x80L) != 0L) - return jjStartNfaWithStates_0(4, 327, 94); - else if ((active5 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(4, 364, 94); - else if ((active6 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 442, 94); - else if ((active7 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(4, 478, 94); - else if ((active7 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(4, 494, 94); - else if ((active7 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 78, 96); + else if ((active2 & 0x10L) != 0L) + return jjStartNfaWithStates_0(4, 132, 96); + else if ((active3 & 0x40000L) != 0L) + return jjStartNfaWithStates_0(4, 210, 96); + else if ((active3 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 254, 96); + else if ((active4 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_0(4, 302, 96); + else if ((active5 & 0x1000L) != 0L) + return jjStartNfaWithStates_0(4, 332, 96); + else if ((active5 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 369, 96); + else if ((active7 & 0x1L) != 0L) + return jjStartNfaWithStates_0(4, 448, 96); + else if ((active7 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_0(4, 484, 96); + else if ((active7 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 503, 96); + else if ((active7 & 0x400000000000000L) != 0L) { - jjmatchedKind = 497; + jjmatchedKind = 506; jjmatchedPos = 4; } - else if ((active8 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(4, 529, 94); - else if ((active9 & 0x1000L) != 0L) + else if ((active8 & 0x4000000L) != 0L) + return jjStartNfaWithStates_0(4, 538, 96); + else if ((active9 & 0x200000L) != 0L) { - jjmatchedKind = 588; + jjmatchedKind = 597; jjmatchedPos = 4; } - else if ((active9 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(4, 596, 94); - else if ((active9 & 0x400000000L) != 0L) + else if ((active9 & 0x20000000L) != 0L) + return jjStartNfaWithStates_0(4, 605, 96); + else if ((active9 & 0x80000000000L) != 0L) { - jjmatchedKind = 610; + jjmatchedKind = 619; jjmatchedPos = 4; } - else if ((active10 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(4, 666, 94); else if ((active10 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_0(4, 676, 96); + else if ((active10 & 0x400000000000L) != 0L) { - jjmatchedKind = 676; + jjmatchedKind = 686; jjmatchedPos = 4; } - else if ((active10 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 692, 94); - else if ((active10 & 0x1000000000000000L) != 0L) + else if ((active10 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 702, 96); + else if ((active11 & 0x40L) != 0L) { - jjmatchedKind = 700; + jjmatchedKind = 710; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_0(active0, 0x20840000000000L, active1, 0xffe0280700408000L, active2, 0x420000028000001L, active3, 0x2000008020010000L, active4, 0x400004L, active5, 0x102000000004040L, active6, 0x213003d0000000L, active7, 0x1c000000020000L, active8, 0xdL, active9, 0x1bc881a000L, active10, 0x8806000000000L, active11, 0x40005c0L); + return jjMoveStringLiteralDfa5_0(active0, 0x20840000000000L, active1, 0xffc0500700408000L, active2, 0x4200000280000003L, active3, 0x80200100000L, active4, 0x4000042L, active5, 0x2040000000080800L, active6, 0x84c00f400000000L, active7, 0x3800000000800000L, active8, 0x1a00L, active9, 0x379103400000L, active10, 0x2201800000000000L, active11, 0x1000170000L); case 70: case 102: - if ((active2 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(4, 159, 94); - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0L, active4, 0L, active5, 0x100000L, active6, 0L, active7, 0L, active8, 0x800000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x800000000L) != 0L) + return jjStartNfaWithStates_0(4, 163, 96); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x8000000000030000L, active3, 0L, active4, 0L, active5, 0x2000000L, active6, 0L, active7, 0L, active8, 0x100000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(4, 672, 94); - return jjMoveStringLiteralDfa5_0(active0, 0x20000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1eL, active11, 0x10000L); + if ((active10 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(4, 682, 96); + return jjMoveStringLiteralDfa5_0(active0, 0x20000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x40000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c00L, active11, 0x4000000L); case 72: case 104: - if ((active2 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(4, 158, 94); - else if ((active2 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 189, 94); - else if ((active3 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(4, 207, 94); - else if ((active4 & 0x4000000000000000L) != 0L) + if ((active2 & 0x400000000L) != 0L) + return jjStartNfaWithStates_0(4, 162, 96); + else if ((active3 & 0x2L) != 0L) + return jjStartNfaWithStates_0(4, 193, 96); + else if ((active3 & 0x80000L) != 0L) + return jjStartNfaWithStates_0(4, 211, 96); + else if ((active5 & 0x8L) != 0L) { - jjmatchedKind = 318; + jjmatchedKind = 323; jjmatchedPos = 4; } - else if ((active5 & 0x800000L) != 0L) + else if ((active5 & 0x10000000L) != 0L) { - jjmatchedKind = 343; + jjmatchedKind = 348; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000000000000L, active5, 0x1000007L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20040000000000L, active11, 0L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000f0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8010000000000000L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa5_0(active0, 0x4040000700000000L, active1, 0x400f8000000L, active2, 0xc0000000000L, active3, 0x2000000L, active4, 0x400000000030L, active5, 0x800804002000L, active6, 0xd0412001600000L, active7, 0x4200043c00000000L, active8, 0x3fff0001c0030L, active9, 0x8000000004000L, active10, 0x1003a0000000000L, active11, 0x2308020L); + return jjMoveStringLiteralDfa5_0(active0, 0x4040000700000000L, active1, 0x800f8000000L, active2, 0xc00000000000L, active3, 0x20000000L, active4, 0x8000000000300L, active5, 0x10010080040000L, active6, 0x3410480058000000L, active7, 0x10f0000000000L, active8, 0x7ffe00038006084L, active9, 0x1000000000800000L, active10, 0xe8000000000000L, active11, 0x8c2008004L); case 75: case 107: if ((active1 & 0x400L) != 0L) - return jjStartNfaWithStates_0(4, 74, 94); - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(4, 74, 96); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(4, 80, 94); - else if ((active3 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(4, 209, 94); - else if ((active4 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(4, 294, 94); - else if ((active4 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 305, 94); - else if ((active4 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 80, 96); + else if ((active3 & 0x200000L) != 0L) + return jjStartNfaWithStates_0(4, 213, 96); + else if ((active4 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_0(4, 299, 96); + else if ((active4 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 310, 96); + else if ((active4 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 311; + jjmatchedKind = 316; jjmatchedPos = 4; } - else if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(4, 733, 94); - return jjMoveStringLiteralDfa5_0(active0, 0x1800000000000040L, active1, 0L, active2, 0x4000208000008000L, active3, 0L, active4, 0x300000000000000L, active5, 0x200000L, active6, 0xc00L, active7, 0x20000000100000L, active8, 0x1c000000004c00L, active9, 0x60000000200000L, active10, 0x400L, active11, 0x2004L); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_0(4, 743, 96); + return jjMoveStringLiteralDfa5_0(active0, 0x1800000000000040L, active1, 0L, active2, 0x2080000080000L, active3, 0x4L, active4, 0x6000000000000000L, active5, 0x4000000L, active6, 0x30000L, active7, 0x4000000004000000L, active8, 0x3800000000980000L, active9, 0xc000000040000000L, active10, 0x100000L, active11, 0x801000L); case 77: case 109: - return jjMoveStringLiteralDfa5_0(active0, 0x40000000L, active1, 0x1800000L, active2, 0xe000000040000L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0x1fc000L, active7, 0x1800000000000L, active8, 0L, active9, 0L, active10, 0x204000L, active11, 0L); + return jjMoveStringLiteralDfa5_0(active0, 0x40000000L, active1, 0x1800000L, active2, 0xe0000000400000L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0x7f00000L, active7, 0x300000000000000L, active8, 0L, active9, 0L, active10, 0x81000000L, active11, 0L); case 78: case 110: if ((active0 & 0x400L) != 0L) - return jjStartNfaWithStates_0(4, 10, 94); + return jjStartNfaWithStates_0(4, 10, 96); else if ((active0 & 0x4000000000L) != 0L) { jjmatchedKind = 38; jjmatchedPos = 4; } else if ((active1 & 0x1L) != 0L) - return jjStartNfaWithStates_0(4, 64, 94); - else if ((active10 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(4, 657, 94); - return jjMoveStringLiteralDfa5_0(active0, 0x98000000020L, active1, 0L, active2, 0x4007000000L, active3, 0x4000000000800L, active4, 0x200L, active5, 0L, active6, 0x10L, active7, 0x180010000000000L, active8, 0x1e0000000000000L, active9, 0x40000L, active10, 0x8000L, active11, 0x4010L); + return jjStartNfaWithStates_0(4, 64, 96); + else if ((active10 & 0x8000000L) != 0L) + return jjStartNfaWithStates_0(4, 667, 96); + return jjMoveStringLiteralDfa5_0(active0, 0x98000000020L, active1, 0L, active2, 0x40070000000L, active3, 0x40000000008000L, active4, 0x2000L, active5, 0L, active6, 0x600L, active7, 0x400000000000L, active8, 0xc000000000000003L, active9, 0x8000003L, active10, 0x2000000L, active11, 0x1004000L); case 79: case 111: - return jjMoveStringLiteralDfa5_0(active0, 0x20800000080L, active1, 0L, active2, 0x10000000006L, active3, 0x800400000L, active4, 0x200000L, active5, 0x8000000080001800L, active6, 0x400000001L, active7, 0L, active8, 0L, active9, 0x2000000000L, active10, 0x240000000080000L, active11, 0L); + return jjMoveStringLiteralDfa5_0(active0, 0x20800000080L, active1, 0L, active2, 0x10000000000cL, active3, 0x8004000000L, active4, 0x2000000L, active5, 0x1000030000L, active6, 0x10000000030L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0x20000000L, active11, 0x9L); case 80: case 112: - if ((active3 & 0x400000000000L) != 0L) + if ((active3 & 0x4000000000000L) != 0L) { - jjmatchedKind = 238; + jjmatchedKind = 242; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0x380000000000dL, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x800008000000000L, active11, 0L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x380000000000d1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0x20L); case 82: case 114: if ((active0 & 0x800L) != 0L) - return jjStartNfaWithStates_0(4, 11, 94); + return jjStartNfaWithStates_0(4, 11, 96); else if ((active0 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(4, 15, 94); - else if ((active2 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 191, 94); - else if ((active3 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(4, 213, 94); - else if ((active4 & 0x40L) != 0L) - return jjStartNfaWithStates_0(4, 262, 94); - else if ((active4 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 315, 94); - else if ((active5 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(4, 353, 94); - else if ((active6 & 0x4L) != 0L) + return jjStartNfaWithStates_0(4, 15, 96); + else if ((active3 & 0x8L) != 0L) + return jjStartNfaWithStates_0(4, 195, 96); + else if ((active3 & 0x2000000L) != 0L) + return jjStartNfaWithStates_0(4, 217, 96); + else if ((active4 & 0x400L) != 0L) + return jjStartNfaWithStates_0(4, 266, 96); + else if ((active5 & 0x1L) != 0L) + return jjStartNfaWithStates_0(4, 320, 96); + else if ((active5 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_0(4, 358, 96); + else if ((active6 & 0x80L) != 0L) { - jjmatchedKind = 386; + jjmatchedKind = 391; jjmatchedPos = 4; } - else if ((active6 & 0x80L) != 0L) - return jjStartNfaWithStates_0(4, 391, 94); - else if ((active6 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(4, 427, 94); - else if ((active6 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 435, 94); - else if ((active10 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(4, 656, 94); - else if ((active10 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(4, 664, 94); - return jjMoveStringLiteralDfa5_0(active0, 0x102010000000L, active1, 0x1800000000000L, active2, 0x3c00c00000L, active3, 0x4200006004001000L, active4, 0x100000038400L, active5, 0x14000100000000L, active6, 0x8000000000001028L, active7, 0x840008000fe80006L, active8, 0x200000000000000L, active9, 0L, active10, 0x2000000L, active11, 0L); + else if ((active6 & 0x2000L) != 0L) + return jjStartNfaWithStates_0(4, 397, 96); + else if ((active6 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 433, 96); + else if ((active6 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 441, 96); + else if ((active10 & 0x4000000L) != 0L) + return jjStartNfaWithStates_0(4, 666, 96); + else if ((active10 & 0x400000000L) != 0L) + return jjStartNfaWithStates_0(4, 674, 96); + return jjMoveStringLiteralDfa5_0(active0, 0x102010000000L, active1, 0x3000000000000L, active2, 0x3c00c000000L, active3, 0x2000060040010000L, active4, 0x2000000384004L, active5, 0x280002000000000L, active6, 0x40900L, active7, 0x100003fa0001a0L, active8, 0x108L, active9, 0x4L, active10, 0x800000000L, active11, 0L); case 83: case 115: - if ((active1 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 114, 94); - else if ((active3 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 247, 94); - else if ((active5 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(4, 347, 94); - else if ((active5 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(4, 349, 94); - else if ((active5 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 368, 94); - else if ((active6 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 445, 94); - else if ((active8 & 0x100L) != 0L) - return jjStartNfaWithStates_0(4, 520, 94); - else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 689, 94); - else if ((active10 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 703, 94); - return jjMoveStringLiteralDfa5_0(active0, 0x8000000L, active1, 0x1800L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000L, active6, 0L, active7, 0L, active8, 0x400000000000000L, active9, 0xff81f08000000000L, active10, 0x10000400000L, active11, 0L); + if ((active1 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 115, 96); + else if ((active3 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 251, 96); + else if ((active5 & 0x100000000L) != 0L) + return jjStartNfaWithStates_0(4, 352, 96); + else if ((active5 & 0x400000000L) != 0L) + return jjStartNfaWithStates_0(4, 354, 96); + else if ((active5 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 373, 96); + else if ((active7 & 0x8L) != 0L) + return jjStartNfaWithStates_0(4, 451, 96); + else if ((active8 & 0x20000L) != 0L) + return jjStartNfaWithStates_0(4, 529, 96); + else if ((active10 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 699, 96); + else if ((active11 & 0x200L) != 0L) + return jjStartNfaWithStates_0(4, 713, 96); + return jjMoveStringLiteralDfa5_0(active0, 0x8000000L, active1, 0x1800L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3e1000000000008L, active10, 0x40001000001ffL, active11, 0L); case 84: case 116: - if ((active1 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(4, 110, 94); - else if ((active3 & 0x40000L) != 0L) + if ((active1 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_0(4, 111, 96); + else if ((active3 & 0x400000L) != 0L) { - jjmatchedKind = 210; + jjmatchedKind = 214; jjmatchedPos = 4; } - else if ((active3 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(4, 212, 94); - else if ((active3 & 0x100000000000L) != 0L) + else if ((active3 & 0x1000000L) != 0L) + return jjStartNfaWithStates_0(4, 216, 96); + else if ((active3 & 0x1000000000000L) != 0L) { - jjmatchedKind = 236; + jjmatchedKind = 240; jjmatchedPos = 4; } - else if ((active4 & 0x80L) != 0L) - return jjStartNfaWithStates_0(4, 263, 94); - else if ((active4 & 0x100L) != 0L) - return jjStartNfaWithStates_0(4, 264, 94); - else if ((active4 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 309, 94); - else if ((active6 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(4, 420, 94); - else if ((active7 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(4, 464, 94); - else if ((active7 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(4, 477, 94); - else if ((active9 & 0x800L) != 0L) - return jjStartNfaWithStates_0(4, 587, 94); - else if ((active10 & 0x1L) != 0L) - return jjStartNfaWithStates_0(4, 640, 94); - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x201f800000000L, active2, 0x10000f00L, active3, 0x100200400080100L, active4, 0x401002000000000L, active5, 0x60000000030000L, active6, 0x300060002000000L, active7, 0x1000L, active8, 0xf800000000800000L, active9, 0x70000ffL, active10, 0x800000L, active11, 0L); + else if ((active4 & 0x800L) != 0L) + return jjStartNfaWithStates_0(4, 267, 96); + else if ((active4 & 0x1000L) != 0L) + return jjStartNfaWithStates_0(4, 268, 96); + else if ((active4 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 314, 96); + else if ((active6 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(4, 426, 96); + else if ((active7 & 0x400000L) != 0L) + return jjStartNfaWithStates_0(4, 470, 96); + else if ((active7 & 0x800000000L) != 0L) + return jjStartNfaWithStates_0(4, 483, 96); + else if ((active9 & 0x100000L) != 0L) + return jjStartNfaWithStates_0(4, 596, 96); + else if ((active10 & 0x200L) != 0L) + return jjStartNfaWithStates_0(4, 649, 96); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x401f800000000L, active2, 0x100007c00L, active3, 0x1002004000801000L, active4, 0x8020040000000000L, active5, 0xc00000000600000L, active6, 0xc001800080000000L, active7, 0x40000L, active8, 0x100000000L, active9, 0xe0001fff0L, active10, 0x200000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_0(active0, 0x8000000000000000L, active1, 0L, active2, 0x300000L, active3, 0xb0L, active4, 0x10000000003L, active5, 0x20L, active6, 0x800000100L, active7, 0x200000000L, active8, 0L, active9, 0x400000L, active10, 0x42000L, active11, 0x400008L); + return jjMoveStringLiteralDfa5_0(active0, 0x8000000000000000L, active1, 0L, active2, 0x3000000L, active3, 0xb00L, active4, 0x200000000030L, active5, 0x400L, active6, 0x20000004000L, active7, 0x8000000000L, active8, 0L, active9, 0x80000000L, active10, 0x10800000L, active11, 0x100002000L); case 86: case 118: - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0x80000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300L, active10, 0x100000L, active11, 0L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x1000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x60000L, active10, 0x40000000L, active11, 0L); case 87: case 119: if ((active0 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(4, 14, 94); - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000L); + return jjStartNfaWithStates_0(4, 14, 96); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); case 88: case 120: - if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(4, 716, 94); - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0L, active10, 0L, active11, 0L); + if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_0(4, 726, 96); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(4, 19, 94); + return jjStartNfaWithStates_0(4, 19, 96); else if ((active0 & 0x200000L) != 0L) { jjmatchedKind = 21; jjmatchedPos = 4; } - else if ((active2 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_0(4, 183, 94); - else if ((active3 & 0x2L) != 0L) - return jjStartNfaWithStates_0(4, 193, 94); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(4, 728, 94); - return jjMoveStringLiteralDfa5_0(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000800L); + else if ((active2 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_0(4, 187, 96); + else if ((active3 & 0x20L) != 0L) + return jjStartNfaWithStates_0(4, 197, 96); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_0(4, 738, 96); + return jjMoveStringLiteralDfa5_0(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000200000L); case 90: case 122: - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xc00000000000000L, active10, 0L, active11, 0L); default : break; } @@ -7181,18 +7220,18 @@ private final int jjMoveStringLiteralDfa5_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_0(active0, 0x18001c00000L, active1, 0x1800000001000L, active2, 0x20000000L, active3, 0x800020080000L, active4, 0L, active5, 0x20000000000006L, active6, 0L, active7, 0x1c000000000000L, active8, 0L, active9, 0x800000000L, active10, 0x20004000000000L, active11, 0x5c0L); + return jjMoveStringLiteralDfa6_0(active0, 0x18001c00000L, active1, 0x3000000001000L, active2, 0x200000000L, active3, 0x8000200800000L, active4, 0L, active5, 0x4000000000000c0L, active6, 0L, active7, 0x3800000000000000L, active8, 0L, active9, 0x100000000000L, active10, 0x8001000000000000L, active11, 0x170000L); case 65: case 97: - if ((active7 & 0x800000000000L) != 0L) + if ((active7 & 0x100000000000000L) != 0L) { - jjmatchedKind = 495; + jjmatchedKind = 504; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_0(active0, 0x800000002000L, active1, 0L, active2, 0x1000000000040020L, active3, 0x6004000000L, active4, 0x110018400038L, active5, 0x80100000000L, active6, 0x200c10L, active7, 0x8001000100000018L, active8, 0x100800400L, active9, 0x780000000200300L, active10, 0x50000000340L, active11, 0x4L); + return jjMoveStringLiteralDfa6_0(active0, 0x800000002000L, active1, 0L, active2, 0x400040L, active3, 0x60040000001L, active4, 0x2200184000380L, active5, 0x1002000000000L, active6, 0x8030600L, active7, 0x200004000000600L, active8, 0x20100080100L, active9, 0x40060000L, active10, 0x140000000e800fL, active11, 0x1000L); case 66: case 98: - return jjMoveStringLiteralDfa6_0(active0, 0x600000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_0(active0, 0x600000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: if ((active0 & 0x100000000L) != 0L) @@ -7200,255 +7239,255 @@ private final int jjMoveStringLiteralDfa5_0(long old0, long active0, long old1, jjmatchedKind = 32; jjmatchedPos = 5; } - else if ((active6 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 438, 94); - else if ((active9 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(5, 590, 94); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x7004003f8L, active2, 0L, active3, 0x2000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x28020L, active8, 0x60000000400000L, active9, 0L, active10, 0L, active11, 0x200020L); + else if ((active6 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 444, 96); + else if ((active9 & 0x800000L) != 0L) + return jjStartNfaWithStates_0(5, 599, 96); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x7004003f8L, active2, 0L, active3, 0x20000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000a00800L, active8, 0xc000000080000000L, active9, 0L, active10, 0L, active11, 0x80008000L); case 68: case 100: if ((active0 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 53, 94); - else if ((active3 & 0x800L) != 0L) - return jjStartNfaWithStates_0(5, 203, 94); - else if ((active5 & 0x800L) != 0L) - return jjStartNfaWithStates_0(5, 331, 94); - else if ((active6 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(5, 418, 94); - else if ((active7 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 53, 96); + else if ((active3 & 0x8000L) != 0L) + return jjStartNfaWithStates_0(5, 207, 96); + else if ((active5 & 0x10000L) != 0L) + return jjStartNfaWithStates_0(5, 336, 96); + else if ((active6 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_0(5, 424, 96); + else if ((active8 & 0x1L) != 0L) { - jjmatchedKind = 503; + jjmatchedKind = 512; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_0(active0, 0x180000000000000L, active1, 0x10000000000000L, active2, 0x1000L, active3, 0x30L, active4, 0x3L, active5, 0L, active6, 0x20300000000000L, active7, 0x100080000000000L, active8, 0L, active9, 0x48000000000L, active10, 0xf0008000L, active11, 0L); + return jjMoveStringLiteralDfa6_0(active0, 0x180000000000000L, active1, 0x20000000000000L, active2, 0x100L, active3, 0x300L, active4, 0x30L, active5, 0L, active6, 0x80c000000000000L, active7, 0x10000000000000L, active8, 0x2L, active9, 0x9000000000000L, active10, 0x3c002000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(5, 37, 94); - else if ((active1 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 113, 94); - else if ((active2 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(5, 145, 94); - else if ((active2 & 0x1000000L) != 0L) + return jjStartNfaWithStates_0(5, 37, 96); + else if ((active1 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 114, 96); + else if ((active2 & 0x200000L) != 0L) + return jjStartNfaWithStates_0(5, 149, 96); + else if ((active2 & 0x10000000L) != 0L) { - jjmatchedKind = 152; + jjmatchedKind = 156; jjmatchedPos = 5; } - else if ((active2 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(5, 155, 94); - else if ((active2 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(5, 156, 94); - else if ((active2 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(5, 173, 94); - else if ((active3 & 0x1L) != 0L) - return jjStartNfaWithStates_0(5, 192, 94); - else if ((active3 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 249, 94); - else if ((active5 & 0x10000L) != 0L) + else if ((active2 & 0x80000000L) != 0L) + return jjStartNfaWithStates_0(5, 159, 96); + else if ((active2 & 0x100000000L) != 0L) + return jjStartNfaWithStates_0(5, 160, 96); + else if ((active2 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 177, 96); + else if ((active3 & 0x10L) != 0L) + return jjStartNfaWithStates_0(5, 196, 96); + else if ((active3 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 253, 96); + else if ((active5 & 0x200000L) != 0L) { - jjmatchedKind = 336; + jjmatchedKind = 341; jjmatchedPos = 5; } - else if ((active5 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(5, 341, 94); - else if ((active7 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(5, 476, 94); - else if ((active8 & 0x800L) != 0L) - return jjStartNfaWithStates_0(5, 523, 94); - else if ((active8 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(5, 528, 94); - else if ((active10 & 0x400L) != 0L) - return jjStartNfaWithStates_0(5, 650, 94); - else if ((active10 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(5, 658, 94); - else if ((active10 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(5, 663, 94); - return jjMoveStringLiteralDfa6_0(active0, 0x40040000000L, active1, 0L, active2, 0x106000000L, active3, 0x200000000000L, active4, 0x8000001020084000L, active5, 0x40020001L, active6, 0x3000000001fc000L, active7, 0x6L, active8, 0x200000200000000L, active9, 0x20000008000000L, active10, 0x80000000020001eL, active11, 0x4000L); + else if ((active5 & 0x4000000L) != 0L) + return jjStartNfaWithStates_0(5, 346, 96); + else if ((active7 & 0x400000000L) != 0L) + return jjStartNfaWithStates_0(5, 482, 96); + else if ((active8 & 0x100000L) != 0L) + return jjStartNfaWithStates_0(5, 532, 96); + else if ((active8 & 0x2000000L) != 0L) + return jjStartNfaWithStates_0(5, 537, 96); + else if ((active10 & 0x100000L) != 0L) + return jjStartNfaWithStates_0(5, 660, 96); + else if ((active10 & 0x10000000L) != 0L) + return jjStartNfaWithStates_0(5, 668, 96); + else if ((active10 & 0x200000000L) != 0L) + return jjStartNfaWithStates_0(5, 673, 96); + return jjMoveStringLiteralDfa6_0(active0, 0x40040000000L, active1, 0L, active2, 0x1060000000L, active3, 0x2000000000000L, active4, 0x20200840000L, active5, 0x800400030L, active6, 0xc000000007f00000L, active7, 0x180L, active8, 0x40000000000L, active9, 0x4000001000000004L, active10, 0x80003c00L, active11, 0x1000020L); case 70: case 102: - if ((active5 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(5, 367, 94); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000000000L, active7, 0L, active8, 0x1c0000L, active9, 0x1800000000000000L, active10, 0L, active11, 0L); + if ((active5 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 372, 96); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000000000000L, active7, 0L, active8, 0x38000000L, active9, 0L, active10, 0x30L, active11, 0L); case 71: case 103: - if ((active3 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 242, 94); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000L, active4, 0L, active5, 0x700L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000L, active10, 0L, active11, 0x10000L); + if ((active3 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 246, 96); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x20000000L, active4, 0L, active5, 0xe000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x4000000L); case 72: case 104: - if ((active4 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 304, 94); - else if ((active7 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 502, 94); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000L, active7, 0L, active8, 0x40000000L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active4 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 309, 96); + else if ((active7 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 511, 96); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 73: case 105: - return jjMoveStringLiteralDfa6_0(active0, 0x8000000L, active1, 0x20000000800L, active2, 0x10e001c00000f00L, active3, 0x1901000400000400L, active4, 0L, active5, 0x4000000100000L, active6, 0x60000001008L, active7, 0x400000000081040L, active8, 0x380000000e004000L, active9, 0x40000001000000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa6_0(active0, 0x8000000L, active1, 0x60000000800L, active2, 0x10e001c000007c00L, active3, 0x9010004000004000L, active4, 0x1L, active5, 0x80000002000000L, active6, 0x1800000040100L, active7, 0x2041000L, active8, 0x1c00800008L, active9, 0x8000000200000070L, active10, 0L, active11, 0x4000L); case 76: case 108: - if ((active3 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(5, 233, 94); - else if ((active6 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(5, 407, 94); - else if ((active7 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 501, 94); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x4L, active2, 0x8000300000L, active3, 0L, active4, 0L, active5, 0x30000040010L, active6, 0x10000000000000L, active7, 0L, active8, 0x890000002L, active9, 0xe000000000400000L, active10, 0L, active11, 0x2000L); + if ((active3 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_0(5, 237, 96); + else if ((active6 & 0x20000000L) != 0L) + return jjStartNfaWithStates_0(5, 413, 96); + else if ((active7 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 510, 96); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x4L, active2, 0x80003000000L, active3, 0L, active4, 0L, active5, 0x600000800200L, active6, 0x400000000000000L, active7, 0L, active8, 0x112000000400L, active9, 0x80000000L, active10, 0x1c0L, active11, 0x800000L); case 77: case 109: - if ((active9 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(5, 593, 94); - else if ((active9 & 0x80000000L) != 0L) + if ((active9 & 0x4000000L) != 0L) + return jjStartNfaWithStates_0(5, 602, 96); + else if ((active9 & 0x10000000000L) != 0L) { - jjmatchedKind = 607; + jjmatchedKind = 616; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0x4L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000000000L, active9, 0x300002000L, active10, 0x4000L, active11, 0L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0x42L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x60000400008L, active10, 0x1000000L, active11, 0L); case 78: case 110: if ((active0 & 0x80L) != 0L) - return jjStartNfaWithStates_0(5, 7, 94); + return jjStartNfaWithStates_0(5, 7, 96); else if ((active1 & 0x800000L) != 0L) { jjmatchedKind = 87; jjmatchedPos = 5; } - else if ((active2 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(5, 171, 94); - else if ((active3 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(5, 227, 94); - else if ((active5 & 0x8000000000000000L) != 0L) + else if ((active2 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_0(5, 175, 96); + else if ((active3 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_0(5, 231, 96); + else if ((active6 & 0x10L) != 0L) { - jjmatchedKind = 383; + jjmatchedKind = 388; jjmatchedPos = 5; } - else if ((active7 & 0x200000L) != 0L) + else if ((active7 & 0x8000000L) != 0L) { - jjmatchedKind = 469; + jjmatchedKind = 475; jjmatchedPos = 5; } - else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 696, 94); - return jjMoveStringLiteralDfa6_0(active0, 0x4040000020000000L, active1, 0xffe0040007000000L, active2, 0x20050000000001L, active3, 0x1000L, active4, 0x400000001800L, active5, 0x880004000L, active6, 0x23c1000001L, active7, 0x43c0fc00000L, active8, 0x3fff000000001L, active9, 0x8000000000000L, active10, 0xa0000002000L, active11, 0x108000L); + else if ((active11 & 0x4L) != 0L) + return jjStartNfaWithStates_0(5, 706, 96); + return jjMoveStringLiteralDfa6_0(active0, 0x4040000020000000L, active1, 0xffc0080007000000L, active2, 0x200500000000003L, active3, 0x10000L, active4, 0x8000000018000L, active5, 0x11000080000L, active6, 0x8f040000020L, active7, 0x10f03f0000000L, active8, 0x7ffe00000000200L, active9, 0x1000000000000000L, active10, 0x28000000800000L, active11, 0x42000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_0(active0, 0x1800000000000000L, active1, 0L, active2, 0x4000008000L, active3, 0L, active4, 0x4000000c0000000L, active5, 0L, active6, 0x10000000000L, active7, 0x200108000000000L, active8, 0x1c000420000030L, active9, 0x6000000000000L, active10, 0x308000100000L, active11, 0x20000L); + return jjMoveStringLiteralDfa6_0(active0, 0x1800000000000000L, active1, 0L, active2, 0x40000080000L, active3, 0L, active4, 0x8000000c00000000L, active5, 0L, active6, 0x400000000000L, active7, 0x2c200000000000L, active8, 0x3800084000006004L, active9, 0xc00000000000000L, active10, 0xc2000040000000L, active11, 0x8000000L); case 80: case 112: - if ((active7 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(5, 481, 94); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000L, active11, 0x808L); + if ((active7 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_0(5, 487, 96); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400000L, active11, 0x202000L); case 81: case 113: - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x2L) != 0L) + if ((active2 & 0x4L) != 0L) { - jjmatchedKind = 129; + jjmatchedKind = 130; jjmatchedPos = 5; } - else if ((active3 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(5, 208, 94); - else if ((active5 & 0x40L) != 0L) - return jjStartNfaWithStates_0(5, 326, 94); - else if ((active5 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 369, 94); - else if ((active7 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(5, 493, 94); - else if ((active8 & 0x4L) != 0L) + else if ((active3 & 0x100000L) != 0L) + return jjStartNfaWithStates_0(5, 212, 96); + else if ((active5 & 0x800L) != 0L) + return jjStartNfaWithStates_0(5, 331, 96); + else if ((active5 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 374, 96); + else if ((active7 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 502, 96); + else if ((active8 & 0x800L) != 0L) { - jjmatchedKind = 514; + jjmatchedKind = 523; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_0(active0, 0x8000000800000000L, active1, 0x9f800000000L, active2, 0x800000000c80004L, active3, 0x8000000000000L, active4, 0x14000000000000L, active5, 0x10000000000020L, active6, 0x5800010000000L, active7, 0x40080L, active8, 0x1000008L, active9, 0x2006000000L, active10, 0L, active11, 0x200L); + return jjMoveStringLiteralDfa6_0(active0, 0x8000000800000000L, active1, 0x11f800000000L, active2, 0x800000000c800008L, active3, 0x80000000000000L, active4, 0x280000000000000L, active5, 0x200000000000400L, active6, 0x160000400000000L, active7, 0x1002000L, active8, 0x200001000L, active9, 0x400c00000000L, active10, 0L, active11, 0x80000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(5, 16, 94); - else if ((active2 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 190, 94); - else if ((active3 & 0x100L) != 0L) - return jjStartNfaWithStates_0(5, 200, 94); - else if ((active3 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 241, 94); - else if ((active5 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(5, 344, 94); - else if ((active5 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 374, 94); - else if ((active6 & 0x20L) != 0L) - return jjStartNfaWithStates_0(5, 389, 94); - else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(5, 677, 94); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x200000008000L, active2, 0L, active3, 0x10000000L, active4, 0x18200L, active5, 0x4003000L, active6, 0x8000400000000000L, active7, 0x2f00L, active8, 0xc000000000000000L, active9, 0x10000000ffL, active10, 0x800000000000L, active11, 0x6000000L); + return jjStartNfaWithStates_0(5, 16, 96); + else if ((active3 & 0x4L) != 0L) + return jjStartNfaWithStates_0(5, 194, 96); + else if ((active3 & 0x1000L) != 0L) + return jjStartNfaWithStates_0(5, 204, 96); + else if ((active3 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 245, 96); + else if ((active5 & 0x20000000L) != 0L) + return jjStartNfaWithStates_0(5, 349, 96); + else if ((active5 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 379, 96); + else if ((active6 & 0x800L) != 0L) + return jjStartNfaWithStates_0(5, 395, 96); + else if ((active10 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_0(5, 687, 96); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x400000008000L, active2, 0L, active3, 0x100000000L, active4, 0x2000182000L, active5, 0x80060000L, active6, 0x10000000000000L, active7, 0xbc020L, active8, 0L, active9, 0x20000001ff80L, active10, 0x200000000000000L, active11, 0x1800000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) - return jjStartNfaWithStates_0(5, 5, 94); + return jjStartNfaWithStates_0(5, 5, 96); else if ((active0 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(5, 43, 94); + return jjStartNfaWithStates_0(5, 43, 96); else if ((active1 & 0x8000000L) != 0L) { jjmatchedKind = 91; jjmatchedPos = 5; } - else if ((active3 & 0x4L) != 0L) + else if ((active3 & 0x40L) != 0L) { - jjmatchedKind = 194; + jjmatchedKind = 198; jjmatchedPos = 5; } - else if ((active3 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(5, 216, 94); - else if ((active3 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 254, 94); - else if ((active4 & 0x400L) != 0L) - return jjStartNfaWithStates_0(5, 266, 94); - else if ((active5 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 371, 94); + else if ((active3 & 0x10000000L) != 0L) + return jjStartNfaWithStates_0(5, 220, 96); + else if ((active4 & 0x4L) != 0L) + return jjStartNfaWithStates_0(5, 258, 96); + else if ((active4 & 0x4000L) != 0L) + return jjStartNfaWithStates_0(5, 270, 96); else if ((active5 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 376, 94); - else if ((active6 & 0x100L) != 0L) - return jjStartNfaWithStates_0(5, 392, 94); - else if ((active7 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(5, 468, 94); - else if ((active7 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 508, 94); - else if ((active9 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(5, 599, 94); - else if ((active10 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(5, 662, 94); - else if ((active10 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(5, 665, 94); - return jjMoveStringLiteralDfa6_0(active0, 0x2000010000000L, active1, 0xf03e0000L, active2, 0x20000000080L, active3, 0x8000000088L, active4, 0x300000000800000L, active5, 0L, active6, 0x800400000L, active7, 0x4000000000004000L, active8, 0L, active9, 0x1f80040080000L, active10, 0L, active11, 0x400000L); + return jjStartNfaWithStates_0(5, 376, 96); + else if ((active5 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_0(5, 381, 96); + else if ((active6 & 0x4000L) != 0L) + return jjStartNfaWithStates_0(5, 398, 96); + else if ((active7 & 0x4000000L) != 0L) + return jjStartNfaWithStates_0(5, 474, 96); + else if ((active8 & 0x20L) != 0L) + return jjStartNfaWithStates_0(5, 517, 96); + else if ((active9 & 0x100000000L) != 0L) + return jjStartNfaWithStates_0(5, 608, 96); + else if ((active10 & 0x100000000L) != 0L) + return jjStartNfaWithStates_0(5, 672, 96); + else if ((active10 & 0x800000000L) != 0L) + return jjStartNfaWithStates_0(5, 675, 96); + return jjMoveStringLiteralDfa6_0(active0, 0x2000010000000L, active1, 0xf03e0000L, active2, 0x200000000200L, active3, 0x80000000880L, active4, 0x6000000008000000L, active5, 0L, active6, 0x20010000000L, active7, 0x100000L, active8, 0x80L, active9, 0x3f0008010000000L, active10, 0L, active11, 0x100000000L); case 85: case 117: - return jjMoveStringLiteralDfa6_0(active0, 0x20000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000L, active8, 0x80000000000000L, active9, 0L, active10, 0x200000000000000L, active11, 0L); + return jjMoveStringLiteralDfa6_0(active0, 0x20000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0x8L); case 86: case 118: - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80200020000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x18000L, active10, 0x8000000000000L, active11, 0L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1004000200000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3000002L, active10, 0x2000000000000000L, active11, 0L); case 87: case 119: - if ((active4 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(5, 277, 94); - else if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(5, 694, 94); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x400000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000L, active11, 0L); + if ((active4 & 0x2000000L) != 0L) + return jjStartNfaWithStates_0(5, 281, 96); + else if ((active11 & 0x1L) != 0L) + return jjStartNfaWithStates_0(5, 704, 96); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x10000L, active3, 0x4000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L); case 88: case 120: - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x400000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(5, 44, 94); - else if ((active3 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(5, 223, 94); - else if ((active5 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(5, 342, 94); - else if ((active9 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(5, 605, 94); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(5, 44, 96); + else if ((active3 & 0x800000000L) != 0L) + return jjStartNfaWithStates_0(5, 227, 96); + else if ((active5 & 0x8000000L) != 0L) + return jjStartNfaWithStates_0(5, 347, 96); + else if ((active9 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_0(5, 614, 96); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000000000L); default : break; } @@ -7466,40 +7505,40 @@ private final int jjMoveStringLiteralDfa6_0(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active7 & 0x80L) != 0L) - return jjStartNfaWithStates_0(6, 455, 94); + if ((active7 & 0x2000L) != 0L) + return jjStartNfaWithStates_0(6, 461, 96); break; case 95: - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0x8L, active9, 0x300058000L, active10, 0L, active11, 0x4000L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1000L, active9, 0x6000b000000L, active10, 0L, active11, 0x1000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_0(active0, 0x40000000400000L, active1, 0xf800000000L, active2, 0x800000000400000L, active3, 0x1800000000001000L, active4, 0x80200020000L, active5, 0x80000000L, active6, 0L, active7, 0x80000004000L, active8, 0x700000040000000L, active9, 0xe001f0b000000000L, active10, 0x20000000000L, active11, 0x10000000L); + return jjMoveStringLiteralDfa7_0(active0, 0x40000000400000L, active1, 0xf800000000L, active2, 0x8000000004000000L, active3, 0x8000000000010000L, active4, 0x1004000200001L, active5, 0x1000000000L, active6, 0L, active7, 0x12000000100000L, active8, 0x8000000000L, active9, 0x3e160000000000eL, active10, 0x80000000001c0L, active11, 0x4000000000L); case 66: case 98: - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x400000000L, active3, 0L, active4, 0xc0000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x4000000000L, active3, 0L, active4, 0xc00000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000000000000L, active11, 0L); case 67: case 99: - if ((active2 & 0x2000000000000L) != 0L) + if ((active2 & 0x20000000000000L) != 0L) { - jjmatchedKind = 177; + jjmatchedKind = 181; jjmatchedPos = 6; } - else if ((active5 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 370, 94); - return jjMoveStringLiteralDfa7_0(active0, 0x800000L, active1, 0x8000L, active2, 0xc060000008000L, active3, 0x8800000000000L, active4, 0x800L, active5, 0x40000000L, active6, 0L, active7, 0x4000100080000L, active8, 0x200000001L, active9, 0x780000000000000L, active10, 0L, active11, 0L); + else if ((active5 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 375, 96); + return jjMoveStringLiteralDfa7_0(active0, 0x800000L, active1, 0x8000L, active2, 0xc0600000080000L, active3, 0x88000000000000L, active4, 0x2000008000L, active5, 0x800000000L, active6, 0L, active7, 0x800004002000000L, active8, 0x40000000200L, active9, 0L, active10, 0xfL, active11, 0L); case 68: case 100: - if ((active2 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(6, 153, 94); - else if ((active2 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(6, 160, 94); - else if ((active3 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(6, 237, 94); - else if ((active4 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 319, 94); - else if ((active10 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(6, 661, 94); - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x6000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0x800000002000L, active11, 0L); + if ((active2 & 0x20000000L) != 0L) + return jjStartNfaWithStates_0(6, 157, 96); + else if ((active2 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_0(6, 164, 96); + else if ((active3 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 241, 96); + else if ((active5 & 0x10L) != 0L) + return jjStartNfaWithStates_0(6, 324, 96); + else if ((active10 & 0x80000000L) != 0L) + return jjStartNfaWithStates_0(6, 671, 96); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x6000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000L, active7, 0L, active8, 0L, active9, 0x1000000000L, active10, 0x200000000800000L, active11, 0L); case 69: case 101: if ((active0 & 0x80000000000000L) != 0L) @@ -7508,40 +7547,40 @@ else if ((active10 & 0x200000L) != 0L) jjmatchedPos = 6; } else if ((active1 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(6, 81, 94); - else if ((active2 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(6, 147, 94); - else if ((active3 & 0x10L) != 0L) - return jjStartNfaWithStates_0(6, 196, 94); - else if ((active3 & 0x80L) != 0L) - return jjStartNfaWithStates_0(6, 199, 94); - else if ((active4 & 0x1L) != 0L) - return jjStartNfaWithStates_0(6, 256, 94); - else if ((active6 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(6, 419, 94); - else if ((active6 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(6, 431, 94); - else if ((active7 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(6, 461, 94); - else if ((active7 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(6, 463, 94); - else if ((active7 & 0x400000000L) != 0L) + return jjStartNfaWithStates_0(6, 81, 96); + else if ((active2 & 0x800000L) != 0L) + return jjStartNfaWithStates_0(6, 151, 96); + else if ((active3 & 0x100L) != 0L) + return jjStartNfaWithStates_0(6, 200, 96); + else if ((active3 & 0x800L) != 0L) + return jjStartNfaWithStates_0(6, 203, 96); + else if ((active4 & 0x10L) != 0L) + return jjStartNfaWithStates_0(6, 260, 96); + else if ((active6 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_0(6, 425, 96); + else if ((active6 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 437, 96); + else if ((active7 & 0x80000L) != 0L) + return jjStartNfaWithStates_0(6, 467, 96); + else if ((active7 & 0x200000L) != 0L) + return jjStartNfaWithStates_0(6, 469, 96); + else if ((active7 & 0x10000000000L) != 0L) { - jjmatchedKind = 482; + jjmatchedKind = 488; jjmatchedPos = 6; } - else if ((active10 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(6, 652, 94); - else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(6, 725, 94); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(6, 726, 94); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(6, 731, 94); - return jjMoveStringLiteralDfa7_0(active0, 0x100000000000000L, active1, 0x4L, active2, 0x400000000800000L, active3, 0x2000000010000000L, active4, 0x10000000018004L, active5, 0x10000004103720L, active6, 0x10100000000000L, active7, 0x3803c00000L, active8, 0x400000L, active9, 0x2000L, active10, 0x80000f0000000L, active11, 0x2200L); + else if ((active10 & 0x400000L) != 0L) + return jjStartNfaWithStates_0(6, 662, 96); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_0(6, 735, 96); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_0(6, 736, 96); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_0(6, 741, 96); + return jjMoveStringLiteralDfa7_0(active0, 0x100000000000000L, active1, 0x4L, active2, 0x4000000008030000L, active3, 0x100000000L, active4, 0x200000000180042L, active5, 0x20000008206e400L, active6, 0x404000000000000L, active7, 0xe00f0000000L, active8, 0x80000000L, active9, 0x400000L, active10, 0x200003c000000000L, active11, 0x880000L); case 70: case 102: - return jjMoveStringLiteralDfa7_0(active0, 0x8000000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_0(active0, 0x8000000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x800000000000000L) != 0L) @@ -7550,203 +7589,208 @@ else if ((active11 & 0x8000000L) != 0L) jjmatchedPos = 6; } else if ((active0 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 62, 94); - else if ((active4 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(6, 302, 94); - else if ((active5 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(6, 355, 94); - else if ((active6 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(6, 408, 94); - else if ((active6 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(6, 421, 94); - else if ((active7 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(6, 490, 94); - else if ((active10 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(6, 683, 94); - else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(6, 719, 94); - return jjMoveStringLiteralDfa7_0(active0, 0x1000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0x80L); + return jjStartNfaWithStates_0(6, 62, 96); + else if ((active4 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 307, 96); + else if ((active5 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_0(6, 360, 96); + else if ((active6 & 0x40000000L) != 0L) + return jjStartNfaWithStates_0(6, 414, 96); + else if ((active6 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_0(6, 427, 96); + else if ((active7 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 496, 96); + else if ((active10 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 693, 96); + else if ((active11 & 0x2000000L) != 0L) + return jjStartNfaWithStates_0(6, 729, 96); + return jjMoveStringLiteralDfa7_0(active0, 0x1000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0x20000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 49, 94); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(6, 730, 94); - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(6, 49, 96); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_0(6, 740, 96); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_0(active0, 0x810000000L, active1, 0x100000e03c0000L, active2, 0x2000001000L, active3, 0x400028L, active4, 0x300000000800202L, active5, 0x30000000000L, active6, 0x8000600000400000L, active7, 0x4000100004000000L, active8, 0xc0000000001c0002L, active9, 0x400060000ffL, active10, 0xc000L, active11, 0x10020L); + return jjMoveStringLiteralDfa7_0(active0, 0x810000000L, active1, 0x200000e03c0000L, active2, 0x20000000100L, active3, 0x4000280L, active4, 0x6000000008002020L, active5, 0x600000000000L, active6, 0x18000010000000L, active7, 0x20000100000020L, active8, 0x38000480L, active9, 0x8000c0001ff80L, active10, 0x3000000L, active11, 0x4008000L); case 76: case 108: - if ((active2 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(6, 146, 94); - else if ((active3 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(6, 229, 94); - else if ((active4 & 0x10L) != 0L) + if ((active2 & 0x400000L) != 0L) + return jjStartNfaWithStates_0(6, 150, 96); + else if ((active3 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_0(6, 233, 96); + else if ((active4 & 0x100L) != 0L) { - jjmatchedKind = 260; + jjmatchedKind = 264; jjmatchedPos = 6; } - else if ((active4 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(6, 300, 94); - else if ((active5 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(6, 352, 94); - else if ((active6 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(6, 405, 94); - return jjMoveStringLiteralDfa7_0(active0, 0x20000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20L, active5, 0x20480000000000L, active6, 0x10L, active7, 0x100L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active4 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 305, 96); + else if ((active5 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_0(6, 357, 96); + else if ((active6 & 0x200L) != 0L) + { + jjmatchedKind = 393; + jjmatchedPos = 6; + } + else if ((active6 & 0x8000000L) != 0L) + return jjStartNfaWithStates_0(6, 411, 96); + return jjMoveStringLiteralDfa7_0(active0, 0x20000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200L, active5, 0x409000000000000L, active6, 0x400L, active7, 0x4000L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa7_0(active0, 0x21000000L, active1, 0L, active2, 0xf00L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x10000000000L, active8, 0x1880000000000000L, active9, 0L, active10, 0x10000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_0(active0, 0x21000000L, active1, 0L, active2, 0x7c00L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0x31L, active10, 0x4000000000000L, active11, 0L); case 78: case 110: if ((active0 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(6, 42, 94); + return jjStartNfaWithStates_0(6, 42, 96); else if ((active0 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(6, 47, 94); - else if ((active3 & 0x400L) != 0L) - return jjStartNfaWithStates_0(6, 202, 94); - else if ((active3 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(6, 217, 94); - else if ((active3 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(6, 218, 94); - else if ((active6 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(6, 412, 94); - else if ((active6 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(6, 424, 94); - else if ((active7 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 505, 94); - else if ((active8 & 0x10L) != 0L) + return jjStartNfaWithStates_0(6, 47, 96); + else if ((active3 & 0x4000L) != 0L) + return jjStartNfaWithStates_0(6, 206, 96); + else if ((active3 & 0x20000000L) != 0L) + return jjStartNfaWithStates_0(6, 221, 96); + else if ((active3 & 0x40000000L) != 0L) + return jjStartNfaWithStates_0(6, 222, 96); + else if ((active6 & 0x400000000L) != 0L) + return jjStartNfaWithStates_0(6, 418, 96); + else if ((active6 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_0(6, 430, 96); + else if ((active8 & 0x4L) != 0L) + return jjStartNfaWithStates_0(6, 514, 96); + else if ((active8 & 0x2000L) != 0L) { - jjmatchedKind = 516; + jjmatchedKind = 525; jjmatchedPos = 6; } - else if ((active10 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(6, 659, 94); - else if ((active10 & 0x100000000000L) != 0L) + else if ((active10 & 0x20000000L) != 0L) + return jjStartNfaWithStates_0(6, 669, 96); + else if ((active10 & 0x40000000000000L) != 0L) { - jjmatchedKind = 684; + jjmatchedKind = 694; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x20000000000L, active2, 0x100010000000000L, active3, 0x1000000000000L, active4, 0L, active5, 0x4002L, active6, 0x8L, active7, 0x8000000000046L, active8, 0x201c000005004020L, active9, 0x46000800000000L, active10, 0x200000000000L, active11, 0x100L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x60000000000L, active2, 0x1000100000000000L, active3, 0x10000000000000L, active4, 0L, active5, 0x80040L, active6, 0x100L, active7, 0x1000000000001180L, active8, 0x3800000a00804000L, active9, 0x8c00100000000040L, active10, 0x80000000000000L, active11, 0x40000L); case 79: case 111: - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x1000L, active2, 0x8000000000L, active3, 0x400000000L, active4, 0L, active5, 0L, active6, 0x60000000000L, active7, 0x20L, active8, 0x8b0000000L, active9, 0x1800000000000000L, active10, 0x4000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x1000L, active2, 0x80000000000L, active3, 0x4000000000L, active4, 0L, active5, 0L, active6, 0x1800000000000L, active7, 0x800L, active8, 0x116000000000L, active9, 0L, active10, 0x1000000000030L, active11, 0L); case 80: case 112: - if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(6, 679, 94); - return jjMoveStringLiteralDfa7_0(active0, 0x10000000000L, active1, 0xa00000000000L, active2, 0x1800000000L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0x400L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active10 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 689, 96); + return jjMoveStringLiteralDfa7_0(active0, 0x10000000000L, active1, 0x1400000000000L, active2, 0x18000000000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x10000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(6, 154, 94); - else if ((active4 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(6, 270, 94); - else if ((active4 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(6, 275, 94); - else if ((active4 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(6, 278, 94); - else if ((active4 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 314, 94); - else if ((active6 & 0x100000000000000L) != 0L) + if ((active2 & 0x40000000L) != 0L) + return jjStartNfaWithStates_0(6, 158, 96); + else if ((active4 & 0x40000L) != 0L) + return jjStartNfaWithStates_0(6, 274, 96); + else if ((active4 & 0x800000L) != 0L) + return jjStartNfaWithStates_0(6, 279, 96); + else if ((active4 & 0x4000000L) != 0L) + return jjStartNfaWithStates_0(6, 282, 96); + else if ((active4 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 319, 96); + else if ((active6 & 0x4000000000000000L) != 0L) { - jjmatchedKind = 440; + jjmatchedKind = 446; jjmatchedPos = 6; } - else if ((active8 & 0x400L) != 0L) - return jjStartNfaWithStates_0(6, 522, 94); - else if ((active10 & 0x2L) != 0L) + else if ((active8 & 0x80000L) != 0L) + return jjStartNfaWithStates_0(6, 531, 96); + else if ((active10 & 0x400L) != 0L) { - jjmatchedKind = 641; + jjmatchedKind = 650; jjmatchedPos = 6; } - else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(6, 682, 94); - else if ((active10 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 699, 94); - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x1000000020000080L, active3, 0x8020000000L, active4, 0x18000000L, active5, 0x4L, active6, 0x200000002000000L, active7, 0L, active8, 0L, active9, 0x80040000300L, active10, 0x5cL, active11, 0x20000L); + else if ((active10 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 692, 96); + else if ((active11 & 0x20L) != 0L) + return jjStartNfaWithStates_0(6, 709, 96); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x200000200L, active3, 0x80200000001L, active4, 0x180000000L, active5, 0x80L, active6, 0x8000000080000000L, active7, 0x8000000000000L, active8, 0L, active9, 0x10008000060000L, active10, 0xb800L, active11, 0x8000000L); case 83: case 115: - if ((active5 & 0x1L) != 0L) - return jjStartNfaWithStates_0(6, 320, 94); - else if ((active5 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(6, 337, 94); - else if ((active6 & 0x1L) != 0L) - return jjStartNfaWithStates_0(6, 384, 94); - else if ((active7 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(6, 475, 94); - else if ((active7 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 504, 94); - else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_0(6, 707, 94); - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x200000L, active10, 0L, active11, 0x40L); + if ((active5 & 0x20L) != 0L) + return jjStartNfaWithStates_0(6, 325, 96); + else if ((active5 & 0x400000L) != 0L) + return jjStartNfaWithStates_0(6, 342, 96); + else if ((active6 & 0x20L) != 0L) + return jjStartNfaWithStates_0(6, 389, 96); + else if ((active7 & 0x200000000L) != 0L) + return jjStartNfaWithStates_0(6, 481, 96); + else if ((active8 & 0x2L) != 0L) + return jjStartNfaWithStates_0(6, 513, 96); + else if ((active11 & 0x2000L) != 0L) + return jjStartNfaWithStates_0(6, 717, 96); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x2000000000000L, active2, 0x40000000040L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000000L, active8, 0L, active9, 0x40000000L, active10, 0x40000L, active11, 0x10000L); case 84: case 116: if ((active1 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(6, 86, 94); + return jjStartNfaWithStates_0(6, 86, 96); else if ((active1 & 0x100000000L) != 0L) { jjmatchedKind = 96; jjmatchedPos = 6; } - else if ((active1 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(6, 107, 94); - else if ((active1 & 0x20000000000000L) != 0L) + else if ((active1 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_0(6, 108, 96); + else if ((active1 & 0x40000000000000L) != 0L) { - jjmatchedKind = 117; + jjmatchedKind = 118; jjmatchedPos = 6; } - else if ((active2 & 0x100000L) != 0L) + else if ((active2 & 0x1000000L) != 0L) { - jjmatchedKind = 148; + jjmatchedKind = 152; jjmatchedPos = 6; } - else if ((active2 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 181, 94); - else if ((active3 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(6, 205, 94); - else if ((active6 & 0x40000000L) != 0L) + else if ((active2 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 185, 96); + else if ((active3 & 0x20000L) != 0L) + return jjStartNfaWithStates_0(6, 209, 96); + else if ((active6 & 0x1000000000L) != 0L) { - jjmatchedKind = 414; + jjmatchedKind = 420; jjmatchedPos = 6; } - else if ((active7 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(6, 465, 94); - else if ((active7 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(6, 466, 94); - else if ((active8 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(6, 539, 94); - else if ((active9 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 627, 94); - else if ((active10 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(6, 660, 94); - else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 697, 94); - return jjMoveStringLiteralDfa7_0(active0, 0x48002040L, active1, 0xffc00006100003f8L, active2, 0x200001L, active3, 0x100004000000000L, active4, 0x1008L, active5, 0L, active6, 0x3801fc000L, active7, 0x8400000000000000L, active8, 0x3fff100800000L, active9, 0x1400000L, active10, 0x100L, active11, 0x2000c14L); + else if ((active7 & 0x800000L) != 0L) + return jjStartNfaWithStates_0(6, 471, 96); + else if ((active7 & 0x1000000L) != 0L) + return jjStartNfaWithStates_0(6, 472, 96); + else if ((active8 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_0(6, 548, 96); + else if ((active9 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 636, 96); + else if ((active10 & 0x40000000L) != 0L) + return jjStartNfaWithStates_0(6, 670, 96); + else if ((active11 & 0x8L) != 0L) + return jjStartNfaWithStates_0(6, 707, 96); + return jjMoveStringLiteralDfa7_0(active0, 0x48002040L, active1, 0xff800006100003f8L, active2, 0x2000003L, active3, 0x1000040000000000L, active4, 0x10080L, active5, 0L, active6, 0xe007f00000L, active7, 0L, active8, 0x7ffe20100000108L, active9, 0x280000000L, active10, 0x20000L, active11, 0x800305000L); case 85: case 117: - return jjMoveStringLiteralDfa7_0(active0, 0x600000000L, active1, 0x50000000000L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0x40010L, active6, 0x20000000000000L, active7, 0x8000000000L, active8, 0x400000000L, active9, 0x80000L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa7_0(active0, 0x600000000L, active1, 0x90000000000L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0x800200L, active6, 0x800000000000000L, active7, 0x200000000000L, active8, 0x80000000000L, active9, 0x10000000L, active10, 0L, active11, 0x40000000L); case 86: case 118: - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0x1018L, active8, 0L, active9, 0x20000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0x40000000000000L, active7, 0x40600L, active8, 0L, active9, 0x4000000000000000L, active10, 0L, active11, 0L); case 88: case 120: - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0x600L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0x18000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 63, 94); - else if ((active4 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 306, 94); - else if ((active6 & 0x800L) != 0L) - return jjStartNfaWithStates_0(6, 395, 94); - else if ((active6 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 434, 94); - else if ((active6 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_0(6, 439, 94); - else if ((active10 & 0x200L) != 0L) - return jjStartNfaWithStates_0(6, 649, 94); - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(6, 63, 96); + else if ((active4 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 311, 96); + else if ((active6 & 0x20000L) != 0L) + return jjStartNfaWithStates_0(6, 401, 96); + else if ((active6 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 440, 96); + else if ((active6 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_0(6, 445, 96); + else if ((active10 & 0x80000L) != 0L) + return jjStartNfaWithStates_0(6, 659, 96); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; } @@ -7764,226 +7808,231 @@ private final int jjMoveStringLiteralDfa7_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa8_0(active0, 0x1000000000000000L, active1, 0xffc0000006000000L, active2, 0xc000000000001L, active3, 0L, active4, 0L, active5, 0x700L, active6, 0x200000000L, active7, 0x3800000000L, active8, 0xc000000000000020L, active9, 0xffL, active10, 0x1cL, active11, 0L); + return jjMoveStringLiteralDfa8_0(active0, 0x1000000000000000L, active1, 0xff80000006000000L, active2, 0xc0000000000003L, active3, 0L, active4, 0L, active5, 0xe000L, active6, 0x8000000000L, active7, 0xe0000000000L, active8, 0x4000L, active9, 0x1ff80L, active10, 0x3800L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_0(active0, 0x10001000000L, active1, 0x1000000000000L, active2, 0x20008000L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000L, active8, 0x20000804000000L, active9, 0x800040000L, active10, 0x800000000000L, active11, 0x100L); + return jjMoveStringLiteralDfa8_0(active0, 0x10001000000L, active1, 0x2000000000000L, active2, 0x2000a0000L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1800000000000000L, active8, 0x4000100800000000L, active9, 0x100008000000L, active10, 0x200000000000000L, active11, 0x40000L); case 66: case 98: - if ((active8 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(7, 540, 94); - else if ((active8 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(7, 543, 94); - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0x400000L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x10000004000L, active8, 0x400000000L, active9, 0x100L, active10, 0L, active11, 0L); + if ((active8 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_0(7, 549, 96); + else if ((active8 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_0(7, 552, 96); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0x4000000L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0L, active7, 0x400000100000L, active8, 0x80000000000L, active9, 0x20000L, active10, 0L, active11, 0L); case 67: case 99: - if ((active2 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 186, 99); - else if ((active8 & 0x40000L) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 190, 99); + else if ((active8 & 0x8000000L) != 0L) { - jjmatchedKind = 530; + jjmatchedKind = 539; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x10000000000L, active2, 0L, active3, 0x10000000L, active4, 0x18000L, active5, 0x3000L, active6, 0L, active7, 0x10000000000006L, active8, 0x180000L, active9, 0x200L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x10000000000L, active2, 0L, active3, 0x100000000L, active4, 0x180000L, active5, 0x60000L, active6, 0L, active7, 0x2000000000000180L, active8, 0x30000000L, active9, 0x40000L, active10, 0L, active11, 0L); case 68: case 100: if ((active0 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 56, 94); - else if ((active2 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(7, 151, 94); - else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(7, 721, 94); - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3c00000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(7, 56, 96); + else if ((active2 & 0x8000000L) != 0L) + return jjStartNfaWithStates_0(7, 155, 96); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_0(7, 731, 96); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000f0000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x40L) != 0L) - return jjStartNfaWithStates_0(7, 6, 94); + return jjStartNfaWithStates_0(7, 6, 96); else if ((active0 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(7, 13, 94); + return jjStartNfaWithStates_0(7, 13, 96); else if ((active1 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(7, 79, 94); - else if ((active1 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(7, 106, 94); - else if ((active2 & 0x20L) != 0L) - return jjStartNfaWithStates_0(7, 133, 94); - else if ((active2 & 0x100L) != 0L) - { - jjmatchedKind = 136; + return jjStartNfaWithStates_0(7, 79, 96); + else if ((active1 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_0(7, 107, 96); + else if ((active2 & 0x40L) != 0L) + return jjStartNfaWithStates_0(7, 134, 96); + else if ((active2 & 0x400L) != 0L) + { + jjmatchedKind = 138; jjmatchedPos = 7; } - else if ((active2 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(7, 162, 94); - else if ((active4 & 0x800L) != 0L) - return jjStartNfaWithStates_0(7, 267, 94); - else if ((active4 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(7, 293, 94); - else if ((active4 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(7, 296, 94); - else if ((active5 & 0x10L) != 0L) - return jjStartNfaWithStates_0(7, 324, 94); - else if ((active5 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(7, 338, 94); - else if ((active5 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(7, 366, 94); - else if ((active6 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 432, 94); - else if ((active7 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(7, 460, 94); - else if ((active8 & 0x1L) != 0L) - return jjStartNfaWithStates_0(7, 512, 94); - else if ((active8 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(7, 535, 94); + else if ((active2 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_0(7, 166, 96); + else if ((active4 & 0x8000L) != 0L) + return jjStartNfaWithStates_0(7, 271, 96); + else if ((active4 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(7, 298, 96); + else if ((active4 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_0(7, 301, 96); + else if ((active5 & 0x200L) != 0L) + return jjStartNfaWithStates_0(7, 329, 96); + else if ((active5 & 0x800000L) != 0L) + return jjStartNfaWithStates_0(7, 343, 96); + else if ((active5 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 371, 96); + else if ((active6 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 438, 96); + else if ((active7 & 0x40000L) != 0L) + return jjStartNfaWithStates_0(7, 466, 96); + else if ((active8 & 0x200L) != 0L) + return jjStartNfaWithStates_0(7, 521, 96); else if ((active8 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(7, 544, 94); - else if ((active8 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 544, 96); + else if ((active8 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_0(7, 553, 96); + else if ((active9 & 0x10L) != 0L) { - jjmatchedKind = 571; + jjmatchedKind = 580; jjmatchedPos = 7; } - else if ((active10 & 0x100L) != 0L) - return jjStartNfaWithStates_0(7, 648, 94); - else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_0(7, 706, 94); - return jjMoveStringLiteralDfa8_0(active0, 0x20000000L, active1, 0x100003f8L, active2, 0x10000000e00L, active3, 0x4000000000L, active4, 0x100000000L, active5, 0x20000000000004L, active6, 0x1fc000L, active7, 0L, active8, 0x1083fff000000000L, active9, 0x26000000000000L, active10, 0x2000L, active11, 0x800L); + else if ((active10 & 0x20000L) != 0L) + return jjStartNfaWithStates_0(7, 657, 96); + else if ((active11 & 0x1000L) != 0L) + return jjStartNfaWithStates_0(7, 716, 96); + return jjMoveStringLiteralDfa8_0(active0, 0x20000000L, active1, 0x100003f8L, active2, 0x100000017800L, active3, 0x40000000000L, active4, 0x1000000000L, active5, 0x400000000000080L, active6, 0x7f00000L, active7, 0L, active8, 0x7ffe00000000000L, active9, 0x4c00000000000021L, active10, 0x800000L, active11, 0x200000L); case 70: case 102: - if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(7, 678, 94); - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0x1000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000000L, active10, 0xf0000000L, active11, 0L); + if ((active10 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 688, 96); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0x100L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0L, active9, 0x8000000000000L, active10, 0x3c000000000L, active11, 0L); case 71: case 103: - if ((active2 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 184, 94); - else if ((active3 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 240, 94); - else if ((active6 & 0x8L) != 0L) - return jjStartNfaWithStates_0(7, 387, 94); - else if ((active9 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 630, 94); - return jjMoveStringLiteralDfa8_0(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000000000L, active5, 0L, active6, 0x10000000000000L, active7, 0x18L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0x200L); + if ((active2 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 188, 96); + else if ((active3 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 244, 96); + else if ((active6 & 0x100L) != 0L) + return jjStartNfaWithStates_0(7, 392, 96); + else if ((active9 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 639, 96); + return jjMoveStringLiteralDfa8_0(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0x400000000000000L, active7, 0x600L, active8, 0x3800000000000000L, active9, 0L, active10, 0L, active11, 0x80000L); case 72: case 104: - if ((active2 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(7, 169, 94); - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_0(7, 173, 96); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x80000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_0(active0, 0x8000000L, active1, 0xfe00000800L, active2, 0L, active3, 0L, active4, 0x20001000L, active5, 0x4000L, active6, 0x180001010L, active7, 0L, active8, 0x203000000L, active9, 0x40400000L, active10, 0x200000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa8_0(active0, 0x8000000L, active1, 0xfe00000800L, active2, 0L, active3, 0L, active4, 0x200010000L, active5, 0x80000L, active6, 0x6000040400L, active7, 0L, active8, 0x40600000000L, active9, 0x8080000000L, active10, 0x80000000000000L, active11, 0x800000000L); case 74: case 106: - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0xc0000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0xc00000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 75: case 107: - if ((active7 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(7, 480, 94); + if ((active7 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_0(7, 486, 96); break; case 76: case 108: - if ((active3 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(7, 204, 94); - else if ((active4 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(7, 273, 94); - else if ((active5 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(7, 351, 94); - else if ((active8 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 569, 94); - else if ((active11 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(7, 717, 94); - return jjMoveStringLiteralDfa8_0(active0, 0x40020000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80200000020L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000020000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active3 & 0x10000L) != 0L) + return jjStartNfaWithStates_0(7, 208, 96); + else if ((active4 & 0x200000L) != 0L) + return jjStartNfaWithStates_0(7, 277, 96); + else if ((active5 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_0(7, 356, 96); + else if ((active9 & 0x4L) != 0L) + return jjStartNfaWithStates_0(7, 578, 96); + else if ((active11 & 0x800000L) != 0L) + return jjStartNfaWithStates_0(7, 727, 96); + return jjMoveStringLiteralDfa8_0(active0, 0x40020000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1004000000200L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000L, active9, 0x8L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0L, active4, 0x300000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0L, active4, 0x6000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3e0200000000000L, active10, 0L, active11, 0L); case 78: case 110: - if ((active3 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(7, 226, 94); - else if ((active6 & 0x20000000000L) != 0L) + if ((active3 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_0(7, 230, 96); + else if ((active6 & 0x800000000000L) != 0L) { - jjmatchedKind = 425; + jjmatchedKind = 431; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x1000004L, active2, 0x2000000004L, active3, 0x2000000000400020L, active4, 0x6L, active5, 0x10000000000000L, active6, 0x240000000000L, active7, 0x1108004000000L, active8, 0x8L, active9, 0x6002000L, active10, 0L, active11, 0x10010000L); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x1000004L, active2, 0x20000000008L, active3, 0x4000200L, active4, 0x62L, active5, 0x200000000000000L, active6, 0x9000000000000L, active7, 0x220200100000000L, active8, 0x1000L, active9, 0xc00400000L, active10, 0L, active11, 0x4004000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_0(active0, 0x10800000L, active1, 0xa000e03c0000L, active2, 0L, active3, 0x800020000008L, active4, 0x800008L, active5, 0x40000000L, active6, 0x400002400000L, active7, 0x8000000000000100L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa8_0(active0, 0x10800000L, active1, 0x14000e03c0000L, active2, 0L, active3, 0x8000200000080L, active4, 0x2008000080L, active5, 0x800000000L, active6, 0x10000090000000L, active7, 0x4000L, active8, 0x8000000000000100L, active9, 0L, active10, 0L, active11, 0x40000000L); case 80: case 112: - if ((active10 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(7, 680, 94); - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0x8000L, active10, 0L, active11, 0L); + if ((active10 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 690, 96); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0x1000000L, active10, 0L, active11, 0L); case 82: case 114: - if ((active8 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(7, 542, 94); - else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 691, 94); - return jjMoveStringLiteralDfa8_0(active0, 0x8040000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0x18000000L, active5, 0L, active6, 0x20000000000000L, active7, 0L, active8, 0x100000000000000L, active9, 0x1800002000080000L, active10, 0x20000000040L, active11, 0x80L); + if ((active8 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_0(7, 551, 96); + else if ((active10 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 701, 96); + return jjMoveStringLiteralDfa8_0(active0, 0x8040000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0x180000000L, active5, 0L, active6, 0x800000000000000L, active7, 0L, active8, 0L, active9, 0x400010000002L, active10, 0x8000000008030L, active11, 0x20000L); case 83: case 115: if ((active1 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(7, 105, 94); - else if ((active2 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(7, 149, 94); - else if ((active5 & 0x20L) != 0L) - return jjStartNfaWithStates_0(7, 325, 94); - else if ((active5 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(7, 340, 94); - else if ((active6 & 0x400L) != 0L) - return jjStartNfaWithStates_0(7, 394, 94); - else if ((active6 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(7, 428, 94); - else if ((active6 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 441, 94); - else if ((active9 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(7, 603, 94); - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x10000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x210000L, active10, 0L, active11, 0x4000L); + { + jjmatchedKind = 105; + jjmatchedPos = 7; + } + else if ((active2 & 0x2000000L) != 0L) + return jjStartNfaWithStates_0(7, 153, 96); + else if ((active5 & 0x400L) != 0L) + return jjStartNfaWithStates_0(7, 330, 96); + else if ((active5 & 0x2000000L) != 0L) + return jjStartNfaWithStates_0(7, 345, 96); + else if ((active6 & 0x10000L) != 0L) + return jjStartNfaWithStates_0(7, 400, 96); + else if ((active6 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 434, 96); + else if ((active6 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 447, 96); + else if ((active9 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_0(7, 612, 96); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x20040000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x42000000L, active10, 0L, active11, 0x1000000L); case 84: case 116: - if ((active2 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(7, 170, 94); - else if ((active5 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(7, 346, 94); - else if ((active7 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(7, 467, 94); - else if ((active8 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(7, 526, 94); - return jjMoveStringLiteralDfa8_0(active0, 0x600000000L, active1, 0L, active2, 0x1000005800000000L, active3, 0x1800000000000000L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0xe780000100000000L, active10, 0xc000L, active11, 0x20L); + if ((active2 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_0(7, 174, 96); + else if ((active5 & 0x80000000L) != 0L) + return jjStartNfaWithStates_0(7, 351, 96); + else if ((active7 & 0x2000000L) != 0L) + return jjStartNfaWithStates_0(7, 473, 96); + else if ((active8 & 0x800000L) != 0L) + return jjStartNfaWithStates_0(7, 535, 96); + else if ((active10 & 0x40000L) != 0L) + return jjStartNfaWithStates_0(7, 658, 96); + return jjMoveStringLiteralDfa8_0(active0, 0x600000000L, active1, 0L, active2, 0x58000000000L, active3, 0x8000000000000001L, active4, 0x2001L, active5, 0L, active6, 0L, active7, 0x1000L, active8, 0L, active9, 0x20000000000L, active10, 0x30001cfL, active11, 0x8000L); case 85: case 117: - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0x80000000002L, active6, 0L, active7, 0x20L, active8, 0L, active9, 0x80201000000L, active10, 0x20000000000000L, active11, 0L); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0x1000000000040L, active6, 0L, active7, 0x800L, active8, 0L, active9, 0x10040200000000L, active10, 0x8000000000000000L, active11, 0L); case 86: case 118: - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000000L, active7, 0x4000000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20L, active8, 0x80L, active9, 0L, active10, 0L, active11, 0L); case 87: case 119: - if ((active2 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(7, 167, 94); + if ((active2 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_0(7, 171, 96); break; case 88: case 120: - if ((active7 & 0x200L) != 0L) - return jjStartNfaWithStates_0(7, 457, 94); + if ((active7 & 0x8000L) != 0L) + return jjStartNfaWithStates_0(7, 463, 96); break; case 89: case 121: - if ((active3 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(7, 231, 94); - else if ((active3 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 248, 94); - else if ((active7 & 0x400L) != 0L) - return jjStartNfaWithStates_0(7, 458, 94); - else if ((active7 & 0x800L) != 0L) - return jjStartNfaWithStates_0(7, 459, 94); - else if ((active7 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(7, 491, 94); - else if ((active7 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(7, 506, 94); - else if ((active9 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(7, 615, 94); - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000000000L, active9, 0L, active10, 0L, active11, 0x450L); + if ((active3 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_0(7, 235, 96); + else if ((active3 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 252, 96); + else if ((active7 & 0x10000L) != 0L) + return jjStartNfaWithStates_0(7, 464, 96); + else if ((active7 & 0x20000L) != 0L) + return jjStartNfaWithStates_0(7, 465, 96); + else if ((active7 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 500, 96); + else if ((active8 & 0x8L) != 0L) + return jjStartNfaWithStates_0(7, 515, 96); + else if ((active9 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_0(7, 624, 96); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40L, active10, 0L, active11, 0x114000L); case 90: case 122: - return jjMoveStringLiteralDfa8_0(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x30000000000L, active6, 0L, active7, 0L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_0(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x600000000000L, active6, 0L, active7, 0L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); default : break; } @@ -8001,31 +8050,31 @@ private final int jjMoveStringLiteralDfa8_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0xe00L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000000000L, active7, 0x3c00000L, active8, 0x80000L, active9, 0x6000000200000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x40000000000L, active2, 0x7800L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0xf0000000L, active8, 0x10000000L, active9, 0xc00000040000000L, active10, 0L, active11, 0x4000L); case 65: case 97: - return jjMoveStringLiteralDfa9_0(active0, 0x8800000000L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0x18001000L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0xaL, active9, 0x10000L, active10, 0x40L, active11, 0L); + return jjMoveStringLiteralDfa9_0(active0, 0x8800000000L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0x180010000L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1400L, active9, 0x2000000L, active10, 0x8000L, active11, 0L); case 66: case 98: - if ((active8 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 566, 94); + if ((active8 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 575, 96); break; case 67: case 99: - if ((active9 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(8, 606, 94); - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x40000000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x10000000000004L, active6, 0L, active7, 0x800000000L, active8, 0x100000000000000L, active9, 0L, active10, 0x20000000000004L, active11, 0x2000000L); + if ((active9 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_0(8, 615, 96); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x80000000000000L, active2, 0x100000000000L, active3, 0L, active4, 0L, active5, 0x200000000000080L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0x2L, active10, 0x8000000000000800L, active11, 0x800000000L); case 68: case 100: if ((active1 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(8, 92, 94); - else if ((active3 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(8, 230, 94); - else if ((active10 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(8, 653, 94); - else if ((active11 & 0x800L) != 0L) - return jjStartNfaWithStates_0(8, 715, 94); - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x180000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(8, 92, 96); + else if ((active3 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(8, 234, 96); + else if ((active10 & 0x800000L) != 0L) + return jjStartNfaWithStates_0(8, 663, 96); + else if ((active11 & 0x200000L) != 0L) + return jjStartNfaWithStates_0(8, 725, 96); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x300000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x200000000L) != 0L) @@ -8033,91 +8082,96 @@ else if ((active11 & 0x800L) != 0L) jjmatchedKind = 33; jjmatchedPos = 8; } - else if ((active2 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 187, 94); - else if ((active3 & 0x800000000000000L) != 0L) + else if ((active2 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 191, 96); + else if ((active3 & 0x8000000000000000L) != 0L) { - jjmatchedKind = 251; + jjmatchedKind = 255; jjmatchedPos = 8; } - else if ((active4 & 0x100000000000000L) != 0L) + else if ((active4 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 312; + jjmatchedKind = 317; jjmatchedPos = 8; } - else if ((active5 & 0x10000000000L) != 0L) + else if ((active5 & 0x200000000000L) != 0L) { - jjmatchedKind = 360; + jjmatchedKind = 365; jjmatchedPos = 8; } - else if ((active5 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(8, 363, 94); - else if ((active6 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 437, 94); - else if ((active6 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 447, 94); - else if ((active7 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 510, 94); - else if ((active9 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(8, 595, 94); - else if ((active9 & 0x2000000000000000L) != 0L) + else if ((active5 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 368, 96); + else if ((active6 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 443, 96); + else if ((active7 & 0x20L) != 0L) + return jjStartNfaWithStates_0(8, 453, 96); + else if ((active8 & 0x80L) != 0L) + return jjStartNfaWithStates_0(8, 519, 96); + else if ((active9 & 0x10000000L) != 0L) + return jjStartNfaWithStates_0(8, 604, 96); + else if ((active10 & 0x40L) != 0L) { - jjmatchedKind = 637; + jjmatchedKind = 646; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_0(active0, 0x400000000L, active1, 0x800L, active2, 0L, active3, 0x1000000000000000L, active4, 0x2100010c0000000L, active5, 0x20000000000L, active6, 0x10000000000000L, active7, 0x10000000042L, active8, 0x20000000L, active9, 0x4000000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_0(active0, 0x400000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0x4200020c00000001L, active5, 0x400000000000L, active6, 0x400000000000000L, active7, 0x400000001080L, active8, 0x4000000000L, active9, 0L, active10, 0x80L, active11, 0L); case 70: case 102: - if ((active2 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(8, 140, 94); - else if ((active9 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(8, 618, 94); - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x100L) != 0L) + return jjStartNfaWithStates_0(8, 136, 96); + else if ((active9 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 627, 96); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(8, 22, 94); - else if ((active3 & 0x20L) != 0L) - return jjStartNfaWithStates_0(8, 197, 94); - else if ((active3 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(8, 214, 94); - else if ((active4 & 0x2L) != 0L) - return jjStartNfaWithStates_0(8, 257, 94); - else if ((active6 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(8, 429, 94); - else if ((active7 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(8, 474, 94); - else if ((active9 & 0x2000000L) != 0L) + return jjStartNfaWithStates_0(8, 22, 96); + else if ((active3 & 0x200L) != 0L) + return jjStartNfaWithStates_0(8, 201, 96); + else if ((active3 & 0x4000000L) != 0L) + return jjStartNfaWithStates_0(8, 218, 96); + else if ((active4 & 0x20L) != 0L) + return jjStartNfaWithStates_0(8, 261, 96); + else if ((active6 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 435, 96); + else if ((active7 & 0x100000000L) != 0L) + return jjStartNfaWithStates_0(8, 480, 96); + else if ((active9 & 0x400000000L) != 0L) { - jjmatchedKind = 601; + jjmatchedKind = 610; jjmatchedPos = 8; } - else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(8, 720, 94); - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x4L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0x4040000L, active10, 0L, active11, 0x10000000L); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_0(8, 730, 96); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x4L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0x808000000L, active10, 0L, active11, 0x4000000000L); case 72: case 104: - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x201L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000000L, active8, 0L, active9, 0x40200L, active10, 0L, active11, 0L); case 73: case 105: if ((active0 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(8, 41, 94); - return jjMoveStringLiteralDfa9_0(active0, 0x40000040000000L, active1, 0x1000L, active2, 0x1000006800000000L, active3, 0L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0x4L, active8, 0x2000000000000000L, active9, 0x8780000100000100L, active10, 0xf0008000L, active11, 0x4200L); + return jjStartNfaWithStates_0(8, 41, 96); + return jjMoveStringLiteralDfa9_0(active0, 0x40000040000000L, active1, 0x1000L, active2, 0x68000000000L, active3, 0x1L, active4, 0x2000L, active5, 0L, active6, 0L, active7, 0x8000000000100L, active8, 0L, active9, 0x20000020040L, active10, 0x3c00200010fL, active11, 0x1080000L); + case 75: + case 107: + if ((active2 & 0x10000L) != 0L) + return jjStartNfaWithStates_0(8, 144, 96); + break; case 76: case 108: - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0x400000L, active3, 0x80000L, active4, 0L, active5, 0x100L, active6, 0x180000000L, active7, 0x4000L, active8, 0x400000400000000L, active9, 0x20000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0x4000000L, active3, 0x800000L, active4, 0L, active5, 0x2000L, active6, 0x6000000000L, active7, 0x100000L, active8, 0x80000000000L, active9, 0x4000000000000008L, active10, 0L, active11, 0L); case 77: case 109: - if ((active9 & 0x800000000000000L) != 0L) + if ((active10 & 0x10L) != 0L) { - jjmatchedKind = 635; + jjmatchedKind = 644; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x1000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0L, active7, 0x8000000000000L, active8, 0x200000000L, active9, 0x100000080000000eL, active10, 0L, active11, 0x100L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x2000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40L, active6, 0L, active7, 0x1000000000000000L, active8, 0x40000000000L, active9, 0x100000001c00L, active10, 0x20L, active11, 0x40000L); case 78: case 110: if ((active0 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(8, 28, 94); + return jjStartNfaWithStates_0(8, 28, 96); else if ((active1 & 0x40000L) != 0L) { jjmatchedKind = 82; @@ -8128,31 +8182,31 @@ else if ((active1 & 0x20000000L) != 0L) jjmatchedKind = 93; jjmatchedPos = 8; } - else if ((active3 & 0x8L) != 0L) - return jjStartNfaWithStates_0(8, 195, 94); - else if ((active4 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(8, 279, 94); - else if ((active6 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(8, 406, 94); - else if ((active6 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(8, 430, 94); - return jjMoveStringLiteralDfa9_0(active0, 0x1000000020800000L, active1, 0x20f8c0380000L, active2, 0x20000080L, active3, 0x800000000000L, active4, 0L, active5, 0x20000040000000L, active6, 0x1000L, active7, 0x1000000020L, active8, 0x3000000L, active9, 0x80000000000L, active10, 0x200000000008L, active11, 0x40L); + else if ((active3 & 0x80L) != 0L) + return jjStartNfaWithStates_0(8, 199, 96); + else if ((active4 & 0x8000000L) != 0L) + return jjStartNfaWithStates_0(8, 283, 96); + else if ((active6 & 0x10000000L) != 0L) + return jjStartNfaWithStates_0(8, 412, 96); + else if ((active6 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 436, 96); + return jjMoveStringLiteralDfa9_0(active0, 0x1000000020800000L, active1, 0x40f8c0380000L, active2, 0x200000200L, active3, 0x8000000000000L, active4, 0L, active5, 0x400000800000000L, active6, 0x40000L, active7, 0x40000000800L, active8, 0x600000000L, active9, 0x10000000000000L, active10, 0x80000000001000L, active11, 0x10000L); case 79: case 111: - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x600000000L, active2, 0x1000000000L, active3, 0x10000000L, active4, 0L, active5, 0x3200L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0x80L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x600000000L, active2, 0x10000000000L, active3, 0x100000000L, active4, 0L, active5, 0x64000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1000000L, active10, 0L, active11, 0x20000L); case 80: case 112: - if ((active1 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(8, 111, 94); - else if ((active9 & 0x100000000000L) != 0L) + if ((active1 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 112, 96); + else if ((active9 & 0x20000000000000L) != 0L) { - jjmatchedKind = 620; + jjmatchedKind = 629; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100L, active8, 0L, active9, 0x1e01000000000L, active10, 0L, active11, 0x400L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x3c0200000000000L, active10, 0L, active11, 0x100000L); case 81: case 113: - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0L); case 82: case 114: if ((active1 & 0x8L) != 0L) @@ -8160,74 +8214,78 @@ else if ((active9 & 0x100000000000L) != 0L) jjmatchedKind = 67; jjmatchedPos = 8; } - else if ((active4 & 0x8L) != 0L) - return jjStartNfaWithStates_0(8, 259, 94); - else if ((active6 & 0x4000L) != 0L) + else if ((active2 & 0x20000L) != 0L) + return jjStartNfaWithStates_0(8, 145, 96); + else if ((active4 & 0x80L) != 0L) + return jjStartNfaWithStates_0(8, 263, 96); + else if ((active6 & 0x100000L) != 0L) { - jjmatchedKind = 398; + jjmatchedKind = 404; jjmatchedPos = 8; } - else if ((active7 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 511, 94); - else if ((active8 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 565, 94); - return jjMoveStringLiteralDfa9_0(active0, 0x10000000000L, active1, 0xc000000000003f0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0x2001f8000L, active7, 0L, active8, 0x83ffe004000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active8 & 0x100L) != 0L) + return jjStartNfaWithStates_0(8, 520, 96); + else if ((active8 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 574, 96); + return jjMoveStringLiteralDfa9_0(active0, 0x10000000000L, active1, 0x18000000000003f0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0x8007e00000L, active7, 0L, active8, 0x7ffc00800000000L, active9, 0x1L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x1000000000000000L, active2, 0L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0x1000000000000000L, active9, 0x200400020L, active10, 0x10L, active11, 0L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x2000000000000000L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0x4080000000000L, active8, 0L, active9, 0x40080004020L, active10, 0x2000L, active11, 0L); case 84: case 116: - if ((active1 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 116, 94); - else if ((active4 & 0x4L) != 0L) - return jjStartNfaWithStates_0(8, 258, 94); - else if ((active4 & 0x8000L) != 0L) + if ((active1 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 117, 96); + else if ((active4 & 0x40L) != 0L) + return jjStartNfaWithStates_0(8, 262, 96); + else if ((active4 & 0x80000L) != 0L) { - jjmatchedKind = 271; + jjmatchedKind = 275; jjmatchedPos = 8; } - else if ((active7 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(8, 487, 94); - else if ((active7 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(8, 492, 94); - else if ((active8 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(8, 547, 94); - else if ((active9 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(8, 589, 94); - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0xe000010000000000L, active2, 0x8000L, active3, 0x2000000000000000L, active4, 0x10000L, active5, 0x400L, active6, 0x10L, active7, 0x4000000000000L, active8, 0x500000L, active9, 0x1000000L, active10, 0x4000L, active11, 0L); + else if ((active7 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_0(8, 493, 96); + else if ((active7 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 497, 96); + else if ((active7 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 501, 96); + else if ((active8 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_0(8, 556, 96); + else if ((active9 & 0x400000L) != 0L) + return jjStartNfaWithStates_0(8, 598, 96); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0xc000010000000000L, active2, 0x80001L, active3, 0L, active4, 0x100002L, active5, 0x8000L, active6, 0x400L, active7, 0x800000000000000L, active8, 0xa0000000L, active9, 0x200000000L, active10, 0x1000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0x80200000000L, active5, 0x4000L, active6, 0x2000000L, active7, 0L, active8, 0x20L, active9, 0L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0x1004000000000L, active5, 0x80000L, active6, 0x80000000L, active7, 0L, active8, 0x4000L, active9, 0L, active10, 0L, active11, 0x40000000L); case 86: case 118: - return jjMoveStringLiteralDfa9_0(active0, 0x8000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_0(active0, 0x8000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 87: case 119: - if ((active3 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(8, 221, 94); - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40L, active10, 0L, active11, 0L); + if ((active3 & 0x200000000L) != 0L) + return jjStartNfaWithStates_0(8, 225, 96); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 88: case 120: - if ((active7 & 0x8L) != 0L) - return jjStartNfaWithStates_0(8, 451, 94); + if ((active7 & 0x200L) != 0L) + return jjStartNfaWithStates_0(8, 457, 96); return jjMoveStringLiteralDfa9_0(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active3 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(8, 243, 94); - else if ((active4 & 0x20L) != 0L) - return jjStartNfaWithStates_0(8, 261, 94); - else if ((active7 & 0x10L) != 0L) - return jjStartNfaWithStates_0(8, 452, 94); - else if ((active9 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(8, 613, 94); - else if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(8, 681, 94); - else if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(8, 687, 94); - else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_0(8, 709, 94); - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80L, active10, 0L, active11, 0L); + if ((active3 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 247, 96); + else if ((active4 & 0x200L) != 0L) + return jjStartNfaWithStates_0(8, 265, 96); + else if ((active7 & 0x400L) != 0L) + return jjStartNfaWithStates_0(8, 458, 96); + else if ((active9 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_0(8, 622, 96); + else if ((active10 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 691, 96); + else if ((active10 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_0(8, 697, 96); + else if ((active11 & 0x8000L) != 0L) + return jjStartNfaWithStates_0(8, 719, 96); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); default : break; } @@ -8245,88 +8303,90 @@ private final int jjMoveStringLiteralDfa9_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa10_0(active0, 0x1000000L, active1, 0x803800f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1f8000L, active7, 0L, active8, 0L, active9, 0x4021800004000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_0(active0, 0x1000000L, active1, 0x803800f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x7e00000L, active7, 0L, active8, 0L, active9, 0x4300000800000000L, active10, 0x80L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa10_0(active0, 0x1000000000000000L, active1, 0x2c0000040000000L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0x200000000L, active7, 0x4001800000000L, active8, 0x401c000220000000L, active9, 0x200000000200L, active10, 0xcL, active11, 0L); + return jjMoveStringLiteralDfa10_0(active0, 0x1000000000000000L, active1, 0x580000040000000L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0x8000000000L, active7, 0x800060000000000L, active8, 0x3800044000000000L, active9, 0x40000000040080L, active10, 0x1800L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000L, active5, 0x2L, active6, 0L, active7, 0L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0x40L, active6, 0L, active7, 0L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: if ((active0 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(9, 30, 94); - else if ((active2 & 0x80L) != 0L) - return jjStartNfaWithStates_0(9, 135, 94); - else if ((active9 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(9, 619, 94); - return jjMoveStringLiteralDfa10_0(active0, 0x800000L, active1, 0x1000000000000000L, active2, 0x4000000000L, active3, 0x800000000000L, active4, 0xc0000000L, active5, 0x200L, active6, 0L, active7, 0x2000400000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x40L); + return jjStartNfaWithStates_0(9, 30, 96); + else if ((active2 & 0x200L) != 0L) + return jjStartNfaWithStates_0(9, 137, 96); + else if ((active9 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_0(9, 628, 96); + return jjMoveStringLiteralDfa10_0(active0, 0x800000L, active1, 0x2000000000000000L, active2, 0x40000000000L, active3, 0x8000000000000L, active4, 0xc00000000L, active5, 0x4000L, active6, 0L, active7, 0x80010000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0x10000L); case 68: case 100: - if ((active5 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(9, 350, 94); - else if ((active5 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(9, 361, 94); - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x200000000000L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0L, active11, 0L); + if ((active5 & 0x800000000L) != 0L) + return jjStartNfaWithStates_0(9, 355, 96); + else if ((active5 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_0(9, 366, 96); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x400000000000L, active2, 0x800L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000000000000L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(9, 27, 94); - else if ((active2 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(9, 143, 94); - else if ((active2 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(9, 150, 94); - else if ((active4 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(9, 289, 94); - else if ((active4 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(9, 299, 94); - else if ((active7 & 0x100L) != 0L) - return jjStartNfaWithStates_0(9, 456, 94); + return jjStartNfaWithStates_0(9, 27, 96); + else if ((active2 & 0x80000L) != 0L) + return jjStartNfaWithStates_0(9, 147, 96); + else if ((active2 & 0x4000000L) != 0L) + return jjStartNfaWithStates_0(9, 154, 96); + else if ((active4 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_0(9, 293, 96); + else if ((active4 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_0(9, 294, 96); + else if ((active4 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_0(9, 304, 96); else if ((active7 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(9, 462, 94); - else if ((active7 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 499, 94); - else if ((active8 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(9, 546, 94); - else if ((active9 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(9, 600, 94); - else if ((active9 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(9, 611, 94); - else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_0(9, 712, 94); - else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_0(9, 714, 94); - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000500L, active6, 0x180000000L, active7, 0x10000000000000L, active8, 0x1000000000L, active9, 0x2004000e0L, active10, 0x4000L, active11, 0x10000000L); + return jjStartNfaWithStates_0(9, 462, 96); + else if ((active7 & 0x100000L) != 0L) + return jjStartNfaWithStates_0(9, 468, 96); + else if ((active7 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_0(9, 508, 96); + else if ((active8 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_0(9, 555, 96); + else if ((active9 & 0x200000000L) != 0L) + return jjStartNfaWithStates_0(9, 609, 96); + else if ((active9 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_0(9, 620, 96); + else if ((active11 & 0x40000L) != 0L) + return jjStartNfaWithStates_0(9, 722, 96); + else if ((active11 & 0x100000L) != 0L) + return jjStartNfaWithStates_0(9, 724, 96); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x20000000000a000L, active6, 0x6000000000L, active7, 0x2004000000000000L, active8, 0x200000000000L, active9, 0x4008001c000L, active10, 0x1000000L, active11, 0x4000000000L); case 71: case 103: - if ((active6 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(9, 396, 94); - else if ((active8 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(9, 536, 94); - else if ((active9 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(9, 594, 94); - else if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(9, 685, 94); - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x20000000000000L, active6, 0x2000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x40000L) != 0L) + return jjStartNfaWithStates_0(9, 402, 96); + else if ((active8 & 0x200000000L) != 0L) + return jjStartNfaWithStates_0(9, 545, 96); + else if ((active9 & 0x8000000L) != 0L) + return jjStartNfaWithStates_0(9, 603, 96); + else if ((active10 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_0(9, 695, 96); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400000000000000L, active6, 0x80000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x2000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000002L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x6000000000000100L, active2, 0xc00L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x480000000400000L, active9, 0x6L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0xc000000000000100L, active2, 0x3000L, active3, 0L, active4, 0x100000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0xc09L, active10, 0L, active11, 0L); case 75: case 107: - if ((active2 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(9, 157, 94); - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0x10L); + if ((active2 & 0x200000000L) != 0L) + return jjStartNfaWithStates_0(9, 161, 96); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000000000000L, active11, 0x4000L); case 76: case 108: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000L, active8, 0L, active9, 0x1000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1L, active5, 0L, active6, 0L, active7, 0x20000000L, active8, 0L, active9, 0x200000000000L, active10, 0L, active11, 0L); case 77: case 109: - if ((active5 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(9, 334, 94); - return jjMoveStringLiteralDfa10_0(active0, 0x8000000000L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0x8L, active9, 0x4000100010000L, active10, 0L, active11, 0L); + if ((active5 & 0x80000L) != 0L) + return jjStartNfaWithStates_0(9, 339, 96); + return jjMoveStringLiteralDfa10_0(active0, 0x8000000000L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1000L, active9, 0x800020002000000L, active10, 0L, active11, 0L); case 78: case 110: if ((active1 & 0x200000000L) != 0L) @@ -8334,91 +8394,91 @@ else if ((active10 & 0x200000000000L) != 0L) jjmatchedKind = 97; jjmatchedPos = 9; } - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x400000000L, active2, 0L, active3, 0x10000000L, active4, 0L, active5, 0x3000L, active6, 0L, active7, 0x4L, active8, 0x2000000000080000L, active9, 0x100L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x400000000L, active2, 0L, active3, 0x100000000L, active4, 0L, active5, 0x60000L, active6, 0L, active7, 0x8000000000100L, active8, 0x10000000L, active9, 0x20040L, active10, 0x3c000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0xc00010000000000L, active2, 0x800000000L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x8780000000200009L, active10, 0x8000L, active11, 0x200L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x1800010000000000L, active2, 0x8000000000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0x40001200L, active10, 0x200010fL, active11, 0x80000L); case 80: case 112: - if ((active1 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 112, 94); - else if ((active9 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(9, 591, 94); + if ((active1 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_0(9, 113, 96); + else if ((active9 & 0x1000000L) != 0L) + return jjStartNfaWithStates_0(9, 600, 96); break; case 82: case 114: if ((active1 & 0x800L) != 0L) - return jjStartNfaWithStates_0(9, 75, 94); - else if ((active2 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(9, 164, 94); - else if ((active4 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(9, 292, 94); - else if ((active7 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(9, 488, 94); - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000000000L, active7, 0x40L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(9, 75, 96); + else if ((active2 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_0(9, 168, 96); + else if ((active4 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_0(9, 297, 96); + else if ((active7 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_0(9, 494, 96); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0x1000L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 83: case 115: if ((active0 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(9, 34, 94); + return jjStartNfaWithStates_0(9, 34, 96); else if ((active1 & 0x200L) != 0L) - return jjStartNfaWithStates_0(9, 73, 94); - else if ((active6 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 436, 94); - else if ((active7 & 0x2L) != 0L) - return jjStartNfaWithStates_0(9, 449, 94); - else if ((active9 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 636, 94); - else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(9, 724, 94); - else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(9, 729, 94); - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0x2000000001L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x20L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(9, 73, 96); + else if ((active6 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_0(9, 442, 96); + else if ((active7 & 0x80L) != 0L) + return jjStartNfaWithStates_0(9, 455, 96); + else if ((active10 & 0x20L) != 0L) + return jjStartNfaWithStates_0(9, 645, 96); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_0(9, 734, 96); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_0(9, 739, 96); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x40000000000L, active2, 0x20000000002L, active3, 0L, active4, 0x4000000000000000L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x4000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: if ((active0 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(9, 29, 94); + return jjStartNfaWithStates_0(9, 29, 96); else if ((active1 & 0x800000000L) != 0L) { jjmatchedKind = 99; jjmatchedPos = 9; } - else if ((active2 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(9, 168, 94); - else if ((active7 & 0x20L) != 0L) - return jjStartNfaWithStates_0(9, 453, 94); - else if ((active8 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(9, 537, 94); - return jjMoveStringLiteralDfa10_0(active0, 0x40010800000000L, active1, 0xf000000004L, active2, 0x1000000000000000L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active2 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_0(9, 172, 96); + else if ((active7 & 0x800L) != 0L) + return jjStartNfaWithStates_0(9, 459, 96); + else if ((active8 & 0x400000000L) != 0L) + return jjStartNfaWithStates_0(9, 546, 96); + return jjMoveStringLiteralDfa10_0(active0, 0x40010800000000L, active1, 0xf000000004L, active2, 0x4000L, active3, 0x1L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10L, active10, 0L, active11, 0x80L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x20000L); case 86: case 118: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x7ffc00000000000L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active4 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(9, 308, 94); + if ((active4 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_0(9, 313, 96); break; case 89: case 121: - if ((active4 & 0x8000000L) != 0L) + if ((active4 & 0x80000000L) != 0L) { - jjmatchedKind = 283; + jjmatchedKind = 287; jjmatchedPos = 9; } - else if ((active4 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(9, 288, 94); - else if ((active6 & 0x10L) != 0L) - return jjStartNfaWithStates_0(9, 388, 94); - else if ((active8 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(9, 538, 94); - else if ((active10 & 0x40L) != 0L) - return jjStartNfaWithStates_0(9, 646, 94); - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active4 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_0(9, 292, 96); + else if ((active6 & 0x400L) != 0L) + return jjStartNfaWithStates_0(9, 394, 96); + else if ((active8 & 0x800000000L) != 0L) + return jjStartNfaWithStates_0(9, 547, 96); + else if ((active10 & 0x8000L) != 0L) + return jjStartNfaWithStates_0(9, 655, 96); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1000000L); default : break; } @@ -8436,157 +8496,159 @@ private final int jjMoveStringLiteralDfa10_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x7400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x180000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x7400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x6000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa11_0(active0, 0x800000L, active1, 0x8000000000000000L, active2, 0L, active3, 0x800000000000L, active4, 0x10000000L, active5, 0L, active6, 0L, active7, 0x400000L, active8, 0x9103ffe000080000L, active9, 0x190L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_0(active0, 0x800000L, active1, 0L, active2, 0x1L, active3, 0x8000000000000L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0x8000010000000L, active8, 0x7ffc00010000000L, active9, 0x32122L, active10, 0L, active11, 0L); case 67: case 99: - if ((active8 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_0(10, 567, 94); - return jjMoveStringLiteralDfa11_0(active0, 0x1000000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000040L, active8, 0L, active9, 0x20000000000022L, active10, 0L, active11, 0L); + if ((active9 & 0x1L) != 0L) + return jjStartNfaWithStates_0(10, 576, 96); + return jjMoveStringLiteralDfa11_0(active0, 0x1000000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001000L, active8, 0L, active9, 0x4000000000004400L, active10, 0L, active11, 0L); case 68: case 100: - if ((active3 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(10, 220, 94); - else if ((active5 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(10, 332, 94); - else if ((active5 & 0x2000L) != 0L) - return jjStartNfaWithStates_0(10, 333, 94); - else if ((active10 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(10, 654, 94); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000L, active10, 0L, active11, 0x10000000L); + if ((active3 & 0x100000000L) != 0L) + return jjStartNfaWithStates_0(10, 224, 96); + else if ((active5 & 0x20000L) != 0L) + return jjStartNfaWithStates_0(10, 337, 96); + else if ((active5 & 0x40000L) != 0L) + return jjStartNfaWithStates_0(10, 338, 96); + else if ((active10 & 0x1000000L) != 0L) + return jjStartNfaWithStates_0(10, 664, 96); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x140000000000000L, active10, 0L, active11, 0x4000000000L); case 69: case 101: if ((active0 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(10, 39, 94); + return jjStartNfaWithStates_0(10, 39, 96); else if ((active1 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(10, 88, 94); - else if ((active2 & 0x4L) != 0L) - return jjStartNfaWithStates_0(10, 130, 94); - else if ((active3 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(10, 211, 94); - else if ((active4 & 0x200L) != 0L) - return jjStartNfaWithStates_0(10, 265, 94); - else if ((active7 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(10, 496, 94); - else if ((active8 & 0x8L) != 0L) - return jjStartNfaWithStates_0(10, 515, 94); - else if ((active9 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(10, 608, 94); - else if ((active9 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(10, 612, 94); - else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_0(10, 718, 94); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x40000000000L, active7, 0x800000L, active8, 0x20L, active9, 0x40L, active10, 0x200000f0000000L, active11, 0x10L); + return jjStartNfaWithStates_0(10, 88, 96); + else if ((active2 & 0x8L) != 0L) + return jjStartNfaWithStates_0(10, 131, 96); + else if ((active3 & 0x800000L) != 0L) + return jjStartNfaWithStates_0(10, 215, 96); + else if ((active4 & 0x2000L) != 0L) + return jjStartNfaWithStates_0(10, 269, 96); + else if ((active7 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_0(10, 505, 96); + else if ((active8 & 0x1000L) != 0L) + return jjStartNfaWithStates_0(10, 524, 96); + else if ((active9 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_0(10, 617, 96); + else if ((active9 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_0(10, 621, 96); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_0(10, 728, 96); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0x40L, active6, 0x1000000000000L, active7, 0x20000000L, active8, 0x4000L, active9, 0x8000L, active10, 0x800003c000000000L, active11, 0x4000L); case 70: case 102: - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active7 & 0x4L) != 0L) - return jjStartNfaWithStates_0(10, 450, 94); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active7 & 0x100L) != 0L) + return jjStartNfaWithStates_0(10, 456, 96); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active1 & 0x4L) != 0L) - return jjStartNfaWithStates_0(10, 66, 94); - else if ((active6 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(10, 409, 94); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x1000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x40L); + return jjStartNfaWithStates_0(10, 66, 96); + else if ((active6 & 0x80000000L) != 0L) + return jjStartNfaWithStates_0(10, 415, 96); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x2000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0x10000L); case 73: case 105: - return jjMoveStringLiteralDfa11_0(active0, 0x10800000000L, active1, 0x200000001000L, active2, 0x1000000000000200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4400000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_0(active0, 0x10800000000L, active1, 0x400000001000L, active2, 0x800L, active3, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x880000000000000L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(10, 94, 94); - else if ((active8 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(10, 545, 94); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x400000000000010L, active2, 0L, active3, 0L, active4, 0x1000L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(10, 94, 96); + else if ((active8 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(10, 554, 96); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x800000000000010L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0L, active7, 0x800000000000000L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa11_0(active0, 0x1000000000000000L, active1, 0x6000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000L, active7, 0x10001000000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); + return jjMoveStringLiteralDfa11_0(active0, 0x1000000000000000L, active1, 0xc000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0x2000040000000000L, active8, 0L, active9, 0L, active10, 0x1000L, active11, 0L); case 78: case 110: - if ((active2 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(10, 163, 94); - else if ((active8 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(10, 541, 94); - else if ((active9 & 0x80000000000000L) != 0L) + if ((active2 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_0(10, 167, 96); + else if ((active8 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_0(10, 550, 96); + else if ((active10 & 0x1L) != 0L) { - jjmatchedKind = 631; + jjmatchedKind = 640; jjmatchedPos = 10; } - else if ((active9 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(10, 639, 94); - else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_0(10, 713, 94); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x86100000L, active2, 0xc000000000c00L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x200010000L, active7, 0L, active8, 0x400000000000000L, active9, 0x70000000000000cL, active10, 0x8000L, active11, 0L); + else if ((active10 & 0x100L) != 0L) + return jjStartNfaWithStates_0(10, 648, 96); + else if ((active11 & 0x80000L) != 0L) + return jjStartNfaWithStates_0(10, 723, 96); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x86100000L, active2, 0xc0000000003000L, active3, 0L, active4, 0L, active5, 0x2000L, active6, 0x8000400000L, active7, 0L, active8, 0L, active9, 0x1808L, active10, 0x200000eL, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x400000L, active9, 0x2000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x80000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); case 80: case 112: - if ((active9 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(10, 592, 94); - else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_0(10, 711, 94); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x2000000L) != 0L) + return jjStartNfaWithStates_0(10, 601, 96); + else if ((active11 & 0x20000L) != 0L) + return jjStartNfaWithStates_0(10, 721, 96); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: if ((active1 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(10, 104, 94); - else if ((active8 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(10, 548, 94); - else if ((active9 & 0x200L) != 0L) - return jjStartNfaWithStates_0(10, 585, 94); - else if ((active9 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(10, 609, 94); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0x4000000004200000L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(10, 104, 96); + else if ((active8 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_0(10, 557, 96); + else if ((active9 & 0x40000L) != 0L) + return jjStartNfaWithStates_0(10, 594, 96); + else if ((active9 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(10, 618, 96); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0x840000000L, active10, 0x80L, active11, 0L); case 83: case 115: if ((active1 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(10, 103, 94); - else if ((active2 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(10, 166, 94); - else if ((active4 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(10, 285, 94); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x2001e0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(10, 103, 96); + else if ((active2 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(10, 170, 96); + else if ((active4 & 0x200000000L) != 0L) + return jjStartNfaWithStates_0(10, 289, 96); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x2001e0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - if ((active4 & 0x40000000L) != 0L) + if ((active4 & 0x400000000L) != 0L) { - jjmatchedKind = 286; + jjmatchedKind = 290; jjmatchedPos = 10; } - else if ((active8 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(10, 573, 94); - else if ((active9 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(10, 598, 94); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x2c0000000000000L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0x200000080000000L, active5, 0x20000000000200L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0x1000000000000L, active10, 0x4L, active11, 0L); + else if ((active7 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_0(10, 498, 96); + else if ((active9 & 0x40L) != 0L) + return jjStartNfaWithStates_0(10, 582, 96); + else if ((active9 & 0x80000000L) != 0L) + return jjStartNfaWithStates_0(10, 607, 96); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x580000000000000L, active2, 0x20000000000L, active3, 0L, active4, 0x4000000800000002L, active5, 0x400000000004000L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0x200000000000000L, active10, 0x800L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x40000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0L); case 87: case 119: - if ((active1 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_0(10, 123, 94); + if ((active1 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_0(10, 124, 96); break; case 88: case 120: - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(10, 54, 94); - else if ((active3 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(10, 252, 94); - else if ((active8 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(10, 574, 94); + return jjStartNfaWithStates_0(10, 54, 96); + else if ((active4 & 0x1L) != 0L) + return jjStartNfaWithStates_0(10, 256, 96); + else if ((active9 & 0x80L) != 0L) + return jjStartNfaWithStates_0(10, 583, 96); break; default : break; @@ -8605,127 +8667,129 @@ private final int jjMoveStringLiteralDfa11_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 65: case 97: - if ((active7 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 500, 94); - return jjMoveStringLiteralDfa12_0(active0, 0x1000000L, active1, 0x140000000180000L, active2, 0L, active3, 0L, active4, 0x200000080000000L, active5, 0L, active6, 0x10000L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x8004L, active11, 0L); + if ((active7 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_0(11, 509, 96); + return jjMoveStringLiteralDfa12_0(active0, 0x1000000L, active1, 0x280000000180000L, active2, 0L, active3, 0L, active4, 0x4000000800000000L, active5, 0L, active6, 0x400000L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x2000800L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0x40000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0x1006200000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x8008000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0x1006200000L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0x1000000000000000L, active9, 0x100L, active10, 0L, active11, 0L); case 68: case 100: - if ((active9 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(11, 621, 94); - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x100000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + if ((active9 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_0(11, 630, 96); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 60, 94); - else if ((active1 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 119, 94); - else if ((active1 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 122, 94); - else if ((active1 & 0x2000000000000000L) != 0L) - { - jjmatchedKind = 125; + return jjStartNfaWithStates_0(11, 60, 96); + else if ((active1 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_0(11, 120, 96); + else if ((active1 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_0(11, 123, 96); + else if ((active1 & 0x4000000000000000L) != 0L) + { + jjmatchedKind = 126; jjmatchedPos = 11; } - else if ((active4 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(11, 268, 94); - else if ((active7 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(11, 484, 94); - else if ((active8 & 0x2L) != 0L) - return jjStartNfaWithStates_0(11, 513, 94); - else if ((active8 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(11, 532, 94); - else if ((active10 & 0x8L) != 0L) - return jjStartNfaWithStates_0(11, 643, 94); - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0x50000000000000f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x2000000040L, active8, 0L, active9, 0x4000000004000000L, active10, 0x10L, active11, 0L); + else if ((active4 & 0x10000L) != 0L) + return jjStartNfaWithStates_0(11, 272, 96); + else if ((active7 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(11, 490, 96); + else if ((active8 & 0x400L) != 0L) + return jjStartNfaWithStates_0(11, 522, 96); + else if ((active8 & 0x20000000L) != 0L) + return jjStartNfaWithStates_0(11, 541, 96); + else if ((active10 & 0x1000L) != 0L) + return jjStartNfaWithStates_0(11, 652, 96); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0xa0000000000000f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000L, active6, 0L, active7, 0x80000001000L, active8, 0L, active9, 0x800000000L, active10, 0x2080L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0x800L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000000000000L, active10, 0L, active11, 0L); case 71: case 103: - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000L, active5, 0x100L, active6, 0x40000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0x2000L, active6, 0x1000000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active1 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 121, 94); - else if ((active5 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 373, 94); + if ((active1 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_0(11, 122, 96); + else if ((active5 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_0(11, 378, 96); break; case 73: case 105: - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000200000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000040000000L, active10, 0L, active11, 0L); case 75: case 107: - if ((active6 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(11, 417, 94); - else if ((active9 & 0x40L) != 0L) - return jjStartNfaWithStates_0(11, 582, 94); + if ((active6 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_0(11, 423, 96); + else if ((active9 & 0x8000L) != 0L) + return jjStartNfaWithStates_0(11, 591, 96); break; case 76: case 108: - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x3ffe000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active7 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_0(11, 499, 96); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x7ffc00000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000080000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x10000000L, active9, 0x20L, active10, 0L, active11, 0L); case 78: case 110: if ((active1 & 0x1000L) != 0L) - return jjStartNfaWithStates_0(11, 76, 94); - else if ((active4 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(11, 272, 94); - else if ((active8 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(11, 534, 94); - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0x8000202400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0x800000L, active8, 0x10000000000000L, active9, 0x4000000000000L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(11, 76, 96); + else if ((active4 & 0x100000L) != 0L) + return jjStartNfaWithStates_0(11, 276, 96); + else if ((active8 & 0x80000000L) != 0L) + return jjStartNfaWithStates_0(11, 543, 96); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0x402400000000L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x20000000L, active8, 0x2000000000000000L, active9, 0x800000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa12_0(active0, 0x800000000L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000L, active7, 0x4000000000000L, active8, 0L, active9, 0x20000000000020L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_0(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0x800000000000000L, active8, 0L, active9, 0x4000000000004000L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x1L) != 0L) - return jjStartNfaWithStates_0(11, 128, 94); - else if ((active5 & 0x2L) != 0L) - return jjStartNfaWithStates_0(11, 321, 94); - else if ((active8 & 0x20L) != 0L) - return jjStartNfaWithStates_0(11, 517, 94); - else if ((active8 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 568, 94); - else if ((active9 & 0x1L) != 0L) - return jjStartNfaWithStates_0(11, 576, 94); - else if ((active9 & 0x80L) != 0L) - return jjStartNfaWithStates_0(11, 583, 94); - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x1000000000112L, active10, 0L, active11, 0x40L); + if ((active2 & 0x2L) != 0L) + return jjStartNfaWithStates_0(11, 129, 96); + else if ((active5 & 0x40L) != 0L) + return jjStartNfaWithStates_0(11, 326, 96); + else if ((active8 & 0x4000L) != 0L) + return jjStartNfaWithStates_0(11, 526, 96); + else if ((active9 & 0x2L) != 0L) + return jjStartNfaWithStates_0(11, 577, 96); + else if ((active9 & 0x200L) != 0L) + return jjStartNfaWithStates_0(11, 585, 96); + else if ((active9 & 0x10000L) != 0L) + return jjStartNfaWithStates_0(11, 592, 96); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0x200000000022400L, active10, 0L, active11, 0x10000L); case 83: case 115: - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x700000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xeL, active11, 0L); case 84: case 116: - if ((active3 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(11, 239, 94); - else if ((active5 & 0x400L) != 0L) - return jjStartNfaWithStates_0(11, 330, 94); - else if ((active8 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 570, 94); - else if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(11, 693, 94); - return jjMoveStringLiteralDfa12_0(active0, 0x10000800000L, active1, 0x100L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0L); + if ((active3 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_0(11, 243, 96); + else if ((active5 & 0x8000L) != 0L) + return jjStartNfaWithStates_0(11, 335, 96); + else if ((active9 & 0x8L) != 0L) + return jjStartNfaWithStates_0(11, 579, 96); + else if ((active10 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_0(11, 703, 96); + return jjMoveStringLiteralDfa12_0(active0, 0x10000800000L, active1, 0x100L, active2, 0x3000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0x1000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0x80000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000000000004L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0x80000000L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000800L, active10, 0L, active11, 0L); case 89: case 121: - if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_0(11, 708, 94); + if ((active11 & 0x4000L) != 0L) + return jjStartNfaWithStates_0(11, 718, 96); break; default : break; @@ -8744,86 +8808,86 @@ private final int jjMoveStringLiteralDfa12_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa13_0(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8003ffe000000000L, active9, 0x700000000000000L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa13_0(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x7ffc00000000000L, active9, 0x100L, active10, 0x3c00000000eL, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x3400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active2 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(12, 165, 94); - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x10000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_0(12, 169, 96); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x28000L, active7, 0x400000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0xa00000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: - if ((active8 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(12, 531, 94); - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400001c0000L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x10000000L) != 0L) + return jjStartNfaWithStates_0(12, 540, 96); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0x3000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000007000000L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: - if ((active2 & 0x200L) != 0L) - return jjStartNfaWithStates_0(12, 137, 94); - else if ((active9 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(12, 622, 94); - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000000000L, active10, 0L, active11, 0L); + if ((active2 & 0x800L) != 0L) + return jjStartNfaWithStates_0(12, 139, 96); + else if ((active9 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_0(12, 631, 96); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); case 71: case 103: - if ((active1 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(12, 109, 94); - else if ((active4 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(12, 284, 94); - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000000L, active5, 0L, active6, 0L, active7, 0x4000000800000L, active8, 0L, active9, 0x4000000004200000L, active10, 0L, active11, 0L); + if ((active1 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_0(12, 110, 96); + else if ((active4 & 0x100000000L) != 0L) + return jjStartNfaWithStates_0(12, 288, 96); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000000L, active5, 0L, active6, 0L, active7, 0x800000020000000L, active8, 0L, active9, 0x840000000L, active10, 0x80L, active11, 0L); case 72: case 104: - if ((active9 & 0x8L) != 0L) - return jjStartNfaWithStates_0(12, 579, 94); - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x1000L) != 0L) + return jjStartNfaWithStates_0(12, 588, 96); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa13_0(active0, 0x10000000000L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0x100000000L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_0(active0, 0x10000000000L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0x4000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: - if ((active10 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(12, 655, 94); - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x40000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); + if ((active10 & 0x2000000L) != 0L) + return jjStartNfaWithStates_0(12, 665, 96); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x80000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x800L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x1000000080100000L, active2, 0L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0x10000L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x2000000080100000L, active2, 0L, active3, 0L, active4, 0x4000000000000000L, active5, 0L, active6, 0x400000L, active7, 0x80000000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0L); case 78: case 110: if ((active0 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(12, 35, 94); - else if ((active2 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(12, 188, 94); - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x10L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(12, 35, 96); + else if ((active3 & 0x1L) != 0L) + return jjStartNfaWithStates_0(12, 192, 96); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x10L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0x10000L); case 80: case 112: - if ((active8 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(12, 572, 94); - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active9 & 0x20L) != 0L) + return jjStartNfaWithStates_0(12, 581, 96); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 82: case 114: - if ((active9 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(12, 625, 94); - return jjMoveStringLiteralDfa13_0(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_0(12, 634, 96); + return jjMoveStringLiteralDfa13_0(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0xc000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x8000040000000000L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x60800e0L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0x300L, active6, 0L, active7, 0L, active8, 0L, active9, 0x14L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x60800e0L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0x6000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2800L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x25000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4a00000000000000L, active10, 0L, active11, 0L); case 89: case 121: - if ((active9 & 0x100L) != 0L) - return jjStartNfaWithStates_0(12, 584, 94); + if ((active9 & 0x20000L) != 0L) + return jjStartNfaWithStates_0(12, 593, 96); break; default : break; @@ -8836,114 +8900,116 @@ private final int jjMoveStringLiteralDfa13_0(long old0, long active0, long old1, return jjStartNfa_0(11, old0, old1, old2, old3, old4, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_0(12, active0, active1, active2, active3, active4, active5, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_0(12, active0, active1, active2, 0L, active4, active5, active6, active7, active8, active9, active10, active11, 0L); return 13; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0xe0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0xe0L, active2, 0L, active4, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active1 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_0(13, 124, 94); - else if ((active7 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(13, 485, 94); - else if ((active10 & 0x10L) != 0L) - return jjStartNfaWithStates_0(13, 644, 94); - return jjMoveStringLiteralDfa14_0(active0, 0x800000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + if ((active1 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_0(13, 125, 96); + else if ((active7 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_0(13, 491, 96); + else if ((active10 & 0x2000L) != 0L) + return jjStartNfaWithStates_0(13, 653, 96); + return jjMoveStringLiteralDfa14_0(active0, 0x800000L, active1, 0x80000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 66: case 98: - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x80000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x80000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + if ((active2 & 0x4000L) != 0L) + return jjStartNfaWithStates_0(13, 142, 96); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x100L, active2, 0L, active4, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 68: case 100: - if ((active9 & 0x20L) != 0L) - return jjStartNfaWithStates_0(13, 581, 94); - return jjMoveStringLiteralDfa14_0(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1e000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x4000L) != 0L) + return jjStartNfaWithStates_0(13, 590, 96); + return jjMoveStringLiteralDfa14_0(active0, 0x1000000L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3c00000000000L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(13, 84, 94); - else if ((active6 & 0x8000L) != 0L) - return jjStartNfaWithStates_0(13, 399, 94); - else if ((active6 & 0x10000L) != 0L) - return jjStartNfaWithStates_0(13, 400, 94); - else if ((active9 & 0x4L) != 0L) - return jjStartNfaWithStates_0(13, 578, 94); - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000000004000010L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(13, 84, 96); + else if ((active6 & 0x200000L) != 0L) + return jjStartNfaWithStates_0(13, 405, 96); + else if ((active6 & 0x400000L) != 0L) + return jjStartNfaWithStates_0(13, 406, 96); + else if ((active9 & 0x800L) != 0L) + return jjStartNfaWithStates_0(13, 587, 96); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x200000L, active2, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800002000L, active10, 0x80L, active11, 0L); case 70: case 102: - if ((active9 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(13, 623, 94); - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_0(13, 632, 96); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active4 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(13, 287, 94); - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x10L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active4 & 0x800000000L) != 0L) + return jjStartNfaWithStates_0(13, 291, 96); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x10L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active5 & 0x100L) != 0L) - return jjStartNfaWithStates_0(13, 328, 94); - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100e0000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active5 & 0x2000L) != 0L) + return jjStartNfaWithStates_0(13, 333, 96); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x4000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x201c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x200000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active4, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x200000000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x2400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x2400000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - if ((active3 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_0(13, 253, 94); - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x4000000000000L, active9, 0x21000000000000L, active10, 0L, active11, 0x40L); + if ((active4 & 0x2L) != 0L) + return jjStartNfaWithStates_0(13, 257, 96); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0x4200000000000000L, active10, 0L, active11, 0x10000L); case 79: case 111: - return jjMoveStringLiteralDfa14_0(active0, 0x10000000000L, active1, 0x40000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); + return jjMoveStringLiteralDfa14_0(active0, 0x10000000000L, active1, 0x80000000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x800L, active11, 0L); case 80: case 112: - if ((active4 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(13, 313, 94); + if ((active4 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_0(13, 318, 96); break; case 82: case 114: - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0x3000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 83: case 115: - if ((active7 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(13, 498, 94); - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x100000000L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + if ((active7 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_0(13, 507, 96); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x4000000000L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 84: case 116: - if ((active7 & 0x40L) != 0L) - return jjStartNfaWithStates_0(13, 454, 94); - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x4000001000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3800000L, active8, 0L, active9, 0x4000000000000L, active10, 0xf0000000L, active11, 0L); + if ((active7 & 0x1000L) != 0L) + return jjStartNfaWithStates_0(13, 460, 96); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x8000041000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0xe0000000L, active8, 0L, active9, 0x800000000000000L, active10, 0x3c000000000L, active11, 0L); case 88: case 120: - if ((active6 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(13, 426, 94); + if ((active6 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_0(13, 432, 96); break; case 89: case 121: - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x600000000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_0(12, active0, active1, active2, active3, active4, active5, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_0(12, active0, active1, active2, 0L, active4, active5, active6, active7, active8, active9, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa14_0(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa14_0(long old0, long active0, long old1, long active1, long old2, long active2, long old4, long active4, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_0(12, old0, old1, old2, old3, old4, old5, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active4 &= old4) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_0(12, old0, old1, old2, 0L, old4, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_0(13, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); @@ -8952,93 +9018,95 @@ private final int jjMoveStringLiteralDfa14_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x4000001000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x1401e000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x8000001000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x2803c00000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active6 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(14, 416, 94); - else if ((active9 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_0(14, 624, 94); - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); + if ((active6 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_0(14, 422, 96); + else if ((active9 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_0(14, 633, 96); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); case 69: case 101: if ((active1 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(14, 98, 94); + return jjStartNfaWithStates_0(14, 98, 96); else if ((active1 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(14, 101, 94); - else if ((active5 & 0x4L) != 0L) - return jjStartNfaWithStates_0(14, 322, 94); - else if ((active9 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(14, 626, 94); - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x4080000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8003800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(14, 101, 96); + else if ((active5 & 0x80L) != 0L) + return jjStartNfaWithStates_0(14, 327, 96); + else if ((active9 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_0(14, 635, 96); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x4080000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 71: case 103: - if ((active1 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_0(14, 118, 94); - else if ((active7 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(14, 483, 94); - else if ((active10 & 0x4L) != 0L) - return jjStartNfaWithStates_0(14, 642, 94); - return jjMoveStringLiteralDfa15_0(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active1 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_0(14, 119, 96); + else if ((active7 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_0(14, 489, 96); + else if ((active10 & 0x800L) != 0L) + return jjStartNfaWithStates_0(14, 651, 96); + return jjMoveStringLiteralDfa15_0(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active7 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(14, 471, 94); + if ((active7 & 0x20000000L) != 0L) + return jjStartNfaWithStates_0(14, 477, 96); break; case 73: case 105: - return jjMoveStringLiteralDfa15_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0x300000000000L, active9, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa15_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0x60000000000000L, active9, 0L, active10, 0L, active11, 0x10000L); case 76: case 108: - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x200000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: if ((active0 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(14, 40, 94); - else if ((active9 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(14, 597, 94); - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(14, 40, 96); + else if ((active9 & 0x40000000L) != 0L) + return jjStartNfaWithStates_0(14, 606, 96); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x8000000006000000L, active2, 0xc000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4e0000000000L, active9, 0x600000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000001L, active5, 0L, active6, 0L, active7, 0L, active8, 0x9c000000000000L, active9, 0L, active10, 0xcL, active11, 0L); case 82: case 114: - if ((active8 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(14, 563, 94); - else if ((active9 & 0x10L) != 0L) - return jjStartNfaWithStates_0(14, 580, 94); - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active1 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(14, 106, 96); + else if ((active8 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_0(14, 572, 96); + else if ((active9 & 0x2000L) != 0L) + return jjStartNfaWithStates_0(14, 589, 96); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 83: case 115: if ((active1 & 0x100L) != 0L) - return jjStartNfaWithStates_0(14, 72, 94); + return jjStartNfaWithStates_0(14, 72, 96); return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - if ((active6 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(14, 415, 94); - else if ((active9 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_0(14, 629, 94); - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x100000000000010L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_0(14, 421, 96); + else if ((active9 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_0(14, 638, 96); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0x200000000000010L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 86: case 118: - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0xc00L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0x3000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active9 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(14, 602, 94); - else if ((active9 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(14, 638, 94); + if ((active9 & 0x800000000L) != 0L) + return jjStartNfaWithStates_0(14, 611, 96); + else if ((active10 & 0x80L) != 0L) + return jjStartNfaWithStates_0(14, 647, 96); break; case 89: case 121: - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); default : break; } @@ -9056,37 +9124,37 @@ private final int jjMoveStringLiteralDfa15_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: if ((active1 & 0x200000L) != 0L) - return jjStartNfaWithStates_0(15, 85, 94); - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0x60L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0x3000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(15, 85, 96); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0x60L, active2, 0x3000L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0x600000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 69: case 101: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0x10000000000200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x800000L) != 0L) - return jjStartNfaWithStates_0(15, 23, 94); + return jjStartNfaWithStates_0(15, 23, 96); break; case 72: case 104: if ((active1 & 0x10L) != 0L) - return jjStartNfaWithStates_0(15, 68, 94); + return jjStartNfaWithStates_0(15, 68, 96); break; case 76: case 108: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0x4000004000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0x8000004000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 78: case 110: if ((active1 & 0x2000000L) != 0L) @@ -9094,42 +9162,42 @@ private final int jjMoveStringLiteralDfa15_0(long old0, long active0, long old1, jjmatchedKind = 89; jjmatchedPos = 15; } - else if ((active2 & 0x4000000000000L) != 0L) + else if ((active2 & 0x40000000000000L) != 0L) { - jjmatchedKind = 178; + jjmatchedKind = 182; jjmatchedPos = 15; } - return jjMoveStringLiteralDfa16_0(active0, 0x1000000L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_0(active0, 0x1000000L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 82: case 114: if ((active1 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(15, 95, 94); - else if ((active8 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(15, 564, 94); - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(15, 95, 96); + else if ((active8 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_0(15, 573, 96); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 85: case 117: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active8 & 0x2000000000L) != 0L) + if ((active8 & 0x400000000000L) != 0L) { - jjmatchedKind = 549; + jjmatchedKind = 558; jjmatchedPos = 15; } - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000L); default : break; } @@ -9147,73 +9215,73 @@ private final int jjMoveStringLiteralDfa16_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: if ((active1 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(16, 102, 94); - return jjMoveStringLiteralDfa17_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40L); + return jjStartNfaWithStates_0(16, 102, 96); + return jjMoveStringLiteralDfa17_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000L); case 69: case 101: - if ((active7 & 0x2000000L) != 0L) - return jjStartNfaWithStates_0(16, 473, 94); - return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + if ((active7 & 0x80000000L) != 0L) + return jjStartNfaWithStates_0(16, 479, 96); + return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(16, 83, 94); + return jjStartNfaWithStates_0(16, 83, 96); break; case 72: case 104: return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 76: case 108: - return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0x3000L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0x8000000000000040L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0x40L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 80: case 112: - if ((active1 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_0(16, 126, 94); + if ((active1 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_0(16, 127, 96); break; case 82: case 114: - if ((active8 & 0x20000000000L) != 0L) + if ((active8 & 0x4000000000000L) != 0L) { - jjmatchedKind = 553; + jjmatchedKind = 562; jjmatchedPos = 16; } - else if ((active8 & 0x1000000000000L) != 0L) + else if ((active8 & 0x200000000000000L) != 0L) { - jjmatchedKind = 560; + jjmatchedKind = 569; jjmatchedPos = 16; } - return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x418000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0x100000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0x200000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000000000L, active9, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x300000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x60000000000000L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active5 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_0(16, 372, 94); + if ((active5 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_0(16, 377, 96); break; case 89: case 121: - if ((active8 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_0(16, 562, 94); + if ((active8 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_0(16, 571, 96); break; default : break; @@ -9232,46 +9300,46 @@ private final int jjMoveStringLiteralDfa17_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0x8000000000000000L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0x3001L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x418000000000000L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x40L) != 0L) - return jjStartNfaWithStates_0(17, 70, 94); - return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(17, 70, 96); + return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 71: case 103: if ((active1 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(17, 100, 94); - return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(17, 100, 96); + return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active8 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(17, 558, 94); + if ((active8 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_0(17, 567, 96); break; case 73: case 105: - return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 76: case 108: return jjMoveStringLiteralDfa18_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x63800000000000L, active9, 0L, active10, 0L, active11, 0x4000010000L); case 86: case 118: - return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); default : break; } @@ -9289,38 +9357,38 @@ private final int jjMoveStringLiteralDfa18_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0x400L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x30000000L, active11, 0L); + return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0x1000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xc000000000L, active11, 0L); case 68: case 100: - if ((active8 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_0(18, 559, 94); - else if ((active8 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(18, 575, 94); - else if ((active9 & 0x2L) != 0L) - return jjStartNfaWithStates_0(18, 577, 94); - return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + if ((active8 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_0(18, 568, 96); + else if ((active9 & 0x100L) != 0L) + return jjStartNfaWithStates_0(18, 584, 96); + else if ((active9 & 0x400L) != 0L) + return jjStartNfaWithStates_0(18, 586, 96); + return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 69: case 101: - if ((active8 & 0x100000000000L) != 0L) + if ((active8 & 0x20000000000000L) != 0L) { - jjmatchedKind = 556; + jjmatchedKind = 565; jjmatchedPos = 18; } - else if ((active9 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(18, 632, 94); - return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active10 & 0x2L) != 0L) + return jjStartNfaWithStates_0(18, 641, 96); + return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa19_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000010000L); case 76: case 108: return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -9329,19 +9397,19 @@ else if ((active9 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40000000L, active11, 0L); + return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0x800L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); + return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0x400000L, active8, 0x20c0000000000L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0x10000000L, active8, 0x418000000000000L, active9, 0L, active10, 0x4L, active11, 0L); default : break; } @@ -9353,300 +9421,300 @@ private final int jjMoveStringLiteralDfa19_0(long old0, long active0, long old1, return jjStartNfa_0(17, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_0(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_0(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, 0L, active10, active11, 0L); return 19; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x21c000000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x43800000000000L, active10, 0x8L, active11, 0L); case 65: case 97: if ((active1 & 0x80L) != 0L) - return jjStartNfaWithStates_0(19, 71, 94); - return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x50000000L, active11, 0L); + return jjStartNfaWithStates_0(19, 71, 96); + return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x14000000000L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x40000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); + return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1000000L, active7, 0L, active8, 0L, active10, 0x20000000000L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active5 & 0x200L) != 0L) - return jjStartNfaWithStates_0(19, 329, 94); + if ((active5 & 0x4000L) != 0L) + return jjStartNfaWithStates_0(19, 334, 96); break; case 78: case 110: - return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0x2000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x20L, active2, 0x400L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0x20000000L, active11, 0x10000040L); + return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x20L, active2, 0x1000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x418000000000000L, active10, 0x8000000000L, active11, 0x4000010000L); case 82: case 114: - return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x8000000000000000L, active2, 0x800L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0x2001L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x100000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa20_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active10, 0x4L, active11, 0L); case 89: case 121: - if ((active7 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(19, 470, 94); + if ((active7 & 0x10000000L) != 0L) + return jjStartNfaWithStates_0(19, 476, 96); break; default : break; } - return jjStartNfa_0(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_0(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa20_0(long old0, long active0, long old1, long active1, long old2, long active2, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa20_0(long old0, long active0, long old1, long active1, long old2, long active2, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_0(18, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_0(18, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_0(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_0(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, 0L, active10, active11, 0L); return 20; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x418000000000000L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0xc0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0x3000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x8L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0x100000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0x400L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0x1000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x8000000000L, active11, 0L); case 69: case 101: if ((active1 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(20, 90, 94); - else if ((active2 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_0(20, 179, 94); - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0x800L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_0(20, 90, 96); + else if ((active2 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_0(20, 183, 96); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x4L, active11, 0L); case 71: case 103: if ((active1 & 0x20L) != 0L) - return jjStartNfaWithStates_0(20, 69, 94); + return jjStartNfaWithStates_0(20, 69, 96); break; case 72: case 104: - if ((active7 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(20, 472, 94); - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000L, active9, 0L, active10, 0x80000000L, active11, 0L); + if ((active7 & 0x40000000L) != 0L) + return jjStartNfaWithStates_0(20, 478, 96); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x800000000000L, active10, 0x20000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000L, active9, 0L, active10, 0x40000000L, active11, 0L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active10, 0x10000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x4000010000L); case 79: case 111: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0x1L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0x100000000000000L, active2, 0L, active6, 0x20000L, active7, 0L, active8, 0x10000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0x200000000000000L, active2, 0L, active6, 0x800000L, active7, 0L, active8, 0x2000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x40000000000000L, active10, 0x4000000000L, active11, 0L); case 89: case 121: if ((active0 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(20, 24, 94); + return jjStartNfaWithStates_0(20, 24, 96); break; default : break; } - return jjStartNfa_0(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_0(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa21_0(long old0, long active0, long old1, long active1, long old2, long active2, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa21_0(long old0, long active0, long old1, long active1, long old2, long active2, long old6, long active6, long old7, long active7, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_0(19, old0, old1, old2, 0L, 0L, 0L, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_0(19, old0, old1, old2, 0L, 0L, 0L, old6, old7, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_0(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_0(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 21; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000010000L); case 65: case 97: - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x4000000008L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0x800L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - if ((active9 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_0(21, 633, 94); + if ((active10 & 0x4L) != 0L) + return jjStartNfaWithStates_0(21, 642, 96); break; case 69: case 101: - if ((active2 & 0x400L) != 0L) - return jjStartNfaWithStates_0(21, 138, 94); - else if ((active10 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(21, 669, 94); - else if ((active10 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(21, 670, 94); - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0L, active10, 0x80000000L, active11, 0L); + if ((active2 & 0x1000L) != 0L) + return jjStartNfaWithStates_0(21, 140, 96); + else if ((active10 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_0(21, 679, 96); + else if ((active10 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_0(21, 680, 96); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x20000000000L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa22_0(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_0(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 72: case 104: - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0x1000000000000L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0x80000L, active8, 0x2040000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0x2000000L, active8, 0x408000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x204000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x40800000000000L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa22_0(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_0(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_0(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa22_0(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa22_0(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_0(20, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_0(20, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_0(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_0(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 22; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x8L, active11, 0L); case 69: case 101: - if ((active6 & 0x80000L) != 0L) - return jjStartNfaWithStates_0(22, 403, 94); - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x2000000L) != 0L) + return jjStartNfaWithStates_0(22, 409, 96); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0x800L, active6, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x4000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0x40L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000000L, active11, 0x10000L); case 78: case 110: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x1000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa23_0(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_0(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0x400000000000000L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa23_0(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000000000L); case 84: case 116: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x4000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x800000000000L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_0(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_0(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa23_0(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa23_0(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_0(21, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_0(21, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_0(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_0(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 23; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa24_0(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active10 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(23, 671, 94); + if ((active10 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_0(23, 681, 96); break; case 67: case 99: - return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0L, active10, 0L, active11, 0L); case 75: case 107: - if ((active9 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_0(23, 634, 94); + if ((active10 & 0x8L) != 0L) + return jjStartNfaWithStates_0(23, 643, 96); break; case 76: case 108: - return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x408000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0L, active10, 0x10000000L, active11, 0x10000040L); + return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x4000000000L, active11, 0x4000010000L); case 82: case 114: - if ((active8 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(23, 550, 94); - return jjMoveStringLiteralDfa24_0(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_0(23, 559, 96); + return jjMoveStringLiteralDfa24_0(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0x800L, active6, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x1000000000000L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_0(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_0(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa24_0(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa24_0(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_0(22, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_0(22, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_0(23, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); @@ -9656,44 +9724,44 @@ private final int jjMoveStringLiteralDfa24_0(long old1, long active1, long old2, { case 65: case 97: - if ((active6 & 0x100000L) != 0L) - return jjStartNfaWithStates_0(24, 404, 94); + if ((active6 & 0x4000000L) != 0L) + return jjStartNfaWithStates_0(24, 410, 96); break; case 68: case 100: - return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x10000L); case 69: case 101: - return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa25_0(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(24, 668, 94); + if ((active10 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_0(24, 678, 96); break; case 73: case 105: - return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0x800L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa25_0(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_0(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0x60000L, active8, 0x80000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0x1800000L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x2008000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x401000000000000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000000000L); default : break; } @@ -9711,46 +9779,46 @@ private final int jjMoveStringLiteralDfa25_0(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa26_0(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa26_0(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); case 68: case 100: - if ((active8 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(25, 552, 94); + if ((active8 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_0(25, 561, 96); break; case 69: case 101: - if ((active8 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(25, 551, 94); - else if ((active11 & 0x40L) != 0L) - return jjStartNfaWithStates_0(25, 710, 94); + if ((active8 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_0(25, 560, 96); + else if ((active11 & 0x10000L) != 0L) + return jjStartNfaWithStates_0(25, 720, 96); break; case 71: case 103: - if ((active6 & 0x40000L) != 0L) - return jjStartNfaWithStates_0(25, 402, 94); + if ((active6 & 0x1000000L) != 0L) + return jjStartNfaWithStates_0(25, 408, 96); break; case 72: case 104: - if ((active8 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_0(25, 561, 94); + if ((active8 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_0(25, 570, 96); break; case 78: case 110: - if ((active6 & 0x20000L) != 0L) - return jjStartNfaWithStates_0(25, 401, 94); - return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active11, 0L); + if ((active6 & 0x800000L) != 0L) + return jjStartNfaWithStates_0(25, 407, 96); + return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa26_0(active1, 0x8000000000000000L, active2, 0x800L, active6, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0x2001L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x4000000000L); case 84: case 116: - return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000L, active11, 0L); + return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active11, 0L); default : break; } @@ -9768,31 +9836,31 @@ private final int jjMoveStringLiteralDfa26_0(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa27_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 68: case 100: - if ((active8 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(26, 555, 94); + if ((active8 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_0(26, 564, 96); break; case 69: case 101: - if ((active8 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(26, 554, 94); + if ((active8 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_0(26, 563, 96); break; case 71: case 103: - return jjMoveStringLiteralDfa27_0(active1, 0x100000000000000L, active2, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa27_0(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); case 78: case 110: - if ((active2 & 0x800L) != 0L) - return jjStartNfaWithStates_0(26, 139, 94); + if ((active2 & 0x2000L) != 0L) + return jjStartNfaWithStates_0(26, 141, 96); break; case 79: case 111: - return jjMoveStringLiteralDfa27_0(active1, 0L, active2, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa27_0(active1, 0L, active2, 0L, active8, 0x40000000000000L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa27_0(active1, 0x8000000000000000L, active2, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa27_0(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); default : break; } @@ -9804,131 +9872,131 @@ private final int jjMoveStringLiteralDfa27_0(long old1, long active1, long old2, return jjStartNfa_0(25, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_0(26, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_0(26, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); return 27; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa28_0(active1, 0x8000000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa28_0(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa28_0(active1, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa28_0(active1, 0L, active2, 0L, active8, 0x40000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_0(active1, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa28_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 82: case 114: - return jjMoveStringLiteralDfa28_0(active1, 0x100000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa28_0(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); default : break; } - return jjStartNfa_0(26, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + return jjStartNfa_0(26, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa28_0(long old1, long active1, long old8, long active8, long old11, long active11) +private final int jjMoveStringLiteralDfa28_0(long old1, long active1, long old2, long active2, long old8, long active8, long old11, long active11) { - if (((active1 &= old1) | (active8 &= old8) | (active11 &= old11)) == 0L) - return jjStartNfa_0(26, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active8 &= old8) | (active11 &= old11)) == 0L) + return jjStartNfa_0(26, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_0(27, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_0(27, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); return 28; } switch(curChar) { case 68: case 100: - if ((active8 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(28, 557, 94); + if ((active8 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_0(28, 566, 96); break; case 69: case 101: - return jjMoveStringLiteralDfa29_0(active1, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa29_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 79: case 111: - return jjMoveStringLiteralDfa29_0(active1, 0x100000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa29_0(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa29_0(active1, 0x8000000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa29_0(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); default : break; } - return jjStartNfa_0(27, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + return jjStartNfa_0(27, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa29_0(long old1, long active1, long old8, long active8, long old11, long active11) +private final int jjMoveStringLiteralDfa29_0(long old1, long active1, long old2, long active2, long old8, long active8, long old11, long active11) { - if (((active1 &= old1) | (active8 &= old8) | (active11 &= old11)) == 0L) - return jjStartNfa_0(27, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active8 &= old8) | (active11 &= old11)) == 0L) + return jjStartNfa_0(27, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_0(28, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_0(28, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 29; } switch(curChar) { case 82: case 114: - return jjMoveStringLiteralDfa30_0(active1, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa30_0(active1, 0L, active2, 0L, active11, 0x4000000000L); case 85: case 117: - return jjMoveStringLiteralDfa30_0(active1, 0x100000000000000L, active11, 0L); + return jjMoveStringLiteralDfa30_0(active1, 0x200000000000000L, active2, 0L, active11, 0L); case 89: case 121: - return jjMoveStringLiteralDfa30_0(active1, 0x8000000000000000L, active11, 0L); + return jjMoveStringLiteralDfa30_0(active1, 0L, active2, 0x1L, active11, 0L); default : break; } - return jjStartNfa_0(28, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_0(28, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa30_0(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa30_0(long old1, long active1, long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_0(28, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_0(28, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_0(29, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_0(29, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 30; } switch(curChar) { case 67: case 99: - return jjMoveStringLiteralDfa31_0(active1, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa31_0(active1, 0L, active2, 0L, active11, 0x4000000000L); case 80: case 112: - if ((active1 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_0(30, 120, 94); - return jjMoveStringLiteralDfa31_0(active1, 0x8000000000000000L, active11, 0L); + if ((active1 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_0(30, 121, 96); + return jjMoveStringLiteralDfa31_0(active1, 0L, active2, 0x1L, active11, 0L); default : break; } - return jjStartNfa_0(29, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_0(29, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa31_0(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa31_0(long old1, long active1, long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_0(29, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_0(29, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_0(30, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_0(30, 0L, 0L, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 31; } switch(curChar) { case 69: case 101: - if ((active1 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_0(31, 127, 94); - return jjMoveStringLiteralDfa32_0(active1, 0L, active11, 0x10000000L); + if ((active2 & 0x1L) != 0L) + return jjStartNfaWithStates_0(31, 128, 96); + return jjMoveStringLiteralDfa32_0(active2, 0L, active11, 0x4000000000L); default : break; } - return jjStartNfa_0(30, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_0(30, 0L, 0L, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa32_0(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa32_0(long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_0(30, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_0(30, 0L, 0L, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_0(31, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); @@ -9938,7 +10006,7 @@ private final int jjMoveStringLiteralDfa32_0(long old1, long active1, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_0(active11, 0x10000000L); + return jjMoveStringLiteralDfa33_0(active11, 0x4000000000L); default : break; } @@ -9957,8 +10025,8 @@ private final int jjMoveStringLiteralDfa33_0(long old11, long active11) { case 84: case 116: - if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(33, 732, 94); + if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_0(33, 742, 96); break; default : break; @@ -9995,21 +10063,21 @@ else if (curChar == 46) jjCheckNAddTwoStates(56, 57); else if (curChar == 7) { - if (kind > 808) - kind = 808; + if (kind > 819) + kind = 819; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 23; if ((0x3ff000000000000L & l) != 0L) { - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAddStates(9, 15); } else if (curChar == 36) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; @@ -10022,28 +10090,28 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 94: + case 96: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x3ff001000000000L & l) != 0L) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 97: + case 98: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(37, 38); else if (curChar == 39) @@ -10052,14 +10120,14 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 96: + case 95: case 30: if ((0xffffffffffffdbffL & l) != 0L) jjCheckNAddStates(22, 24); @@ -10075,8 +10143,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 67; if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) @@ -10085,8 +10153,8 @@ else if (curChar == 38) case 92: if (curChar == 47) { - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(25, 27); } else if (curChar == 42) @@ -10101,14 +10169,14 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 95: + case 94: if (curChar == 32) jjCheckNAddTwoStates(86, 87); if (curChar == 32) @@ -10123,19 +10191,19 @@ else if (curChar == 39) jjCheckNAddStates(32, 34); else if (curChar == 39) { - if (kind > 741) - kind = 741; + if (kind > 751) + kind = 751; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 64; if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; - case 98: + case 97: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(57); } if ((0x3ff000000000000L & l) != 0L) @@ -10160,8 +10228,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 740) - kind = 740; + if (curChar == 39 && kind > 750) + kind = 750; break; case 7: if ((0x3ff000000000000L & l) != 0L) @@ -10185,8 +10253,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 11; break; case 13: - if (curChar == 39 && kind > 742) - kind = 742; + if (curChar == 39 && kind > 752) + kind = 752; break; case 17: if ((0xffffff7fffffffffL & l) != 0L) @@ -10204,30 +10272,30 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 20; break; case 22: - if (curChar == 39 && kind > 744) - kind = 744; + if (curChar == 39 && kind > 754) + kind = 754; break; case 23: if (curChar != 45) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(25, 27); break; case 24: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(25, 27); break; case 25: - if ((0x2400L & l) != 0L && kind > 794) - kind = 794; + if ((0x2400L & l) != 0L && kind > 805) + kind = 805; break; case 26: - if (curChar == 10 && kind > 794) - kind = 794; + if (curChar == 10 && kind > 805) + kind = 805; break; case 27: if (curChar == 13) @@ -10240,15 +10308,15 @@ else if (curChar == 39) case 34: if (curChar != 36) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 35: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 36: @@ -10266,8 +10334,8 @@ else if (curChar == 39) case 39: if (curChar != 36) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjCheckNAddTwoStates(39, 40); break; case 40: @@ -10277,26 +10345,26 @@ else if (curChar == 39) case 41: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjCheckNAdd(41); break; case 42: - if (curChar == 7 && kind > 808) - kind = 808; + if (curChar == 7 && kind > 819) + kind = 819; break; case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAddStates(9, 15); break; case 44: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAdd(44); break; case 45: @@ -10310,8 +10378,8 @@ else if (curChar == 39) case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 735) - kind = 735; + if (kind > 745) + kind = 745; jjCheckNAdd(48); break; case 49: @@ -10325,22 +10393,22 @@ else if (curChar == 39) case 51: if (curChar != 46) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(52); break; case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(52); break; case 53: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAddStates(35, 37); break; case 54: @@ -10358,8 +10426,8 @@ else if (curChar == 39) case 57: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(57); break; case 58: @@ -10379,12 +10447,12 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; case 62: - if (curChar == 39 && kind > 741) - kind = 741; + if (curChar == 39 && kind > 751) + kind = 751; break; case 64: - if (curChar == 39 && kind > 748) - kind = 748; + if (curChar == 39 && kind > 758) + kind = 758; break; case 67: case 69: @@ -10400,8 +10468,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 69; break; case 71: - if (curChar == 39 && kind > 743) - kind = 743; + if (curChar == 39 && kind > 753) + kind = 753; break; case 72: if (curChar == 38) @@ -10424,8 +10492,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 75; break; case 77: - if (curChar == 34 && kind > 805) - kind = 805; + if (curChar == 34 && kind > 816) + kind = 816; break; case 79: if (curChar == 32) @@ -10452,14 +10520,14 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 91; break; case 91: - if ((0xffff7fffffffffffL & l) != 0L && kind > 792) - kind = 792; + if ((0xffff7fffffffffffL & l) != 0L && kind > 803) + kind = 803; break; case 93: if (curChar != 47) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(25, 27); break; default : break; @@ -10482,8 +10550,8 @@ else if (curChar == 91) jjCheckNAddTwoStates(30, 32); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if ((0x20000000200000L & l) != 0L) @@ -10504,36 +10572,36 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; - case 94: + case 96: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; - case 97: + case 98: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; - case 96: + case 95: if ((0xffffffffdfffffffL & l) != 0L) jjCheckNAddStates(22, 24); else if (curChar == 93) @@ -10546,8 +10614,8 @@ else if (curChar == 93) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; @@ -10558,25 +10626,25 @@ else if (curChar == 93) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; - case 95: + case 94: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; else if ((0x1000000010L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 761) + kind = 761; } if ((0x10000000100000L & l) != 0L) { - if (kind > 752) - kind = 752; + if (kind > 762) + kind = 762; } break; case 63: @@ -10627,8 +10695,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(28, 31); break; case 24: - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjAddStates(25, 27); break; case 29: @@ -10648,21 +10716,21 @@ else if ((0x1000000010L & l) != 0L) jjstateSet[jjnewStateCnt++] = 31; break; case 33: - if (curChar == 93 && kind > 798) - kind = 798; + if (curChar == 93 && kind > 809) + kind = 809; break; case 34: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 35: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 36: @@ -10672,15 +10740,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjAddStates(58, 59); break; case 41: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjstateSet[jjnewStateCnt++] = 41; break; case 46: @@ -10705,32 +10773,32 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(48, 55); break; case 80: - if ((0x1000000010L & l) != 0L && kind > 751) - kind = 751; + if ((0x1000000010L & l) != 0L && kind > 761) + kind = 761; break; case 82: - if ((0x10000000100000L & l) != 0L && kind > 752) - kind = 752; + if ((0x10000000100000L & l) != 0L && kind > 762) + kind = 762; break; case 84: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; break; case 85: - if ((0x8000000080000L & l) != 0L && kind > 753) - kind = 753; + if ((0x8000000080000L & l) != 0L && kind > 763) + kind = 763; break; case 87: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; break; case 88: - if ((0x400000004000L & l) != 0L && kind > 754) - kind = 754; + if ((0x400000004000L & l) != 0L && kind > 764) + kind = 764; break; case 91: - if (kind > 792) - kind = 792; + if (kind > 803) + kind = 803; break; default : break; } @@ -10750,8 +10818,8 @@ else if ((0x1000000010L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10760,8 +10828,8 @@ else if ((0x1000000010L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10769,11 +10837,11 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 94: + case 96: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10781,11 +10849,11 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 97: + case 98: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10793,7 +10861,7 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 96: + case 95: case 30: if (jjCanMove_0(hiByte, i1, i2, l1, l2)) jjCheckNAddStates(22, 24); @@ -10801,8 +10869,8 @@ else if ((0x1000000010L & l) != 0L) case 66: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10813,8 +10881,8 @@ else if ((0x1000000010L & l) != 0L) case 16: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10849,22 +10917,22 @@ else if ((0x1000000010L & l) != 0L) case 24: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjAddStates(25, 27); break; case 34: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 35: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 36: @@ -10874,15 +10942,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjAddStates(58, 59); break; case 41: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjstateSet[jjnewStateCnt++] = 41; break; case 59: @@ -10898,8 +10966,8 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(45, 47); break; case 91: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 792) - kind = 792; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 803) + kind = 803; break; default : break; } @@ -10943,7 +11011,7 @@ private final int jjMoveNfa_6(int startState, int curPos) { case 0: if (curChar == 47) - kind = 796; + kind = 807; break; case 1: if (curChar == 42) @@ -10997,410 +11065,410 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, switch (pos) { case 0: - if ((active0 & 0x7ffe000000000L) != 0L || (active2 & 0xffffffffffff0L) != 0L || (active3 & 0xfffc000fffffc000L) != 0L || (active4 & 0xfffffc3ffffffffL) != 0L || (active5 & 0xfff8000000000000L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xfffffffffffffeffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xdffffff000000fffL) != 0L || (active11 & 0x272af64fL) != 0L) - { - jjmatchedKind = 803; + if ((active11 & 0x2000000000000000L) != 0L) return 94; + if ((active12 & 0x400000L) != 0L) + return 63; + if ((active10 & 0x3fffffc00000L) != 0L) + { + jjmatchedKind = 814; + return 66; } - if ((active11 & 0x8000000000000L) != 0L) - return 95; - if ((active2 & 0xfff0000000000000L) != 0L || (active3 & 0x3fffL) != 0L || (active11 & 0x800L) != 0L) + if ((active12 & 0x1200020000L) != 0L) + return 92; + if ((active2 & 0xff00000000000000L) != 0L || (active3 & 0x3ffffL) != 0L || (active11 & 0x200000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; return 16; } - if ((active10 & 0xffffff000L) != 0L) + if ((active0 & 0x7ffe000000000L) != 0L || (active2 & 0xffffffffffffe0L) != 0L || (active3 & 0xffc000fffffc0000L) != 0L || (active4 & 0xfffff87fffffffffL) != 0L || (active5 & 0xff00000000000001L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xfffffffffffdffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xffffc000003fffffL) != 0L || (active11 & 0x9cabd93f7fL) != 0L) { - jjmatchedKind = 803; - return 66; + jjmatchedKind = 814; + return 95; } - if ((active12 & 0x800L) != 0L) - return 63; - if ((active12 & 0x2400040L) != 0L) - return 92; - if ((active10 & 0x2000000000000000L) != 0L) + if ((active0 & 0xfff8001ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x1fL) != 0L || (active3 & 0x3fff0000000000L) != 0L || (active4 & 0x78000000000L) != 0L || (active5 & 0x1fffffffeL) != 0L || (active8 & 0x20000L) != 0L || (active11 & 0x635006c000L) != 0L || (active12 & 0x4000000L) != 0L) + return 95; + if ((active12 & 0x200004L) != 0L) + return 96; + if ((active5 & 0xfffffe00000000L) != 0L || (active11 & 0x4000000L) != 0L) { - jjmatchedKind = 803; - return 1; + jjmatchedKind = 814; + return 97; } - if ((active0 & 0xfff8001ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xfL) != 0L || (active3 & 0x3fff000000000L) != 0L || (active4 & 0xf000003c00000000L) != 0L || (active5 & 0xfffffffL) != 0L || (active8 & 0x100L) != 0L || (active11 & 0x18d401b0L) != 0L || (active12 & 0x8000L) != 0L) - return 94; - if ((active5 & 0x7fffff0000000L) != 0L || (active11 & 0x10000L) != 0L) + if ((active11 & 0x80L) != 0L) { - jjmatchedKind = 803; - return 96; + jjmatchedKind = 814; + return 1; } - if ((active11 & 0x100000000000000L) != 0L || (active12 & 0x400L) != 0L) - return 97; - if ((active12 & 0x10L) != 0L) + if ((active12 & 0xc000L) != 0L) return 23; return -1; case 1: - if ((active12 & 0x2400000L) != 0L) + if ((active12 & 0x1200000000L) != 0L) return 90; - if ((active0 & 0xfff3fff801fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0x7ffff3efffffffffL) != 0L || (active4 & 0xefbffffbff000000L) != 0L || (active5 & 0xc67ff83fffffffffL) != 0L || (active6 & 0xffffffffffffffe1L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffcfffffffffffffL) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0x1f7eafddL) != 0L) + if ((active0 & 0x40007fe000000L) != 0L || (active3 & 0xc00000000000L) != 0L || (active4 & 0x80000000ffffff8L) != 0L || (active5 & 0x3000f80000000000L) != 0L || (active6 & 0x7c7L) != 0L || (active9 & 0x6000000000000000L) != 0L || (active11 & 0x8205408800L) != 0L) + return 95; + if ((active0 & 0xfff3fff801fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xffff3effffffffffL) != 0L || (active4 & 0xf7ffff7ff0000007L) != 0L || (active5 & 0xcfff07fffffffffdL) != 0L || (active6 & 0xfffffffffffff838L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0x9fffffffffffffffL) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0x7dfabf77ffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 1; } - return 94; + return 95; } - if ((active0 & 0x40007fe000000L) != 0L || (active3 & 0x80000c0000000000L) != 0L || (active4 & 0x40000000ffffffL) != 0L || (active5 & 0x398007c000000000L) != 0L || (active6 & 0x1eL) != 0L || (active9 & 0x30000000000000L) != 0L || (active11 & 0x20815022L) != 0L) - return 94; return -1; case 2: - if ((active0 & 0xfff3dfef79e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xe1ff2ffffff09fffL) != 0L || (active3 & 0x7fdffaeff87ff9ffL) != 0L || (active4 & 0xcfbfff43ffe81fffL) != 0L || (active5 & 0xe57ffbafffc07fe7L) != 0L || (active6 & 0xffffff701fffde3dL) != 0L || (active7 & 0xfffffc3ffffffff8L) != 0L || (active8 & 0x1ffe3fL) != 0L || (active9 & 0xffefffffeffffc00L) != 0L || (active10 & 0xdfffffffffffffffL) != 0L || (active11 & 0x2bfffffdL) != 0L) + if ((active0 & 0x201004167370L) != 0L || (active2 & 0xe00d000000f78000L) != 0L || (active3 & 0x200100078006001L) != 0L || (active4 & 0x1700007e0000L) != 0L || (active5 & 0x4000820007f00304L) != 0L || (active6 & 0x23f800087002L) != 0L || (active7 & 0xf000000001c0L) != 0L || (active8 & 0xffffffffc0038000L) != 0L || (active9 & 0x200007ffffL) != 0L || (active11 & 0x5000000080L) != 0L) + return 95; + if ((active0 & 0xfff3dfef79e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x1ff2ffffff087fffL) != 0L || (active3 & 0xfdffaeff87ff9ffeL) != 0L || (active4 & 0xf7ffe87ffe81fff7L) != 0L || (active5 & 0xafff75fff80ffcf9L) != 0L || (active6 & 0xffffdc07fff78fbcL) != 0L || (active7 & 0xffff0ffffffffe3fL) != 0L || (active8 & 0x3ffc7fffL) != 0L || (active9 & 0xdfffffdffff80000L) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0xaffffff77fL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 2; } - return 94; + return 95; } - if ((active0 & 0x201004167370L) != 0L || (active2 & 0x1e00d000000f6000L) != 0L || (active3 & 0x20010007800600L) != 0L || (active4 & 0x200000b80007e000L) != 0L || (active5 & 0x12000410003f8018L) != 0L || (active6 & 0x8fe00021c0L) != 0L || (active7 & 0x3c000000007L) != 0L || (active8 & 0xffffffffffe001c0L) != 0L || (active9 & 0x100003ffL) != 0L || (active10 & 0x2000000000000000L) != 0L || (active11 & 0x14000000L) != 0L) - return 94; return -1; case 3: - if ((active0 & 0x6631400000000000L) != 0L || (active1 & 0x83000000023feL) != 0L || (active2 & 0x51001e00005ff0L) != 0L || (active3 & 0xd00803400000c0L) != 0L || (active4 & 0x18ec03ff040000L) != 0L || (active5 & 0x6401e0a032000000L) != 0L || (active6 & 0x780200400c001e00L) != 0L || (active7 & 0x2800020080000000L) != 0L || (active8 & 0xb280L) != 0L || (active9 & 0x7ff4000000400L) != 0L || (active10 & 0xc78f4002f80008e0L) != 0L || (active11 & 0xc0201L) != 0L) - return 94; - if ((active2 & 0x400000000000000L) != 0L) - return 98; - if ((active0 & 0x99c29fef79e9ece0L) != 0L || (active1 & 0xfff7cfffffffdc01L) != 0L || (active2 & 0xf9ae2fe1fffe800fL) != 0L || (active3 & 0x7f0ff2ecbf7ffd3fL) != 0L || (active4 & 0xcfa7137000ebdfffL) != 0L || (active5 & 0x817e1b0fcdf77ff7L) != 0L || (active6 & 0x87fdff3fd3ffc1bdL) != 0L || (active7 & 0xd7fffdbf7ffffffeL) != 0L || (active8 & 0xffffffffffdf4d3fL) != 0L || (active9 & 0xffe800bfeffffbffL) != 0L || (active10 & 0x1870bffd07fff71fL) != 0L || (active11 & 0x3ff3fdfcL) != 0L) + if ((active0 & 0x99c29fef79e9ece0L) != 0L || (active1 & 0xffef9fffffffdc01L) != 0L || (active2 & 0x9ae2fe1fffeb001fL) != 0L || (active3 & 0xf0ff2ecbf7ffd3ffL) != 0L || (active4 & 0xf4e26e000ebdfff7L) != 0L || (active5 & 0x2fc361f9beeffef9L) != 0L || (active6 & 0xff7fcff4fff06fb0L) != 0L || (active7 & 0xffff6fdfffffffa1L) != 0L || (active8 & 0xffffffffbe9a7fafL) != 0L || (active9 & 0xd0017fdffff7ffffL) != 0L || (active10 & 0xc2fff41fffde3fffL) != 0L || (active11 & 0xffcff7f061L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 3; } - return 94; + return 95; } + if ((active0 & 0x6631400000000000L) != 0L || (active1 & 0x106000000023feL) != 0L || (active2 & 0x51001e000047fe0L) != 0L || (active3 & 0xd00803400000c00L) != 0L || (active4 & 0x31d807ff0400000L) != 0L || (active5 & 0x803c140640000000L) != 0L || (active6 & 0x8010030007800cL) != 0L || (active7 & 0x80200000001eL) != 0L || (active8 & 0x1650050L) != 0L || (active9 & 0xffe800000080000L) != 0L || (active10 & 0x3d000be00021c000L) != 0L || (active11 & 0x3008071eL) != 0L) + return 95; + if ((active2 & 0x4000000000000000L) != 0L) + return 98; return -1; case 4: - if ((active0 & 0x1c001e8cc00L) != 0L || (active1 & 0x4400000014401L) != 0L || (active2 & 0xa0800000c0000008L) != 0L || (active3 & 0x483f000083ec002L) != 0L || (active4 & 0xcba20240000001c0L) != 0L || (active5 & 0x1100629800087L) != 0L || (active6 & 0x240808100000008cL) != 0L || (active7 & 0x1e400060010000L) != 0L || (active8 & 0x20100L) != 0L || (active9 & 0x1c00103800L) != 0L || (active10 & 0x9012007d05030001L) != 0L || (active11 & 0x21801440L) != 0L) - return 94; - if ((active0 & 0xd9e29e2f780120e0L) != 0L || (active1 & 0xfff3affffffe9bfcL) != 0L || (active2 & 0x592e2ffd3ffe9fa7L) != 0L || (active3 & 0x7b0c02ecb7413dbdL) != 0L || (active4 & 0x4155933f8ebde3fL) != 0L || (active5 & 0x817ecb09c4777f70L) != 0L || (active6 & 0x83f5f72fd3ffdd31L) != 0L || (active7 & 0xd7e1bdbf1ffefffeL) != 0L || (active8 & 0xffffffffffdd4c3fL) != 0L || (active9 & 0xffeffca3efefc3ffL) != 0L || (active10 & 0xb68bf80f2fcf75eL) != 0L || (active11 & 0x1e73ebbcL) != 0L) + if ((active0 & 0xd9e29e2f780120e0L) != 0L || (active1 & 0xffe75ffffffe9bfcL) != 0L || (active2 & 0x92e2ffd3ffeb7f4fL) != 0L || (active3 & 0xb0c02ecb7413dbd5L) != 0L || (active4 & 0x82ab267f8ebde3f7L) != 0L || (active5 & 0x2fd961388eefee00L) != 0L || (active6 & 0xfd7dcbf4fff74e30L) != 0L || (active7 & 0xc37f6fc7ffbfffa0L) != 0L || (active8 & 0xffffffffba987fafL) != 0L || (active9 & 0xdff947dfdf87ffffL) != 0L || (active10 & 0xa2fe03cbf3debdffL) != 0L || (active11 & 0x79cfaef02dL) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 4; } - return 94; + return 95; } - if ((active2 & 0x400000000000000L) != 0L) + if ((active0 & 0x1c001e8cc00L) != 0L || (active1 & 0x8800000014401L) != 0L || (active2 & 0x800000c00000010L) != 0L || (active3 & 0x483f000083ec002aL) != 0L || (active4 & 0x7440480000001c00L) != 0L || (active5 & 0x2200c5300010f9L) != 0L || (active6 & 0x202040000002180L) != 0L || (active7 & 0x3c80001800400009L) != 0L || (active8 & 0x4020000L) != 0L || (active9 & 0x380020700000L) != 0L || (active10 & 0x4801f4140c000200L) != 0L || (active11 & 0x8600510240L) != 0L) + return 95; + if ((active2 & 0x4000000000000000L) != 0L) return 98; return -1; case 5: - if ((active0 & 0xd9c2878e79c02040L) != 0L || (active1 & 0xfff1afffe67e9bfcL) != 0L || (active2 & 0x192e07fd20fc9fa1L) != 0L || (active3 & 0x3909a0e4364834b0L) != 0L || (active4 & 0x87145933f8cbda3fL) != 0L || (active5 & 0x344b09c4147737L) != 0L || (active6 & 0x83b5f72bd37fdc18L) != 0L || (active7 & 0xc61c1dbd000efffeL) != 0L || (active8 & 0xffffffffffdc4433L) != 0L || (active9 & 0xffeffcb84f6da3ffL) != 0L || (active10 & 0xa28bfc0f038f35eL) != 0L || (active11 & 0x1e73efdcL) != 0L) + if ((active0 & 0x201821000100a0L) != 0L || (active1 & 0x4000019800000L) != 0L || (active2 & 0x28001f020000cL) != 0L || (active3 & 0x20602088101090d4L) != 0L || (active4 & 0x20000002004004L) != 0L || (active5 & 0x295000002c610800L) != 0L || (active6 & 0x1000010020004830L) != 0L || (active7 & 0xc3400087fc000000L) != 0L || (active8 & 0x2101823L) != 0L || (active9 & 0x74104800000L) != 0L || (active10 & 0x800b10100000L) != 0L || (active11 & 0x8005L) != 0L) + return 95; + if ((active2 & 0x4000000000000000L) != 0L) + return 98; + if ((active0 & 0xd9c2878e79c02040L) != 0L || (active1 & 0xffe35fffe67e9bfcL) != 0L || (active2 & 0x92e07fd20fcb7f43L) != 0L || (active3 & 0x909a0e4364834b01L) != 0L || (active4 & 0xe28b267f8cbda3f3L) != 0L || (active5 & 0x6896138828ee6f0L) != 0L || (active6 & 0xed7dcaf4dff70700L) != 0L || (active7 & 0x383f6f4003bfffa0L) != 0L || (active8 & 0xffffffffb888678cL) != 0L || (active9 & 0xdff9709edb47ffffL) != 0L || (active10 & 0xa2ff03c0e3cebdffL) != 0L || (active11 & 0x79cfbf7028L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 5; } - return 94; + return 95; } - if ((active0 & 0x201821000100a0L) != 0L || (active1 & 0x2000019800000L) != 0L || (active2 & 0x400028001f020006L) != 0L || (active3 & 0x420602088101090dL) != 0L || (active4 & 0x1000000200400L) != 0L || (active5 & 0x814a800001630840L) != 0L || (active6 & 0x40000400800121L) != 0L || (active7 & 0x11e1a0021ff00000L) != 0L || (active8 & 0x1080cL) != 0L || (active9 & 0x3a0824000L) != 0L || (active10 & 0x140002002c40400L) != 0L || (active11 & 0x20L) != 0L) - return 94; - if ((active2 & 0x400000000000000L) != 0L) - return 98; return -1; case 6: - if ((active0 & 0x40038e79c02040L) != 0L || (active1 & 0x11a7f8f73c9bfcL) != 0L || (active2 & 0x190007fc20c09fa4L) != 0L || (active3 & 0x390980c430481028L) != 0L || (active4 & 0x3100933f8839a0eL) != 0L || (active5 & 0x304b00c4147736L) != 0L || (active6 & 0x80317600025fd418L) != 0L || (active7 & 0xc41d198107c85f7eL) != 0L || (active8 & 0xfffffffff7dc400bL) != 0L || (active9 & 0xffe7fcbb4f6da3ffL) != 0L || (active10 & 0x288340f000e140L) != 0L || (active11 & 0x12136ff4L) != 0L) + if ((active0 & 0xd982840000000000L) != 0L || (active1 & 0xffc0100700420000L) != 0L || (active2 & 0x2e0001063c00003L) != 0L || (active3 & 0x2020060024900L) != 0L || (active4 & 0x808a000004840310L) != 0L || (active5 & 0x80012000400030L) != 0L || (active6 & 0xe1204af448020620L) != 0L || (active7 & 0x10f0201a82000L) != 0L || (active8 & 0x1000086006L) != 0L || (active9 & 0x1000000000000000L) != 0L || (active10 & 0xf20000e0483c00L) != 0L || (active11 & 0x3182002028L) != 0L) + return 95; + if ((active0 & 0x40038e79c02040L) != 0L || (active1 & 0x234ff8f73c9bfcL) != 0L || (active2 & 0x90007fc20c0b7f48L) != 0L || (active3 & 0x90980c4304810281L) != 0L || (active4 & 0x6201267f8839a0e3L) != 0L || (active5 & 0x6096018828ee6c0L) != 0L || (active6 & 0xc5d800097f50100L) != 0L || (active7 & 0x3a3e6041f217dfa0L) != 0L || (active8 & 0xffffffefb8801788L) != 0L || (active9 & 0xcff9769edb47ffffL) != 0L || (active10 & 0xa20d03c0038681ffL) != 0L || (active11 & 0x484dbfd000L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 6; } - return 94; + return 95; } - if ((active0 & 0xd982840000000000L) != 0L || (active1 & 0xffe0080700420000L) != 0L || (active2 & 0x2e0001063c0001L) != 0L || (active3 & 0x202006002490L) != 0L || (active4 & 0x8404500000484031L) != 0L || (active5 & 0x4000900020001L) != 0L || (active6 & 0x384812bd1200801L) != 0L || (active7 & 0x300043c0806a080L) != 0L || (active8 & 0x8000430L) != 0L || (active9 & 0x8000000000000L) != 0L || (active10 & 0xa003c800038121eL) != 0L || (active11 & 0xc608008L) != 0L) - return 94; - if ((active2 & 0x400000000000000L) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) return 98; return -1; case 7: - if ((active0 & 0x100000000002040L) != 0L || (active1 & 0x60000008000L) != 0L || (active2 & 0x100068400a00f20L) != 0L || (active3 & 0x101008400001000L) != 0L || (active4 & 0x12000020800L) != 0L || (active5 & 0x400084140030L) != 0L || (active6 & 0x201160000000408L) != 0L || (active7 & 0x400080100081e00L) != 0L || (active8 & 0x1a000001d09c4001L) != 0L || (active9 & 0x40008008000000L) != 0L || (active10 & 0x8014000000100L) != 0L || (active11 & 0x22004L) != 0L) - return 94; - if ((active2 & 0x400000000000000L) != 0L) - return 98; - if ((active0 & 0x1040038e79c00000L) != 0L || (active1 & 0xffd1a1fef73c1bfcL) != 0L || (active2 & 0x180c017820409085L) != 0L || (active3 & 0x3808804030480028L) != 0L || (active4 & 0x3100813f881922eL) != 0L || (active5 & 0x300b0040007706L) != 0L || (active6 & 0x80306003825fd010L) != 0L || (active7 & 0xc01d11b807c0417eL) != 0L || (active8 & 0xe5fffffe2740002aL) != 0L || (active9 & 0xffa7fc3b476da3ffL) != 0L || (active10 & 0x20a200f000e05cL) != 0L || (active11 & 0x12114ff0L) != 0L) + if ((active0 & 0x1040038e79c00000L) != 0L || (active1 & 0xffa341fef73c1bfcL) != 0L || (active2 & 0x80c01782040b030bL) != 0L || (active3 & 0x8088040304800281L) != 0L || (active4 & 0x6201027f881922e3L) != 0L || (active5 & 0x6016008000ee0c0L) != 0L || (active6 & 0xc1800e097f40400L) != 0L || (active7 & 0x3a2e6e01f0105fa0L) != 0L || (active8 & 0xfffffc4e80005580L) != 0L || (active9 & 0x4ff8768edb47ffcbL) != 0L || (active10 & 0x828803c00380b9ffL) != 0L || (active11 & 0x48453fc000L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 7; } - return 94; + return 95; } + if ((active0 & 0x100000000002040L) != 0L || (active1 & 0xe0000008000L) != 0L || (active2 & 0x100068400a007c40L) != 0L || (active3 & 0x1010084000010000L) != 0L || (active4 & 0x240000208000L) != 0L || (active5 & 0x8001082800600L) != 0L || (active6 & 0x8045800000010100L) != 0L || (active7 & 0x10004002078000L) != 0L || (active8 & 0x3a138800208L) != 0L || (active9 & 0x8001001000000034L) != 0L || (active10 & 0x2005000000060000L) != 0L || (active11 & 0x8801000L) != 0L) + return 95; + if ((active2 & 0x4000000000000000L) != 0L) + return 98; return -1; case 8: - if ((active0 & 0x1040018869800000L) != 0L || (active1 & 0xffc121fe07001804L) != 0L || (active2 & 0x100c017820408e85L) != 0L || (active3 & 0x2000800010080000L) != 0L || (active4 & 0x100813f8001200L) != 0L || (active5 & 0x30000040007706L) != 0L || (active6 & 0x10040382001010L) != 0L || (active7 & 0x1d013803c04166L) != 0L || (active8 & 0xf59ffff62758002aL) != 0L || (active9 & 0x87a6081b016583ffL) != 0L || (active10 & 0x202000f000c05cL) != 0L || (active11 & 0x121047d0L) != 0L) + if ((active0 & 0x1040018869800000L) != 0L || (active1 & 0xff8245fe07001804L) != 0L || (active2 & 0xc0178204087a0bL) != 0L || (active3 & 0x8000100800001L) != 0L || (active4 & 0x201027f80012002L) != 0L || (active5 & 0x6000008000ee0c0L) != 0L || (active6 & 0x40100e080040400L) != 0L || (active7 & 0x3a0c4e00f0105980L) != 0L || (active8 & 0x3fffec4eb0005400L) != 0L || (active9 & 0x4c103602cb07ffebL) != 0L || (active10 & 0x808003c00300b90fL) != 0L || (active11 & 0x48411f4000L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 8; } - return 94; + return 95; } - if ((active0 & 0x20610400000L) != 0L || (active1 & 0x108000f03c03f8L) != 0L || (active2 & 0x800000000001000L) != 0L || (active3 & 0x1808004020400028L) != 0L || (active4 & 0x30000000081802eL) != 0L || (active5 & 0xb0000000000L) != 0L || (active6 & 0x80206000005fc000L) != 0L || (active7 & 0xc000108004000018L) != 0L || (active8 & 0x60000800000000L) != 0L || (active9 & 0x7801f42046082000L) != 0L || (active10 & 0x820000002000L) != 0L || (active11 & 0x10820L) != 0L) - return 94; + if ((active0 & 0x20610400000L) != 0L || (active1 & 0x210000f03c03f8L) != 0L || (active2 & 0x8000000000030100L) != 0L || (active3 & 0x8080040204000280L) != 0L || (active4 & 0x60000000081802e1L) != 0L || (active5 & 0x1600000000000L) != 0L || (active6 & 0x818000017f00000L) != 0L || (active7 & 0x22200100000620L) != 0L || (active8 & 0xc000100000000180L) != 0L || (active9 & 0x3e8408c10400000L) != 0L || (active10 & 0x2080000008000f0L) != 0L || (active11 & 0x4208000L) != 0L) + return 95; return -1; case 9: - if ((active0 & 0x1040018801800000L) != 0L || (active1 & 0xffc02100c73811f4L) != 0L || (active2 & 0x100c006800000e05L) != 0L || (active3 & 0x3000800010080000L) != 0L || (active4 & 0x2000000e0011200L) != 0L || (active5 & 0x30000000003706L) != 0L || (active6 & 0x403821f8000L) != 0L || (active7 & 0x15003803c00044L) != 0L || (active8 & 0xf59ffff22058002aL) != 0L || (active9 & 0xc7a7e013046103ffL) != 0L || (active10 & 0x200000f000c01cL) != 0L || (active11 & 0x100042d0L) != 0L) + if ((active0 & 0x468000000L) != 0L || (active1 & 0x200fe00000a00L) != 0L || (active2 & 0x110204080200L) != 0L || (active4 & 0x201027180000000L) != 0L || (active5 & 0x400800080000L) != 0L || (active6 & 0x400000000040400L) != 0L || (active7 & 0x1000400000104880L) != 0L || (active8 & 0x80e00000000L) != 0L || (active9 & 0x10100209000000L) != 0L || (active10 & 0x80000000008020L) != 0L || (active11 & 0x840140000L) != 0L) + return 95; + if ((active0 & 0x1040018801800000L) != 0L || (active1 & 0xff804500c73811f4L) != 0L || (active2 & 0xc006800000780bL) != 0L || (active3 & 0x8000100800001L) != 0L || (active4 & 0x4000000e00112003L) != 0L || (active5 & 0x60000000006e0c0L) != 0L || (active6 & 0x100e087e00000L) != 0L || (active7 & 0x2a0c0e00f0001100L) != 0L || (active8 & 0x3fffe440b0005400L) != 0L || (active9 & 0x4fc02608c207ffebL) != 0L || (active10 & 0x800003c00300398fL) != 0L || (active11 & 0x40010b4000L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 9; } - return 94; + return 95; } - if ((active0 & 0x468000000L) != 0L || (active1 & 0x100fe00000a00L) != 0L || (active2 & 0x11020408080L) != 0L || (active4 & 0x10081318000000L) != 0L || (active5 & 0x20040004000L) != 0L || (active6 & 0x10000000001010L) != 0L || (active7 & 0x8010000004122L) != 0L || (active8 & 0x407000000L) != 0L || (active9 & 0x1000080801048000L) != 0L || (active10 & 0x200000000040L) != 0L || (active11 & 0x2100500L) != 0L) - return 94; return -1; case 10: - if ((active0 & 0x1000010801800000L) != 0L || (active1 & 0xf7c02074863811f0L) != 0L || (active2 & 0x100c002000000e01L) != 0L || (active3 & 0x2000800000000000L) != 0L || (active4 & 0x200000010011000L) != 0L || (active5 & 0x30000000000706L) != 0L || (active6 & 0x403801f8000L) != 0L || (active7 & 0x14003803c00040L) != 0L || (active8 & 0x951fffe000580022L) != 0L || (active9 & 0x4027e000042001ffL) != 0L || (active10 & 0x200000f000801cL) != 0L || (active11 & 0x10000050L) != 0L) + if ((active0 & 0x40008000000000L) != 0L || (active1 & 0x1000018041000004L) != 0L || (active2 & 0x48000000008L) != 0L || (active3 & 0x100800000L) != 0L || (active4 & 0xe00002001L) != 0L || (active5 & 0x60000L) != 0L || (active6 & 0x80000000L) != 0L || (active7 & 0x204000000000100L) != 0L || (active8 & 0x244000001000L) != 0L || (active9 & 0x2600820400c1L) != 0L || (active10 & 0x100010fL) != 0L || (active11 & 0x10a0000L) != 0L) + return 95; + if ((active0 & 0x1000010801800000L) != 0L || (active1 & 0xef804474863811f0L) != 0L || (active2 & 0xc0020000007803L) != 0L || (active3 & 0x8000000000001L) != 0L || (active4 & 0x4000000100110002L) != 0L || (active5 & 0x60000000000e0c0L) != 0L || (active6 & 0x100e007e00000L) != 0L || (active7 & 0x28080e00f0001000L) != 0L || (active8 & 0x3fffc000b0004400L) != 0L || (active9 & 0x4fc000084003ff2aL) != 0L || (active10 & 0x800003c002003880L) != 0L || (active11 & 0x4000014000L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 10; } - return 94; + return 95; } - if ((active0 & 0x40008000000000L) != 0L || (active1 & 0x800018041000004L) != 0L || (active2 & 0x4800000004L) != 0L || (active3 & 0x1000000010080000L) != 0L || (active4 & 0xe0000200L) != 0L || (active5 & 0x3000L) != 0L || (active6 & 0x2000000L) != 0L || (active7 & 0x1000000000004L) != 0L || (active8 & 0x6080001220000008L) != 0L || (active9 & 0x8780001300410200L) != 0L || (active10 & 0x4000L) != 0L || (active11 & 0x4280L) != 0L) - return 94; return -1; case 11: - if ((active0 & 0x10801800000L) != 0L || (active1 & 0x91402074863801f0L) != 0L || (active2 & 0x100c002000000e00L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000090000000L) != 0L || (active5 & 0x10000000000304L) != 0L || (active6 & 0x401801f8000L) != 0L || (active7 & 0x4002803c00040L) != 0L || (active8 & 0x901fffe000080000L) != 0L || (active9 & 0x4727c0000420013eL) != 0L || (active10 & 0xf0008014L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000000000000L) != 0L || (active1 & 0xcd00000000001000L) != 0L || (active2 & 0x2L) != 0L || (active3 & 0x8000000000000L) != 0L || (active4 & 0x110000L) != 0L || (active5 & 0x400000000008040L) != 0L || (active6 & 0x8000000000L) != 0L || (active7 & 0x2008040000000000L) != 0L || (active8 & 0xa0004400L) != 0L || (active9 & 0x4000000001820aL) != 0L || (active10 & 0x8000000000001000L) != 0L || (active11 & 0x4000L) != 0L) + return 95; + if ((active0 & 0x10801800000L) != 0L || (active1 & 0x22804474863801f0L) != 0L || (active2 & 0xc0020000007801L) != 0L || (active3 & 0x1L) != 0L || (active4 & 0x4000000900000002L) != 0L || (active5 & 0x200000000006080L) != 0L || (active6 & 0x1006007e00000L) != 0L || (active7 & 0x8000a00f0001000L) != 0L || (active8 & 0x3fffc00010000000L) != 0L || (active9 & 0x4f80000840027d20L) != 0L || (active10 & 0x3c00200288eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 11; } - return 94; + return 95; } - if ((active0 & 0x1000000000000000L) != 0L || (active1 & 0x6680000000001000L) != 0L || (active2 & 0x1L) != 0L || (active3 & 0x800000000000L) != 0L || (active4 & 0x11000L) != 0L || (active5 & 0x20000000000402L) != 0L || (active6 & 0x200000000L) != 0L || (active7 & 0x10001000000000L) != 0L || (active8 & 0x500000000500022L) != 0L || (active9 & 0x2000000000c1L) != 0L || (active10 & 0x20000000000008L) != 0L || (active11 & 0x10L) != 0L) - return 94; return -1; case 12: - if ((active0 & 0x800000000L) != 0L || (active1 & 0x200000000000L) != 0L || (active2 & 0x1000002000000200L) != 0L || (active4 & 0x10000000L) != 0L || (active8 & 0x1000000000080000L) != 0L || (active9 & 0x2400000000108L) != 0L || (active10 & 0x8000L) != 0L) - return 94; - if ((active0 & 0x10001800000L) != 0L || (active1 & 0xd1400074863801f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000080000000L) != 0L || (active5 & 0x10000000000304L) != 0L || (active6 & 0x401801f8000L) != 0L || (active7 & 0x4002803c00040L) != 0L || (active8 & 0x801fffe000000000L) != 0L || (active9 & 0x4725800004200036L) != 0L || (active10 & 0xf0000014L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x10001800000L) != 0L || (active1 & 0xa2800474863801f0L) != 0L || (active2 & 0xc0000000007001L) != 0L || (active4 & 0x4000000800000002L) != 0L || (active5 & 0x200000000006080L) != 0L || (active6 & 0x1006007e00000L) != 0L || (active7 & 0x8000a00f0001000L) != 0L || (active8 & 0x3fffc00000000000L) != 0L || (active9 & 0x4b00000840006d00L) != 0L || (active10 & 0x3c00000288eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 12; - return 94; + return 95; } + if ((active0 & 0x800000000L) != 0L || (active1 & 0x400000000000L) != 0L || (active2 & 0x20000000800L) != 0L || (active3 & 0x1L) != 0L || (active4 & 0x100000000L) != 0L || (active8 & 0x10000000L) != 0L || (active9 & 0x480000000021020L) != 0L || (active10 & 0x2000000L) != 0L) + return 95; return -1; case 13: - if ((active1 & 0x1000000000100000L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000080000000L) != 0L || (active5 & 0x100L) != 0L || (active6 & 0x40000018000L) != 0L || (active7 & 0x4002000000040L) != 0L || (active9 & 0x800000000024L) != 0L || (active10 & 0x10L) != 0L) - return 94; - if ((active0 & 0x10001800000L) != 0L || (active1 & 0xc1400074862801f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active5 & 0x10000000000204L) != 0L || (active6 & 0x1801e0000L) != 0L || (active7 & 0x803c00000L) != 0L || (active8 & 0x801fffe000000000L) != 0L || (active9 & 0x4725000004200012L) != 0L || (active10 & 0xf0000004L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x10001800000L) != 0L || (active1 & 0x82800474862801f0L) != 0L || (active2 & 0xc0000000003001L) != 0L || (active5 & 0x200000000004080L) != 0L || (active6 & 0x6007800000L) != 0L || (active7 & 0x200f0000000L) != 0L || (active8 & 0x3fffc00000000000L) != 0L || (active9 & 0x4a00000840002500L) != 0L || (active10 & 0x3c00000088eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 13; - return 94; + return 95; } + if ((active1 & 0x2000000000100000L) != 0L || (active2 & 0x4000L) != 0L || (active4 & 0x4000000800000002L) != 0L || (active5 & 0x2000L) != 0L || (active6 & 0x1000000600000L) != 0L || (active7 & 0x800080000001000L) != 0L || (active9 & 0x100000000004800L) != 0L || (active10 & 0x2000L) != 0L) + return 95; return -1; case 14: - if ((active0 & 0x1800000L) != 0L || (active1 & 0xc1000050862800f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active5 & 0x10000000000200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x3400000L) != 0L || (active8 & 0x8017ffe000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x10000000000L) != 0L || (active1 & 0x80042400000100L) != 0L || (active5 & 0x80L) != 0L || (active6 & 0x6000000000L) != 0L || (active7 & 0x20020000000L) != 0L || (active8 & 0x1000000000000000L) != 0L || (active9 & 0x4a00000840002000L) != 0L || (active10 & 0x880L) != 0L) + return 95; + if ((active0 & 0x1800000L) != 0L || (active1 & 0x82000050862800f0L) != 0L || (active2 & 0xc0000000003001L) != 0L || (active5 & 0x200000000004000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0xd0000000L) != 0L || (active8 & 0x2fffc00000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 14; - return 94; + return 95; } - if ((active0 & 0x10000000000L) != 0L || (active1 & 0x40002400000100L) != 0L || (active5 & 0x4L) != 0L || (active6 & 0x180000000L) != 0L || (active7 & 0x800800000L) != 0L || (active8 & 0x8000000000000L) != 0L || (active9 & 0x4025000004200010L) != 0L || (active10 & 0x4L) != 0L) - return 94; return -1; case 15: - if ((active0 & 0x800000L) != 0L || (active1 & 0x86200010L) != 0L || (active2 & 0xc000000000000L) != 0L || (active8 & 0x1001e000000000L) != 0L) - return 94; - if ((active0 & 0x1000000L) != 0L || (active1 & 0xc1000050000800e0L) != 0L || (active2 & 0xc00L) != 0L || (active5 & 0x10000000000200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x3400000L) != 0L || (active8 & 0x8007fe0000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x800000L) != 0L || (active1 & 0x86200010L) != 0L || (active2 & 0xc0000000000000L) != 0L || (active8 & 0x2003c00000000000L) != 0L) + return 95; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x82000050000800e0L) != 0L || (active2 & 0x3001L) != 0L || (active5 & 0x200000000004000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0xd0000000L) != 0L || (active8 & 0xffc000000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 15; } - return 94; + return 95; } return -1; case 16: - if ((active1 & 0x4000004000080000L) != 0L || (active5 & 0x10000000000000L) != 0L || (active7 & 0x2000000L) != 0L || (active8 & 0x70e0000000000L) != 0L) - return 94; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000010040000e0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x8000f1c000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000010040000e0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x1e3800000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 16; } - return 94; + return 95; } + if ((active1 & 0x8000004000080000L) != 0L || (active5 & 0x200000000000000L) != 0L || (active7 & 0x80000000L) != 0L || (active8 & 0xe1c000000000000L) != 0L) + return 95; return -1; case 17: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000000040000a0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x8002bdc000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000000040000a0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x57b800000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 17; - return 94; + return 95; } - if ((active1 & 0x1000000040L) != 0L || (active8 & 0x400000000000L) != 0L) - return 94; + if ((active1 & 0x1000000040L) != 0L || (active8 & 0x80000000000000L) != 0L) + return 95; return -1; case 18: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000000040000a0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x20dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active8 & 0x160000000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x2L) != 0L) + return 95; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000000040000a0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x41b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 18; } - return 94; + return 95; } - if ((active8 & 0x8000b00000000000L) != 0L || (active9 & 0x100000000000002L) != 0L) - return 94; return -1; case 19: - if ((active1 & 0x80L) != 0L || (active5 & 0x200L) != 0L || (active7 & 0x400000L) != 0L) - return 94; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x8100000004000020L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1000000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x80L) != 0L || (active5 & 0x4000L) != 0L || (active7 & 0x10000000L) != 0L) + return 95; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x200000004000020L) != 0L || (active2 & 0x80000000003001L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x40000000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 19; - return 94; + return 95; } return -1; case 20: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0xc00L) != 0L || (active6 & 0x1e0000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020L) != 0L || (active2 & 0x80000000000000L) != 0L || (active7 & 0x40000000L) != 0L) + return 95; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x3001L) != 0L || (active6 & 0x7800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 20; - return 94; + return 95; } - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020L) != 0L || (active2 & 0x8000000000000L) != 0L || (active7 & 0x1000000L) != 0L) - return 94; return -1; case 21: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x1e0000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x90000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active2 & 0x1000L) != 0L || (active10 & 0x18000000004L) != 0L) + return 95; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x7800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x24000000008L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 21; - return 94; + return 95; } - if ((active2 & 0x400L) != 0L || (active9 & 0x200000000000000L) != 0L || (active10 & 0x60000000L) != 0L) - return 94; return -1; case 22: - if ((active6 & 0x80000L) != 0L) - return 94; - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x160000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x90000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x5800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x24000000008L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 22; - return 94; + return 95; } + if ((active6 & 0x2000000L) != 0L) + return 95; return -1; case 23: - if ((active8 & 0x4000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x80000000L) != 0L) - return 94; - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x160000L) != 0L || (active8 & 0x22d8000000000L) != 0L || (active10 & 0x10000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x5800000L) != 0L || (active8 & 0x45b000000000000L) != 0L || (active10 & 0x4000000000L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 23; - return 94; + return 95; } + if ((active8 & 0x800000000000L) != 0L || (active10 & 0x20000000008L) != 0L) + return 95; return -1; case 24: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x60000L) != 0L || (active8 & 0x22d8000000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active6 & 0x4000000L) != 0L || (active10 & 0x4000000000L) != 0L) + return 95; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x1800000L) != 0L || (active8 & 0x45b000000000000L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 24; - return 94; + return 95; } - if ((active6 & 0x100000L) != 0L || (active10 & 0x10000000L) != 0L) - return 94; return -1; case 25: - if ((active6 & 0x60000L) != 0L || (active8 & 0x2018000000000L) != 0L || (active11 & 0x40L) != 0L) - return 94; - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active8 & 0x2c0000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active6 & 0x1800000L) != 0L || (active8 & 0x403000000000000L) != 0L || (active11 & 0x10000L) != 0L) + return 95; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active8 & 0x58000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 25; - return 94; + return 95; } return -1; case 26: - if ((active2 & 0x800L) != 0L || (active8 & 0xc0000000000L) != 0L) - return 94; - if ((active1 & 0x8100000000000000L) != 0L || (active8 & 0x200000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active8 & 0x40000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 26; - return 94; + return 95; } + if ((active2 & 0x2000L) != 0L || (active8 & 0x18000000000000L) != 0L) + return 95; return -1; case 27: - if ((active1 & 0x8100000000000000L) != 0L || (active8 & 0x200000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active8 & 0x40000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 27; - return 94; + return 95; } return -1; case 28: - if ((active1 & 0x8100000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active8 & 0x40000000000000L) != 0L) + return 95; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 28; - return 94; + return 95; } - if ((active8 & 0x200000000000L) != 0L) - return 94; return -1; case 29: - if ((active1 & 0x8100000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 29; - return 94; + return 95; } return -1; case 30: - if ((active1 & 0x8000000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L) + return 95; + if ((active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 30; - return 94; + return 95; } - if ((active1 & 0x100000000000000L) != 0L) - return 94; return -1; case 31: - if ((active1 & 0x8000000000000000L) != 0L) - return 94; - if ((active11 & 0x10000000L) != 0L) + if ((active2 & 0x1L) != 0L) + return 95; + if ((active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 31; - return 94; + return 95; } return -1; case 32: - if ((active11 & 0x10000000L) != 0L) + if ((active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 32; - return 94; + return 95; } return -1; default : @@ -11425,146 +11493,147 @@ private final int jjMoveStringLiteralDfa0_2() { case 33: jjmatchedKind = 1; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L); case 34: - return jjStopAtPos(0, 780); + return jjStopAtPos(0, 791); case 36: - return jjStartNfaWithStates_2(0, 783, 94); + return jjStartNfaWithStates_2(0, 794, 95); case 37: - return jjStopAtPos(0, 775); + return jjStopAtPos(0, 786); case 39: - return jjStartNfaWithStates_2(0, 779, 63); + return jjStartNfaWithStates_2(0, 790, 63); case 40: - return jjStopAtPos(0, 749); + return jjStopAtPos(0, 759); case 41: - return jjStopAtPos(0, 750); + return jjStopAtPos(0, 760); case 42: - jjmatchedKind = 773; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000L); + jjmatchedKind = 784; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); case 43: - return jjStopAtPos(0, 771); + return jjStopAtPos(0, 781); case 44: - return jjStopAtPos(0, 761); + return jjStopAtPos(0, 771); case 45: - return jjStartNfaWithStates_2(0, 772, 23); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L); case 46: - jjmatchedKind = 760; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L); + jjmatchedKind = 770; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L); case 47: - jjmatchedKind = 774; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2400000L); + jjmatchedKind = 785; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1200000000L); case 58: - jjmatchedKind = 766; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L); + jjmatchedKind = 776; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 59: - return jjStopAtPos(0, 759); + return jjStopAtPos(0, 769); case 60: - jjmatchedKind = 764; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000000000L, 0x2L); + jjmatchedKind = 774; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa00L); case 61: - jjmatchedKind = 762; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200L); + jjmatchedKind = 772; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); case 62: - jjmatchedKind = 763; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1L); + jjmatchedKind = 773; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L); case 63: - return jjStopAtPos(0, 765); + return jjStopAtPos(0, 775); case 91: - return jjStopAtPos(0, 757); + return jjStopAtPos(0, 767); case 93: - return jjStopAtPos(0, 758); + return jjStopAtPos(0, 768); case 94: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 793); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_2(0x1ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8800030L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x1ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x220000c000L, 0x0L); case 66: case 98: - return jjMoveStringLiteralDfa1_2(0x7ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x7ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000L, 0x0L); case 67: case 99: jjmatchedKind = 51; - return jjMoveStringLiteralDfa1_2(0xfff0000000000000L, 0xffffffffffffffffL, 0xfL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x500180L, 0x0L); + return jjMoveStringLiteralDfa1_2(0xfff0000000000000L, 0xffffffffffffffffL, 0x1fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140060000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0xffffffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0xffffffffffffe0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0xfff0000000000000L, 0x3fffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0xff00000000000000L, 0x3ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L, 0x0L); case 70: case 102: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0xfffffc000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0xfffffc0000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 71: case 103: - jjmatchedKind = 228; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x3ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + jjmatchedKind = 232; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x3ffe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 72: case 104: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0xfc000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0xfc0000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0xff00000000000000L, 0xffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x5002L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0xf000000000000000L, 0xfffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1400800L, 0x0L); case 74: case 106: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x3ff000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x7ff0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: - jjmatchedKind = 290; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x3800000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); + jjmatchedKind = 295; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x70000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xfffffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0x1L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L, 0x0L); case 77: case 109: - jjmatchedKind = 316; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0xfffffffL, 0x0L, 0x0L, 0x100L, 0x0L, 0x0L, 0x10000000L, 0x0L); + jjmatchedKind = 321; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1fffffffcL, 0x0L, 0x0L, 0x20000L, 0x0L, 0x0L, 0x4000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffffe00000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 79: case 111: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff8000000000000L, 0x1fffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xff00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffffffffe000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x22000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffffffffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8800000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x380000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfc00000000000000L, 0x7ffffffffffL, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffffffffffffL, 0x0L, 0x0L, 0x0L, 0x1000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0xfffffffffffffeffL, 0x3ffffffffL, 0x0L, 0x2280000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffe000000000000L, 0xfffffffffffdffffL, 0x7ffffffffffL, 0x0L, 0x8a0000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffffffc00000000L, 0xfffL, 0x20000004L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0x3fffffL, 0x8000001000L, 0x0L); case 85: case 117: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffff000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffc00000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7ff000000000L, 0x400L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffc00000000000L, 0x100000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1fff800000000000L, 0x40L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfe00000000000000L, 0x1007fL, 0x0L); case 88: case 120: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000000000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80L, 0x0L); case 89: case 121: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x300L, 0x0L); case 90: case 122: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L, 0x0L); case 123: - return jjStartNfaWithStates_2(0, 755, 95); + return jjStartNfaWithStates_2(0, 765, 94); case 124: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 125: - return jjStopAtPos(0, 756); + return jjStopAtPos(0, 766); case 126: return jjStopAtPos(0, 2); default : @@ -11581,128 +11650,130 @@ private final int jjMoveStringLiteralDfa1_2(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x2000000L) != 0L) + if ((active12 & 0x1000000000L) != 0L) { - jjmatchedKind = 793; + jjmatchedKind = 804; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x400000L); + return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x200000000L); case 46: - if ((active12 & 0x400L) != 0L) - return jjStopAtPos(1, 778); + if ((active12 & 0x200000L) != 0L) + return jjStopAtPos(1, 789); break; case 47: - if ((active12 & 0x800000L) != 0L) - return jjStopAtPos(1, 791); + if ((active12 & 0x400000000L) != 0L) + return jjStopAtPos(1, 802); break; case 58: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); + if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; case 61: - if ((active11 & 0x8000000000000000L) != 0L) - return jjStopAtPos(1, 767); - else if ((active12 & 0x1L) != 0L) - return jjStopAtPos(1, 768); - else if ((active12 & 0x4L) != 0L) - return jjStopAtPos(1, 770); + if ((active12 & 0x200L) != 0L) + return jjStopAtPos(1, 777); + else if ((active12 & 0x400L) != 0L) + return jjStopAtPos(1, 778); + else if ((active12 & 0x1000L) != 0L) + return jjStopAtPos(1, 780); break; case 62: - if ((active12 & 0x2L) != 0L) - return jjStopAtPos(1, 769); - else if ((active12 & 0x200L) != 0L) - return jjStopAtPos(1, 777); + if ((active12 & 0x800L) != 0L) + return jjStopAtPos(1, 779); + else if ((active12 & 0x8000L) != 0L) + return jjStopAtPos(1, 783); + else if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); break; case 65: case 97: - return jjMoveStringLiteralDfa2_2(active0, 0x1ff0000000000000L, active1, 0L, active2, 0x10000000007ff0L, active3, 0x4000000004000L, active4, 0xe0001fc001000000L, active5, 0x1f000001fL, active6, 0xc0000001fffe000L, active7, 0x180000000000L, active8, 0L, active9, 0x1c00000000L, active10, 0xff000000000L, active11, 0x10022788L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x1ff0000000000000L, active1, 0L, active2, 0x10000000007ffe0L, active3, 0x40000000040000L, active4, 0x3f80010000000L, active5, 0x3e000003fcL, active6, 0x7fff80000L, active7, 0x3e000000000003L, active8, 0L, active9, 0x380000000000L, active10, 0x3fc00000000000L, active11, 0x40089e2000L, active12, 0L); case 66: case 98: - return jjMoveStringLiteralDfa2_2(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_2(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x70000600000000L, active6, 0L, active7, 0x3fe00000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0xe0000c000000000L, active6, 0L, active7, 0x7fc0000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L, active12, 0L); case 68: case 100: - return jjMoveStringLiteralDfa2_2(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x1000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_2(active0, 0xe00007e000000000L, active1, 0L, active2, 0x3fffff8000L, active3, 0x1e000008000L, active4, 0x3e03800000000L, active5, 0x3800000fe0L, active6, 0xf000000fe0000000L, active7, 0xffc000001fffffffL, active8, 0xffL, active9, 0x2000000000L, active10, 0xc003b00000001000L, active11, 0x4200004L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0xe00007e000000000L, active1, 0L, active2, 0x3fffff80000L, active3, 0x1e0000080000L, active4, 0x7c070000000000L, active5, 0x7000001fc00L, active6, 0x3f800000000L, active7, 0x80000007fffffffcL, active8, 0x1ffffL, active9, 0x400000000000L, active10, 0xec0000000400000L, active11, 0x1080001300L, active12, 0L); case 70: case 102: - if ((active5 & 0x80000000000000L) != 0L) + if ((active5 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 375; + jjmatchedKind = 380; jjmatchedPos = 1; } - else if ((active11 & 0x2L) != 0L) - return jjStartNfaWithStates_2(1, 705, 94); - return jjMoveStringLiteralDfa2_2(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L, active12, 0L); + else if ((active11 & 0x800L) != 0L) + return jjStartNfaWithStates_2(1, 715, 95); + return jjMoveStringLiteralDfa2_2(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000L, active12, 0L); case 71: case 103: - return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x200000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0x7ffL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200L, active9, 0xc000000000L, active10, 0x1c000000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0x7ffL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x40000L, active9, 0x1800000000000L, active10, 0x7000000000000000L, active11, 0L, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_2(active0, 0x380000000000L, active1, 0L, active2, 0x7c000000000L, active3, 0x80000000f0000L, active4, 0x3c000000000000L, active5, 0x7f000L, active6, 0x1000000000L, active7, 0x20000000L, active8, 0x1d00L, active9, 0xfff0000000000L, active10, 0x3e0400000000000L, active11, 0x40000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x380000000000L, active1, 0L, active2, 0x7c0000000000L, active3, 0x80000000f00000L, active4, 0x780000000000000L, active5, 0xfe0000L, active6, 0x40000000000L, active7, 0x800000000L, active8, 0x3a0000L, active9, 0x1ffe000000000000L, active10, 0x8100000000000000L, active11, 0x1000000fL, active12, 0L); case 75: case 107: - return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 76: case 108: - return jjMoveStringLiteralDfa2_2(active0, 0x40000001f000L, active1, 0x7800L, active2, 0x60000000000000L, active3, 0x400020000300000L, active4, 0L, active5, 0x200000000000000L, active6, 0xe000000000L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x40000001f000L, active1, 0x7800L, active2, 0x600000000000000L, active3, 0x4000200003000000L, active4, 0L, active5, 0x4000000000000000L, active6, 0x380000000000L, active7, 0x1000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 77: case 109: - return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0x80000000000000L, active3, 0x7800000000000000L, active4, 0L, active5, 0x400000000000000L, active6, 0L, active7, 0L, active8, 0x4000L, active9, 0L, active10, 0x2000000000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0x8000000000000000L, active4, 0x7L, active5, 0x8000000000000000L, active6, 0L, active7, 0L, active8, 0x800000L, active9, 0L, active10, 0L, active11, 0x80L, active12, 0L); case 78: case 110: - if ((active3 & 0x8000000000000000L) != 0L) + if ((active4 & 0x8L) != 0L) { - jjmatchedKind = 255; + jjmatchedKind = 259; jjmatchedPos = 1; } - else if ((active4 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(1, 310, 94); - else if ((active5 & 0x800000000000000L) != 0L) + else if ((active4 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_2(1, 315, 95); + else if ((active6 & 0x1L) != 0L) { - jjmatchedKind = 379; + jjmatchedKind = 384; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0x60000L, active1, 0L, active2, 0x1f00000000000000L, active3, 0L, active4, 0xfffffL, active5, 0x3000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7fe000L, active11, 0x8005800L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x60000L, active1, 0L, active2, 0xf000000000000000L, active3, 0x1L, active4, 0xfffff0L, active5, 0L, active6, 0x6L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1ff800000L, active11, 0x2001600000L, active12, 0L); case 79: case 111: - if ((active3 & 0x40000000000L) != 0L) + if ((active3 & 0x400000000000L) != 0L) { - jjmatchedKind = 234; + jjmatchedKind = 238; jjmatchedPos = 1; } - else if ((active5 & 0x4000000000L) != 0L) + else if ((active5 & 0x80000000000L) != 0L) { - jjmatchedKind = 358; + jjmatchedKind = 363; jjmatchedPos = 1; } - else if ((active9 & 0x10000000000000L) != 0L) + else if ((active9 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 628; + jjmatchedKind = 637; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0x1800000000000L, active1, 0x1ffffffff8000L, active2, 0xf80000000000L, active3, 0xf008000fc00000L, active4, 0xf80000002000000L, active5, 0x78003f80000L, active6, 0xf0000000000L, active7, 0x3ff80000000L, active8, 0x18000L, active9, 0x20000000000000L, active10, 0x400000000000000L, active11, 0x20518001L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x1800000000000L, active1, 0x3ffffffff8000L, active2, 0xf800000000000L, active3, 0xf008000fc000000L, active4, 0xf000000020000000L, active5, 0xf0007f000001L, active6, 0x3c00000000000L, active7, 0xffe000000000L, active8, 0x3000000L, active9, 0x4000000000000000L, active10, 0L, active11, 0x8146000410L, active12, 0L); case 80: case 112: - return jjMoveStringLiteralDfa2_2(active0, 0x80000L, active1, 0L, active2, 0x2000000000000000L, active3, 0L, active4, 0L, active5, 0xc000000000000000L, active6, 0x1L, active7, 0L, active8, 0x1e0000L, active9, 0L, active10, 0x3800000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x2L, active4, 0L, active5, 0L, active6, 0x38L, active7, 0L, active8, 0x3c000000L, active9, 0L, active10, 0xe00000000L, active11, 0L, active12, 0L); case 81: case 113: - return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xffffffffffe00000L, active9, 0x7ffL, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xffffffffc0000000L, active9, 0xfffffL, active10, 0L, active11, 0L, active12, 0L); case 82: case 114: - if ((active6 & 0x2L) != 0L) + if ((active6 & 0x40L) != 0L) { - jjmatchedKind = 385; + jjmatchedKind = 390; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0x2000001f00000L, active1, 0x6000000000000L, active2, 0x8001000000000000L, active3, 0x3f001f0000000L, active4, 0L, active5, 0L, active6, 0x3ff0000000001cL, active7, 0L, active8, 0L, active9, 0xffc0000000000000L, active10, 0x18000000000001ffL, active11, 0x40L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x2000001f00000L, active1, 0xc000000000000L, active2, 0x10000000000000L, active3, 0x3f001f00000008L, active4, 0L, active5, 0L, active6, 0xffc000000000780L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x7ffffL, active11, 0x10060L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -11710,12 +11781,12 @@ else if ((active9 & 0x10000000000000L) != 0L) jjmatchedKind = 25; jjmatchedPos = 1; } - else if ((active4 & 0x100000L) != 0L) + else if ((active4 & 0x1000000L) != 0L) { - jjmatchedKind = 276; + jjmatchedKind = 280; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0x7c000000L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0x3fce00000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1fc000000L, active11, 0x800000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x7c000000L, active1, 0L, active2, 0L, active3, 0x10L, active4, 0x7fce000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7f000000000L, active11, 0x200000000L, active12, 0L); case 84: case 116: if ((active0 & 0x80000000L) != 0L) @@ -11723,24 +11794,24 @@ else if ((active4 & 0x100000L) != 0L) jjmatchedKind = 31; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0x700000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x180000000000L, active6, 0x20L, active7, 0L, active8, 0L, active9, 0x1ff800L, active10, 0xe00000000L, active11, 0x2000020L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x700000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0x800L, active7, 0L, active8, 0L, active9, 0x3ff00000L, active10, 0x380000000000L, active11, 0x800008000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_2(active0, 0x800000000L, active1, 0xfff8000000000000L, active2, 0x7L, active3, 0xe00000000L, active4, 0L, active5, 0x7e0000c000000L, active6, 0x3c00000000001c0L, active7, 0x40000000000L, active8, 0L, active9, 0x3fe00000L, active10, 0x600L, active11, 0x1000000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x800000000L, active1, 0xfff0000000000000L, active2, 0xfL, active3, 0xe000000000L, active4, 0L, active5, 0xfc000180000000L, active6, 0xf000000000007000L, active7, 0x1000000000000L, active8, 0L, active9, 0x7fc0000000L, active10, 0x180000L, active11, 0x400000000L, active12, 0L); case 86: case 118: - return jjMoveStringLiteralDfa2_2(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0x2L, active4, 0L, active5, 0L, active6, 0x1e00L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0L, active5, 0L, active6, 0x78000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 88: case 120: - return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x3ffcL, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x3ffc0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 89: case 121: if ((active0 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(1, 50, 94); - return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0xe000000000008L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000L, active10, 0x800L, active11, 0L, active12, 0L); + return jjStartNfaWithStates_2(1, 50, 95); + return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0xe0000000000010L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x78000000000L, active10, 0x200000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x100L) != 0L) - return jjStopAtPos(1, 776); + if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); break; default : break; @@ -11759,84 +11830,84 @@ private final int jjMoveStringLiteralDfa2_2(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x400000L) != 0L) - return jjStopAtPos(2, 790); + if ((active12 & 0x200000000L) != 0L) + return jjStopAtPos(2, 801); break; case 65: case 97: if ((active0 & 0x100L) != 0L) - return jjStartNfaWithStates_2(2, 8, 94); - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x9bffL, active2, 0x4000008000L, active3, 0x300030000000L, active4, 0x600000000000L, active5, 0x20L, active6, 0x7380006000000000L, active7, 0x40600000000000L, active8, 0x24000L, active9, 0xffc0000000007800L, active10, 0xc800000004000000L, active11, 0xa080000L, active12, 0L); + return jjStartNfaWithStates_2(2, 8, 95); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x9bffL, active2, 0x40000080000L, active3, 0x3000300000000L, active4, 0xc000000000000L, active5, 0x400L, active6, 0xe000180000000000L, active7, 0x80c000000000001cL, active8, 0x4800000L, active9, 0x8000000000f00000L, active10, 0x10000001ffL, active11, 0x2820000320L, active12, 0L); case 66: case 98: - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x8000000010000L, active2, 0L, active3, 0L, active4, 0x4004000000000L, active5, 0L, active6, 0x40000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000L, active10, 0x2000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x10000000010000L, active2, 0L, active3, 0L, active4, 0x80080000000000L, active5, 0L, active6, 0x1000000000000000L, active7, 0L, active8, 0L, active9, 0x380fc0000000L, active10, 0x800000L, active11, 0L, active12, 0L); case 67: case 99: if ((active0 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(2, 26, 94); - else if ((active2 & 0x10000L) != 0L) + return jjStartNfaWithStates_2(2, 26, 95); + else if ((active2 & 0x100000L) != 0L) { - jjmatchedKind = 144; + jjmatchedKind = 148; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x1100000000e0008L, active3, 0x3dL, active4, 0x780000000000007L, active5, 0x10000000001000L, active6, 0x8000000000000000L, active7, 0x780000000000000L, active8, 0L, active9, 0x8000000L, active10, 0xc000L, active11, 0x988L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x1100000000e00010L, active3, 0x3d0L, active4, 0xf000000000000070L, active5, 0x200000000020000L, active6, 0L, active7, 0x20L, active8, 0xfL, active9, 0x1000000000L, active10, 0x3000000L, active11, 0x262000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) - return jjStartNfaWithStates_2(2, 9, 94); + return jjStartNfaWithStates_2(2, 9, 95); else if ((active0 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(2, 17, 94); - else if ((active2 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_2(2, 17, 95); + else if ((active2 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 185; + jjmatchedKind = 189; jjmatchedPos = 2; } - else if ((active5 & 0x80000L) != 0L) + else if ((active5 & 0x1000000L) != 0L) { - jjmatchedKind = 339; + jjmatchedKind = 344; jjmatchedPos = 2; } - else if ((active5 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(2, 377, 94); - else if ((active6 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(2, 397, 94); - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x1c00000000000000L, active3, 0L, active4, 0x8L, active5, 0x300000L, active6, 0x1cL, active7, 0L, active8, 0L, active9, 0x18000L, active10, 0x20800000810000L, active11, 0x1000L, active12, 0L); + else if ((active5 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_2(2, 382, 95); + else if ((active6 & 0x80000L) != 0L) + return jjStartNfaWithStates_2(2, 403, 95); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0xc000000000000000L, active3, 0x1L, active4, 0x80L, active5, 0x6000000L, active6, 0x780L, active7, 0L, active8, 0L, active9, 0x3000000L, active10, 0x8200000204000000L, active11, 0x400000L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(2, 20, 94); - else if ((active5 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(2, 380, 94); - return jjMoveStringLiteralDfa3_2(active0, 0x2000008000000L, active1, 0x2000000000400L, active2, 0x20000000000000L, active3, 0x1080000400000c2L, active4, 0L, active5, 0x4000000000000000L, active6, 0x3f00000001e00L, active7, 0x800000000000000L, active8, 0x1c0000L, active9, 0x14000000000L, active10, 0x1f4000f8000201L, active11, 0x1000000L, active12, 0L); + return jjStartNfaWithStates_2(2, 20, 95); + else if ((active6 & 0x2L) != 0L) + return jjStartNfaWithStates_2(2, 385, 95); + return jjMoveStringLiteralDfa3_2(active0, 0x2000008000000L, active1, 0x4000000000400L, active2, 0x200000000000000L, active3, 0x1080000400000c20L, active4, 0L, active5, 0L, active6, 0xfc000000078008L, active7, 0L, active8, 0x38000010L, active9, 0x2800000000000L, active10, 0x7d0003e000080200L, active11, 0x400000000L, active12, 0L); case 70: case 102: - if ((active7 & 0x1L) != 0L) + if ((active7 & 0x40L) != 0L) { - jjmatchedKind = 448; + jjmatchedKind = 454; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x2000000000L, active1, 0L, active2, 0x7f00000L, active3, 0L, active4, 0x800000000000L, active5, 0x100000000000000L, active6, 0L, active7, 0x6L, active8, 0L, active9, 0L, active10, 0xe00000000L, active11, 0x4000010L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x2000000000L, active1, 0L, active2, 0x7f000000L, active3, 0L, active4, 0x10000000000000L, active5, 0x2000000000000000L, active6, 0L, active7, 0xe000000000180L, active8, 0L, active9, 0L, active10, 0x380000000000L, active11, 0x1000004000L, active12, 0L); case 71: case 103: if ((active0 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(2, 36, 94); - else if ((active4 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(2, 295, 94); - return jjMoveStringLiteralDfa3_2(active0, 0x9c000000000L, active1, 0L, active2, 0x8000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000ff8L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000L, active12, 0L); + return jjStartNfaWithStates_2(2, 36, 95); + else if ((active4 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_2(2, 300, 95); + return jjMoveStringLiteralDfa3_2(active0, 0x9c000000000L, active1, 0L, active2, 0x80000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80003fe00L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000000L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80200000000L, active6, 0x20L, active7, 0x1800000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1004000000000L, active6, 0x800L, active7, 0x300000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 73: case 105: - if ((active6 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(2, 423, 94); - return jjMoveStringLiteralDfa3_2(active0, 0x6000000000000000L, active1, 0L, active2, 0L, active3, 0x400000080000100L, active4, 0x2000030L, active5, 0x400100000000000L, active6, 0x1c000000000000L, active7, 0x40000000L, active8, 0x2000L, active9, 0L, active10, 0x100000010006007eL, active11, 0x40L, active12, 0L); + if ((active6 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_2(2, 429, 95); + return jjMoveStringLiteralDfa3_2(active0, 0x6000000000000000L, active1, 0L, active2, 0L, active3, 0x4000000800001000L, active4, 0x20000300L, active5, 0x8002000000000000L, active6, 0x700000000000000L, active7, 0x1000000000L, active8, 0x400000L, active9, 0L, active10, 0x4001800fc00L, active11, 0x10040L, active12, 0L); case 74: case 106: - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 75: case 107: - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x18000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x300000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L, active12, 0L); case 76: case 108: if ((active0 & 0x1000L) != 0L) @@ -11844,58 +11915,58 @@ else if ((active4 & 0x8000000000L) != 0L) jjmatchedKind = 12; jjmatchedPos = 2; } - else if ((active8 & 0x200000L) != 0L) + else if ((active8 & 0x40000000L) != 0L) { - jjmatchedKind = 533; + jjmatchedKind = 542; jjmatchedPos = 2; } - else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(2, 701, 94); - return jjMoveStringLiteralDfa3_2(active0, 0x30000000006000L, active1, 0x1fe0000L, active2, 0x10000000L, active3, 0x10000200414000L, active4, 0L, active5, 0x2001e00404006000L, active6, 0L, active7, 0x3000000380003000L, active8, 0xffffffffffc00000L, active9, 0x3ffL, active10, 0x7000000000L, active11, 0x54400L, active12, 0L); + else if ((active11 & 0x80L) != 0L) + return jjStartNfaWithStates_2(2, 711, 95); + return jjMoveStringLiteralDfa3_2(active0, 0x30000000006000L, active1, 0x1fe0000L, active2, 0x100000000L, active3, 0x100002004140000L, active4, 0L, active5, 0x3c0080800c0000L, active6, 0x4L, active7, 0xe0000c0000L, active8, 0xffffffff80000060L, active9, 0x7ffffL, active10, 0x1c00000000000L, active11, 0x15100000L, active12, 0L); case 77: case 109: - if ((active9 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(2, 604, 94); - return jjMoveStringLiteralDfa3_2(active0, 0x400L, active1, 0x1000001e000000L, active2, 0x80000000000L, active3, 0x1800000000000000L, active4, 0x20000000000000L, active5, 0x6000038000040L, active6, 0L, active7, 0L, active8, 0x8c00L, active9, 0x7fe2040000000L, active10, 0x400L, active11, 0x400004L, active12, 0L); + if ((active9 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_2(2, 613, 95); + return jjMoveStringLiteralDfa3_2(active0, 0x400L, active1, 0x2000001e000000L, active2, 0x800000000000L, active3, 0x8000000000000000L, active4, 0x400000000000001L, active5, 0xc0000700000800L, active6, 0L, active7, 0L, active8, 0x1180000L, active9, 0xffc408000000000L, active10, 0x100000L, active11, 0x100001000L, active12, 0L); case 78: case 110: - if ((active5 & 0x8000L) != 0L) + if ((active5 & 0x100000L) != 0L) { - jjmatchedKind = 335; + jjmatchedKind = 340; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x8000100000000000L, active1, 0xfffe0000000L, active2, 0xe000020000000L, active3, 0x200006400020000L, active4, 0x1010000000040L, active5, 0x8041c70000L, active6, 0xc00000000000000L, active7, 0x4000040000000000L, active8, 0x100L, active9, 0x8000020000000L, active10, 0x40000000600000L, active11, 0x100001L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x8000100000000000L, active1, 0x1fffe0000000L, active2, 0xe0000200000000L, active3, 0x2000064000200000L, active4, 0x20200000000400L, active5, 0x100838e00000L, active6, 0L, active7, 0x1000000000003L, active8, 0x20080L, active9, 0x1000004000000000L, active10, 0x180000000L, active11, 0x40000401L, active12, 0L); case 79: case 111: - return jjMoveStringLiteralDfa3_2(active0, 0xc00100000000L, active1, 0x4000000006000L, active2, 0x2001000000000000L, active3, 0x3c28100300000L, active4, 0x3fce00080L, active5, 0L, active6, 0x20000000000000L, active7, 0x1e000000000000L, active8, 0x200L, active9, 0L, active10, 0L, active11, 0x20L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0xc00100000000L, active1, 0x8000000006000L, active2, 0x10000000000000L, active3, 0x3c281003000002L, active4, 0x7fce000800L, active5, 0L, active6, 0x800000000000000L, active7, 0x3c00000000000000L, active8, 0x40000L, active9, 0L, active10, 0L, active11, 0x8000L, active12, 0L); case 80: case 112: - if ((active3 & 0x200L) != 0L) + if ((active3 & 0x2000L) != 0L) { - jjmatchedKind = 201; + jjmatchedKind = 205; jjmatchedPos = 2; } - else if ((active3 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(2, 245, 94); - else if ((active4 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(2, 317, 94); - return jjMoveStringLiteralDfa3_2(active0, 0x80000L, active1, 0L, active2, 0x80000040000000L, active3, 0x6000000000000400L, active4, 0x100L, active5, 0L, active6, 0L, active7, 0x800000000000c000L, active8, 0L, active9, 0x20000000000000L, active10, 0x1100800L, active11, 0L, active12, 0L); + else if ((active3 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_2(2, 249, 95); + else if ((active5 & 0x4L) != 0L) + return jjStartNfaWithStates_2(2, 322, 95); + return jjMoveStringLiteralDfa3_2(active0, 0x80000L, active1, 0L, active2, 0x800000400000000L, active3, 0x4000L, active4, 0x1006L, active5, 0L, active6, 0L, active7, 0x300000L, active8, 0x100L, active9, 0x4000000000000000L, active10, 0x440200000L, active11, 0L, active12, 0L); case 81: case 113: - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 82: case 114: - if ((active3 & 0x800000L) != 0L) + if ((active3 & 0x8000000L) != 0L) { - jjmatchedKind = 215; + jjmatchedKind = 219; jjmatchedPos = 2; } - else if ((active6 & 0x20000000L) != 0L) + else if ((active6 & 0x800000000L) != 0L) { - jjmatchedKind = 413; + jjmatchedKind = 419; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x40020001e00000L, active1, 0xffe0300000000000L, active2, 0x8000000180000007L, active3, 0x70c0000L, active4, 0x20000000000L, active5, 0x30002000080L, active6, 0x10fc07fc000L, active7, 0x20000000000000L, active8, 0xeL, active9, 0xe0400L, active10, 0x4003f8000000000L, active11, 0x202000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x40020001e00000L, active1, 0xffc0600000000000L, active2, 0x180000000fL, active3, 0x70c00008L, active4, 0x400000000000L, active5, 0x600040001000L, active6, 0x43f01ff00000L, active7, 0x4000000000000000L, active8, 0x1c00L, active9, 0x1c080000L, active10, 0xfe000000000000L, active11, 0x80800010L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -11903,79 +11974,79 @@ else if ((active6 & 0x20000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x780000030000060L, active1, 0L, active2, 0x40079e00000000L, active3, 0x800000000L, active4, 0xc0000001e00L, active5, 0x800000700L, active6, 0x60007800000L, active7, 0x1f0000L, active8, 0x30L, active9, 0x380000000L, active10, 0x2001000L, active11, 0x20000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x780000030000060L, active1, 0L, active2, 0x40079e000000000L, active3, 0x8000000000L, active4, 0x180000001e000L, active5, 0x1000000e000L, active6, 0x18001e0000000L, active7, 0x7c00000L, active8, 0x6000L, active9, 0x70000000000L, active10, 0x800400000L, active11, 0x8000000L, active12, 0L); case 84: case 116: if ((active0 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(2, 45, 94); - else if ((active2 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(2, 172, 94); - else if ((active3 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(2, 232, 94); - else if ((active4 & 0x2000L) != 0L) + return jjStartNfaWithStates_2(2, 45, 95); + else if ((active2 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_2(2, 176, 95); + else if ((active3 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_2(2, 236, 95); + else if ((active4 & 0x20000L) != 0L) { - jjmatchedKind = 269; + jjmatchedKind = 273; jjmatchedPos = 2; } - else if ((active5 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(2, 362, 94); - else if ((active6 & 0x40L) != 0L) + else if ((active5 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_2(2, 367, 95); + else if ((active6 & 0x1000L) != 0L) { - jjmatchedKind = 390; + jjmatchedKind = 396; jjmatchedPos = 2; } - else if ((active8 & 0x40L) != 0L) + else if ((active8 & 0x8000L) != 0L) { - jjmatchedKind = 518; + jjmatchedKind = 527; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x1801040e00008880L, active1, 0L, active2, 0x2000001ff0L, active3, 0x8000000b800L, active4, 0xc00010000007c000L, active5, 0x8060000180000807L, active6, 0x18000181L, active7, 0x8000fe00000L, active8, 0x80L, active9, 0L, active10, 0x380000000000000L, active11, 0x20000200L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x1801040e00008880L, active1, 0L, active2, 0x20000007fe0L, active3, 0x8000000b8000L, active4, 0x20000007c0000L, active5, 0xc000030000100f8L, active6, 0x600006030L, active7, 0x100003f8000000L, active8, 0x10000L, active9, 0L, active10, 0L, active11, 0x800008000eL, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x400000000000L, active2, 0x4000200000000000L, active3, 0xc0000008000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3c00000000L, active8, 0x10000L, active9, 0x8000000000L, active10, 0x180L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x800000000000L, active2, 0x2000000000000L, active3, 0xc00000080000004L, active4, 0L, active5, 0L, active6, 0L, active7, 0xf0000000000L, active8, 0x2000000L, active9, 0x1000000000000L, active10, 0x30000L, active11, 0L, active12, 0L); case 86: case 118: - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x1800000000000L, active2, 0L, active3, 0x4000000000000L, active4, 0x2000001080000L, active5, 0L, active6, 0x1000000000L, active7, 0x100010000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x3000000000000L, active2, 0L, active3, 0x40000000000000L, active4, 0x40000010800000L, active5, 0L, active6, 0x40000000000L, active7, 0x20000400000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 87: case 119: - if ((active2 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(2, 174, 94); - else if ((active5 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(2, 356, 94); - else if ((active7 & 0x4000000000L) != 0L) + if ((active2 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_2(2, 178, 95); + else if ((active5 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_2(2, 361, 95); + else if ((active7 & 0x100000000000L) != 0L) { - jjmatchedKind = 486; + jjmatchedKind = 492; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000000000000L, active5, 0L, active6, 0x80000000000L, active7, 0x38000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1L, active6, 0x2000000000000L, active7, 0xe00000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 88: case 120: - if ((active5 & 0x8L) != 0L) + if ((active5 & 0x100L) != 0L) { - jjmatchedKind = 323; + jjmatchedKind = 328; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000010L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(2, 18, 94); - else if ((active2 & 0x2000L) != 0L) + return jjStartNfaWithStates_2(2, 18, 95); + else if ((active2 & 0x8000L) != 0L) { - jjmatchedKind = 141; + jjmatchedKind = 143; jjmatchedPos = 2; } - else if ((active2 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(2, 175, 94); - else if ((active4 & 0x800000000L) != 0L) + else if ((active2 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_2(2, 179, 95); + else if ((active4 & 0x10000000000L) != 0L) { - jjmatchedKind = 291; + jjmatchedKind = 296; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x40000000L, active1, 0L, active2, 0x4000L, active3, 0L, active4, 0x3000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000L, active10, 0L, active11, 0x800000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x40000000L, active1, 0L, active2, 0x70000L, active3, 0L, active4, 0x60000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000000L, active10, 0x40000L, active11, 0x200000000L, active12, 0L); case 90: case 122: - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); default : break; } @@ -11993,148 +12064,148 @@ private final int jjMoveStringLiteralDfa3_2(long old0, long active0, long old1, switch(curChar) { case 45: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x400000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 49: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400000000L, active11, 0L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); case 51: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x800000000L, active11, 0L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000L, active11, 0L); case 56: - if ((active10 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(3, 673, 94); + if ((active10 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_2(3, 683, 95); break; case 95: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x1800000000000000L, active3, 0L, active4, 0x3000000000L, active5, 0x80000000000L, active6, 0L, active7, 0x18000000000L, active8, 0xfffffffffe000000L, active9, 0x200000000003ffL, active10, 0x18000000000L, active11, 0x10000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x1L, active4, 0x60000000000L, active5, 0x1000000000000L, active6, 0L, active7, 0x600000000000L, active8, 0xfffffffc00000000L, active9, 0x400000000007ffffL, active10, 0x6000000040000L, active11, 0x4000000000L); case 65: case 97: - if ((active2 & 0x10L) != 0L) + if ((active2 & 0x20L) != 0L) { - jjmatchedKind = 132; + jjmatchedKind = 133; jjmatchedPos = 3; } - else if ((active4 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(3, 280, 94); - return jjMoveStringLiteralDfa4_2(active0, 0x1802100001e10000L, active1, 0x3800000000000L, active2, 0x400e088000320020L, active3, 0x120001L, active4, 0x780000000000000L, active5, 0x200000000L, active6, 0x1fc000L, active7, 0x8000000000001000L, active8, 0L, active9, 0L, active10, 0xa00001L, active11, 0x20002200L); + else if ((active4 & 0x10000000L) != 0L) + return jjStartNfaWithStates_2(3, 284, 95); + return jjMoveStringLiteralDfa4_2(active0, 0x1802100001e10000L, active1, 0x7000000000000L, active2, 0xe0880003200040L, active3, 0x1200014L, active4, 0xf000000000000000L, active5, 0x4000000000L, active6, 0x7f00000L, active7, 0x40000L, active8, 0x100L, active9, 0L, active10, 0x280000200L, active11, 0x8000880000L); case 66: case 98: if ((active0 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(3, 46, 94); + return jjStartNfaWithStates_2(3, 46, 95); else if ((active1 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(3, 77, 94); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x200000000000L, active3, 0x20000000000L, active4, 0L, active5, 0x2000000000040L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000400L, active11, 0L); + return jjStartNfaWithStates_2(3, 77, 95); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x2000000000000L, active3, 0x200000000000L, active4, 0L, active5, 0x40000000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000100000L, active11, 0L); case 67: case 99: - if ((active2 & 0x200000000L) != 0L) + if ((active2 & 0x2000000000L) != 0L) { - jjmatchedKind = 161; + jjmatchedKind = 165; jjmatchedPos = 3; } - else if ((active3 & 0x40L) != 0L) + else if ((active3 & 0x400L) != 0L) { - jjmatchedKind = 198; + jjmatchedKind = 202; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_2(active0, 0x180000000000000L, active1, 0x400L, active2, 0x2000011c00000000L, active3, 0x410008080L, active4, 0xc000000000000000L, active5, 0x7L, active6, 0x207023c0800000L, active7, 0L, active8, 0x1e0000L, active9, 0x8200000L, active10, 0x40000001000L, active11, 0L); + return jjMoveStringLiteralDfa4_2(active0, 0x180000000000000L, active1, 0x400L, active2, 0x11c000000000L, active3, 0x4100080802L, active4, 0L, active5, 0xf8L, active6, 0x81c08f020000000L, active7, 0L, active8, 0x3c000000L, active9, 0x1040000000L, active10, 0x10000000400000L, active11, 0L); case 68: case 100: - if ((active3 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 244, 94); - else if ((active4 & 0x200000000000L) != 0L) + if ((active3 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_2(3, 248, 95); + else if ((active4 & 0x4000000000000L) != 0L) { - jjmatchedKind = 301; + jjmatchedKind = 306; jjmatchedPos = 3; } - else if ((active6 & 0x1000000000000000L) != 0L) + else if ((active7 & 0x4L) != 0L) { - jjmatchedKind = 444; + jjmatchedKind = 450; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_2(active0, 0x40000000000000L, active1, 0xe0000000L, active2, 0L, active3, 0x80000000L, active4, 0x400000200000L, active5, 0x400000L, active6, 0x2000000000000000L, active7, 0L, active8, 0L, active9, 0x20018000L, active10, 0x40000000000000L, active11, 0L); + return jjMoveStringLiteralDfa4_2(active0, 0x40000000000000L, active1, 0xe0000000L, active2, 0L, active3, 0x800000000L, active4, 0x8000002000000L, active5, 0x8000000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0x4003000000L, active10, 0L, active11, 0x1L); case 69: case 101: if ((active0 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 57, 94); - else if ((active1 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 115, 94); - else if ((active2 & 0x40L) != 0L) + return jjStartNfaWithStates_2(3, 57, 95); + else if ((active1 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_2(3, 116, 95); + else if ((active2 & 0x80L) != 0L) { - jjmatchedKind = 134; + jjmatchedKind = 135; jjmatchedPos = 3; } - else if ((active2 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 182, 94); - else if ((active3 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(3, 222, 94); - else if ((active4 & 0x8000000000000L) != 0L) + else if ((active2 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_2(3, 186, 95); + else if ((active3 & 0x400000000L) != 0L) + return jjStartNfaWithStates_2(3, 226, 95); + else if ((active4 & 0x100000000000000L) != 0L) { - jjmatchedKind = 307; + jjmatchedKind = 312; jjmatchedPos = 3; } - else if ((active5 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(3, 345, 94); - else if ((active5 & 0x10000000L) != 0L) + else if ((active5 & 0x40000000L) != 0L) + return jjStartNfaWithStates_2(3, 350, 95); + else if ((active5 & 0x200000000L) != 0L) { - jjmatchedKind = 348; + jjmatchedKind = 353; jjmatchedPos = 3; } - else if ((active5 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(3, 359, 94); - else if ((active7 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(3, 479, 94); - else if ((active8 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(3, 524, 94); - else if ((active8 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(3, 527, 94); - else if ((active9 & 0x20000000000L) != 0L) + else if ((active5 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_2(3, 364, 95); + else if ((active7 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_2(3, 485, 95); + else if ((active8 & 0x200000L) != 0L) + return jjStartNfaWithStates_2(3, 533, 95); + else if ((active8 & 0x1000000L) != 0L) + return jjStartNfaWithStates_2(3, 536, 95); + else if ((active9 & 0x4000000000000L) != 0L) { - jjmatchedKind = 617; + jjmatchedKind = 626; jjmatchedPos = 3; } - else if ((active10 & 0x80L) != 0L) - return jjStartNfaWithStates_2(3, 647, 94); - else if ((active10 & 0x800L) != 0L) - return jjStartNfaWithStates_2(3, 651, 94); - else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_2(3, 704, 94); - return jjMoveStringLiteralDfa4_2(active0, 0x10008820L, active1, 0x10000000000000L, active2, 0x2090c01f80L, active3, 0x180000600200180cL, active4, 0x81210400003c640L, active5, 0x6c000020000000L, active6, 0x800000000acL, active7, 0x1001900000016006L, active8, 0x400000L, active9, 0x7fc0000020000L, active10, 0x3410000L, active11, 0x1000L); + else if ((active10 & 0x10000L) != 0L) + return jjStartNfaWithStates_2(3, 656, 95); + else if ((active10 & 0x200000L) != 0L) + return jjStartNfaWithStates_2(3, 661, 95); + else if ((active11 & 0x400L) != 0L) + return jjStartNfaWithStates_2(3, 714, 95); + return jjMoveStringLiteralDfa4_2(active0, 0x10008820L, active1, 0x20000000000000L, active2, 0x2090c007f00L, active3, 0x80000600200180c0L, active4, 0x2420800003c6401L, active5, 0xd80000400000001L, active6, 0x2000000002980L, active7, 0x32e000000580180L, active8, 0x80000020L, active9, 0xff8000004000000L, active10, 0xd04000000L, active11, 0x400000L); case 70: case 102: - if ((active7 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 509, 94); + if ((active8 & 0x40L) != 0L) + return jjStartNfaWithStates_2(3, 518, 95); break; case 71: case 103: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x4000000000L, active3, 0L, active4, 0x1030000000000L, active5, 0x80L, active6, 0x400000000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400001eL, active11, 0x8000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x40000000000L, active3, 0L, active4, 0x20600000000000L, active5, 0x1000L, active6, 0L, active7, 0x1L, active8, 0L, active9, 0L, active10, 0x1000003c00L, active11, 0x2000000L); case 72: case 104: if ((active0 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 48, 94); - else if ((active2 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 180, 94); - else if ((active6 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(3, 411, 94); - else if ((active10 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_2(3, 48, 95); + else if ((active2 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_2(3, 184, 95); + else if ((active6 & 0x200000000L) != 0L) + return jjStartNfaWithStates_2(3, 417, 95); + else if ((active11 & 0x2L) != 0L) { - jjmatchedKind = 695; + jjmatchedKind = 705; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_2(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800L, active6, 0L, active7, 0x20000000L, active8, 0L, active9, 0L, active10, 0x300000000000000L, active11, 0x180L); + return jjMoveStringLiteralDfa4_2(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x6000cL); case 73: case 105: - return jjMoveStringLiteralDfa4_2(active0, 0x9c020000480L, active1, 0x1L, active2, 0x107040000L, active3, 0x4000800000000L, active4, 0x20000000000008L, active5, 0x8000000080100000L, active6, 0x60400000011L, active7, 0L, active8, 0x402L, active9, 0x40000000040000L, active10, 0x100000L, active11, 0x4010L); + return jjMoveStringLiteralDfa4_2(active0, 0x9c020000480L, active1, 0x1L, active2, 0x1070400000L, active3, 0x40008000000000L, active4, 0x400000000000080L, active5, 0x1002000000L, active6, 0x1810000000630L, active7, 0L, active8, 0x80400L, active9, 0x8000000008000000L, active10, 0x40000000L, active11, 0x1004000L); case 75: case 107: - if ((active6 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 443, 94); - else if ((active7 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 507, 94); - else if ((active10 & 0x1000000000000L) != 0L) + if ((active7 & 0x2L) != 0L) + return jjStartNfaWithStates_2(3, 449, 95); + else if ((active8 & 0x10L) != 0L) + return jjStartNfaWithStates_2(3, 516, 95); + else if ((active10 & 0x400000000000000L) != 0L) { - jjmatchedKind = 688; + jjmatchedKind = 698; jjmatchedPos = 3; } - else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 698, 94); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x400000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0x8L); + else if ((active11 & 0x10L) != 0L) + return jjStartNfaWithStates_2(3, 708, 95); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x4000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000L, active8, 0L, active9, 0L, active10, 0x800000000000000L, active11, 0x2000L); case 76: case 108: if ((active0 & 0x10000000000000L) != 0L) @@ -12147,68 +12218,68 @@ else if ((active0 & 0x2000000000000000L) != 0L) jjmatchedKind = 61; jjmatchedPos = 3; } - else if ((active3 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(3, 225, 94); - else if ((active5 & 0x200000000000L) != 0L) + else if ((active3 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_2(3, 229, 95); + else if ((active5 & 0x4000000000000L) != 0L) { - jjmatchedKind = 365; + jjmatchedKind = 370; jjmatchedPos = 3; } - else if ((active6 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 446, 94); - else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(3, 722, 94); - return jjMoveStringLiteralDfa4_2(active0, 0x4020800000080000L, active1, 0x7e8000L, active2, 0x88008L, active3, 0x2000000000400430L, active4, 0x800003L, active5, 0x1d00000006000L, active6, 0xc0000000000000L, active7, 0x600300008000L, active8, 0x4000L, active9, 0x1c00100000L, active10, 0L, active11, 0x8000000L); + else if ((active7 & 0x10L) != 0L) + return jjStartNfaWithStates_2(3, 452, 95); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_2(3, 732, 95); + return jjMoveStringLiteralDfa4_2(active0, 0x4020800000080000L, active1, 0x7e8000L, active2, 0x880010L, active3, 0x4004300L, active4, 0x8000032L, active5, 0x3a0000000c0000L, active6, 0x3000000000000000L, active7, 0xc000c000200000L, active8, 0x800000L, active9, 0x380020000000L, active10, 0L, active11, 0x2000000000L); case 77: - case 109: - if ((active3 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(3, 224, 94); - else if ((active10 & 0x20L) != 0L) + case 109: + if ((active3 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_2(3, 228, 95); + else if ((active10 & 0x4000L) != 0L) { - jjmatchedKind = 645; + jjmatchedKind = 654; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_2(active0, 0x140000000L, active1, 0x1e000000L, active2, 0x20000000000000L, active3, 0x8021000000L, active4, 0L, active5, 0x30000000000L, active6, 0x4000800000000L, active7, 0L, active8, 0L, active9, 0x40400000L, active10, 0x40L, active11, 0x20L); + return jjMoveStringLiteralDfa4_2(active0, 0x140000000L, active1, 0x1e000000L, active2, 0x200000000000000L, active3, 0x80210000000L, active4, 0L, active5, 0x600000000000L, active6, 0x100020000000000L, active7, 0L, active8, 0L, active9, 0x8080000000L, active10, 0x8000L, active11, 0x8000L); case 78: case 110: - if ((active4 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(3, 281, 94); - else if ((active4 & 0x4000000L) != 0L) + if ((active4 & 0x20000000L) != 0L) + return jjStartNfaWithStates_2(3, 285, 95); + else if ((active4 & 0x40000000L) != 0L) { - jjmatchedKind = 282; + jjmatchedKind = 286; jjmatchedPos = 3; } - else if ((active5 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 382, 94); - else if ((active6 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(3, 422, 94); - else if ((active9 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(3, 614, 94); - else if ((active10 & 0x4000000000000L) != 0L) + else if ((active6 & 0x8L) != 0L) + return jjStartNfaWithStates_2(3, 387, 95); + else if ((active6 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_2(3, 428, 95); + else if ((active9 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_2(3, 623, 95); + else if ((active10 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 690; + jjmatchedKind = 700; jjmatchedPos = 3; } - else if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(3, 723, 94); - return jjMoveStringLiteralDfa4_2(active0, 0x20008000000L, active1, 0x400700000000L, active2, 0L, active3, 0x100300008000000L, active4, 0x3f8000000L, active5, 0L, active6, 0L, active7, 0x40000000000L, active8, 0L, active9, 0xff80000000000000L, active10, 0x8800100080100L, active11, 0x800000L); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_2(3, 733, 95); + return jjMoveStringLiteralDfa4_2(active0, 0x20008000000L, active1, 0x800700000000L, active2, 0L, active3, 0x1003000080000000L, active4, 0x7f80000000L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0L, active9, 0L, active10, 0x22000400200201ffL, active11, 0x200000000L); case 79: case 111: - if ((active3 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(3, 235, 94); - else if ((active4 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(3, 274, 94); - return jjMoveStringLiteralDfa4_2(active0, 0x2000006040L, active1, 0x10000L, active2, 0x8100000000000000L, active3, 0x4200000000200000L, active4, 0x80000L, active5, 0x440000000L, active6, 0x8001000000000L, active7, 0x1a0000010000000L, active8, 0L, active9, 0L, active10, 0x2e000L, active11, 0x10000L); + if ((active3 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_2(3, 239, 95); + else if ((active4 & 0x400000L) != 0L) + return jjStartNfaWithStates_2(3, 278, 95); + return jjMoveStringLiteralDfa4_2(active0, 0x2000006040L, active1, 0x10000L, active2, 0x1000000000030000L, active3, 0x2000000002000008L, active4, 0x800004L, active5, 0x8800000000L, active6, 0x200040000000000L, active7, 0x4000000400000000L, active8, 0x3L, active9, 0L, active10, 0xb800000L, active11, 0x4000000L); case 80: case 112: - if ((active2 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 176, 94); - else if ((active8 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(3, 525, 94); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0L, active5, 0x8000000L, active6, 0x800000000100L, active7, 0x1e000000020000L, active8, 0x800L, active9, 0x2000000000L, active10, 0x800000000000000L, active11, 0x400004L); + if ((active2 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_2(3, 180, 95); + else if ((active8 & 0x400000L) != 0L) + return jjStartNfaWithStates_2(3, 534, 95); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x100000000L, active6, 0x20000000004000L, active7, 0x3c00000000800000L, active8, 0x100000L, active9, 0x400000000000L, active10, 0L, active11, 0x100001020L); case 81: case 113: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40000L, active11, 0L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10000000L, active11, 0L); case 82: case 114: if ((active1 & 0x2L) != 0L) @@ -12216,83 +12287,83 @@ else if ((active8 & 0x2000L) != 0L) jjmatchedKind = 65; jjmatchedPos = 3; } - else if ((active1 & 0x100000000000L) != 0L) + else if ((active1 & 0x200000000000L) != 0L) { - jjmatchedKind = 108; + jjmatchedKind = 109; jjmatchedPos = 3; } - else if ((active3 & 0x40000000000000L) != 0L) + else if ((active3 & 0x400000000000000L) != 0L) { - jjmatchedKind = 246; + jjmatchedKind = 250; jjmatchedPos = 3; } - else if ((active6 & 0x200L) != 0L) + else if ((active6 & 0x8000L) != 0L) { - jjmatchedKind = 393; + jjmatchedKind = 399; jjmatchedPos = 3; } - else if ((active10 & 0x8000000L) != 0L) + else if ((active10 & 0x2000000000L) != 0L) { - jjmatchedKind = 667; + jjmatchedKind = 677; jjmatchedPos = 3; } - else if ((active10 & 0x4000000000000000L) != 0L) + else if ((active11 & 0x100L) != 0L) { - jjmatchedKind = 702; + jjmatchedKind = 712; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_2(active0, 0x600000000L, active1, 0xffe02000000003fcL, active2, 0x8000001L, active3, 0x88000000002002L, active4, 0x4000000000004L, active5, 0x1000L, active6, 0x300000000001c00L, active7, 0x40000000000ff8L, active8, 0x10000L, active9, 0x8000000800L, active10, 0x80100000f0000000L, active11, 0x5000800L); + return jjMoveStringLiteralDfa4_2(active0, 0x600000000L, active1, 0xffc04000000003fcL, active2, 0x80000003L, active3, 0x880000000020020L, active4, 0x80000000000040L, active5, 0x20000L, active6, 0xc000000000070000L, active7, 0x800000000003fe00L, active8, 0x2000000L, active9, 0x1000000100000L, active10, 0x400003c000000000L, active11, 0x1400200200L); case 83: case 115: - if ((active2 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(3, 142, 94); - else if ((active7 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(3, 489, 94); - else if ((active8 & 0x80L) != 0L) - return jjStartNfaWithStates_2(3, 519, 94); - else if ((active9 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(3, 616, 94); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x401f800005800L, active2, 0x20000006L, active3, 0xc4100L, active4, 0L, active5, 0x100000000000720L, active6, 0x1000003000000L, active7, 0x4000000000000000L, active8, 0x800030L, active9, 0x7800000L, active10, 0x300000000200L, active11, 0x20000L); + if ((active2 & 0x40000L) != 0L) + return jjStartNfaWithStates_2(3, 146, 95); + else if ((active7 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_2(3, 495, 95); + else if ((active8 & 0x10000L) != 0L) + return jjStartNfaWithStates_2(3, 528, 95); + else if ((active9 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_2(3, 625, 95); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x801f800005800L, active2, 0x20000000cL, active3, 0xc41000L, active4, 0L, active5, 0x200000000000e400L, active6, 0x400000c0000000L, active7, 0L, active8, 0x100006080L, active9, 0xf00000000L, active10, 0xc0000000080000L, active11, 0x8000000L); case 84: case 116: if ((active0 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 58, 94); - else if ((active4 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(3, 58, 95); + else if ((active4 & 0x800000000000L) != 0L) { - jjmatchedKind = 298; + jjmatchedKind = 303; jjmatchedPos = 3; } - else if ((active4 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(3, 303, 94); - else if ((active5 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(3, 357, 94); - else if ((active5 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 378, 94); - else if ((active6 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(3, 410, 94); - else if ((active9 & 0x400L) != 0L) - return jjStartNfaWithStates_2(3, 586, 94); - return jjMoveStringLiteralDfa4_2(active0, 0x8000000000000000L, active1, 0x60000000000L, active2, 0x80040040000000L, active3, 0x4010000L, active4, 0x80000001830L, active5, 0x805800000L, active6, 0x10010600000L, active7, 0x200003c000c0000L, active8, 0L, active9, 0x380007000L, active10, 0x1020000000000000L, active11, 0x2100040L); + else if ((active4 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_2(3, 308, 95); + else if ((active5 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(3, 362, 95); + else if ((active5 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_2(3, 383, 95); + else if ((active6 & 0x100000000L) != 0L) + return jjStartNfaWithStates_2(3, 416, 95); + else if ((active9 & 0x80000L) != 0L) + return jjStartNfaWithStates_2(3, 595, 95); + return jjMoveStringLiteralDfa4_2(active0, 0x8000000000000000L, active1, 0xe0000000000L, active2, 0x800400400000000L, active3, 0x40100000L, active4, 0x1000000018300L, active5, 0x100b0000000L, active6, 0x400418000000L, active7, 0xf0003000000L, active8, 0x4L, active9, 0x70000e00000L, active10, 0x8000000000000000L, active11, 0x840010040L); case 85: case 117: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x1800000L, active2, 0L, active3, 0x3c00000000000L, active4, 0x180L, active5, 0x10000100230000L, active6, 0x8000000000000000L, active7, 0x40008000ff00000L, active8, 0x101L, active9, 0x80000L, active10, 0x7000000000L, active11, 0x400L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x1800000L, active2, 0L, active3, 0x3c000000000000L, active4, 0x1800L, active5, 0x200002004600000L, active6, 0L, active7, 0x100003fc000020L, active8, 0x20208L, active9, 0x10000000L, active10, 0x1c00000000000L, active11, 0x100000L); case 86: case 118: - if ((active6 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 433, 94); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x80000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40010L, active6, 0x10000000000000L, active7, 0L, active8, 0xcL, active9, 0L, active10, 0L, active11, 0x200000L); + if ((active6 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_2(3, 439, 95); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x100000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800200L, active6, 0x400000000000000L, active7, 0L, active8, 0x1800L, active9, 0L, active10, 0L, active11, 0x80000000L); case 87: case 119: - if ((active8 & 0x200L) != 0L) - return jjStartNfaWithStates_2(3, 521, 94); - else if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(3, 686, 94); - return jjMoveStringLiteralDfa4_2(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x40000L) != 0L) + return jjStartNfaWithStates_2(3, 530, 95); + else if ((active10 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_2(3, 696, 95); + return jjMoveStringLiteralDfa4_2(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active5 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(3, 381, 94); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); + if ((active6 & 0x4L) != 0L) + return jjStartNfaWithStates_2(3, 386, 95); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1000000000000000L, active10, 0x20000000000000L, active11, 0L); default : break; } @@ -12310,293 +12381,293 @@ private final int jjMoveStringLiteralDfa4_2(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active10 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(4, 675, 94); + if ((active10 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_2(4, 685, 95); break; case 54: - if ((active10 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(4, 674, 94); + if ((active10 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_2(4, 684, 95); break; case 95: - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x10000000000004L, active2, 0x1080L, active3, 0x10000000L, active4, 0x100803f8000000L, active5, 0L, active6, 0L, active7, 0xff8L, active8, 0L, active9, 0xc0000000000L, active10, 0xf0000040L, active11, 0x200L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x20000000000004L, active2, 0x300L, active3, 0x100000000L, active4, 0x201007f80000000L, active5, 0L, active6, 0L, active7, 0xe00000003fe00L, active8, 0L, active9, 0x18000000000000L, active10, 0x3c000008000L, active11, 0x80000L); case 65: case 97: - return jjMoveStringLiteralDfa5_2(active0, 0x180000000000000L, active1, 0x200063e03f8L, active2, 0x20000080000L, active3, 0x8020081002400L, active4, 0x4000000801800L, active5, 0x430000440710L, active6, 0x4800000800000L, active7, 0x20000004e000L, active8, 0x1000002L, active9, 0x20020000L, active10, 0x1000L, active11, 0L); + return jjMoveStringLiteralDfa5_2(active0, 0x180000000000000L, active1, 0x600063e03f8L, active2, 0x200000800000L, active3, 0x80200810024000L, active4, 0x80000008018000L, active5, 0x860000880e200L, active6, 0x120000020000000L, active7, 0x40000001380000L, active8, 0x200000400L, active9, 0x4004000000L, active10, 0x400000L, active11, 0L); case 66: case 98: - if ((active5 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(4, 354, 94); - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x20L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000L, active8, 0x3e000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active5 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_2(4, 359, 95); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x40L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000L, active8, 0x7c00000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(4, 727, 94); - return jjMoveStringLiteralDfa5_2(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8L, active5, 0x8000000000000L, active6, 0L, active7, 0x1040008000000000L, active8, 0xc0010000L, active9, 0x80000L, active10, 0x100L, active11, 0x10000000L); + if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_2(4, 737, 95); + return jjMoveStringLiteralDfa5_2(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80L, active5, 0x100000000000000L, active6, 0L, active7, 0x8000200000000000L, active8, 0x18002000020L, active9, 0x10000000L, active10, 0x60000L, active11, 0x4000000000L); case 68: case 100: - if ((active3 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(4, 219, 94); - return jjMoveStringLiteralDfa5_2(active0, 0x2000000000000L, active1, 0L, active2, 0x100000000020000L, active3, 0x1800000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000L, active9, 0L, active10, 0x200L, active11, 0L); + if ((active3 & 0x80000000L) != 0L) + return jjStartNfaWithStates_2(4, 223, 95); + return jjMoveStringLiteralDfa5_2(active0, 0x2000000000000L, active1, 0L, active2, 0x1000000000200000L, active3, 0x8000000000000000L, active4, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000L, active9, 0L, active10, 0x80000L, active11, 0L); case 69: case 101: if ((active1 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(4, 78, 94); - else if ((active2 & 0x8L) != 0L) - return jjStartNfaWithStates_2(4, 131, 94); - else if ((active3 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(4, 206, 94); - else if ((active3 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 250, 94); - else if ((active4 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(4, 297, 94); - else if ((active5 & 0x80L) != 0L) - return jjStartNfaWithStates_2(4, 327, 94); - else if ((active5 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(4, 364, 94); - else if ((active6 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 442, 94); - else if ((active7 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(4, 478, 94); - else if ((active7 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(4, 494, 94); - else if ((active7 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 78, 95); + else if ((active2 & 0x10L) != 0L) + return jjStartNfaWithStates_2(4, 132, 95); + else if ((active3 & 0x40000L) != 0L) + return jjStartNfaWithStates_2(4, 210, 95); + else if ((active3 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 254, 95); + else if ((active4 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_2(4, 302, 95); + else if ((active5 & 0x1000L) != 0L) + return jjStartNfaWithStates_2(4, 332, 95); + else if ((active5 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 369, 95); + else if ((active7 & 0x1L) != 0L) + return jjStartNfaWithStates_2(4, 448, 95); + else if ((active7 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_2(4, 484, 95); + else if ((active7 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 503, 95); + else if ((active7 & 0x400000000000000L) != 0L) { - jjmatchedKind = 497; + jjmatchedKind = 506; jjmatchedPos = 4; } - else if ((active8 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(4, 529, 94); - else if ((active9 & 0x1000L) != 0L) + else if ((active8 & 0x4000000L) != 0L) + return jjStartNfaWithStates_2(4, 538, 95); + else if ((active9 & 0x200000L) != 0L) { - jjmatchedKind = 588; + jjmatchedKind = 597; jjmatchedPos = 4; } - else if ((active9 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(4, 596, 94); - else if ((active9 & 0x400000000L) != 0L) + else if ((active9 & 0x20000000L) != 0L) + return jjStartNfaWithStates_2(4, 605, 95); + else if ((active9 & 0x80000000000L) != 0L) { - jjmatchedKind = 610; + jjmatchedKind = 619; jjmatchedPos = 4; } - else if ((active10 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(4, 666, 94); else if ((active10 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_2(4, 676, 95); + else if ((active10 & 0x400000000000L) != 0L) { - jjmatchedKind = 676; + jjmatchedKind = 686; jjmatchedPos = 4; } - else if ((active10 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 692, 94); - else if ((active10 & 0x1000000000000000L) != 0L) + else if ((active10 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 702, 95); + else if ((active11 & 0x40L) != 0L) { - jjmatchedKind = 700; + jjmatchedKind = 710; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_2(active0, 0x20840000000000L, active1, 0xffe0280700408000L, active2, 0x420000028000001L, active3, 0x2000008020010000L, active4, 0x400004L, active5, 0x102000000004040L, active6, 0x213003d0000000L, active7, 0x1c000000020000L, active8, 0xdL, active9, 0x1bc881a000L, active10, 0x8806000000000L, active11, 0x40005c0L); + return jjMoveStringLiteralDfa5_2(active0, 0x20840000000000L, active1, 0xffc0500700408000L, active2, 0x4200000280000003L, active3, 0x80200100000L, active4, 0x4000042L, active5, 0x2040000000080800L, active6, 0x84c00f400000000L, active7, 0x3800000000800000L, active8, 0x1a00L, active9, 0x379103400000L, active10, 0x2201800000000000L, active11, 0x1000170000L); case 70: case 102: - if ((active2 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(4, 159, 94); - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0L, active4, 0L, active5, 0x100000L, active6, 0L, active7, 0L, active8, 0x800000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x800000000L) != 0L) + return jjStartNfaWithStates_2(4, 163, 95); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x8000000000030000L, active3, 0L, active4, 0L, active5, 0x2000000L, active6, 0L, active7, 0L, active8, 0x100000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(4, 672, 94); - return jjMoveStringLiteralDfa5_2(active0, 0x20000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1eL, active11, 0x10000L); + if ((active10 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(4, 682, 95); + return jjMoveStringLiteralDfa5_2(active0, 0x20000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x40000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c00L, active11, 0x4000000L); case 72: case 104: - if ((active2 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(4, 158, 94); - else if ((active2 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 189, 94); - else if ((active3 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(4, 207, 94); - else if ((active4 & 0x4000000000000000L) != 0L) + if ((active2 & 0x400000000L) != 0L) + return jjStartNfaWithStates_2(4, 162, 95); + else if ((active3 & 0x2L) != 0L) + return jjStartNfaWithStates_2(4, 193, 95); + else if ((active3 & 0x80000L) != 0L) + return jjStartNfaWithStates_2(4, 211, 95); + else if ((active5 & 0x8L) != 0L) { - jjmatchedKind = 318; + jjmatchedKind = 323; jjmatchedPos = 4; } - else if ((active5 & 0x800000L) != 0L) + else if ((active5 & 0x10000000L) != 0L) { - jjmatchedKind = 343; + jjmatchedKind = 348; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000000000000L, active5, 0x1000007L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20040000000000L, active11, 0L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000f0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8010000000000000L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa5_2(active0, 0x4040000700000000L, active1, 0x400f8000000L, active2, 0xc0000000000L, active3, 0x2000000L, active4, 0x400000000030L, active5, 0x800804002000L, active6, 0xd0412001600000L, active7, 0x4200043c00000000L, active8, 0x3fff0001c0030L, active9, 0x8000000004000L, active10, 0x1003a0000000000L, active11, 0x2308020L); + return jjMoveStringLiteralDfa5_2(active0, 0x4040000700000000L, active1, 0x800f8000000L, active2, 0xc00000000000L, active3, 0x20000000L, active4, 0x8000000000300L, active5, 0x10010080040000L, active6, 0x3410480058000000L, active7, 0x10f0000000000L, active8, 0x7ffe00038006084L, active9, 0x1000000000800000L, active10, 0xe8000000000000L, active11, 0x8c2008004L); case 75: case 107: if ((active1 & 0x400L) != 0L) - return jjStartNfaWithStates_2(4, 74, 94); - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(4, 74, 95); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(4, 80, 94); - else if ((active3 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(4, 209, 94); - else if ((active4 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(4, 294, 94); - else if ((active4 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 305, 94); - else if ((active4 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 80, 95); + else if ((active3 & 0x200000L) != 0L) + return jjStartNfaWithStates_2(4, 213, 95); + else if ((active4 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_2(4, 299, 95); + else if ((active4 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 310, 95); + else if ((active4 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 311; + jjmatchedKind = 316; jjmatchedPos = 4; } - else if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(4, 733, 94); - return jjMoveStringLiteralDfa5_2(active0, 0x1800000000000040L, active1, 0L, active2, 0x4000208000008000L, active3, 0L, active4, 0x300000000000000L, active5, 0x200000L, active6, 0xc00L, active7, 0x20000000100000L, active8, 0x1c000000004c00L, active9, 0x60000000200000L, active10, 0x400L, active11, 0x2004L); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_2(4, 743, 95); + return jjMoveStringLiteralDfa5_2(active0, 0x1800000000000040L, active1, 0L, active2, 0x2080000080000L, active3, 0x4L, active4, 0x6000000000000000L, active5, 0x4000000L, active6, 0x30000L, active7, 0x4000000004000000L, active8, 0x3800000000980000L, active9, 0xc000000040000000L, active10, 0x100000L, active11, 0x801000L); case 77: case 109: - return jjMoveStringLiteralDfa5_2(active0, 0x40000000L, active1, 0x1800000L, active2, 0xe000000040000L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0x1fc000L, active7, 0x1800000000000L, active8, 0L, active9, 0L, active10, 0x204000L, active11, 0L); + return jjMoveStringLiteralDfa5_2(active0, 0x40000000L, active1, 0x1800000L, active2, 0xe0000000400000L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0x7f00000L, active7, 0x300000000000000L, active8, 0L, active9, 0L, active10, 0x81000000L, active11, 0L); case 78: case 110: if ((active0 & 0x400L) != 0L) - return jjStartNfaWithStates_2(4, 10, 94); + return jjStartNfaWithStates_2(4, 10, 95); else if ((active0 & 0x4000000000L) != 0L) { jjmatchedKind = 38; jjmatchedPos = 4; } else if ((active1 & 0x1L) != 0L) - return jjStartNfaWithStates_2(4, 64, 94); - else if ((active10 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(4, 657, 94); - return jjMoveStringLiteralDfa5_2(active0, 0x98000000020L, active1, 0L, active2, 0x4007000000L, active3, 0x4000000000800L, active4, 0x200L, active5, 0L, active6, 0x10L, active7, 0x180010000000000L, active8, 0x1e0000000000000L, active9, 0x40000L, active10, 0x8000L, active11, 0x4010L); + return jjStartNfaWithStates_2(4, 64, 95); + else if ((active10 & 0x8000000L) != 0L) + return jjStartNfaWithStates_2(4, 667, 95); + return jjMoveStringLiteralDfa5_2(active0, 0x98000000020L, active1, 0L, active2, 0x40070000000L, active3, 0x40000000008000L, active4, 0x2000L, active5, 0L, active6, 0x600L, active7, 0x400000000000L, active8, 0xc000000000000003L, active9, 0x8000003L, active10, 0x2000000L, active11, 0x1004000L); case 79: case 111: - return jjMoveStringLiteralDfa5_2(active0, 0x20800000080L, active1, 0L, active2, 0x10000000006L, active3, 0x800400000L, active4, 0x200000L, active5, 0x8000000080001800L, active6, 0x400000001L, active7, 0L, active8, 0L, active9, 0x2000000000L, active10, 0x240000000080000L, active11, 0L); + return jjMoveStringLiteralDfa5_2(active0, 0x20800000080L, active1, 0L, active2, 0x10000000000cL, active3, 0x8004000000L, active4, 0x2000000L, active5, 0x1000030000L, active6, 0x10000000030L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0x20000000L, active11, 0x9L); case 80: case 112: - if ((active3 & 0x400000000000L) != 0L) + if ((active3 & 0x4000000000000L) != 0L) { - jjmatchedKind = 238; + jjmatchedKind = 242; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0x380000000000dL, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x800008000000000L, active11, 0L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x380000000000d1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0x20L); case 82: case 114: if ((active0 & 0x800L) != 0L) - return jjStartNfaWithStates_2(4, 11, 94); + return jjStartNfaWithStates_2(4, 11, 95); else if ((active0 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(4, 15, 94); - else if ((active2 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 191, 94); - else if ((active3 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(4, 213, 94); - else if ((active4 & 0x40L) != 0L) - return jjStartNfaWithStates_2(4, 262, 94); - else if ((active4 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 315, 94); - else if ((active5 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(4, 353, 94); - else if ((active6 & 0x4L) != 0L) + return jjStartNfaWithStates_2(4, 15, 95); + else if ((active3 & 0x8L) != 0L) + return jjStartNfaWithStates_2(4, 195, 95); + else if ((active3 & 0x2000000L) != 0L) + return jjStartNfaWithStates_2(4, 217, 95); + else if ((active4 & 0x400L) != 0L) + return jjStartNfaWithStates_2(4, 266, 95); + else if ((active5 & 0x1L) != 0L) + return jjStartNfaWithStates_2(4, 320, 95); + else if ((active5 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_2(4, 358, 95); + else if ((active6 & 0x80L) != 0L) { - jjmatchedKind = 386; + jjmatchedKind = 391; jjmatchedPos = 4; } - else if ((active6 & 0x80L) != 0L) - return jjStartNfaWithStates_2(4, 391, 94); - else if ((active6 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(4, 427, 94); - else if ((active6 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 435, 94); - else if ((active10 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(4, 656, 94); - else if ((active10 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(4, 664, 94); - return jjMoveStringLiteralDfa5_2(active0, 0x102010000000L, active1, 0x1800000000000L, active2, 0x3c00c00000L, active3, 0x4200006004001000L, active4, 0x100000038400L, active5, 0x14000100000000L, active6, 0x8000000000001028L, active7, 0x840008000fe80006L, active8, 0x200000000000000L, active9, 0L, active10, 0x2000000L, active11, 0L); + else if ((active6 & 0x2000L) != 0L) + return jjStartNfaWithStates_2(4, 397, 95); + else if ((active6 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 433, 95); + else if ((active6 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 441, 95); + else if ((active10 & 0x4000000L) != 0L) + return jjStartNfaWithStates_2(4, 666, 95); + else if ((active10 & 0x400000000L) != 0L) + return jjStartNfaWithStates_2(4, 674, 95); + return jjMoveStringLiteralDfa5_2(active0, 0x102010000000L, active1, 0x3000000000000L, active2, 0x3c00c000000L, active3, 0x2000060040010000L, active4, 0x2000000384004L, active5, 0x280002000000000L, active6, 0x40900L, active7, 0x100003fa0001a0L, active8, 0x108L, active9, 0x4L, active10, 0x800000000L, active11, 0L); case 83: case 115: - if ((active1 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 114, 94); - else if ((active3 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 247, 94); - else if ((active5 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(4, 347, 94); - else if ((active5 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(4, 349, 94); - else if ((active5 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 368, 94); - else if ((active6 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 445, 94); - else if ((active8 & 0x100L) != 0L) - return jjStartNfaWithStates_2(4, 520, 94); - else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 689, 94); - else if ((active10 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 703, 94); - return jjMoveStringLiteralDfa5_2(active0, 0x8000000L, active1, 0x1800L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000L, active6, 0L, active7, 0L, active8, 0x400000000000000L, active9, 0xff81f08000000000L, active10, 0x10000400000L, active11, 0L); + if ((active1 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 115, 95); + else if ((active3 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 251, 95); + else if ((active5 & 0x100000000L) != 0L) + return jjStartNfaWithStates_2(4, 352, 95); + else if ((active5 & 0x400000000L) != 0L) + return jjStartNfaWithStates_2(4, 354, 95); + else if ((active5 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 373, 95); + else if ((active7 & 0x8L) != 0L) + return jjStartNfaWithStates_2(4, 451, 95); + else if ((active8 & 0x20000L) != 0L) + return jjStartNfaWithStates_2(4, 529, 95); + else if ((active10 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 699, 95); + else if ((active11 & 0x200L) != 0L) + return jjStartNfaWithStates_2(4, 713, 95); + return jjMoveStringLiteralDfa5_2(active0, 0x8000000L, active1, 0x1800L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3e1000000000008L, active10, 0x40001000001ffL, active11, 0L); case 84: case 116: - if ((active1 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(4, 110, 94); - else if ((active3 & 0x40000L) != 0L) + if ((active1 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_2(4, 111, 95); + else if ((active3 & 0x400000L) != 0L) { - jjmatchedKind = 210; + jjmatchedKind = 214; jjmatchedPos = 4; } - else if ((active3 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(4, 212, 94); - else if ((active3 & 0x100000000000L) != 0L) + else if ((active3 & 0x1000000L) != 0L) + return jjStartNfaWithStates_2(4, 216, 95); + else if ((active3 & 0x1000000000000L) != 0L) { - jjmatchedKind = 236; + jjmatchedKind = 240; jjmatchedPos = 4; } - else if ((active4 & 0x80L) != 0L) - return jjStartNfaWithStates_2(4, 263, 94); - else if ((active4 & 0x100L) != 0L) - return jjStartNfaWithStates_2(4, 264, 94); - else if ((active4 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 309, 94); - else if ((active6 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(4, 420, 94); - else if ((active7 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(4, 464, 94); - else if ((active7 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(4, 477, 94); - else if ((active9 & 0x800L) != 0L) - return jjStartNfaWithStates_2(4, 587, 94); - else if ((active10 & 0x1L) != 0L) - return jjStartNfaWithStates_2(4, 640, 94); - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x201f800000000L, active2, 0x10000f00L, active3, 0x100200400080100L, active4, 0x401002000000000L, active5, 0x60000000030000L, active6, 0x300060002000000L, active7, 0x1000L, active8, 0xf800000000800000L, active9, 0x70000ffL, active10, 0x800000L, active11, 0L); + else if ((active4 & 0x800L) != 0L) + return jjStartNfaWithStates_2(4, 267, 95); + else if ((active4 & 0x1000L) != 0L) + return jjStartNfaWithStates_2(4, 268, 95); + else if ((active4 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 314, 95); + else if ((active6 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(4, 426, 95); + else if ((active7 & 0x400000L) != 0L) + return jjStartNfaWithStates_2(4, 470, 95); + else if ((active7 & 0x800000000L) != 0L) + return jjStartNfaWithStates_2(4, 483, 95); + else if ((active9 & 0x100000L) != 0L) + return jjStartNfaWithStates_2(4, 596, 95); + else if ((active10 & 0x200L) != 0L) + return jjStartNfaWithStates_2(4, 649, 95); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x401f800000000L, active2, 0x100007c00L, active3, 0x1002004000801000L, active4, 0x8020040000000000L, active5, 0xc00000000600000L, active6, 0xc001800080000000L, active7, 0x40000L, active8, 0x100000000L, active9, 0xe0001fff0L, active10, 0x200000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_2(active0, 0x8000000000000000L, active1, 0L, active2, 0x300000L, active3, 0xb0L, active4, 0x10000000003L, active5, 0x20L, active6, 0x800000100L, active7, 0x200000000L, active8, 0L, active9, 0x400000L, active10, 0x42000L, active11, 0x400008L); + return jjMoveStringLiteralDfa5_2(active0, 0x8000000000000000L, active1, 0L, active2, 0x3000000L, active3, 0xb00L, active4, 0x200000000030L, active5, 0x400L, active6, 0x20000004000L, active7, 0x8000000000L, active8, 0L, active9, 0x80000000L, active10, 0x10800000L, active11, 0x100002000L); case 86: case 118: - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0x80000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300L, active10, 0x100000L, active11, 0L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x1000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x60000L, active10, 0x40000000L, active11, 0L); case 87: case 119: if ((active0 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(4, 14, 94); - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000L); + return jjStartNfaWithStates_2(4, 14, 95); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); case 88: case 120: - if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(4, 716, 94); - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0L, active10, 0L, active11, 0L); + if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_2(4, 726, 95); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(4, 19, 94); + return jjStartNfaWithStates_2(4, 19, 95); else if ((active0 & 0x200000L) != 0L) { jjmatchedKind = 21; jjmatchedPos = 4; } - else if ((active2 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_2(4, 183, 94); - else if ((active3 & 0x2L) != 0L) - return jjStartNfaWithStates_2(4, 193, 94); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(4, 728, 94); - return jjMoveStringLiteralDfa5_2(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000800L); + else if ((active2 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_2(4, 187, 95); + else if ((active3 & 0x20L) != 0L) + return jjStartNfaWithStates_2(4, 197, 95); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_2(4, 738, 95); + return jjMoveStringLiteralDfa5_2(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000200000L); case 90: case 122: - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xc00000000000000L, active10, 0L, active11, 0L); default : break; } @@ -12614,18 +12685,18 @@ private final int jjMoveStringLiteralDfa5_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_2(active0, 0x18001c00000L, active1, 0x1800000001000L, active2, 0x20000000L, active3, 0x800020080000L, active4, 0L, active5, 0x20000000000006L, active6, 0L, active7, 0x1c000000000000L, active8, 0L, active9, 0x800000000L, active10, 0x20004000000000L, active11, 0x5c0L); + return jjMoveStringLiteralDfa6_2(active0, 0x18001c00000L, active1, 0x3000000001000L, active2, 0x200000000L, active3, 0x8000200800000L, active4, 0L, active5, 0x4000000000000c0L, active6, 0L, active7, 0x3800000000000000L, active8, 0L, active9, 0x100000000000L, active10, 0x8001000000000000L, active11, 0x170000L); case 65: case 97: - if ((active7 & 0x800000000000L) != 0L) + if ((active7 & 0x100000000000000L) != 0L) { - jjmatchedKind = 495; + jjmatchedKind = 504; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_2(active0, 0x800000002000L, active1, 0L, active2, 0x1000000000040020L, active3, 0x6004000000L, active4, 0x110018400038L, active5, 0x80100000000L, active6, 0x200c10L, active7, 0x8001000100000018L, active8, 0x100800400L, active9, 0x780000000200300L, active10, 0x50000000340L, active11, 0x4L); + return jjMoveStringLiteralDfa6_2(active0, 0x800000002000L, active1, 0L, active2, 0x400040L, active3, 0x60040000001L, active4, 0x2200184000380L, active5, 0x1002000000000L, active6, 0x8030600L, active7, 0x200004000000600L, active8, 0x20100080100L, active9, 0x40060000L, active10, 0x140000000e800fL, active11, 0x1000L); case 66: case 98: - return jjMoveStringLiteralDfa6_2(active0, 0x600000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_2(active0, 0x600000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: if ((active0 & 0x100000000L) != 0L) @@ -12633,255 +12704,255 @@ private final int jjMoveStringLiteralDfa5_2(long old0, long active0, long old1, jjmatchedKind = 32; jjmatchedPos = 5; } - else if ((active6 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 438, 94); - else if ((active9 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(5, 590, 94); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x7004003f8L, active2, 0L, active3, 0x2000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x28020L, active8, 0x60000000400000L, active9, 0L, active10, 0L, active11, 0x200020L); + else if ((active6 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 444, 95); + else if ((active9 & 0x800000L) != 0L) + return jjStartNfaWithStates_2(5, 599, 95); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x7004003f8L, active2, 0L, active3, 0x20000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000a00800L, active8, 0xc000000080000000L, active9, 0L, active10, 0L, active11, 0x80008000L); case 68: case 100: if ((active0 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 53, 94); - else if ((active3 & 0x800L) != 0L) - return jjStartNfaWithStates_2(5, 203, 94); - else if ((active5 & 0x800L) != 0L) - return jjStartNfaWithStates_2(5, 331, 94); - else if ((active6 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(5, 418, 94); - else if ((active7 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 53, 95); + else if ((active3 & 0x8000L) != 0L) + return jjStartNfaWithStates_2(5, 207, 95); + else if ((active5 & 0x10000L) != 0L) + return jjStartNfaWithStates_2(5, 336, 95); + else if ((active6 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_2(5, 424, 95); + else if ((active8 & 0x1L) != 0L) { - jjmatchedKind = 503; + jjmatchedKind = 512; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_2(active0, 0x180000000000000L, active1, 0x10000000000000L, active2, 0x1000L, active3, 0x30L, active4, 0x3L, active5, 0L, active6, 0x20300000000000L, active7, 0x100080000000000L, active8, 0L, active9, 0x48000000000L, active10, 0xf0008000L, active11, 0L); + return jjMoveStringLiteralDfa6_2(active0, 0x180000000000000L, active1, 0x20000000000000L, active2, 0x100L, active3, 0x300L, active4, 0x30L, active5, 0L, active6, 0x80c000000000000L, active7, 0x10000000000000L, active8, 0x2L, active9, 0x9000000000000L, active10, 0x3c002000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(5, 37, 94); - else if ((active1 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 113, 94); - else if ((active2 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(5, 145, 94); - else if ((active2 & 0x1000000L) != 0L) + return jjStartNfaWithStates_2(5, 37, 95); + else if ((active1 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 114, 95); + else if ((active2 & 0x200000L) != 0L) + return jjStartNfaWithStates_2(5, 149, 95); + else if ((active2 & 0x10000000L) != 0L) { - jjmatchedKind = 152; + jjmatchedKind = 156; jjmatchedPos = 5; } - else if ((active2 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(5, 155, 94); - else if ((active2 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(5, 156, 94); - else if ((active2 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(5, 173, 94); - else if ((active3 & 0x1L) != 0L) - return jjStartNfaWithStates_2(5, 192, 94); - else if ((active3 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 249, 94); - else if ((active5 & 0x10000L) != 0L) + else if ((active2 & 0x80000000L) != 0L) + return jjStartNfaWithStates_2(5, 159, 95); + else if ((active2 & 0x100000000L) != 0L) + return jjStartNfaWithStates_2(5, 160, 95); + else if ((active2 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 177, 95); + else if ((active3 & 0x10L) != 0L) + return jjStartNfaWithStates_2(5, 196, 95); + else if ((active3 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 253, 95); + else if ((active5 & 0x200000L) != 0L) { - jjmatchedKind = 336; + jjmatchedKind = 341; jjmatchedPos = 5; } - else if ((active5 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(5, 341, 94); - else if ((active7 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(5, 476, 94); - else if ((active8 & 0x800L) != 0L) - return jjStartNfaWithStates_2(5, 523, 94); - else if ((active8 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(5, 528, 94); - else if ((active10 & 0x400L) != 0L) - return jjStartNfaWithStates_2(5, 650, 94); - else if ((active10 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(5, 658, 94); - else if ((active10 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(5, 663, 94); - return jjMoveStringLiteralDfa6_2(active0, 0x40040000000L, active1, 0L, active2, 0x106000000L, active3, 0x200000000000L, active4, 0x8000001020084000L, active5, 0x40020001L, active6, 0x3000000001fc000L, active7, 0x6L, active8, 0x200000200000000L, active9, 0x20000008000000L, active10, 0x80000000020001eL, active11, 0x4000L); + else if ((active5 & 0x4000000L) != 0L) + return jjStartNfaWithStates_2(5, 346, 95); + else if ((active7 & 0x400000000L) != 0L) + return jjStartNfaWithStates_2(5, 482, 95); + else if ((active8 & 0x100000L) != 0L) + return jjStartNfaWithStates_2(5, 532, 95); + else if ((active8 & 0x2000000L) != 0L) + return jjStartNfaWithStates_2(5, 537, 95); + else if ((active10 & 0x100000L) != 0L) + return jjStartNfaWithStates_2(5, 660, 95); + else if ((active10 & 0x10000000L) != 0L) + return jjStartNfaWithStates_2(5, 668, 95); + else if ((active10 & 0x200000000L) != 0L) + return jjStartNfaWithStates_2(5, 673, 95); + return jjMoveStringLiteralDfa6_2(active0, 0x40040000000L, active1, 0L, active2, 0x1060000000L, active3, 0x2000000000000L, active4, 0x20200840000L, active5, 0x800400030L, active6, 0xc000000007f00000L, active7, 0x180L, active8, 0x40000000000L, active9, 0x4000001000000004L, active10, 0x80003c00L, active11, 0x1000020L); case 70: case 102: - if ((active5 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(5, 367, 94); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000000000L, active7, 0L, active8, 0x1c0000L, active9, 0x1800000000000000L, active10, 0L, active11, 0L); + if ((active5 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 372, 95); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000000000000L, active7, 0L, active8, 0x38000000L, active9, 0L, active10, 0x30L, active11, 0L); case 71: case 103: - if ((active3 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 242, 94); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000L, active4, 0L, active5, 0x700L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000L, active10, 0L, active11, 0x10000L); + if ((active3 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 246, 95); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x20000000L, active4, 0L, active5, 0xe000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x4000000L); case 72: case 104: - if ((active4 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 304, 94); - else if ((active7 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 502, 94); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000L, active7, 0L, active8, 0x40000000L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active4 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 309, 95); + else if ((active7 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 511, 95); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 73: case 105: - return jjMoveStringLiteralDfa6_2(active0, 0x8000000L, active1, 0x20000000800L, active2, 0x10e001c00000f00L, active3, 0x1901000400000400L, active4, 0L, active5, 0x4000000100000L, active6, 0x60000001008L, active7, 0x400000000081040L, active8, 0x380000000e004000L, active9, 0x40000001000000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa6_2(active0, 0x8000000L, active1, 0x60000000800L, active2, 0x10e001c000007c00L, active3, 0x9010004000004000L, active4, 0x1L, active5, 0x80000002000000L, active6, 0x1800000040100L, active7, 0x2041000L, active8, 0x1c00800008L, active9, 0x8000000200000070L, active10, 0L, active11, 0x4000L); case 76: case 108: - if ((active3 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(5, 233, 94); - else if ((active6 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(5, 407, 94); - else if ((active7 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 501, 94); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x4L, active2, 0x8000300000L, active3, 0L, active4, 0L, active5, 0x30000040010L, active6, 0x10000000000000L, active7, 0L, active8, 0x890000002L, active9, 0xe000000000400000L, active10, 0L, active11, 0x2000L); + if ((active3 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_2(5, 237, 95); + else if ((active6 & 0x20000000L) != 0L) + return jjStartNfaWithStates_2(5, 413, 95); + else if ((active7 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 510, 95); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x4L, active2, 0x80003000000L, active3, 0L, active4, 0L, active5, 0x600000800200L, active6, 0x400000000000000L, active7, 0L, active8, 0x112000000400L, active9, 0x80000000L, active10, 0x1c0L, active11, 0x800000L); case 77: case 109: - if ((active9 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(5, 593, 94); - else if ((active9 & 0x80000000L) != 0L) + if ((active9 & 0x4000000L) != 0L) + return jjStartNfaWithStates_2(5, 602, 95); + else if ((active9 & 0x10000000000L) != 0L) { - jjmatchedKind = 607; + jjmatchedKind = 616; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0x4L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000000000L, active9, 0x300002000L, active10, 0x4000L, active11, 0L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0x42L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x60000400008L, active10, 0x1000000L, active11, 0L); case 78: case 110: if ((active0 & 0x80L) != 0L) - return jjStartNfaWithStates_2(5, 7, 94); + return jjStartNfaWithStates_2(5, 7, 95); else if ((active1 & 0x800000L) != 0L) { jjmatchedKind = 87; jjmatchedPos = 5; } - else if ((active2 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(5, 171, 94); - else if ((active3 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(5, 227, 94); - else if ((active5 & 0x8000000000000000L) != 0L) + else if ((active2 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_2(5, 175, 95); + else if ((active3 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_2(5, 231, 95); + else if ((active6 & 0x10L) != 0L) { - jjmatchedKind = 383; + jjmatchedKind = 388; jjmatchedPos = 5; } - else if ((active7 & 0x200000L) != 0L) + else if ((active7 & 0x8000000L) != 0L) { - jjmatchedKind = 469; + jjmatchedKind = 475; jjmatchedPos = 5; } - else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 696, 94); - return jjMoveStringLiteralDfa6_2(active0, 0x4040000020000000L, active1, 0xffe0040007000000L, active2, 0x20050000000001L, active3, 0x1000L, active4, 0x400000001800L, active5, 0x880004000L, active6, 0x23c1000001L, active7, 0x43c0fc00000L, active8, 0x3fff000000001L, active9, 0x8000000000000L, active10, 0xa0000002000L, active11, 0x108000L); + else if ((active11 & 0x4L) != 0L) + return jjStartNfaWithStates_2(5, 706, 95); + return jjMoveStringLiteralDfa6_2(active0, 0x4040000020000000L, active1, 0xffc0080007000000L, active2, 0x200500000000003L, active3, 0x10000L, active4, 0x8000000018000L, active5, 0x11000080000L, active6, 0x8f040000020L, active7, 0x10f03f0000000L, active8, 0x7ffe00000000200L, active9, 0x1000000000000000L, active10, 0x28000000800000L, active11, 0x42000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_2(active0, 0x1800000000000000L, active1, 0L, active2, 0x4000008000L, active3, 0L, active4, 0x4000000c0000000L, active5, 0L, active6, 0x10000000000L, active7, 0x200108000000000L, active8, 0x1c000420000030L, active9, 0x6000000000000L, active10, 0x308000100000L, active11, 0x20000L); + return jjMoveStringLiteralDfa6_2(active0, 0x1800000000000000L, active1, 0L, active2, 0x40000080000L, active3, 0L, active4, 0x8000000c00000000L, active5, 0L, active6, 0x400000000000L, active7, 0x2c200000000000L, active8, 0x3800084000006004L, active9, 0xc00000000000000L, active10, 0xc2000040000000L, active11, 0x8000000L); case 80: case 112: - if ((active7 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(5, 481, 94); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000L, active11, 0x808L); + if ((active7 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_2(5, 487, 95); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400000L, active11, 0x202000L); case 81: case 113: - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x2L) != 0L) + if ((active2 & 0x4L) != 0L) { - jjmatchedKind = 129; + jjmatchedKind = 130; jjmatchedPos = 5; } - else if ((active3 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(5, 208, 94); - else if ((active5 & 0x40L) != 0L) - return jjStartNfaWithStates_2(5, 326, 94); - else if ((active5 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 369, 94); - else if ((active7 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(5, 493, 94); - else if ((active8 & 0x4L) != 0L) + else if ((active3 & 0x100000L) != 0L) + return jjStartNfaWithStates_2(5, 212, 95); + else if ((active5 & 0x800L) != 0L) + return jjStartNfaWithStates_2(5, 331, 95); + else if ((active5 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 374, 95); + else if ((active7 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 502, 95); + else if ((active8 & 0x800L) != 0L) { - jjmatchedKind = 514; + jjmatchedKind = 523; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_2(active0, 0x8000000800000000L, active1, 0x9f800000000L, active2, 0x800000000c80004L, active3, 0x8000000000000L, active4, 0x14000000000000L, active5, 0x10000000000020L, active6, 0x5800010000000L, active7, 0x40080L, active8, 0x1000008L, active9, 0x2006000000L, active10, 0L, active11, 0x200L); + return jjMoveStringLiteralDfa6_2(active0, 0x8000000800000000L, active1, 0x11f800000000L, active2, 0x800000000c800008L, active3, 0x80000000000000L, active4, 0x280000000000000L, active5, 0x200000000000400L, active6, 0x160000400000000L, active7, 0x1002000L, active8, 0x200001000L, active9, 0x400c00000000L, active10, 0L, active11, 0x80000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(5, 16, 94); - else if ((active2 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 190, 94); - else if ((active3 & 0x100L) != 0L) - return jjStartNfaWithStates_2(5, 200, 94); - else if ((active3 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 241, 94); - else if ((active5 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(5, 344, 94); - else if ((active5 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 374, 94); - else if ((active6 & 0x20L) != 0L) - return jjStartNfaWithStates_2(5, 389, 94); - else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(5, 677, 94); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x200000008000L, active2, 0L, active3, 0x10000000L, active4, 0x18200L, active5, 0x4003000L, active6, 0x8000400000000000L, active7, 0x2f00L, active8, 0xc000000000000000L, active9, 0x10000000ffL, active10, 0x800000000000L, active11, 0x6000000L); + return jjStartNfaWithStates_2(5, 16, 95); + else if ((active3 & 0x4L) != 0L) + return jjStartNfaWithStates_2(5, 194, 95); + else if ((active3 & 0x1000L) != 0L) + return jjStartNfaWithStates_2(5, 204, 95); + else if ((active3 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 245, 95); + else if ((active5 & 0x20000000L) != 0L) + return jjStartNfaWithStates_2(5, 349, 95); + else if ((active5 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 379, 95); + else if ((active6 & 0x800L) != 0L) + return jjStartNfaWithStates_2(5, 395, 95); + else if ((active10 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_2(5, 687, 95); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x400000008000L, active2, 0L, active3, 0x100000000L, active4, 0x2000182000L, active5, 0x80060000L, active6, 0x10000000000000L, active7, 0xbc020L, active8, 0L, active9, 0x20000001ff80L, active10, 0x200000000000000L, active11, 0x1800000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) - return jjStartNfaWithStates_2(5, 5, 94); + return jjStartNfaWithStates_2(5, 5, 95); else if ((active0 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(5, 43, 94); + return jjStartNfaWithStates_2(5, 43, 95); else if ((active1 & 0x8000000L) != 0L) { jjmatchedKind = 91; jjmatchedPos = 5; } - else if ((active3 & 0x4L) != 0L) + else if ((active3 & 0x40L) != 0L) { - jjmatchedKind = 194; + jjmatchedKind = 198; jjmatchedPos = 5; } - else if ((active3 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(5, 216, 94); - else if ((active3 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 254, 94); - else if ((active4 & 0x400L) != 0L) - return jjStartNfaWithStates_2(5, 266, 94); - else if ((active5 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 371, 94); + else if ((active3 & 0x10000000L) != 0L) + return jjStartNfaWithStates_2(5, 220, 95); + else if ((active4 & 0x4L) != 0L) + return jjStartNfaWithStates_2(5, 258, 95); + else if ((active4 & 0x4000L) != 0L) + return jjStartNfaWithStates_2(5, 270, 95); else if ((active5 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 376, 94); - else if ((active6 & 0x100L) != 0L) - return jjStartNfaWithStates_2(5, 392, 94); - else if ((active7 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(5, 468, 94); - else if ((active7 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 508, 94); - else if ((active9 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(5, 599, 94); - else if ((active10 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(5, 662, 94); - else if ((active10 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(5, 665, 94); - return jjMoveStringLiteralDfa6_2(active0, 0x2000010000000L, active1, 0xf03e0000L, active2, 0x20000000080L, active3, 0x8000000088L, active4, 0x300000000800000L, active5, 0L, active6, 0x800400000L, active7, 0x4000000000004000L, active8, 0L, active9, 0x1f80040080000L, active10, 0L, active11, 0x400000L); + return jjStartNfaWithStates_2(5, 376, 95); + else if ((active5 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_2(5, 381, 95); + else if ((active6 & 0x4000L) != 0L) + return jjStartNfaWithStates_2(5, 398, 95); + else if ((active7 & 0x4000000L) != 0L) + return jjStartNfaWithStates_2(5, 474, 95); + else if ((active8 & 0x20L) != 0L) + return jjStartNfaWithStates_2(5, 517, 95); + else if ((active9 & 0x100000000L) != 0L) + return jjStartNfaWithStates_2(5, 608, 95); + else if ((active10 & 0x100000000L) != 0L) + return jjStartNfaWithStates_2(5, 672, 95); + else if ((active10 & 0x800000000L) != 0L) + return jjStartNfaWithStates_2(5, 675, 95); + return jjMoveStringLiteralDfa6_2(active0, 0x2000010000000L, active1, 0xf03e0000L, active2, 0x200000000200L, active3, 0x80000000880L, active4, 0x6000000008000000L, active5, 0L, active6, 0x20010000000L, active7, 0x100000L, active8, 0x80L, active9, 0x3f0008010000000L, active10, 0L, active11, 0x100000000L); case 85: case 117: - return jjMoveStringLiteralDfa6_2(active0, 0x20000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000L, active8, 0x80000000000000L, active9, 0L, active10, 0x200000000000000L, active11, 0L); + return jjMoveStringLiteralDfa6_2(active0, 0x20000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0x8L); case 86: case 118: - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80200020000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x18000L, active10, 0x8000000000000L, active11, 0L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1004000200000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3000002L, active10, 0x2000000000000000L, active11, 0L); case 87: case 119: - if ((active4 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(5, 277, 94); - else if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(5, 694, 94); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x400000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000L, active11, 0L); + if ((active4 & 0x2000000L) != 0L) + return jjStartNfaWithStates_2(5, 281, 95); + else if ((active11 & 0x1L) != 0L) + return jjStartNfaWithStates_2(5, 704, 95); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0x10000L, active3, 0x4000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L); case 88: case 120: - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0x400000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active0 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(5, 44, 94); - else if ((active3 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(5, 223, 94); - else if ((active5 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(5, 342, 94); - else if ((active9 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(5, 605, 94); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active0 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_2(5, 44, 95); + else if ((active3 & 0x800000000L) != 0L) + return jjStartNfaWithStates_2(5, 227, 95); + else if ((active5 & 0x8000000L) != 0L) + return jjStartNfaWithStates_2(5, 347, 95); + else if ((active9 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_2(5, 614, 95); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000000000L); default : break; } @@ -12899,40 +12970,40 @@ private final int jjMoveStringLiteralDfa6_2(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active7 & 0x80L) != 0L) - return jjStartNfaWithStates_2(6, 455, 94); + if ((active7 & 0x2000L) != 0L) + return jjStartNfaWithStates_2(6, 461, 95); break; case 95: - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0x8L, active9, 0x300058000L, active10, 0L, active11, 0x4000L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1000L, active9, 0x6000b000000L, active10, 0L, active11, 0x1000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_2(active0, 0x40000000400000L, active1, 0xf800000000L, active2, 0x800000000400000L, active3, 0x1800000000001000L, active4, 0x80200020000L, active5, 0x80000000L, active6, 0L, active7, 0x80000004000L, active8, 0x700000040000000L, active9, 0xe001f0b000000000L, active10, 0x20000000000L, active11, 0x10000000L); + return jjMoveStringLiteralDfa7_2(active0, 0x40000000400000L, active1, 0xf800000000L, active2, 0x8000000004000000L, active3, 0x8000000000010000L, active4, 0x1004000200001L, active5, 0x1000000000L, active6, 0L, active7, 0x12000000100000L, active8, 0x8000000000L, active9, 0x3e160000000000eL, active10, 0x80000000001c0L, active11, 0x4000000000L); case 66: case 98: - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0x400000000L, active3, 0L, active4, 0xc0000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0x4000000000L, active3, 0L, active4, 0xc00000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000000000000L, active11, 0L); case 67: case 99: - if ((active2 & 0x2000000000000L) != 0L) + if ((active2 & 0x20000000000000L) != 0L) { - jjmatchedKind = 177; + jjmatchedKind = 181; jjmatchedPos = 6; } - else if ((active5 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 370, 94); - return jjMoveStringLiteralDfa7_2(active0, 0x800000L, active1, 0x8000L, active2, 0xc060000008000L, active3, 0x8800000000000L, active4, 0x800L, active5, 0x40000000L, active6, 0L, active7, 0x4000100080000L, active8, 0x200000001L, active9, 0x780000000000000L, active10, 0L, active11, 0L); + else if ((active5 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 375, 95); + return jjMoveStringLiteralDfa7_2(active0, 0x800000L, active1, 0x8000L, active2, 0xc0600000080000L, active3, 0x88000000000000L, active4, 0x2000008000L, active5, 0x800000000L, active6, 0L, active7, 0x800004002000000L, active8, 0x40000000200L, active9, 0L, active10, 0xfL, active11, 0L); case 68: case 100: - if ((active2 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(6, 153, 94); - else if ((active2 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(6, 160, 94); - else if ((active3 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(6, 237, 94); - else if ((active4 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 319, 94); - else if ((active10 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(6, 661, 94); - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x6000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0x800000002000L, active11, 0L); + if ((active2 & 0x20000000L) != 0L) + return jjStartNfaWithStates_2(6, 157, 95); + else if ((active2 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_2(6, 164, 95); + else if ((active3 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 241, 95); + else if ((active5 & 0x10L) != 0L) + return jjStartNfaWithStates_2(6, 324, 95); + else if ((active10 & 0x80000000L) != 0L) + return jjStartNfaWithStates_2(6, 671, 95); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x6000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000L, active7, 0L, active8, 0L, active9, 0x1000000000L, active10, 0x200000000800000L, active11, 0L); case 69: case 101: if ((active0 & 0x80000000000000L) != 0L) @@ -12941,40 +13012,40 @@ else if ((active10 & 0x200000L) != 0L) jjmatchedPos = 6; } else if ((active1 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(6, 81, 94); - else if ((active2 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(6, 147, 94); - else if ((active3 & 0x10L) != 0L) - return jjStartNfaWithStates_2(6, 196, 94); - else if ((active3 & 0x80L) != 0L) - return jjStartNfaWithStates_2(6, 199, 94); - else if ((active4 & 0x1L) != 0L) - return jjStartNfaWithStates_2(6, 256, 94); - else if ((active6 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(6, 419, 94); - else if ((active6 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(6, 431, 94); - else if ((active7 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(6, 461, 94); - else if ((active7 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(6, 463, 94); - else if ((active7 & 0x400000000L) != 0L) + return jjStartNfaWithStates_2(6, 81, 95); + else if ((active2 & 0x800000L) != 0L) + return jjStartNfaWithStates_2(6, 151, 95); + else if ((active3 & 0x100L) != 0L) + return jjStartNfaWithStates_2(6, 200, 95); + else if ((active3 & 0x800L) != 0L) + return jjStartNfaWithStates_2(6, 203, 95); + else if ((active4 & 0x10L) != 0L) + return jjStartNfaWithStates_2(6, 260, 95); + else if ((active6 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_2(6, 425, 95); + else if ((active6 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 437, 95); + else if ((active7 & 0x80000L) != 0L) + return jjStartNfaWithStates_2(6, 467, 95); + else if ((active7 & 0x200000L) != 0L) + return jjStartNfaWithStates_2(6, 469, 95); + else if ((active7 & 0x10000000000L) != 0L) { - jjmatchedKind = 482; + jjmatchedKind = 488; jjmatchedPos = 6; } - else if ((active10 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(6, 652, 94); - else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(6, 725, 94); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(6, 726, 94); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(6, 731, 94); - return jjMoveStringLiteralDfa7_2(active0, 0x100000000000000L, active1, 0x4L, active2, 0x400000000800000L, active3, 0x2000000010000000L, active4, 0x10000000018004L, active5, 0x10000004103720L, active6, 0x10100000000000L, active7, 0x3803c00000L, active8, 0x400000L, active9, 0x2000L, active10, 0x80000f0000000L, active11, 0x2200L); + else if ((active10 & 0x400000L) != 0L) + return jjStartNfaWithStates_2(6, 662, 95); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_2(6, 735, 95); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_2(6, 736, 95); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_2(6, 741, 95); + return jjMoveStringLiteralDfa7_2(active0, 0x100000000000000L, active1, 0x4L, active2, 0x4000000008030000L, active3, 0x100000000L, active4, 0x200000000180042L, active5, 0x20000008206e400L, active6, 0x404000000000000L, active7, 0xe00f0000000L, active8, 0x80000000L, active9, 0x400000L, active10, 0x200003c000000000L, active11, 0x880000L); case 70: case 102: - return jjMoveStringLiteralDfa7_2(active0, 0x8000000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_2(active0, 0x8000000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x800000000000000L) != 0L) @@ -12983,203 +13054,208 @@ else if ((active11 & 0x8000000L) != 0L) jjmatchedPos = 6; } else if ((active0 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 62, 94); - else if ((active4 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(6, 302, 94); - else if ((active5 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(6, 355, 94); - else if ((active6 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(6, 408, 94); - else if ((active6 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(6, 421, 94); - else if ((active7 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(6, 490, 94); - else if ((active10 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(6, 683, 94); - else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(6, 719, 94); - return jjMoveStringLiteralDfa7_2(active0, 0x1000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0x80L); + return jjStartNfaWithStates_2(6, 62, 95); + else if ((active4 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 307, 95); + else if ((active5 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_2(6, 360, 95); + else if ((active6 & 0x40000000L) != 0L) + return jjStartNfaWithStates_2(6, 414, 95); + else if ((active6 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_2(6, 427, 95); + else if ((active7 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 496, 95); + else if ((active10 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 693, 95); + else if ((active11 & 0x2000000L) != 0L) + return jjStartNfaWithStates_2(6, 729, 95); + return jjMoveStringLiteralDfa7_2(active0, 0x1000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0x20000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 49, 94); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(6, 730, 94); - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(6, 49, 95); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_2(6, 740, 95); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_2(active0, 0x810000000L, active1, 0x100000e03c0000L, active2, 0x2000001000L, active3, 0x400028L, active4, 0x300000000800202L, active5, 0x30000000000L, active6, 0x8000600000400000L, active7, 0x4000100004000000L, active8, 0xc0000000001c0002L, active9, 0x400060000ffL, active10, 0xc000L, active11, 0x10020L); + return jjMoveStringLiteralDfa7_2(active0, 0x810000000L, active1, 0x200000e03c0000L, active2, 0x20000000100L, active3, 0x4000280L, active4, 0x6000000008002020L, active5, 0x600000000000L, active6, 0x18000010000000L, active7, 0x20000100000020L, active8, 0x38000480L, active9, 0x8000c0001ff80L, active10, 0x3000000L, active11, 0x4008000L); case 76: case 108: - if ((active2 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(6, 146, 94); - else if ((active3 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(6, 229, 94); - else if ((active4 & 0x10L) != 0L) + if ((active2 & 0x400000L) != 0L) + return jjStartNfaWithStates_2(6, 150, 95); + else if ((active3 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_2(6, 233, 95); + else if ((active4 & 0x100L) != 0L) { - jjmatchedKind = 260; + jjmatchedKind = 264; jjmatchedPos = 6; } - else if ((active4 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(6, 300, 94); - else if ((active5 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(6, 352, 94); - else if ((active6 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(6, 405, 94); - return jjMoveStringLiteralDfa7_2(active0, 0x20000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20L, active5, 0x20480000000000L, active6, 0x10L, active7, 0x100L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active4 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 305, 95); + else if ((active5 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_2(6, 357, 95); + else if ((active6 & 0x200L) != 0L) + { + jjmatchedKind = 393; + jjmatchedPos = 6; + } + else if ((active6 & 0x8000000L) != 0L) + return jjStartNfaWithStates_2(6, 411, 95); + return jjMoveStringLiteralDfa7_2(active0, 0x20000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200L, active5, 0x409000000000000L, active6, 0x400L, active7, 0x4000L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa7_2(active0, 0x21000000L, active1, 0L, active2, 0xf00L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x10000000000L, active8, 0x1880000000000000L, active9, 0L, active10, 0x10000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_2(active0, 0x21000000L, active1, 0L, active2, 0x7c00L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0x31L, active10, 0x4000000000000L, active11, 0L); case 78: case 110: if ((active0 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(6, 42, 94); + return jjStartNfaWithStates_2(6, 42, 95); else if ((active0 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(6, 47, 94); - else if ((active3 & 0x400L) != 0L) - return jjStartNfaWithStates_2(6, 202, 94); - else if ((active3 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(6, 217, 94); - else if ((active3 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(6, 218, 94); - else if ((active6 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(6, 412, 94); - else if ((active6 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(6, 424, 94); - else if ((active7 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 505, 94); - else if ((active8 & 0x10L) != 0L) + return jjStartNfaWithStates_2(6, 47, 95); + else if ((active3 & 0x4000L) != 0L) + return jjStartNfaWithStates_2(6, 206, 95); + else if ((active3 & 0x20000000L) != 0L) + return jjStartNfaWithStates_2(6, 221, 95); + else if ((active3 & 0x40000000L) != 0L) + return jjStartNfaWithStates_2(6, 222, 95); + else if ((active6 & 0x400000000L) != 0L) + return jjStartNfaWithStates_2(6, 418, 95); + else if ((active6 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_2(6, 430, 95); + else if ((active8 & 0x4L) != 0L) + return jjStartNfaWithStates_2(6, 514, 95); + else if ((active8 & 0x2000L) != 0L) { - jjmatchedKind = 516; + jjmatchedKind = 525; jjmatchedPos = 6; } - else if ((active10 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(6, 659, 94); - else if ((active10 & 0x100000000000L) != 0L) + else if ((active10 & 0x20000000L) != 0L) + return jjStartNfaWithStates_2(6, 669, 95); + else if ((active10 & 0x40000000000000L) != 0L) { - jjmatchedKind = 684; + jjmatchedKind = 694; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x20000000000L, active2, 0x100010000000000L, active3, 0x1000000000000L, active4, 0L, active5, 0x4002L, active6, 0x8L, active7, 0x8000000000046L, active8, 0x201c000005004020L, active9, 0x46000800000000L, active10, 0x200000000000L, active11, 0x100L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x60000000000L, active2, 0x1000100000000000L, active3, 0x10000000000000L, active4, 0L, active5, 0x80040L, active6, 0x100L, active7, 0x1000000000001180L, active8, 0x3800000a00804000L, active9, 0x8c00100000000040L, active10, 0x80000000000000L, active11, 0x40000L); case 79: case 111: - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x1000L, active2, 0x8000000000L, active3, 0x400000000L, active4, 0L, active5, 0L, active6, 0x60000000000L, active7, 0x20L, active8, 0x8b0000000L, active9, 0x1800000000000000L, active10, 0x4000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x1000L, active2, 0x80000000000L, active3, 0x4000000000L, active4, 0L, active5, 0L, active6, 0x1800000000000L, active7, 0x800L, active8, 0x116000000000L, active9, 0L, active10, 0x1000000000030L, active11, 0L); case 80: case 112: - if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(6, 679, 94); - return jjMoveStringLiteralDfa7_2(active0, 0x10000000000L, active1, 0xa00000000000L, active2, 0x1800000000L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0x400L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active10 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 689, 95); + return jjMoveStringLiteralDfa7_2(active0, 0x10000000000L, active1, 0x1400000000000L, active2, 0x18000000000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x10000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(6, 154, 94); - else if ((active4 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(6, 270, 94); - else if ((active4 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(6, 275, 94); - else if ((active4 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(6, 278, 94); - else if ((active4 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 314, 94); - else if ((active6 & 0x100000000000000L) != 0L) + if ((active2 & 0x40000000L) != 0L) + return jjStartNfaWithStates_2(6, 158, 95); + else if ((active4 & 0x40000L) != 0L) + return jjStartNfaWithStates_2(6, 274, 95); + else if ((active4 & 0x800000L) != 0L) + return jjStartNfaWithStates_2(6, 279, 95); + else if ((active4 & 0x4000000L) != 0L) + return jjStartNfaWithStates_2(6, 282, 95); + else if ((active4 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 319, 95); + else if ((active6 & 0x4000000000000000L) != 0L) { - jjmatchedKind = 440; + jjmatchedKind = 446; jjmatchedPos = 6; } - else if ((active8 & 0x400L) != 0L) - return jjStartNfaWithStates_2(6, 522, 94); - else if ((active10 & 0x2L) != 0L) + else if ((active8 & 0x80000L) != 0L) + return jjStartNfaWithStates_2(6, 531, 95); + else if ((active10 & 0x400L) != 0L) { - jjmatchedKind = 641; + jjmatchedKind = 650; jjmatchedPos = 6; } - else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(6, 682, 94); - else if ((active10 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 699, 94); - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0x1000000020000080L, active3, 0x8020000000L, active4, 0x18000000L, active5, 0x4L, active6, 0x200000002000000L, active7, 0L, active8, 0L, active9, 0x80040000300L, active10, 0x5cL, active11, 0x20000L); + else if ((active10 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 692, 95); + else if ((active11 & 0x20L) != 0L) + return jjStartNfaWithStates_2(6, 709, 95); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0x200000200L, active3, 0x80200000001L, active4, 0x180000000L, active5, 0x80L, active6, 0x8000000080000000L, active7, 0x8000000000000L, active8, 0L, active9, 0x10008000060000L, active10, 0xb800L, active11, 0x8000000L); case 83: case 115: - if ((active5 & 0x1L) != 0L) - return jjStartNfaWithStates_2(6, 320, 94); - else if ((active5 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(6, 337, 94); - else if ((active6 & 0x1L) != 0L) - return jjStartNfaWithStates_2(6, 384, 94); - else if ((active7 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(6, 475, 94); - else if ((active7 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 504, 94); - else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_2(6, 707, 94); - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x200000L, active10, 0L, active11, 0x40L); + if ((active5 & 0x20L) != 0L) + return jjStartNfaWithStates_2(6, 325, 95); + else if ((active5 & 0x400000L) != 0L) + return jjStartNfaWithStates_2(6, 342, 95); + else if ((active6 & 0x20L) != 0L) + return jjStartNfaWithStates_2(6, 389, 95); + else if ((active7 & 0x200000000L) != 0L) + return jjStartNfaWithStates_2(6, 481, 95); + else if ((active8 & 0x2L) != 0L) + return jjStartNfaWithStates_2(6, 513, 95); + else if ((active11 & 0x2000L) != 0L) + return jjStartNfaWithStates_2(6, 717, 95); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x2000000000000L, active2, 0x40000000040L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000000L, active8, 0L, active9, 0x40000000L, active10, 0x40000L, active11, 0x10000L); case 84: case 116: if ((active1 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(6, 86, 94); + return jjStartNfaWithStates_2(6, 86, 95); else if ((active1 & 0x100000000L) != 0L) { jjmatchedKind = 96; jjmatchedPos = 6; } - else if ((active1 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(6, 107, 94); - else if ((active1 & 0x20000000000000L) != 0L) + else if ((active1 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_2(6, 108, 95); + else if ((active1 & 0x40000000000000L) != 0L) { - jjmatchedKind = 117; + jjmatchedKind = 118; jjmatchedPos = 6; } - else if ((active2 & 0x100000L) != 0L) + else if ((active2 & 0x1000000L) != 0L) { - jjmatchedKind = 148; + jjmatchedKind = 152; jjmatchedPos = 6; } - else if ((active2 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 181, 94); - else if ((active3 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(6, 205, 94); - else if ((active6 & 0x40000000L) != 0L) + else if ((active2 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 185, 95); + else if ((active3 & 0x20000L) != 0L) + return jjStartNfaWithStates_2(6, 209, 95); + else if ((active6 & 0x1000000000L) != 0L) { - jjmatchedKind = 414; + jjmatchedKind = 420; jjmatchedPos = 6; } - else if ((active7 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(6, 465, 94); - else if ((active7 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(6, 466, 94); - else if ((active8 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(6, 539, 94); - else if ((active9 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 627, 94); - else if ((active10 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(6, 660, 94); - else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 697, 94); - return jjMoveStringLiteralDfa7_2(active0, 0x48002040L, active1, 0xffc00006100003f8L, active2, 0x200001L, active3, 0x100004000000000L, active4, 0x1008L, active5, 0L, active6, 0x3801fc000L, active7, 0x8400000000000000L, active8, 0x3fff100800000L, active9, 0x1400000L, active10, 0x100L, active11, 0x2000c14L); + else if ((active7 & 0x800000L) != 0L) + return jjStartNfaWithStates_2(6, 471, 95); + else if ((active7 & 0x1000000L) != 0L) + return jjStartNfaWithStates_2(6, 472, 95); + else if ((active8 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_2(6, 548, 95); + else if ((active9 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 636, 95); + else if ((active10 & 0x40000000L) != 0L) + return jjStartNfaWithStates_2(6, 670, 95); + else if ((active11 & 0x8L) != 0L) + return jjStartNfaWithStates_2(6, 707, 95); + return jjMoveStringLiteralDfa7_2(active0, 0x48002040L, active1, 0xff800006100003f8L, active2, 0x2000003L, active3, 0x1000040000000000L, active4, 0x10080L, active5, 0L, active6, 0xe007f00000L, active7, 0L, active8, 0x7ffe20100000108L, active9, 0x280000000L, active10, 0x20000L, active11, 0x800305000L); case 85: case 117: - return jjMoveStringLiteralDfa7_2(active0, 0x600000000L, active1, 0x50000000000L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0x40010L, active6, 0x20000000000000L, active7, 0x8000000000L, active8, 0x400000000L, active9, 0x80000L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa7_2(active0, 0x600000000L, active1, 0x90000000000L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0x800200L, active6, 0x800000000000000L, active7, 0x200000000000L, active8, 0x80000000000L, active9, 0x10000000L, active10, 0L, active11, 0x40000000L); case 86: case 118: - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0x1018L, active8, 0L, active9, 0x20000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0x40000000000000L, active7, 0x40600L, active8, 0L, active9, 0x4000000000000000L, active10, 0L, active11, 0L); case 88: case 120: - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0x600L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0x18000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 63, 94); - else if ((active4 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 306, 94); - else if ((active6 & 0x800L) != 0L) - return jjStartNfaWithStates_2(6, 395, 94); - else if ((active6 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 434, 94); - else if ((active6 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_2(6, 439, 94); - else if ((active10 & 0x200L) != 0L) - return jjStartNfaWithStates_2(6, 649, 94); - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(6, 63, 95); + else if ((active4 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 311, 95); + else if ((active6 & 0x20000L) != 0L) + return jjStartNfaWithStates_2(6, 401, 95); + else if ((active6 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 440, 95); + else if ((active6 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_2(6, 445, 95); + else if ((active10 & 0x80000L) != 0L) + return jjStartNfaWithStates_2(6, 659, 95); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; } @@ -13197,226 +13273,231 @@ private final int jjMoveStringLiteralDfa7_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa8_2(active0, 0x1000000000000000L, active1, 0xffc0000006000000L, active2, 0xc000000000001L, active3, 0L, active4, 0L, active5, 0x700L, active6, 0x200000000L, active7, 0x3800000000L, active8, 0xc000000000000020L, active9, 0xffL, active10, 0x1cL, active11, 0L); + return jjMoveStringLiteralDfa8_2(active0, 0x1000000000000000L, active1, 0xff80000006000000L, active2, 0xc0000000000003L, active3, 0L, active4, 0L, active5, 0xe000L, active6, 0x8000000000L, active7, 0xe0000000000L, active8, 0x4000L, active9, 0x1ff80L, active10, 0x3800L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_2(active0, 0x10001000000L, active1, 0x1000000000000L, active2, 0x20008000L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000L, active8, 0x20000804000000L, active9, 0x800040000L, active10, 0x800000000000L, active11, 0x100L); + return jjMoveStringLiteralDfa8_2(active0, 0x10001000000L, active1, 0x2000000000000L, active2, 0x2000a0000L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1800000000000000L, active8, 0x4000100800000000L, active9, 0x100008000000L, active10, 0x200000000000000L, active11, 0x40000L); case 66: case 98: - if ((active8 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(7, 540, 94); - else if ((active8 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(7, 543, 94); - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0x400000L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x10000004000L, active8, 0x400000000L, active9, 0x100L, active10, 0L, active11, 0L); + if ((active8 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_2(7, 549, 95); + else if ((active8 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_2(7, 552, 95); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0x4000000L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0L, active7, 0x400000100000L, active8, 0x80000000000L, active9, 0x20000L, active10, 0L, active11, 0L); case 67: case 99: - if ((active2 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 186, 98); - else if ((active8 & 0x40000L) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 190, 98); + else if ((active8 & 0x8000000L) != 0L) { - jjmatchedKind = 530; + jjmatchedKind = 539; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x10000000000L, active2, 0L, active3, 0x10000000L, active4, 0x18000L, active5, 0x3000L, active6, 0L, active7, 0x10000000000006L, active8, 0x180000L, active9, 0x200L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x10000000000L, active2, 0L, active3, 0x100000000L, active4, 0x180000L, active5, 0x60000L, active6, 0L, active7, 0x2000000000000180L, active8, 0x30000000L, active9, 0x40000L, active10, 0L, active11, 0L); case 68: case 100: if ((active0 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 56, 94); - else if ((active2 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(7, 151, 94); - else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(7, 721, 94); - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3c00000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(7, 56, 95); + else if ((active2 & 0x8000000L) != 0L) + return jjStartNfaWithStates_2(7, 155, 95); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_2(7, 731, 95); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000f0000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x40L) != 0L) - return jjStartNfaWithStates_2(7, 6, 94); + return jjStartNfaWithStates_2(7, 6, 95); else if ((active0 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(7, 13, 94); + return jjStartNfaWithStates_2(7, 13, 95); else if ((active1 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(7, 79, 94); - else if ((active1 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(7, 106, 94); - else if ((active2 & 0x20L) != 0L) - return jjStartNfaWithStates_2(7, 133, 94); - else if ((active2 & 0x100L) != 0L) - { - jjmatchedKind = 136; + return jjStartNfaWithStates_2(7, 79, 95); + else if ((active1 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_2(7, 107, 95); + else if ((active2 & 0x40L) != 0L) + return jjStartNfaWithStates_2(7, 134, 95); + else if ((active2 & 0x400L) != 0L) + { + jjmatchedKind = 138; jjmatchedPos = 7; } - else if ((active2 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(7, 162, 94); - else if ((active4 & 0x800L) != 0L) - return jjStartNfaWithStates_2(7, 267, 94); - else if ((active4 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(7, 293, 94); - else if ((active4 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(7, 296, 94); - else if ((active5 & 0x10L) != 0L) - return jjStartNfaWithStates_2(7, 324, 94); - else if ((active5 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(7, 338, 94); - else if ((active5 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(7, 366, 94); - else if ((active6 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 432, 94); - else if ((active7 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(7, 460, 94); - else if ((active8 & 0x1L) != 0L) - return jjStartNfaWithStates_2(7, 512, 94); - else if ((active8 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(7, 535, 94); + else if ((active2 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_2(7, 166, 95); + else if ((active4 & 0x8000L) != 0L) + return jjStartNfaWithStates_2(7, 271, 95); + else if ((active4 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(7, 298, 95); + else if ((active4 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_2(7, 301, 95); + else if ((active5 & 0x200L) != 0L) + return jjStartNfaWithStates_2(7, 329, 95); + else if ((active5 & 0x800000L) != 0L) + return jjStartNfaWithStates_2(7, 343, 95); + else if ((active5 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 371, 95); + else if ((active6 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 438, 95); + else if ((active7 & 0x40000L) != 0L) + return jjStartNfaWithStates_2(7, 466, 95); + else if ((active8 & 0x200L) != 0L) + return jjStartNfaWithStates_2(7, 521, 95); else if ((active8 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(7, 544, 94); - else if ((active8 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 544, 95); + else if ((active8 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_2(7, 553, 95); + else if ((active9 & 0x10L) != 0L) { - jjmatchedKind = 571; + jjmatchedKind = 580; jjmatchedPos = 7; } - else if ((active10 & 0x100L) != 0L) - return jjStartNfaWithStates_2(7, 648, 94); - else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_2(7, 706, 94); - return jjMoveStringLiteralDfa8_2(active0, 0x20000000L, active1, 0x100003f8L, active2, 0x10000000e00L, active3, 0x4000000000L, active4, 0x100000000L, active5, 0x20000000000004L, active6, 0x1fc000L, active7, 0L, active8, 0x1083fff000000000L, active9, 0x26000000000000L, active10, 0x2000L, active11, 0x800L); + else if ((active10 & 0x20000L) != 0L) + return jjStartNfaWithStates_2(7, 657, 95); + else if ((active11 & 0x1000L) != 0L) + return jjStartNfaWithStates_2(7, 716, 95); + return jjMoveStringLiteralDfa8_2(active0, 0x20000000L, active1, 0x100003f8L, active2, 0x100000017800L, active3, 0x40000000000L, active4, 0x1000000000L, active5, 0x400000000000080L, active6, 0x7f00000L, active7, 0L, active8, 0x7ffe00000000000L, active9, 0x4c00000000000021L, active10, 0x800000L, active11, 0x200000L); case 70: case 102: - if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(7, 678, 94); - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0x1000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000000L, active10, 0xf0000000L, active11, 0L); + if ((active10 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 688, 95); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0x100L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0L, active9, 0x8000000000000L, active10, 0x3c000000000L, active11, 0L); case 71: case 103: - if ((active2 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 184, 94); - else if ((active3 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 240, 94); - else if ((active6 & 0x8L) != 0L) - return jjStartNfaWithStates_2(7, 387, 94); - else if ((active9 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 630, 94); - return jjMoveStringLiteralDfa8_2(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000000000L, active5, 0L, active6, 0x10000000000000L, active7, 0x18L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0x200L); + if ((active2 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 188, 95); + else if ((active3 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 244, 95); + else if ((active6 & 0x100L) != 0L) + return jjStartNfaWithStates_2(7, 392, 95); + else if ((active9 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 639, 95); + return jjMoveStringLiteralDfa8_2(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0x400000000000000L, active7, 0x600L, active8, 0x3800000000000000L, active9, 0L, active10, 0L, active11, 0x80000L); case 72: case 104: - if ((active2 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(7, 169, 94); - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_2(7, 173, 95); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x80000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_2(active0, 0x8000000L, active1, 0xfe00000800L, active2, 0L, active3, 0L, active4, 0x20001000L, active5, 0x4000L, active6, 0x180001010L, active7, 0L, active8, 0x203000000L, active9, 0x40400000L, active10, 0x200000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa8_2(active0, 0x8000000L, active1, 0xfe00000800L, active2, 0L, active3, 0L, active4, 0x200010000L, active5, 0x80000L, active6, 0x6000040400L, active7, 0L, active8, 0x40600000000L, active9, 0x8080000000L, active10, 0x80000000000000L, active11, 0x800000000L); case 74: case 106: - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0xc0000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0xc00000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 75: case 107: - if ((active7 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(7, 480, 94); + if ((active7 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_2(7, 486, 95); break; case 76: case 108: - if ((active3 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(7, 204, 94); - else if ((active4 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(7, 273, 94); - else if ((active5 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(7, 351, 94); - else if ((active8 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 569, 94); - else if ((active11 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(7, 717, 94); - return jjMoveStringLiteralDfa8_2(active0, 0x40020000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80200000020L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000020000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active3 & 0x10000L) != 0L) + return jjStartNfaWithStates_2(7, 208, 95); + else if ((active4 & 0x200000L) != 0L) + return jjStartNfaWithStates_2(7, 277, 95); + else if ((active5 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_2(7, 356, 95); + else if ((active9 & 0x4L) != 0L) + return jjStartNfaWithStates_2(7, 578, 95); + else if ((active11 & 0x800000L) != 0L) + return jjStartNfaWithStates_2(7, 727, 95); + return jjMoveStringLiteralDfa8_2(active0, 0x40020000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1004000000200L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000L, active9, 0x8L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0L, active4, 0x300000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0L, active4, 0x6000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3e0200000000000L, active10, 0L, active11, 0L); case 78: case 110: - if ((active3 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(7, 226, 94); - else if ((active6 & 0x20000000000L) != 0L) + if ((active3 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_2(7, 230, 95); + else if ((active6 & 0x800000000000L) != 0L) { - jjmatchedKind = 425; + jjmatchedKind = 431; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x1000004L, active2, 0x2000000004L, active3, 0x2000000000400020L, active4, 0x6L, active5, 0x10000000000000L, active6, 0x240000000000L, active7, 0x1108004000000L, active8, 0x8L, active9, 0x6002000L, active10, 0L, active11, 0x10010000L); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x1000004L, active2, 0x20000000008L, active3, 0x4000200L, active4, 0x62L, active5, 0x200000000000000L, active6, 0x9000000000000L, active7, 0x220200100000000L, active8, 0x1000L, active9, 0xc00400000L, active10, 0L, active11, 0x4004000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_2(active0, 0x10800000L, active1, 0xa000e03c0000L, active2, 0L, active3, 0x800020000008L, active4, 0x800008L, active5, 0x40000000L, active6, 0x400002400000L, active7, 0x8000000000000100L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa8_2(active0, 0x10800000L, active1, 0x14000e03c0000L, active2, 0L, active3, 0x8000200000080L, active4, 0x2008000080L, active5, 0x800000000L, active6, 0x10000090000000L, active7, 0x4000L, active8, 0x8000000000000100L, active9, 0L, active10, 0L, active11, 0x40000000L); case 80: case 112: - if ((active10 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(7, 680, 94); - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0x8000L, active10, 0L, active11, 0L); + if ((active10 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 690, 95); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0x1000000L, active10, 0L, active11, 0L); case 82: case 114: - if ((active8 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(7, 542, 94); - else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 691, 94); - return jjMoveStringLiteralDfa8_2(active0, 0x8040000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0x18000000L, active5, 0L, active6, 0x20000000000000L, active7, 0L, active8, 0x100000000000000L, active9, 0x1800002000080000L, active10, 0x20000000040L, active11, 0x80L); + if ((active8 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_2(7, 551, 95); + else if ((active10 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 701, 95); + return jjMoveStringLiteralDfa8_2(active0, 0x8040000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0x180000000L, active5, 0L, active6, 0x800000000000000L, active7, 0L, active8, 0L, active9, 0x400010000002L, active10, 0x8000000008030L, active11, 0x20000L); case 83: case 115: if ((active1 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(7, 105, 94); - else if ((active2 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(7, 149, 94); - else if ((active5 & 0x20L) != 0L) - return jjStartNfaWithStates_2(7, 325, 94); - else if ((active5 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(7, 340, 94); - else if ((active6 & 0x400L) != 0L) - return jjStartNfaWithStates_2(7, 394, 94); - else if ((active6 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(7, 428, 94); - else if ((active6 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 441, 94); - else if ((active9 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(7, 603, 94); - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x10000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x210000L, active10, 0L, active11, 0x4000L); + { + jjmatchedKind = 105; + jjmatchedPos = 7; + } + else if ((active2 & 0x2000000L) != 0L) + return jjStartNfaWithStates_2(7, 153, 95); + else if ((active5 & 0x400L) != 0L) + return jjStartNfaWithStates_2(7, 330, 95); + else if ((active5 & 0x2000000L) != 0L) + return jjStartNfaWithStates_2(7, 345, 95); + else if ((active6 & 0x10000L) != 0L) + return jjStartNfaWithStates_2(7, 400, 95); + else if ((active6 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 434, 95); + else if ((active6 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 447, 95); + else if ((active9 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_2(7, 612, 95); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x20040000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x42000000L, active10, 0L, active11, 0x1000000L); case 84: case 116: - if ((active2 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(7, 170, 94); - else if ((active5 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(7, 346, 94); - else if ((active7 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(7, 467, 94); - else if ((active8 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(7, 526, 94); - return jjMoveStringLiteralDfa8_2(active0, 0x600000000L, active1, 0L, active2, 0x1000005800000000L, active3, 0x1800000000000000L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0xe780000100000000L, active10, 0xc000L, active11, 0x20L); + if ((active2 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_2(7, 174, 95); + else if ((active5 & 0x80000000L) != 0L) + return jjStartNfaWithStates_2(7, 351, 95); + else if ((active7 & 0x2000000L) != 0L) + return jjStartNfaWithStates_2(7, 473, 95); + else if ((active8 & 0x800000L) != 0L) + return jjStartNfaWithStates_2(7, 535, 95); + else if ((active10 & 0x40000L) != 0L) + return jjStartNfaWithStates_2(7, 658, 95); + return jjMoveStringLiteralDfa8_2(active0, 0x600000000L, active1, 0L, active2, 0x58000000000L, active3, 0x8000000000000001L, active4, 0x2001L, active5, 0L, active6, 0L, active7, 0x1000L, active8, 0L, active9, 0x20000000000L, active10, 0x30001cfL, active11, 0x8000L); case 85: case 117: - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0x80000000002L, active6, 0L, active7, 0x20L, active8, 0L, active9, 0x80201000000L, active10, 0x20000000000000L, active11, 0L); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0x1000000000040L, active6, 0L, active7, 0x800L, active8, 0L, active9, 0x10040200000000L, active10, 0x8000000000000000L, active11, 0L); case 86: case 118: - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000000L, active7, 0x4000000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20L, active8, 0x80L, active9, 0L, active10, 0L, active11, 0L); case 87: case 119: - if ((active2 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(7, 167, 94); + if ((active2 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_2(7, 171, 95); break; case 88: case 120: - if ((active7 & 0x200L) != 0L) - return jjStartNfaWithStates_2(7, 457, 94); + if ((active7 & 0x8000L) != 0L) + return jjStartNfaWithStates_2(7, 463, 95); break; case 89: case 121: - if ((active3 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(7, 231, 94); - else if ((active3 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 248, 94); - else if ((active7 & 0x400L) != 0L) - return jjStartNfaWithStates_2(7, 458, 94); - else if ((active7 & 0x800L) != 0L) - return jjStartNfaWithStates_2(7, 459, 94); - else if ((active7 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(7, 491, 94); - else if ((active7 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(7, 506, 94); - else if ((active9 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(7, 615, 94); - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000000000L, active9, 0L, active10, 0L, active11, 0x450L); + if ((active3 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_2(7, 235, 95); + else if ((active3 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 252, 95); + else if ((active7 & 0x10000L) != 0L) + return jjStartNfaWithStates_2(7, 464, 95); + else if ((active7 & 0x20000L) != 0L) + return jjStartNfaWithStates_2(7, 465, 95); + else if ((active7 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 500, 95); + else if ((active8 & 0x8L) != 0L) + return jjStartNfaWithStates_2(7, 515, 95); + else if ((active9 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_2(7, 624, 95); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40L, active10, 0L, active11, 0x114000L); case 90: case 122: - return jjMoveStringLiteralDfa8_2(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x30000000000L, active6, 0L, active7, 0L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_2(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x600000000000L, active6, 0L, active7, 0L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); default : break; } @@ -13434,31 +13515,31 @@ private final int jjMoveStringLiteralDfa8_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0xe00L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000000000L, active7, 0x3c00000L, active8, 0x80000L, active9, 0x6000000200000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x40000000000L, active2, 0x7800L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0xf0000000L, active8, 0x10000000L, active9, 0xc00000040000000L, active10, 0L, active11, 0x4000L); case 65: case 97: - return jjMoveStringLiteralDfa9_2(active0, 0x8800000000L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0x18001000L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0xaL, active9, 0x10000L, active10, 0x40L, active11, 0L); + return jjMoveStringLiteralDfa9_2(active0, 0x8800000000L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0x180010000L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1400L, active9, 0x2000000L, active10, 0x8000L, active11, 0L); case 66: case 98: - if ((active8 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 566, 94); + if ((active8 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 575, 95); break; case 67: case 99: - if ((active9 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(8, 606, 94); - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x40000000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x10000000000004L, active6, 0L, active7, 0x800000000L, active8, 0x100000000000000L, active9, 0L, active10, 0x20000000000004L, active11, 0x2000000L); + if ((active9 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_2(8, 615, 95); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x80000000000000L, active2, 0x100000000000L, active3, 0L, active4, 0L, active5, 0x200000000000080L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0x2L, active10, 0x8000000000000800L, active11, 0x800000000L); case 68: case 100: if ((active1 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(8, 92, 94); - else if ((active3 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(8, 230, 94); - else if ((active10 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(8, 653, 94); - else if ((active11 & 0x800L) != 0L) - return jjStartNfaWithStates_2(8, 715, 94); - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x180000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(8, 92, 95); + else if ((active3 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(8, 234, 95); + else if ((active10 & 0x800000L) != 0L) + return jjStartNfaWithStates_2(8, 663, 95); + else if ((active11 & 0x200000L) != 0L) + return jjStartNfaWithStates_2(8, 725, 95); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x300000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x200000000L) != 0L) @@ -13466,91 +13547,96 @@ else if ((active11 & 0x800L) != 0L) jjmatchedKind = 33; jjmatchedPos = 8; } - else if ((active2 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 187, 94); - else if ((active3 & 0x800000000000000L) != 0L) + else if ((active2 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 191, 95); + else if ((active3 & 0x8000000000000000L) != 0L) { - jjmatchedKind = 251; + jjmatchedKind = 255; jjmatchedPos = 8; } - else if ((active4 & 0x100000000000000L) != 0L) + else if ((active4 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 312; + jjmatchedKind = 317; jjmatchedPos = 8; } - else if ((active5 & 0x10000000000L) != 0L) + else if ((active5 & 0x200000000000L) != 0L) { - jjmatchedKind = 360; + jjmatchedKind = 365; jjmatchedPos = 8; } - else if ((active5 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(8, 363, 94); - else if ((active6 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 437, 94); - else if ((active6 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 447, 94); - else if ((active7 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 510, 94); - else if ((active9 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(8, 595, 94); - else if ((active9 & 0x2000000000000000L) != 0L) + else if ((active5 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 368, 95); + else if ((active6 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 443, 95); + else if ((active7 & 0x20L) != 0L) + return jjStartNfaWithStates_2(8, 453, 95); + else if ((active8 & 0x80L) != 0L) + return jjStartNfaWithStates_2(8, 519, 95); + else if ((active9 & 0x10000000L) != 0L) + return jjStartNfaWithStates_2(8, 604, 95); + else if ((active10 & 0x40L) != 0L) { - jjmatchedKind = 637; + jjmatchedKind = 646; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_2(active0, 0x400000000L, active1, 0x800L, active2, 0L, active3, 0x1000000000000000L, active4, 0x2100010c0000000L, active5, 0x20000000000L, active6, 0x10000000000000L, active7, 0x10000000042L, active8, 0x20000000L, active9, 0x4000000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_2(active0, 0x400000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0x4200020c00000001L, active5, 0x400000000000L, active6, 0x400000000000000L, active7, 0x400000001080L, active8, 0x4000000000L, active9, 0L, active10, 0x80L, active11, 0L); case 70: case 102: - if ((active2 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(8, 140, 94); - else if ((active9 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(8, 618, 94); - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x100L) != 0L) + return jjStartNfaWithStates_2(8, 136, 95); + else if ((active9 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 627, 95); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(8, 22, 94); - else if ((active3 & 0x20L) != 0L) - return jjStartNfaWithStates_2(8, 197, 94); - else if ((active3 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(8, 214, 94); - else if ((active4 & 0x2L) != 0L) - return jjStartNfaWithStates_2(8, 257, 94); - else if ((active6 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(8, 429, 94); - else if ((active7 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(8, 474, 94); - else if ((active9 & 0x2000000L) != 0L) + return jjStartNfaWithStates_2(8, 22, 95); + else if ((active3 & 0x200L) != 0L) + return jjStartNfaWithStates_2(8, 201, 95); + else if ((active3 & 0x4000000L) != 0L) + return jjStartNfaWithStates_2(8, 218, 95); + else if ((active4 & 0x20L) != 0L) + return jjStartNfaWithStates_2(8, 261, 95); + else if ((active6 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 435, 95); + else if ((active7 & 0x100000000L) != 0L) + return jjStartNfaWithStates_2(8, 480, 95); + else if ((active9 & 0x400000000L) != 0L) { - jjmatchedKind = 601; + jjmatchedKind = 610; jjmatchedPos = 8; } - else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(8, 720, 94); - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x4L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0x4040000L, active10, 0L, active11, 0x10000000L); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_2(8, 730, 95); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x4L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0x808000000L, active10, 0L, active11, 0x4000000000L); case 72: case 104: - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x201L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000000L, active8, 0L, active9, 0x40200L, active10, 0L, active11, 0L); case 73: case 105: if ((active0 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(8, 41, 94); - return jjMoveStringLiteralDfa9_2(active0, 0x40000040000000L, active1, 0x1000L, active2, 0x1000006800000000L, active3, 0L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0x4L, active8, 0x2000000000000000L, active9, 0x8780000100000100L, active10, 0xf0008000L, active11, 0x4200L); + return jjStartNfaWithStates_2(8, 41, 95); + return jjMoveStringLiteralDfa9_2(active0, 0x40000040000000L, active1, 0x1000L, active2, 0x68000000000L, active3, 0x1L, active4, 0x2000L, active5, 0L, active6, 0L, active7, 0x8000000000100L, active8, 0L, active9, 0x20000020040L, active10, 0x3c00200010fL, active11, 0x1080000L); + case 75: + case 107: + if ((active2 & 0x10000L) != 0L) + return jjStartNfaWithStates_2(8, 144, 95); + break; case 76: case 108: - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0x400000L, active3, 0x80000L, active4, 0L, active5, 0x100L, active6, 0x180000000L, active7, 0x4000L, active8, 0x400000400000000L, active9, 0x20000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0x4000000L, active3, 0x800000L, active4, 0L, active5, 0x2000L, active6, 0x6000000000L, active7, 0x100000L, active8, 0x80000000000L, active9, 0x4000000000000008L, active10, 0L, active11, 0L); case 77: case 109: - if ((active9 & 0x800000000000000L) != 0L) + if ((active10 & 0x10L) != 0L) { - jjmatchedKind = 635; + jjmatchedKind = 644; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x1000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0L, active7, 0x8000000000000L, active8, 0x200000000L, active9, 0x100000080000000eL, active10, 0L, active11, 0x100L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x2000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40L, active6, 0L, active7, 0x1000000000000000L, active8, 0x40000000000L, active9, 0x100000001c00L, active10, 0x20L, active11, 0x40000L); case 78: case 110: if ((active0 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(8, 28, 94); + return jjStartNfaWithStates_2(8, 28, 95); else if ((active1 & 0x40000L) != 0L) { jjmatchedKind = 82; @@ -13561,31 +13647,31 @@ else if ((active1 & 0x20000000L) != 0L) jjmatchedKind = 93; jjmatchedPos = 8; } - else if ((active3 & 0x8L) != 0L) - return jjStartNfaWithStates_2(8, 195, 94); - else if ((active4 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(8, 279, 94); - else if ((active6 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(8, 406, 94); - else if ((active6 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(8, 430, 94); - return jjMoveStringLiteralDfa9_2(active0, 0x1000000020800000L, active1, 0x20f8c0380000L, active2, 0x20000080L, active3, 0x800000000000L, active4, 0L, active5, 0x20000040000000L, active6, 0x1000L, active7, 0x1000000020L, active8, 0x3000000L, active9, 0x80000000000L, active10, 0x200000000008L, active11, 0x40L); + else if ((active3 & 0x80L) != 0L) + return jjStartNfaWithStates_2(8, 199, 95); + else if ((active4 & 0x8000000L) != 0L) + return jjStartNfaWithStates_2(8, 283, 95); + else if ((active6 & 0x10000000L) != 0L) + return jjStartNfaWithStates_2(8, 412, 95); + else if ((active6 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 436, 95); + return jjMoveStringLiteralDfa9_2(active0, 0x1000000020800000L, active1, 0x40f8c0380000L, active2, 0x200000200L, active3, 0x8000000000000L, active4, 0L, active5, 0x400000800000000L, active6, 0x40000L, active7, 0x40000000800L, active8, 0x600000000L, active9, 0x10000000000000L, active10, 0x80000000001000L, active11, 0x10000L); case 79: case 111: - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x600000000L, active2, 0x1000000000L, active3, 0x10000000L, active4, 0L, active5, 0x3200L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0x80L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x600000000L, active2, 0x10000000000L, active3, 0x100000000L, active4, 0L, active5, 0x64000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1000000L, active10, 0L, active11, 0x20000L); case 80: case 112: - if ((active1 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(8, 111, 94); - else if ((active9 & 0x100000000000L) != 0L) + if ((active1 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 112, 95); + else if ((active9 & 0x20000000000000L) != 0L) { - jjmatchedKind = 620; + jjmatchedKind = 629; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100L, active8, 0L, active9, 0x1e01000000000L, active10, 0L, active11, 0x400L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x3c0200000000000L, active10, 0L, active11, 0x100000L); case 81: case 113: - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0L); case 82: case 114: if ((active1 & 0x8L) != 0L) @@ -13593,74 +13679,78 @@ else if ((active9 & 0x100000000000L) != 0L) jjmatchedKind = 67; jjmatchedPos = 8; } - else if ((active4 & 0x8L) != 0L) - return jjStartNfaWithStates_2(8, 259, 94); - else if ((active6 & 0x4000L) != 0L) + else if ((active2 & 0x20000L) != 0L) + return jjStartNfaWithStates_2(8, 145, 95); + else if ((active4 & 0x80L) != 0L) + return jjStartNfaWithStates_2(8, 263, 95); + else if ((active6 & 0x100000L) != 0L) { - jjmatchedKind = 398; + jjmatchedKind = 404; jjmatchedPos = 8; } - else if ((active7 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 511, 94); - else if ((active8 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 565, 94); - return jjMoveStringLiteralDfa9_2(active0, 0x10000000000L, active1, 0xc000000000003f0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0x2001f8000L, active7, 0L, active8, 0x83ffe004000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active8 & 0x100L) != 0L) + return jjStartNfaWithStates_2(8, 520, 95); + else if ((active8 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 574, 95); + return jjMoveStringLiteralDfa9_2(active0, 0x10000000000L, active1, 0x18000000000003f0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0x8007e00000L, active7, 0L, active8, 0x7ffc00800000000L, active9, 0x1L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x1000000000000000L, active2, 0L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0x1000000000000000L, active9, 0x200400020L, active10, 0x10L, active11, 0L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x2000000000000000L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0x4080000000000L, active8, 0L, active9, 0x40080004020L, active10, 0x2000L, active11, 0L); case 84: case 116: - if ((active1 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 116, 94); - else if ((active4 & 0x4L) != 0L) - return jjStartNfaWithStates_2(8, 258, 94); - else if ((active4 & 0x8000L) != 0L) + if ((active1 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 117, 95); + else if ((active4 & 0x40L) != 0L) + return jjStartNfaWithStates_2(8, 262, 95); + else if ((active4 & 0x80000L) != 0L) { - jjmatchedKind = 271; + jjmatchedKind = 275; jjmatchedPos = 8; } - else if ((active7 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(8, 487, 94); - else if ((active7 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(8, 492, 94); - else if ((active8 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(8, 547, 94); - else if ((active9 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(8, 589, 94); - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0xe000010000000000L, active2, 0x8000L, active3, 0x2000000000000000L, active4, 0x10000L, active5, 0x400L, active6, 0x10L, active7, 0x4000000000000L, active8, 0x500000L, active9, 0x1000000L, active10, 0x4000L, active11, 0L); + else if ((active7 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_2(8, 493, 95); + else if ((active7 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 497, 95); + else if ((active7 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 501, 95); + else if ((active8 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_2(8, 556, 95); + else if ((active9 & 0x400000L) != 0L) + return jjStartNfaWithStates_2(8, 598, 95); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0xc000010000000000L, active2, 0x80001L, active3, 0L, active4, 0x100002L, active5, 0x8000L, active6, 0x400L, active7, 0x800000000000000L, active8, 0xa0000000L, active9, 0x200000000L, active10, 0x1000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0x80200000000L, active5, 0x4000L, active6, 0x2000000L, active7, 0L, active8, 0x20L, active9, 0L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0x1004000000000L, active5, 0x80000L, active6, 0x80000000L, active7, 0L, active8, 0x4000L, active9, 0L, active10, 0L, active11, 0x40000000L); case 86: case 118: - return jjMoveStringLiteralDfa9_2(active0, 0x8000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_2(active0, 0x8000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 87: case 119: - if ((active3 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(8, 221, 94); - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40L, active10, 0L, active11, 0L); + if ((active3 & 0x200000000L) != 0L) + return jjStartNfaWithStates_2(8, 225, 95); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 88: case 120: - if ((active7 & 0x8L) != 0L) - return jjStartNfaWithStates_2(8, 451, 94); + if ((active7 & 0x200L) != 0L) + return jjStartNfaWithStates_2(8, 457, 95); return jjMoveStringLiteralDfa9_2(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active3 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(8, 243, 94); - else if ((active4 & 0x20L) != 0L) - return jjStartNfaWithStates_2(8, 261, 94); - else if ((active7 & 0x10L) != 0L) - return jjStartNfaWithStates_2(8, 452, 94); - else if ((active9 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(8, 613, 94); - else if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(8, 681, 94); - else if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(8, 687, 94); - else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_2(8, 709, 94); - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80L, active10, 0L, active11, 0L); + if ((active3 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 247, 95); + else if ((active4 & 0x200L) != 0L) + return jjStartNfaWithStates_2(8, 265, 95); + else if ((active7 & 0x400L) != 0L) + return jjStartNfaWithStates_2(8, 458, 95); + else if ((active9 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_2(8, 622, 95); + else if ((active10 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 691, 95); + else if ((active10 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_2(8, 697, 95); + else if ((active11 & 0x8000L) != 0L) + return jjStartNfaWithStates_2(8, 719, 95); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); default : break; } @@ -13678,88 +13768,90 @@ private final int jjMoveStringLiteralDfa9_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa10_2(active0, 0x1000000L, active1, 0x803800f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1f8000L, active7, 0L, active8, 0L, active9, 0x4021800004000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_2(active0, 0x1000000L, active1, 0x803800f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x7e00000L, active7, 0L, active8, 0L, active9, 0x4300000800000000L, active10, 0x80L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa10_2(active0, 0x1000000000000000L, active1, 0x2c0000040000000L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0x200000000L, active7, 0x4001800000000L, active8, 0x401c000220000000L, active9, 0x200000000200L, active10, 0xcL, active11, 0L); + return jjMoveStringLiteralDfa10_2(active0, 0x1000000000000000L, active1, 0x580000040000000L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0x8000000000L, active7, 0x800060000000000L, active8, 0x3800044000000000L, active9, 0x40000000040080L, active10, 0x1800L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000L, active5, 0x2L, active6, 0L, active7, 0L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0x40L, active6, 0L, active7, 0L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: if ((active0 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(9, 30, 94); - else if ((active2 & 0x80L) != 0L) - return jjStartNfaWithStates_2(9, 135, 94); - else if ((active9 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(9, 619, 94); - return jjMoveStringLiteralDfa10_2(active0, 0x800000L, active1, 0x1000000000000000L, active2, 0x4000000000L, active3, 0x800000000000L, active4, 0xc0000000L, active5, 0x200L, active6, 0L, active7, 0x2000400000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x40L); + return jjStartNfaWithStates_2(9, 30, 95); + else if ((active2 & 0x200L) != 0L) + return jjStartNfaWithStates_2(9, 137, 95); + else if ((active9 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_2(9, 628, 95); + return jjMoveStringLiteralDfa10_2(active0, 0x800000L, active1, 0x2000000000000000L, active2, 0x40000000000L, active3, 0x8000000000000L, active4, 0xc00000000L, active5, 0x4000L, active6, 0L, active7, 0x80010000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0x10000L); case 68: case 100: - if ((active5 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(9, 350, 94); - else if ((active5 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(9, 361, 94); - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x200000000000L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0L, active11, 0L); + if ((active5 & 0x800000000L) != 0L) + return jjStartNfaWithStates_2(9, 355, 95); + else if ((active5 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_2(9, 366, 95); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x400000000000L, active2, 0x800L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000000000000L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(9, 27, 94); - else if ((active2 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(9, 143, 94); - else if ((active2 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(9, 150, 94); - else if ((active4 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(9, 289, 94); - else if ((active4 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(9, 299, 94); - else if ((active7 & 0x100L) != 0L) - return jjStartNfaWithStates_2(9, 456, 94); + return jjStartNfaWithStates_2(9, 27, 95); + else if ((active2 & 0x80000L) != 0L) + return jjStartNfaWithStates_2(9, 147, 95); + else if ((active2 & 0x4000000L) != 0L) + return jjStartNfaWithStates_2(9, 154, 95); + else if ((active4 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_2(9, 293, 95); + else if ((active4 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_2(9, 294, 95); + else if ((active4 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_2(9, 304, 95); else if ((active7 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(9, 462, 94); - else if ((active7 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 499, 94); - else if ((active8 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(9, 546, 94); - else if ((active9 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(9, 600, 94); - else if ((active9 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(9, 611, 94); - else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_2(9, 712, 94); - else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_2(9, 714, 94); - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000500L, active6, 0x180000000L, active7, 0x10000000000000L, active8, 0x1000000000L, active9, 0x2004000e0L, active10, 0x4000L, active11, 0x10000000L); + return jjStartNfaWithStates_2(9, 462, 95); + else if ((active7 & 0x100000L) != 0L) + return jjStartNfaWithStates_2(9, 468, 95); + else if ((active7 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_2(9, 508, 95); + else if ((active8 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_2(9, 555, 95); + else if ((active9 & 0x200000000L) != 0L) + return jjStartNfaWithStates_2(9, 609, 95); + else if ((active9 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_2(9, 620, 95); + else if ((active11 & 0x40000L) != 0L) + return jjStartNfaWithStates_2(9, 722, 95); + else if ((active11 & 0x100000L) != 0L) + return jjStartNfaWithStates_2(9, 724, 95); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x20000000000a000L, active6, 0x6000000000L, active7, 0x2004000000000000L, active8, 0x200000000000L, active9, 0x4008001c000L, active10, 0x1000000L, active11, 0x4000000000L); case 71: case 103: - if ((active6 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(9, 396, 94); - else if ((active8 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(9, 536, 94); - else if ((active9 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(9, 594, 94); - else if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(9, 685, 94); - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x20000000000000L, active6, 0x2000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x40000L) != 0L) + return jjStartNfaWithStates_2(9, 402, 95); + else if ((active8 & 0x200000000L) != 0L) + return jjStartNfaWithStates_2(9, 545, 95); + else if ((active9 & 0x8000000L) != 0L) + return jjStartNfaWithStates_2(9, 603, 95); + else if ((active10 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_2(9, 695, 95); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400000000000000L, active6, 0x80000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x2000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000002L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x6000000000000100L, active2, 0xc00L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x480000000400000L, active9, 0x6L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0xc000000000000100L, active2, 0x3000L, active3, 0L, active4, 0x100000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0xc09L, active10, 0L, active11, 0L); case 75: case 107: - if ((active2 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(9, 157, 94); - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0x10L); + if ((active2 & 0x200000000L) != 0L) + return jjStartNfaWithStates_2(9, 161, 95); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000000000000L, active11, 0x4000L); case 76: case 108: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000L, active8, 0L, active9, 0x1000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1L, active5, 0L, active6, 0L, active7, 0x20000000L, active8, 0L, active9, 0x200000000000L, active10, 0L, active11, 0L); case 77: case 109: - if ((active5 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(9, 334, 94); - return jjMoveStringLiteralDfa10_2(active0, 0x8000000000L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0x8L, active9, 0x4000100010000L, active10, 0L, active11, 0L); + if ((active5 & 0x80000L) != 0L) + return jjStartNfaWithStates_2(9, 339, 95); + return jjMoveStringLiteralDfa10_2(active0, 0x8000000000L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1000L, active9, 0x800020002000000L, active10, 0L, active11, 0L); case 78: case 110: if ((active1 & 0x200000000L) != 0L) @@ -13767,91 +13859,91 @@ else if ((active10 & 0x200000000000L) != 0L) jjmatchedKind = 97; jjmatchedPos = 9; } - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x400000000L, active2, 0L, active3, 0x10000000L, active4, 0L, active5, 0x3000L, active6, 0L, active7, 0x4L, active8, 0x2000000000080000L, active9, 0x100L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x400000000L, active2, 0L, active3, 0x100000000L, active4, 0L, active5, 0x60000L, active6, 0L, active7, 0x8000000000100L, active8, 0x10000000L, active9, 0x20040L, active10, 0x3c000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0xc00010000000000L, active2, 0x800000000L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x8780000000200009L, active10, 0x8000L, active11, 0x200L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x1800010000000000L, active2, 0x8000000000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0x40001200L, active10, 0x200010fL, active11, 0x80000L); case 80: case 112: - if ((active1 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 112, 94); - else if ((active9 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(9, 591, 94); + if ((active1 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_2(9, 113, 95); + else if ((active9 & 0x1000000L) != 0L) + return jjStartNfaWithStates_2(9, 600, 95); break; case 82: case 114: if ((active1 & 0x800L) != 0L) - return jjStartNfaWithStates_2(9, 75, 94); - else if ((active2 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(9, 164, 94); - else if ((active4 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(9, 292, 94); - else if ((active7 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(9, 488, 94); - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000000000L, active7, 0x40L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(9, 75, 95); + else if ((active2 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_2(9, 168, 95); + else if ((active4 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_2(9, 297, 95); + else if ((active7 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_2(9, 494, 95); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0x1000L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 83: case 115: if ((active0 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(9, 34, 94); + return jjStartNfaWithStates_2(9, 34, 95); else if ((active1 & 0x200L) != 0L) - return jjStartNfaWithStates_2(9, 73, 94); - else if ((active6 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 436, 94); - else if ((active7 & 0x2L) != 0L) - return jjStartNfaWithStates_2(9, 449, 94); - else if ((active9 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 636, 94); - else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(9, 724, 94); - else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(9, 729, 94); - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0x2000000001L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x20L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(9, 73, 95); + else if ((active6 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_2(9, 442, 95); + else if ((active7 & 0x80L) != 0L) + return jjStartNfaWithStates_2(9, 455, 95); + else if ((active10 & 0x20L) != 0L) + return jjStartNfaWithStates_2(9, 645, 95); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_2(9, 734, 95); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_2(9, 739, 95); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x40000000000L, active2, 0x20000000002L, active3, 0L, active4, 0x4000000000000000L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x4000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: if ((active0 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(9, 29, 94); + return jjStartNfaWithStates_2(9, 29, 95); else if ((active1 & 0x800000000L) != 0L) { jjmatchedKind = 99; jjmatchedPos = 9; } - else if ((active2 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(9, 168, 94); - else if ((active7 & 0x20L) != 0L) - return jjStartNfaWithStates_2(9, 453, 94); - else if ((active8 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(9, 537, 94); - return jjMoveStringLiteralDfa10_2(active0, 0x40010800000000L, active1, 0xf000000004L, active2, 0x1000000000000000L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active2 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_2(9, 172, 95); + else if ((active7 & 0x800L) != 0L) + return jjStartNfaWithStates_2(9, 459, 95); + else if ((active8 & 0x400000000L) != 0L) + return jjStartNfaWithStates_2(9, 546, 95); + return jjMoveStringLiteralDfa10_2(active0, 0x40010800000000L, active1, 0xf000000004L, active2, 0x4000L, active3, 0x1L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10L, active10, 0L, active11, 0x80L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x20000L); case 86: case 118: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x7ffc00000000000L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active4 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(9, 308, 94); + if ((active4 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_2(9, 313, 95); break; case 89: case 121: - if ((active4 & 0x8000000L) != 0L) + if ((active4 & 0x80000000L) != 0L) { - jjmatchedKind = 283; + jjmatchedKind = 287; jjmatchedPos = 9; } - else if ((active4 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(9, 288, 94); - else if ((active6 & 0x10L) != 0L) - return jjStartNfaWithStates_2(9, 388, 94); - else if ((active8 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(9, 538, 94); - else if ((active10 & 0x40L) != 0L) - return jjStartNfaWithStates_2(9, 646, 94); - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active4 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_2(9, 292, 95); + else if ((active6 & 0x400L) != 0L) + return jjStartNfaWithStates_2(9, 394, 95); + else if ((active8 & 0x800000000L) != 0L) + return jjStartNfaWithStates_2(9, 547, 95); + else if ((active10 & 0x8000L) != 0L) + return jjStartNfaWithStates_2(9, 655, 95); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1000000L); default : break; } @@ -13869,157 +13961,159 @@ private final int jjMoveStringLiteralDfa10_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x7400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x180000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x7400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x6000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa11_2(active0, 0x800000L, active1, 0x8000000000000000L, active2, 0L, active3, 0x800000000000L, active4, 0x10000000L, active5, 0L, active6, 0L, active7, 0x400000L, active8, 0x9103ffe000080000L, active9, 0x190L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_2(active0, 0x800000L, active1, 0L, active2, 0x1L, active3, 0x8000000000000L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0x8000010000000L, active8, 0x7ffc00010000000L, active9, 0x32122L, active10, 0L, active11, 0L); case 67: case 99: - if ((active8 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_2(10, 567, 94); - return jjMoveStringLiteralDfa11_2(active0, 0x1000000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000040L, active8, 0L, active9, 0x20000000000022L, active10, 0L, active11, 0L); + if ((active9 & 0x1L) != 0L) + return jjStartNfaWithStates_2(10, 576, 95); + return jjMoveStringLiteralDfa11_2(active0, 0x1000000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001000L, active8, 0L, active9, 0x4000000000004400L, active10, 0L, active11, 0L); case 68: case 100: - if ((active3 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(10, 220, 94); - else if ((active5 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(10, 332, 94); - else if ((active5 & 0x2000L) != 0L) - return jjStartNfaWithStates_2(10, 333, 94); - else if ((active10 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(10, 654, 94); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000L, active10, 0L, active11, 0x10000000L); + if ((active3 & 0x100000000L) != 0L) + return jjStartNfaWithStates_2(10, 224, 95); + else if ((active5 & 0x20000L) != 0L) + return jjStartNfaWithStates_2(10, 337, 95); + else if ((active5 & 0x40000L) != 0L) + return jjStartNfaWithStates_2(10, 338, 95); + else if ((active10 & 0x1000000L) != 0L) + return jjStartNfaWithStates_2(10, 664, 95); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x140000000000000L, active10, 0L, active11, 0x4000000000L); case 69: case 101: if ((active0 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(10, 39, 94); + return jjStartNfaWithStates_2(10, 39, 95); else if ((active1 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(10, 88, 94); - else if ((active2 & 0x4L) != 0L) - return jjStartNfaWithStates_2(10, 130, 94); - else if ((active3 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(10, 211, 94); - else if ((active4 & 0x200L) != 0L) - return jjStartNfaWithStates_2(10, 265, 94); - else if ((active7 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(10, 496, 94); - else if ((active8 & 0x8L) != 0L) - return jjStartNfaWithStates_2(10, 515, 94); - else if ((active9 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(10, 608, 94); - else if ((active9 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(10, 612, 94); - else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_2(10, 718, 94); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x40000000000L, active7, 0x800000L, active8, 0x20L, active9, 0x40L, active10, 0x200000f0000000L, active11, 0x10L); + return jjStartNfaWithStates_2(10, 88, 95); + else if ((active2 & 0x8L) != 0L) + return jjStartNfaWithStates_2(10, 131, 95); + else if ((active3 & 0x800000L) != 0L) + return jjStartNfaWithStates_2(10, 215, 95); + else if ((active4 & 0x2000L) != 0L) + return jjStartNfaWithStates_2(10, 269, 95); + else if ((active7 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_2(10, 505, 95); + else if ((active8 & 0x1000L) != 0L) + return jjStartNfaWithStates_2(10, 524, 95); + else if ((active9 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_2(10, 617, 95); + else if ((active9 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_2(10, 621, 95); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_2(10, 728, 95); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0x40L, active6, 0x1000000000000L, active7, 0x20000000L, active8, 0x4000L, active9, 0x8000L, active10, 0x800003c000000000L, active11, 0x4000L); case 70: case 102: - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active7 & 0x4L) != 0L) - return jjStartNfaWithStates_2(10, 450, 94); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active7 & 0x100L) != 0L) + return jjStartNfaWithStates_2(10, 456, 95); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active1 & 0x4L) != 0L) - return jjStartNfaWithStates_2(10, 66, 94); - else if ((active6 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(10, 409, 94); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x1000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x40L); + return jjStartNfaWithStates_2(10, 66, 95); + else if ((active6 & 0x80000000L) != 0L) + return jjStartNfaWithStates_2(10, 415, 95); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x2000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0x10000L); case 73: case 105: - return jjMoveStringLiteralDfa11_2(active0, 0x10800000000L, active1, 0x200000001000L, active2, 0x1000000000000200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4400000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_2(active0, 0x10800000000L, active1, 0x400000001000L, active2, 0x800L, active3, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x880000000000000L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(10, 94, 94); - else if ((active8 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(10, 545, 94); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x400000000000010L, active2, 0L, active3, 0L, active4, 0x1000L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(10, 94, 95); + else if ((active8 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(10, 554, 95); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x800000000000010L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0L, active7, 0x800000000000000L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa11_2(active0, 0x1000000000000000L, active1, 0x6000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000L, active7, 0x10001000000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); + return jjMoveStringLiteralDfa11_2(active0, 0x1000000000000000L, active1, 0xc000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0x2000040000000000L, active8, 0L, active9, 0L, active10, 0x1000L, active11, 0L); case 78: case 110: - if ((active2 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(10, 163, 94); - else if ((active8 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(10, 541, 94); - else if ((active9 & 0x80000000000000L) != 0L) + if ((active2 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_2(10, 167, 95); + else if ((active8 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_2(10, 550, 95); + else if ((active10 & 0x1L) != 0L) { - jjmatchedKind = 631; + jjmatchedKind = 640; jjmatchedPos = 10; } - else if ((active9 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(10, 639, 94); - else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_2(10, 713, 94); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x86100000L, active2, 0xc000000000c00L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x200010000L, active7, 0L, active8, 0x400000000000000L, active9, 0x70000000000000cL, active10, 0x8000L, active11, 0L); + else if ((active10 & 0x100L) != 0L) + return jjStartNfaWithStates_2(10, 648, 95); + else if ((active11 & 0x80000L) != 0L) + return jjStartNfaWithStates_2(10, 723, 95); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x86100000L, active2, 0xc0000000003000L, active3, 0L, active4, 0L, active5, 0x2000L, active6, 0x8000400000L, active7, 0L, active8, 0L, active9, 0x1808L, active10, 0x200000eL, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x400000L, active9, 0x2000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x80000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); case 80: case 112: - if ((active9 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(10, 592, 94); - else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_2(10, 711, 94); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x2000000L) != 0L) + return jjStartNfaWithStates_2(10, 601, 95); + else if ((active11 & 0x20000L) != 0L) + return jjStartNfaWithStates_2(10, 721, 95); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: if ((active1 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(10, 104, 94); - else if ((active8 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(10, 548, 94); - else if ((active9 & 0x200L) != 0L) - return jjStartNfaWithStates_2(10, 585, 94); - else if ((active9 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(10, 609, 94); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0x4000000004200000L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(10, 104, 95); + else if ((active8 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_2(10, 557, 95); + else if ((active9 & 0x40000L) != 0L) + return jjStartNfaWithStates_2(10, 594, 95); + else if ((active9 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(10, 618, 95); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0x840000000L, active10, 0x80L, active11, 0L); case 83: case 115: if ((active1 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(10, 103, 94); - else if ((active2 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(10, 166, 94); - else if ((active4 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(10, 285, 94); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x2001e0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(10, 103, 95); + else if ((active2 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(10, 170, 95); + else if ((active4 & 0x200000000L) != 0L) + return jjStartNfaWithStates_2(10, 289, 95); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x2001e0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - if ((active4 & 0x40000000L) != 0L) + if ((active4 & 0x400000000L) != 0L) { - jjmatchedKind = 286; + jjmatchedKind = 290; jjmatchedPos = 10; } - else if ((active8 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(10, 573, 94); - else if ((active9 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(10, 598, 94); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x2c0000000000000L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0x200000080000000L, active5, 0x20000000000200L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0x1000000000000L, active10, 0x4L, active11, 0L); + else if ((active7 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_2(10, 498, 95); + else if ((active9 & 0x40L) != 0L) + return jjStartNfaWithStates_2(10, 582, 95); + else if ((active9 & 0x80000000L) != 0L) + return jjStartNfaWithStates_2(10, 607, 95); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x580000000000000L, active2, 0x20000000000L, active3, 0L, active4, 0x4000000800000002L, active5, 0x400000000004000L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0x200000000000000L, active10, 0x800L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x40000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0L); case 87: case 119: - if ((active1 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_2(10, 123, 94); + if ((active1 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_2(10, 124, 95); break; case 88: case 120: - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(10, 54, 94); - else if ((active3 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(10, 252, 94); - else if ((active8 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(10, 574, 94); + return jjStartNfaWithStates_2(10, 54, 95); + else if ((active4 & 0x1L) != 0L) + return jjStartNfaWithStates_2(10, 256, 95); + else if ((active9 & 0x80L) != 0L) + return jjStartNfaWithStates_2(10, 583, 95); break; default : break; @@ -14038,127 +14132,129 @@ private final int jjMoveStringLiteralDfa11_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 65: case 97: - if ((active7 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 500, 94); - return jjMoveStringLiteralDfa12_2(active0, 0x1000000L, active1, 0x140000000180000L, active2, 0L, active3, 0L, active4, 0x200000080000000L, active5, 0L, active6, 0x10000L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x8004L, active11, 0L); + if ((active7 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_2(11, 509, 95); + return jjMoveStringLiteralDfa12_2(active0, 0x1000000L, active1, 0x280000000180000L, active2, 0L, active3, 0L, active4, 0x4000000800000000L, active5, 0L, active6, 0x400000L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x2000800L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0x40000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0x1006200000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x8008000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0x1006200000L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0x1000000000000000L, active9, 0x100L, active10, 0L, active11, 0L); case 68: case 100: - if ((active9 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(11, 621, 94); - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x100000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + if ((active9 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_2(11, 630, 95); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 60, 94); - else if ((active1 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 119, 94); - else if ((active1 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 122, 94); - else if ((active1 & 0x2000000000000000L) != 0L) - { - jjmatchedKind = 125; + return jjStartNfaWithStates_2(11, 60, 95); + else if ((active1 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_2(11, 120, 95); + else if ((active1 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_2(11, 123, 95); + else if ((active1 & 0x4000000000000000L) != 0L) + { + jjmatchedKind = 126; jjmatchedPos = 11; } - else if ((active4 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(11, 268, 94); - else if ((active7 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(11, 484, 94); - else if ((active8 & 0x2L) != 0L) - return jjStartNfaWithStates_2(11, 513, 94); - else if ((active8 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(11, 532, 94); - else if ((active10 & 0x8L) != 0L) - return jjStartNfaWithStates_2(11, 643, 94); - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0x50000000000000f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x2000000040L, active8, 0L, active9, 0x4000000004000000L, active10, 0x10L, active11, 0L); + else if ((active4 & 0x10000L) != 0L) + return jjStartNfaWithStates_2(11, 272, 95); + else if ((active7 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(11, 490, 95); + else if ((active8 & 0x400L) != 0L) + return jjStartNfaWithStates_2(11, 522, 95); + else if ((active8 & 0x20000000L) != 0L) + return jjStartNfaWithStates_2(11, 541, 95); + else if ((active10 & 0x1000L) != 0L) + return jjStartNfaWithStates_2(11, 652, 95); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0xa0000000000000f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000L, active6, 0L, active7, 0x80000001000L, active8, 0L, active9, 0x800000000L, active10, 0x2080L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0x800L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000000000000L, active10, 0L, active11, 0L); case 71: case 103: - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000L, active5, 0x100L, active6, 0x40000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0x2000L, active6, 0x1000000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active1 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 121, 94); - else if ((active5 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 373, 94); + if ((active1 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_2(11, 122, 95); + else if ((active5 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_2(11, 378, 95); break; case 73: case 105: - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000200000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000040000000L, active10, 0L, active11, 0L); case 75: case 107: - if ((active6 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(11, 417, 94); - else if ((active9 & 0x40L) != 0L) - return jjStartNfaWithStates_2(11, 582, 94); + if ((active6 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_2(11, 423, 95); + else if ((active9 & 0x8000L) != 0L) + return jjStartNfaWithStates_2(11, 591, 95); break; case 76: case 108: - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x3ffe000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active7 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_2(11, 499, 95); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x7ffc00000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000080000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x10000000L, active9, 0x20L, active10, 0L, active11, 0L); case 78: case 110: if ((active1 & 0x1000L) != 0L) - return jjStartNfaWithStates_2(11, 76, 94); - else if ((active4 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(11, 272, 94); - else if ((active8 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(11, 534, 94); - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0x8000202400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0x800000L, active8, 0x10000000000000L, active9, 0x4000000000000L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(11, 76, 95); + else if ((active4 & 0x100000L) != 0L) + return jjStartNfaWithStates_2(11, 276, 95); + else if ((active8 & 0x80000000L) != 0L) + return jjStartNfaWithStates_2(11, 543, 95); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0x402400000000L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x20000000L, active8, 0x2000000000000000L, active9, 0x800000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa12_2(active0, 0x800000000L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000L, active7, 0x4000000000000L, active8, 0L, active9, 0x20000000000020L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_2(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0x800000000000000L, active8, 0L, active9, 0x4000000000004000L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x1L) != 0L) - return jjStartNfaWithStates_2(11, 128, 94); - else if ((active5 & 0x2L) != 0L) - return jjStartNfaWithStates_2(11, 321, 94); - else if ((active8 & 0x20L) != 0L) - return jjStartNfaWithStates_2(11, 517, 94); - else if ((active8 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 568, 94); - else if ((active9 & 0x1L) != 0L) - return jjStartNfaWithStates_2(11, 576, 94); - else if ((active9 & 0x80L) != 0L) - return jjStartNfaWithStates_2(11, 583, 94); - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x1000000000112L, active10, 0L, active11, 0x40L); + if ((active2 & 0x2L) != 0L) + return jjStartNfaWithStates_2(11, 129, 95); + else if ((active5 & 0x40L) != 0L) + return jjStartNfaWithStates_2(11, 326, 95); + else if ((active8 & 0x4000L) != 0L) + return jjStartNfaWithStates_2(11, 526, 95); + else if ((active9 & 0x2L) != 0L) + return jjStartNfaWithStates_2(11, 577, 95); + else if ((active9 & 0x200L) != 0L) + return jjStartNfaWithStates_2(11, 585, 95); + else if ((active9 & 0x10000L) != 0L) + return jjStartNfaWithStates_2(11, 592, 95); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0x200000000022400L, active10, 0L, active11, 0x10000L); case 83: case 115: - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x700000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xeL, active11, 0L); case 84: case 116: - if ((active3 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(11, 239, 94); - else if ((active5 & 0x400L) != 0L) - return jjStartNfaWithStates_2(11, 330, 94); - else if ((active8 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 570, 94); - else if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(11, 693, 94); - return jjMoveStringLiteralDfa12_2(active0, 0x10000800000L, active1, 0x100L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0L); + if ((active3 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_2(11, 243, 95); + else if ((active5 & 0x8000L) != 0L) + return jjStartNfaWithStates_2(11, 335, 95); + else if ((active9 & 0x8L) != 0L) + return jjStartNfaWithStates_2(11, 579, 95); + else if ((active10 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_2(11, 703, 95); + return jjMoveStringLiteralDfa12_2(active0, 0x10000800000L, active1, 0x100L, active2, 0x3000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0x1000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0x80000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000000000004L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0x80000000L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000800L, active10, 0L, active11, 0L); case 89: case 121: - if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_2(11, 708, 94); + if ((active11 & 0x4000L) != 0L) + return jjStartNfaWithStates_2(11, 718, 95); break; default : break; @@ -14177,86 +14273,86 @@ private final int jjMoveStringLiteralDfa12_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa13_2(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8003ffe000000000L, active9, 0x700000000000000L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa13_2(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x7ffc00000000000L, active9, 0x100L, active10, 0x3c00000000eL, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x3400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active2 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(12, 165, 94); - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x10000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_2(12, 169, 95); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x28000L, active7, 0x400000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0xa00000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: - if ((active8 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(12, 531, 94); - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400001c0000L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x10000000L) != 0L) + return jjStartNfaWithStates_2(12, 540, 95); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0x3000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000007000000L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: - if ((active2 & 0x200L) != 0L) - return jjStartNfaWithStates_2(12, 137, 94); - else if ((active9 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(12, 622, 94); - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000000000L, active10, 0L, active11, 0L); + if ((active2 & 0x800L) != 0L) + return jjStartNfaWithStates_2(12, 139, 95); + else if ((active9 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_2(12, 631, 95); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); case 71: case 103: - if ((active1 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(12, 109, 94); - else if ((active4 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(12, 284, 94); - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000000L, active5, 0L, active6, 0L, active7, 0x4000000800000L, active8, 0L, active9, 0x4000000004200000L, active10, 0L, active11, 0L); + if ((active1 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_2(12, 110, 95); + else if ((active4 & 0x100000000L) != 0L) + return jjStartNfaWithStates_2(12, 288, 95); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000000L, active5, 0L, active6, 0L, active7, 0x800000020000000L, active8, 0L, active9, 0x840000000L, active10, 0x80L, active11, 0L); case 72: case 104: - if ((active9 & 0x8L) != 0L) - return jjStartNfaWithStates_2(12, 579, 94); - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x1000L) != 0L) + return jjStartNfaWithStates_2(12, 588, 95); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa13_2(active0, 0x10000000000L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0x100000000L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_2(active0, 0x10000000000L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0x4000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: - if ((active10 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(12, 655, 94); - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x40000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); + if ((active10 & 0x2000000L) != 0L) + return jjStartNfaWithStates_2(12, 665, 95); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x80000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x800L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x1000000080100000L, active2, 0L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0x10000L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x2000000080100000L, active2, 0L, active3, 0L, active4, 0x4000000000000000L, active5, 0L, active6, 0x400000L, active7, 0x80000000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0L); case 78: case 110: if ((active0 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(12, 35, 94); - else if ((active2 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(12, 188, 94); - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x10L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(12, 35, 95); + else if ((active3 & 0x1L) != 0L) + return jjStartNfaWithStates_2(12, 192, 95); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x10L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0x10000L); case 80: case 112: - if ((active8 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(12, 572, 94); - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active9 & 0x20L) != 0L) + return jjStartNfaWithStates_2(12, 581, 95); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 82: case 114: - if ((active9 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(12, 625, 94); - return jjMoveStringLiteralDfa13_2(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_2(12, 634, 95); + return jjMoveStringLiteralDfa13_2(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0xc000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x8000040000000000L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x60800e0L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0x300L, active6, 0L, active7, 0L, active8, 0L, active9, 0x14L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x60800e0L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0x6000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2800L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x25000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4a00000000000000L, active10, 0L, active11, 0L); case 89: case 121: - if ((active9 & 0x100L) != 0L) - return jjStartNfaWithStates_2(12, 584, 94); + if ((active9 & 0x20000L) != 0L) + return jjStartNfaWithStates_2(12, 593, 95); break; default : break; @@ -14269,114 +14365,116 @@ private final int jjMoveStringLiteralDfa13_2(long old0, long active0, long old1, return jjStartNfa_2(11, old0, old1, old2, old3, old4, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_2(12, active0, active1, active2, active3, active4, active5, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_2(12, active0, active1, active2, 0L, active4, active5, active6, active7, active8, active9, active10, active11, 0L); return 13; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0xe0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0xe0L, active2, 0L, active4, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active1 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_2(13, 124, 94); - else if ((active7 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(13, 485, 94); - else if ((active10 & 0x10L) != 0L) - return jjStartNfaWithStates_2(13, 644, 94); - return jjMoveStringLiteralDfa14_2(active0, 0x800000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + if ((active1 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_2(13, 125, 95); + else if ((active7 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_2(13, 491, 95); + else if ((active10 & 0x2000L) != 0L) + return jjStartNfaWithStates_2(13, 653, 95); + return jjMoveStringLiteralDfa14_2(active0, 0x800000L, active1, 0x80000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 66: case 98: - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x80000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x80000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + if ((active2 & 0x4000L) != 0L) + return jjStartNfaWithStates_2(13, 142, 95); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x100L, active2, 0L, active4, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 68: case 100: - if ((active9 & 0x20L) != 0L) - return jjStartNfaWithStates_2(13, 581, 94); - return jjMoveStringLiteralDfa14_2(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1e000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x4000L) != 0L) + return jjStartNfaWithStates_2(13, 590, 95); + return jjMoveStringLiteralDfa14_2(active0, 0x1000000L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3c00000000000L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(13, 84, 94); - else if ((active6 & 0x8000L) != 0L) - return jjStartNfaWithStates_2(13, 399, 94); - else if ((active6 & 0x10000L) != 0L) - return jjStartNfaWithStates_2(13, 400, 94); - else if ((active9 & 0x4L) != 0L) - return jjStartNfaWithStates_2(13, 578, 94); - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000000004000010L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(13, 84, 95); + else if ((active6 & 0x200000L) != 0L) + return jjStartNfaWithStates_2(13, 405, 95); + else if ((active6 & 0x400000L) != 0L) + return jjStartNfaWithStates_2(13, 406, 95); + else if ((active9 & 0x800L) != 0L) + return jjStartNfaWithStates_2(13, 587, 95); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x200000L, active2, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800002000L, active10, 0x80L, active11, 0L); case 70: case 102: - if ((active9 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(13, 623, 94); - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_2(13, 632, 95); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active4 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(13, 287, 94); - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x10L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active4 & 0x800000000L) != 0L) + return jjStartNfaWithStates_2(13, 291, 95); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x10L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active5 & 0x100L) != 0L) - return jjStartNfaWithStates_2(13, 328, 94); - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100e0000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active5 & 0x2000L) != 0L) + return jjStartNfaWithStates_2(13, 333, 95); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x4000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x201c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x200000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active4, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x200000000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x2400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x2400000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - if ((active3 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_2(13, 253, 94); - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x4000000000000L, active9, 0x21000000000000L, active10, 0L, active11, 0x40L); + if ((active4 & 0x2L) != 0L) + return jjStartNfaWithStates_2(13, 257, 95); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0x4200000000000000L, active10, 0L, active11, 0x10000L); case 79: case 111: - return jjMoveStringLiteralDfa14_2(active0, 0x10000000000L, active1, 0x40000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); + return jjMoveStringLiteralDfa14_2(active0, 0x10000000000L, active1, 0x80000000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x800L, active11, 0L); case 80: case 112: - if ((active4 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(13, 313, 94); + if ((active4 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_2(13, 318, 95); break; case 82: case 114: - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0x3000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 83: case 115: - if ((active7 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(13, 498, 94); - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x100000000L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + if ((active7 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_2(13, 507, 95); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x4000000000L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 84: case 116: - if ((active7 & 0x40L) != 0L) - return jjStartNfaWithStates_2(13, 454, 94); - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x4000001000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3800000L, active8, 0L, active9, 0x4000000000000L, active10, 0xf0000000L, active11, 0L); + if ((active7 & 0x1000L) != 0L) + return jjStartNfaWithStates_2(13, 460, 95); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x8000041000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0xe0000000L, active8, 0L, active9, 0x800000000000000L, active10, 0x3c000000000L, active11, 0L); case 88: case 120: - if ((active6 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(13, 426, 94); + if ((active6 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_2(13, 432, 95); break; case 89: case 121: - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x600000000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_2(12, active0, active1, active2, active3, active4, active5, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_2(12, active0, active1, active2, 0L, active4, active5, active6, active7, active8, active9, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa14_2(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa14_2(long old0, long active0, long old1, long active1, long old2, long active2, long old4, long active4, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_2(12, old0, old1, old2, old3, old4, old5, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active4 &= old4) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_2(12, old0, old1, old2, 0L, old4, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_2(13, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); @@ -14385,93 +14483,95 @@ private final int jjMoveStringLiteralDfa14_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x4000001000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x1401e000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x8000001000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x2803c00000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active6 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(14, 416, 94); - else if ((active9 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_2(14, 624, 94); - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); + if ((active6 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_2(14, 422, 95); + else if ((active9 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_2(14, 633, 95); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); case 69: case 101: if ((active1 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(14, 98, 94); + return jjStartNfaWithStates_2(14, 98, 95); else if ((active1 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(14, 101, 94); - else if ((active5 & 0x4L) != 0L) - return jjStartNfaWithStates_2(14, 322, 94); - else if ((active9 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(14, 626, 94); - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x4080000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8003800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(14, 101, 95); + else if ((active5 & 0x80L) != 0L) + return jjStartNfaWithStates_2(14, 327, 95); + else if ((active9 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_2(14, 635, 95); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x4080000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 71: case 103: - if ((active1 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_2(14, 118, 94); - else if ((active7 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(14, 483, 94); - else if ((active10 & 0x4L) != 0L) - return jjStartNfaWithStates_2(14, 642, 94); - return jjMoveStringLiteralDfa15_2(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active1 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_2(14, 119, 95); + else if ((active7 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_2(14, 489, 95); + else if ((active10 & 0x800L) != 0L) + return jjStartNfaWithStates_2(14, 651, 95); + return jjMoveStringLiteralDfa15_2(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active7 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(14, 471, 94); + if ((active7 & 0x20000000L) != 0L) + return jjStartNfaWithStates_2(14, 477, 95); break; case 73: case 105: - return jjMoveStringLiteralDfa15_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0x300000000000L, active9, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa15_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0x60000000000000L, active9, 0L, active10, 0L, active11, 0x10000L); case 76: case 108: - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x200000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: if ((active0 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(14, 40, 94); - else if ((active9 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(14, 597, 94); - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(14, 40, 95); + else if ((active9 & 0x40000000L) != 0L) + return jjStartNfaWithStates_2(14, 606, 95); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x8000000006000000L, active2, 0xc000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4e0000000000L, active9, 0x600000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000001L, active5, 0L, active6, 0L, active7, 0L, active8, 0x9c000000000000L, active9, 0L, active10, 0xcL, active11, 0L); case 82: case 114: - if ((active8 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(14, 563, 94); - else if ((active9 & 0x10L) != 0L) - return jjStartNfaWithStates_2(14, 580, 94); - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active1 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(14, 106, 95); + else if ((active8 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_2(14, 572, 95); + else if ((active9 & 0x2000L) != 0L) + return jjStartNfaWithStates_2(14, 589, 95); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 83: case 115: if ((active1 & 0x100L) != 0L) - return jjStartNfaWithStates_2(14, 72, 94); + return jjStartNfaWithStates_2(14, 72, 95); return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - if ((active6 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(14, 415, 94); - else if ((active9 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_2(14, 629, 94); - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x100000000000010L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_2(14, 421, 95); + else if ((active9 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_2(14, 638, 95); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0x200000000000010L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 86: case 118: - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0xc00L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0x3000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active9 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(14, 602, 94); - else if ((active9 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(14, 638, 94); + if ((active9 & 0x800000000L) != 0L) + return jjStartNfaWithStates_2(14, 611, 95); + else if ((active10 & 0x80L) != 0L) + return jjStartNfaWithStates_2(14, 647, 95); break; case 89: case 121: - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); default : break; } @@ -14489,37 +14589,37 @@ private final int jjMoveStringLiteralDfa15_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: if ((active1 & 0x200000L) != 0L) - return jjStartNfaWithStates_2(15, 85, 94); - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0x60L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0x3000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(15, 85, 95); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0x60L, active2, 0x3000L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0x600000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 69: case 101: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0x10000000000200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x800000L) != 0L) - return jjStartNfaWithStates_2(15, 23, 94); + return jjStartNfaWithStates_2(15, 23, 95); break; case 72: case 104: if ((active1 & 0x10L) != 0L) - return jjStartNfaWithStates_2(15, 68, 94); + return jjStartNfaWithStates_2(15, 68, 95); break; case 76: case 108: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0x4000004000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0x8000004000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 78: case 110: if ((active1 & 0x2000000L) != 0L) @@ -14527,42 +14627,42 @@ private final int jjMoveStringLiteralDfa15_2(long old0, long active0, long old1, jjmatchedKind = 89; jjmatchedPos = 15; } - else if ((active2 & 0x4000000000000L) != 0L) + else if ((active2 & 0x40000000000000L) != 0L) { - jjmatchedKind = 178; + jjmatchedKind = 182; jjmatchedPos = 15; } - return jjMoveStringLiteralDfa16_2(active0, 0x1000000L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_2(active0, 0x1000000L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 82: case 114: if ((active1 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(15, 95, 94); - else if ((active8 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(15, 564, 94); - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(15, 95, 95); + else if ((active8 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_2(15, 573, 95); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 85: case 117: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active8 & 0x2000000000L) != 0L) + if ((active8 & 0x400000000000L) != 0L) { - jjmatchedKind = 549; + jjmatchedKind = 558; jjmatchedPos = 15; } - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000L); default : break; } @@ -14580,73 +14680,73 @@ private final int jjMoveStringLiteralDfa16_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: if ((active1 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(16, 102, 94); - return jjMoveStringLiteralDfa17_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40L); + return jjStartNfaWithStates_2(16, 102, 95); + return jjMoveStringLiteralDfa17_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000L); case 69: case 101: - if ((active7 & 0x2000000L) != 0L) - return jjStartNfaWithStates_2(16, 473, 94); - return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + if ((active7 & 0x80000000L) != 0L) + return jjStartNfaWithStates_2(16, 479, 95); + return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(16, 83, 94); + return jjStartNfaWithStates_2(16, 83, 95); break; case 72: case 104: return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 76: case 108: - return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0x3000L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0x8000000000000040L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0x40L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 80: case 112: - if ((active1 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_2(16, 126, 94); + if ((active1 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_2(16, 127, 95); break; case 82: case 114: - if ((active8 & 0x20000000000L) != 0L) + if ((active8 & 0x4000000000000L) != 0L) { - jjmatchedKind = 553; + jjmatchedKind = 562; jjmatchedPos = 16; } - else if ((active8 & 0x1000000000000L) != 0L) + else if ((active8 & 0x200000000000000L) != 0L) { - jjmatchedKind = 560; + jjmatchedKind = 569; jjmatchedPos = 16; } - return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x418000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0x100000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0x200000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000000000L, active9, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x300000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x60000000000000L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active5 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_2(16, 372, 94); + if ((active5 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_2(16, 377, 95); break; case 89: case 121: - if ((active8 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_2(16, 562, 94); + if ((active8 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_2(16, 571, 95); break; default : break; @@ -14665,46 +14765,46 @@ private final int jjMoveStringLiteralDfa17_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0x8000000000000000L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0x3001L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x418000000000000L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x40L) != 0L) - return jjStartNfaWithStates_2(17, 70, 94); - return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(17, 70, 95); + return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 71: case 103: if ((active1 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(17, 100, 94); - return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(17, 100, 95); + return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active8 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(17, 558, 94); + if ((active8 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_2(17, 567, 95); break; case 73: case 105: - return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 76: case 108: return jjMoveStringLiteralDfa18_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x63800000000000L, active9, 0L, active10, 0L, active11, 0x4000010000L); case 86: case 118: - return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); default : break; } @@ -14722,38 +14822,38 @@ private final int jjMoveStringLiteralDfa18_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0x400L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x30000000L, active11, 0L); + return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0x1000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xc000000000L, active11, 0L); case 68: case 100: - if ((active8 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_2(18, 559, 94); - else if ((active8 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(18, 575, 94); - else if ((active9 & 0x2L) != 0L) - return jjStartNfaWithStates_2(18, 577, 94); - return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + if ((active8 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_2(18, 568, 95); + else if ((active9 & 0x100L) != 0L) + return jjStartNfaWithStates_2(18, 584, 95); + else if ((active9 & 0x400L) != 0L) + return jjStartNfaWithStates_2(18, 586, 95); + return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 69: case 101: - if ((active8 & 0x100000000000L) != 0L) + if ((active8 & 0x20000000000000L) != 0L) { - jjmatchedKind = 556; + jjmatchedKind = 565; jjmatchedPos = 18; } - else if ((active9 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(18, 632, 94); - return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active10 & 0x2L) != 0L) + return jjStartNfaWithStates_2(18, 641, 95); + return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa19_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000010000L); case 76: case 108: return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -14762,19 +14862,19 @@ else if ((active9 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40000000L, active11, 0L); + return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0x800L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); + return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0x400000L, active8, 0x20c0000000000L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0x10000000L, active8, 0x418000000000000L, active9, 0L, active10, 0x4L, active11, 0L); default : break; } @@ -14786,300 +14886,300 @@ private final int jjMoveStringLiteralDfa19_2(long old0, long active0, long old1, return jjStartNfa_2(17, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_2(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_2(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, 0L, active10, active11, 0L); return 19; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x21c000000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x43800000000000L, active10, 0x8L, active11, 0L); case 65: case 97: if ((active1 & 0x80L) != 0L) - return jjStartNfaWithStates_2(19, 71, 94); - return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x50000000L, active11, 0L); + return jjStartNfaWithStates_2(19, 71, 95); + return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x14000000000L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x40000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); + return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1000000L, active7, 0L, active8, 0L, active10, 0x20000000000L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active5 & 0x200L) != 0L) - return jjStartNfaWithStates_2(19, 329, 94); + if ((active5 & 0x4000L) != 0L) + return jjStartNfaWithStates_2(19, 334, 95); break; case 78: case 110: - return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0x2000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x20L, active2, 0x400L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0x20000000L, active11, 0x10000040L); + return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x20L, active2, 0x1000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x418000000000000L, active10, 0x8000000000L, active11, 0x4000010000L); case 82: case 114: - return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x8000000000000000L, active2, 0x800L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0x2001L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x100000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa20_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active10, 0x4L, active11, 0L); case 89: case 121: - if ((active7 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(19, 470, 94); + if ((active7 & 0x10000000L) != 0L) + return jjStartNfaWithStates_2(19, 476, 95); break; default : break; } - return jjStartNfa_2(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_2(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa20_2(long old0, long active0, long old1, long active1, long old2, long active2, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa20_2(long old0, long active0, long old1, long active1, long old2, long active2, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_2(18, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_2(18, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_2(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_2(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, 0L, active10, active11, 0L); return 20; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x418000000000000L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0xc0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0x3000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x8L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0x100000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0x400L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0x1000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x8000000000L, active11, 0L); case 69: case 101: if ((active1 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(20, 90, 94); - else if ((active2 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_2(20, 179, 94); - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0x800L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjStartNfaWithStates_2(20, 90, 95); + else if ((active2 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_2(20, 183, 95); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x4L, active11, 0L); case 71: case 103: if ((active1 & 0x20L) != 0L) - return jjStartNfaWithStates_2(20, 69, 94); + return jjStartNfaWithStates_2(20, 69, 95); break; case 72: case 104: - if ((active7 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(20, 472, 94); - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000L, active9, 0L, active10, 0x80000000L, active11, 0L); + if ((active7 & 0x40000000L) != 0L) + return jjStartNfaWithStates_2(20, 478, 95); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x800000000000L, active10, 0x20000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000L, active9, 0L, active10, 0x40000000L, active11, 0L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active10, 0x10000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x4000010000L); case 79: case 111: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0x1L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0x100000000000000L, active2, 0L, active6, 0x20000L, active7, 0L, active8, 0x10000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0x200000000000000L, active2, 0L, active6, 0x800000L, active7, 0L, active8, 0x2000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x40000000000000L, active10, 0x4000000000L, active11, 0L); case 89: case 121: if ((active0 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(20, 24, 94); + return jjStartNfaWithStates_2(20, 24, 95); break; default : break; } - return jjStartNfa_2(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_2(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa21_2(long old0, long active0, long old1, long active1, long old2, long active2, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa21_2(long old0, long active0, long old1, long active1, long old2, long active2, long old6, long active6, long old7, long active7, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_2(19, old0, old1, old2, 0L, 0L, 0L, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_2(19, old0, old1, old2, 0L, 0L, 0L, old6, old7, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_2(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_2(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 21; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000010000L); case 65: case 97: - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x4000000008L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0x800L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - if ((active9 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_2(21, 633, 94); + if ((active10 & 0x4L) != 0L) + return jjStartNfaWithStates_2(21, 642, 95); break; case 69: case 101: - if ((active2 & 0x400L) != 0L) - return jjStartNfaWithStates_2(21, 138, 94); - else if ((active10 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(21, 669, 94); - else if ((active10 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(21, 670, 94); - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0L, active10, 0x80000000L, active11, 0L); + if ((active2 & 0x1000L) != 0L) + return jjStartNfaWithStates_2(21, 140, 95); + else if ((active10 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_2(21, 679, 95); + else if ((active10 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_2(21, 680, 95); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x20000000000L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa22_2(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_2(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 72: case 104: - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0x1000000000000L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0x80000L, active8, 0x2040000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0x2000000L, active8, 0x408000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x204000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x40800000000000L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa22_2(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_2(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_2(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa22_2(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa22_2(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_2(20, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_2(20, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_2(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_2(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 22; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x8L, active11, 0L); case 69: case 101: - if ((active6 & 0x80000L) != 0L) - return jjStartNfaWithStates_2(22, 403, 94); - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x2000000L) != 0L) + return jjStartNfaWithStates_2(22, 409, 95); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0x800L, active6, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x4000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0x40L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000000L, active11, 0x10000L); case 78: case 110: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x1000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa23_2(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_2(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0x400000000000000L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa23_2(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000000000L); case 84: case 116: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x4000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x800000000000L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_2(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_2(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa23_2(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa23_2(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_2(21, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_2(21, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_2(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_2(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 23; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa24_2(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active10 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(23, 671, 94); + if ((active10 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_2(23, 681, 95); break; case 67: case 99: - return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0L, active10, 0L, active11, 0L); case 75: case 107: - if ((active9 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_2(23, 634, 94); + if ((active10 & 0x8L) != 0L) + return jjStartNfaWithStates_2(23, 643, 95); break; case 76: case 108: - return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x408000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0L, active10, 0x10000000L, active11, 0x10000040L); + return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x4000000000L, active11, 0x4000010000L); case 82: case 114: - if ((active8 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(23, 550, 94); - return jjMoveStringLiteralDfa24_2(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_2(23, 559, 95); + return jjMoveStringLiteralDfa24_2(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0x800L, active6, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x1000000000000L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_2(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_2(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa24_2(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa24_2(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_2(22, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_2(22, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_2(23, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); @@ -15089,44 +15189,44 @@ private final int jjMoveStringLiteralDfa24_2(long old1, long active1, long old2, { case 65: case 97: - if ((active6 & 0x100000L) != 0L) - return jjStartNfaWithStates_2(24, 404, 94); + if ((active6 & 0x4000000L) != 0L) + return jjStartNfaWithStates_2(24, 410, 95); break; case 68: case 100: - return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x10000L); case 69: case 101: - return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa25_2(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(24, 668, 94); + if ((active10 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_2(24, 678, 95); break; case 73: case 105: - return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0x800L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa25_2(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_2(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0x60000L, active8, 0x80000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0x1800000L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x2008000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x401000000000000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000000000L); default : break; } @@ -15144,46 +15244,46 @@ private final int jjMoveStringLiteralDfa25_2(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa26_2(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa26_2(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); case 68: case 100: - if ((active8 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(25, 552, 94); + if ((active8 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_2(25, 561, 95); break; case 69: case 101: - if ((active8 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(25, 551, 94); - else if ((active11 & 0x40L) != 0L) - return jjStartNfaWithStates_2(25, 710, 94); + if ((active8 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_2(25, 560, 95); + else if ((active11 & 0x10000L) != 0L) + return jjStartNfaWithStates_2(25, 720, 95); break; case 71: case 103: - if ((active6 & 0x40000L) != 0L) - return jjStartNfaWithStates_2(25, 402, 94); + if ((active6 & 0x1000000L) != 0L) + return jjStartNfaWithStates_2(25, 408, 95); break; case 72: case 104: - if ((active8 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_2(25, 561, 94); + if ((active8 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_2(25, 570, 95); break; case 78: case 110: - if ((active6 & 0x20000L) != 0L) - return jjStartNfaWithStates_2(25, 401, 94); - return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active11, 0L); + if ((active6 & 0x800000L) != 0L) + return jjStartNfaWithStates_2(25, 407, 95); + return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa26_2(active1, 0x8000000000000000L, active2, 0x800L, active6, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0x2001L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x4000000000L); case 84: case 116: - return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000L, active11, 0L); + return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active11, 0L); default : break; } @@ -15201,31 +15301,31 @@ private final int jjMoveStringLiteralDfa26_2(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa27_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 68: case 100: - if ((active8 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(26, 555, 94); + if ((active8 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_2(26, 564, 95); break; case 69: case 101: - if ((active8 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(26, 554, 94); + if ((active8 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_2(26, 563, 95); break; case 71: case 103: - return jjMoveStringLiteralDfa27_2(active1, 0x100000000000000L, active2, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa27_2(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); case 78: case 110: - if ((active2 & 0x800L) != 0L) - return jjStartNfaWithStates_2(26, 139, 94); + if ((active2 & 0x2000L) != 0L) + return jjStartNfaWithStates_2(26, 141, 95); break; case 79: case 111: - return jjMoveStringLiteralDfa27_2(active1, 0L, active2, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa27_2(active1, 0L, active2, 0L, active8, 0x40000000000000L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa27_2(active1, 0x8000000000000000L, active2, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa27_2(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); default : break; } @@ -15237,131 +15337,131 @@ private final int jjMoveStringLiteralDfa27_2(long old1, long active1, long old2, return jjStartNfa_2(25, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_2(26, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_2(26, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); return 27; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa28_2(active1, 0x8000000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa28_2(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa28_2(active1, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa28_2(active1, 0L, active2, 0L, active8, 0x40000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_2(active1, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa28_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 82: case 114: - return jjMoveStringLiteralDfa28_2(active1, 0x100000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa28_2(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); default : break; } - return jjStartNfa_2(26, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + return jjStartNfa_2(26, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa28_2(long old1, long active1, long old8, long active8, long old11, long active11) +private final int jjMoveStringLiteralDfa28_2(long old1, long active1, long old2, long active2, long old8, long active8, long old11, long active11) { - if (((active1 &= old1) | (active8 &= old8) | (active11 &= old11)) == 0L) - return jjStartNfa_2(26, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active8 &= old8) | (active11 &= old11)) == 0L) + return jjStartNfa_2(26, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_2(27, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_2(27, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); return 28; } switch(curChar) { case 68: case 100: - if ((active8 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(28, 557, 94); + if ((active8 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_2(28, 566, 95); break; case 69: case 101: - return jjMoveStringLiteralDfa29_2(active1, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa29_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 79: case 111: - return jjMoveStringLiteralDfa29_2(active1, 0x100000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa29_2(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa29_2(active1, 0x8000000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa29_2(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); default : break; } - return jjStartNfa_2(27, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + return jjStartNfa_2(27, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa29_2(long old1, long active1, long old8, long active8, long old11, long active11) +private final int jjMoveStringLiteralDfa29_2(long old1, long active1, long old2, long active2, long old8, long active8, long old11, long active11) { - if (((active1 &= old1) | (active8 &= old8) | (active11 &= old11)) == 0L) - return jjStartNfa_2(27, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active8 &= old8) | (active11 &= old11)) == 0L) + return jjStartNfa_2(27, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_2(28, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_2(28, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 29; } switch(curChar) { case 82: case 114: - return jjMoveStringLiteralDfa30_2(active1, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa30_2(active1, 0L, active2, 0L, active11, 0x4000000000L); case 85: case 117: - return jjMoveStringLiteralDfa30_2(active1, 0x100000000000000L, active11, 0L); + return jjMoveStringLiteralDfa30_2(active1, 0x200000000000000L, active2, 0L, active11, 0L); case 89: case 121: - return jjMoveStringLiteralDfa30_2(active1, 0x8000000000000000L, active11, 0L); + return jjMoveStringLiteralDfa30_2(active1, 0L, active2, 0x1L, active11, 0L); default : break; } - return jjStartNfa_2(28, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_2(28, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa30_2(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa30_2(long old1, long active1, long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_2(28, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_2(28, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_2(29, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_2(29, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 30; } switch(curChar) { case 67: case 99: - return jjMoveStringLiteralDfa31_2(active1, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa31_2(active1, 0L, active2, 0L, active11, 0x4000000000L); case 80: case 112: - if ((active1 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_2(30, 120, 94); - return jjMoveStringLiteralDfa31_2(active1, 0x8000000000000000L, active11, 0L); + if ((active1 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_2(30, 121, 95); + return jjMoveStringLiteralDfa31_2(active1, 0L, active2, 0x1L, active11, 0L); default : break; } - return jjStartNfa_2(29, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_2(29, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa31_2(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa31_2(long old1, long active1, long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_2(29, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_2(29, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_2(30, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_2(30, 0L, 0L, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 31; } switch(curChar) { case 69: case 101: - if ((active1 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_2(31, 127, 94); - return jjMoveStringLiteralDfa32_2(active1, 0L, active11, 0x10000000L); + if ((active2 & 0x1L) != 0L) + return jjStartNfaWithStates_2(31, 128, 95); + return jjMoveStringLiteralDfa32_2(active2, 0L, active11, 0x4000000000L); default : break; } - return jjStartNfa_2(30, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_2(30, 0L, 0L, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa32_2(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa32_2(long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_2(30, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_2(30, 0L, 0L, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_2(31, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); @@ -15371,7 +15471,7 @@ private final int jjMoveStringLiteralDfa32_2(long old1, long active1, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_2(active11, 0x10000000L); + return jjMoveStringLiteralDfa33_2(active11, 0x4000000000L); default : break; } @@ -15390,8 +15490,8 @@ private final int jjMoveStringLiteralDfa33_2(long old11, long active11) { case 84: case 116: - if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(33, 732, 94); + if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_2(33, 742, 95); break; default : break; @@ -15428,21 +15528,21 @@ else if (curChar == 46) jjCheckNAddTwoStates(56, 57); else if (curChar == 7) { - if (kind > 808) - kind = 808; + if (kind > 819) + kind = 819; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 23; if ((0x3ff000000000000L & l) != 0L) { - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAddStates(9, 15); } else if (curChar == 36) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; @@ -15455,28 +15555,28 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 94: + case 95: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x3ff001000000000L & l) != 0L) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 96: + case 97: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(37, 38); else if (curChar == 39) @@ -15485,8 +15585,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) @@ -15503,8 +15603,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 67; if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) @@ -15513,8 +15613,8 @@ else if (curChar == 38) case 92: if (curChar == 47) { - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(25, 27); } else if (curChar == 42) @@ -15529,14 +15629,14 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 95: + case 94: if (curChar == 32) jjCheckNAddTwoStates(86, 87); if (curChar == 32) @@ -15551,19 +15651,19 @@ else if (curChar == 39) jjCheckNAddStates(32, 34); else if (curChar == 39) { - if (kind > 741) - kind = 741; + if (kind > 751) + kind = 751; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 64; if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; - case 97: + case 96: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(57); } if ((0x3ff000000000000L & l) != 0L) @@ -15588,8 +15688,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 740) - kind = 740; + if (curChar == 39 && kind > 750) + kind = 750; break; case 7: if ((0x3ff000000000000L & l) != 0L) @@ -15613,8 +15713,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 11; break; case 13: - if (curChar == 39 && kind > 742) - kind = 742; + if (curChar == 39 && kind > 752) + kind = 752; break; case 17: if ((0xffffff7fffffffffL & l) != 0L) @@ -15632,30 +15732,30 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 20; break; case 22: - if (curChar == 39 && kind > 744) - kind = 744; + if (curChar == 39 && kind > 754) + kind = 754; break; case 23: if (curChar != 45) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(25, 27); break; case 24: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(25, 27); break; case 25: - if ((0x2400L & l) != 0L && kind > 794) - kind = 794; + if ((0x2400L & l) != 0L && kind > 805) + kind = 805; break; case 26: - if (curChar == 10 && kind > 794) - kind = 794; + if (curChar == 10 && kind > 805) + kind = 805; break; case 27: if (curChar == 13) @@ -15672,15 +15772,15 @@ else if (curChar == 39) case 34: if (curChar != 36) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 35: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 36: @@ -15698,8 +15798,8 @@ else if (curChar == 39) case 39: if (curChar != 36) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjCheckNAddTwoStates(39, 40); break; case 40: @@ -15709,26 +15809,26 @@ else if (curChar == 39) case 41: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjCheckNAdd(41); break; case 42: - if (curChar == 7 && kind > 808) - kind = 808; + if (curChar == 7 && kind > 819) + kind = 819; break; case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAddStates(9, 15); break; case 44: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAdd(44); break; case 45: @@ -15742,8 +15842,8 @@ else if (curChar == 39) case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 735) - kind = 735; + if (kind > 745) + kind = 745; jjCheckNAdd(48); break; case 49: @@ -15757,22 +15857,22 @@ else if (curChar == 39) case 51: if (curChar != 46) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(52); break; case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(52); break; case 53: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAddStates(35, 37); break; case 54: @@ -15790,8 +15890,8 @@ else if (curChar == 39) case 57: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(57); break; case 58: @@ -15811,12 +15911,12 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; case 62: - if (curChar == 39 && kind > 741) - kind = 741; + if (curChar == 39 && kind > 751) + kind = 751; break; case 64: - if (curChar == 39 && kind > 748) - kind = 748; + if (curChar == 39 && kind > 758) + kind = 758; break; case 67: case 69: @@ -15832,8 +15932,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 69; break; case 71: - if (curChar == 39 && kind > 743) - kind = 743; + if (curChar == 39 && kind > 753) + kind = 753; break; case 72: if (curChar == 38) @@ -15856,8 +15956,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 75; break; case 77: - if (curChar == 34 && kind > 805) - kind = 805; + if (curChar == 34 && kind > 816) + kind = 816; break; case 79: if (curChar == 32) @@ -15884,14 +15984,14 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 91; break; case 91: - if ((0xffff7fffffffffffL & l) != 0L && kind > 792) - kind = 792; + if ((0xffff7fffffffffffL & l) != 0L && kind > 803) + kind = 803; break; case 93: if (curChar != 47) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(25, 27); break; default : break; @@ -15914,8 +16014,8 @@ else if (curChar == 96) jjCheckNAddTwoStates(30, 32); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if ((0x20000000200000L & l) != 0L) @@ -15936,32 +16036,32 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; - case 94: + case 95: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; - case 96: + case 97: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; @@ -15972,8 +16072,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; @@ -15984,25 +16084,25 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } break; - case 95: + case 94: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; else if ((0x1000000010L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 761) + kind = 761; } if ((0x10000000100000L & l) != 0L) { - if (kind > 752) - kind = 752; + if (kind > 762) + kind = 762; } break; case 63: @@ -16053,8 +16153,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(28, 31); break; case 24: - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjAddStates(25, 27); break; case 29: @@ -16074,21 +16174,21 @@ else if ((0x1000000010L & l) != 0L) jjstateSet[jjnewStateCnt++] = 31; break; case 33: - if (curChar == 96 && kind > 800) - kind = 800; + if (curChar == 96 && kind > 811) + kind = 811; break; case 34: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 35: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 36: @@ -16098,15 +16198,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjAddStates(58, 59); break; case 41: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjstateSet[jjnewStateCnt++] = 41; break; case 46: @@ -16131,32 +16231,32 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(48, 55); break; case 80: - if ((0x1000000010L & l) != 0L && kind > 751) - kind = 751; + if ((0x1000000010L & l) != 0L && kind > 761) + kind = 761; break; case 82: - if ((0x10000000100000L & l) != 0L && kind > 752) - kind = 752; + if ((0x10000000100000L & l) != 0L && kind > 762) + kind = 762; break; case 84: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; break; case 85: - if ((0x8000000080000L & l) != 0L && kind > 753) - kind = 753; + if ((0x8000000080000L & l) != 0L && kind > 763) + kind = 763; break; case 87: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; break; case 88: - if ((0x400000004000L & l) != 0L && kind > 754) - kind = 754; + if ((0x400000004000L & l) != 0L && kind > 764) + kind = 764; break; case 91: - if (kind > 792) - kind = 792; + if (kind > 803) + kind = 803; break; default : break; } @@ -16176,8 +16276,8 @@ else if ((0x1000000010L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16186,8 +16286,8 @@ else if ((0x1000000010L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16195,11 +16295,11 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 94: + case 95: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16207,11 +16307,11 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 96: + case 97: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16222,8 +16322,8 @@ else if ((0x1000000010L & l) != 0L) case 66: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16234,8 +16334,8 @@ else if ((0x1000000010L & l) != 0L) case 16: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16270,8 +16370,8 @@ else if ((0x1000000010L & l) != 0L) case 24: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjAddStates(25, 27); break; case 30: @@ -16281,15 +16381,15 @@ else if ((0x1000000010L & l) != 0L) case 34: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 35: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(35); break; case 36: @@ -16299,15 +16399,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjAddStates(58, 59); break; case 41: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjstateSet[jjnewStateCnt++] = 41; break; case 59: @@ -16323,8 +16423,8 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(45, 47); break; case 91: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 792) - kind = 792; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 803) + kind = 803; break; default : break; } @@ -16348,400 +16448,400 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, switch (pos) { case 0: - if ((active11 & 0x100000000000000L) != 0L || (active12 & 0x400L) != 0L) + if ((active12 & 0x200004L) != 0L) return 76; - if ((active12 & 0x800L) != 0L) + if ((active10 & 0x3fffffc00000L) != 0L) + { + jjmatchedKind = 814; + return 31; + } + if ((active12 & 0x400000L) != 0L) return 58; - if ((active11 & 0x8000000000000L) != 0L) + if ((active11 & 0x2000000000000000L) != 0L) return 77; - if ((active10 & 0x2000000000000000L) != 0L) + if ((active12 & 0x1200020000L) != 0L) + return 74; + if ((active11 & 0x80L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; return 1; } - if ((active12 & 0x2400040L) != 0L) - return 74; - if ((active0 & 0xfff8001ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xfL) != 0L || (active3 & 0x3fff000000000L) != 0L || (active4 & 0xf000003c00000000L) != 0L || (active5 & 0xfffffffL) != 0L || (active8 & 0x100L) != 0L || (active11 & 0x18d401b0L) != 0L || (active12 & 0x8000L) != 0L) - return 78; - if ((active12 & 0x10L) != 0L) - return 11; - if ((active12 & 0x1000L) != 0L) - return 79; - if ((active0 & 0x7ffe000000000L) != 0L || (active2 & 0xfffffffffffffff0L) != 0L || (active3 & 0xfffc000fffffffffL) != 0L || (active4 & 0xfffffc3ffffffffL) != 0L || (active5 & 0xfffffffff0000000L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xfffffffffffffeffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xdffffff000000fffL) != 0L || (active11 & 0x272bfe4fL) != 0L) + if ((active0 & 0x7ffe000000000L) != 0L || (active2 & 0xffffffffffffffe0L) != 0L || (active3 & 0xffc000ffffffffffL) != 0L || (active4 & 0xfffff87fffffffffL) != 0L || (active5 & 0xfffffffe00000001L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xfffffffffffdffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xffffc000003fffffL) != 0L || (active11 & 0x9caff93f7fL) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; return 78; } - if ((active10 & 0xffffff000L) != 0L) - { - jjmatchedKind = 803; - return 31; - } + if ((active0 & 0xfff8001ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x1fL) != 0L || (active3 & 0x3fff0000000000L) != 0L || (active4 & 0x78000000000L) != 0L || (active5 & 0x1fffffffeL) != 0L || (active8 & 0x20000L) != 0L || (active11 & 0x635006c000L) != 0L || (active12 & 0x4000000L) != 0L) + return 78; + if ((active12 & 0xc000L) != 0L) + return 11; + if ((active12 & 0x800000L) != 0L) + return 79; return -1; case 1: - if ((active0 & 0xfff3fff801fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0x7ffff3efffffffffL) != 0L || (active4 & 0xefbffffbff000000L) != 0L || (active5 & 0xc67ff83fffffffffL) != 0L || (active6 & 0xffffffffffffffe1L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffcfffffffffffffL) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0x1f7eafddL) != 0L) + if ((active12 & 0x1200000000L) != 0L) + return 72; + if ((active0 & 0x40007fe000000L) != 0L || (active3 & 0xc00000000000L) != 0L || (active4 & 0x80000000ffffff8L) != 0L || (active5 & 0x3000f80000000000L) != 0L || (active6 & 0x7c7L) != 0L || (active9 & 0x6000000000000000L) != 0L || (active11 & 0x8205408800L) != 0L) + return 78; + if ((active0 & 0xfff3fff801fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xffff3effffffffffL) != 0L || (active4 & 0xf7ffff7ff0000007L) != 0L || (active5 & 0xcfff07fffffffffdL) != 0L || (active6 & 0xfffffffffffff838L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0x9fffffffffffffffL) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0x7dfabf77ffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 1; } return 78; } - if ((active12 & 0x2400000L) != 0L) - return 72; - if ((active0 & 0x40007fe000000L) != 0L || (active3 & 0x80000c0000000000L) != 0L || (active4 & 0x40000000ffffffL) != 0L || (active5 & 0x398007c000000000L) != 0L || (active6 & 0x1eL) != 0L || (active9 & 0x30000000000000L) != 0L || (active11 & 0x20815022L) != 0L) - return 78; return -1; case 2: - if ((active0 & 0xfff3dfef79e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xe1ff2ffffff09fffL) != 0L || (active3 & 0x7fdffaeff87ff9ffL) != 0L || (active4 & 0xcfbfff43ffe81fffL) != 0L || (active5 & 0xe57ffbafffc07fe7L) != 0L || (active6 & 0xffffff701fffde3dL) != 0L || (active7 & 0xfffffc3ffffffff8L) != 0L || (active8 & 0x1ffe3fL) != 0L || (active9 & 0xffefffffeffffc00L) != 0L || (active10 & 0xdfffffffffffffffL) != 0L || (active11 & 0x2bfffffdL) != 0L) + if ((active0 & 0x201004167370L) != 0L || (active2 & 0xe00d000000f78000L) != 0L || (active3 & 0x200100078006001L) != 0L || (active4 & 0x1700007e0000L) != 0L || (active5 & 0x4000820007f00304L) != 0L || (active6 & 0x23f800087002L) != 0L || (active7 & 0xf000000001c0L) != 0L || (active8 & 0xffffffffc0038000L) != 0L || (active9 & 0x200007ffffL) != 0L || (active11 & 0x5000000080L) != 0L) + return 78; + if ((active0 & 0xfff3dfef79e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x1ff2ffffff087fffL) != 0L || (active3 & 0xfdffaeff87ff9ffeL) != 0L || (active4 & 0xf7ffe87ffe81fff7L) != 0L || (active5 & 0xafff75fff80ffcf9L) != 0L || (active6 & 0xffffdc07fff78fbcL) != 0L || (active7 & 0xffff0ffffffffe3fL) != 0L || (active8 & 0x3ffc7fffL) != 0L || (active9 & 0xdfffffdffff80000L) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0xaffffff77fL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 2; } return 78; } - if ((active0 & 0x201004167370L) != 0L || (active2 & 0x1e00d000000f6000L) != 0L || (active3 & 0x20010007800600L) != 0L || (active4 & 0x200000b80007e000L) != 0L || (active5 & 0x12000410003f8018L) != 0L || (active6 & 0x8fe00021c0L) != 0L || (active7 & 0x3c000000007L) != 0L || (active8 & 0xffffffffffe001c0L) != 0L || (active9 & 0x100003ffL) != 0L || (active10 & 0x2000000000000000L) != 0L || (active11 & 0x14000000L) != 0L) - return 78; return -1; case 3: - if ((active2 & 0x400000000000000L) != 0L) - return 80; - if ((active0 & 0x6631400000000000L) != 0L || (active1 & 0x83000000023feL) != 0L || (active2 & 0x51001e00005ff0L) != 0L || (active3 & 0xd00803400000c0L) != 0L || (active4 & 0x18ec03ff040000L) != 0L || (active5 & 0x6401e0a032000000L) != 0L || (active6 & 0x780200400c001e00L) != 0L || (active7 & 0x2800020080000000L) != 0L || (active8 & 0xb280L) != 0L || (active9 & 0x7ff4000000400L) != 0L || (active10 & 0xc78f4002f80008e0L) != 0L || (active11 & 0xc0201L) != 0L) - return 78; - if ((active0 & 0x99c29fef79e9ece0L) != 0L || (active1 & 0xfff7cfffffffdc01L) != 0L || (active2 & 0xf9ae2fe1fffe800fL) != 0L || (active3 & 0x7f0ff2ecbf7ffd3fL) != 0L || (active4 & 0xcfa7137000ebdfffL) != 0L || (active5 & 0x817e1b0fcdf77ff7L) != 0L || (active6 & 0x87fdff3fd3ffc1bdL) != 0L || (active7 & 0xd7fffdbf7ffffffeL) != 0L || (active8 & 0xffffffffffdf4d3fL) != 0L || (active9 & 0xffe800bfeffffbffL) != 0L || (active10 & 0x1870bffd07fff71fL) != 0L || (active11 & 0x3ff3fdfcL) != 0L) + if ((active0 & 0x99c29fef79e9ece0L) != 0L || (active1 & 0xffef9fffffffdc01L) != 0L || (active2 & 0x9ae2fe1fffeb001fL) != 0L || (active3 & 0xf0ff2ecbf7ffd3ffL) != 0L || (active4 & 0xf4e26e000ebdfff7L) != 0L || (active5 & 0x2fc361f9beeffef9L) != 0L || (active6 & 0xff7fcff4fff06fb0L) != 0L || (active7 & 0xffff6fdfffffffa1L) != 0L || (active8 & 0xffffffffbe9a7fafL) != 0L || (active9 & 0xd0017fdffff7ffffL) != 0L || (active10 & 0xc2fff41fffde3fffL) != 0L || (active11 & 0xffcff7f061L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 3; } return 78; } + if ((active2 & 0x4000000000000000L) != 0L) + return 80; + if ((active0 & 0x6631400000000000L) != 0L || (active1 & 0x106000000023feL) != 0L || (active2 & 0x51001e000047fe0L) != 0L || (active3 & 0xd00803400000c00L) != 0L || (active4 & 0x31d807ff0400000L) != 0L || (active5 & 0x803c140640000000L) != 0L || (active6 & 0x8010030007800cL) != 0L || (active7 & 0x80200000001eL) != 0L || (active8 & 0x1650050L) != 0L || (active9 & 0xffe800000080000L) != 0L || (active10 & 0x3d000be00021c000L) != 0L || (active11 & 0x3008071eL) != 0L) + return 78; return -1; case 4: - if ((active0 & 0xd9e29e2f780120e0L) != 0L || (active1 & 0xfff3affffffe9bfcL) != 0L || (active2 & 0x592e2ffd3ffe9fa7L) != 0L || (active3 & 0x7b0c02ecb7413dbdL) != 0L || (active4 & 0x4155933f8ebde3fL) != 0L || (active5 & 0x817ecb09c4777f70L) != 0L || (active6 & 0x83f5f72fd3ffdd31L) != 0L || (active7 & 0xd7e1bdbf1ffefffeL) != 0L || (active8 & 0xffffffffffdd4c3fL) != 0L || (active9 & 0xffeffca3efefc3ffL) != 0L || (active10 & 0xb68bf80f2fcf75eL) != 0L || (active11 & 0x1e73ebbcL) != 0L) + if ((active0 & 0xd9e29e2f780120e0L) != 0L || (active1 & 0xffe75ffffffe9bfcL) != 0L || (active2 & 0x92e2ffd3ffeb7f4fL) != 0L || (active3 & 0xb0c02ecb7413dbd5L) != 0L || (active4 & 0x82ab267f8ebde3f7L) != 0L || (active5 & 0x2fd961388eefee00L) != 0L || (active6 & 0xfd7dcbf4fff74e30L) != 0L || (active7 & 0xc37f6fc7ffbfffa0L) != 0L || (active8 & 0xffffffffba987fafL) != 0L || (active9 & 0xdff947dfdf87ffffL) != 0L || (active10 & 0xa2fe03cbf3debdffL) != 0L || (active11 & 0x79cfaef02dL) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 4; } return 78; } - if ((active2 & 0x400000000000000L) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) return 80; - if ((active0 & 0x1c001e8cc00L) != 0L || (active1 & 0x4400000014401L) != 0L || (active2 & 0xa0800000c0000008L) != 0L || (active3 & 0x483f000083ec002L) != 0L || (active4 & 0xcba20240000001c0L) != 0L || (active5 & 0x1100629800087L) != 0L || (active6 & 0x240808100000008cL) != 0L || (active7 & 0x1e400060010000L) != 0L || (active8 & 0x20100L) != 0L || (active9 & 0x1c00103800L) != 0L || (active10 & 0x9012007d05030001L) != 0L || (active11 & 0x21801440L) != 0L) + if ((active0 & 0x1c001e8cc00L) != 0L || (active1 & 0x8800000014401L) != 0L || (active2 & 0x800000c00000010L) != 0L || (active3 & 0x483f000083ec002aL) != 0L || (active4 & 0x7440480000001c00L) != 0L || (active5 & 0x2200c5300010f9L) != 0L || (active6 & 0x202040000002180L) != 0L || (active7 & 0x3c80001800400009L) != 0L || (active8 & 0x4020000L) != 0L || (active9 & 0x380020700000L) != 0L || (active10 & 0x4801f4140c000200L) != 0L || (active11 & 0x8600510240L) != 0L) return 78; return -1; case 5: - if ((active0 & 0xd9c2878e79c02040L) != 0L || (active1 & 0xfff1afffe67e9bfcL) != 0L || (active2 & 0x192e07fd20fc9fa1L) != 0L || (active3 & 0x3909a0e4364834b0L) != 0L || (active4 & 0x87145933f8cbda3fL) != 0L || (active5 & 0x344b09c4147737L) != 0L || (active6 & 0x83b5f72bd37fdc18L) != 0L || (active7 & 0xc61c1dbd000efffeL) != 0L || (active8 & 0xffffffffffdc4433L) != 0L || (active9 & 0xffeffcb84f6da3ffL) != 0L || (active10 & 0xa28bfc0f038f35eL) != 0L || (active11 & 0x1e73efdcL) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) + return 80; + if ((active0 & 0x201821000100a0L) != 0L || (active1 & 0x4000019800000L) != 0L || (active2 & 0x28001f020000cL) != 0L || (active3 & 0x20602088101090d4L) != 0L || (active4 & 0x20000002004004L) != 0L || (active5 & 0x295000002c610800L) != 0L || (active6 & 0x1000010020004830L) != 0L || (active7 & 0xc3400087fc000000L) != 0L || (active8 & 0x2101823L) != 0L || (active9 & 0x74104800000L) != 0L || (active10 & 0x800b10100000L) != 0L || (active11 & 0x8005L) != 0L) + return 78; + if ((active0 & 0xd9c2878e79c02040L) != 0L || (active1 & 0xffe35fffe67e9bfcL) != 0L || (active2 & 0x92e07fd20fcb7f43L) != 0L || (active3 & 0x909a0e4364834b01L) != 0L || (active4 & 0xe28b267f8cbda3f3L) != 0L || (active5 & 0x6896138828ee6f0L) != 0L || (active6 & 0xed7dcaf4dff70700L) != 0L || (active7 & 0x383f6f4003bfffa0L) != 0L || (active8 & 0xffffffffb888678cL) != 0L || (active9 & 0xdff9709edb47ffffL) != 0L || (active10 & 0xa2ff03c0e3cebdffL) != 0L || (active11 & 0x79cfbf7028L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 5; } return 78; } - if ((active2 & 0x400000000000000L) != 0L) - return 80; - if ((active0 & 0x201821000100a0L) != 0L || (active1 & 0x2000019800000L) != 0L || (active2 & 0x400028001f020006L) != 0L || (active3 & 0x420602088101090dL) != 0L || (active4 & 0x1000000200400L) != 0L || (active5 & 0x814a800001630840L) != 0L || (active6 & 0x40000400800121L) != 0L || (active7 & 0x11e1a0021ff00000L) != 0L || (active8 & 0x1080cL) != 0L || (active9 & 0x3a0824000L) != 0L || (active10 & 0x140002002c40400L) != 0L || (active11 & 0x20L) != 0L) - return 78; return -1; case 6: - if ((active0 & 0x40038e79c02040L) != 0L || (active1 & 0x11a7f8f73c9bfcL) != 0L || (active2 & 0x190007fc20c09fa4L) != 0L || (active3 & 0x390980c430481028L) != 0L || (active4 & 0x3100933f8839a0eL) != 0L || (active5 & 0x304b00c4147736L) != 0L || (active6 & 0x80317600025fd418L) != 0L || (active7 & 0xc41d198107c85f7eL) != 0L || (active8 & 0xfffffffff7dc400bL) != 0L || (active9 & 0xffe7fcbb4f6da3ffL) != 0L || (active10 & 0x288340f000e140L) != 0L || (active11 & 0x12136ff4L) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) + return 80; + if ((active0 & 0xd982840000000000L) != 0L || (active1 & 0xffc0100700420000L) != 0L || (active2 & 0x2e0001063c00003L) != 0L || (active3 & 0x2020060024900L) != 0L || (active4 & 0x808a000004840310L) != 0L || (active5 & 0x80012000400030L) != 0L || (active6 & 0xe1204af448020620L) != 0L || (active7 & 0x10f0201a82000L) != 0L || (active8 & 0x1000086006L) != 0L || (active9 & 0x1000000000000000L) != 0L || (active10 & 0xf20000e0483c00L) != 0L || (active11 & 0x3182002028L) != 0L) + return 78; + if ((active0 & 0x40038e79c02040L) != 0L || (active1 & 0x234ff8f73c9bfcL) != 0L || (active2 & 0x90007fc20c0b7f48L) != 0L || (active3 & 0x90980c4304810281L) != 0L || (active4 & 0x6201267f8839a0e3L) != 0L || (active5 & 0x6096018828ee6c0L) != 0L || (active6 & 0xc5d800097f50100L) != 0L || (active7 & 0x3a3e6041f217dfa0L) != 0L || (active8 & 0xffffffefb8801788L) != 0L || (active9 & 0xcff9769edb47ffffL) != 0L || (active10 & 0xa20d03c0038681ffL) != 0L || (active11 & 0x484dbfd000L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 6; } return 78; } - if ((active2 & 0x400000000000000L) != 0L) - return 80; - if ((active0 & 0xd982840000000000L) != 0L || (active1 & 0xffe0080700420000L) != 0L || (active2 & 0x2e0001063c0001L) != 0L || (active3 & 0x202006002490L) != 0L || (active4 & 0x8404500000484031L) != 0L || (active5 & 0x4000900020001L) != 0L || (active6 & 0x384812bd1200801L) != 0L || (active7 & 0x300043c0806a080L) != 0L || (active8 & 0x8000430L) != 0L || (active9 & 0x8000000000000L) != 0L || (active10 & 0xa003c800038121eL) != 0L || (active11 & 0xc608008L) != 0L) - return 78; return -1; case 7: - if ((active2 & 0x400000000000000L) != 0L) - return 80; - if ((active0 & 0x100000000002040L) != 0L || (active1 & 0x60000008000L) != 0L || (active2 & 0x100068400a00f20L) != 0L || (active3 & 0x101008400001000L) != 0L || (active4 & 0x12000020800L) != 0L || (active5 & 0x400084140030L) != 0L || (active6 & 0x201160000000408L) != 0L || (active7 & 0x400080100081e00L) != 0L || (active8 & 0x1a000001d09c4001L) != 0L || (active9 & 0x40008008000000L) != 0L || (active10 & 0x8014000000100L) != 0L || (active11 & 0x22004L) != 0L) - return 78; - if ((active0 & 0x1040038e79c00000L) != 0L || (active1 & 0xffd1a1fef73c1bfcL) != 0L || (active2 & 0x180c017820409085L) != 0L || (active3 & 0x3808804030480028L) != 0L || (active4 & 0x3100813f881922eL) != 0L || (active5 & 0x300b0040007706L) != 0L || (active6 & 0x80306003825fd010L) != 0L || (active7 & 0xc01d11b807c0417eL) != 0L || (active8 & 0xe5fffffe2740002aL) != 0L || (active9 & 0xffa7fc3b476da3ffL) != 0L || (active10 & 0x20a200f000e05cL) != 0L || (active11 & 0x12114ff0L) != 0L) + if ((active0 & 0x1040038e79c00000L) != 0L || (active1 & 0xffa341fef73c1bfcL) != 0L || (active2 & 0x80c01782040b030bL) != 0L || (active3 & 0x8088040304800281L) != 0L || (active4 & 0x6201027f881922e3L) != 0L || (active5 & 0x6016008000ee0c0L) != 0L || (active6 & 0xc1800e097f40400L) != 0L || (active7 & 0x3a2e6e01f0105fa0L) != 0L || (active8 & 0xfffffc4e80005580L) != 0L || (active9 & 0x4ff8768edb47ffcbL) != 0L || (active10 & 0x828803c00380b9ffL) != 0L || (active11 & 0x48453fc000L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 7; } return 78; } + if ((active2 & 0x4000000000000000L) != 0L) + return 80; + if ((active0 & 0x100000000002040L) != 0L || (active1 & 0xe0000008000L) != 0L || (active2 & 0x100068400a007c40L) != 0L || (active3 & 0x1010084000010000L) != 0L || (active4 & 0x240000208000L) != 0L || (active5 & 0x8001082800600L) != 0L || (active6 & 0x8045800000010100L) != 0L || (active7 & 0x10004002078000L) != 0L || (active8 & 0x3a138800208L) != 0L || (active9 & 0x8001001000000034L) != 0L || (active10 & 0x2005000000060000L) != 0L || (active11 & 0x8801000L) != 0L) + return 78; return -1; case 8: - if ((active0 & 0x1040018869800000L) != 0L || (active1 & 0xffc121fe07001804L) != 0L || (active2 & 0x100c017820408e85L) != 0L || (active3 & 0x2000800010080000L) != 0L || (active4 & 0x100813f8001200L) != 0L || (active5 & 0x30000040007706L) != 0L || (active6 & 0x10040382001010L) != 0L || (active7 & 0x1d013803c04166L) != 0L || (active8 & 0xf59ffff62758002aL) != 0L || (active9 & 0x87a6081b016583ffL) != 0L || (active10 & 0x202000f000c05cL) != 0L || (active11 & 0x121047d0L) != 0L) + if ((active0 & 0x1040018869800000L) != 0L || (active1 & 0xff8245fe07001804L) != 0L || (active2 & 0xc0178204087a0bL) != 0L || (active3 & 0x8000100800001L) != 0L || (active4 & 0x201027f80012002L) != 0L || (active5 & 0x6000008000ee0c0L) != 0L || (active6 & 0x40100e080040400L) != 0L || (active7 & 0x3a0c4e00f0105980L) != 0L || (active8 & 0x3fffec4eb0005400L) != 0L || (active9 & 0x4c103602cb07ffebL) != 0L || (active10 & 0x808003c00300b90fL) != 0L || (active11 & 0x48411f4000L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 8; } return 78; } - if ((active0 & 0x20610400000L) != 0L || (active1 & 0x108000f03c03f8L) != 0L || (active2 & 0x800000000001000L) != 0L || (active3 & 0x1808004020400028L) != 0L || (active4 & 0x30000000081802eL) != 0L || (active5 & 0xb0000000000L) != 0L || (active6 & 0x80206000005fc000L) != 0L || (active7 & 0xc000108004000018L) != 0L || (active8 & 0x60000800000000L) != 0L || (active9 & 0x7801f42046082000L) != 0L || (active10 & 0x820000002000L) != 0L || (active11 & 0x10820L) != 0L) + if ((active0 & 0x20610400000L) != 0L || (active1 & 0x210000f03c03f8L) != 0L || (active2 & 0x8000000000030100L) != 0L || (active3 & 0x8080040204000280L) != 0L || (active4 & 0x60000000081802e1L) != 0L || (active5 & 0x1600000000000L) != 0L || (active6 & 0x818000017f00000L) != 0L || (active7 & 0x22200100000620L) != 0L || (active8 & 0xc000100000000180L) != 0L || (active9 & 0x3e8408c10400000L) != 0L || (active10 & 0x2080000008000f0L) != 0L || (active11 & 0x4208000L) != 0L) return 78; return -1; case 9: - if ((active0 & 0x1040018801800000L) != 0L || (active1 & 0xffc02100c73811f4L) != 0L || (active2 & 0x100c006800000e05L) != 0L || (active3 & 0x3000800010080000L) != 0L || (active4 & 0x2000000e0011200L) != 0L || (active5 & 0x30000000003706L) != 0L || (active6 & 0x403821f8000L) != 0L || (active7 & 0x15003803c00044L) != 0L || (active8 & 0xf59ffff22058002aL) != 0L || (active9 & 0xc7a7e013046103ffL) != 0L || (active10 & 0x200000f000c01cL) != 0L || (active11 & 0x100042d0L) != 0L) + if ((active0 & 0x468000000L) != 0L || (active1 & 0x200fe00000a00L) != 0L || (active2 & 0x110204080200L) != 0L || (active4 & 0x201027180000000L) != 0L || (active5 & 0x400800080000L) != 0L || (active6 & 0x400000000040400L) != 0L || (active7 & 0x1000400000104880L) != 0L || (active8 & 0x80e00000000L) != 0L || (active9 & 0x10100209000000L) != 0L || (active10 & 0x80000000008020L) != 0L || (active11 & 0x840140000L) != 0L) + return 78; + if ((active0 & 0x1040018801800000L) != 0L || (active1 & 0xff804500c73811f4L) != 0L || (active2 & 0xc006800000780bL) != 0L || (active3 & 0x8000100800001L) != 0L || (active4 & 0x4000000e00112003L) != 0L || (active5 & 0x60000000006e0c0L) != 0L || (active6 & 0x100e087e00000L) != 0L || (active7 & 0x2a0c0e00f0001100L) != 0L || (active8 & 0x3fffe440b0005400L) != 0L || (active9 & 0x4fc02608c207ffebL) != 0L || (active10 & 0x800003c00300398fL) != 0L || (active11 & 0x40010b4000L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 9; } return 78; } - if ((active0 & 0x468000000L) != 0L || (active1 & 0x100fe00000a00L) != 0L || (active2 & 0x11020408080L) != 0L || (active4 & 0x10081318000000L) != 0L || (active5 & 0x20040004000L) != 0L || (active6 & 0x10000000001010L) != 0L || (active7 & 0x8010000004122L) != 0L || (active8 & 0x407000000L) != 0L || (active9 & 0x1000080801048000L) != 0L || (active10 & 0x200000000040L) != 0L || (active11 & 0x2100500L) != 0L) - return 78; return -1; case 10: - if ((active0 & 0x1000010801800000L) != 0L || (active1 & 0xf7c02074863811f0L) != 0L || (active2 & 0x100c002000000e01L) != 0L || (active3 & 0x2000800000000000L) != 0L || (active4 & 0x200000010011000L) != 0L || (active5 & 0x30000000000706L) != 0L || (active6 & 0x403801f8000L) != 0L || (active7 & 0x14003803c00040L) != 0L || (active8 & 0x951fffe000580022L) != 0L || (active9 & 0x4027e000042001ffL) != 0L || (active10 & 0x200000f000801cL) != 0L || (active11 & 0x10000050L) != 0L) + if ((active0 & 0x1000010801800000L) != 0L || (active1 & 0xef804474863811f0L) != 0L || (active2 & 0xc0020000007803L) != 0L || (active3 & 0x8000000000001L) != 0L || (active4 & 0x4000000100110002L) != 0L || (active5 & 0x60000000000e0c0L) != 0L || (active6 & 0x100e007e00000L) != 0L || (active7 & 0x28080e00f0001000L) != 0L || (active8 & 0x3fffc000b0004400L) != 0L || (active9 & 0x4fc000084003ff2aL) != 0L || (active10 & 0x800003c002003880L) != 0L || (active11 & 0x4000014000L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 10; } return 78; } - if ((active0 & 0x40008000000000L) != 0L || (active1 & 0x800018041000004L) != 0L || (active2 & 0x4800000004L) != 0L || (active3 & 0x1000000010080000L) != 0L || (active4 & 0xe0000200L) != 0L || (active5 & 0x3000L) != 0L || (active6 & 0x2000000L) != 0L || (active7 & 0x1000000000004L) != 0L || (active8 & 0x6080001220000008L) != 0L || (active9 & 0x8780001300410200L) != 0L || (active10 & 0x4000L) != 0L || (active11 & 0x4280L) != 0L) + if ((active0 & 0x40008000000000L) != 0L || (active1 & 0x1000018041000004L) != 0L || (active2 & 0x48000000008L) != 0L || (active3 & 0x100800000L) != 0L || (active4 & 0xe00002001L) != 0L || (active5 & 0x60000L) != 0L || (active6 & 0x80000000L) != 0L || (active7 & 0x204000000000100L) != 0L || (active8 & 0x244000001000L) != 0L || (active9 & 0x2600820400c1L) != 0L || (active10 & 0x100010fL) != 0L || (active11 & 0x10a0000L) != 0L) return 78; return -1; case 11: - if ((active0 & 0x10801800000L) != 0L || (active1 & 0x91402074863801f0L) != 0L || (active2 & 0x100c002000000e00L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000090000000L) != 0L || (active5 & 0x10000000000304L) != 0L || (active6 & 0x401801f8000L) != 0L || (active7 & 0x4002803c00040L) != 0L || (active8 & 0x901fffe000080000L) != 0L || (active9 & 0x4727c0000420013eL) != 0L || (active10 & 0xf0008014L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000000000000L) != 0L || (active1 & 0xcd00000000001000L) != 0L || (active2 & 0x2L) != 0L || (active3 & 0x8000000000000L) != 0L || (active4 & 0x110000L) != 0L || (active5 & 0x400000000008040L) != 0L || (active6 & 0x8000000000L) != 0L || (active7 & 0x2008040000000000L) != 0L || (active8 & 0xa0004400L) != 0L || (active9 & 0x4000000001820aL) != 0L || (active10 & 0x8000000000001000L) != 0L || (active11 & 0x4000L) != 0L) + return 78; + if ((active0 & 0x10801800000L) != 0L || (active1 & 0x22804474863801f0L) != 0L || (active2 & 0xc0020000007801L) != 0L || (active3 & 0x1L) != 0L || (active4 & 0x4000000900000002L) != 0L || (active5 & 0x200000000006080L) != 0L || (active6 & 0x1006007e00000L) != 0L || (active7 & 0x8000a00f0001000L) != 0L || (active8 & 0x3fffc00010000000L) != 0L || (active9 & 0x4f80000840027d20L) != 0L || (active10 & 0x3c00200288eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 11; } return 78; } - if ((active0 & 0x1000000000000000L) != 0L || (active1 & 0x6680000000001000L) != 0L || (active2 & 0x1L) != 0L || (active3 & 0x800000000000L) != 0L || (active4 & 0x11000L) != 0L || (active5 & 0x20000000000402L) != 0L || (active6 & 0x200000000L) != 0L || (active7 & 0x10001000000000L) != 0L || (active8 & 0x500000000500022L) != 0L || (active9 & 0x2000000000c1L) != 0L || (active10 & 0x20000000000008L) != 0L || (active11 & 0x10L) != 0L) - return 78; return -1; case 12: - if ((active0 & 0x800000000L) != 0L || (active1 & 0x200000000000L) != 0L || (active2 & 0x1000002000000200L) != 0L || (active4 & 0x10000000L) != 0L || (active8 & 0x1000000000080000L) != 0L || (active9 & 0x2400000000108L) != 0L || (active10 & 0x8000L) != 0L) - return 78; - if ((active0 & 0x10001800000L) != 0L || (active1 & 0xd1400074863801f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000080000000L) != 0L || (active5 & 0x10000000000304L) != 0L || (active6 & 0x401801f8000L) != 0L || (active7 & 0x4002803c00040L) != 0L || (active8 & 0x801fffe000000000L) != 0L || (active9 & 0x4725800004200036L) != 0L || (active10 & 0xf0000014L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x10001800000L) != 0L || (active1 & 0xa2800474863801f0L) != 0L || (active2 & 0xc0000000007001L) != 0L || (active4 & 0x4000000800000002L) != 0L || (active5 & 0x200000000006080L) != 0L || (active6 & 0x1006007e00000L) != 0L || (active7 & 0x8000a00f0001000L) != 0L || (active8 & 0x3fffc00000000000L) != 0L || (active9 & 0x4b00000840006d00L) != 0L || (active10 & 0x3c00000288eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 12; return 78; } + if ((active0 & 0x800000000L) != 0L || (active1 & 0x400000000000L) != 0L || (active2 & 0x20000000800L) != 0L || (active3 & 0x1L) != 0L || (active4 & 0x100000000L) != 0L || (active8 & 0x10000000L) != 0L || (active9 & 0x480000000021020L) != 0L || (active10 & 0x2000000L) != 0L) + return 78; return -1; case 13: - if ((active0 & 0x10001800000L) != 0L || (active1 & 0xc1400074862801f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active5 & 0x10000000000204L) != 0L || (active6 & 0x1801e0000L) != 0L || (active7 & 0x803c00000L) != 0L || (active8 & 0x801fffe000000000L) != 0L || (active9 & 0x4725000004200012L) != 0L || (active10 & 0xf0000004L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x10001800000L) != 0L || (active1 & 0x82800474862801f0L) != 0L || (active2 & 0xc0000000003001L) != 0L || (active5 & 0x200000000004080L) != 0L || (active6 & 0x6007800000L) != 0L || (active7 & 0x200f0000000L) != 0L || (active8 & 0x3fffc00000000000L) != 0L || (active9 & 0x4a00000840002500L) != 0L || (active10 & 0x3c00000088eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 13; return 78; } - if ((active1 & 0x1000000000100000L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000080000000L) != 0L || (active5 & 0x100L) != 0L || (active6 & 0x40000018000L) != 0L || (active7 & 0x4002000000040L) != 0L || (active9 & 0x800000000024L) != 0L || (active10 & 0x10L) != 0L) + if ((active1 & 0x2000000000100000L) != 0L || (active2 & 0x4000L) != 0L || (active4 & 0x4000000800000002L) != 0L || (active5 & 0x2000L) != 0L || (active6 & 0x1000000600000L) != 0L || (active7 & 0x800080000001000L) != 0L || (active9 & 0x100000000004800L) != 0L || (active10 & 0x2000L) != 0L) return 78; return -1; case 14: - if ((active0 & 0x1800000L) != 0L || (active1 & 0xc1000050862800f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active5 & 0x10000000000200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x3400000L) != 0L || (active8 & 0x8017ffe000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x10000000000L) != 0L || (active1 & 0x80042400000100L) != 0L || (active5 & 0x80L) != 0L || (active6 & 0x6000000000L) != 0L || (active7 & 0x20020000000L) != 0L || (active8 & 0x1000000000000000L) != 0L || (active9 & 0x4a00000840002000L) != 0L || (active10 & 0x880L) != 0L) + return 78; + if ((active0 & 0x1800000L) != 0L || (active1 & 0x82000050862800f0L) != 0L || (active2 & 0xc0000000003001L) != 0L || (active5 & 0x200000000004000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0xd0000000L) != 0L || (active8 & 0x2fffc00000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 14; return 78; } - if ((active0 & 0x10000000000L) != 0L || (active1 & 0x40002400000100L) != 0L || (active5 & 0x4L) != 0L || (active6 & 0x180000000L) != 0L || (active7 & 0x800800000L) != 0L || (active8 & 0x8000000000000L) != 0L || (active9 & 0x4025000004200010L) != 0L || (active10 & 0x4L) != 0L) - return 78; return -1; case 15: - if ((active0 & 0x800000L) != 0L || (active1 & 0x86200010L) != 0L || (active2 & 0xc000000000000L) != 0L || (active8 & 0x1001e000000000L) != 0L) + if ((active0 & 0x800000L) != 0L || (active1 & 0x86200010L) != 0L || (active2 & 0xc0000000000000L) != 0L || (active8 & 0x2003c00000000000L) != 0L) return 78; - if ((active0 & 0x1000000L) != 0L || (active1 & 0xc1000050000800e0L) != 0L || (active2 & 0xc00L) != 0L || (active5 & 0x10000000000200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x3400000L) != 0L || (active8 & 0x8007fe0000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x82000050000800e0L) != 0L || (active2 & 0x3001L) != 0L || (active5 & 0x200000000004000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0xd0000000L) != 0L || (active8 & 0xffc000000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 15; } return 78; } return -1; case 16: - if ((active1 & 0x4000004000080000L) != 0L || (active5 & 0x10000000000000L) != 0L || (active7 & 0x2000000L) != 0L || (active8 & 0x70e0000000000L) != 0L) - return 78; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000010040000e0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x8000f1c000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000010040000e0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x1e3800000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 16; } return 78; } + if ((active1 & 0x8000004000080000L) != 0L || (active5 & 0x200000000000000L) != 0L || (active7 & 0x80000000L) != 0L || (active8 & 0xe1c000000000000L) != 0L) + return 78; return -1; case 17: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000000040000a0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x8002bdc000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000000040000a0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x57b800000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 17; return 78; } - if ((active1 & 0x1000000040L) != 0L || (active8 & 0x400000000000L) != 0L) + if ((active1 & 0x1000000040L) != 0L || (active8 & 0x80000000000000L) != 0L) return 78; return -1; case 18: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000000040000a0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x20dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active8 & 0x160000000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x2L) != 0L) + return 78; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000000040000a0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x41b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 18; } return 78; } - if ((active8 & 0x8000b00000000000L) != 0L || (active9 & 0x100000000000002L) != 0L) - return 78; return -1; case 19: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x8100000004000020L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1000000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x80L) != 0L || (active5 & 0x4000L) != 0L || (active7 & 0x10000000L) != 0L) + return 78; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x200000004000020L) != 0L || (active2 & 0x80000000003001L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x40000000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 19; return 78; } - if ((active1 & 0x80L) != 0L || (active5 & 0x200L) != 0L || (active7 & 0x400000L) != 0L) - return 78; return -1; case 20: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0xc00L) != 0L || (active6 & 0x1e0000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x3001L) != 0L || (active6 & 0x7800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 20; return 78; } - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020L) != 0L || (active2 & 0x8000000000000L) != 0L || (active7 & 0x1000000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020L) != 0L || (active2 & 0x80000000000000L) != 0L || (active7 & 0x40000000L) != 0L) return 78; return -1; case 21: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x1e0000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x90000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active2 & 0x1000L) != 0L || (active10 & 0x18000000004L) != 0L) + return 78; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x7800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x24000000008L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 21; return 78; } - if ((active2 & 0x400L) != 0L || (active9 & 0x200000000000000L) != 0L || (active10 & 0x60000000L) != 0L) - return 78; return -1; case 22: - if ((active6 & 0x80000L) != 0L) - return 78; - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x160000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x90000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x5800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x24000000008L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 22; return 78; } + if ((active6 & 0x2000000L) != 0L) + return 78; return -1; case 23: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x160000L) != 0L || (active8 & 0x22d8000000000L) != 0L || (active10 & 0x10000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x5800000L) != 0L || (active8 & 0x45b000000000000L) != 0L || (active10 & 0x4000000000L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 23; return 78; } - if ((active8 & 0x4000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x80000000L) != 0L) + if ((active8 & 0x800000000000L) != 0L || (active10 & 0x20000000008L) != 0L) return 78; return -1; case 24: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x60000L) != 0L || (active8 & 0x22d8000000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active6 & 0x4000000L) != 0L || (active10 & 0x4000000000L) != 0L) + return 78; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x1800000L) != 0L || (active8 & 0x45b000000000000L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 24; return 78; } - if ((active6 & 0x100000L) != 0L || (active10 & 0x10000000L) != 0L) - return 78; return -1; case 25: - if ((active6 & 0x60000L) != 0L || (active8 & 0x2018000000000L) != 0L || (active11 & 0x40L) != 0L) + if ((active6 & 0x1800000L) != 0L || (active8 & 0x403000000000000L) != 0L || (active11 & 0x10000L) != 0L) return 78; - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active8 & 0x2c0000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active8 & 0x58000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 25; return 78; } return -1; case 26: - if ((active2 & 0x800L) != 0L || (active8 & 0xc0000000000L) != 0L) - return 78; - if ((active1 & 0x8100000000000000L) != 0L || (active8 & 0x200000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active8 & 0x40000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 26; return 78; } + if ((active2 & 0x2000L) != 0L || (active8 & 0x18000000000000L) != 0L) + return 78; return -1; case 27: - if ((active1 & 0x8100000000000000L) != 0L || (active8 & 0x200000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active8 & 0x40000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 27; return 78; } return -1; case 28: - if ((active1 & 0x8100000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active8 & 0x40000000000000L) != 0L) + return 78; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 28; return 78; } - if ((active8 & 0x200000000000L) != 0L) - return 78; return -1; case 29: - if ((active1 & 0x8100000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 29; return 78; } return -1; case 30: - if ((active1 & 0x8000000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 30; return 78; } - if ((active1 & 0x100000000000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L) return 78; return -1; case 31: - if ((active11 & 0x10000000L) != 0L) + if ((active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 31; return 78; } - if ((active1 & 0x8000000000000000L) != 0L) + if ((active2 & 0x1L) != 0L) return 78; return -1; case 32: - if ((active11 & 0x10000000L) != 0L) + if ((active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 803; + jjmatchedKind = 814; jjmatchedPos = 32; return 78; } @@ -16767,146 +16867,147 @@ private final int jjMoveStringLiteralDfa0_3() switch(curChar) { case 33: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L); case 34: - return jjStartNfaWithStates_3(0, 780, 79); + return jjStartNfaWithStates_3(0, 791, 79); case 36: - return jjStartNfaWithStates_3(0, 783, 78); + return jjStartNfaWithStates_3(0, 794, 78); case 37: - return jjStopAtPos(0, 775); + return jjStopAtPos(0, 786); case 39: - return jjStartNfaWithStates_3(0, 779, 58); + return jjStartNfaWithStates_3(0, 790, 58); case 40: - return jjStopAtPos(0, 749); + return jjStopAtPos(0, 759); case 41: - return jjStopAtPos(0, 750); + return jjStopAtPos(0, 760); case 42: - jjmatchedKind = 773; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000L); + jjmatchedKind = 784; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); case 43: - return jjStopAtPos(0, 771); + return jjStopAtPos(0, 781); case 44: - return jjStopAtPos(0, 761); + return jjStopAtPos(0, 771); case 45: - return jjStartNfaWithStates_3(0, 772, 11); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L); case 46: - jjmatchedKind = 760; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L); + jjmatchedKind = 770; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L); case 47: - jjmatchedKind = 774; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2400000L); + jjmatchedKind = 785; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1200000000L); case 58: - jjmatchedKind = 766; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L); + jjmatchedKind = 776; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 59: - return jjStopAtPos(0, 759); + return jjStopAtPos(0, 769); case 60: - jjmatchedKind = 764; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000000000L, 0x2L); + jjmatchedKind = 774; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa00L); case 61: - jjmatchedKind = 762; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200L); + jjmatchedKind = 772; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); case 62: - jjmatchedKind = 763; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1L); + jjmatchedKind = 773; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L); case 63: - return jjStopAtPos(0, 765); + return jjStopAtPos(0, 775); case 91: - return jjStopAtPos(0, 757); + return jjStopAtPos(0, 767); case 93: - return jjStopAtPos(0, 758); + return jjStopAtPos(0, 768); case 94: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 793); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_3(0x1ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8800030L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x1ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x220000c000L, 0x0L); case 66: case 98: - return jjMoveStringLiteralDfa1_3(0x7ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x7ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000L, 0x0L); case 67: case 99: jjmatchedKind = 51; - return jjMoveStringLiteralDfa1_3(0xfff0000000000000L, 0xffffffffffffffffL, 0xfL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x500180L, 0x0L); + return jjMoveStringLiteralDfa1_3(0xfff0000000000000L, 0xffffffffffffffffL, 0x1fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140060000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0xffffffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0xffffffffffffe0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0xfff0000000000000L, 0x3fffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0xff00000000000000L, 0x3ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L, 0x0L); case 70: case 102: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0xfffffc000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0xfffffc0000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 71: case 103: - jjmatchedKind = 228; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x3ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + jjmatchedKind = 232; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x3ffe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 72: case 104: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0xfc000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0xfc0000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0xff00000000000000L, 0xffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x5002L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0xf000000000000000L, 0xfffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1400800L, 0x0L); case 74: case 106: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x3ff000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x7ff0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: - jjmatchedKind = 290; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x3800000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); + jjmatchedKind = 295; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x70000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xfffffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0x1L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L, 0x0L); case 77: case 109: - jjmatchedKind = 316; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0xfffffffL, 0x0L, 0x0L, 0x100L, 0x0L, 0x0L, 0x10000000L, 0x0L); + jjmatchedKind = 321; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1fffffffcL, 0x0L, 0x0L, 0x20000L, 0x0L, 0x0L, 0x4000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffffe00000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 79: case 111: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff8000000000000L, 0x1fffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xff00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffffffffe000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x22000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffffffffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8800000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x380000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfc00000000000000L, 0x7ffffffffffL, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffffffffffffL, 0x0L, 0x0L, 0x0L, 0x1000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0xfffffffffffffeffL, 0x3ffffffffL, 0x0L, 0x2280000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffe000000000000L, 0xfffffffffffdffffL, 0x7ffffffffffL, 0x0L, 0x8a0000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffffffc00000000L, 0xfffL, 0x20000004L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0x3fffffL, 0x8000001000L, 0x0L); case 85: case 117: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffff000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffc00000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7ff000000000L, 0x400L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffc00000000000L, 0x100000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1fff800000000000L, 0x40L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfe00000000000000L, 0x1007fL, 0x0L); case 88: case 120: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000000000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80L, 0x0L); case 89: case 121: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x300L, 0x0L); case 90: case 122: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L, 0x0L); case 123: - return jjStartNfaWithStates_3(0, 755, 77); + return jjStartNfaWithStates_3(0, 765, 77); case 124: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 125: - return jjStopAtPos(0, 756); + return jjStopAtPos(0, 766); default : return jjMoveNfa_3(0, 0); } @@ -16921,128 +17022,130 @@ private final int jjMoveStringLiteralDfa1_3(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x2000000L) != 0L) + if ((active12 & 0x1000000000L) != 0L) { - jjmatchedKind = 793; + jjmatchedKind = 804; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x400000L); + return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x200000000L); case 46: - if ((active12 & 0x400L) != 0L) - return jjStopAtPos(1, 778); + if ((active12 & 0x200000L) != 0L) + return jjStopAtPos(1, 789); break; case 47: - if ((active12 & 0x800000L) != 0L) - return jjStopAtPos(1, 791); + if ((active12 & 0x400000000L) != 0L) + return jjStopAtPos(1, 802); break; case 58: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); + if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; case 61: - if ((active11 & 0x8000000000000000L) != 0L) - return jjStopAtPos(1, 767); - else if ((active12 & 0x1L) != 0L) - return jjStopAtPos(1, 768); - else if ((active12 & 0x4L) != 0L) - return jjStopAtPos(1, 770); + if ((active12 & 0x200L) != 0L) + return jjStopAtPos(1, 777); + else if ((active12 & 0x400L) != 0L) + return jjStopAtPos(1, 778); + else if ((active12 & 0x1000L) != 0L) + return jjStopAtPos(1, 780); break; case 62: - if ((active12 & 0x2L) != 0L) - return jjStopAtPos(1, 769); - else if ((active12 & 0x200L) != 0L) - return jjStopAtPos(1, 777); + if ((active12 & 0x800L) != 0L) + return jjStopAtPos(1, 779); + else if ((active12 & 0x8000L) != 0L) + return jjStopAtPos(1, 783); + else if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); break; case 65: case 97: - return jjMoveStringLiteralDfa2_3(active0, 0x1ff0000000000000L, active1, 0L, active2, 0x10000000007ff0L, active3, 0x4000000004000L, active4, 0xe0001fc001000000L, active5, 0x1f000001fL, active6, 0xc0000001fffe000L, active7, 0x180000000000L, active8, 0L, active9, 0x1c00000000L, active10, 0xff000000000L, active11, 0x10022788L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x1ff0000000000000L, active1, 0L, active2, 0x10000000007ffe0L, active3, 0x40000000040000L, active4, 0x3f80010000000L, active5, 0x3e000003fcL, active6, 0x7fff80000L, active7, 0x3e000000000003L, active8, 0L, active9, 0x380000000000L, active10, 0x3fc00000000000L, active11, 0x40089e2000L, active12, 0L); case 66: case 98: - return jjMoveStringLiteralDfa2_3(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_3(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x70000600000000L, active6, 0L, active7, 0x3fe00000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0xe0000c000000000L, active6, 0L, active7, 0x7fc0000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L, active12, 0L); case 68: case 100: - return jjMoveStringLiteralDfa2_3(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x1000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_3(active0, 0xe00007e000000000L, active1, 0L, active2, 0x3fffff8000L, active3, 0x1e000008000L, active4, 0x3e03800000000L, active5, 0x3800000fe0L, active6, 0xf000000fe0000000L, active7, 0xffc000001fffffffL, active8, 0xffL, active9, 0x2000000000L, active10, 0xc003b00000001000L, active11, 0x4200004L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0xe00007e000000000L, active1, 0L, active2, 0x3fffff80000L, active3, 0x1e0000080000L, active4, 0x7c070000000000L, active5, 0x7000001fc00L, active6, 0x3f800000000L, active7, 0x80000007fffffffcL, active8, 0x1ffffL, active9, 0x400000000000L, active10, 0xec0000000400000L, active11, 0x1080001300L, active12, 0L); case 70: case 102: - if ((active5 & 0x80000000000000L) != 0L) + if ((active5 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 375; + jjmatchedKind = 380; jjmatchedPos = 1; } - else if ((active11 & 0x2L) != 0L) - return jjStartNfaWithStates_3(1, 705, 78); - return jjMoveStringLiteralDfa2_3(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L, active12, 0L); + else if ((active11 & 0x800L) != 0L) + return jjStartNfaWithStates_3(1, 715, 78); + return jjMoveStringLiteralDfa2_3(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000L, active12, 0L); case 71: case 103: - return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x200000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0x7ffL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200L, active9, 0xc000000000L, active10, 0x1c000000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0x7ffL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x40000L, active9, 0x1800000000000L, active10, 0x7000000000000000L, active11, 0L, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_3(active0, 0x380000000000L, active1, 0L, active2, 0x7c000000000L, active3, 0x80000000f0000L, active4, 0x3c000000000000L, active5, 0x7f000L, active6, 0x1000000000L, active7, 0x20000000L, active8, 0x1d00L, active9, 0xfff0000000000L, active10, 0x3e0400000000000L, active11, 0x40000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x380000000000L, active1, 0L, active2, 0x7c0000000000L, active3, 0x80000000f00000L, active4, 0x780000000000000L, active5, 0xfe0000L, active6, 0x40000000000L, active7, 0x800000000L, active8, 0x3a0000L, active9, 0x1ffe000000000000L, active10, 0x8100000000000000L, active11, 0x1000000fL, active12, 0L); case 75: case 107: - return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 76: case 108: - return jjMoveStringLiteralDfa2_3(active0, 0x40000001f000L, active1, 0x7800L, active2, 0x60000000000000L, active3, 0x400020000300000L, active4, 0L, active5, 0x200000000000000L, active6, 0xe000000000L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x40000001f000L, active1, 0x7800L, active2, 0x600000000000000L, active3, 0x4000200003000000L, active4, 0L, active5, 0x4000000000000000L, active6, 0x380000000000L, active7, 0x1000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 77: case 109: - return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0x80000000000000L, active3, 0x7800000000000000L, active4, 0L, active5, 0x400000000000000L, active6, 0L, active7, 0L, active8, 0x4000L, active9, 0L, active10, 0x2000000000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0x8000000000000000L, active4, 0x7L, active5, 0x8000000000000000L, active6, 0L, active7, 0L, active8, 0x800000L, active9, 0L, active10, 0L, active11, 0x80L, active12, 0L); case 78: case 110: - if ((active3 & 0x8000000000000000L) != 0L) + if ((active4 & 0x8L) != 0L) { - jjmatchedKind = 255; + jjmatchedKind = 259; jjmatchedPos = 1; } - else if ((active4 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(1, 310, 78); - else if ((active5 & 0x800000000000000L) != 0L) + else if ((active4 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_3(1, 315, 78); + else if ((active6 & 0x1L) != 0L) { - jjmatchedKind = 379; + jjmatchedKind = 384; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0x60000L, active1, 0L, active2, 0x1f00000000000000L, active3, 0L, active4, 0xfffffL, active5, 0x3000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7fe000L, active11, 0x8005800L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x60000L, active1, 0L, active2, 0xf000000000000000L, active3, 0x1L, active4, 0xfffff0L, active5, 0L, active6, 0x6L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1ff800000L, active11, 0x2001600000L, active12, 0L); case 79: case 111: - if ((active3 & 0x40000000000L) != 0L) + if ((active3 & 0x400000000000L) != 0L) { - jjmatchedKind = 234; + jjmatchedKind = 238; jjmatchedPos = 1; } - else if ((active5 & 0x4000000000L) != 0L) + else if ((active5 & 0x80000000000L) != 0L) { - jjmatchedKind = 358; + jjmatchedKind = 363; jjmatchedPos = 1; } - else if ((active9 & 0x10000000000000L) != 0L) + else if ((active9 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 628; + jjmatchedKind = 637; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0x1800000000000L, active1, 0x1ffffffff8000L, active2, 0xf80000000000L, active3, 0xf008000fc00000L, active4, 0xf80000002000000L, active5, 0x78003f80000L, active6, 0xf0000000000L, active7, 0x3ff80000000L, active8, 0x18000L, active9, 0x20000000000000L, active10, 0x400000000000000L, active11, 0x20518001L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x1800000000000L, active1, 0x3ffffffff8000L, active2, 0xf800000000000L, active3, 0xf008000fc000000L, active4, 0xf000000020000000L, active5, 0xf0007f000001L, active6, 0x3c00000000000L, active7, 0xffe000000000L, active8, 0x3000000L, active9, 0x4000000000000000L, active10, 0L, active11, 0x8146000410L, active12, 0L); case 80: case 112: - return jjMoveStringLiteralDfa2_3(active0, 0x80000L, active1, 0L, active2, 0x2000000000000000L, active3, 0L, active4, 0L, active5, 0xc000000000000000L, active6, 0x1L, active7, 0L, active8, 0x1e0000L, active9, 0L, active10, 0x3800000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x2L, active4, 0L, active5, 0L, active6, 0x38L, active7, 0L, active8, 0x3c000000L, active9, 0L, active10, 0xe00000000L, active11, 0L, active12, 0L); case 81: case 113: - return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xffffffffffe00000L, active9, 0x7ffL, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xffffffffc0000000L, active9, 0xfffffL, active10, 0L, active11, 0L, active12, 0L); case 82: case 114: - if ((active6 & 0x2L) != 0L) + if ((active6 & 0x40L) != 0L) { - jjmatchedKind = 385; + jjmatchedKind = 390; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0x2000001f00000L, active1, 0x6000000000000L, active2, 0x8001000000000000L, active3, 0x3f001f0000000L, active4, 0L, active5, 0L, active6, 0x3ff0000000001cL, active7, 0L, active8, 0L, active9, 0xffc0000000000000L, active10, 0x18000000000001ffL, active11, 0x40L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x2000001f00000L, active1, 0xc000000000000L, active2, 0x10000000000000L, active3, 0x3f001f00000008L, active4, 0L, active5, 0L, active6, 0xffc000000000780L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x7ffffL, active11, 0x10060L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -17050,12 +17153,12 @@ else if ((active9 & 0x10000000000000L) != 0L) jjmatchedKind = 25; jjmatchedPos = 1; } - else if ((active4 & 0x100000L) != 0L) + else if ((active4 & 0x1000000L) != 0L) { - jjmatchedKind = 276; + jjmatchedKind = 280; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0x7c000000L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0x3fce00000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1fc000000L, active11, 0x800000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x7c000000L, active1, 0L, active2, 0L, active3, 0x10L, active4, 0x7fce000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7f000000000L, active11, 0x200000000L, active12, 0L); case 84: case 116: if ((active0 & 0x80000000L) != 0L) @@ -17063,24 +17166,24 @@ else if ((active4 & 0x100000L) != 0L) jjmatchedKind = 31; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0x700000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x180000000000L, active6, 0x20L, active7, 0L, active8, 0L, active9, 0x1ff800L, active10, 0xe00000000L, active11, 0x2000020L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x700000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0x800L, active7, 0L, active8, 0L, active9, 0x3ff00000L, active10, 0x380000000000L, active11, 0x800008000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_3(active0, 0x800000000L, active1, 0xfff8000000000000L, active2, 0x7L, active3, 0xe00000000L, active4, 0L, active5, 0x7e0000c000000L, active6, 0x3c00000000001c0L, active7, 0x40000000000L, active8, 0L, active9, 0x3fe00000L, active10, 0x600L, active11, 0x1000000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x800000000L, active1, 0xfff0000000000000L, active2, 0xfL, active3, 0xe000000000L, active4, 0L, active5, 0xfc000180000000L, active6, 0xf000000000007000L, active7, 0x1000000000000L, active8, 0L, active9, 0x7fc0000000L, active10, 0x180000L, active11, 0x400000000L, active12, 0L); case 86: case 118: - return jjMoveStringLiteralDfa2_3(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0x2L, active4, 0L, active5, 0L, active6, 0x1e00L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0L, active5, 0L, active6, 0x78000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 88: case 120: - return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x3ffcL, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x3ffc0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 89: case 121: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_3(1, 50, 78); - return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0xe000000000008L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000L, active10, 0x800L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0xe0000000000010L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x78000000000L, active10, 0x200000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x100L) != 0L) - return jjStopAtPos(1, 776); + if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); break; default : break; @@ -17099,84 +17202,84 @@ private final int jjMoveStringLiteralDfa2_3(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x400000L) != 0L) - return jjStopAtPos(2, 790); + if ((active12 & 0x200000000L) != 0L) + return jjStopAtPos(2, 801); break; case 65: case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_3(2, 8, 78); - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x9bffL, active2, 0x4000008000L, active3, 0x300030000000L, active4, 0x600000000000L, active5, 0x20L, active6, 0x7380006000000000L, active7, 0x40600000000000L, active8, 0x24000L, active9, 0xffc0000000007800L, active10, 0xc800000004000000L, active11, 0xa080000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x9bffL, active2, 0x40000080000L, active3, 0x3000300000000L, active4, 0xc000000000000L, active5, 0x400L, active6, 0xe000180000000000L, active7, 0x80c000000000001cL, active8, 0x4800000L, active9, 0x8000000000f00000L, active10, 0x10000001ffL, active11, 0x2820000320L, active12, 0L); case 66: case 98: - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x8000000010000L, active2, 0L, active3, 0L, active4, 0x4004000000000L, active5, 0L, active6, 0x40000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000L, active10, 0x2000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x10000000010000L, active2, 0L, active3, 0L, active4, 0x80080000000000L, active5, 0L, active6, 0x1000000000000000L, active7, 0L, active8, 0L, active9, 0x380fc0000000L, active10, 0x800000L, active11, 0L, active12, 0L); case 67: case 99: if ((active0 & 0x4000000L) != 0L) return jjStartNfaWithStates_3(2, 26, 78); - else if ((active2 & 0x10000L) != 0L) + else if ((active2 & 0x100000L) != 0L) { - jjmatchedKind = 144; + jjmatchedKind = 148; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x1100000000e0008L, active3, 0x3dL, active4, 0x780000000000007L, active5, 0x10000000001000L, active6, 0x8000000000000000L, active7, 0x780000000000000L, active8, 0L, active9, 0x8000000L, active10, 0xc000L, active11, 0x988L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x1100000000e00010L, active3, 0x3d0L, active4, 0xf000000000000070L, active5, 0x200000000020000L, active6, 0L, active7, 0x20L, active8, 0xfL, active9, 0x1000000000L, active10, 0x3000000L, active11, 0x262000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) return jjStartNfaWithStates_3(2, 9, 78); else if ((active0 & 0x20000L) != 0L) return jjStartNfaWithStates_3(2, 17, 78); - else if ((active2 & 0x200000000000000L) != 0L) + else if ((active2 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 185; + jjmatchedKind = 189; jjmatchedPos = 2; } - else if ((active5 & 0x80000L) != 0L) + else if ((active5 & 0x1000000L) != 0L) { - jjmatchedKind = 339; + jjmatchedKind = 344; jjmatchedPos = 2; } - else if ((active5 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 377, 78); - else if ((active6 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(2, 397, 78); - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x1c00000000000000L, active3, 0L, active4, 0x8L, active5, 0x300000L, active6, 0x1cL, active7, 0L, active8, 0L, active9, 0x18000L, active10, 0x20800000810000L, active11, 0x1000L, active12, 0L); + else if ((active5 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_3(2, 382, 78); + else if ((active6 & 0x80000L) != 0L) + return jjStartNfaWithStates_3(2, 403, 78); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0xc000000000000000L, active3, 0x1L, active4, 0x80L, active5, 0x6000000L, active6, 0x780L, active7, 0L, active8, 0L, active9, 0x3000000L, active10, 0x8200000204000000L, active11, 0x400000L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_3(2, 20, 78); - else if ((active5 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 380, 78); - return jjMoveStringLiteralDfa3_3(active0, 0x2000008000000L, active1, 0x2000000000400L, active2, 0x20000000000000L, active3, 0x1080000400000c2L, active4, 0L, active5, 0x4000000000000000L, active6, 0x3f00000001e00L, active7, 0x800000000000000L, active8, 0x1c0000L, active9, 0x14000000000L, active10, 0x1f4000f8000201L, active11, 0x1000000L, active12, 0L); + else if ((active6 & 0x2L) != 0L) + return jjStartNfaWithStates_3(2, 385, 78); + return jjMoveStringLiteralDfa3_3(active0, 0x2000008000000L, active1, 0x4000000000400L, active2, 0x200000000000000L, active3, 0x1080000400000c20L, active4, 0L, active5, 0L, active6, 0xfc000000078008L, active7, 0L, active8, 0x38000010L, active9, 0x2800000000000L, active10, 0x7d0003e000080200L, active11, 0x400000000L, active12, 0L); case 70: case 102: - if ((active7 & 0x1L) != 0L) + if ((active7 & 0x40L) != 0L) { - jjmatchedKind = 448; + jjmatchedKind = 454; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x2000000000L, active1, 0L, active2, 0x7f00000L, active3, 0L, active4, 0x800000000000L, active5, 0x100000000000000L, active6, 0L, active7, 0x6L, active8, 0L, active9, 0L, active10, 0xe00000000L, active11, 0x4000010L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x2000000000L, active1, 0L, active2, 0x7f000000L, active3, 0L, active4, 0x10000000000000L, active5, 0x2000000000000000L, active6, 0L, active7, 0xe000000000180L, active8, 0L, active9, 0L, active10, 0x380000000000L, active11, 0x1000004000L, active12, 0L); case 71: case 103: if ((active0 & 0x1000000000L) != 0L) return jjStartNfaWithStates_3(2, 36, 78); - else if ((active4 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(2, 295, 78); - return jjMoveStringLiteralDfa3_3(active0, 0x9c000000000L, active1, 0L, active2, 0x8000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000ff8L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000L, active12, 0L); + else if ((active4 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_3(2, 300, 78); + return jjMoveStringLiteralDfa3_3(active0, 0x9c000000000L, active1, 0L, active2, 0x80000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80003fe00L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000000L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80200000000L, active6, 0x20L, active7, 0x1800000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1004000000000L, active6, 0x800L, active7, 0x300000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 73: case 105: - if ((active6 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(2, 423, 78); - return jjMoveStringLiteralDfa3_3(active0, 0x6000000000000000L, active1, 0L, active2, 0L, active3, 0x400000080000100L, active4, 0x2000030L, active5, 0x400100000000000L, active6, 0x1c000000000000L, active7, 0x40000000L, active8, 0x2000L, active9, 0L, active10, 0x100000010006007eL, active11, 0x40L, active12, 0L); + if ((active6 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_3(2, 429, 78); + return jjMoveStringLiteralDfa3_3(active0, 0x6000000000000000L, active1, 0L, active2, 0L, active3, 0x4000000800001000L, active4, 0x20000300L, active5, 0x8002000000000000L, active6, 0x700000000000000L, active7, 0x1000000000L, active8, 0x400000L, active9, 0L, active10, 0x4001800fc00L, active11, 0x10040L, active12, 0L); case 74: case 106: - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 75: case 107: - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x18000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x300000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L, active12, 0L); case 76: case 108: if ((active0 & 0x1000L) != 0L) @@ -17184,58 +17287,58 @@ else if ((active4 & 0x8000000000L) != 0L) jjmatchedKind = 12; jjmatchedPos = 2; } - else if ((active8 & 0x200000L) != 0L) + else if ((active8 & 0x40000000L) != 0L) { - jjmatchedKind = 533; + jjmatchedKind = 542; jjmatchedPos = 2; } - else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 701, 78); - return jjMoveStringLiteralDfa3_3(active0, 0x30000000006000L, active1, 0x1fe0000L, active2, 0x10000000L, active3, 0x10000200414000L, active4, 0L, active5, 0x2001e00404006000L, active6, 0L, active7, 0x3000000380003000L, active8, 0xffffffffffc00000L, active9, 0x3ffL, active10, 0x7000000000L, active11, 0x54400L, active12, 0L); + else if ((active11 & 0x80L) != 0L) + return jjStartNfaWithStates_3(2, 711, 78); + return jjMoveStringLiteralDfa3_3(active0, 0x30000000006000L, active1, 0x1fe0000L, active2, 0x100000000L, active3, 0x100002004140000L, active4, 0L, active5, 0x3c0080800c0000L, active6, 0x4L, active7, 0xe0000c0000L, active8, 0xffffffff80000060L, active9, 0x7ffffL, active10, 0x1c00000000000L, active11, 0x15100000L, active12, 0L); case 77: case 109: - if ((active9 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(2, 604, 78); - return jjMoveStringLiteralDfa3_3(active0, 0x400L, active1, 0x1000001e000000L, active2, 0x80000000000L, active3, 0x1800000000000000L, active4, 0x20000000000000L, active5, 0x6000038000040L, active6, 0L, active7, 0L, active8, 0x8c00L, active9, 0x7fe2040000000L, active10, 0x400L, active11, 0x400004L, active12, 0L); + if ((active9 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_3(2, 613, 78); + return jjMoveStringLiteralDfa3_3(active0, 0x400L, active1, 0x2000001e000000L, active2, 0x800000000000L, active3, 0x8000000000000000L, active4, 0x400000000000001L, active5, 0xc0000700000800L, active6, 0L, active7, 0L, active8, 0x1180000L, active9, 0xffc408000000000L, active10, 0x100000L, active11, 0x100001000L, active12, 0L); case 78: case 110: - if ((active5 & 0x8000L) != 0L) + if ((active5 & 0x100000L) != 0L) { - jjmatchedKind = 335; + jjmatchedKind = 340; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x8000100000000000L, active1, 0xfffe0000000L, active2, 0xe000020000000L, active3, 0x200006400020000L, active4, 0x1010000000040L, active5, 0x8041c70000L, active6, 0xc00000000000000L, active7, 0x4000040000000000L, active8, 0x100L, active9, 0x8000020000000L, active10, 0x40000000600000L, active11, 0x100001L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x8000100000000000L, active1, 0x1fffe0000000L, active2, 0xe0000200000000L, active3, 0x2000064000200000L, active4, 0x20200000000400L, active5, 0x100838e00000L, active6, 0L, active7, 0x1000000000003L, active8, 0x20080L, active9, 0x1000004000000000L, active10, 0x180000000L, active11, 0x40000401L, active12, 0L); case 79: case 111: - return jjMoveStringLiteralDfa3_3(active0, 0xc00100000000L, active1, 0x4000000006000L, active2, 0x2001000000000000L, active3, 0x3c28100300000L, active4, 0x3fce00080L, active5, 0L, active6, 0x20000000000000L, active7, 0x1e000000000000L, active8, 0x200L, active9, 0L, active10, 0L, active11, 0x20L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0xc00100000000L, active1, 0x8000000006000L, active2, 0x10000000000000L, active3, 0x3c281003000002L, active4, 0x7fce000800L, active5, 0L, active6, 0x800000000000000L, active7, 0x3c00000000000000L, active8, 0x40000L, active9, 0L, active10, 0L, active11, 0x8000L, active12, 0L); case 80: case 112: - if ((active3 & 0x200L) != 0L) + if ((active3 & 0x2000L) != 0L) { - jjmatchedKind = 201; + jjmatchedKind = 205; jjmatchedPos = 2; } - else if ((active3 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 245, 78); - else if ((active4 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(2, 317, 78); - return jjMoveStringLiteralDfa3_3(active0, 0x80000L, active1, 0L, active2, 0x80000040000000L, active3, 0x6000000000000400L, active4, 0x100L, active5, 0L, active6, 0L, active7, 0x800000000000c000L, active8, 0L, active9, 0x20000000000000L, active10, 0x1100800L, active11, 0L, active12, 0L); + else if ((active3 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_3(2, 249, 78); + else if ((active5 & 0x4L) != 0L) + return jjStartNfaWithStates_3(2, 322, 78); + return jjMoveStringLiteralDfa3_3(active0, 0x80000L, active1, 0L, active2, 0x800000400000000L, active3, 0x4000L, active4, 0x1006L, active5, 0L, active6, 0L, active7, 0x300000L, active8, 0x100L, active9, 0x4000000000000000L, active10, 0x440200000L, active11, 0L, active12, 0L); case 81: case 113: - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 82: case 114: - if ((active3 & 0x800000L) != 0L) + if ((active3 & 0x8000000L) != 0L) { - jjmatchedKind = 215; + jjmatchedKind = 219; jjmatchedPos = 2; } - else if ((active6 & 0x20000000L) != 0L) + else if ((active6 & 0x800000000L) != 0L) { - jjmatchedKind = 413; + jjmatchedKind = 419; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x40020001e00000L, active1, 0xffe0300000000000L, active2, 0x8000000180000007L, active3, 0x70c0000L, active4, 0x20000000000L, active5, 0x30002000080L, active6, 0x10fc07fc000L, active7, 0x20000000000000L, active8, 0xeL, active9, 0xe0400L, active10, 0x4003f8000000000L, active11, 0x202000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x40020001e00000L, active1, 0xffc0600000000000L, active2, 0x180000000fL, active3, 0x70c00008L, active4, 0x400000000000L, active5, 0x600040001000L, active6, 0x43f01ff00000L, active7, 0x4000000000000000L, active8, 0x1c00L, active9, 0x1c080000L, active10, 0xfe000000000000L, active11, 0x80800010L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -17243,79 +17346,79 @@ else if ((active6 & 0x20000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x780000030000060L, active1, 0L, active2, 0x40079e00000000L, active3, 0x800000000L, active4, 0xc0000001e00L, active5, 0x800000700L, active6, 0x60007800000L, active7, 0x1f0000L, active8, 0x30L, active9, 0x380000000L, active10, 0x2001000L, active11, 0x20000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x780000030000060L, active1, 0L, active2, 0x40079e000000000L, active3, 0x8000000000L, active4, 0x180000001e000L, active5, 0x1000000e000L, active6, 0x18001e0000000L, active7, 0x7c00000L, active8, 0x6000L, active9, 0x70000000000L, active10, 0x800400000L, active11, 0x8000000L, active12, 0L); case 84: case 116: if ((active0 & 0x200000000000L) != 0L) return jjStartNfaWithStates_3(2, 45, 78); - else if ((active2 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(2, 172, 78); - else if ((active3 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(2, 232, 78); - else if ((active4 & 0x2000L) != 0L) + else if ((active2 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_3(2, 176, 78); + else if ((active3 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_3(2, 236, 78); + else if ((active4 & 0x20000L) != 0L) { - jjmatchedKind = 269; + jjmatchedKind = 273; jjmatchedPos = 2; } - else if ((active5 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(2, 362, 78); - else if ((active6 & 0x40L) != 0L) + else if ((active5 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_3(2, 367, 78); + else if ((active6 & 0x1000L) != 0L) { - jjmatchedKind = 390; + jjmatchedKind = 396; jjmatchedPos = 2; } - else if ((active8 & 0x40L) != 0L) + else if ((active8 & 0x8000L) != 0L) { - jjmatchedKind = 518; + jjmatchedKind = 527; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x1801040e00008880L, active1, 0L, active2, 0x2000001ff0L, active3, 0x8000000b800L, active4, 0xc00010000007c000L, active5, 0x8060000180000807L, active6, 0x18000181L, active7, 0x8000fe00000L, active8, 0x80L, active9, 0L, active10, 0x380000000000000L, active11, 0x20000200L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x1801040e00008880L, active1, 0L, active2, 0x20000007fe0L, active3, 0x8000000b8000L, active4, 0x20000007c0000L, active5, 0xc000030000100f8L, active6, 0x600006030L, active7, 0x100003f8000000L, active8, 0x10000L, active9, 0L, active10, 0L, active11, 0x800008000eL, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x400000000000L, active2, 0x4000200000000000L, active3, 0xc0000008000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3c00000000L, active8, 0x10000L, active9, 0x8000000000L, active10, 0x180L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x800000000000L, active2, 0x2000000000000L, active3, 0xc00000080000004L, active4, 0L, active5, 0L, active6, 0L, active7, 0xf0000000000L, active8, 0x2000000L, active9, 0x1000000000000L, active10, 0x30000L, active11, 0L, active12, 0L); case 86: case 118: - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x1800000000000L, active2, 0L, active3, 0x4000000000000L, active4, 0x2000001080000L, active5, 0L, active6, 0x1000000000L, active7, 0x100010000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x3000000000000L, active2, 0L, active3, 0x40000000000000L, active4, 0x40000010800000L, active5, 0L, active6, 0x40000000000L, active7, 0x20000400000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 87: case 119: - if ((active2 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(2, 174, 78); - else if ((active5 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(2, 356, 78); - else if ((active7 & 0x4000000000L) != 0L) + if ((active2 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_3(2, 178, 78); + else if ((active5 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_3(2, 361, 78); + else if ((active7 & 0x100000000000L) != 0L) { - jjmatchedKind = 486; + jjmatchedKind = 492; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000000000000L, active5, 0L, active6, 0x80000000000L, active7, 0x38000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1L, active6, 0x2000000000000L, active7, 0xe00000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 88: case 120: - if ((active5 & 0x8L) != 0L) + if ((active5 & 0x100L) != 0L) { - jjmatchedKind = 323; + jjmatchedKind = 328; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000010L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) return jjStartNfaWithStates_3(2, 18, 78); - else if ((active2 & 0x2000L) != 0L) + else if ((active2 & 0x8000L) != 0L) { - jjmatchedKind = 141; + jjmatchedKind = 143; jjmatchedPos = 2; } - else if ((active2 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(2, 175, 78); - else if ((active4 & 0x800000000L) != 0L) + else if ((active2 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_3(2, 179, 78); + else if ((active4 & 0x10000000000L) != 0L) { - jjmatchedKind = 291; + jjmatchedKind = 296; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x40000000L, active1, 0L, active2, 0x4000L, active3, 0L, active4, 0x3000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000L, active10, 0L, active11, 0x800000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x40000000L, active1, 0L, active2, 0x70000L, active3, 0L, active4, 0x60000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000000L, active10, 0x40000L, active11, 0x200000000L, active12, 0L); case 90: case 122: - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); default : break; } @@ -17333,148 +17436,148 @@ private final int jjMoveStringLiteralDfa3_3(long old0, long active0, long old1, switch(curChar) { case 45: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x400000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 49: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400000000L, active11, 0L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); case 51: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x800000000L, active11, 0L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000L, active11, 0L); case 56: - if ((active10 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(3, 673, 78); + if ((active10 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_3(3, 683, 78); break; case 95: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x1800000000000000L, active3, 0L, active4, 0x3000000000L, active5, 0x80000000000L, active6, 0L, active7, 0x18000000000L, active8, 0xfffffffffe000000L, active9, 0x200000000003ffL, active10, 0x18000000000L, active11, 0x10000000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x1L, active4, 0x60000000000L, active5, 0x1000000000000L, active6, 0L, active7, 0x600000000000L, active8, 0xfffffffc00000000L, active9, 0x400000000007ffffL, active10, 0x6000000040000L, active11, 0x4000000000L); case 65: case 97: - if ((active2 & 0x10L) != 0L) + if ((active2 & 0x20L) != 0L) { - jjmatchedKind = 132; + jjmatchedKind = 133; jjmatchedPos = 3; } - else if ((active4 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(3, 280, 78); - return jjMoveStringLiteralDfa4_3(active0, 0x1802100001e10000L, active1, 0x3800000000000L, active2, 0x400e088000320020L, active3, 0x120001L, active4, 0x780000000000000L, active5, 0x200000000L, active6, 0x1fc000L, active7, 0x8000000000001000L, active8, 0L, active9, 0L, active10, 0xa00001L, active11, 0x20002200L); + else if ((active4 & 0x10000000L) != 0L) + return jjStartNfaWithStates_3(3, 284, 78); + return jjMoveStringLiteralDfa4_3(active0, 0x1802100001e10000L, active1, 0x7000000000000L, active2, 0xe0880003200040L, active3, 0x1200014L, active4, 0xf000000000000000L, active5, 0x4000000000L, active6, 0x7f00000L, active7, 0x40000L, active8, 0x100L, active9, 0L, active10, 0x280000200L, active11, 0x8000880000L); case 66: case 98: if ((active0 & 0x400000000000L) != 0L) return jjStartNfaWithStates_3(3, 46, 78); else if ((active1 & 0x2000L) != 0L) return jjStartNfaWithStates_3(3, 77, 78); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x200000000000L, active3, 0x20000000000L, active4, 0L, active5, 0x2000000000040L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000400L, active11, 0L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x2000000000000L, active3, 0x200000000000L, active4, 0L, active5, 0x40000000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000100000L, active11, 0L); case 67: case 99: - if ((active2 & 0x200000000L) != 0L) + if ((active2 & 0x2000000000L) != 0L) { - jjmatchedKind = 161; + jjmatchedKind = 165; jjmatchedPos = 3; } - else if ((active3 & 0x40L) != 0L) + else if ((active3 & 0x400L) != 0L) { - jjmatchedKind = 198; + jjmatchedKind = 202; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_3(active0, 0x180000000000000L, active1, 0x400L, active2, 0x2000011c00000000L, active3, 0x410008080L, active4, 0xc000000000000000L, active5, 0x7L, active6, 0x207023c0800000L, active7, 0L, active8, 0x1e0000L, active9, 0x8200000L, active10, 0x40000001000L, active11, 0L); + return jjMoveStringLiteralDfa4_3(active0, 0x180000000000000L, active1, 0x400L, active2, 0x11c000000000L, active3, 0x4100080802L, active4, 0L, active5, 0xf8L, active6, 0x81c08f020000000L, active7, 0L, active8, 0x3c000000L, active9, 0x1040000000L, active10, 0x10000000400000L, active11, 0L); case 68: case 100: - if ((active3 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 244, 78); - else if ((active4 & 0x200000000000L) != 0L) + if ((active3 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_3(3, 248, 78); + else if ((active4 & 0x4000000000000L) != 0L) { - jjmatchedKind = 301; + jjmatchedKind = 306; jjmatchedPos = 3; } - else if ((active6 & 0x1000000000000000L) != 0L) + else if ((active7 & 0x4L) != 0L) { - jjmatchedKind = 444; + jjmatchedKind = 450; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_3(active0, 0x40000000000000L, active1, 0xe0000000L, active2, 0L, active3, 0x80000000L, active4, 0x400000200000L, active5, 0x400000L, active6, 0x2000000000000000L, active7, 0L, active8, 0L, active9, 0x20018000L, active10, 0x40000000000000L, active11, 0L); + return jjMoveStringLiteralDfa4_3(active0, 0x40000000000000L, active1, 0xe0000000L, active2, 0L, active3, 0x800000000L, active4, 0x8000002000000L, active5, 0x8000000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0x4003000000L, active10, 0L, active11, 0x1L); case 69: case 101: if ((active0 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_3(3, 57, 78); - else if ((active1 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 115, 78); - else if ((active2 & 0x40L) != 0L) + else if ((active1 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_3(3, 116, 78); + else if ((active2 & 0x80L) != 0L) { - jjmatchedKind = 134; + jjmatchedKind = 135; jjmatchedPos = 3; } - else if ((active2 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 182, 78); - else if ((active3 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(3, 222, 78); - else if ((active4 & 0x8000000000000L) != 0L) + else if ((active2 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_3(3, 186, 78); + else if ((active3 & 0x400000000L) != 0L) + return jjStartNfaWithStates_3(3, 226, 78); + else if ((active4 & 0x100000000000000L) != 0L) { - jjmatchedKind = 307; + jjmatchedKind = 312; jjmatchedPos = 3; } - else if ((active5 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(3, 345, 78); - else if ((active5 & 0x10000000L) != 0L) + else if ((active5 & 0x40000000L) != 0L) + return jjStartNfaWithStates_3(3, 350, 78); + else if ((active5 & 0x200000000L) != 0L) { - jjmatchedKind = 348; + jjmatchedKind = 353; jjmatchedPos = 3; } - else if ((active5 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(3, 359, 78); - else if ((active7 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(3, 479, 78); - else if ((active8 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(3, 524, 78); - else if ((active8 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(3, 527, 78); - else if ((active9 & 0x20000000000L) != 0L) + else if ((active5 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_3(3, 364, 78); + else if ((active7 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_3(3, 485, 78); + else if ((active8 & 0x200000L) != 0L) + return jjStartNfaWithStates_3(3, 533, 78); + else if ((active8 & 0x1000000L) != 0L) + return jjStartNfaWithStates_3(3, 536, 78); + else if ((active9 & 0x4000000000000L) != 0L) { - jjmatchedKind = 617; + jjmatchedKind = 626; jjmatchedPos = 3; } - else if ((active10 & 0x80L) != 0L) - return jjStartNfaWithStates_3(3, 647, 78); - else if ((active10 & 0x800L) != 0L) - return jjStartNfaWithStates_3(3, 651, 78); - else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_3(3, 704, 78); - return jjMoveStringLiteralDfa4_3(active0, 0x10008820L, active1, 0x10000000000000L, active2, 0x2090c01f80L, active3, 0x180000600200180cL, active4, 0x81210400003c640L, active5, 0x6c000020000000L, active6, 0x800000000acL, active7, 0x1001900000016006L, active8, 0x400000L, active9, 0x7fc0000020000L, active10, 0x3410000L, active11, 0x1000L); + else if ((active10 & 0x10000L) != 0L) + return jjStartNfaWithStates_3(3, 656, 78); + else if ((active10 & 0x200000L) != 0L) + return jjStartNfaWithStates_3(3, 661, 78); + else if ((active11 & 0x400L) != 0L) + return jjStartNfaWithStates_3(3, 714, 78); + return jjMoveStringLiteralDfa4_3(active0, 0x10008820L, active1, 0x20000000000000L, active2, 0x2090c007f00L, active3, 0x80000600200180c0L, active4, 0x2420800003c6401L, active5, 0xd80000400000001L, active6, 0x2000000002980L, active7, 0x32e000000580180L, active8, 0x80000020L, active9, 0xff8000004000000L, active10, 0xd04000000L, active11, 0x400000L); case 70: case 102: - if ((active7 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 509, 78); + if ((active8 & 0x40L) != 0L) + return jjStartNfaWithStates_3(3, 518, 78); break; case 71: case 103: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x4000000000L, active3, 0L, active4, 0x1030000000000L, active5, 0x80L, active6, 0x400000000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400001eL, active11, 0x8000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x40000000000L, active3, 0L, active4, 0x20600000000000L, active5, 0x1000L, active6, 0L, active7, 0x1L, active8, 0L, active9, 0L, active10, 0x1000003c00L, active11, 0x2000000L); case 72: case 104: if ((active0 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_3(3, 48, 78); - else if ((active2 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 180, 78); - else if ((active6 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(3, 411, 78); - else if ((active10 & 0x80000000000000L) != 0L) + else if ((active2 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_3(3, 184, 78); + else if ((active6 & 0x200000000L) != 0L) + return jjStartNfaWithStates_3(3, 417, 78); + else if ((active11 & 0x2L) != 0L) { - jjmatchedKind = 695; + jjmatchedKind = 705; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_3(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800L, active6, 0L, active7, 0x20000000L, active8, 0L, active9, 0L, active10, 0x300000000000000L, active11, 0x180L); + return jjMoveStringLiteralDfa4_3(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x6000cL); case 73: case 105: - return jjMoveStringLiteralDfa4_3(active0, 0x9c020000480L, active1, 0x1L, active2, 0x107040000L, active3, 0x4000800000000L, active4, 0x20000000000008L, active5, 0x8000000080100000L, active6, 0x60400000011L, active7, 0L, active8, 0x402L, active9, 0x40000000040000L, active10, 0x100000L, active11, 0x4010L); + return jjMoveStringLiteralDfa4_3(active0, 0x9c020000480L, active1, 0x1L, active2, 0x1070400000L, active3, 0x40008000000000L, active4, 0x400000000000080L, active5, 0x1002000000L, active6, 0x1810000000630L, active7, 0L, active8, 0x80400L, active9, 0x8000000008000000L, active10, 0x40000000L, active11, 0x1004000L); case 75: case 107: - if ((active6 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 443, 78); - else if ((active7 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 507, 78); - else if ((active10 & 0x1000000000000L) != 0L) + if ((active7 & 0x2L) != 0L) + return jjStartNfaWithStates_3(3, 449, 78); + else if ((active8 & 0x10L) != 0L) + return jjStartNfaWithStates_3(3, 516, 78); + else if ((active10 & 0x400000000000000L) != 0L) { - jjmatchedKind = 688; + jjmatchedKind = 698; jjmatchedPos = 3; } - else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 698, 78); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x400000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0x8L); + else if ((active11 & 0x10L) != 0L) + return jjStartNfaWithStates_3(3, 708, 78); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x4000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000L, active8, 0L, active9, 0L, active10, 0x800000000000000L, active11, 0x2000L); case 76: case 108: if ((active0 & 0x10000000000000L) != 0L) @@ -17487,68 +17590,68 @@ else if ((active0 & 0x2000000000000000L) != 0L) jjmatchedKind = 61; jjmatchedPos = 3; } - else if ((active3 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(3, 225, 78); - else if ((active5 & 0x200000000000L) != 0L) + else if ((active3 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_3(3, 229, 78); + else if ((active5 & 0x4000000000000L) != 0L) { - jjmatchedKind = 365; + jjmatchedKind = 370; jjmatchedPos = 3; } - else if ((active6 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 446, 78); - else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(3, 722, 78); - return jjMoveStringLiteralDfa4_3(active0, 0x4020800000080000L, active1, 0x7e8000L, active2, 0x88008L, active3, 0x2000000000400430L, active4, 0x800003L, active5, 0x1d00000006000L, active6, 0xc0000000000000L, active7, 0x600300008000L, active8, 0x4000L, active9, 0x1c00100000L, active10, 0L, active11, 0x8000000L); + else if ((active7 & 0x10L) != 0L) + return jjStartNfaWithStates_3(3, 452, 78); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_3(3, 732, 78); + return jjMoveStringLiteralDfa4_3(active0, 0x4020800000080000L, active1, 0x7e8000L, active2, 0x880010L, active3, 0x4004300L, active4, 0x8000032L, active5, 0x3a0000000c0000L, active6, 0x3000000000000000L, active7, 0xc000c000200000L, active8, 0x800000L, active9, 0x380020000000L, active10, 0L, active11, 0x2000000000L); case 77: case 109: - if ((active3 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(3, 224, 78); - else if ((active10 & 0x20L) != 0L) + if ((active3 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_3(3, 228, 78); + else if ((active10 & 0x4000L) != 0L) { - jjmatchedKind = 645; + jjmatchedKind = 654; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_3(active0, 0x140000000L, active1, 0x1e000000L, active2, 0x20000000000000L, active3, 0x8021000000L, active4, 0L, active5, 0x30000000000L, active6, 0x4000800000000L, active7, 0L, active8, 0L, active9, 0x40400000L, active10, 0x40L, active11, 0x20L); + return jjMoveStringLiteralDfa4_3(active0, 0x140000000L, active1, 0x1e000000L, active2, 0x200000000000000L, active3, 0x80210000000L, active4, 0L, active5, 0x600000000000L, active6, 0x100020000000000L, active7, 0L, active8, 0L, active9, 0x8080000000L, active10, 0x8000L, active11, 0x8000L); case 78: case 110: - if ((active4 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(3, 281, 78); - else if ((active4 & 0x4000000L) != 0L) + if ((active4 & 0x20000000L) != 0L) + return jjStartNfaWithStates_3(3, 285, 78); + else if ((active4 & 0x40000000L) != 0L) { - jjmatchedKind = 282; + jjmatchedKind = 286; jjmatchedPos = 3; } - else if ((active5 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 382, 78); - else if ((active6 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(3, 422, 78); - else if ((active9 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(3, 614, 78); - else if ((active10 & 0x4000000000000L) != 0L) + else if ((active6 & 0x8L) != 0L) + return jjStartNfaWithStates_3(3, 387, 78); + else if ((active6 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_3(3, 428, 78); + else if ((active9 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_3(3, 623, 78); + else if ((active10 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 690; + jjmatchedKind = 700; jjmatchedPos = 3; } - else if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(3, 723, 78); - return jjMoveStringLiteralDfa4_3(active0, 0x20008000000L, active1, 0x400700000000L, active2, 0L, active3, 0x100300008000000L, active4, 0x3f8000000L, active5, 0L, active6, 0L, active7, 0x40000000000L, active8, 0L, active9, 0xff80000000000000L, active10, 0x8800100080100L, active11, 0x800000L); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_3(3, 733, 78); + return jjMoveStringLiteralDfa4_3(active0, 0x20008000000L, active1, 0x800700000000L, active2, 0L, active3, 0x1003000080000000L, active4, 0x7f80000000L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0L, active9, 0L, active10, 0x22000400200201ffL, active11, 0x200000000L); case 79: case 111: - if ((active3 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(3, 235, 78); - else if ((active4 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(3, 274, 78); - return jjMoveStringLiteralDfa4_3(active0, 0x2000006040L, active1, 0x10000L, active2, 0x8100000000000000L, active3, 0x4200000000200000L, active4, 0x80000L, active5, 0x440000000L, active6, 0x8001000000000L, active7, 0x1a0000010000000L, active8, 0L, active9, 0L, active10, 0x2e000L, active11, 0x10000L); + if ((active3 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_3(3, 239, 78); + else if ((active4 & 0x400000L) != 0L) + return jjStartNfaWithStates_3(3, 278, 78); + return jjMoveStringLiteralDfa4_3(active0, 0x2000006040L, active1, 0x10000L, active2, 0x1000000000030000L, active3, 0x2000000002000008L, active4, 0x800004L, active5, 0x8800000000L, active6, 0x200040000000000L, active7, 0x4000000400000000L, active8, 0x3L, active9, 0L, active10, 0xb800000L, active11, 0x4000000L); case 80: case 112: - if ((active2 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 176, 78); - else if ((active8 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(3, 525, 78); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0L, active5, 0x8000000L, active6, 0x800000000100L, active7, 0x1e000000020000L, active8, 0x800L, active9, 0x2000000000L, active10, 0x800000000000000L, active11, 0x400004L); + if ((active2 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_3(3, 180, 78); + else if ((active8 & 0x400000L) != 0L) + return jjStartNfaWithStates_3(3, 534, 78); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x100000000L, active6, 0x20000000004000L, active7, 0x3c00000000800000L, active8, 0x100000L, active9, 0x400000000000L, active10, 0L, active11, 0x100001020L); case 81: case 113: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40000L, active11, 0L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10000000L, active11, 0L); case 82: case 114: if ((active1 & 0x2L) != 0L) @@ -17556,83 +17659,83 @@ else if ((active8 & 0x2000L) != 0L) jjmatchedKind = 65; jjmatchedPos = 3; } - else if ((active1 & 0x100000000000L) != 0L) + else if ((active1 & 0x200000000000L) != 0L) { - jjmatchedKind = 108; + jjmatchedKind = 109; jjmatchedPos = 3; } - else if ((active3 & 0x40000000000000L) != 0L) + else if ((active3 & 0x400000000000000L) != 0L) { - jjmatchedKind = 246; + jjmatchedKind = 250; jjmatchedPos = 3; } - else if ((active6 & 0x200L) != 0L) + else if ((active6 & 0x8000L) != 0L) { - jjmatchedKind = 393; + jjmatchedKind = 399; jjmatchedPos = 3; } - else if ((active10 & 0x8000000L) != 0L) + else if ((active10 & 0x2000000000L) != 0L) { - jjmatchedKind = 667; + jjmatchedKind = 677; jjmatchedPos = 3; } - else if ((active10 & 0x4000000000000000L) != 0L) + else if ((active11 & 0x100L) != 0L) { - jjmatchedKind = 702; + jjmatchedKind = 712; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_3(active0, 0x600000000L, active1, 0xffe02000000003fcL, active2, 0x8000001L, active3, 0x88000000002002L, active4, 0x4000000000004L, active5, 0x1000L, active6, 0x300000000001c00L, active7, 0x40000000000ff8L, active8, 0x10000L, active9, 0x8000000800L, active10, 0x80100000f0000000L, active11, 0x5000800L); + return jjMoveStringLiteralDfa4_3(active0, 0x600000000L, active1, 0xffc04000000003fcL, active2, 0x80000003L, active3, 0x880000000020020L, active4, 0x80000000000040L, active5, 0x20000L, active6, 0xc000000000070000L, active7, 0x800000000003fe00L, active8, 0x2000000L, active9, 0x1000000100000L, active10, 0x400003c000000000L, active11, 0x1400200200L); case 83: case 115: - if ((active2 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(3, 142, 78); - else if ((active7 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(3, 489, 78); - else if ((active8 & 0x80L) != 0L) - return jjStartNfaWithStates_3(3, 519, 78); - else if ((active9 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(3, 616, 78); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x401f800005800L, active2, 0x20000006L, active3, 0xc4100L, active4, 0L, active5, 0x100000000000720L, active6, 0x1000003000000L, active7, 0x4000000000000000L, active8, 0x800030L, active9, 0x7800000L, active10, 0x300000000200L, active11, 0x20000L); + if ((active2 & 0x40000L) != 0L) + return jjStartNfaWithStates_3(3, 146, 78); + else if ((active7 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_3(3, 495, 78); + else if ((active8 & 0x10000L) != 0L) + return jjStartNfaWithStates_3(3, 528, 78); + else if ((active9 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_3(3, 625, 78); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x801f800005800L, active2, 0x20000000cL, active3, 0xc41000L, active4, 0L, active5, 0x200000000000e400L, active6, 0x400000c0000000L, active7, 0L, active8, 0x100006080L, active9, 0xf00000000L, active10, 0xc0000000080000L, active11, 0x8000000L); case 84: case 116: if ((active0 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_3(3, 58, 78); - else if ((active4 & 0x40000000000L) != 0L) + else if ((active4 & 0x800000000000L) != 0L) { - jjmatchedKind = 298; + jjmatchedKind = 303; jjmatchedPos = 3; } - else if ((active4 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(3, 303, 78); - else if ((active5 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(3, 357, 78); - else if ((active5 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 378, 78); - else if ((active6 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(3, 410, 78); - else if ((active9 & 0x400L) != 0L) - return jjStartNfaWithStates_3(3, 586, 78); - return jjMoveStringLiteralDfa4_3(active0, 0x8000000000000000L, active1, 0x60000000000L, active2, 0x80040040000000L, active3, 0x4010000L, active4, 0x80000001830L, active5, 0x805800000L, active6, 0x10010600000L, active7, 0x200003c000c0000L, active8, 0L, active9, 0x380007000L, active10, 0x1020000000000000L, active11, 0x2100040L); + else if ((active4 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_3(3, 308, 78); + else if ((active5 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_3(3, 362, 78); + else if ((active5 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_3(3, 383, 78); + else if ((active6 & 0x100000000L) != 0L) + return jjStartNfaWithStates_3(3, 416, 78); + else if ((active9 & 0x80000L) != 0L) + return jjStartNfaWithStates_3(3, 595, 78); + return jjMoveStringLiteralDfa4_3(active0, 0x8000000000000000L, active1, 0xe0000000000L, active2, 0x800400400000000L, active3, 0x40100000L, active4, 0x1000000018300L, active5, 0x100b0000000L, active6, 0x400418000000L, active7, 0xf0003000000L, active8, 0x4L, active9, 0x70000e00000L, active10, 0x8000000000000000L, active11, 0x840010040L); case 85: case 117: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x1800000L, active2, 0L, active3, 0x3c00000000000L, active4, 0x180L, active5, 0x10000100230000L, active6, 0x8000000000000000L, active7, 0x40008000ff00000L, active8, 0x101L, active9, 0x80000L, active10, 0x7000000000L, active11, 0x400L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x1800000L, active2, 0L, active3, 0x3c000000000000L, active4, 0x1800L, active5, 0x200002004600000L, active6, 0L, active7, 0x100003fc000020L, active8, 0x20208L, active9, 0x10000000L, active10, 0x1c00000000000L, active11, 0x100000L); case 86: case 118: - if ((active6 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 433, 78); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x80000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40010L, active6, 0x10000000000000L, active7, 0L, active8, 0xcL, active9, 0L, active10, 0L, active11, 0x200000L); + if ((active6 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_3(3, 439, 78); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x100000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800200L, active6, 0x400000000000000L, active7, 0L, active8, 0x1800L, active9, 0L, active10, 0L, active11, 0x80000000L); case 87: case 119: - if ((active8 & 0x200L) != 0L) - return jjStartNfaWithStates_3(3, 521, 78); - else if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(3, 686, 78); - return jjMoveStringLiteralDfa4_3(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x40000L) != 0L) + return jjStartNfaWithStates_3(3, 530, 78); + else if ((active10 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_3(3, 696, 78); + return jjMoveStringLiteralDfa4_3(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active5 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(3, 381, 78); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); + if ((active6 & 0x4L) != 0L) + return jjStartNfaWithStates_3(3, 386, 78); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1000000000000000L, active10, 0x20000000000000L, active11, 0L); default : break; } @@ -17650,147 +17753,147 @@ private final int jjMoveStringLiteralDfa4_3(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active10 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(4, 675, 78); + if ((active10 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_3(4, 685, 78); break; case 54: - if ((active10 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(4, 674, 78); + if ((active10 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_3(4, 684, 78); break; case 95: - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x10000000000004L, active2, 0x1080L, active3, 0x10000000L, active4, 0x100803f8000000L, active5, 0L, active6, 0L, active7, 0xff8L, active8, 0L, active9, 0xc0000000000L, active10, 0xf0000040L, active11, 0x200L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x20000000000004L, active2, 0x300L, active3, 0x100000000L, active4, 0x201007f80000000L, active5, 0L, active6, 0L, active7, 0xe00000003fe00L, active8, 0L, active9, 0x18000000000000L, active10, 0x3c000008000L, active11, 0x80000L); case 65: case 97: - return jjMoveStringLiteralDfa5_3(active0, 0x180000000000000L, active1, 0x200063e03f8L, active2, 0x20000080000L, active3, 0x8020081002400L, active4, 0x4000000801800L, active5, 0x430000440710L, active6, 0x4800000800000L, active7, 0x20000004e000L, active8, 0x1000002L, active9, 0x20020000L, active10, 0x1000L, active11, 0L); + return jjMoveStringLiteralDfa5_3(active0, 0x180000000000000L, active1, 0x600063e03f8L, active2, 0x200000800000L, active3, 0x80200810024000L, active4, 0x80000008018000L, active5, 0x860000880e200L, active6, 0x120000020000000L, active7, 0x40000001380000L, active8, 0x200000400L, active9, 0x4004000000L, active10, 0x400000L, active11, 0L); case 66: case 98: - if ((active5 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(4, 354, 78); - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x20L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000L, active8, 0x3e000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active5 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_3(4, 359, 78); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x40L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000L, active8, 0x7c00000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(4, 727, 78); - return jjMoveStringLiteralDfa5_3(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8L, active5, 0x8000000000000L, active6, 0L, active7, 0x1040008000000000L, active8, 0xc0010000L, active9, 0x80000L, active10, 0x100L, active11, 0x10000000L); + if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_3(4, 737, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80L, active5, 0x100000000000000L, active6, 0L, active7, 0x8000200000000000L, active8, 0x18002000020L, active9, 0x10000000L, active10, 0x60000L, active11, 0x4000000000L); case 68: case 100: - if ((active3 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(4, 219, 78); - return jjMoveStringLiteralDfa5_3(active0, 0x2000000000000L, active1, 0L, active2, 0x100000000020000L, active3, 0x1800000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000L, active9, 0L, active10, 0x200L, active11, 0L); + if ((active3 & 0x80000000L) != 0L) + return jjStartNfaWithStates_3(4, 223, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x2000000000000L, active1, 0L, active2, 0x1000000000200000L, active3, 0x8000000000000000L, active4, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000L, active9, 0L, active10, 0x80000L, active11, 0L); case 69: case 101: if ((active1 & 0x4000L) != 0L) return jjStartNfaWithStates_3(4, 78, 78); - else if ((active2 & 0x8L) != 0L) - return jjStartNfaWithStates_3(4, 131, 78); - else if ((active3 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(4, 206, 78); - else if ((active3 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 250, 78); - else if ((active4 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(4, 297, 78); - else if ((active5 & 0x80L) != 0L) - return jjStartNfaWithStates_3(4, 327, 78); - else if ((active5 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(4, 364, 78); - else if ((active6 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 442, 78); - else if ((active7 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(4, 478, 78); - else if ((active7 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(4, 494, 78); - else if ((active7 & 0x2000000000000L) != 0L) + else if ((active2 & 0x10L) != 0L) + return jjStartNfaWithStates_3(4, 132, 78); + else if ((active3 & 0x40000L) != 0L) + return jjStartNfaWithStates_3(4, 210, 78); + else if ((active3 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 254, 78); + else if ((active4 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_3(4, 302, 78); + else if ((active5 & 0x1000L) != 0L) + return jjStartNfaWithStates_3(4, 332, 78); + else if ((active5 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 369, 78); + else if ((active7 & 0x1L) != 0L) + return jjStartNfaWithStates_3(4, 448, 78); + else if ((active7 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_3(4, 484, 78); + else if ((active7 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 503, 78); + else if ((active7 & 0x400000000000000L) != 0L) { - jjmatchedKind = 497; + jjmatchedKind = 506; jjmatchedPos = 4; } - else if ((active8 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(4, 529, 78); - else if ((active9 & 0x1000L) != 0L) + else if ((active8 & 0x4000000L) != 0L) + return jjStartNfaWithStates_3(4, 538, 78); + else if ((active9 & 0x200000L) != 0L) { - jjmatchedKind = 588; + jjmatchedKind = 597; jjmatchedPos = 4; } - else if ((active9 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(4, 596, 78); - else if ((active9 & 0x400000000L) != 0L) + else if ((active9 & 0x20000000L) != 0L) + return jjStartNfaWithStates_3(4, 605, 78); + else if ((active9 & 0x80000000000L) != 0L) { - jjmatchedKind = 610; + jjmatchedKind = 619; jjmatchedPos = 4; } - else if ((active10 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(4, 666, 78); else if ((active10 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_3(4, 676, 78); + else if ((active10 & 0x400000000000L) != 0L) { - jjmatchedKind = 676; + jjmatchedKind = 686; jjmatchedPos = 4; } - else if ((active10 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 692, 78); - else if ((active10 & 0x1000000000000000L) != 0L) + else if ((active10 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 702, 78); + else if ((active11 & 0x40L) != 0L) { - jjmatchedKind = 700; + jjmatchedKind = 710; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_3(active0, 0x20840000000000L, active1, 0xffe0280700408000L, active2, 0x420000028000001L, active3, 0x2000008020010000L, active4, 0x400004L, active5, 0x102000000004040L, active6, 0x213003d0000000L, active7, 0x1c000000020000L, active8, 0xdL, active9, 0x1bc881a000L, active10, 0x8806000000000L, active11, 0x40005c0L); + return jjMoveStringLiteralDfa5_3(active0, 0x20840000000000L, active1, 0xffc0500700408000L, active2, 0x4200000280000003L, active3, 0x80200100000L, active4, 0x4000042L, active5, 0x2040000000080800L, active6, 0x84c00f400000000L, active7, 0x3800000000800000L, active8, 0x1a00L, active9, 0x379103400000L, active10, 0x2201800000000000L, active11, 0x1000170000L); case 70: case 102: - if ((active2 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(4, 159, 78); - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0L, active4, 0L, active5, 0x100000L, active6, 0L, active7, 0L, active8, 0x800000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x800000000L) != 0L) + return jjStartNfaWithStates_3(4, 163, 78); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x8000000000030000L, active3, 0L, active4, 0L, active5, 0x2000000L, active6, 0L, active7, 0L, active8, 0x100000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(4, 672, 78); - return jjMoveStringLiteralDfa5_3(active0, 0x20000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1eL, active11, 0x10000L); + if ((active10 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_3(4, 682, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x20000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x40000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c00L, active11, 0x4000000L); case 72: case 104: - if ((active2 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(4, 158, 78); - else if ((active2 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 189, 78); - else if ((active3 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(4, 207, 78); - else if ((active4 & 0x4000000000000000L) != 0L) + if ((active2 & 0x400000000L) != 0L) + return jjStartNfaWithStates_3(4, 162, 78); + else if ((active3 & 0x2L) != 0L) + return jjStartNfaWithStates_3(4, 193, 78); + else if ((active3 & 0x80000L) != 0L) + return jjStartNfaWithStates_3(4, 211, 78); + else if ((active5 & 0x8L) != 0L) { - jjmatchedKind = 318; + jjmatchedKind = 323; jjmatchedPos = 4; } - else if ((active5 & 0x800000L) != 0L) + else if ((active5 & 0x10000000L) != 0L) { - jjmatchedKind = 343; + jjmatchedKind = 348; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000000000000L, active5, 0x1000007L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20040000000000L, active11, 0L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000f0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8010000000000000L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa5_3(active0, 0x4040000700000000L, active1, 0x400f8000000L, active2, 0xc0000000000L, active3, 0x2000000L, active4, 0x400000000030L, active5, 0x800804002000L, active6, 0xd0412001600000L, active7, 0x4200043c00000000L, active8, 0x3fff0001c0030L, active9, 0x8000000004000L, active10, 0x1003a0000000000L, active11, 0x2308020L); + return jjMoveStringLiteralDfa5_3(active0, 0x4040000700000000L, active1, 0x800f8000000L, active2, 0xc00000000000L, active3, 0x20000000L, active4, 0x8000000000300L, active5, 0x10010080040000L, active6, 0x3410480058000000L, active7, 0x10f0000000000L, active8, 0x7ffe00038006084L, active9, 0x1000000000800000L, active10, 0xe8000000000000L, active11, 0x8c2008004L); case 75: case 107: if ((active1 & 0x400L) != 0L) return jjStartNfaWithStates_3(4, 74, 78); - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x10000L) != 0L) return jjStartNfaWithStates_3(4, 80, 78); - else if ((active3 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(4, 209, 78); - else if ((active4 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(4, 294, 78); - else if ((active4 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 305, 78); - else if ((active4 & 0x80000000000000L) != 0L) + else if ((active3 & 0x200000L) != 0L) + return jjStartNfaWithStates_3(4, 213, 78); + else if ((active4 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_3(4, 299, 78); + else if ((active4 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 310, 78); + else if ((active4 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 311; + jjmatchedKind = 316; jjmatchedPos = 4; } - else if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(4, 733, 78); - return jjMoveStringLiteralDfa5_3(active0, 0x1800000000000040L, active1, 0L, active2, 0x4000208000008000L, active3, 0L, active4, 0x300000000000000L, active5, 0x200000L, active6, 0xc00L, active7, 0x20000000100000L, active8, 0x1c000000004c00L, active9, 0x60000000200000L, active10, 0x400L, active11, 0x2004L); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_3(4, 743, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x1800000000000040L, active1, 0L, active2, 0x2080000080000L, active3, 0x4L, active4, 0x6000000000000000L, active5, 0x4000000L, active6, 0x30000L, active7, 0x4000000004000000L, active8, 0x3800000000980000L, active9, 0xc000000040000000L, active10, 0x100000L, active11, 0x801000L); case 77: case 109: - return jjMoveStringLiteralDfa5_3(active0, 0x40000000L, active1, 0x1800000L, active2, 0xe000000040000L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0x1fc000L, active7, 0x1800000000000L, active8, 0L, active9, 0L, active10, 0x204000L, active11, 0L); + return jjMoveStringLiteralDfa5_3(active0, 0x40000000L, active1, 0x1800000L, active2, 0xe0000000400000L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0x7f00000L, active7, 0x300000000000000L, active8, 0L, active9, 0L, active10, 0x81000000L, active11, 0L); case 78: case 110: if ((active0 & 0x400L) != 0L) @@ -17802,122 +17905,122 @@ else if ((active0 & 0x4000000000L) != 0L) } else if ((active1 & 0x1L) != 0L) return jjStartNfaWithStates_3(4, 64, 78); - else if ((active10 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(4, 657, 78); - return jjMoveStringLiteralDfa5_3(active0, 0x98000000020L, active1, 0L, active2, 0x4007000000L, active3, 0x4000000000800L, active4, 0x200L, active5, 0L, active6, 0x10L, active7, 0x180010000000000L, active8, 0x1e0000000000000L, active9, 0x40000L, active10, 0x8000L, active11, 0x4010L); + else if ((active10 & 0x8000000L) != 0L) + return jjStartNfaWithStates_3(4, 667, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x98000000020L, active1, 0L, active2, 0x40070000000L, active3, 0x40000000008000L, active4, 0x2000L, active5, 0L, active6, 0x600L, active7, 0x400000000000L, active8, 0xc000000000000003L, active9, 0x8000003L, active10, 0x2000000L, active11, 0x1004000L); case 79: case 111: - return jjMoveStringLiteralDfa5_3(active0, 0x20800000080L, active1, 0L, active2, 0x10000000006L, active3, 0x800400000L, active4, 0x200000L, active5, 0x8000000080001800L, active6, 0x400000001L, active7, 0L, active8, 0L, active9, 0x2000000000L, active10, 0x240000000080000L, active11, 0L); + return jjMoveStringLiteralDfa5_3(active0, 0x20800000080L, active1, 0L, active2, 0x10000000000cL, active3, 0x8004000000L, active4, 0x2000000L, active5, 0x1000030000L, active6, 0x10000000030L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0x20000000L, active11, 0x9L); case 80: case 112: - if ((active3 & 0x400000000000L) != 0L) + if ((active3 & 0x4000000000000L) != 0L) { - jjmatchedKind = 238; + jjmatchedKind = 242; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0x380000000000dL, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x800008000000000L, active11, 0L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x380000000000d1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0x20L); case 82: case 114: if ((active0 & 0x800L) != 0L) return jjStartNfaWithStates_3(4, 11, 78); else if ((active0 & 0x8000L) != 0L) return jjStartNfaWithStates_3(4, 15, 78); - else if ((active2 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 191, 78); - else if ((active3 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(4, 213, 78); - else if ((active4 & 0x40L) != 0L) - return jjStartNfaWithStates_3(4, 262, 78); - else if ((active4 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 315, 78); - else if ((active5 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(4, 353, 78); - else if ((active6 & 0x4L) != 0L) + else if ((active3 & 0x8L) != 0L) + return jjStartNfaWithStates_3(4, 195, 78); + else if ((active3 & 0x2000000L) != 0L) + return jjStartNfaWithStates_3(4, 217, 78); + else if ((active4 & 0x400L) != 0L) + return jjStartNfaWithStates_3(4, 266, 78); + else if ((active5 & 0x1L) != 0L) + return jjStartNfaWithStates_3(4, 320, 78); + else if ((active5 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_3(4, 358, 78); + else if ((active6 & 0x80L) != 0L) { - jjmatchedKind = 386; + jjmatchedKind = 391; jjmatchedPos = 4; } - else if ((active6 & 0x80L) != 0L) - return jjStartNfaWithStates_3(4, 391, 78); - else if ((active6 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(4, 427, 78); - else if ((active6 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 435, 78); - else if ((active10 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(4, 656, 78); - else if ((active10 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(4, 664, 78); - return jjMoveStringLiteralDfa5_3(active0, 0x102010000000L, active1, 0x1800000000000L, active2, 0x3c00c00000L, active3, 0x4200006004001000L, active4, 0x100000038400L, active5, 0x14000100000000L, active6, 0x8000000000001028L, active7, 0x840008000fe80006L, active8, 0x200000000000000L, active9, 0L, active10, 0x2000000L, active11, 0L); + else if ((active6 & 0x2000L) != 0L) + return jjStartNfaWithStates_3(4, 397, 78); + else if ((active6 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 433, 78); + else if ((active6 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 441, 78); + else if ((active10 & 0x4000000L) != 0L) + return jjStartNfaWithStates_3(4, 666, 78); + else if ((active10 & 0x400000000L) != 0L) + return jjStartNfaWithStates_3(4, 674, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x102010000000L, active1, 0x3000000000000L, active2, 0x3c00c000000L, active3, 0x2000060040010000L, active4, 0x2000000384004L, active5, 0x280002000000000L, active6, 0x40900L, active7, 0x100003fa0001a0L, active8, 0x108L, active9, 0x4L, active10, 0x800000000L, active11, 0L); case 83: case 115: - if ((active1 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 114, 78); - else if ((active3 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 247, 78); - else if ((active5 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(4, 347, 78); - else if ((active5 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(4, 349, 78); - else if ((active5 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 368, 78); - else if ((active6 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 445, 78); - else if ((active8 & 0x100L) != 0L) - return jjStartNfaWithStates_3(4, 520, 78); - else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 689, 78); - else if ((active10 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 703, 78); - return jjMoveStringLiteralDfa5_3(active0, 0x8000000L, active1, 0x1800L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000L, active6, 0L, active7, 0L, active8, 0x400000000000000L, active9, 0xff81f08000000000L, active10, 0x10000400000L, active11, 0L); + if ((active1 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 115, 78); + else if ((active3 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 251, 78); + else if ((active5 & 0x100000000L) != 0L) + return jjStartNfaWithStates_3(4, 352, 78); + else if ((active5 & 0x400000000L) != 0L) + return jjStartNfaWithStates_3(4, 354, 78); + else if ((active5 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 373, 78); + else if ((active7 & 0x8L) != 0L) + return jjStartNfaWithStates_3(4, 451, 78); + else if ((active8 & 0x20000L) != 0L) + return jjStartNfaWithStates_3(4, 529, 78); + else if ((active10 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 699, 78); + else if ((active11 & 0x200L) != 0L) + return jjStartNfaWithStates_3(4, 713, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x8000000L, active1, 0x1800L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3e1000000000008L, active10, 0x40001000001ffL, active11, 0L); case 84: case 116: - if ((active1 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(4, 110, 78); - else if ((active3 & 0x40000L) != 0L) + if ((active1 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_3(4, 111, 78); + else if ((active3 & 0x400000L) != 0L) { - jjmatchedKind = 210; + jjmatchedKind = 214; jjmatchedPos = 4; } - else if ((active3 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(4, 212, 78); - else if ((active3 & 0x100000000000L) != 0L) + else if ((active3 & 0x1000000L) != 0L) + return jjStartNfaWithStates_3(4, 216, 78); + else if ((active3 & 0x1000000000000L) != 0L) { - jjmatchedKind = 236; + jjmatchedKind = 240; jjmatchedPos = 4; } - else if ((active4 & 0x80L) != 0L) - return jjStartNfaWithStates_3(4, 263, 78); - else if ((active4 & 0x100L) != 0L) - return jjStartNfaWithStates_3(4, 264, 78); - else if ((active4 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 309, 78); - else if ((active6 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(4, 420, 78); - else if ((active7 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(4, 464, 78); - else if ((active7 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(4, 477, 78); - else if ((active9 & 0x800L) != 0L) - return jjStartNfaWithStates_3(4, 587, 78); - else if ((active10 & 0x1L) != 0L) - return jjStartNfaWithStates_3(4, 640, 78); - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x201f800000000L, active2, 0x10000f00L, active3, 0x100200400080100L, active4, 0x401002000000000L, active5, 0x60000000030000L, active6, 0x300060002000000L, active7, 0x1000L, active8, 0xf800000000800000L, active9, 0x70000ffL, active10, 0x800000L, active11, 0L); + else if ((active4 & 0x800L) != 0L) + return jjStartNfaWithStates_3(4, 267, 78); + else if ((active4 & 0x1000L) != 0L) + return jjStartNfaWithStates_3(4, 268, 78); + else if ((active4 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 314, 78); + else if ((active6 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_3(4, 426, 78); + else if ((active7 & 0x400000L) != 0L) + return jjStartNfaWithStates_3(4, 470, 78); + else if ((active7 & 0x800000000L) != 0L) + return jjStartNfaWithStates_3(4, 483, 78); + else if ((active9 & 0x100000L) != 0L) + return jjStartNfaWithStates_3(4, 596, 78); + else if ((active10 & 0x200L) != 0L) + return jjStartNfaWithStates_3(4, 649, 78); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x401f800000000L, active2, 0x100007c00L, active3, 0x1002004000801000L, active4, 0x8020040000000000L, active5, 0xc00000000600000L, active6, 0xc001800080000000L, active7, 0x40000L, active8, 0x100000000L, active9, 0xe0001fff0L, active10, 0x200000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_3(active0, 0x8000000000000000L, active1, 0L, active2, 0x300000L, active3, 0xb0L, active4, 0x10000000003L, active5, 0x20L, active6, 0x800000100L, active7, 0x200000000L, active8, 0L, active9, 0x400000L, active10, 0x42000L, active11, 0x400008L); + return jjMoveStringLiteralDfa5_3(active0, 0x8000000000000000L, active1, 0L, active2, 0x3000000L, active3, 0xb00L, active4, 0x200000000030L, active5, 0x400L, active6, 0x20000004000L, active7, 0x8000000000L, active8, 0L, active9, 0x80000000L, active10, 0x10800000L, active11, 0x100002000L); case 86: case 118: - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0x80000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300L, active10, 0x100000L, active11, 0L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x1000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x60000L, active10, 0x40000000L, active11, 0L); case 87: case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_3(4, 14, 78); - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); case 88: case 120: - if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(4, 716, 78); - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0L, active10, 0L, active11, 0L); + if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_3(4, 726, 78); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x80000L) != 0L) @@ -17927,16 +18030,16 @@ else if ((active0 & 0x200000L) != 0L) jjmatchedKind = 21; jjmatchedPos = 4; } - else if ((active2 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(4, 183, 78); - else if ((active3 & 0x2L) != 0L) - return jjStartNfaWithStates_3(4, 193, 78); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(4, 728, 78); - return jjMoveStringLiteralDfa5_3(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000800L); + else if ((active2 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_3(4, 187, 78); + else if ((active3 & 0x20L) != 0L) + return jjStartNfaWithStates_3(4, 197, 78); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_3(4, 738, 78); + return jjMoveStringLiteralDfa5_3(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000200000L); case 90: case 122: - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xc00000000000000L, active10, 0L, active11, 0L); default : break; } @@ -17954,18 +18057,18 @@ private final int jjMoveStringLiteralDfa5_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_3(active0, 0x18001c00000L, active1, 0x1800000001000L, active2, 0x20000000L, active3, 0x800020080000L, active4, 0L, active5, 0x20000000000006L, active6, 0L, active7, 0x1c000000000000L, active8, 0L, active9, 0x800000000L, active10, 0x20004000000000L, active11, 0x5c0L); + return jjMoveStringLiteralDfa6_3(active0, 0x18001c00000L, active1, 0x3000000001000L, active2, 0x200000000L, active3, 0x8000200800000L, active4, 0L, active5, 0x4000000000000c0L, active6, 0L, active7, 0x3800000000000000L, active8, 0L, active9, 0x100000000000L, active10, 0x8001000000000000L, active11, 0x170000L); case 65: case 97: - if ((active7 & 0x800000000000L) != 0L) + if ((active7 & 0x100000000000000L) != 0L) { - jjmatchedKind = 495; + jjmatchedKind = 504; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_3(active0, 0x800000002000L, active1, 0L, active2, 0x1000000000040020L, active3, 0x6004000000L, active4, 0x110018400038L, active5, 0x80100000000L, active6, 0x200c10L, active7, 0x8001000100000018L, active8, 0x100800400L, active9, 0x780000000200300L, active10, 0x50000000340L, active11, 0x4L); + return jjMoveStringLiteralDfa6_3(active0, 0x800000002000L, active1, 0L, active2, 0x400040L, active3, 0x60040000001L, active4, 0x2200184000380L, active5, 0x1002000000000L, active6, 0x8030600L, active7, 0x200004000000600L, active8, 0x20100080100L, active9, 0x40060000L, active10, 0x140000000e800fL, active11, 0x1000L); case 66: case 98: - return jjMoveStringLiteralDfa6_3(active0, 0x600000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_3(active0, 0x600000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: if ((active0 & 0x100000000L) != 0L) @@ -17973,109 +18076,109 @@ private final int jjMoveStringLiteralDfa5_3(long old0, long active0, long old1, jjmatchedKind = 32; jjmatchedPos = 5; } - else if ((active6 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 438, 78); - else if ((active9 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(5, 590, 78); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x7004003f8L, active2, 0L, active3, 0x2000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x28020L, active8, 0x60000000400000L, active9, 0L, active10, 0L, active11, 0x200020L); + else if ((active6 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 444, 78); + else if ((active9 & 0x800000L) != 0L) + return jjStartNfaWithStates_3(5, 599, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x7004003f8L, active2, 0L, active3, 0x20000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000a00800L, active8, 0xc000000080000000L, active9, 0L, active10, 0L, active11, 0x80008000L); case 68: case 100: if ((active0 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_3(5, 53, 78); - else if ((active3 & 0x800L) != 0L) - return jjStartNfaWithStates_3(5, 203, 78); - else if ((active5 & 0x800L) != 0L) - return jjStartNfaWithStates_3(5, 331, 78); - else if ((active6 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(5, 418, 78); - else if ((active7 & 0x80000000000000L) != 0L) + else if ((active3 & 0x8000L) != 0L) + return jjStartNfaWithStates_3(5, 207, 78); + else if ((active5 & 0x10000L) != 0L) + return jjStartNfaWithStates_3(5, 336, 78); + else if ((active6 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_3(5, 424, 78); + else if ((active8 & 0x1L) != 0L) { - jjmatchedKind = 503; + jjmatchedKind = 512; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_3(active0, 0x180000000000000L, active1, 0x10000000000000L, active2, 0x1000L, active3, 0x30L, active4, 0x3L, active5, 0L, active6, 0x20300000000000L, active7, 0x100080000000000L, active8, 0L, active9, 0x48000000000L, active10, 0xf0008000L, active11, 0L); + return jjMoveStringLiteralDfa6_3(active0, 0x180000000000000L, active1, 0x20000000000000L, active2, 0x100L, active3, 0x300L, active4, 0x30L, active5, 0L, active6, 0x80c000000000000L, active7, 0x10000000000000L, active8, 0x2L, active9, 0x9000000000000L, active10, 0x3c002000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_3(5, 37, 78); - else if ((active1 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 113, 78); - else if ((active2 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(5, 145, 78); - else if ((active2 & 0x1000000L) != 0L) + else if ((active1 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 114, 78); + else if ((active2 & 0x200000L) != 0L) + return jjStartNfaWithStates_3(5, 149, 78); + else if ((active2 & 0x10000000L) != 0L) { - jjmatchedKind = 152; + jjmatchedKind = 156; jjmatchedPos = 5; } - else if ((active2 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(5, 155, 78); - else if ((active2 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(5, 156, 78); - else if ((active2 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(5, 173, 78); - else if ((active3 & 0x1L) != 0L) - return jjStartNfaWithStates_3(5, 192, 78); - else if ((active3 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 249, 78); - else if ((active5 & 0x10000L) != 0L) + else if ((active2 & 0x80000000L) != 0L) + return jjStartNfaWithStates_3(5, 159, 78); + else if ((active2 & 0x100000000L) != 0L) + return jjStartNfaWithStates_3(5, 160, 78); + else if ((active2 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 177, 78); + else if ((active3 & 0x10L) != 0L) + return jjStartNfaWithStates_3(5, 196, 78); + else if ((active3 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 253, 78); + else if ((active5 & 0x200000L) != 0L) { - jjmatchedKind = 336; + jjmatchedKind = 341; jjmatchedPos = 5; } - else if ((active5 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(5, 341, 78); - else if ((active7 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(5, 476, 78); - else if ((active8 & 0x800L) != 0L) - return jjStartNfaWithStates_3(5, 523, 78); - else if ((active8 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(5, 528, 78); - else if ((active10 & 0x400L) != 0L) - return jjStartNfaWithStates_3(5, 650, 78); - else if ((active10 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(5, 658, 78); - else if ((active10 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(5, 663, 78); - return jjMoveStringLiteralDfa6_3(active0, 0x40040000000L, active1, 0L, active2, 0x106000000L, active3, 0x200000000000L, active4, 0x8000001020084000L, active5, 0x40020001L, active6, 0x3000000001fc000L, active7, 0x6L, active8, 0x200000200000000L, active9, 0x20000008000000L, active10, 0x80000000020001eL, active11, 0x4000L); + else if ((active5 & 0x4000000L) != 0L) + return jjStartNfaWithStates_3(5, 346, 78); + else if ((active7 & 0x400000000L) != 0L) + return jjStartNfaWithStates_3(5, 482, 78); + else if ((active8 & 0x100000L) != 0L) + return jjStartNfaWithStates_3(5, 532, 78); + else if ((active8 & 0x2000000L) != 0L) + return jjStartNfaWithStates_3(5, 537, 78); + else if ((active10 & 0x100000L) != 0L) + return jjStartNfaWithStates_3(5, 660, 78); + else if ((active10 & 0x10000000L) != 0L) + return jjStartNfaWithStates_3(5, 668, 78); + else if ((active10 & 0x200000000L) != 0L) + return jjStartNfaWithStates_3(5, 673, 78); + return jjMoveStringLiteralDfa6_3(active0, 0x40040000000L, active1, 0L, active2, 0x1060000000L, active3, 0x2000000000000L, active4, 0x20200840000L, active5, 0x800400030L, active6, 0xc000000007f00000L, active7, 0x180L, active8, 0x40000000000L, active9, 0x4000001000000004L, active10, 0x80003c00L, active11, 0x1000020L); case 70: case 102: - if ((active5 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(5, 367, 78); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000000000L, active7, 0L, active8, 0x1c0000L, active9, 0x1800000000000000L, active10, 0L, active11, 0L); + if ((active5 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 372, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000000000000L, active7, 0L, active8, 0x38000000L, active9, 0L, active10, 0x30L, active11, 0L); case 71: case 103: - if ((active3 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 242, 78); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000L, active4, 0L, active5, 0x700L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000L, active10, 0L, active11, 0x10000L); + if ((active3 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 246, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x20000000L, active4, 0L, active5, 0xe000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x4000000L); case 72: case 104: - if ((active4 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 304, 78); - else if ((active7 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 502, 78); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000L, active7, 0L, active8, 0x40000000L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active4 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 309, 78); + else if ((active7 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 511, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 73: case 105: - return jjMoveStringLiteralDfa6_3(active0, 0x8000000L, active1, 0x20000000800L, active2, 0x10e001c00000f00L, active3, 0x1901000400000400L, active4, 0L, active5, 0x4000000100000L, active6, 0x60000001008L, active7, 0x400000000081040L, active8, 0x380000000e004000L, active9, 0x40000001000000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa6_3(active0, 0x8000000L, active1, 0x60000000800L, active2, 0x10e001c000007c00L, active3, 0x9010004000004000L, active4, 0x1L, active5, 0x80000002000000L, active6, 0x1800000040100L, active7, 0x2041000L, active8, 0x1c00800008L, active9, 0x8000000200000070L, active10, 0L, active11, 0x4000L); case 76: case 108: - if ((active3 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(5, 233, 78); - else if ((active6 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(5, 407, 78); - else if ((active7 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 501, 78); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x4L, active2, 0x8000300000L, active3, 0L, active4, 0L, active5, 0x30000040010L, active6, 0x10000000000000L, active7, 0L, active8, 0x890000002L, active9, 0xe000000000400000L, active10, 0L, active11, 0x2000L); + if ((active3 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_3(5, 237, 78); + else if ((active6 & 0x20000000L) != 0L) + return jjStartNfaWithStates_3(5, 413, 78); + else if ((active7 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 510, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x4L, active2, 0x80003000000L, active3, 0L, active4, 0L, active5, 0x600000800200L, active6, 0x400000000000000L, active7, 0L, active8, 0x112000000400L, active9, 0x80000000L, active10, 0x1c0L, active11, 0x800000L); case 77: case 109: - if ((active9 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(5, 593, 78); - else if ((active9 & 0x80000000L) != 0L) + if ((active9 & 0x4000000L) != 0L) + return jjStartNfaWithStates_3(5, 602, 78); + else if ((active9 & 0x10000000000L) != 0L) { - jjmatchedKind = 607; + jjmatchedKind = 616; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0x4L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000000000L, active9, 0x300002000L, active10, 0x4000L, active11, 0L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0x42L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x60000400008L, active10, 0x1000000L, active11, 0L); case 78: case 110: if ((active0 & 0x80L) != 0L) @@ -18085,74 +18188,74 @@ else if ((active1 & 0x800000L) != 0L) jjmatchedKind = 87; jjmatchedPos = 5; } - else if ((active2 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(5, 171, 78); - else if ((active3 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(5, 227, 78); - else if ((active5 & 0x8000000000000000L) != 0L) + else if ((active2 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_3(5, 175, 78); + else if ((active3 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_3(5, 231, 78); + else if ((active6 & 0x10L) != 0L) { - jjmatchedKind = 383; + jjmatchedKind = 388; jjmatchedPos = 5; } - else if ((active7 & 0x200000L) != 0L) + else if ((active7 & 0x8000000L) != 0L) { - jjmatchedKind = 469; + jjmatchedKind = 475; jjmatchedPos = 5; } - else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 696, 78); - return jjMoveStringLiteralDfa6_3(active0, 0x4040000020000000L, active1, 0xffe0040007000000L, active2, 0x20050000000001L, active3, 0x1000L, active4, 0x400000001800L, active5, 0x880004000L, active6, 0x23c1000001L, active7, 0x43c0fc00000L, active8, 0x3fff000000001L, active9, 0x8000000000000L, active10, 0xa0000002000L, active11, 0x108000L); + else if ((active11 & 0x4L) != 0L) + return jjStartNfaWithStates_3(5, 706, 78); + return jjMoveStringLiteralDfa6_3(active0, 0x4040000020000000L, active1, 0xffc0080007000000L, active2, 0x200500000000003L, active3, 0x10000L, active4, 0x8000000018000L, active5, 0x11000080000L, active6, 0x8f040000020L, active7, 0x10f03f0000000L, active8, 0x7ffe00000000200L, active9, 0x1000000000000000L, active10, 0x28000000800000L, active11, 0x42000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_3(active0, 0x1800000000000000L, active1, 0L, active2, 0x4000008000L, active3, 0L, active4, 0x4000000c0000000L, active5, 0L, active6, 0x10000000000L, active7, 0x200108000000000L, active8, 0x1c000420000030L, active9, 0x6000000000000L, active10, 0x308000100000L, active11, 0x20000L); + return jjMoveStringLiteralDfa6_3(active0, 0x1800000000000000L, active1, 0L, active2, 0x40000080000L, active3, 0L, active4, 0x8000000c00000000L, active5, 0L, active6, 0x400000000000L, active7, 0x2c200000000000L, active8, 0x3800084000006004L, active9, 0xc00000000000000L, active10, 0xc2000040000000L, active11, 0x8000000L); case 80: case 112: - if ((active7 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(5, 481, 78); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000L, active11, 0x808L); + if ((active7 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_3(5, 487, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400000L, active11, 0x202000L); case 81: case 113: - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x2L) != 0L) + if ((active2 & 0x4L) != 0L) { - jjmatchedKind = 129; + jjmatchedKind = 130; jjmatchedPos = 5; } - else if ((active3 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(5, 208, 78); - else if ((active5 & 0x40L) != 0L) - return jjStartNfaWithStates_3(5, 326, 78); - else if ((active5 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 369, 78); - else if ((active7 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(5, 493, 78); - else if ((active8 & 0x4L) != 0L) + else if ((active3 & 0x100000L) != 0L) + return jjStartNfaWithStates_3(5, 212, 78); + else if ((active5 & 0x800L) != 0L) + return jjStartNfaWithStates_3(5, 331, 78); + else if ((active5 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 374, 78); + else if ((active7 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 502, 78); + else if ((active8 & 0x800L) != 0L) { - jjmatchedKind = 514; + jjmatchedKind = 523; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_3(active0, 0x8000000800000000L, active1, 0x9f800000000L, active2, 0x800000000c80004L, active3, 0x8000000000000L, active4, 0x14000000000000L, active5, 0x10000000000020L, active6, 0x5800010000000L, active7, 0x40080L, active8, 0x1000008L, active9, 0x2006000000L, active10, 0L, active11, 0x200L); + return jjMoveStringLiteralDfa6_3(active0, 0x8000000800000000L, active1, 0x11f800000000L, active2, 0x800000000c800008L, active3, 0x80000000000000L, active4, 0x280000000000000L, active5, 0x200000000000400L, active6, 0x160000400000000L, active7, 0x1002000L, active8, 0x200001000L, active9, 0x400c00000000L, active10, 0L, active11, 0x80000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) return jjStartNfaWithStates_3(5, 16, 78); - else if ((active2 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 190, 78); - else if ((active3 & 0x100L) != 0L) - return jjStartNfaWithStates_3(5, 200, 78); - else if ((active3 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 241, 78); - else if ((active5 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(5, 344, 78); - else if ((active5 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 374, 78); - else if ((active6 & 0x20L) != 0L) - return jjStartNfaWithStates_3(5, 389, 78); - else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(5, 677, 78); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x200000008000L, active2, 0L, active3, 0x10000000L, active4, 0x18200L, active5, 0x4003000L, active6, 0x8000400000000000L, active7, 0x2f00L, active8, 0xc000000000000000L, active9, 0x10000000ffL, active10, 0x800000000000L, active11, 0x6000000L); + else if ((active3 & 0x4L) != 0L) + return jjStartNfaWithStates_3(5, 194, 78); + else if ((active3 & 0x1000L) != 0L) + return jjStartNfaWithStates_3(5, 204, 78); + else if ((active3 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 245, 78); + else if ((active5 & 0x20000000L) != 0L) + return jjStartNfaWithStates_3(5, 349, 78); + else if ((active5 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 379, 78); + else if ((active6 & 0x800L) != 0L) + return jjStartNfaWithStates_3(5, 395, 78); + else if ((active10 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_3(5, 687, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x400000008000L, active2, 0L, active3, 0x100000000L, active4, 0x2000182000L, active5, 0x80060000L, active6, 0x10000000000000L, active7, 0xbc020L, active8, 0L, active9, 0x20000001ff80L, active10, 0x200000000000000L, active11, 0x1800000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -18164,64 +18267,64 @@ else if ((active1 & 0x8000000L) != 0L) jjmatchedKind = 91; jjmatchedPos = 5; } - else if ((active3 & 0x4L) != 0L) + else if ((active3 & 0x40L) != 0L) { - jjmatchedKind = 194; + jjmatchedKind = 198; jjmatchedPos = 5; } - else if ((active3 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(5, 216, 78); - else if ((active3 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 254, 78); - else if ((active4 & 0x400L) != 0L) - return jjStartNfaWithStates_3(5, 266, 78); - else if ((active5 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 371, 78); + else if ((active3 & 0x10000000L) != 0L) + return jjStartNfaWithStates_3(5, 220, 78); + else if ((active4 & 0x4L) != 0L) + return jjStartNfaWithStates_3(5, 258, 78); + else if ((active4 & 0x4000L) != 0L) + return jjStartNfaWithStates_3(5, 270, 78); else if ((active5 & 0x100000000000000L) != 0L) return jjStartNfaWithStates_3(5, 376, 78); - else if ((active6 & 0x100L) != 0L) - return jjStartNfaWithStates_3(5, 392, 78); - else if ((active7 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(5, 468, 78); - else if ((active7 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 508, 78); - else if ((active9 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(5, 599, 78); - else if ((active10 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(5, 662, 78); - else if ((active10 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(5, 665, 78); - return jjMoveStringLiteralDfa6_3(active0, 0x2000010000000L, active1, 0xf03e0000L, active2, 0x20000000080L, active3, 0x8000000088L, active4, 0x300000000800000L, active5, 0L, active6, 0x800400000L, active7, 0x4000000000004000L, active8, 0L, active9, 0x1f80040080000L, active10, 0L, active11, 0x400000L); + else if ((active5 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_3(5, 381, 78); + else if ((active6 & 0x4000L) != 0L) + return jjStartNfaWithStates_3(5, 398, 78); + else if ((active7 & 0x4000000L) != 0L) + return jjStartNfaWithStates_3(5, 474, 78); + else if ((active8 & 0x20L) != 0L) + return jjStartNfaWithStates_3(5, 517, 78); + else if ((active9 & 0x100000000L) != 0L) + return jjStartNfaWithStates_3(5, 608, 78); + else if ((active10 & 0x100000000L) != 0L) + return jjStartNfaWithStates_3(5, 672, 78); + else if ((active10 & 0x800000000L) != 0L) + return jjStartNfaWithStates_3(5, 675, 78); + return jjMoveStringLiteralDfa6_3(active0, 0x2000010000000L, active1, 0xf03e0000L, active2, 0x200000000200L, active3, 0x80000000880L, active4, 0x6000000008000000L, active5, 0L, active6, 0x20010000000L, active7, 0x100000L, active8, 0x80L, active9, 0x3f0008010000000L, active10, 0L, active11, 0x100000000L); case 85: case 117: - return jjMoveStringLiteralDfa6_3(active0, 0x20000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000L, active8, 0x80000000000000L, active9, 0L, active10, 0x200000000000000L, active11, 0L); + return jjMoveStringLiteralDfa6_3(active0, 0x20000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0x8L); case 86: case 118: - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80200020000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x18000L, active10, 0x8000000000000L, active11, 0L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1004000200000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3000002L, active10, 0x2000000000000000L, active11, 0L); case 87: case 119: - if ((active4 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(5, 277, 78); - else if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(5, 694, 78); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x400000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000L, active11, 0L); + if ((active4 & 0x2000000L) != 0L) + return jjStartNfaWithStates_3(5, 281, 78); + else if ((active11 & 0x1L) != 0L) + return jjStartNfaWithStates_3(5, 704, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0x10000L, active3, 0x4000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L); case 88: case 120: - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0x400000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x100000000000L) != 0L) return jjStartNfaWithStates_3(5, 44, 78); - else if ((active3 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(5, 223, 78); - else if ((active5 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(5, 342, 78); - else if ((active9 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(5, 605, 78); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + else if ((active3 & 0x800000000L) != 0L) + return jjStartNfaWithStates_3(5, 227, 78); + else if ((active5 & 0x8000000L) != 0L) + return jjStartNfaWithStates_3(5, 347, 78); + else if ((active9 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_3(5, 614, 78); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000000000L); default : break; } @@ -18239,40 +18342,40 @@ private final int jjMoveStringLiteralDfa6_3(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active7 & 0x80L) != 0L) - return jjStartNfaWithStates_3(6, 455, 78); + if ((active7 & 0x2000L) != 0L) + return jjStartNfaWithStates_3(6, 461, 78); break; case 95: - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0x8L, active9, 0x300058000L, active10, 0L, active11, 0x4000L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1000L, active9, 0x6000b000000L, active10, 0L, active11, 0x1000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_3(active0, 0x40000000400000L, active1, 0xf800000000L, active2, 0x800000000400000L, active3, 0x1800000000001000L, active4, 0x80200020000L, active5, 0x80000000L, active6, 0L, active7, 0x80000004000L, active8, 0x700000040000000L, active9, 0xe001f0b000000000L, active10, 0x20000000000L, active11, 0x10000000L); + return jjMoveStringLiteralDfa7_3(active0, 0x40000000400000L, active1, 0xf800000000L, active2, 0x8000000004000000L, active3, 0x8000000000010000L, active4, 0x1004000200001L, active5, 0x1000000000L, active6, 0L, active7, 0x12000000100000L, active8, 0x8000000000L, active9, 0x3e160000000000eL, active10, 0x80000000001c0L, active11, 0x4000000000L); case 66: case 98: - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0x400000000L, active3, 0L, active4, 0xc0000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0x4000000000L, active3, 0L, active4, 0xc00000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000000000000L, active11, 0L); case 67: case 99: - if ((active2 & 0x2000000000000L) != 0L) + if ((active2 & 0x20000000000000L) != 0L) { - jjmatchedKind = 177; + jjmatchedKind = 181; jjmatchedPos = 6; } - else if ((active5 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 370, 78); - return jjMoveStringLiteralDfa7_3(active0, 0x800000L, active1, 0x8000L, active2, 0xc060000008000L, active3, 0x8800000000000L, active4, 0x800L, active5, 0x40000000L, active6, 0L, active7, 0x4000100080000L, active8, 0x200000001L, active9, 0x780000000000000L, active10, 0L, active11, 0L); + else if ((active5 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 375, 78); + return jjMoveStringLiteralDfa7_3(active0, 0x800000L, active1, 0x8000L, active2, 0xc0600000080000L, active3, 0x88000000000000L, active4, 0x2000008000L, active5, 0x800000000L, active6, 0L, active7, 0x800004002000000L, active8, 0x40000000200L, active9, 0L, active10, 0xfL, active11, 0L); case 68: case 100: - if ((active2 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(6, 153, 78); - else if ((active2 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(6, 160, 78); - else if ((active3 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(6, 237, 78); - else if ((active4 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 319, 78); - else if ((active10 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(6, 661, 78); - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x6000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0x800000002000L, active11, 0L); + if ((active2 & 0x20000000L) != 0L) + return jjStartNfaWithStates_3(6, 157, 78); + else if ((active2 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_3(6, 164, 78); + else if ((active3 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 241, 78); + else if ((active5 & 0x10L) != 0L) + return jjStartNfaWithStates_3(6, 324, 78); + else if ((active10 & 0x80000000L) != 0L) + return jjStartNfaWithStates_3(6, 671, 78); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x6000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000L, active7, 0L, active8, 0L, active9, 0x1000000000L, active10, 0x200000000800000L, active11, 0L); case 69: case 101: if ((active0 & 0x80000000000000L) != 0L) @@ -18282,39 +18385,39 @@ else if ((active10 & 0x200000L) != 0L) } else if ((active1 & 0x20000L) != 0L) return jjStartNfaWithStates_3(6, 81, 78); - else if ((active2 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(6, 147, 78); - else if ((active3 & 0x10L) != 0L) - return jjStartNfaWithStates_3(6, 196, 78); - else if ((active3 & 0x80L) != 0L) - return jjStartNfaWithStates_3(6, 199, 78); - else if ((active4 & 0x1L) != 0L) - return jjStartNfaWithStates_3(6, 256, 78); - else if ((active6 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(6, 419, 78); - else if ((active6 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(6, 431, 78); - else if ((active7 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(6, 461, 78); - else if ((active7 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(6, 463, 78); - else if ((active7 & 0x400000000L) != 0L) + else if ((active2 & 0x800000L) != 0L) + return jjStartNfaWithStates_3(6, 151, 78); + else if ((active3 & 0x100L) != 0L) + return jjStartNfaWithStates_3(6, 200, 78); + else if ((active3 & 0x800L) != 0L) + return jjStartNfaWithStates_3(6, 203, 78); + else if ((active4 & 0x10L) != 0L) + return jjStartNfaWithStates_3(6, 260, 78); + else if ((active6 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_3(6, 425, 78); + else if ((active6 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 437, 78); + else if ((active7 & 0x80000L) != 0L) + return jjStartNfaWithStates_3(6, 467, 78); + else if ((active7 & 0x200000L) != 0L) + return jjStartNfaWithStates_3(6, 469, 78); + else if ((active7 & 0x10000000000L) != 0L) { - jjmatchedKind = 482; + jjmatchedKind = 488; jjmatchedPos = 6; } - else if ((active10 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(6, 652, 78); - else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(6, 725, 78); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(6, 726, 78); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(6, 731, 78); - return jjMoveStringLiteralDfa7_3(active0, 0x100000000000000L, active1, 0x4L, active2, 0x400000000800000L, active3, 0x2000000010000000L, active4, 0x10000000018004L, active5, 0x10000004103720L, active6, 0x10100000000000L, active7, 0x3803c00000L, active8, 0x400000L, active9, 0x2000L, active10, 0x80000f0000000L, active11, 0x2200L); + else if ((active10 & 0x400000L) != 0L) + return jjStartNfaWithStates_3(6, 662, 78); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_3(6, 735, 78); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_3(6, 736, 78); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_3(6, 741, 78); + return jjMoveStringLiteralDfa7_3(active0, 0x100000000000000L, active1, 0x4L, active2, 0x4000000008030000L, active3, 0x100000000L, active4, 0x200000000180042L, active5, 0x20000008206e400L, active6, 0x404000000000000L, active7, 0xe00f0000000L, active8, 0x80000000L, active9, 0x400000L, active10, 0x200003c000000000L, active11, 0x880000L); case 70: case 102: - return jjMoveStringLiteralDfa7_3(active0, 0x8000000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_3(active0, 0x8000000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x800000000000000L) != 0L) @@ -18324,135 +18427,140 @@ else if ((active11 & 0x8000000L) != 0L) } else if ((active0 & 0x4000000000000000L) != 0L) return jjStartNfaWithStates_3(6, 62, 78); - else if ((active4 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(6, 302, 78); - else if ((active5 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(6, 355, 78); - else if ((active6 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(6, 408, 78); - else if ((active6 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(6, 421, 78); - else if ((active7 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(6, 490, 78); - else if ((active10 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(6, 683, 78); - else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(6, 719, 78); - return jjMoveStringLiteralDfa7_3(active0, 0x1000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0x80L); + else if ((active4 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 307, 78); + else if ((active5 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_3(6, 360, 78); + else if ((active6 & 0x40000000L) != 0L) + return jjStartNfaWithStates_3(6, 414, 78); + else if ((active6 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_3(6, 427, 78); + else if ((active7 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 496, 78); + else if ((active10 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 693, 78); + else if ((active11 & 0x2000000L) != 0L) + return jjStartNfaWithStates_3(6, 729, 78); + return jjMoveStringLiteralDfa7_3(active0, 0x1000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0x20000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) return jjStartNfaWithStates_3(6, 49, 78); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(6, 730, 78); - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_3(6, 740, 78); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_3(active0, 0x810000000L, active1, 0x100000e03c0000L, active2, 0x2000001000L, active3, 0x400028L, active4, 0x300000000800202L, active5, 0x30000000000L, active6, 0x8000600000400000L, active7, 0x4000100004000000L, active8, 0xc0000000001c0002L, active9, 0x400060000ffL, active10, 0xc000L, active11, 0x10020L); + return jjMoveStringLiteralDfa7_3(active0, 0x810000000L, active1, 0x200000e03c0000L, active2, 0x20000000100L, active3, 0x4000280L, active4, 0x6000000008002020L, active5, 0x600000000000L, active6, 0x18000010000000L, active7, 0x20000100000020L, active8, 0x38000480L, active9, 0x8000c0001ff80L, active10, 0x3000000L, active11, 0x4008000L); case 76: case 108: - if ((active2 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(6, 146, 78); - else if ((active3 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(6, 229, 78); - else if ((active4 & 0x10L) != 0L) + if ((active2 & 0x400000L) != 0L) + return jjStartNfaWithStates_3(6, 150, 78); + else if ((active3 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_3(6, 233, 78); + else if ((active4 & 0x100L) != 0L) { - jjmatchedKind = 260; + jjmatchedKind = 264; jjmatchedPos = 6; } - else if ((active4 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(6, 300, 78); - else if ((active5 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(6, 352, 78); - else if ((active6 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(6, 405, 78); - return jjMoveStringLiteralDfa7_3(active0, 0x20000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20L, active5, 0x20480000000000L, active6, 0x10L, active7, 0x100L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active4 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 305, 78); + else if ((active5 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_3(6, 357, 78); + else if ((active6 & 0x200L) != 0L) + { + jjmatchedKind = 393; + jjmatchedPos = 6; + } + else if ((active6 & 0x8000000L) != 0L) + return jjStartNfaWithStates_3(6, 411, 78); + return jjMoveStringLiteralDfa7_3(active0, 0x20000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200L, active5, 0x409000000000000L, active6, 0x400L, active7, 0x4000L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa7_3(active0, 0x21000000L, active1, 0L, active2, 0xf00L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x10000000000L, active8, 0x1880000000000000L, active9, 0L, active10, 0x10000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_3(active0, 0x21000000L, active1, 0L, active2, 0x7c00L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0x31L, active10, 0x4000000000000L, active11, 0L); case 78: case 110: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_3(6, 42, 78); else if ((active0 & 0x800000000000L) != 0L) return jjStartNfaWithStates_3(6, 47, 78); - else if ((active3 & 0x400L) != 0L) - return jjStartNfaWithStates_3(6, 202, 78); - else if ((active3 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(6, 217, 78); - else if ((active3 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(6, 218, 78); - else if ((active6 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(6, 412, 78); - else if ((active6 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(6, 424, 78); - else if ((active7 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 505, 78); - else if ((active8 & 0x10L) != 0L) + else if ((active3 & 0x4000L) != 0L) + return jjStartNfaWithStates_3(6, 206, 78); + else if ((active3 & 0x20000000L) != 0L) + return jjStartNfaWithStates_3(6, 221, 78); + else if ((active3 & 0x40000000L) != 0L) + return jjStartNfaWithStates_3(6, 222, 78); + else if ((active6 & 0x400000000L) != 0L) + return jjStartNfaWithStates_3(6, 418, 78); + else if ((active6 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_3(6, 430, 78); + else if ((active8 & 0x4L) != 0L) + return jjStartNfaWithStates_3(6, 514, 78); + else if ((active8 & 0x2000L) != 0L) { - jjmatchedKind = 516; + jjmatchedKind = 525; jjmatchedPos = 6; } - else if ((active10 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(6, 659, 78); - else if ((active10 & 0x100000000000L) != 0L) + else if ((active10 & 0x20000000L) != 0L) + return jjStartNfaWithStates_3(6, 669, 78); + else if ((active10 & 0x40000000000000L) != 0L) { - jjmatchedKind = 684; + jjmatchedKind = 694; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x20000000000L, active2, 0x100010000000000L, active3, 0x1000000000000L, active4, 0L, active5, 0x4002L, active6, 0x8L, active7, 0x8000000000046L, active8, 0x201c000005004020L, active9, 0x46000800000000L, active10, 0x200000000000L, active11, 0x100L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x60000000000L, active2, 0x1000100000000000L, active3, 0x10000000000000L, active4, 0L, active5, 0x80040L, active6, 0x100L, active7, 0x1000000000001180L, active8, 0x3800000a00804000L, active9, 0x8c00100000000040L, active10, 0x80000000000000L, active11, 0x40000L); case 79: case 111: - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x1000L, active2, 0x8000000000L, active3, 0x400000000L, active4, 0L, active5, 0L, active6, 0x60000000000L, active7, 0x20L, active8, 0x8b0000000L, active9, 0x1800000000000000L, active10, 0x4000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x1000L, active2, 0x80000000000L, active3, 0x4000000000L, active4, 0L, active5, 0L, active6, 0x1800000000000L, active7, 0x800L, active8, 0x116000000000L, active9, 0L, active10, 0x1000000000030L, active11, 0L); case 80: case 112: - if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(6, 679, 78); - return jjMoveStringLiteralDfa7_3(active0, 0x10000000000L, active1, 0xa00000000000L, active2, 0x1800000000L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0x400L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active10 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 689, 78); + return jjMoveStringLiteralDfa7_3(active0, 0x10000000000L, active1, 0x1400000000000L, active2, 0x18000000000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x10000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(6, 154, 78); - else if ((active4 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(6, 270, 78); - else if ((active4 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(6, 275, 78); - else if ((active4 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(6, 278, 78); - else if ((active4 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 314, 78); - else if ((active6 & 0x100000000000000L) != 0L) + if ((active2 & 0x40000000L) != 0L) + return jjStartNfaWithStates_3(6, 158, 78); + else if ((active4 & 0x40000L) != 0L) + return jjStartNfaWithStates_3(6, 274, 78); + else if ((active4 & 0x800000L) != 0L) + return jjStartNfaWithStates_3(6, 279, 78); + else if ((active4 & 0x4000000L) != 0L) + return jjStartNfaWithStates_3(6, 282, 78); + else if ((active4 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 319, 78); + else if ((active6 & 0x4000000000000000L) != 0L) { - jjmatchedKind = 440; + jjmatchedKind = 446; jjmatchedPos = 6; } - else if ((active8 & 0x400L) != 0L) - return jjStartNfaWithStates_3(6, 522, 78); - else if ((active10 & 0x2L) != 0L) + else if ((active8 & 0x80000L) != 0L) + return jjStartNfaWithStates_3(6, 531, 78); + else if ((active10 & 0x400L) != 0L) { - jjmatchedKind = 641; + jjmatchedKind = 650; jjmatchedPos = 6; } - else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(6, 682, 78); - else if ((active10 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 699, 78); - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0x1000000020000080L, active3, 0x8020000000L, active4, 0x18000000L, active5, 0x4L, active6, 0x200000002000000L, active7, 0L, active8, 0L, active9, 0x80040000300L, active10, 0x5cL, active11, 0x20000L); + else if ((active10 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 692, 78); + else if ((active11 & 0x20L) != 0L) + return jjStartNfaWithStates_3(6, 709, 78); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0x200000200L, active3, 0x80200000001L, active4, 0x180000000L, active5, 0x80L, active6, 0x8000000080000000L, active7, 0x8000000000000L, active8, 0L, active9, 0x10008000060000L, active10, 0xb800L, active11, 0x8000000L); case 83: case 115: - if ((active5 & 0x1L) != 0L) - return jjStartNfaWithStates_3(6, 320, 78); - else if ((active5 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(6, 337, 78); - else if ((active6 & 0x1L) != 0L) - return jjStartNfaWithStates_3(6, 384, 78); - else if ((active7 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(6, 475, 78); - else if ((active7 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 504, 78); - else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_3(6, 707, 78); - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x200000L, active10, 0L, active11, 0x40L); + if ((active5 & 0x20L) != 0L) + return jjStartNfaWithStates_3(6, 325, 78); + else if ((active5 & 0x400000L) != 0L) + return jjStartNfaWithStates_3(6, 342, 78); + else if ((active6 & 0x20L) != 0L) + return jjStartNfaWithStates_3(6, 389, 78); + else if ((active7 & 0x200000000L) != 0L) + return jjStartNfaWithStates_3(6, 481, 78); + else if ((active8 & 0x2L) != 0L) + return jjStartNfaWithStates_3(6, 513, 78); + else if ((active11 & 0x2000L) != 0L) + return jjStartNfaWithStates_3(6, 717, 78); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x2000000000000L, active2, 0x40000000040L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000000L, active8, 0L, active9, 0x40000000L, active10, 0x40000L, active11, 0x10000L); case 84: case 116: if ((active1 & 0x400000L) != 0L) @@ -18462,64 +18570,64 @@ else if ((active1 & 0x100000000L) != 0L) jjmatchedKind = 96; jjmatchedPos = 6; } - else if ((active1 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(6, 107, 78); - else if ((active1 & 0x20000000000000L) != 0L) + else if ((active1 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_3(6, 108, 78); + else if ((active1 & 0x40000000000000L) != 0L) { - jjmatchedKind = 117; + jjmatchedKind = 118; jjmatchedPos = 6; } - else if ((active2 & 0x100000L) != 0L) + else if ((active2 & 0x1000000L) != 0L) { - jjmatchedKind = 148; + jjmatchedKind = 152; jjmatchedPos = 6; } - else if ((active2 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 181, 78); - else if ((active3 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(6, 205, 78); - else if ((active6 & 0x40000000L) != 0L) + else if ((active2 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 185, 78); + else if ((active3 & 0x20000L) != 0L) + return jjStartNfaWithStates_3(6, 209, 78); + else if ((active6 & 0x1000000000L) != 0L) { - jjmatchedKind = 414; + jjmatchedKind = 420; jjmatchedPos = 6; } - else if ((active7 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(6, 465, 78); - else if ((active7 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(6, 466, 78); - else if ((active8 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(6, 539, 78); - else if ((active9 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 627, 78); - else if ((active10 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(6, 660, 78); - else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 697, 78); - return jjMoveStringLiteralDfa7_3(active0, 0x48002040L, active1, 0xffc00006100003f8L, active2, 0x200001L, active3, 0x100004000000000L, active4, 0x1008L, active5, 0L, active6, 0x3801fc000L, active7, 0x8400000000000000L, active8, 0x3fff100800000L, active9, 0x1400000L, active10, 0x100L, active11, 0x2000c14L); + else if ((active7 & 0x800000L) != 0L) + return jjStartNfaWithStates_3(6, 471, 78); + else if ((active7 & 0x1000000L) != 0L) + return jjStartNfaWithStates_3(6, 472, 78); + else if ((active8 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_3(6, 548, 78); + else if ((active9 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 636, 78); + else if ((active10 & 0x40000000L) != 0L) + return jjStartNfaWithStates_3(6, 670, 78); + else if ((active11 & 0x8L) != 0L) + return jjStartNfaWithStates_3(6, 707, 78); + return jjMoveStringLiteralDfa7_3(active0, 0x48002040L, active1, 0xff800006100003f8L, active2, 0x2000003L, active3, 0x1000040000000000L, active4, 0x10080L, active5, 0L, active6, 0xe007f00000L, active7, 0L, active8, 0x7ffe20100000108L, active9, 0x280000000L, active10, 0x20000L, active11, 0x800305000L); case 85: case 117: - return jjMoveStringLiteralDfa7_3(active0, 0x600000000L, active1, 0x50000000000L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0x40010L, active6, 0x20000000000000L, active7, 0x8000000000L, active8, 0x400000000L, active9, 0x80000L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa7_3(active0, 0x600000000L, active1, 0x90000000000L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0x800200L, active6, 0x800000000000000L, active7, 0x200000000000L, active8, 0x80000000000L, active9, 0x10000000L, active10, 0L, active11, 0x40000000L); case 86: case 118: - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0x1018L, active8, 0L, active9, 0x20000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0x40000000000000L, active7, 0x40600L, active8, 0L, active9, 0x4000000000000000L, active10, 0L, active11, 0L); case 88: case 120: - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0x600L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0x18000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_3(6, 63, 78); - else if ((active4 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 306, 78); - else if ((active6 & 0x800L) != 0L) - return jjStartNfaWithStates_3(6, 395, 78); - else if ((active6 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 434, 78); - else if ((active6 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(6, 439, 78); - else if ((active10 & 0x200L) != 0L) - return jjStartNfaWithStates_3(6, 649, 78); - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + else if ((active4 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 311, 78); + else if ((active6 & 0x20000L) != 0L) + return jjStartNfaWithStates_3(6, 401, 78); + else if ((active6 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 440, 78); + else if ((active6 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_3(6, 445, 78); + else if ((active10 & 0x80000L) != 0L) + return jjStartNfaWithStates_3(6, 659, 78); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; } @@ -18537,36 +18645,36 @@ private final int jjMoveStringLiteralDfa7_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa8_3(active0, 0x1000000000000000L, active1, 0xffc0000006000000L, active2, 0xc000000000001L, active3, 0L, active4, 0L, active5, 0x700L, active6, 0x200000000L, active7, 0x3800000000L, active8, 0xc000000000000020L, active9, 0xffL, active10, 0x1cL, active11, 0L); + return jjMoveStringLiteralDfa8_3(active0, 0x1000000000000000L, active1, 0xff80000006000000L, active2, 0xc0000000000003L, active3, 0L, active4, 0L, active5, 0xe000L, active6, 0x8000000000L, active7, 0xe0000000000L, active8, 0x4000L, active9, 0x1ff80L, active10, 0x3800L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_3(active0, 0x10001000000L, active1, 0x1000000000000L, active2, 0x20008000L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000L, active8, 0x20000804000000L, active9, 0x800040000L, active10, 0x800000000000L, active11, 0x100L); + return jjMoveStringLiteralDfa8_3(active0, 0x10001000000L, active1, 0x2000000000000L, active2, 0x2000a0000L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1800000000000000L, active8, 0x4000100800000000L, active9, 0x100008000000L, active10, 0x200000000000000L, active11, 0x40000L); case 66: case 98: - if ((active8 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(7, 540, 78); - else if ((active8 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(7, 543, 78); - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x400000L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x10000004000L, active8, 0x400000000L, active9, 0x100L, active10, 0L, active11, 0L); + if ((active8 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_3(7, 549, 78); + else if ((active8 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_3(7, 552, 78); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x4000000L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0L, active7, 0x400000100000L, active8, 0x80000000000L, active9, 0x20000L, active10, 0L, active11, 0L); case 67: case 99: - if ((active2 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 186, 80); - else if ((active8 & 0x40000L) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 190, 80); + else if ((active8 & 0x8000000L) != 0L) { - jjmatchedKind = 530; + jjmatchedKind = 539; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x10000000000L, active2, 0L, active3, 0x10000000L, active4, 0x18000L, active5, 0x3000L, active6, 0L, active7, 0x10000000000006L, active8, 0x180000L, active9, 0x200L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x10000000000L, active2, 0L, active3, 0x100000000L, active4, 0x180000L, active5, 0x60000L, active6, 0L, active7, 0x2000000000000180L, active8, 0x30000000L, active9, 0x40000L, active10, 0L, active11, 0L); case 68: case 100: if ((active0 & 0x100000000000000L) != 0L) return jjStartNfaWithStates_3(7, 56, 78); - else if ((active2 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(7, 151, 78); - else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(7, 721, 78); - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3c00000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + else if ((active2 & 0x8000000L) != 0L) + return jjStartNfaWithStates_3(7, 155, 78); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_3(7, 731, 78); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000f0000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x40L) != 0L) @@ -18575,188 +18683,193 @@ else if ((active0 & 0x2000L) != 0L) return jjStartNfaWithStates_3(7, 13, 78); else if ((active1 & 0x8000L) != 0L) return jjStartNfaWithStates_3(7, 79, 78); - else if ((active1 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(7, 106, 78); - else if ((active2 & 0x20L) != 0L) - return jjStartNfaWithStates_3(7, 133, 78); - else if ((active2 & 0x100L) != 0L) + else if ((active1 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_3(7, 107, 78); + else if ((active2 & 0x40L) != 0L) + return jjStartNfaWithStates_3(7, 134, 78); + else if ((active2 & 0x400L) != 0L) { - jjmatchedKind = 136; + jjmatchedKind = 138; jjmatchedPos = 7; } - else if ((active2 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(7, 162, 78); - else if ((active4 & 0x800L) != 0L) - return jjStartNfaWithStates_3(7, 267, 78); - else if ((active4 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(7, 293, 78); - else if ((active4 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(7, 296, 78); - else if ((active5 & 0x10L) != 0L) - return jjStartNfaWithStates_3(7, 324, 78); - else if ((active5 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(7, 338, 78); - else if ((active5 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(7, 366, 78); - else if ((active6 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 432, 78); - else if ((active7 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(7, 460, 78); - else if ((active8 & 0x1L) != 0L) - return jjStartNfaWithStates_3(7, 512, 78); - else if ((active8 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(7, 535, 78); + else if ((active2 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_3(7, 166, 78); + else if ((active4 & 0x8000L) != 0L) + return jjStartNfaWithStates_3(7, 271, 78); + else if ((active4 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_3(7, 298, 78); + else if ((active4 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_3(7, 301, 78); + else if ((active5 & 0x200L) != 0L) + return jjStartNfaWithStates_3(7, 329, 78); + else if ((active5 & 0x800000L) != 0L) + return jjStartNfaWithStates_3(7, 343, 78); + else if ((active5 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 371, 78); + else if ((active6 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 438, 78); + else if ((active7 & 0x40000L) != 0L) + return jjStartNfaWithStates_3(7, 466, 78); + else if ((active8 & 0x200L) != 0L) + return jjStartNfaWithStates_3(7, 521, 78); else if ((active8 & 0x100000000L) != 0L) return jjStartNfaWithStates_3(7, 544, 78); - else if ((active8 & 0x800000000000000L) != 0L) + else if ((active8 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_3(7, 553, 78); + else if ((active9 & 0x10L) != 0L) { - jjmatchedKind = 571; + jjmatchedKind = 580; jjmatchedPos = 7; } - else if ((active10 & 0x100L) != 0L) - return jjStartNfaWithStates_3(7, 648, 78); - else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_3(7, 706, 78); - return jjMoveStringLiteralDfa8_3(active0, 0x20000000L, active1, 0x100003f8L, active2, 0x10000000e00L, active3, 0x4000000000L, active4, 0x100000000L, active5, 0x20000000000004L, active6, 0x1fc000L, active7, 0L, active8, 0x1083fff000000000L, active9, 0x26000000000000L, active10, 0x2000L, active11, 0x800L); + else if ((active10 & 0x20000L) != 0L) + return jjStartNfaWithStates_3(7, 657, 78); + else if ((active11 & 0x1000L) != 0L) + return jjStartNfaWithStates_3(7, 716, 78); + return jjMoveStringLiteralDfa8_3(active0, 0x20000000L, active1, 0x100003f8L, active2, 0x100000017800L, active3, 0x40000000000L, active4, 0x1000000000L, active5, 0x400000000000080L, active6, 0x7f00000L, active7, 0L, active8, 0x7ffe00000000000L, active9, 0x4c00000000000021L, active10, 0x800000L, active11, 0x200000L); case 70: case 102: - if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(7, 678, 78); - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x1000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000000L, active10, 0xf0000000L, active11, 0L); + if ((active10 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 688, 78); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x100L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0L, active9, 0x8000000000000L, active10, 0x3c000000000L, active11, 0L); case 71: case 103: - if ((active2 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 184, 78); - else if ((active3 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 240, 78); - else if ((active6 & 0x8L) != 0L) - return jjStartNfaWithStates_3(7, 387, 78); - else if ((active9 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 630, 78); - return jjMoveStringLiteralDfa8_3(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000000000L, active5, 0L, active6, 0x10000000000000L, active7, 0x18L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0x200L); + if ((active2 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 188, 78); + else if ((active3 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 244, 78); + else if ((active6 & 0x100L) != 0L) + return jjStartNfaWithStates_3(7, 392, 78); + else if ((active9 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 639, 78); + return jjMoveStringLiteralDfa8_3(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0x400000000000000L, active7, 0x600L, active8, 0x3800000000000000L, active9, 0L, active10, 0L, active11, 0x80000L); case 72: case 104: - if ((active2 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(7, 169, 78); - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_3(7, 173, 78); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x80000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_3(active0, 0x8000000L, active1, 0xfe00000800L, active2, 0L, active3, 0L, active4, 0x20001000L, active5, 0x4000L, active6, 0x180001010L, active7, 0L, active8, 0x203000000L, active9, 0x40400000L, active10, 0x200000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa8_3(active0, 0x8000000L, active1, 0xfe00000800L, active2, 0L, active3, 0L, active4, 0x200010000L, active5, 0x80000L, active6, 0x6000040400L, active7, 0L, active8, 0x40600000000L, active9, 0x8080000000L, active10, 0x80000000000000L, active11, 0x800000000L); case 74: case 106: - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0xc0000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0xc00000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 75: case 107: - if ((active7 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(7, 480, 78); + if ((active7 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_3(7, 486, 78); break; case 76: case 108: - if ((active3 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(7, 204, 78); - else if ((active4 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(7, 273, 78); - else if ((active5 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(7, 351, 78); - else if ((active8 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 569, 78); - else if ((active11 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(7, 717, 78); - return jjMoveStringLiteralDfa8_3(active0, 0x40020000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80200000020L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000020000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active3 & 0x10000L) != 0L) + return jjStartNfaWithStates_3(7, 208, 78); + else if ((active4 & 0x200000L) != 0L) + return jjStartNfaWithStates_3(7, 277, 78); + else if ((active5 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_3(7, 356, 78); + else if ((active9 & 0x4L) != 0L) + return jjStartNfaWithStates_3(7, 578, 78); + else if ((active11 & 0x800000L) != 0L) + return jjStartNfaWithStates_3(7, 727, 78); + return jjMoveStringLiteralDfa8_3(active0, 0x40020000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1004000000200L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000L, active9, 0x8L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0L, active4, 0x300000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0L, active4, 0x6000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3e0200000000000L, active10, 0L, active11, 0L); case 78: case 110: - if ((active3 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(7, 226, 78); - else if ((active6 & 0x20000000000L) != 0L) + if ((active3 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_3(7, 230, 78); + else if ((active6 & 0x800000000000L) != 0L) { - jjmatchedKind = 425; + jjmatchedKind = 431; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x1000004L, active2, 0x2000000004L, active3, 0x2000000000400020L, active4, 0x6L, active5, 0x10000000000000L, active6, 0x240000000000L, active7, 0x1108004000000L, active8, 0x8L, active9, 0x6002000L, active10, 0L, active11, 0x10010000L); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x1000004L, active2, 0x20000000008L, active3, 0x4000200L, active4, 0x62L, active5, 0x200000000000000L, active6, 0x9000000000000L, active7, 0x220200100000000L, active8, 0x1000L, active9, 0xc00400000L, active10, 0L, active11, 0x4004000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_3(active0, 0x10800000L, active1, 0xa000e03c0000L, active2, 0L, active3, 0x800020000008L, active4, 0x800008L, active5, 0x40000000L, active6, 0x400002400000L, active7, 0x8000000000000100L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa8_3(active0, 0x10800000L, active1, 0x14000e03c0000L, active2, 0L, active3, 0x8000200000080L, active4, 0x2008000080L, active5, 0x800000000L, active6, 0x10000090000000L, active7, 0x4000L, active8, 0x8000000000000100L, active9, 0L, active10, 0L, active11, 0x40000000L); case 80: case 112: - if ((active10 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(7, 680, 78); - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0x8000L, active10, 0L, active11, 0L); + if ((active10 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 690, 78); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0x1000000L, active10, 0L, active11, 0L); case 82: case 114: - if ((active8 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(7, 542, 78); - else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 691, 78); - return jjMoveStringLiteralDfa8_3(active0, 0x8040000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0x18000000L, active5, 0L, active6, 0x20000000000000L, active7, 0L, active8, 0x100000000000000L, active9, 0x1800002000080000L, active10, 0x20000000040L, active11, 0x80L); + if ((active8 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_3(7, 551, 78); + else if ((active10 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 701, 78); + return jjMoveStringLiteralDfa8_3(active0, 0x8040000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0x180000000L, active5, 0L, active6, 0x800000000000000L, active7, 0L, active8, 0L, active9, 0x400010000002L, active10, 0x8000000008030L, active11, 0x20000L); case 83: case 115: if ((active1 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(7, 105, 78); - else if ((active2 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(7, 149, 78); - else if ((active5 & 0x20L) != 0L) - return jjStartNfaWithStates_3(7, 325, 78); - else if ((active5 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(7, 340, 78); - else if ((active6 & 0x400L) != 0L) - return jjStartNfaWithStates_3(7, 394, 78); - else if ((active6 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(7, 428, 78); - else if ((active6 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 441, 78); - else if ((active9 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(7, 603, 78); - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x10000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x210000L, active10, 0L, active11, 0x4000L); + { + jjmatchedKind = 105; + jjmatchedPos = 7; + } + else if ((active2 & 0x2000000L) != 0L) + return jjStartNfaWithStates_3(7, 153, 78); + else if ((active5 & 0x400L) != 0L) + return jjStartNfaWithStates_3(7, 330, 78); + else if ((active5 & 0x2000000L) != 0L) + return jjStartNfaWithStates_3(7, 345, 78); + else if ((active6 & 0x10000L) != 0L) + return jjStartNfaWithStates_3(7, 400, 78); + else if ((active6 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 434, 78); + else if ((active6 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 447, 78); + else if ((active9 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_3(7, 612, 78); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x20040000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x42000000L, active10, 0L, active11, 0x1000000L); case 84: case 116: - if ((active2 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(7, 170, 78); - else if ((active5 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(7, 346, 78); - else if ((active7 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(7, 467, 78); - else if ((active8 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(7, 526, 78); - return jjMoveStringLiteralDfa8_3(active0, 0x600000000L, active1, 0L, active2, 0x1000005800000000L, active3, 0x1800000000000000L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0xe780000100000000L, active10, 0xc000L, active11, 0x20L); + if ((active2 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_3(7, 174, 78); + else if ((active5 & 0x80000000L) != 0L) + return jjStartNfaWithStates_3(7, 351, 78); + else if ((active7 & 0x2000000L) != 0L) + return jjStartNfaWithStates_3(7, 473, 78); + else if ((active8 & 0x800000L) != 0L) + return jjStartNfaWithStates_3(7, 535, 78); + else if ((active10 & 0x40000L) != 0L) + return jjStartNfaWithStates_3(7, 658, 78); + return jjMoveStringLiteralDfa8_3(active0, 0x600000000L, active1, 0L, active2, 0x58000000000L, active3, 0x8000000000000001L, active4, 0x2001L, active5, 0L, active6, 0L, active7, 0x1000L, active8, 0L, active9, 0x20000000000L, active10, 0x30001cfL, active11, 0x8000L); case 85: case 117: - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0x80000000002L, active6, 0L, active7, 0x20L, active8, 0L, active9, 0x80201000000L, active10, 0x20000000000000L, active11, 0L); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0x1000000000040L, active6, 0L, active7, 0x800L, active8, 0L, active9, 0x10040200000000L, active10, 0x8000000000000000L, active11, 0L); case 86: case 118: - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000000L, active7, 0x4000000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20L, active8, 0x80L, active9, 0L, active10, 0L, active11, 0L); case 87: case 119: - if ((active2 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(7, 167, 78); + if ((active2 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_3(7, 171, 78); break; case 88: case 120: - if ((active7 & 0x200L) != 0L) - return jjStartNfaWithStates_3(7, 457, 78); + if ((active7 & 0x8000L) != 0L) + return jjStartNfaWithStates_3(7, 463, 78); break; case 89: case 121: - if ((active3 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(7, 231, 78); - else if ((active3 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 248, 78); - else if ((active7 & 0x400L) != 0L) - return jjStartNfaWithStates_3(7, 458, 78); - else if ((active7 & 0x800L) != 0L) - return jjStartNfaWithStates_3(7, 459, 78); - else if ((active7 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(7, 491, 78); - else if ((active7 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(7, 506, 78); - else if ((active9 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(7, 615, 78); - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000000000L, active9, 0L, active10, 0L, active11, 0x450L); + if ((active3 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_3(7, 235, 78); + else if ((active3 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 252, 78); + else if ((active7 & 0x10000L) != 0L) + return jjStartNfaWithStates_3(7, 464, 78); + else if ((active7 & 0x20000L) != 0L) + return jjStartNfaWithStates_3(7, 465, 78); + else if ((active7 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 500, 78); + else if ((active8 & 0x8L) != 0L) + return jjStartNfaWithStates_3(7, 515, 78); + else if ((active9 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_3(7, 624, 78); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40L, active10, 0L, active11, 0x114000L); case 90: case 122: - return jjMoveStringLiteralDfa8_3(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x30000000000L, active6, 0L, active7, 0L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_3(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x600000000000L, active6, 0L, active7, 0L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); default : break; } @@ -18774,119 +18887,124 @@ private final int jjMoveStringLiteralDfa8_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0xe00L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000000000L, active7, 0x3c00000L, active8, 0x80000L, active9, 0x6000000200000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x40000000000L, active2, 0x7800L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0xf0000000L, active8, 0x10000000L, active9, 0xc00000040000000L, active10, 0L, active11, 0x4000L); case 65: case 97: - return jjMoveStringLiteralDfa9_3(active0, 0x8800000000L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0x18001000L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0xaL, active9, 0x10000L, active10, 0x40L, active11, 0L); + return jjMoveStringLiteralDfa9_3(active0, 0x8800000000L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0x180010000L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1400L, active9, 0x2000000L, active10, 0x8000L, active11, 0L); case 66: case 98: - if ((active8 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 566, 78); + if ((active8 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 575, 78); break; case 67: case 99: - if ((active9 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(8, 606, 78); - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x40000000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x10000000000004L, active6, 0L, active7, 0x800000000L, active8, 0x100000000000000L, active9, 0L, active10, 0x20000000000004L, active11, 0x2000000L); + if ((active9 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_3(8, 615, 78); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x80000000000000L, active2, 0x100000000000L, active3, 0L, active4, 0L, active5, 0x200000000000080L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0x2L, active10, 0x8000000000000800L, active11, 0x800000000L); case 68: case 100: if ((active1 & 0x10000000L) != 0L) return jjStartNfaWithStates_3(8, 92, 78); - else if ((active3 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(8, 230, 78); - else if ((active10 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(8, 653, 78); - else if ((active11 & 0x800L) != 0L) - return jjStartNfaWithStates_3(8, 715, 78); - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x180000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active3 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_3(8, 234, 78); + else if ((active10 & 0x800000L) != 0L) + return jjStartNfaWithStates_3(8, 663, 78); + else if ((active11 & 0x200000L) != 0L) + return jjStartNfaWithStates_3(8, 725, 78); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x300000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x200000000L) != 0L) { jjmatchedKind = 33; jjmatchedPos = 8; - } - else if ((active2 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 187, 78); - else if ((active3 & 0x800000000000000L) != 0L) + } + else if ((active2 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 191, 78); + else if ((active3 & 0x8000000000000000L) != 0L) { - jjmatchedKind = 251; + jjmatchedKind = 255; jjmatchedPos = 8; } - else if ((active4 & 0x100000000000000L) != 0L) + else if ((active4 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 312; + jjmatchedKind = 317; jjmatchedPos = 8; } - else if ((active5 & 0x10000000000L) != 0L) + else if ((active5 & 0x200000000000L) != 0L) { - jjmatchedKind = 360; + jjmatchedKind = 365; jjmatchedPos = 8; } - else if ((active5 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(8, 363, 78); - else if ((active6 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 437, 78); - else if ((active6 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 447, 78); - else if ((active7 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 510, 78); - else if ((active9 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(8, 595, 78); - else if ((active9 & 0x2000000000000000L) != 0L) + else if ((active5 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 368, 78); + else if ((active6 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 443, 78); + else if ((active7 & 0x20L) != 0L) + return jjStartNfaWithStates_3(8, 453, 78); + else if ((active8 & 0x80L) != 0L) + return jjStartNfaWithStates_3(8, 519, 78); + else if ((active9 & 0x10000000L) != 0L) + return jjStartNfaWithStates_3(8, 604, 78); + else if ((active10 & 0x40L) != 0L) { - jjmatchedKind = 637; + jjmatchedKind = 646; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_3(active0, 0x400000000L, active1, 0x800L, active2, 0L, active3, 0x1000000000000000L, active4, 0x2100010c0000000L, active5, 0x20000000000L, active6, 0x10000000000000L, active7, 0x10000000042L, active8, 0x20000000L, active9, 0x4000000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_3(active0, 0x400000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0x4200020c00000001L, active5, 0x400000000000L, active6, 0x400000000000000L, active7, 0x400000001080L, active8, 0x4000000000L, active9, 0L, active10, 0x80L, active11, 0L); case 70: case 102: - if ((active2 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(8, 140, 78); - else if ((active9 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(8, 618, 78); - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x100L) != 0L) + return jjStartNfaWithStates_3(8, 136, 78); + else if ((active9 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 627, 78); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x400000L) != 0L) return jjStartNfaWithStates_3(8, 22, 78); - else if ((active3 & 0x20L) != 0L) - return jjStartNfaWithStates_3(8, 197, 78); - else if ((active3 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(8, 214, 78); - else if ((active4 & 0x2L) != 0L) - return jjStartNfaWithStates_3(8, 257, 78); - else if ((active6 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(8, 429, 78); - else if ((active7 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(8, 474, 78); - else if ((active9 & 0x2000000L) != 0L) + else if ((active3 & 0x200L) != 0L) + return jjStartNfaWithStates_3(8, 201, 78); + else if ((active3 & 0x4000000L) != 0L) + return jjStartNfaWithStates_3(8, 218, 78); + else if ((active4 & 0x20L) != 0L) + return jjStartNfaWithStates_3(8, 261, 78); + else if ((active6 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 435, 78); + else if ((active7 & 0x100000000L) != 0L) + return jjStartNfaWithStates_3(8, 480, 78); + else if ((active9 & 0x400000000L) != 0L) { - jjmatchedKind = 601; + jjmatchedKind = 610; jjmatchedPos = 8; } - else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(8, 720, 78); - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x4L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0x4040000L, active10, 0L, active11, 0x10000000L); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_3(8, 730, 78); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x4L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0x808000000L, active10, 0L, active11, 0x4000000000L); case 72: case 104: - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x201L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000000L, active8, 0L, active9, 0x40200L, active10, 0L, active11, 0L); case 73: case 105: if ((active0 & 0x20000000000L) != 0L) return jjStartNfaWithStates_3(8, 41, 78); - return jjMoveStringLiteralDfa9_3(active0, 0x40000040000000L, active1, 0x1000L, active2, 0x1000006800000000L, active3, 0L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0x4L, active8, 0x2000000000000000L, active9, 0x8780000100000100L, active10, 0xf0008000L, active11, 0x4200L); + return jjMoveStringLiteralDfa9_3(active0, 0x40000040000000L, active1, 0x1000L, active2, 0x68000000000L, active3, 0x1L, active4, 0x2000L, active5, 0L, active6, 0L, active7, 0x8000000000100L, active8, 0L, active9, 0x20000020040L, active10, 0x3c00200010fL, active11, 0x1080000L); + case 75: + case 107: + if ((active2 & 0x10000L) != 0L) + return jjStartNfaWithStates_3(8, 144, 78); + break; case 76: case 108: - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0x400000L, active3, 0x80000L, active4, 0L, active5, 0x100L, active6, 0x180000000L, active7, 0x4000L, active8, 0x400000400000000L, active9, 0x20000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0x4000000L, active3, 0x800000L, active4, 0L, active5, 0x2000L, active6, 0x6000000000L, active7, 0x100000L, active8, 0x80000000000L, active9, 0x4000000000000008L, active10, 0L, active11, 0L); case 77: case 109: - if ((active9 & 0x800000000000000L) != 0L) + if ((active10 & 0x10L) != 0L) { - jjmatchedKind = 635; + jjmatchedKind = 644; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x1000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0L, active7, 0x8000000000000L, active8, 0x200000000L, active9, 0x100000080000000eL, active10, 0L, active11, 0x100L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x2000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40L, active6, 0L, active7, 0x1000000000000000L, active8, 0x40000000000L, active9, 0x100000001c00L, active10, 0x20L, active11, 0x40000L); case 78: case 110: if ((active0 & 0x10000000L) != 0L) @@ -18901,31 +19019,31 @@ else if ((active1 & 0x20000000L) != 0L) jjmatchedKind = 93; jjmatchedPos = 8; } - else if ((active3 & 0x8L) != 0L) - return jjStartNfaWithStates_3(8, 195, 78); - else if ((active4 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(8, 279, 78); - else if ((active6 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(8, 406, 78); - else if ((active6 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(8, 430, 78); - return jjMoveStringLiteralDfa9_3(active0, 0x1000000020800000L, active1, 0x20f8c0380000L, active2, 0x20000080L, active3, 0x800000000000L, active4, 0L, active5, 0x20000040000000L, active6, 0x1000L, active7, 0x1000000020L, active8, 0x3000000L, active9, 0x80000000000L, active10, 0x200000000008L, active11, 0x40L); + else if ((active3 & 0x80L) != 0L) + return jjStartNfaWithStates_3(8, 199, 78); + else if ((active4 & 0x8000000L) != 0L) + return jjStartNfaWithStates_3(8, 283, 78); + else if ((active6 & 0x10000000L) != 0L) + return jjStartNfaWithStates_3(8, 412, 78); + else if ((active6 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 436, 78); + return jjMoveStringLiteralDfa9_3(active0, 0x1000000020800000L, active1, 0x40f8c0380000L, active2, 0x200000200L, active3, 0x8000000000000L, active4, 0L, active5, 0x400000800000000L, active6, 0x40000L, active7, 0x40000000800L, active8, 0x600000000L, active9, 0x10000000000000L, active10, 0x80000000001000L, active11, 0x10000L); case 79: case 111: - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x600000000L, active2, 0x1000000000L, active3, 0x10000000L, active4, 0L, active5, 0x3200L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0x80L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x600000000L, active2, 0x10000000000L, active3, 0x100000000L, active4, 0L, active5, 0x64000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1000000L, active10, 0L, active11, 0x20000L); case 80: case 112: - if ((active1 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(8, 111, 78); - else if ((active9 & 0x100000000000L) != 0L) + if ((active1 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 112, 78); + else if ((active9 & 0x20000000000000L) != 0L) { - jjmatchedKind = 620; + jjmatchedKind = 629; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100L, active8, 0L, active9, 0x1e01000000000L, active10, 0L, active11, 0x400L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x3c0200000000000L, active10, 0L, active11, 0x100000L); case 81: case 113: - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0L); case 82: case 114: if ((active1 & 0x8L) != 0L) @@ -18933,74 +19051,78 @@ else if ((active9 & 0x100000000000L) != 0L) jjmatchedKind = 67; jjmatchedPos = 8; } - else if ((active4 & 0x8L) != 0L) - return jjStartNfaWithStates_3(8, 259, 78); - else if ((active6 & 0x4000L) != 0L) + else if ((active2 & 0x20000L) != 0L) + return jjStartNfaWithStates_3(8, 145, 78); + else if ((active4 & 0x80L) != 0L) + return jjStartNfaWithStates_3(8, 263, 78); + else if ((active6 & 0x100000L) != 0L) { - jjmatchedKind = 398; + jjmatchedKind = 404; jjmatchedPos = 8; } - else if ((active7 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 511, 78); - else if ((active8 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 565, 78); - return jjMoveStringLiteralDfa9_3(active0, 0x10000000000L, active1, 0xc000000000003f0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0x2001f8000L, active7, 0L, active8, 0x83ffe004000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active8 & 0x100L) != 0L) + return jjStartNfaWithStates_3(8, 520, 78); + else if ((active8 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 574, 78); + return jjMoveStringLiteralDfa9_3(active0, 0x10000000000L, active1, 0x18000000000003f0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0x8007e00000L, active7, 0L, active8, 0x7ffc00800000000L, active9, 0x1L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x1000000000000000L, active2, 0L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0x1000000000000000L, active9, 0x200400020L, active10, 0x10L, active11, 0L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x2000000000000000L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0x4080000000000L, active8, 0L, active9, 0x40080004020L, active10, 0x2000L, active11, 0L); case 84: case 116: - if ((active1 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 116, 78); - else if ((active4 & 0x4L) != 0L) - return jjStartNfaWithStates_3(8, 258, 78); - else if ((active4 & 0x8000L) != 0L) + if ((active1 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 117, 78); + else if ((active4 & 0x40L) != 0L) + return jjStartNfaWithStates_3(8, 262, 78); + else if ((active4 & 0x80000L) != 0L) { - jjmatchedKind = 271; + jjmatchedKind = 275; jjmatchedPos = 8; } - else if ((active7 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(8, 487, 78); - else if ((active7 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(8, 492, 78); - else if ((active8 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(8, 547, 78); - else if ((active9 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(8, 589, 78); - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0xe000010000000000L, active2, 0x8000L, active3, 0x2000000000000000L, active4, 0x10000L, active5, 0x400L, active6, 0x10L, active7, 0x4000000000000L, active8, 0x500000L, active9, 0x1000000L, active10, 0x4000L, active11, 0L); + else if ((active7 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_3(8, 493, 78); + else if ((active7 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 497, 78); + else if ((active7 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 501, 78); + else if ((active8 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_3(8, 556, 78); + else if ((active9 & 0x400000L) != 0L) + return jjStartNfaWithStates_3(8, 598, 78); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0xc000010000000000L, active2, 0x80001L, active3, 0L, active4, 0x100002L, active5, 0x8000L, active6, 0x400L, active7, 0x800000000000000L, active8, 0xa0000000L, active9, 0x200000000L, active10, 0x1000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0x80200000000L, active5, 0x4000L, active6, 0x2000000L, active7, 0L, active8, 0x20L, active9, 0L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0x1004000000000L, active5, 0x80000L, active6, 0x80000000L, active7, 0L, active8, 0x4000L, active9, 0L, active10, 0L, active11, 0x40000000L); case 86: case 118: - return jjMoveStringLiteralDfa9_3(active0, 0x8000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_3(active0, 0x8000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 87: case 119: - if ((active3 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(8, 221, 78); - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40L, active10, 0L, active11, 0L); + if ((active3 & 0x200000000L) != 0L) + return jjStartNfaWithStates_3(8, 225, 78); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 88: case 120: - if ((active7 & 0x8L) != 0L) - return jjStartNfaWithStates_3(8, 451, 78); + if ((active7 & 0x200L) != 0L) + return jjStartNfaWithStates_3(8, 457, 78); return jjMoveStringLiteralDfa9_3(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active3 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(8, 243, 78); - else if ((active4 & 0x20L) != 0L) - return jjStartNfaWithStates_3(8, 261, 78); - else if ((active7 & 0x10L) != 0L) - return jjStartNfaWithStates_3(8, 452, 78); - else if ((active9 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(8, 613, 78); - else if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(8, 681, 78); - else if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(8, 687, 78); - else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_3(8, 709, 78); - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80L, active10, 0L, active11, 0L); + if ((active3 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 247, 78); + else if ((active4 & 0x200L) != 0L) + return jjStartNfaWithStates_3(8, 265, 78); + else if ((active7 & 0x400L) != 0L) + return jjStartNfaWithStates_3(8, 458, 78); + else if ((active9 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_3(8, 622, 78); + else if ((active10 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 691, 78); + else if ((active10 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_3(8, 697, 78); + else if ((active11 & 0x8000L) != 0L) + return jjStartNfaWithStates_3(8, 719, 78); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); default : break; } @@ -19018,88 +19140,90 @@ private final int jjMoveStringLiteralDfa9_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa10_3(active0, 0x1000000L, active1, 0x803800f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1f8000L, active7, 0L, active8, 0L, active9, 0x4021800004000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_3(active0, 0x1000000L, active1, 0x803800f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x7e00000L, active7, 0L, active8, 0L, active9, 0x4300000800000000L, active10, 0x80L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa10_3(active0, 0x1000000000000000L, active1, 0x2c0000040000000L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0x200000000L, active7, 0x4001800000000L, active8, 0x401c000220000000L, active9, 0x200000000200L, active10, 0xcL, active11, 0L); + return jjMoveStringLiteralDfa10_3(active0, 0x1000000000000000L, active1, 0x580000040000000L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0x8000000000L, active7, 0x800060000000000L, active8, 0x3800044000000000L, active9, 0x40000000040080L, active10, 0x1800L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000L, active5, 0x2L, active6, 0L, active7, 0L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0x40L, active6, 0L, active7, 0L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: if ((active0 & 0x40000000L) != 0L) return jjStartNfaWithStates_3(9, 30, 78); - else if ((active2 & 0x80L) != 0L) - return jjStartNfaWithStates_3(9, 135, 78); - else if ((active9 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(9, 619, 78); - return jjMoveStringLiteralDfa10_3(active0, 0x800000L, active1, 0x1000000000000000L, active2, 0x4000000000L, active3, 0x800000000000L, active4, 0xc0000000L, active5, 0x200L, active6, 0L, active7, 0x2000400000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x40L); + else if ((active2 & 0x200L) != 0L) + return jjStartNfaWithStates_3(9, 137, 78); + else if ((active9 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_3(9, 628, 78); + return jjMoveStringLiteralDfa10_3(active0, 0x800000L, active1, 0x2000000000000000L, active2, 0x40000000000L, active3, 0x8000000000000L, active4, 0xc00000000L, active5, 0x4000L, active6, 0L, active7, 0x80010000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0x10000L); case 68: case 100: - if ((active5 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(9, 350, 78); - else if ((active5 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(9, 361, 78); - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x200000000000L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0L, active11, 0L); + if ((active5 & 0x800000000L) != 0L) + return jjStartNfaWithStates_3(9, 355, 78); + else if ((active5 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_3(9, 366, 78); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x400000000000L, active2, 0x800L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000000000000L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x8000000L) != 0L) return jjStartNfaWithStates_3(9, 27, 78); - else if ((active2 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(9, 143, 78); - else if ((active2 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(9, 150, 78); - else if ((active4 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(9, 289, 78); - else if ((active4 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(9, 299, 78); - else if ((active7 & 0x100L) != 0L) - return jjStartNfaWithStates_3(9, 456, 78); + else if ((active2 & 0x80000L) != 0L) + return jjStartNfaWithStates_3(9, 147, 78); + else if ((active2 & 0x4000000L) != 0L) + return jjStartNfaWithStates_3(9, 154, 78); + else if ((active4 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_3(9, 293, 78); + else if ((active4 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_3(9, 294, 78); + else if ((active4 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_3(9, 304, 78); else if ((active7 & 0x4000L) != 0L) return jjStartNfaWithStates_3(9, 462, 78); - else if ((active7 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 499, 78); - else if ((active8 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(9, 546, 78); - else if ((active9 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(9, 600, 78); - else if ((active9 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(9, 611, 78); - else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_3(9, 712, 78); - else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_3(9, 714, 78); - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000500L, active6, 0x180000000L, active7, 0x10000000000000L, active8, 0x1000000000L, active9, 0x2004000e0L, active10, 0x4000L, active11, 0x10000000L); + else if ((active7 & 0x100000L) != 0L) + return jjStartNfaWithStates_3(9, 468, 78); + else if ((active7 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_3(9, 508, 78); + else if ((active8 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_3(9, 555, 78); + else if ((active9 & 0x200000000L) != 0L) + return jjStartNfaWithStates_3(9, 609, 78); + else if ((active9 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_3(9, 620, 78); + else if ((active11 & 0x40000L) != 0L) + return jjStartNfaWithStates_3(9, 722, 78); + else if ((active11 & 0x100000L) != 0L) + return jjStartNfaWithStates_3(9, 724, 78); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x20000000000a000L, active6, 0x6000000000L, active7, 0x2004000000000000L, active8, 0x200000000000L, active9, 0x4008001c000L, active10, 0x1000000L, active11, 0x4000000000L); case 71: case 103: - if ((active6 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(9, 396, 78); - else if ((active8 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(9, 536, 78); - else if ((active9 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(9, 594, 78); - else if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(9, 685, 78); - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x20000000000000L, active6, 0x2000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x40000L) != 0L) + return jjStartNfaWithStates_3(9, 402, 78); + else if ((active8 & 0x200000000L) != 0L) + return jjStartNfaWithStates_3(9, 545, 78); + else if ((active9 & 0x8000000L) != 0L) + return jjStartNfaWithStates_3(9, 603, 78); + else if ((active10 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_3(9, 695, 78); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400000000000000L, active6, 0x80000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x2000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000002L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x6000000000000100L, active2, 0xc00L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x480000000400000L, active9, 0x6L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0xc000000000000100L, active2, 0x3000L, active3, 0L, active4, 0x100000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0xc09L, active10, 0L, active11, 0L); case 75: case 107: - if ((active2 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(9, 157, 78); - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0x10L); + if ((active2 & 0x200000000L) != 0L) + return jjStartNfaWithStates_3(9, 161, 78); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000000000000L, active11, 0x4000L); case 76: case 108: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000L, active8, 0L, active9, 0x1000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1L, active5, 0L, active6, 0L, active7, 0x20000000L, active8, 0L, active9, 0x200000000000L, active10, 0L, active11, 0L); case 77: case 109: - if ((active5 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(9, 334, 78); - return jjMoveStringLiteralDfa10_3(active0, 0x8000000000L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0x8L, active9, 0x4000100010000L, active10, 0L, active11, 0L); + if ((active5 & 0x80000L) != 0L) + return jjStartNfaWithStates_3(9, 339, 78); + return jjMoveStringLiteralDfa10_3(active0, 0x8000000000L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1000L, active9, 0x800020002000000L, active10, 0L, active11, 0L); case 78: case 110: if ((active1 & 0x200000000L) != 0L) @@ -19107,45 +19231,45 @@ else if ((active10 & 0x200000000000L) != 0L) jjmatchedKind = 97; jjmatchedPos = 9; } - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x400000000L, active2, 0L, active3, 0x10000000L, active4, 0L, active5, 0x3000L, active6, 0L, active7, 0x4L, active8, 0x2000000000080000L, active9, 0x100L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x400000000L, active2, 0L, active3, 0x100000000L, active4, 0L, active5, 0x60000L, active6, 0L, active7, 0x8000000000100L, active8, 0x10000000L, active9, 0x20040L, active10, 0x3c000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0xc00010000000000L, active2, 0x800000000L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x8780000000200009L, active10, 0x8000L, active11, 0x200L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x1800010000000000L, active2, 0x8000000000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0x40001200L, active10, 0x200010fL, active11, 0x80000L); case 80: case 112: - if ((active1 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 112, 78); - else if ((active9 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(9, 591, 78); + if ((active1 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_3(9, 113, 78); + else if ((active9 & 0x1000000L) != 0L) + return jjStartNfaWithStates_3(9, 600, 78); break; case 82: case 114: if ((active1 & 0x800L) != 0L) return jjStartNfaWithStates_3(9, 75, 78); - else if ((active2 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(9, 164, 78); - else if ((active4 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(9, 292, 78); - else if ((active7 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(9, 488, 78); - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000000000L, active7, 0x40L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active2 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_3(9, 168, 78); + else if ((active4 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_3(9, 297, 78); + else if ((active7 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_3(9, 494, 78); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0x1000L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 83: case 115: if ((active0 & 0x400000000L) != 0L) return jjStartNfaWithStates_3(9, 34, 78); else if ((active1 & 0x200L) != 0L) return jjStartNfaWithStates_3(9, 73, 78); - else if ((active6 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 436, 78); - else if ((active7 & 0x2L) != 0L) - return jjStartNfaWithStates_3(9, 449, 78); - else if ((active9 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 636, 78); - else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(9, 724, 78); - else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(9, 729, 78); - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0x2000000001L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x20L, active9, 0L, active10, 0L, active11, 0L); + else if ((active6 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_3(9, 442, 78); + else if ((active7 & 0x80L) != 0L) + return jjStartNfaWithStates_3(9, 455, 78); + else if ((active10 & 0x20L) != 0L) + return jjStartNfaWithStates_3(9, 645, 78); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_3(9, 734, 78); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_3(9, 739, 78); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x40000000000L, active2, 0x20000000002L, active3, 0L, active4, 0x4000000000000000L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x4000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: if ((active0 & 0x20000000L) != 0L) @@ -19155,43 +19279,43 @@ else if ((active1 & 0x800000000L) != 0L) jjmatchedKind = 99; jjmatchedPos = 9; } - else if ((active2 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(9, 168, 78); - else if ((active7 & 0x20L) != 0L) - return jjStartNfaWithStates_3(9, 453, 78); - else if ((active8 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(9, 537, 78); - return jjMoveStringLiteralDfa10_3(active0, 0x40010800000000L, active1, 0xf000000004L, active2, 0x1000000000000000L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active2 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_3(9, 172, 78); + else if ((active7 & 0x800L) != 0L) + return jjStartNfaWithStates_3(9, 459, 78); + else if ((active8 & 0x400000000L) != 0L) + return jjStartNfaWithStates_3(9, 546, 78); + return jjMoveStringLiteralDfa10_3(active0, 0x40010800000000L, active1, 0xf000000004L, active2, 0x4000L, active3, 0x1L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10L, active10, 0L, active11, 0x80L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x20000L); case 86: case 118: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x7ffc00000000000L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active4 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(9, 308, 78); + if ((active4 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_3(9, 313, 78); break; case 89: case 121: - if ((active4 & 0x8000000L) != 0L) + if ((active4 & 0x80000000L) != 0L) { - jjmatchedKind = 283; + jjmatchedKind = 287; jjmatchedPos = 9; } - else if ((active4 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(9, 288, 78); - else if ((active6 & 0x10L) != 0L) - return jjStartNfaWithStates_3(9, 388, 78); - else if ((active8 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(9, 538, 78); - else if ((active10 & 0x40L) != 0L) - return jjStartNfaWithStates_3(9, 646, 78); - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active4 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_3(9, 292, 78); + else if ((active6 & 0x400L) != 0L) + return jjStartNfaWithStates_3(9, 394, 78); + else if ((active8 & 0x800000000L) != 0L) + return jjStartNfaWithStates_3(9, 547, 78); + else if ((active10 & 0x8000L) != 0L) + return jjStartNfaWithStates_3(9, 655, 78); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1000000L); default : break; } @@ -19209,157 +19333,159 @@ private final int jjMoveStringLiteralDfa10_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x7400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x180000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x7400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x6000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa11_3(active0, 0x800000L, active1, 0x8000000000000000L, active2, 0L, active3, 0x800000000000L, active4, 0x10000000L, active5, 0L, active6, 0L, active7, 0x400000L, active8, 0x9103ffe000080000L, active9, 0x190L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_3(active0, 0x800000L, active1, 0L, active2, 0x1L, active3, 0x8000000000000L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0x8000010000000L, active8, 0x7ffc00010000000L, active9, 0x32122L, active10, 0L, active11, 0L); case 67: case 99: - if ((active8 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 567, 78); - return jjMoveStringLiteralDfa11_3(active0, 0x1000000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000040L, active8, 0L, active9, 0x20000000000022L, active10, 0L, active11, 0L); + if ((active9 & 0x1L) != 0L) + return jjStartNfaWithStates_3(10, 576, 78); + return jjMoveStringLiteralDfa11_3(active0, 0x1000000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001000L, active8, 0L, active9, 0x4000000000004400L, active10, 0L, active11, 0L); case 68: case 100: - if ((active3 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(10, 220, 78); - else if ((active5 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(10, 332, 78); - else if ((active5 & 0x2000L) != 0L) - return jjStartNfaWithStates_3(10, 333, 78); - else if ((active10 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(10, 654, 78); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000L, active10, 0L, active11, 0x10000000L); + if ((active3 & 0x100000000L) != 0L) + return jjStartNfaWithStates_3(10, 224, 78); + else if ((active5 & 0x20000L) != 0L) + return jjStartNfaWithStates_3(10, 337, 78); + else if ((active5 & 0x40000L) != 0L) + return jjStartNfaWithStates_3(10, 338, 78); + else if ((active10 & 0x1000000L) != 0L) + return jjStartNfaWithStates_3(10, 664, 78); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x140000000000000L, active10, 0L, active11, 0x4000000000L); case 69: case 101: if ((active0 & 0x8000000000L) != 0L) return jjStartNfaWithStates_3(10, 39, 78); else if ((active1 & 0x1000000L) != 0L) return jjStartNfaWithStates_3(10, 88, 78); - else if ((active2 & 0x4L) != 0L) - return jjStartNfaWithStates_3(10, 130, 78); - else if ((active3 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(10, 211, 78); - else if ((active4 & 0x200L) != 0L) - return jjStartNfaWithStates_3(10, 265, 78); - else if ((active7 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 496, 78); - else if ((active8 & 0x8L) != 0L) - return jjStartNfaWithStates_3(10, 515, 78); - else if ((active9 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(10, 608, 78); - else if ((active9 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(10, 612, 78); - else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_3(10, 718, 78); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x40000000000L, active7, 0x800000L, active8, 0x20L, active9, 0x40L, active10, 0x200000f0000000L, active11, 0x10L); + else if ((active2 & 0x8L) != 0L) + return jjStartNfaWithStates_3(10, 131, 78); + else if ((active3 & 0x800000L) != 0L) + return jjStartNfaWithStates_3(10, 215, 78); + else if ((active4 & 0x2000L) != 0L) + return jjStartNfaWithStates_3(10, 269, 78); + else if ((active7 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_3(10, 505, 78); + else if ((active8 & 0x1000L) != 0L) + return jjStartNfaWithStates_3(10, 524, 78); + else if ((active9 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_3(10, 617, 78); + else if ((active9 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_3(10, 621, 78); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_3(10, 728, 78); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0x40L, active6, 0x1000000000000L, active7, 0x20000000L, active8, 0x4000L, active9, 0x8000L, active10, 0x800003c000000000L, active11, 0x4000L); case 70: case 102: - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active7 & 0x4L) != 0L) - return jjStartNfaWithStates_3(10, 450, 78); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active7 & 0x100L) != 0L) + return jjStartNfaWithStates_3(10, 456, 78); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active1 & 0x4L) != 0L) return jjStartNfaWithStates_3(10, 66, 78); - else if ((active6 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(10, 409, 78); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x1000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x40L); + else if ((active6 & 0x80000000L) != 0L) + return jjStartNfaWithStates_3(10, 415, 78); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x2000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0x10000L); case 73: case 105: - return jjMoveStringLiteralDfa11_3(active0, 0x10800000000L, active1, 0x200000001000L, active2, 0x1000000000000200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4400000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_3(active0, 0x10800000000L, active1, 0x400000001000L, active2, 0x800L, active3, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x880000000000000L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x40000000L) != 0L) return jjStartNfaWithStates_3(10, 94, 78); - else if ((active8 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(10, 545, 78); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x400000000000010L, active2, 0L, active3, 0L, active4, 0x1000L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + else if ((active8 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_3(10, 554, 78); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x800000000000010L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0L, active7, 0x800000000000000L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa11_3(active0, 0x1000000000000000L, active1, 0x6000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000L, active7, 0x10001000000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); + return jjMoveStringLiteralDfa11_3(active0, 0x1000000000000000L, active1, 0xc000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0x2000040000000000L, active8, 0L, active9, 0L, active10, 0x1000L, active11, 0L); case 78: case 110: - if ((active2 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(10, 163, 78); - else if ((active8 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(10, 541, 78); - else if ((active9 & 0x80000000000000L) != 0L) + if ((active2 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_3(10, 167, 78); + else if ((active8 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_3(10, 550, 78); + else if ((active10 & 0x1L) != 0L) { - jjmatchedKind = 631; + jjmatchedKind = 640; jjmatchedPos = 10; } - else if ((active9 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 639, 78); - else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_3(10, 713, 78); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x86100000L, active2, 0xc000000000c00L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x200010000L, active7, 0L, active8, 0x400000000000000L, active9, 0x70000000000000cL, active10, 0x8000L, active11, 0L); + else if ((active10 & 0x100L) != 0L) + return jjStartNfaWithStates_3(10, 648, 78); + else if ((active11 & 0x80000L) != 0L) + return jjStartNfaWithStates_3(10, 723, 78); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x86100000L, active2, 0xc0000000003000L, active3, 0L, active4, 0L, active5, 0x2000L, active6, 0x8000400000L, active7, 0L, active8, 0L, active9, 0x1808L, active10, 0x200000eL, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x400000L, active9, 0x2000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x80000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); case 80: case 112: - if ((active9 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(10, 592, 78); - else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_3(10, 711, 78); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x2000000L) != 0L) + return jjStartNfaWithStates_3(10, 601, 78); + else if ((active11 & 0x20000L) != 0L) + return jjStartNfaWithStates_3(10, 721, 78); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: if ((active1 & 0x10000000000L) != 0L) return jjStartNfaWithStates_3(10, 104, 78); - else if ((active8 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(10, 548, 78); - else if ((active9 & 0x200L) != 0L) - return jjStartNfaWithStates_3(10, 585, 78); - else if ((active9 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(10, 609, 78); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0x4000000004200000L, active10, 0L, active11, 0L); + else if ((active8 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_3(10, 557, 78); + else if ((active9 & 0x40000L) != 0L) + return jjStartNfaWithStates_3(10, 594, 78); + else if ((active9 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_3(10, 618, 78); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0x840000000L, active10, 0x80L, active11, 0L); case 83: case 115: if ((active1 & 0x8000000000L) != 0L) return jjStartNfaWithStates_3(10, 103, 78); - else if ((active2 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(10, 166, 78); - else if ((active4 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(10, 285, 78); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x2001e0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + else if ((active2 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_3(10, 170, 78); + else if ((active4 & 0x200000000L) != 0L) + return jjStartNfaWithStates_3(10, 289, 78); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x2001e0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - if ((active4 & 0x40000000L) != 0L) + if ((active4 & 0x400000000L) != 0L) { - jjmatchedKind = 286; + jjmatchedKind = 290; jjmatchedPos = 10; } - else if ((active8 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 573, 78); - else if ((active9 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(10, 598, 78); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x2c0000000000000L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0x200000080000000L, active5, 0x20000000000200L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0x1000000000000L, active10, 0x4L, active11, 0L); + else if ((active7 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_3(10, 498, 78); + else if ((active9 & 0x40L) != 0L) + return jjStartNfaWithStates_3(10, 582, 78); + else if ((active9 & 0x80000000L) != 0L) + return jjStartNfaWithStates_3(10, 607, 78); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x580000000000000L, active2, 0x20000000000L, active3, 0L, active4, 0x4000000800000002L, active5, 0x400000000004000L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0x200000000000000L, active10, 0x800L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x40000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0L); case 87: case 119: - if ((active1 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 123, 78); + if ((active1 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_3(10, 124, 78); break; case 88: case 120: - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_3(10, 54, 78); - else if ((active3 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 252, 78); - else if ((active8 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(10, 574, 78); + else if ((active4 & 0x1L) != 0L) + return jjStartNfaWithStates_3(10, 256, 78); + else if ((active9 & 0x80L) != 0L) + return jjStartNfaWithStates_3(10, 583, 78); break; default : break; @@ -19378,127 +19504,129 @@ private final int jjMoveStringLiteralDfa11_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 65: case 97: - if ((active7 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 500, 78); - return jjMoveStringLiteralDfa12_3(active0, 0x1000000L, active1, 0x140000000180000L, active2, 0L, active3, 0L, active4, 0x200000080000000L, active5, 0L, active6, 0x10000L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x8004L, active11, 0L); + if ((active7 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_3(11, 509, 78); + return jjMoveStringLiteralDfa12_3(active0, 0x1000000L, active1, 0x280000000180000L, active2, 0L, active3, 0L, active4, 0x4000000800000000L, active5, 0L, active6, 0x400000L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x2000800L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x40000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x1006200000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x8008000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x1006200000L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0x1000000000000000L, active9, 0x100L, active10, 0L, active11, 0L); case 68: case 100: - if ((active9 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(11, 621, 78); - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x100000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + if ((active9 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_3(11, 630, 78); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_3(11, 60, 78); - else if ((active1 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 119, 78); - else if ((active1 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 122, 78); - else if ((active1 & 0x2000000000000000L) != 0L) + else if ((active1 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_3(11, 120, 78); + else if ((active1 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_3(11, 123, 78); + else if ((active1 & 0x4000000000000000L) != 0L) { - jjmatchedKind = 125; + jjmatchedKind = 126; jjmatchedPos = 11; } - else if ((active4 & 0x1000L) != 0L) - return jjStartNfaWithStates_3(11, 268, 78); - else if ((active7 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(11, 484, 78); - else if ((active8 & 0x2L) != 0L) - return jjStartNfaWithStates_3(11, 513, 78); - else if ((active8 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(11, 532, 78); - else if ((active10 & 0x8L) != 0L) - return jjStartNfaWithStates_3(11, 643, 78); - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x50000000000000f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x2000000040L, active8, 0L, active9, 0x4000000004000000L, active10, 0x10L, active11, 0L); + else if ((active4 & 0x10000L) != 0L) + return jjStartNfaWithStates_3(11, 272, 78); + else if ((active7 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_3(11, 490, 78); + else if ((active8 & 0x400L) != 0L) + return jjStartNfaWithStates_3(11, 522, 78); + else if ((active8 & 0x20000000L) != 0L) + return jjStartNfaWithStates_3(11, 541, 78); + else if ((active10 & 0x1000L) != 0L) + return jjStartNfaWithStates_3(11, 652, 78); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0xa0000000000000f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000L, active6, 0L, active7, 0x80000001000L, active8, 0L, active9, 0x800000000L, active10, 0x2080L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0x800L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000000000000L, active10, 0L, active11, 0L); case 71: case 103: - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000L, active5, 0x100L, active6, 0x40000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0x2000L, active6, 0x1000000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active1 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 121, 78); - else if ((active5 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 373, 78); + if ((active1 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_3(11, 122, 78); + else if ((active5 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_3(11, 378, 78); break; case 73: case 105: - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000200000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000040000000L, active10, 0L, active11, 0L); case 75: case 107: - if ((active6 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(11, 417, 78); - else if ((active9 & 0x40L) != 0L) - return jjStartNfaWithStates_3(11, 582, 78); + if ((active6 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_3(11, 423, 78); + else if ((active9 & 0x8000L) != 0L) + return jjStartNfaWithStates_3(11, 591, 78); break; case 76: case 108: - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x3ffe000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active7 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_3(11, 499, 78); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x7ffc00000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000080000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x10000000L, active9, 0x20L, active10, 0L, active11, 0L); case 78: case 110: if ((active1 & 0x1000L) != 0L) return jjStartNfaWithStates_3(11, 76, 78); - else if ((active4 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(11, 272, 78); - else if ((active8 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(11, 534, 78); - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x8000202400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0x800000L, active8, 0x10000000000000L, active9, 0x4000000000000L, active10, 0L, active11, 0L); + else if ((active4 & 0x100000L) != 0L) + return jjStartNfaWithStates_3(11, 276, 78); + else if ((active8 & 0x80000000L) != 0L) + return jjStartNfaWithStates_3(11, 543, 78); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x402400000000L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x20000000L, active8, 0x2000000000000000L, active9, 0x800000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa12_3(active0, 0x800000000L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000L, active7, 0x4000000000000L, active8, 0L, active9, 0x20000000000020L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_3(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0x800000000000000L, active8, 0L, active9, 0x4000000000004000L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x1L) != 0L) - return jjStartNfaWithStates_3(11, 128, 78); - else if ((active5 & 0x2L) != 0L) - return jjStartNfaWithStates_3(11, 321, 78); - else if ((active8 & 0x20L) != 0L) - return jjStartNfaWithStates_3(11, 517, 78); - else if ((active8 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 568, 78); - else if ((active9 & 0x1L) != 0L) - return jjStartNfaWithStates_3(11, 576, 78); - else if ((active9 & 0x80L) != 0L) - return jjStartNfaWithStates_3(11, 583, 78); - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x1000000000112L, active10, 0L, active11, 0x40L); + if ((active2 & 0x2L) != 0L) + return jjStartNfaWithStates_3(11, 129, 78); + else if ((active5 & 0x40L) != 0L) + return jjStartNfaWithStates_3(11, 326, 78); + else if ((active8 & 0x4000L) != 0L) + return jjStartNfaWithStates_3(11, 526, 78); + else if ((active9 & 0x2L) != 0L) + return jjStartNfaWithStates_3(11, 577, 78); + else if ((active9 & 0x200L) != 0L) + return jjStartNfaWithStates_3(11, 585, 78); + else if ((active9 & 0x10000L) != 0L) + return jjStartNfaWithStates_3(11, 592, 78); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0x200000000022400L, active10, 0L, active11, 0x10000L); case 83: case 115: - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x700000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xeL, active11, 0L); case 84: case 116: - if ((active3 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(11, 239, 78); - else if ((active5 & 0x400L) != 0L) - return jjStartNfaWithStates_3(11, 330, 78); - else if ((active8 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 570, 78); - else if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(11, 693, 78); - return jjMoveStringLiteralDfa12_3(active0, 0x10000800000L, active1, 0x100L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0L); + if ((active3 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_3(11, 243, 78); + else if ((active5 & 0x8000L) != 0L) + return jjStartNfaWithStates_3(11, 335, 78); + else if ((active9 & 0x8L) != 0L) + return jjStartNfaWithStates_3(11, 579, 78); + else if ((active10 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_3(11, 703, 78); + return jjMoveStringLiteralDfa12_3(active0, 0x10000800000L, active1, 0x100L, active2, 0x3000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0x1000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x80000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000000000004L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0x80000000L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000800L, active10, 0L, active11, 0L); case 89: case 121: - if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_3(11, 708, 78); + if ((active11 & 0x4000L) != 0L) + return jjStartNfaWithStates_3(11, 718, 78); break; default : break; @@ -19517,86 +19645,86 @@ private final int jjMoveStringLiteralDfa12_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa13_3(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8003ffe000000000L, active9, 0x700000000000000L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa13_3(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x7ffc00000000000L, active9, 0x100L, active10, 0x3c00000000eL, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x3400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active2 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(12, 165, 78); - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x10000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_3(12, 169, 78); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x28000L, active7, 0x400000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0xa00000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: - if ((active8 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(12, 531, 78); - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400001c0000L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x10000000L) != 0L) + return jjStartNfaWithStates_3(12, 540, 78); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0x3000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000007000000L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: - if ((active2 & 0x200L) != 0L) - return jjStartNfaWithStates_3(12, 137, 78); - else if ((active9 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(12, 622, 78); - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000000000L, active10, 0L, active11, 0L); + if ((active2 & 0x800L) != 0L) + return jjStartNfaWithStates_3(12, 139, 78); + else if ((active9 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_3(12, 631, 78); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); case 71: case 103: - if ((active1 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(12, 109, 78); - else if ((active4 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(12, 284, 78); - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000000L, active5, 0L, active6, 0L, active7, 0x4000000800000L, active8, 0L, active9, 0x4000000004200000L, active10, 0L, active11, 0L); + if ((active1 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_3(12, 110, 78); + else if ((active4 & 0x100000000L) != 0L) + return jjStartNfaWithStates_3(12, 288, 78); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000000L, active5, 0L, active6, 0L, active7, 0x800000020000000L, active8, 0L, active9, 0x840000000L, active10, 0x80L, active11, 0L); case 72: case 104: - if ((active9 & 0x8L) != 0L) - return jjStartNfaWithStates_3(12, 579, 78); - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x1000L) != 0L) + return jjStartNfaWithStates_3(12, 588, 78); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa13_3(active0, 0x10000000000L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0x100000000L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_3(active0, 0x10000000000L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0x4000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: - if ((active10 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(12, 655, 78); - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x40000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); + if ((active10 & 0x2000000L) != 0L) + return jjStartNfaWithStates_3(12, 665, 78); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x80000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x800L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x1000000080100000L, active2, 0L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0x10000L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x2000000080100000L, active2, 0L, active3, 0L, active4, 0x4000000000000000L, active5, 0L, active6, 0x400000L, active7, 0x80000000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0L); case 78: case 110: if ((active0 & 0x800000000L) != 0L) return jjStartNfaWithStates_3(12, 35, 78); - else if ((active2 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(12, 188, 78); - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x10L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20L, active10, 0L, active11, 0L); + else if ((active3 & 0x1L) != 0L) + return jjStartNfaWithStates_3(12, 192, 78); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x10L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0x10000L); case 80: case 112: - if ((active8 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(12, 572, 78); - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active9 & 0x20L) != 0L) + return jjStartNfaWithStates_3(12, 581, 78); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 82: case 114: - if ((active9 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(12, 625, 78); - return jjMoveStringLiteralDfa13_3(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_3(12, 634, 78); + return jjMoveStringLiteralDfa13_3(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0xc000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x8000040000000000L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x60800e0L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0x300L, active6, 0L, active7, 0L, active8, 0L, active9, 0x14L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x60800e0L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0x6000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2800L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x25000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4a00000000000000L, active10, 0L, active11, 0L); case 89: case 121: - if ((active9 & 0x100L) != 0L) - return jjStartNfaWithStates_3(12, 584, 78); + if ((active9 & 0x20000L) != 0L) + return jjStartNfaWithStates_3(12, 593, 78); break; default : break; @@ -19609,114 +19737,116 @@ private final int jjMoveStringLiteralDfa13_3(long old0, long active0, long old1, return jjStartNfa_3(11, old0, old1, old2, old3, old4, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_3(12, active0, active1, active2, active3, active4, active5, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_3(12, active0, active1, active2, 0L, active4, active5, active6, active7, active8, active9, active10, active11, 0L); return 13; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0xe0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0xe0L, active2, 0L, active4, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active1 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_3(13, 124, 78); - else if ((active7 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(13, 485, 78); - else if ((active10 & 0x10L) != 0L) - return jjStartNfaWithStates_3(13, 644, 78); - return jjMoveStringLiteralDfa14_3(active0, 0x800000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + if ((active1 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_3(13, 125, 78); + else if ((active7 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_3(13, 491, 78); + else if ((active10 & 0x2000L) != 0L) + return jjStartNfaWithStates_3(13, 653, 78); + return jjMoveStringLiteralDfa14_3(active0, 0x800000L, active1, 0x80000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 66: case 98: - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x80000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x80000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + if ((active2 & 0x4000L) != 0L) + return jjStartNfaWithStates_3(13, 142, 78); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x100L, active2, 0L, active4, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 68: case 100: - if ((active9 & 0x20L) != 0L) - return jjStartNfaWithStates_3(13, 581, 78); - return jjMoveStringLiteralDfa14_3(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1e000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x4000L) != 0L) + return jjStartNfaWithStates_3(13, 590, 78); + return jjMoveStringLiteralDfa14_3(active0, 0x1000000L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3c00000000000L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x100000L) != 0L) return jjStartNfaWithStates_3(13, 84, 78); - else if ((active6 & 0x8000L) != 0L) - return jjStartNfaWithStates_3(13, 399, 78); - else if ((active6 & 0x10000L) != 0L) - return jjStartNfaWithStates_3(13, 400, 78); - else if ((active9 & 0x4L) != 0L) - return jjStartNfaWithStates_3(13, 578, 78); - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000000004000010L, active10, 0L, active11, 0L); + else if ((active6 & 0x200000L) != 0L) + return jjStartNfaWithStates_3(13, 405, 78); + else if ((active6 & 0x400000L) != 0L) + return jjStartNfaWithStates_3(13, 406, 78); + else if ((active9 & 0x800L) != 0L) + return jjStartNfaWithStates_3(13, 587, 78); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x200000L, active2, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800002000L, active10, 0x80L, active11, 0L); case 70: case 102: - if ((active9 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(13, 623, 78); - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_3(13, 632, 78); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active4 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(13, 287, 78); - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x10L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active4 & 0x800000000L) != 0L) + return jjStartNfaWithStates_3(13, 291, 78); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x10L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active5 & 0x100L) != 0L) - return jjStartNfaWithStates_3(13, 328, 78); - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100e0000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active5 & 0x2000L) != 0L) + return jjStartNfaWithStates_3(13, 333, 78); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x4000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x201c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x200000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active4, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x200000000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x2400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x2400000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - if ((active3 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_3(13, 253, 78); - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x4000000000000L, active9, 0x21000000000000L, active10, 0L, active11, 0x40L); + if ((active4 & 0x2L) != 0L) + return jjStartNfaWithStates_3(13, 257, 78); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0x4200000000000000L, active10, 0L, active11, 0x10000L); case 79: case 111: - return jjMoveStringLiteralDfa14_3(active0, 0x10000000000L, active1, 0x40000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); + return jjMoveStringLiteralDfa14_3(active0, 0x10000000000L, active1, 0x80000000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x800L, active11, 0L); case 80: case 112: - if ((active4 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(13, 313, 78); + if ((active4 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_3(13, 318, 78); break; case 82: case 114: - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0x3000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 83: case 115: - if ((active7 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(13, 498, 78); - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x100000000L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + if ((active7 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_3(13, 507, 78); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x4000000000L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 84: case 116: - if ((active7 & 0x40L) != 0L) - return jjStartNfaWithStates_3(13, 454, 78); - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x4000001000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3800000L, active8, 0L, active9, 0x4000000000000L, active10, 0xf0000000L, active11, 0L); + if ((active7 & 0x1000L) != 0L) + return jjStartNfaWithStates_3(13, 460, 78); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x8000041000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0xe0000000L, active8, 0L, active9, 0x800000000000000L, active10, 0x3c000000000L, active11, 0L); case 88: case 120: - if ((active6 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(13, 426, 78); + if ((active6 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_3(13, 432, 78); break; case 89: case 121: - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x600000000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_3(12, active0, active1, active2, active3, active4, active5, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_3(12, active0, active1, active2, 0L, active4, active5, active6, active7, active8, active9, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa14_3(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa14_3(long old0, long active0, long old1, long active1, long old2, long active2, long old4, long active4, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_3(12, old0, old1, old2, old3, old4, old5, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active4 &= old4) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_3(12, old0, old1, old2, 0L, old4, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_3(13, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); @@ -19725,48 +19855,48 @@ private final int jjMoveStringLiteralDfa14_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x4000001000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x1401e000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x8000001000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x2803c00000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active6 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(14, 416, 78); - else if ((active9 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_3(14, 624, 78); - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); + if ((active6 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_3(14, 422, 78); + else if ((active9 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_3(14, 633, 78); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); case 69: case 101: if ((active1 & 0x400000000L) != 0L) return jjStartNfaWithStates_3(14, 98, 78); else if ((active1 & 0x2000000000L) != 0L) return jjStartNfaWithStates_3(14, 101, 78); - else if ((active5 & 0x4L) != 0L) - return jjStartNfaWithStates_3(14, 322, 78); - else if ((active9 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(14, 626, 78); - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x4080000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8003800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + else if ((active5 & 0x80L) != 0L) + return jjStartNfaWithStates_3(14, 327, 78); + else if ((active9 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_3(14, 635, 78); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x4080000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 71: case 103: - if ((active1 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_3(14, 118, 78); - else if ((active7 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(14, 483, 78); - else if ((active10 & 0x4L) != 0L) - return jjStartNfaWithStates_3(14, 642, 78); - return jjMoveStringLiteralDfa15_3(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active1 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_3(14, 119, 78); + else if ((active7 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_3(14, 489, 78); + else if ((active10 & 0x800L) != 0L) + return jjStartNfaWithStates_3(14, 651, 78); + return jjMoveStringLiteralDfa15_3(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active7 & 0x800000L) != 0L) - return jjStartNfaWithStates_3(14, 471, 78); + if ((active7 & 0x20000000L) != 0L) + return jjStartNfaWithStates_3(14, 477, 78); break; case 73: case 105: - return jjMoveStringLiteralDfa15_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0x300000000000L, active9, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa15_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0x60000000000000L, active9, 0L, active10, 0L, active11, 0x10000L); case 76: case 108: - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x200000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -19774,19 +19904,21 @@ else if ((active10 & 0x4L) != 0L) case 110: if ((active0 & 0x10000000000L) != 0L) return jjStartNfaWithStates_3(14, 40, 78); - else if ((active9 & 0x200000L) != 0L) - return jjStartNfaWithStates_3(14, 597, 78); - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + else if ((active9 & 0x40000000L) != 0L) + return jjStartNfaWithStates_3(14, 606, 78); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x8000000006000000L, active2, 0xc000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4e0000000000L, active9, 0x600000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000001L, active5, 0L, active6, 0L, active7, 0L, active8, 0x9c000000000000L, active9, 0L, active10, 0xcL, active11, 0L); case 82: case 114: - if ((active8 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(14, 563, 78); - else if ((active9 & 0x10L) != 0L) - return jjStartNfaWithStates_3(14, 580, 78); - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active1 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_3(14, 106, 78); + else if ((active8 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_3(14, 572, 78); + else if ((active9 & 0x2000L) != 0L) + return jjStartNfaWithStates_3(14, 589, 78); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 83: case 115: if ((active1 & 0x100L) != 0L) @@ -19794,24 +19926,24 @@ else if ((active9 & 0x10L) != 0L) return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - if ((active6 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(14, 415, 78); - else if ((active9 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_3(14, 629, 78); - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x100000000000010L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_3(14, 421, 78); + else if ((active9 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_3(14, 638, 78); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0x200000000000010L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 86: case 118: - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0xc00L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0x3000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active9 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(14, 602, 78); - else if ((active9 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(14, 638, 78); + if ((active9 & 0x800000000L) != 0L) + return jjStartNfaWithStates_3(14, 611, 78); + else if ((active10 & 0x80L) != 0L) + return jjStartNfaWithStates_3(14, 647, 78); break; case 89: case 121: - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); default : break; } @@ -19829,21 +19961,21 @@ private final int jjMoveStringLiteralDfa15_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: if ((active1 & 0x200000L) != 0L) return jjStartNfaWithStates_3(15, 85, 78); - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0x60L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0x3000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0x60L, active2, 0x3000L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0x600000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 69: case 101: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0x10000000000200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x800000L) != 0L) @@ -19856,10 +19988,10 @@ private final int jjMoveStringLiteralDfa15_3(long old0, long active0, long old1, break; case 76: case 108: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0x4000004000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0x8000004000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 78: case 110: if ((active1 & 0x2000000L) != 0L) @@ -19867,42 +19999,42 @@ private final int jjMoveStringLiteralDfa15_3(long old0, long active0, long old1, jjmatchedKind = 89; jjmatchedPos = 15; } - else if ((active2 & 0x4000000000000L) != 0L) + else if ((active2 & 0x40000000000000L) != 0L) { - jjmatchedKind = 178; + jjmatchedKind = 182; jjmatchedPos = 15; } - return jjMoveStringLiteralDfa16_3(active0, 0x1000000L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_3(active0, 0x1000000L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 82: case 114: if ((active1 & 0x80000000L) != 0L) return jjStartNfaWithStates_3(15, 95, 78); - else if ((active8 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(15, 564, 78); - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active8 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_3(15, 573, 78); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 85: case 117: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active8 & 0x2000000000L) != 0L) + if ((active8 & 0x400000000000L) != 0L) { - jjmatchedKind = 549; + jjmatchedKind = 558; jjmatchedPos = 15; } - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000L); default : break; } @@ -19920,17 +20052,17 @@ private final int jjMoveStringLiteralDfa16_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: if ((active1 & 0x4000000000L) != 0L) return jjStartNfaWithStates_3(16, 102, 78); - return jjMoveStringLiteralDfa17_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa17_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000L); case 69: case 101: - if ((active7 & 0x2000000L) != 0L) - return jjStartNfaWithStates_3(16, 473, 78); - return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + if ((active7 & 0x80000000L) != 0L) + return jjStartNfaWithStates_3(16, 479, 78); + return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x80000L) != 0L) @@ -19941,52 +20073,52 @@ private final int jjMoveStringLiteralDfa16_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 76: case 108: - return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0x3000L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0x8000000000000040L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0x40L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 80: case 112: - if ((active1 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_3(16, 126, 78); + if ((active1 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_3(16, 127, 78); break; case 82: case 114: - if ((active8 & 0x20000000000L) != 0L) + if ((active8 & 0x4000000000000L) != 0L) { - jjmatchedKind = 553; + jjmatchedKind = 562; jjmatchedPos = 16; } - else if ((active8 & 0x1000000000000L) != 0L) + else if ((active8 & 0x200000000000000L) != 0L) { - jjmatchedKind = 560; + jjmatchedKind = 569; jjmatchedPos = 16; } - return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x418000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0x100000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0x200000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000000000L, active9, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x300000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x60000000000000L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active5 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_3(16, 372, 78); + if ((active5 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_3(16, 377, 78); break; case 89: case 121: - if ((active8 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_3(16, 562, 78); + if ((active8 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_3(16, 571, 78); break; default : break; @@ -20005,46 +20137,46 @@ private final int jjMoveStringLiteralDfa17_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0x8000000000000000L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0x3001L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x418000000000000L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x40L) != 0L) return jjStartNfaWithStates_3(17, 70, 78); - return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 71: case 103: if ((active1 & 0x1000000000L) != 0L) return jjStartNfaWithStates_3(17, 100, 78); - return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active8 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(17, 558, 78); + if ((active8 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_3(17, 567, 78); break; case 73: case 105: - return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 76: case 108: return jjMoveStringLiteralDfa18_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x63800000000000L, active9, 0L, active10, 0L, active11, 0x4000010000L); case 86: case 118: - return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); default : break; } @@ -20062,38 +20194,38 @@ private final int jjMoveStringLiteralDfa18_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0x400L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x30000000L, active11, 0L); + return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0x1000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xc000000000L, active11, 0L); case 68: case 100: - if ((active8 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_3(18, 559, 78); - else if ((active8 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(18, 575, 78); - else if ((active9 & 0x2L) != 0L) - return jjStartNfaWithStates_3(18, 577, 78); - return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + if ((active8 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_3(18, 568, 78); + else if ((active9 & 0x100L) != 0L) + return jjStartNfaWithStates_3(18, 584, 78); + else if ((active9 & 0x400L) != 0L) + return jjStartNfaWithStates_3(18, 586, 78); + return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 69: case 101: - if ((active8 & 0x100000000000L) != 0L) + if ((active8 & 0x20000000000000L) != 0L) { - jjmatchedKind = 556; + jjmatchedKind = 565; jjmatchedPos = 18; } - else if ((active9 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(18, 632, 78); - return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active10 & 0x2L) != 0L) + return jjStartNfaWithStates_3(18, 641, 78); + return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa19_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000010000L); case 76: case 108: return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -20102,19 +20234,19 @@ else if ((active9 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40000000L, active11, 0L); + return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0x800L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); + return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0x400000L, active8, 0x20c0000000000L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0x10000000L, active8, 0x418000000000000L, active9, 0L, active10, 0x4L, active11, 0L); default : break; } @@ -20126,86 +20258,86 @@ private final int jjMoveStringLiteralDfa19_3(long old0, long active0, long old1, return jjStartNfa_3(17, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_3(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_3(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, 0L, active10, active11, 0L); return 19; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x21c000000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x43800000000000L, active10, 0x8L, active11, 0L); case 65: case 97: if ((active1 & 0x80L) != 0L) return jjStartNfaWithStates_3(19, 71, 78); - return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x50000000L, active11, 0L); + return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x14000000000L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x40000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); + return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1000000L, active7, 0L, active8, 0L, active10, 0x20000000000L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active5 & 0x200L) != 0L) - return jjStartNfaWithStates_3(19, 329, 78); + if ((active5 & 0x4000L) != 0L) + return jjStartNfaWithStates_3(19, 334, 78); break; case 78: case 110: - return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0x2000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x20L, active2, 0x400L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0x20000000L, active11, 0x10000040L); + return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x20L, active2, 0x1000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x418000000000000L, active10, 0x8000000000L, active11, 0x4000010000L); case 82: case 114: - return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x8000000000000000L, active2, 0x800L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0x2001L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x100000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa20_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active10, 0x4L, active11, 0L); case 89: case 121: - if ((active7 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(19, 470, 78); + if ((active7 & 0x10000000L) != 0L) + return jjStartNfaWithStates_3(19, 476, 78); break; default : break; } - return jjStartNfa_3(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_3(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa20_3(long old0, long active0, long old1, long active1, long old2, long active2, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa20_3(long old0, long active0, long old1, long active1, long old2, long active2, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_3(18, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_3(18, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_3(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_3(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, 0L, active10, active11, 0L); return 20; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x418000000000000L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0xc0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0x3000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x8L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0x100000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0x400L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0x1000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x8000000000L, active11, 0L); case 69: case 101: if ((active1 & 0x4000000L) != 0L) return jjStartNfaWithStates_3(20, 90, 78); - else if ((active2 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_3(20, 179, 78); - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0x800L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + else if ((active2 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_3(20, 183, 78); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x4L, active11, 0L); case 71: case 103: if ((active1 & 0x20L) != 0L) @@ -20213,24 +20345,24 @@ else if ((active2 & 0x8000000000000L) != 0L) break; case 72: case 104: - if ((active7 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(20, 472, 78); - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000L, active9, 0L, active10, 0x80000000L, active11, 0L); + if ((active7 & 0x40000000L) != 0L) + return jjStartNfaWithStates_3(20, 478, 78); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x800000000000L, active10, 0x20000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000L, active9, 0L, active10, 0x40000000L, active11, 0L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active10, 0x10000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x4000010000L); case 79: case 111: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0x1L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0x100000000000000L, active2, 0L, active6, 0x20000L, active7, 0L, active8, 0x10000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0x200000000000000L, active2, 0L, active6, 0x800000L, active7, 0L, active8, 0x2000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x40000000000000L, active10, 0x4000000000L, active11, 0L); case 89: case 121: if ((active0 & 0x1000000L) != 0L) @@ -20239,187 +20371,187 @@ else if ((active2 & 0x8000000000000L) != 0L) default : break; } - return jjStartNfa_3(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_3(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa21_3(long old0, long active0, long old1, long active1, long old2, long active2, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa21_3(long old0, long active0, long old1, long active1, long old2, long active2, long old6, long active6, long old7, long active7, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_3(19, old0, old1, old2, 0L, 0L, 0L, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_3(19, old0, old1, old2, 0L, 0L, 0L, old6, old7, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_3(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_3(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 21; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000010000L); case 65: case 97: - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x4000000008L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0x800L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - if ((active9 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_3(21, 633, 78); + if ((active10 & 0x4L) != 0L) + return jjStartNfaWithStates_3(21, 642, 78); break; case 69: case 101: - if ((active2 & 0x400L) != 0L) - return jjStartNfaWithStates_3(21, 138, 78); - else if ((active10 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(21, 669, 78); - else if ((active10 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(21, 670, 78); - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0L, active10, 0x80000000L, active11, 0L); + if ((active2 & 0x1000L) != 0L) + return jjStartNfaWithStates_3(21, 140, 78); + else if ((active10 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_3(21, 679, 78); + else if ((active10 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_3(21, 680, 78); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x20000000000L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa22_3(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_3(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 72: case 104: - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0x1000000000000L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0x80000L, active8, 0x2040000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0x2000000L, active8, 0x408000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x204000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x40800000000000L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa22_3(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_3(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_3(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa22_3(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa22_3(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_3(20, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_3(20, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_3(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_3(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 22; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x8L, active11, 0L); case 69: case 101: - if ((active6 & 0x80000L) != 0L) - return jjStartNfaWithStates_3(22, 403, 78); - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x2000000L) != 0L) + return jjStartNfaWithStates_3(22, 409, 78); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0x800L, active6, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x4000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0x40L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000000L, active11, 0x10000L); case 78: case 110: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x1000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa23_3(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_3(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0x400000000000000L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa23_3(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000000000L); case 84: case 116: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x4000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x800000000000L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_3(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_3(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa23_3(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa23_3(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_3(21, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_3(21, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_3(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_3(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 23; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa24_3(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active10 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(23, 671, 78); + if ((active10 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_3(23, 681, 78); break; case 67: case 99: - return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0L, active10, 0L, active11, 0L); case 75: case 107: - if ((active9 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_3(23, 634, 78); + if ((active10 & 0x8L) != 0L) + return jjStartNfaWithStates_3(23, 643, 78); break; case 76: case 108: - return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x408000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0L, active10, 0x10000000L, active11, 0x10000040L); + return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x4000000000L, active11, 0x4000010000L); case 82: case 114: - if ((active8 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(23, 550, 78); - return jjMoveStringLiteralDfa24_3(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_3(23, 559, 78); + return jjMoveStringLiteralDfa24_3(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0x800L, active6, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x1000000000000L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_3(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_3(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa24_3(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa24_3(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_3(22, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_3(22, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_3(23, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); @@ -20429,44 +20561,44 @@ private final int jjMoveStringLiteralDfa24_3(long old1, long active1, long old2, { case 65: case 97: - if ((active6 & 0x100000L) != 0L) - return jjStartNfaWithStates_3(24, 404, 78); + if ((active6 & 0x4000000L) != 0L) + return jjStartNfaWithStates_3(24, 410, 78); break; case 68: case 100: - return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x10000L); case 69: case 101: - return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa25_3(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(24, 668, 78); + if ((active10 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_3(24, 678, 78); break; case 73: case 105: - return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0x800L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa25_3(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_3(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0x60000L, active8, 0x80000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0x1800000L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x2008000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x401000000000000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000000000L); default : break; } @@ -20484,46 +20616,46 @@ private final int jjMoveStringLiteralDfa25_3(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa26_3(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa26_3(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); case 68: case 100: - if ((active8 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(25, 552, 78); + if ((active8 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_3(25, 561, 78); break; case 69: case 101: - if ((active8 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(25, 551, 78); - else if ((active11 & 0x40L) != 0L) - return jjStartNfaWithStates_3(25, 710, 78); + if ((active8 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_3(25, 560, 78); + else if ((active11 & 0x10000L) != 0L) + return jjStartNfaWithStates_3(25, 720, 78); break; case 71: case 103: - if ((active6 & 0x40000L) != 0L) - return jjStartNfaWithStates_3(25, 402, 78); + if ((active6 & 0x1000000L) != 0L) + return jjStartNfaWithStates_3(25, 408, 78); break; case 72: case 104: - if ((active8 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_3(25, 561, 78); + if ((active8 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_3(25, 570, 78); break; case 78: case 110: - if ((active6 & 0x20000L) != 0L) - return jjStartNfaWithStates_3(25, 401, 78); - return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active11, 0L); + if ((active6 & 0x800000L) != 0L) + return jjStartNfaWithStates_3(25, 407, 78); + return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa26_3(active1, 0x8000000000000000L, active2, 0x800L, active6, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0x2001L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x4000000000L); case 84: case 116: - return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000L, active11, 0L); + return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active11, 0L); default : break; } @@ -20541,31 +20673,31 @@ private final int jjMoveStringLiteralDfa26_3(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa27_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 68: case 100: - if ((active8 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(26, 555, 78); + if ((active8 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_3(26, 564, 78); break; case 69: case 101: - if ((active8 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(26, 554, 78); + if ((active8 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_3(26, 563, 78); break; case 71: case 103: - return jjMoveStringLiteralDfa27_3(active1, 0x100000000000000L, active2, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa27_3(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); case 78: case 110: - if ((active2 & 0x800L) != 0L) - return jjStartNfaWithStates_3(26, 139, 78); + if ((active2 & 0x2000L) != 0L) + return jjStartNfaWithStates_3(26, 141, 78); break; case 79: case 111: - return jjMoveStringLiteralDfa27_3(active1, 0L, active2, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa27_3(active1, 0L, active2, 0L, active8, 0x40000000000000L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa27_3(active1, 0x8000000000000000L, active2, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa27_3(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); default : break; } @@ -20577,131 +20709,131 @@ private final int jjMoveStringLiteralDfa27_3(long old1, long active1, long old2, return jjStartNfa_3(25, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_3(26, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_3(26, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); return 27; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa28_3(active1, 0x8000000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa28_3(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa28_3(active1, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa28_3(active1, 0L, active2, 0L, active8, 0x40000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_3(active1, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa28_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 82: case 114: - return jjMoveStringLiteralDfa28_3(active1, 0x100000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa28_3(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); default : break; } - return jjStartNfa_3(26, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + return jjStartNfa_3(26, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa28_3(long old1, long active1, long old8, long active8, long old11, long active11) +private final int jjMoveStringLiteralDfa28_3(long old1, long active1, long old2, long active2, long old8, long active8, long old11, long active11) { - if (((active1 &= old1) | (active8 &= old8) | (active11 &= old11)) == 0L) - return jjStartNfa_3(26, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active8 &= old8) | (active11 &= old11)) == 0L) + return jjStartNfa_3(26, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_3(27, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_3(27, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); return 28; } switch(curChar) { case 68: case 100: - if ((active8 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(28, 557, 78); + if ((active8 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_3(28, 566, 78); break; case 69: case 101: - return jjMoveStringLiteralDfa29_3(active1, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa29_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 79: case 111: - return jjMoveStringLiteralDfa29_3(active1, 0x100000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa29_3(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa29_3(active1, 0x8000000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa29_3(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); default : break; } - return jjStartNfa_3(27, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + return jjStartNfa_3(27, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa29_3(long old1, long active1, long old8, long active8, long old11, long active11) +private final int jjMoveStringLiteralDfa29_3(long old1, long active1, long old2, long active2, long old8, long active8, long old11, long active11) { - if (((active1 &= old1) | (active8 &= old8) | (active11 &= old11)) == 0L) - return jjStartNfa_3(27, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active8 &= old8) | (active11 &= old11)) == 0L) + return jjStartNfa_3(27, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_3(28, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_3(28, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 29; } switch(curChar) { case 82: case 114: - return jjMoveStringLiteralDfa30_3(active1, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa30_3(active1, 0L, active2, 0L, active11, 0x4000000000L); case 85: case 117: - return jjMoveStringLiteralDfa30_3(active1, 0x100000000000000L, active11, 0L); + return jjMoveStringLiteralDfa30_3(active1, 0x200000000000000L, active2, 0L, active11, 0L); case 89: case 121: - return jjMoveStringLiteralDfa30_3(active1, 0x8000000000000000L, active11, 0L); + return jjMoveStringLiteralDfa30_3(active1, 0L, active2, 0x1L, active11, 0L); default : break; } - return jjStartNfa_3(28, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_3(28, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa30_3(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa30_3(long old1, long active1, long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_3(28, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_3(28, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_3(29, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_3(29, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 30; } switch(curChar) { case 67: case 99: - return jjMoveStringLiteralDfa31_3(active1, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa31_3(active1, 0L, active2, 0L, active11, 0x4000000000L); case 80: case 112: - if ((active1 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_3(30, 120, 78); - return jjMoveStringLiteralDfa31_3(active1, 0x8000000000000000L, active11, 0L); + if ((active1 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_3(30, 121, 78); + return jjMoveStringLiteralDfa31_3(active1, 0L, active2, 0x1L, active11, 0L); default : break; } - return jjStartNfa_3(29, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_3(29, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa31_3(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa31_3(long old1, long active1, long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_3(29, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_3(29, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_3(30, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_3(30, 0L, 0L, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 31; } switch(curChar) { case 69: case 101: - if ((active1 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_3(31, 127, 78); - return jjMoveStringLiteralDfa32_3(active1, 0L, active11, 0x10000000L); + if ((active2 & 0x1L) != 0L) + return jjStartNfaWithStates_3(31, 128, 78); + return jjMoveStringLiteralDfa32_3(active2, 0L, active11, 0x4000000000L); default : break; } - return jjStartNfa_3(30, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_3(30, 0L, 0L, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa32_3(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa32_3(long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_3(30, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_3(30, 0L, 0L, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_3(31, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); @@ -20711,7 +20843,7 @@ private final int jjMoveStringLiteralDfa32_3(long old1, long active1, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_3(active11, 0x10000000L); + return jjMoveStringLiteralDfa33_3(active11, 0x4000000000L); default : break; } @@ -20730,8 +20862,8 @@ private final int jjMoveStringLiteralDfa33_3(long old11, long active11) { case 84: case 116: - if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(33, 732, 78); + if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_3(33, 742, 78); break; default : break; @@ -20762,8 +20894,8 @@ private final int jjMoveNfa_3(int startState, int curPos) jjCheckNAddStates(62, 64); else if (curChar == 34) { - if (kind > 746) - kind = 746; + if (kind > 756) + kind = 756; } break; case 58: @@ -20771,8 +20903,8 @@ else if (curChar == 34) jjCheckNAddStates(65, 67); else if (curChar == 39) { - if (kind > 747) - kind = 747; + if (kind > 757) + kind = 757; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 59; @@ -20786,8 +20918,8 @@ else if (curChar == 39) jjCheckNAddStates(68, 70); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); } if (curChar == 36) @@ -20796,29 +20928,13 @@ else if (curChar == 39) case 76: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(52); } if ((0x3ff000000000000L & l) != 0L) jjCheckNAddTwoStates(51, 41); break; - case 31: - if ((0x7ff601000000000L & l) != 0L) - jjCheckNAddTwoStates(25, 26); - else if (curChar == 38) - jjstateSet[jjnewStateCnt++] = 32; - if ((0x3ff001000000000L & l) != 0L) - jjCheckNAddStates(68, 70); - if ((0x3ff001000000000L & l) != 0L) - { - if (kind > 803) - kind = 803; - jjCheckNAdd(23); - } - if (curChar == 36) - jjCheckNAdd(27); - break; case 78: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(25, 26); @@ -20826,8 +20942,8 @@ else if (curChar == 38) jjCheckNAddStates(68, 70); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); } if (curChar == 36) @@ -20843,6 +20959,22 @@ else if (curChar == 38) if (curChar == 32) jjCheckNAddTwoStates(61, 62); break; + case 31: + if ((0x7ff601000000000L & l) != 0L) + jjCheckNAddTwoStates(25, 26); + else if (curChar == 38) + jjstateSet[jjnewStateCnt++] = 32; + if ((0x3ff001000000000L & l) != 0L) + jjCheckNAddStates(68, 70); + if ((0x3ff001000000000L & l) != 0L) + { + if (kind > 814) + kind = 814; + jjCheckNAdd(23); + } + if (curChar == 36) + jjCheckNAdd(27); + break; case 80: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(25, 26); @@ -20852,8 +20984,8 @@ else if (curChar == 38) case 74: if (curChar == 47) { - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(71, 73); } else if (curChar == 42) @@ -20870,8 +21002,8 @@ else if (curChar == 46) jjCheckNAddTwoStates(51, 52); else if (curChar == 7) { - if (kind > 808) - kind = 808; + if (kind > 819) + kind = 819; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 11; @@ -20879,14 +21011,14 @@ else if (curChar == 34) jjCheckNAddStates(62, 64); if ((0x3ff000000000000L & l) != 0L) { - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAddStates(80, 86); } else if (curChar == 36) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); } break; @@ -20903,8 +21035,8 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 740) - kind = 740; + if (curChar == 39 && kind > 750) + kind = 750; break; case 6: if (curChar == 34) @@ -20918,30 +21050,30 @@ else if (curChar == 36) jjCheckNAddStates(62, 64); break; case 10: - if (curChar == 34 && kind > 746) - kind = 746; + if (curChar == 34 && kind > 756) + kind = 756; break; case 11: if (curChar != 45) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(71, 73); break; case 12: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(71, 73); break; case 13: - if ((0x2400L & l) != 0L && kind > 794) - kind = 794; + if ((0x2400L & l) != 0L && kind > 805) + kind = 805; break; case 14: - if (curChar == 10 && kind > 794) - kind = 794; + if (curChar == 10 && kind > 805) + kind = 805; break; case 15: if (curChar == 13) @@ -20958,15 +21090,15 @@ else if (curChar == 36) case 22: if (curChar != 36) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); break; case 23: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); break; case 24: @@ -20984,8 +21116,8 @@ else if (curChar == 36) case 27: if (curChar != 36) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjCheckNAddTwoStates(27, 28); break; case 28: @@ -20995,8 +21127,8 @@ else if (curChar == 36) case 29: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjCheckNAdd(29); break; case 32: @@ -21016,25 +21148,25 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 34; break; case 36: - if (curChar == 34 && kind > 805) - kind = 805; + if (curChar == 34 && kind > 816) + kind = 816; break; case 37: - if (curChar == 7 && kind > 808) - kind = 808; + if (curChar == 7 && kind > 819) + kind = 819; break; case 38: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAddStates(80, 86); break; case 39: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAdd(39); break; case 40: @@ -21048,8 +21180,8 @@ else if (curChar == 36) case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 735) - kind = 735; + if (kind > 745) + kind = 745; jjCheckNAdd(43); break; case 44: @@ -21063,22 +21195,22 @@ else if (curChar == 36) case 46: if (curChar != 46) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(47); break; case 47: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(47); break; case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAddStates(93, 95); break; case 49: @@ -21096,8 +21228,8 @@ else if (curChar == 36) case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(52); break; case 53: @@ -21112,12 +21244,12 @@ else if (curChar == 36) jjCheckNAddStates(65, 67); break; case 57: - if (curChar == 39 && kind > 747) - kind = 747; + if (curChar == 39 && kind > 757) + kind = 757; break; case 59: - if (curChar == 39 && kind > 748) - kind = 748; + if (curChar == 39 && kind > 758) + kind = 758; break; case 61: if (curChar == 32) @@ -21144,14 +21276,14 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 73; break; case 73: - if ((0xffff7fffffffffffL & l) != 0L && kind > 792) - kind = 792; + if ((0xffff7fffffffffffL & l) != 0L && kind > 803) + kind = 803; break; case 75: if (curChar != 47) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(71, 73); break; default : break; @@ -21186,20 +21318,8 @@ else if (curChar == 92) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; - jjCheckNAdd(23); - } - break; - case 31: - if ((0x7fffffe87fffffeL & l) != 0L) - jjCheckNAddTwoStates(25, 26); - if ((0x7fffffe87fffffeL & l) != 0L) - jjCheckNAddStates(68, 70); - if ((0x7fffffe87fffffeL & l) != 0L) - { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); } break; @@ -21210,8 +21330,8 @@ else if (curChar == 92) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); } break; @@ -21222,13 +21342,25 @@ else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; else if ((0x1000000010L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 761) + kind = 761; } if ((0x10000000100000L & l) != 0L) { - if (kind > 752) - kind = 752; + if (kind > 762) + kind = 762; + } + break; + case 31: + if ((0x7fffffe87fffffeL & l) != 0L) + jjCheckNAddTwoStates(25, 26); + if ((0x7fffffe87fffffeL & l) != 0L) + jjCheckNAddStates(68, 70); + if ((0x7fffffe87fffffeL & l) != 0L) + { + if (kind > 814) + kind = 814; + jjCheckNAdd(23); } break; case 80: @@ -21245,8 +21377,8 @@ else if (curChar == 96) jjCheckNAddStates(87, 89); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); } if ((0x20000000200000L & l) != 0L) @@ -21269,8 +21401,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(62, 64); break; case 12: - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjAddStates(71, 73); break; case 17: @@ -21289,21 +21421,21 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(87, 89); break; case 21: - if (curChar == 96 && kind > 801) - kind = 801; + if (curChar == 96 && kind > 812) + kind = 812; break; case 22: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); break; case 23: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); break; case 24: @@ -21313,15 +21445,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjAddStates(108, 109); break; case 29: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjstateSet[jjnewStateCnt++] = 29; break; case 30: @@ -21351,32 +21483,32 @@ else if ((0x100000001000000L & l) != 0L) jjAddStates(100, 107); break; case 62: - if ((0x1000000010L & l) != 0L && kind > 751) - kind = 751; + if ((0x1000000010L & l) != 0L && kind > 761) + kind = 761; break; case 64: - if ((0x10000000100000L & l) != 0L && kind > 752) - kind = 752; + if ((0x10000000100000L & l) != 0L && kind > 762) + kind = 762; break; case 66: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; break; case 67: - if ((0x8000000080000L & l) != 0L && kind > 753) - kind = 753; + if ((0x8000000080000L & l) != 0L && kind > 763) + kind = 763; break; case 69: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 70; break; case 70: - if ((0x400000004000L & l) != 0L && kind > 754) - kind = 754; + if ((0x400000004000L & l) != 0L && kind > 764) + kind = 764; break; case 73: - if (kind > 792) - kind = 792; + if (kind > 803) + kind = 803; break; default : break; } @@ -21408,8 +21540,8 @@ else if ((0x100000001000000L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21417,11 +21549,11 @@ else if ((0x100000001000000L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(25, 26); break; - case 31: + case 78: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21429,11 +21561,11 @@ else if ((0x100000001000000L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(25, 26); break; - case 78: + case 31: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21449,8 +21581,8 @@ else if ((0x100000001000000L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21463,8 +21595,8 @@ else if ((0x100000001000000L & l) != 0L) case 12: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjAddStates(71, 73); break; case 18: @@ -21475,15 +21607,15 @@ else if ((0x100000001000000L & l) != 0L) case 22: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); break; case 23: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 803) - kind = 803; + if (kind > 814) + kind = 814; jjCheckNAdd(23); break; case 24: @@ -21493,15 +21625,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjAddStates(108, 109); break; case 29: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjstateSet[jjnewStateCnt++] = 29; break; case 33: @@ -21514,8 +21646,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(65, 67); break; case 73: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 792) - kind = 792; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 803) + kind = 803; break; default : break; } @@ -21559,7 +21691,7 @@ private final int jjMoveNfa_5(int startState, int curPos) { case 0: if (curChar == 47) - kind = 795; + kind = 806; break; case 1: if (curChar == 42) @@ -21613,428 +21745,428 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, switch (pos) { case 0: - if ((active0 & 0x7ffe000000000L) != 0L || (active2 & 0xfffffffffffffff0L) != 0L || (active3 & 0xfffc000fffffffffL) != 0L || (active4 & 0xfffffc3ffffffffL) != 0L || (active5 & 0xfffffffff0000000L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xfffffffffffffeffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xdffffff000000fffL) != 0L || (active11 & 0x272bfe4fL) != 0L) + if ((active0 & 0x7ffe000000000L) != 0L || (active2 & 0xffffffffffffffe0L) != 0L || (active3 & 0xffc000ffffffffffL) != 0L || (active4 & 0xfffff87fffffffffL) != 0L || (active5 & 0xfffffffe00000001L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xfffffffffffdffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xffffc000003fffffL) != 0L || (active11 & 0x9caff93f7fL) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; return 76; } - if ((active11 & 0x100000000000000L) != 0L || (active12 & 0x400L) != 0L) - return 77; - if ((active10 & 0xffffff000L) != 0L) + if ((active11 & 0x80L) != 0L) { - jjmatchedKind = 802; - return 31; + jjmatchedKind = 813; + return 1; } - if ((active12 & 0x800L) != 0L) + if ((active12 & 0x200004L) != 0L) + return 77; + if ((active12 & 0x400000L) != 0L) return 58; - if ((active11 & 0x8000000000000L) != 0L) + if ((active11 & 0x2000000000000000L) != 0L) return 78; - if ((active12 & 0x2400040L) != 0L) + if ((active12 & 0x1200020000L) != 0L) return 74; - if ((active10 & 0x2000000000000000L) != 0L) + if ((active10 & 0x3fffffc00000L) != 0L) { - jjmatchedKind = 802; - return 1; + jjmatchedKind = 813; + return 31; } - if ((active0 & 0xfff8001ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xfL) != 0L || (active3 & 0x3fff000000000L) != 0L || (active4 & 0xf000003c00000000L) != 0L || (active5 & 0xfffffffL) != 0L || (active8 & 0x100L) != 0L || (active11 & 0x18d401b0L) != 0L || (active12 & 0x8000L) != 0L) + if ((active0 & 0xfff8001ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x1fL) != 0L || (active3 & 0x3fff0000000000L) != 0L || (active4 & 0x78000000000L) != 0L || (active5 & 0x1fffffffeL) != 0L || (active8 & 0x20000L) != 0L || (active11 & 0x635006c000L) != 0L || (active12 & 0x4000000L) != 0L) return 76; - if ((active12 & 0x10L) != 0L) + if ((active12 & 0xc000L) != 0L) return 11; - if ((active12 & 0x1000L) != 0L) + if ((active12 & 0x800000L) != 0L) return 79; return -1; case 1: - if ((active12 & 0x2400000L) != 0L) - return 72; - if ((active0 & 0x40007fe000000L) != 0L || (active3 & 0x80000c0000000000L) != 0L || (active4 & 0x40000000ffffffL) != 0L || (active5 & 0x398007c000000000L) != 0L || (active6 & 0x1eL) != 0L || (active9 & 0x30000000000000L) != 0L || (active11 & 0x20815022L) != 0L) - return 76; - if ((active0 & 0xfff3fff801fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0x7ffff3efffffffffL) != 0L || (active4 & 0xefbffffbff000000L) != 0L || (active5 & 0xc67ff83fffffffffL) != 0L || (active6 & 0xffffffffffffffe1L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffcfffffffffffffL) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0x1f7eafddL) != 0L) + if ((active0 & 0xfff3fff801fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xffff3effffffffffL) != 0L || (active4 & 0xf7ffff7ff0000007L) != 0L || (active5 & 0xcfff07fffffffffdL) != 0L || (active6 & 0xfffffffffffff838L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0x9fffffffffffffffL) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0x7dfabf77ffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 1; } return 76; } + if ((active12 & 0x1200000000L) != 0L) + return 72; + if ((active0 & 0x40007fe000000L) != 0L || (active3 & 0xc00000000000L) != 0L || (active4 & 0x80000000ffffff8L) != 0L || (active5 & 0x3000f80000000000L) != 0L || (active6 & 0x7c7L) != 0L || (active9 & 0x6000000000000000L) != 0L || (active11 & 0x8205408800L) != 0L) + return 76; return -1; case 2: - if ((active0 & 0xfff3dfef79e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xe1ff2ffffff09fffL) != 0L || (active3 & 0x7fdffaeff87ff9ffL) != 0L || (active4 & 0xcfbfff43ffe81fffL) != 0L || (active5 & 0xe57ffbafffc07fe7L) != 0L || (active6 & 0xffffff701fffde3dL) != 0L || (active7 & 0xfffffc3ffffffff8L) != 0L || (active8 & 0x1ffe3fL) != 0L || (active9 & 0xffefffffeffffc00L) != 0L || (active10 & 0xdfffffffffffffffL) != 0L || (active11 & 0x2bfffffdL) != 0L) + if ((active0 & 0xfff3dfef79e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x1ff2ffffff087fffL) != 0L || (active3 & 0xfdffaeff87ff9ffeL) != 0L || (active4 & 0xf7ffe87ffe81fff7L) != 0L || (active5 & 0xafff75fff80ffcf9L) != 0L || (active6 & 0xffffdc07fff78fbcL) != 0L || (active7 & 0xffff0ffffffffe3fL) != 0L || (active8 & 0x3ffc7fffL) != 0L || (active9 & 0xdfffffdffff80000L) != 0L || (active10 & 0xffffffffffffffffL) != 0L || (active11 & 0xaffffff77fL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 2; } return 76; } - if ((active0 & 0x201004167370L) != 0L || (active2 & 0x1e00d000000f6000L) != 0L || (active3 & 0x20010007800600L) != 0L || (active4 & 0x200000b80007e000L) != 0L || (active5 & 0x12000410003f8018L) != 0L || (active6 & 0x8fe00021c0L) != 0L || (active7 & 0x3c000000007L) != 0L || (active8 & 0xffffffffffe001c0L) != 0L || (active9 & 0x100003ffL) != 0L || (active10 & 0x2000000000000000L) != 0L || (active11 & 0x14000000L) != 0L) + if ((active0 & 0x201004167370L) != 0L || (active2 & 0xe00d000000f78000L) != 0L || (active3 & 0x200100078006001L) != 0L || (active4 & 0x1700007e0000L) != 0L || (active5 & 0x4000820007f00304L) != 0L || (active6 & 0x23f800087002L) != 0L || (active7 & 0xf000000001c0L) != 0L || (active8 & 0xffffffffc0038000L) != 0L || (active9 & 0x200007ffffL) != 0L || (active11 & 0x5000000080L) != 0L) return 76; return -1; case 3: - if ((active0 & 0x99c29fef79e9ece0L) != 0L || (active1 & 0xfff7cfffffffdc01L) != 0L || (active2 & 0xf9ae2fe1fffe800fL) != 0L || (active3 & 0x7f0ff2ecbf7ffd3fL) != 0L || (active4 & 0xcfa7137000ebdfffL) != 0L || (active5 & 0x817e1b0fcdf77ff7L) != 0L || (active6 & 0x87fdff3fd3ffc1bdL) != 0L || (active7 & 0xd7fffdbf7ffffffeL) != 0L || (active8 & 0xffffffffffdf4d3fL) != 0L || (active9 & 0xffe800bfeffffbffL) != 0L || (active10 & 0x1870bffd07fff71fL) != 0L || (active11 & 0x3ff3fdfcL) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 3; } - return 76; + return 80; } - if ((active2 & 0x400000000000000L) != 0L) + if ((active0 & 0x6631400000000000L) != 0L || (active1 & 0x106000000023feL) != 0L || (active2 & 0x51001e000047fe0L) != 0L || (active3 & 0xd00803400000c00L) != 0L || (active4 & 0x31d807ff0400000L) != 0L || (active5 & 0x803c140640000000L) != 0L || (active6 & 0x8010030007800cL) != 0L || (active7 & 0x80200000001eL) != 0L || (active8 & 0x1650050L) != 0L || (active9 & 0xffe800000080000L) != 0L || (active10 & 0x3d000be00021c000L) != 0L || (active11 & 0x3008071eL) != 0L) + return 76; + if ((active0 & 0x99c29fef79e9ece0L) != 0L || (active1 & 0xffef9fffffffdc01L) != 0L || (active2 & 0x9ae2fe1fffeb001fL) != 0L || (active3 & 0xf0ff2ecbf7ffd3ffL) != 0L || (active4 & 0xf4e26e000ebdfff7L) != 0L || (active5 & 0x2fc361f9beeffef9L) != 0L || (active6 & 0xff7fcff4fff06fb0L) != 0L || (active7 & 0xffff6fdfffffffa1L) != 0L || (active8 & 0xffffffffbe9a7fafL) != 0L || (active9 & 0xd0017fdffff7ffffL) != 0L || (active10 & 0xc2fff41fffde3fffL) != 0L || (active11 & 0xffcff7f061L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 3; } - return 80; - } - if ((active0 & 0x6631400000000000L) != 0L || (active1 & 0x83000000023feL) != 0L || (active2 & 0x51001e00005ff0L) != 0L || (active3 & 0xd00803400000c0L) != 0L || (active4 & 0x18ec03ff040000L) != 0L || (active5 & 0x6401e0a032000000L) != 0L || (active6 & 0x780200400c001e00L) != 0L || (active7 & 0x2800020080000000L) != 0L || (active8 & 0xb280L) != 0L || (active9 & 0x7ff4000000400L) != 0L || (active10 & 0xc78f4002f80008e0L) != 0L || (active11 & 0xc0201L) != 0L) return 76; + } return -1; case 4: - if ((active0 & 0xd9e29e2f780120e0L) != 0L || (active1 & 0xfff3affffffe9bfcL) != 0L || (active2 & 0x592e2ffd3ffe9fa7L) != 0L || (active3 & 0x7b0c02ecb7413dbdL) != 0L || (active4 & 0x4155933f8ebde3fL) != 0L || (active5 & 0x817ecb09c4777f70L) != 0L || (active6 & 0x83f5f72fd3ffdd31L) != 0L || (active7 & 0xd7e1bdbf1ffefffeL) != 0L || (active8 & 0xffffffffffdd4c3fL) != 0L || (active9 & 0xffeffca3efefc3ffL) != 0L || (active10 & 0xb68bf80f2fcf75eL) != 0L || (active11 & 0x1e73ebbcL) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 4; } - return 76; + return 80; } - if ((active2 & 0x400000000000000L) != 0L) + if ((active0 & 0x1c001e8cc00L) != 0L || (active1 & 0x8800000014401L) != 0L || (active2 & 0x800000c00000010L) != 0L || (active3 & 0x483f000083ec002aL) != 0L || (active4 & 0x7440480000001c00L) != 0L || (active5 & 0x2200c5300010f9L) != 0L || (active6 & 0x202040000002180L) != 0L || (active7 & 0x3c80001800400009L) != 0L || (active8 & 0x4020000L) != 0L || (active9 & 0x380020700000L) != 0L || (active10 & 0x4801f4140c000200L) != 0L || (active11 & 0x8600510240L) != 0L) + return 76; + if ((active0 & 0xd9e29e2f780120e0L) != 0L || (active1 & 0xffe75ffffffe9bfcL) != 0L || (active2 & 0x92e2ffd3ffeb7f4fL) != 0L || (active3 & 0xb0c02ecb7413dbd5L) != 0L || (active4 & 0x82ab267f8ebde3f7L) != 0L || (active5 & 0x2fd961388eefee00L) != 0L || (active6 & 0xfd7dcbf4fff74e30L) != 0L || (active7 & 0xc37f6fc7ffbfffa0L) != 0L || (active8 & 0xffffffffba987fafL) != 0L || (active9 & 0xdff947dfdf87ffffL) != 0L || (active10 & 0xa2fe03cbf3debdffL) != 0L || (active11 & 0x79cfaef02dL) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 4; } - return 80; - } - if ((active0 & 0x1c001e8cc00L) != 0L || (active1 & 0x4400000014401L) != 0L || (active2 & 0xa0800000c0000008L) != 0L || (active3 & 0x483f000083ec002L) != 0L || (active4 & 0xcba20240000001c0L) != 0L || (active5 & 0x1100629800087L) != 0L || (active6 & 0x240808100000008cL) != 0L || (active7 & 0x1e400060010000L) != 0L || (active8 & 0x20100L) != 0L || (active9 & 0x1c00103800L) != 0L || (active10 & 0x9012007d05030001L) != 0L || (active11 & 0x21801440L) != 0L) return 76; + } return -1; case 5: - if ((active2 & 0x400000000000000L) != 0L) + if ((active0 & 0xd9c2878e79c02040L) != 0L || (active1 & 0xffe35fffe67e9bfcL) != 0L || (active2 & 0x92e07fd20fcb7f43L) != 0L || (active3 & 0x909a0e4364834b01L) != 0L || (active4 & 0xe28b267f8cbda3f3L) != 0L || (active5 & 0x6896138828ee6f0L) != 0L || (active6 & 0xed7dcaf4dff70700L) != 0L || (active7 & 0x383f6f4003bfffa0L) != 0L || (active8 & 0xffffffffb888678cL) != 0L || (active9 & 0xdff9709edb47ffffL) != 0L || (active10 & 0xa2ff03c0e3cebdffL) != 0L || (active11 & 0x79cfbf7028L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 5; } - return 80; + return 76; } - if ((active0 & 0x201821000100a0L) != 0L || (active1 & 0x2000019800000L) != 0L || (active2 & 0x400028001f020006L) != 0L || (active3 & 0x420602088101090dL) != 0L || (active4 & 0x1000000200400L) != 0L || (active5 & 0x814a800001630840L) != 0L || (active6 & 0x40000400800121L) != 0L || (active7 & 0x11e1a0021ff00000L) != 0L || (active8 & 0x1080cL) != 0L || (active9 & 0x3a0824000L) != 0L || (active10 & 0x140002002c40400L) != 0L || (active11 & 0x20L) != 0L) + if ((active0 & 0x201821000100a0L) != 0L || (active1 & 0x4000019800000L) != 0L || (active2 & 0x28001f020000cL) != 0L || (active3 & 0x20602088101090d4L) != 0L || (active4 & 0x20000002004004L) != 0L || (active5 & 0x295000002c610800L) != 0L || (active6 & 0x1000010020004830L) != 0L || (active7 & 0xc3400087fc000000L) != 0L || (active8 & 0x2101823L) != 0L || (active9 & 0x74104800000L) != 0L || (active10 & 0x800b10100000L) != 0L || (active11 & 0x8005L) != 0L) return 76; - if ((active0 & 0xd9c2878e79c02040L) != 0L || (active1 & 0xfff1afffe67e9bfcL) != 0L || (active2 & 0x192e07fd20fc9fa1L) != 0L || (active3 & 0x3909a0e4364834b0L) != 0L || (active4 & 0x87145933f8cbda3fL) != 0L || (active5 & 0x344b09c4147737L) != 0L || (active6 & 0x83b5f72bd37fdc18L) != 0L || (active7 & 0xc61c1dbd000efffeL) != 0L || (active8 & 0xffffffffffdc4433L) != 0L || (active9 & 0xffeffcb84f6da3ffL) != 0L || (active10 & 0xa28bfc0f038f35eL) != 0L || (active11 & 0x1e73efdcL) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 5; } - return 76; + return 80; } return -1; case 6: - if ((active0 & 0xd982840000000000L) != 0L || (active1 & 0xffe0080700420000L) != 0L || (active2 & 0x2e0001063c0001L) != 0L || (active3 & 0x202006002490L) != 0L || (active4 & 0x8404500000484031L) != 0L || (active5 & 0x4000900020001L) != 0L || (active6 & 0x384812bd1200801L) != 0L || (active7 & 0x300043c0806a080L) != 0L || (active8 & 0x8000430L) != 0L || (active9 & 0x8000000000000L) != 0L || (active10 & 0xa003c800038121eL) != 0L || (active11 & 0xc608008L) != 0L) - return 76; - if ((active0 & 0x40038e79c02040L) != 0L || (active1 & 0x11a7f8f73c9bfcL) != 0L || (active2 & 0x190007fc20c09fa4L) != 0L || (active3 & 0x390980c430481028L) != 0L || (active4 & 0x3100933f8839a0eL) != 0L || (active5 & 0x304b00c4147736L) != 0L || (active6 & 0x80317600025fd418L) != 0L || (active7 & 0xc41d198107c85f7eL) != 0L || (active8 & 0xfffffffff7dc400bL) != 0L || (active9 & 0xffe7fcbb4f6da3ffL) != 0L || (active10 & 0x288340f000e140L) != 0L || (active11 & 0x12136ff4L) != 0L) + if ((active0 & 0x40038e79c02040L) != 0L || (active1 & 0x234ff8f73c9bfcL) != 0L || (active2 & 0x90007fc20c0b7f48L) != 0L || (active3 & 0x90980c4304810281L) != 0L || (active4 & 0x6201267f8839a0e3L) != 0L || (active5 & 0x6096018828ee6c0L) != 0L || (active6 & 0xc5d800097f50100L) != 0L || (active7 & 0x3a3e6041f217dfa0L) != 0L || (active8 & 0xffffffefb8801788L) != 0L || (active9 & 0xcff9769edb47ffffL) != 0L || (active10 & 0xa20d03c0038681ffL) != 0L || (active11 & 0x484dbfd000L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 6; } return 76; } - if ((active2 & 0x400000000000000L) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 6; } return 80; } + if ((active0 & 0xd982840000000000L) != 0L || (active1 & 0xffc0100700420000L) != 0L || (active2 & 0x2e0001063c00003L) != 0L || (active3 & 0x2020060024900L) != 0L || (active4 & 0x808a000004840310L) != 0L || (active5 & 0x80012000400030L) != 0L || (active6 & 0xe1204af448020620L) != 0L || (active7 & 0x10f0201a82000L) != 0L || (active8 & 0x1000086006L) != 0L || (active9 & 0x1000000000000000L) != 0L || (active10 & 0xf20000e0483c00L) != 0L || (active11 & 0x3182002028L) != 0L) + return 76; return -1; case 7: - if ((active0 & 0x1040038e79c00000L) != 0L || (active1 & 0xffd1a1fef73c1bfcL) != 0L || (active2 & 0x180c017820409085L) != 0L || (active3 & 0x3808804030480028L) != 0L || (active4 & 0x3100813f881922eL) != 0L || (active5 & 0x300b0040007706L) != 0L || (active6 & 0x80306003825fd010L) != 0L || (active7 & 0xc01d11b807c0417eL) != 0L || (active8 & 0xe5fffffe2740002aL) != 0L || (active9 & 0xffa7fc3b476da3ffL) != 0L || (active10 & 0x20a200f000e05cL) != 0L || (active11 & 0x12114ff0L) != 0L) + if ((active0 & 0x100000000002040L) != 0L || (active1 & 0xe0000008000L) != 0L || (active2 & 0x100068400a007c40L) != 0L || (active3 & 0x1010084000010000L) != 0L || (active4 & 0x240000208000L) != 0L || (active5 & 0x8001082800600L) != 0L || (active6 & 0x8045800000010100L) != 0L || (active7 & 0x10004002078000L) != 0L || (active8 & 0x3a138800208L) != 0L || (active9 & 0x8001001000000034L) != 0L || (active10 & 0x2005000000060000L) != 0L || (active11 & 0x8801000L) != 0L) + return 76; + if ((active2 & 0x4000000000000000L) != 0L) + return 80; + if ((active0 & 0x1040038e79c00000L) != 0L || (active1 & 0xffa341fef73c1bfcL) != 0L || (active2 & 0x80c01782040b030bL) != 0L || (active3 & 0x8088040304800281L) != 0L || (active4 & 0x6201027f881922e3L) != 0L || (active5 & 0x6016008000ee0c0L) != 0L || (active6 & 0xc1800e097f40400L) != 0L || (active7 & 0x3a2e6e01f0105fa0L) != 0L || (active8 & 0xfffffc4e80005580L) != 0L || (active9 & 0x4ff8768edb47ffcbL) != 0L || (active10 & 0x828803c00380b9ffL) != 0L || (active11 & 0x48453fc000L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 7; } return 76; } - if ((active0 & 0x100000000002040L) != 0L || (active1 & 0x60000008000L) != 0L || (active2 & 0x100068400a00f20L) != 0L || (active3 & 0x101008400001000L) != 0L || (active4 & 0x12000020800L) != 0L || (active5 & 0x400084140030L) != 0L || (active6 & 0x201160000000408L) != 0L || (active7 & 0x400080100081e00L) != 0L || (active8 & 0x1a000001d09c4001L) != 0L || (active9 & 0x40008008000000L) != 0L || (active10 & 0x8014000000100L) != 0L || (active11 & 0x22004L) != 0L) - return 76; - if ((active2 & 0x400000000000000L) != 0L) - return 80; return -1; case 8: - if ((active0 & 0x1040018869800000L) != 0L || (active1 & 0xffc121fe07001804L) != 0L || (active2 & 0x100c017820408e85L) != 0L || (active3 & 0x2000800010080000L) != 0L || (active4 & 0x100813f8001200L) != 0L || (active5 & 0x30000040007706L) != 0L || (active6 & 0x10040382001010L) != 0L || (active7 & 0x1d013803c04166L) != 0L || (active8 & 0xf59ffff62758002aL) != 0L || (active9 & 0x87a6081b016583ffL) != 0L || (active10 & 0x202000f000c05cL) != 0L || (active11 & 0x121047d0L) != 0L) + if ((active0 & 0x1040018869800000L) != 0L || (active1 & 0xff8245fe07001804L) != 0L || (active2 & 0xc0178204087a0bL) != 0L || (active3 & 0x8000100800001L) != 0L || (active4 & 0x201027f80012002L) != 0L || (active5 & 0x6000008000ee0c0L) != 0L || (active6 & 0x40100e080040400L) != 0L || (active7 & 0x3a0c4e00f0105980L) != 0L || (active8 & 0x3fffec4eb0005400L) != 0L || (active9 & 0x4c103602cb07ffebL) != 0L || (active10 & 0x808003c00300b90fL) != 0L || (active11 & 0x48411f4000L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 8; } return 76; } - if ((active0 & 0x20610400000L) != 0L || (active1 & 0x108000f03c03f8L) != 0L || (active2 & 0x800000000001000L) != 0L || (active3 & 0x1808004020400028L) != 0L || (active4 & 0x30000000081802eL) != 0L || (active5 & 0xb0000000000L) != 0L || (active6 & 0x80206000005fc000L) != 0L || (active7 & 0xc000108004000018L) != 0L || (active8 & 0x60000800000000L) != 0L || (active9 & 0x7801f42046082000L) != 0L || (active10 & 0x820000002000L) != 0L || (active11 & 0x10820L) != 0L) + if ((active0 & 0x20610400000L) != 0L || (active1 & 0x210000f03c03f8L) != 0L || (active2 & 0x8000000000030100L) != 0L || (active3 & 0x8080040204000280L) != 0L || (active4 & 0x60000000081802e1L) != 0L || (active5 & 0x1600000000000L) != 0L || (active6 & 0x818000017f00000L) != 0L || (active7 & 0x22200100000620L) != 0L || (active8 & 0xc000100000000180L) != 0L || (active9 & 0x3e8408c10400000L) != 0L || (active10 & 0x2080000008000f0L) != 0L || (active11 & 0x4208000L) != 0L) return 76; return -1; case 9: - if ((active0 & 0x468000000L) != 0L || (active1 & 0x100fe00000a00L) != 0L || (active2 & 0x11020408080L) != 0L || (active4 & 0x10081318000000L) != 0L || (active5 & 0x20040004000L) != 0L || (active6 & 0x10000000001010L) != 0L || (active7 & 0x8010000004122L) != 0L || (active8 & 0x407000000L) != 0L || (active9 & 0x1000080801048000L) != 0L || (active10 & 0x200000000040L) != 0L || (active11 & 0x2100500L) != 0L) - return 76; - if ((active0 & 0x1040018801800000L) != 0L || (active1 & 0xffc02100c73811f4L) != 0L || (active2 & 0x100c006800000e05L) != 0L || (active3 & 0x3000800010080000L) != 0L || (active4 & 0x2000000e0011200L) != 0L || (active5 & 0x30000000003706L) != 0L || (active6 & 0x403821f8000L) != 0L || (active7 & 0x15003803c00044L) != 0L || (active8 & 0xf59ffff22058002aL) != 0L || (active9 & 0xc7a7e013046103ffL) != 0L || (active10 & 0x200000f000c01cL) != 0L || (active11 & 0x100042d0L) != 0L) + if ((active0 & 0x1040018801800000L) != 0L || (active1 & 0xff804500c73811f4L) != 0L || (active2 & 0xc006800000780bL) != 0L || (active3 & 0x8000100800001L) != 0L || (active4 & 0x4000000e00112003L) != 0L || (active5 & 0x60000000006e0c0L) != 0L || (active6 & 0x100e087e00000L) != 0L || (active7 & 0x2a0c0e00f0001100L) != 0L || (active8 & 0x3fffe440b0005400L) != 0L || (active9 & 0x4fc02608c207ffebL) != 0L || (active10 & 0x800003c00300398fL) != 0L || (active11 & 0x40010b4000L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 9; } return 76; } + if ((active0 & 0x468000000L) != 0L || (active1 & 0x200fe00000a00L) != 0L || (active2 & 0x110204080200L) != 0L || (active4 & 0x201027180000000L) != 0L || (active5 & 0x400800080000L) != 0L || (active6 & 0x400000000040400L) != 0L || (active7 & 0x1000400000104880L) != 0L || (active8 & 0x80e00000000L) != 0L || (active9 & 0x10100209000000L) != 0L || (active10 & 0x80000000008020L) != 0L || (active11 & 0x840140000L) != 0L) + return 76; return -1; case 10: - if ((active0 & 0x1000010801800000L) != 0L || (active1 & 0xf7c02074863811f0L) != 0L || (active2 & 0x100c002000000e01L) != 0L || (active3 & 0x2000800000000000L) != 0L || (active4 & 0x200000010011000L) != 0L || (active5 & 0x30000000000706L) != 0L || (active6 & 0x403801f8000L) != 0L || (active7 & 0x14003803c00040L) != 0L || (active8 & 0x951fffe000580022L) != 0L || (active9 & 0x4027e000042001ffL) != 0L || (active10 & 0x200000f000801cL) != 0L || (active11 & 0x10000050L) != 0L) + if ((active0 & 0x40008000000000L) != 0L || (active1 & 0x1000018041000004L) != 0L || (active2 & 0x48000000008L) != 0L || (active3 & 0x100800000L) != 0L || (active4 & 0xe00002001L) != 0L || (active5 & 0x60000L) != 0L || (active6 & 0x80000000L) != 0L || (active7 & 0x204000000000100L) != 0L || (active8 & 0x244000001000L) != 0L || (active9 & 0x2600820400c1L) != 0L || (active10 & 0x100010fL) != 0L || (active11 & 0x10a0000L) != 0L) + return 76; + if ((active0 & 0x1000010801800000L) != 0L || (active1 & 0xef804474863811f0L) != 0L || (active2 & 0xc0020000007803L) != 0L || (active3 & 0x8000000000001L) != 0L || (active4 & 0x4000000100110002L) != 0L || (active5 & 0x60000000000e0c0L) != 0L || (active6 & 0x100e007e00000L) != 0L || (active7 & 0x28080e00f0001000L) != 0L || (active8 & 0x3fffc000b0004400L) != 0L || (active9 & 0x4fc000084003ff2aL) != 0L || (active10 & 0x800003c002003880L) != 0L || (active11 & 0x4000014000L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 10; } return 76; } - if ((active0 & 0x40008000000000L) != 0L || (active1 & 0x800018041000004L) != 0L || (active2 & 0x4800000004L) != 0L || (active3 & 0x1000000010080000L) != 0L || (active4 & 0xe0000200L) != 0L || (active5 & 0x3000L) != 0L || (active6 & 0x2000000L) != 0L || (active7 & 0x1000000000004L) != 0L || (active8 & 0x6080001220000008L) != 0L || (active9 & 0x8780001300410200L) != 0L || (active10 & 0x4000L) != 0L || (active11 & 0x4280L) != 0L) - return 76; return -1; case 11: - if ((active0 & 0x10801800000L) != 0L || (active1 & 0x91402074863801f0L) != 0L || (active2 & 0x100c002000000e00L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000090000000L) != 0L || (active5 & 0x10000000000304L) != 0L || (active6 & 0x401801f8000L) != 0L || (active7 & 0x4002803c00040L) != 0L || (active8 & 0x901fffe000080000L) != 0L || (active9 & 0x4727c0000420013eL) != 0L || (active10 & 0xf0008014L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000000000000L) != 0L || (active1 & 0xcd00000000001000L) != 0L || (active2 & 0x2L) != 0L || (active3 & 0x8000000000000L) != 0L || (active4 & 0x110000L) != 0L || (active5 & 0x400000000008040L) != 0L || (active6 & 0x8000000000L) != 0L || (active7 & 0x2008040000000000L) != 0L || (active8 & 0xa0004400L) != 0L || (active9 & 0x4000000001820aL) != 0L || (active10 & 0x8000000000001000L) != 0L || (active11 & 0x4000L) != 0L) + return 76; + if ((active0 & 0x10801800000L) != 0L || (active1 & 0x22804474863801f0L) != 0L || (active2 & 0xc0020000007801L) != 0L || (active3 & 0x1L) != 0L || (active4 & 0x4000000900000002L) != 0L || (active5 & 0x200000000006080L) != 0L || (active6 & 0x1006007e00000L) != 0L || (active7 & 0x8000a00f0001000L) != 0L || (active8 & 0x3fffc00010000000L) != 0L || (active9 & 0x4f80000840027d20L) != 0L || (active10 & 0x3c00200288eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 11; } return 76; } - if ((active0 & 0x1000000000000000L) != 0L || (active1 & 0x6680000000001000L) != 0L || (active2 & 0x1L) != 0L || (active3 & 0x800000000000L) != 0L || (active4 & 0x11000L) != 0L || (active5 & 0x20000000000402L) != 0L || (active6 & 0x200000000L) != 0L || (active7 & 0x10001000000000L) != 0L || (active8 & 0x500000000500022L) != 0L || (active9 & 0x2000000000c1L) != 0L || (active10 & 0x20000000000008L) != 0L || (active11 & 0x10L) != 0L) - return 76; return -1; case 12: - if ((active0 & 0x800000000L) != 0L || (active1 & 0x200000000000L) != 0L || (active2 & 0x1000002000000200L) != 0L || (active4 & 0x10000000L) != 0L || (active8 & 0x1000000000080000L) != 0L || (active9 & 0x2400000000108L) != 0L || (active10 & 0x8000L) != 0L) - return 76; - if ((active0 & 0x10001800000L) != 0L || (active1 & 0xd1400074863801f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000080000000L) != 0L || (active5 & 0x10000000000304L) != 0L || (active6 & 0x401801f8000L) != 0L || (active7 & 0x4002803c00040L) != 0L || (active8 & 0x801fffe000000000L) != 0L || (active9 & 0x4725800004200036L) != 0L || (active10 & 0xf0000014L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x10001800000L) != 0L || (active1 & 0xa2800474863801f0L) != 0L || (active2 & 0xc0000000007001L) != 0L || (active4 & 0x4000000800000002L) != 0L || (active5 & 0x200000000006080L) != 0L || (active6 & 0x1006007e00000L) != 0L || (active7 & 0x8000a00f0001000L) != 0L || (active8 & 0x3fffc00000000000L) != 0L || (active9 & 0x4b00000840006d00L) != 0L || (active10 & 0x3c00000288eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 12; return 76; } + if ((active0 & 0x800000000L) != 0L || (active1 & 0x400000000000L) != 0L || (active2 & 0x20000000800L) != 0L || (active3 & 0x1L) != 0L || (active4 & 0x100000000L) != 0L || (active8 & 0x10000000L) != 0L || (active9 & 0x480000000021020L) != 0L || (active10 & 0x2000000L) != 0L) + return 76; return -1; case 13: - if ((active0 & 0x10001800000L) != 0L || (active1 & 0xc1400074862801f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active5 & 0x10000000000204L) != 0L || (active6 & 0x1801e0000L) != 0L || (active7 & 0x803c00000L) != 0L || (active8 & 0x801fffe000000000L) != 0L || (active9 & 0x4725000004200012L) != 0L || (active10 & 0xf0000004L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x10001800000L) != 0L || (active1 & 0x82800474862801f0L) != 0L || (active2 & 0xc0000000003001L) != 0L || (active5 & 0x200000000004080L) != 0L || (active6 & 0x6007800000L) != 0L || (active7 & 0x200f0000000L) != 0L || (active8 & 0x3fffc00000000000L) != 0L || (active9 & 0x4a00000840002500L) != 0L || (active10 & 0x3c00000088eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 13; return 76; } - if ((active1 & 0x1000000000100000L) != 0L || (active3 & 0x2000000000000000L) != 0L || (active4 & 0x200000080000000L) != 0L || (active5 & 0x100L) != 0L || (active6 & 0x40000018000L) != 0L || (active7 & 0x4002000000040L) != 0L || (active9 & 0x800000000024L) != 0L || (active10 & 0x10L) != 0L) + if ((active1 & 0x2000000000100000L) != 0L || (active2 & 0x4000L) != 0L || (active4 & 0x4000000800000002L) != 0L || (active5 & 0x2000L) != 0L || (active6 & 0x1000000600000L) != 0L || (active7 & 0x800080000001000L) != 0L || (active9 & 0x100000000004800L) != 0L || (active10 & 0x2000L) != 0L) return 76; return -1; case 14: - if ((active0 & 0x1800000L) != 0L || (active1 & 0xc1000050862800f0L) != 0L || (active2 & 0xc000000000c00L) != 0L || (active5 & 0x10000000000200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x3400000L) != 0L || (active8 & 0x8017ffe000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x82000050862800f0L) != 0L || (active2 & 0xc0000000003001L) != 0L || (active5 & 0x200000000004000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0xd0000000L) != 0L || (active8 & 0x2fffc00000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 14; return 76; } - if ((active0 & 0x10000000000L) != 0L || (active1 & 0x40002400000100L) != 0L || (active5 & 0x4L) != 0L || (active6 & 0x180000000L) != 0L || (active7 & 0x800800000L) != 0L || (active8 & 0x8000000000000L) != 0L || (active9 & 0x4025000004200010L) != 0L || (active10 & 0x4L) != 0L) + if ((active0 & 0x10000000000L) != 0L || (active1 & 0x80042400000100L) != 0L || (active5 & 0x80L) != 0L || (active6 & 0x6000000000L) != 0L || (active7 & 0x20020000000L) != 0L || (active8 & 0x1000000000000000L) != 0L || (active9 & 0x4a00000840002000L) != 0L || (active10 & 0x880L) != 0L) return 76; return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0xc1000050000800e0L) != 0L || (active2 & 0xc00L) != 0L || (active5 & 0x10000000000200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x3400000L) != 0L || (active8 & 0x8007fe0000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x82000050000800e0L) != 0L || (active2 & 0x3001L) != 0L || (active5 & 0x200000000004000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0xd0000000L) != 0L || (active8 & 0xffc000000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 15; } return 76; } - if ((active0 & 0x800000L) != 0L || (active1 & 0x86200010L) != 0L || (active2 & 0xc000000000000L) != 0L || (active8 & 0x1001e000000000L) != 0L) + if ((active0 & 0x800000L) != 0L || (active1 & 0x86200010L) != 0L || (active2 & 0xc0000000000000L) != 0L || (active8 & 0x2003c00000000000L) != 0L) return 76; return -1; case 16: - if ((active1 & 0x4000004000080000L) != 0L || (active5 & 0x10000000000000L) != 0L || (active7 & 0x2000000L) != 0L || (active8 & 0x70e0000000000L) != 0L) - return 76; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000010040000e0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x8000f1c000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000010040000e0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x1e3800000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 16; } return 76; } + if ((active1 & 0x8000004000080000L) != 0L || (active5 & 0x200000000000000L) != 0L || (active7 & 0x80000000L) != 0L || (active8 & 0xe1c000000000000L) != 0L) + return 76; return -1; case 17: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000000040000a0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x8002bdc000000000L) != 0L || (active9 & 0x700000000000002L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000000040000a0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x57b800000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x3c00000000eL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 17; return 76; } - if ((active1 & 0x1000000040L) != 0L || (active8 & 0x400000000000L) != 0L) + if ((active1 & 0x1000000040L) != 0L || (active8 & 0x80000000000000L) != 0L) return 76; return -1; case 18: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x81000000040000a0L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active5 & 0x200L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1400000L) != 0L || (active8 & 0x20dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active8 & 0x160000000000000L) != 0L || (active9 & 0x500L) != 0L || (active10 & 0x2L) != 0L) + return 76; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x2000000040000a0L) != 0L || (active2 & 0x80000000003001L) != 0L || (active5 & 0x4000L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x50000000L) != 0L || (active8 & 0x41b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 18; } return 76; } - if ((active8 & 0x8000b00000000000L) != 0L || (active9 & 0x100000000000002L) != 0L) - return 76; return -1; case 19: - if ((active1 & 0x80L) != 0L || (active5 & 0x200L) != 0L || (active7 & 0x400000L) != 0L) + if ((active1 & 0x80L) != 0L || (active5 & 0x4000L) != 0L || (active7 & 0x10000000L) != 0L) return 76; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x8100000004000020L) != 0L || (active2 & 0x8000000000c00L) != 0L || (active6 & 0x1e0000L) != 0L || (active7 & 0x1000000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x200000004000020L) != 0L || (active2 & 0x80000000003001L) != 0L || (active6 & 0x7800000L) != 0L || (active7 & 0x40000000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 19; return 76; } return -1; case 20: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0xc00L) != 0L || (active6 & 0x1e0000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x600000000000000L) != 0L || (active10 & 0xf0000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020L) != 0L || (active2 & 0x80000000000000L) != 0L || (active7 & 0x40000000L) != 0L) + return 76; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x3001L) != 0L || (active6 & 0x7800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x3c00000000cL) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 20; return 76; } - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020L) != 0L || (active2 & 0x8000000000000L) != 0L || (active7 & 0x1000000L) != 0L) - return 76; return -1; case 21: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x1e0000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x90000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active2 & 0x1000L) != 0L || (active10 & 0x18000000004L) != 0L) + return 76; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x7800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x24000000008L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 21; return 76; } - if ((active2 & 0x400L) != 0L || (active9 & 0x200000000000000L) != 0L || (active10 & 0x60000000L) != 0L) - return 76; return -1; case 22: - if ((active6 & 0x80000L) != 0L) - return 76; - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x160000L) != 0L || (active8 & 0x22dc000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x90000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x5800000L) != 0L || (active8 & 0x45b800000000000L) != 0L || (active10 & 0x24000000008L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 22; return 76; } + if ((active6 & 0x2000000L) != 0L) + return 76; return -1; case 23: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x160000L) != 0L || (active8 & 0x22d8000000000L) != 0L || (active10 & 0x10000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x5800000L) != 0L || (active8 & 0x45b000000000000L) != 0L || (active10 & 0x4000000000L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 23; return 76; } - if ((active8 & 0x4000000000L) != 0L || (active9 & 0x400000000000000L) != 0L || (active10 & 0x80000000L) != 0L) + if ((active8 & 0x800000000000L) != 0L || (active10 & 0x20000000008L) != 0L) return 76; return -1; case 24: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active6 & 0x60000L) != 0L || (active8 & 0x22d8000000000L) != 0L || (active11 & 0x10000040L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active6 & 0x1800000L) != 0L || (active8 & 0x45b000000000000L) != 0L || (active11 & 0x4000010000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 24; return 76; } - if ((active6 & 0x100000L) != 0L || (active10 & 0x10000000L) != 0L) + if ((active6 & 0x4000000L) != 0L || (active10 & 0x4000000000L) != 0L) return 76; return -1; case 25: - if ((active1 & 0x8100000000000000L) != 0L || (active2 & 0x800L) != 0L || (active8 & 0x2c0000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active6 & 0x1800000L) != 0L || (active8 & 0x403000000000000L) != 0L || (active11 & 0x10000L) != 0L) + return 76; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x2001L) != 0L || (active8 & 0x58000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 25; return 76; } - if ((active6 & 0x60000L) != 0L || (active8 & 0x2018000000000L) != 0L || (active11 & 0x40L) != 0L) - return 76; return -1; case 26: - if ((active2 & 0x800L) != 0L || (active8 & 0xc0000000000L) != 0L) - return 76; - if ((active1 & 0x8100000000000000L) != 0L || (active8 & 0x200000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active8 & 0x40000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 26; return 76; } + if ((active2 & 0x2000L) != 0L || (active8 & 0x18000000000000L) != 0L) + return 76; return -1; case 27: - if ((active1 & 0x8100000000000000L) != 0L || (active8 & 0x200000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active8 & 0x40000000000000L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 27; return 76; } return -1; case 28: - if ((active1 & 0x8100000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active8 & 0x40000000000000L) != 0L) + return 76; + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 28; return 76; } - if ((active8 & 0x200000000000L) != 0L) - return 76; return -1; case 29: - if ((active1 & 0x8100000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L || (active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 29; return 76; } return -1; case 30: - if ((active1 & 0x8000000000000000L) != 0L || (active11 & 0x10000000L) != 0L) + if ((active1 & 0x200000000000000L) != 0L) + return 76; + if ((active2 & 0x1L) != 0L || (active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 30; return 76; } - if ((active1 & 0x100000000000000L) != 0L) - return 76; return -1; case 31: - if ((active11 & 0x10000000L) != 0L) + if ((active2 & 0x1L) != 0L) + return 76; + if ((active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 31; return 76; } - if ((active1 & 0x8000000000000000L) != 0L) - return 76; return -1; case 32: - if ((active11 & 0x10000000L) != 0L) + if ((active11 & 0x4000000000L) != 0L) { - jjmatchedKind = 802; + jjmatchedKind = 813; jjmatchedPos = 32; return 76; } @@ -22060,146 +22192,147 @@ private final int jjMoveStringLiteralDfa0_4() switch(curChar) { case 33: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L); case 34: - return jjStartNfaWithStates_4(0, 780, 79); + return jjStartNfaWithStates_4(0, 791, 79); case 36: - return jjStartNfaWithStates_4(0, 783, 76); + return jjStartNfaWithStates_4(0, 794, 76); case 37: - return jjStopAtPos(0, 775); + return jjStopAtPos(0, 786); case 39: - return jjStartNfaWithStates_4(0, 779, 58); + return jjStartNfaWithStates_4(0, 790, 58); case 40: - return jjStopAtPos(0, 749); + return jjStopAtPos(0, 759); case 41: - return jjStopAtPos(0, 750); + return jjStopAtPos(0, 760); case 42: - jjmatchedKind = 773; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000L); + jjmatchedKind = 784; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); case 43: - return jjStopAtPos(0, 771); + return jjStopAtPos(0, 781); case 44: - return jjStopAtPos(0, 761); + return jjStopAtPos(0, 771); case 45: - return jjStartNfaWithStates_4(0, 772, 11); + jjmatchedKind = 782; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L); case 46: - jjmatchedKind = 760; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L); + jjmatchedKind = 770; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L); case 47: - jjmatchedKind = 774; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2400000L); + jjmatchedKind = 785; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1200000000L); case 58: - jjmatchedKind = 766; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L); + jjmatchedKind = 776; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 59: - return jjStopAtPos(0, 759); + return jjStopAtPos(0, 769); case 60: - jjmatchedKind = 764; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000000000L, 0x2L); + jjmatchedKind = 774; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa00L); case 61: - jjmatchedKind = 762; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200L); + jjmatchedKind = 772; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); case 62: - jjmatchedKind = 763; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1L); + jjmatchedKind = 773; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L); case 63: - return jjStopAtPos(0, 765); + return jjStopAtPos(0, 775); case 91: - return jjStopAtPos(0, 757); + return jjStopAtPos(0, 767); case 93: - return jjStopAtPos(0, 758); + return jjStopAtPos(0, 768); case 94: - return jjStopAtPos(0, 782); + return jjStopAtPos(0, 793); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_4(0x1ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8800030L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x1ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x220000c000L, 0x0L); case 66: case 98: - return jjMoveStringLiteralDfa1_4(0x7ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x7ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000L, 0x0L); case 67: case 99: jjmatchedKind = 51; - return jjMoveStringLiteralDfa1_4(0xfff0000000000000L, 0xffffffffffffffffL, 0xfL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x500180L, 0x0L); + return jjMoveStringLiteralDfa1_4(0xfff0000000000000L, 0xffffffffffffffffL, 0x1fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x140060000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0xffffffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0xffffffffffffe0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0xfff0000000000000L, 0x3fffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0xff00000000000000L, 0x3ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000L, 0x0L); case 70: case 102: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0xfffffc000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0xfffffc0000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 71: case 103: - jjmatchedKind = 228; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x3ffe000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + jjmatchedKind = 232; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x3ffe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 72: case 104: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0xfc000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0xfc0000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0xff00000000000000L, 0xffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x5002L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0xf000000000000000L, 0xfffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1400800L, 0x0L); case 74: case 106: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x3ff000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x7ff0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: - jjmatchedKind = 290; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x3800000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); + jjmatchedKind = 295; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x70000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xfffffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0x1L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L, 0x0L); case 77: case 109: - jjmatchedKind = 316; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0xfffffffL, 0x0L, 0x0L, 0x100L, 0x0L, 0x0L, 0x10000000L, 0x0L); + jjmatchedKind = 321; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1fffffffcL, 0x0L, 0x0L, 0x20000L, 0x0L, 0x0L, 0x4000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffffe00000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 79: case 111: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff8000000000000L, 0x1fffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xff00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffffffffe000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x22000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffffffffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8800000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x380000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfc00000000000000L, 0x7ffffffffffL, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffffffffffffL, 0x0L, 0x0L, 0x0L, 0x1000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0xfffffffffffffeffL, 0x3ffffffffL, 0x0L, 0x2280000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffe000000000000L, 0xfffffffffffdffffL, 0x7ffffffffffL, 0x0L, 0x8a0000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffffffc00000000L, 0xfffL, 0x20000004L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfffff80000000000L, 0x3fffffL, 0x8000001000L, 0x0L); case 85: case 117: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffff000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffc00000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7ff000000000L, 0x400L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1ffc00000000000L, 0x100000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1fff800000000000L, 0x40L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfe00000000000000L, 0x1007fL, 0x0L); case 88: case 120: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000000000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80L, 0x0L); case 89: case 121: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x0L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x300L, 0x0L); case 90: case 122: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400L, 0x0L); case 123: - return jjStartNfaWithStates_4(0, 755, 78); + return jjStartNfaWithStates_4(0, 765, 78); case 124: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 125: - return jjStopAtPos(0, 756); + return jjStopAtPos(0, 766); default : return jjMoveNfa_4(0, 0); } @@ -22214,128 +22347,130 @@ private final int jjMoveStringLiteralDfa1_4(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x2000000L) != 0L) + if ((active12 & 0x1000000000L) != 0L) { - jjmatchedKind = 793; + jjmatchedKind = 804; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x400000L); + return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x200000000L); case 46: - if ((active12 & 0x400L) != 0L) - return jjStopAtPos(1, 778); + if ((active12 & 0x200000L) != 0L) + return jjStopAtPos(1, 789); break; case 47: - if ((active12 & 0x800000L) != 0L) - return jjStopAtPos(1, 791); + if ((active12 & 0x400000000L) != 0L) + return jjStopAtPos(1, 802); break; case 58: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); + if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; case 61: - if ((active11 & 0x8000000000000000L) != 0L) - return jjStopAtPos(1, 767); - else if ((active12 & 0x1L) != 0L) - return jjStopAtPos(1, 768); - else if ((active12 & 0x4L) != 0L) - return jjStopAtPos(1, 770); + if ((active12 & 0x200L) != 0L) + return jjStopAtPos(1, 777); + else if ((active12 & 0x400L) != 0L) + return jjStopAtPos(1, 778); + else if ((active12 & 0x1000L) != 0L) + return jjStopAtPos(1, 780); break; case 62: - if ((active12 & 0x2L) != 0L) - return jjStopAtPos(1, 769); - else if ((active12 & 0x200L) != 0L) - return jjStopAtPos(1, 777); + if ((active12 & 0x800L) != 0L) + return jjStopAtPos(1, 779); + else if ((active12 & 0x8000L) != 0L) + return jjStopAtPos(1, 783); + else if ((active12 & 0x100000L) != 0L) + return jjStopAtPos(1, 788); break; case 65: case 97: - return jjMoveStringLiteralDfa2_4(active0, 0x1ff0000000000000L, active1, 0L, active2, 0x10000000007ff0L, active3, 0x4000000004000L, active4, 0xe0001fc001000000L, active5, 0x1f000001fL, active6, 0xc0000001fffe000L, active7, 0x180000000000L, active8, 0L, active9, 0x1c00000000L, active10, 0xff000000000L, active11, 0x10022788L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x1ff0000000000000L, active1, 0L, active2, 0x10000000007ffe0L, active3, 0x40000000040000L, active4, 0x3f80010000000L, active5, 0x3e000003fcL, active6, 0x7fff80000L, active7, 0x3e000000000003L, active8, 0L, active9, 0x380000000000L, active10, 0x3fc00000000000L, active11, 0x40089e2000L, active12, 0L); case 66: case 98: - return jjMoveStringLiteralDfa2_4(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_4(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x70000600000000L, active6, 0L, active7, 0x3fe00000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0xe0000c000000000L, active6, 0L, active7, 0x7fc0000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L, active12, 0L); case 68: case 100: - return jjMoveStringLiteralDfa2_4(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x1000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_4(active0, 0xe00007e000000000L, active1, 0L, active2, 0x3fffff8000L, active3, 0x1e000008000L, active4, 0x3e03800000000L, active5, 0x3800000fe0L, active6, 0xf000000fe0000000L, active7, 0xffc000001fffffffL, active8, 0xffL, active9, 0x2000000000L, active10, 0xc003b00000001000L, active11, 0x4200004L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0xe00007e000000000L, active1, 0L, active2, 0x3fffff80000L, active3, 0x1e0000080000L, active4, 0x7c070000000000L, active5, 0x7000001fc00L, active6, 0x3f800000000L, active7, 0x80000007fffffffcL, active8, 0x1ffffL, active9, 0x400000000000L, active10, 0xec0000000400000L, active11, 0x1080001300L, active12, 0L); case 70: case 102: - if ((active5 & 0x80000000000000L) != 0L) + if ((active5 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 375; + jjmatchedKind = 380; jjmatchedPos = 1; } - else if ((active11 & 0x2L) != 0L) - return jjStartNfaWithStates_4(1, 705, 76); - return jjMoveStringLiteralDfa2_4(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L, active12, 0L); + else if ((active11 & 0x800L) != 0L) + return jjStartNfaWithStates_4(1, 715, 76); + return jjMoveStringLiteralDfa2_4(active0, 0x800L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000L, active12, 0L); case 71: case 103: - return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x200000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0x7ffL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200L, active9, 0xc000000000L, active10, 0x1c000000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0x7ffL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x40000L, active9, 0x1800000000000L, active10, 0x7000000000000000L, active11, 0L, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_4(active0, 0x380000000000L, active1, 0L, active2, 0x7c000000000L, active3, 0x80000000f0000L, active4, 0x3c000000000000L, active5, 0x7f000L, active6, 0x1000000000L, active7, 0x20000000L, active8, 0x1d00L, active9, 0xfff0000000000L, active10, 0x3e0400000000000L, active11, 0x40000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x380000000000L, active1, 0L, active2, 0x7c0000000000L, active3, 0x80000000f00000L, active4, 0x780000000000000L, active5, 0xfe0000L, active6, 0x40000000000L, active7, 0x800000000L, active8, 0x3a0000L, active9, 0x1ffe000000000000L, active10, 0x8100000000000000L, active11, 0x1000000fL, active12, 0L); case 75: case 107: - return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 76: case 108: - return jjMoveStringLiteralDfa2_4(active0, 0x40000001f000L, active1, 0x7800L, active2, 0x60000000000000L, active3, 0x400020000300000L, active4, 0L, active5, 0x200000000000000L, active6, 0xe000000000L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x40000001f000L, active1, 0x7800L, active2, 0x600000000000000L, active3, 0x4000200003000000L, active4, 0L, active5, 0x4000000000000000L, active6, 0x380000000000L, active7, 0x1000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 77: case 109: - return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0x80000000000000L, active3, 0x7800000000000000L, active4, 0L, active5, 0x400000000000000L, active6, 0L, active7, 0L, active8, 0x4000L, active9, 0L, active10, 0x2000000000000000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0x8000000000000000L, active4, 0x7L, active5, 0x8000000000000000L, active6, 0L, active7, 0L, active8, 0x800000L, active9, 0L, active10, 0L, active11, 0x80L, active12, 0L); case 78: case 110: - if ((active3 & 0x8000000000000000L) != 0L) + if ((active4 & 0x8L) != 0L) { - jjmatchedKind = 255; + jjmatchedKind = 259; jjmatchedPos = 1; } - else if ((active4 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(1, 310, 76); - else if ((active5 & 0x800000000000000L) != 0L) + else if ((active4 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_4(1, 315, 76); + else if ((active6 & 0x1L) != 0L) { - jjmatchedKind = 379; + jjmatchedKind = 384; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0x60000L, active1, 0L, active2, 0x1f00000000000000L, active3, 0L, active4, 0xfffffL, active5, 0x3000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7fe000L, active11, 0x8005800L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x60000L, active1, 0L, active2, 0xf000000000000000L, active3, 0x1L, active4, 0xfffff0L, active5, 0L, active6, 0x6L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1ff800000L, active11, 0x2001600000L, active12, 0L); case 79: case 111: - if ((active3 & 0x40000000000L) != 0L) + if ((active3 & 0x400000000000L) != 0L) { - jjmatchedKind = 234; + jjmatchedKind = 238; jjmatchedPos = 1; } - else if ((active5 & 0x4000000000L) != 0L) + else if ((active5 & 0x80000000000L) != 0L) { - jjmatchedKind = 358; + jjmatchedKind = 363; jjmatchedPos = 1; } - else if ((active9 & 0x10000000000000L) != 0L) + else if ((active9 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 628; + jjmatchedKind = 637; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0x1800000000000L, active1, 0x1ffffffff8000L, active2, 0xf80000000000L, active3, 0xf008000fc00000L, active4, 0xf80000002000000L, active5, 0x78003f80000L, active6, 0xf0000000000L, active7, 0x3ff80000000L, active8, 0x18000L, active9, 0x20000000000000L, active10, 0x400000000000000L, active11, 0x20518001L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x1800000000000L, active1, 0x3ffffffff8000L, active2, 0xf800000000000L, active3, 0xf008000fc000000L, active4, 0xf000000020000000L, active5, 0xf0007f000001L, active6, 0x3c00000000000L, active7, 0xffe000000000L, active8, 0x3000000L, active9, 0x4000000000000000L, active10, 0L, active11, 0x8146000410L, active12, 0L); case 80: case 112: - return jjMoveStringLiteralDfa2_4(active0, 0x80000L, active1, 0L, active2, 0x2000000000000000L, active3, 0L, active4, 0L, active5, 0xc000000000000000L, active6, 0x1L, active7, 0L, active8, 0x1e0000L, active9, 0L, active10, 0x3800000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x2L, active4, 0L, active5, 0L, active6, 0x38L, active7, 0L, active8, 0x3c000000L, active9, 0L, active10, 0xe00000000L, active11, 0L, active12, 0L); case 81: case 113: - return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xffffffffffe00000L, active9, 0x7ffL, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xffffffffc0000000L, active9, 0xfffffL, active10, 0L, active11, 0L, active12, 0L); case 82: case 114: - if ((active6 & 0x2L) != 0L) + if ((active6 & 0x40L) != 0L) { - jjmatchedKind = 385; + jjmatchedKind = 390; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0x2000001f00000L, active1, 0x6000000000000L, active2, 0x8001000000000000L, active3, 0x3f001f0000000L, active4, 0L, active5, 0L, active6, 0x3ff0000000001cL, active7, 0L, active8, 0L, active9, 0xffc0000000000000L, active10, 0x18000000000001ffL, active11, 0x40L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x2000001f00000L, active1, 0xc000000000000L, active2, 0x10000000000000L, active3, 0x3f001f00000008L, active4, 0L, active5, 0L, active6, 0xffc000000000780L, active7, 0L, active8, 0L, active9, 0x8000000000000000L, active10, 0x7ffffL, active11, 0x10060L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -22343,12 +22478,12 @@ else if ((active9 & 0x10000000000000L) != 0L) jjmatchedKind = 25; jjmatchedPos = 1; } - else if ((active4 & 0x100000L) != 0L) + else if ((active4 & 0x1000000L) != 0L) { - jjmatchedKind = 276; + jjmatchedKind = 280; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0x7c000000L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0x3fce00000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1fc000000L, active11, 0x800000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x7c000000L, active1, 0L, active2, 0L, active3, 0x10L, active4, 0x7fce000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x7f000000000L, active11, 0x200000000L, active12, 0L); case 84: case 116: if ((active0 & 0x80000000L) != 0L) @@ -22356,24 +22491,24 @@ else if ((active4 & 0x100000L) != 0L) jjmatchedKind = 31; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0x700000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x180000000000L, active6, 0x20L, active7, 0L, active8, 0L, active9, 0x1ff800L, active10, 0xe00000000L, active11, 0x2000020L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x700000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0x800L, active7, 0L, active8, 0L, active9, 0x3ff00000L, active10, 0x380000000000L, active11, 0x800008000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_4(active0, 0x800000000L, active1, 0xfff8000000000000L, active2, 0x7L, active3, 0xe00000000L, active4, 0L, active5, 0x7e0000c000000L, active6, 0x3c00000000001c0L, active7, 0x40000000000L, active8, 0L, active9, 0x3fe00000L, active10, 0x600L, active11, 0x1000000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x800000000L, active1, 0xfff0000000000000L, active2, 0xfL, active3, 0xe000000000L, active4, 0L, active5, 0xfc000180000000L, active6, 0xf000000000007000L, active7, 0x1000000000000L, active8, 0L, active9, 0x7fc0000000L, active10, 0x180000L, active11, 0x400000000L, active12, 0L); case 86: case 118: - return jjMoveStringLiteralDfa2_4(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0x2L, active4, 0L, active5, 0L, active6, 0x1e00L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0L, active5, 0L, active6, 0x78000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 88: case 120: - return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x3ffcL, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x3ffc0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 89: case 121: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_4(1, 50, 76); - return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0xe000000000008L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000L, active10, 0x800L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0xe0000000000010L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x78000000000L, active10, 0x200000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x100L) != 0L) - return jjStopAtPos(1, 776); + if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); break; default : break; @@ -22392,84 +22527,84 @@ private final int jjMoveStringLiteralDfa2_4(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x400000L) != 0L) - return jjStopAtPos(2, 790); + if ((active12 & 0x200000000L) != 0L) + return jjStopAtPos(2, 801); break; case 65: case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_4(2, 8, 76); - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x9bffL, active2, 0x4000008000L, active3, 0x300030000000L, active4, 0x600000000000L, active5, 0x20L, active6, 0x7380006000000000L, active7, 0x40600000000000L, active8, 0x24000L, active9, 0xffc0000000007800L, active10, 0xc800000004000000L, active11, 0xa080000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x9bffL, active2, 0x40000080000L, active3, 0x3000300000000L, active4, 0xc000000000000L, active5, 0x400L, active6, 0xe000180000000000L, active7, 0x80c000000000001cL, active8, 0x4800000L, active9, 0x8000000000f00000L, active10, 0x10000001ffL, active11, 0x2820000320L, active12, 0L); case 66: case 98: - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x8000000010000L, active2, 0L, active3, 0L, active4, 0x4004000000000L, active5, 0L, active6, 0x40000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000L, active10, 0x2000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x10000000010000L, active2, 0L, active3, 0L, active4, 0x80080000000000L, active5, 0L, active6, 0x1000000000000000L, active7, 0L, active8, 0L, active9, 0x380fc0000000L, active10, 0x800000L, active11, 0L, active12, 0L); case 67: case 99: if ((active0 & 0x4000000L) != 0L) return jjStartNfaWithStates_4(2, 26, 76); - else if ((active2 & 0x10000L) != 0L) + else if ((active2 & 0x100000L) != 0L) { - jjmatchedKind = 144; + jjmatchedKind = 148; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x1100000000e0008L, active3, 0x3dL, active4, 0x780000000000007L, active5, 0x10000000001000L, active6, 0x8000000000000000L, active7, 0x780000000000000L, active8, 0L, active9, 0x8000000L, active10, 0xc000L, active11, 0x988L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x1100000000e00010L, active3, 0x3d0L, active4, 0xf000000000000070L, active5, 0x200000000020000L, active6, 0L, active7, 0x20L, active8, 0xfL, active9, 0x1000000000L, active10, 0x3000000L, active11, 0x262000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) return jjStartNfaWithStates_4(2, 9, 76); else if ((active0 & 0x20000L) != 0L) return jjStartNfaWithStates_4(2, 17, 76); - else if ((active2 & 0x200000000000000L) != 0L) + else if ((active2 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 185; + jjmatchedKind = 189; jjmatchedPos = 2; } - else if ((active5 & 0x80000L) != 0L) + else if ((active5 & 0x1000000L) != 0L) { - jjmatchedKind = 339; + jjmatchedKind = 344; jjmatchedPos = 2; } - else if ((active5 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(2, 377, 76); - else if ((active6 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(2, 397, 76); - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x1c00000000000000L, active3, 0L, active4, 0x8L, active5, 0x300000L, active6, 0x1cL, active7, 0L, active8, 0L, active9, 0x18000L, active10, 0x20800000810000L, active11, 0x1000L, active12, 0L); + else if ((active5 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_4(2, 382, 76); + else if ((active6 & 0x80000L) != 0L) + return jjStartNfaWithStates_4(2, 403, 76); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0xc000000000000000L, active3, 0x1L, active4, 0x80L, active5, 0x6000000L, active6, 0x780L, active7, 0L, active8, 0L, active9, 0x3000000L, active10, 0x8200000204000000L, active11, 0x400000L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_4(2, 20, 76); - else if ((active5 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(2, 380, 76); - return jjMoveStringLiteralDfa3_4(active0, 0x2000008000000L, active1, 0x2000000000400L, active2, 0x20000000000000L, active3, 0x1080000400000c2L, active4, 0L, active5, 0x4000000000000000L, active6, 0x3f00000001e00L, active7, 0x800000000000000L, active8, 0x1c0000L, active9, 0x14000000000L, active10, 0x1f4000f8000201L, active11, 0x1000000L, active12, 0L); + else if ((active6 & 0x2L) != 0L) + return jjStartNfaWithStates_4(2, 385, 76); + return jjMoveStringLiteralDfa3_4(active0, 0x2000008000000L, active1, 0x4000000000400L, active2, 0x200000000000000L, active3, 0x1080000400000c20L, active4, 0L, active5, 0L, active6, 0xfc000000078008L, active7, 0L, active8, 0x38000010L, active9, 0x2800000000000L, active10, 0x7d0003e000080200L, active11, 0x400000000L, active12, 0L); case 70: case 102: - if ((active7 & 0x1L) != 0L) + if ((active7 & 0x40L) != 0L) { - jjmatchedKind = 448; + jjmatchedKind = 454; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x2000000000L, active1, 0L, active2, 0x7f00000L, active3, 0L, active4, 0x800000000000L, active5, 0x100000000000000L, active6, 0L, active7, 0x6L, active8, 0L, active9, 0L, active10, 0xe00000000L, active11, 0x4000010L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x2000000000L, active1, 0L, active2, 0x7f000000L, active3, 0L, active4, 0x10000000000000L, active5, 0x2000000000000000L, active6, 0L, active7, 0xe000000000180L, active8, 0L, active9, 0L, active10, 0x380000000000L, active11, 0x1000004000L, active12, 0L); case 71: case 103: if ((active0 & 0x1000000000L) != 0L) return jjStartNfaWithStates_4(2, 36, 76); - else if ((active4 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(2, 295, 76); - return jjMoveStringLiteralDfa3_4(active0, 0x9c000000000L, active1, 0L, active2, 0x8000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000ff8L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000L, active12, 0L); + else if ((active4 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_4(2, 300, 76); + return jjMoveStringLiteralDfa3_4(active0, 0x9c000000000L, active1, 0L, active2, 0x80000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80003fe00L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000000L, active12, 0L); case 72: case 104: - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80200000000L, active6, 0x20L, active7, 0x1800000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1004000000000L, active6, 0x800L, active7, 0x300000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 73: case 105: - if ((active6 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(2, 423, 76); - return jjMoveStringLiteralDfa3_4(active0, 0x6000000000000000L, active1, 0L, active2, 0L, active3, 0x400000080000100L, active4, 0x2000030L, active5, 0x400100000000000L, active6, 0x1c000000000000L, active7, 0x40000000L, active8, 0x2000L, active9, 0L, active10, 0x100000010006007eL, active11, 0x40L, active12, 0L); + if ((active6 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_4(2, 429, 76); + return jjMoveStringLiteralDfa3_4(active0, 0x6000000000000000L, active1, 0L, active2, 0L, active3, 0x4000000800001000L, active4, 0x20000300L, active5, 0x8002000000000000L, active6, 0x700000000000000L, active7, 0x1000000000L, active8, 0x400000L, active9, 0L, active10, 0x4001800fc00L, active11, 0x10040L, active12, 0L); case 74: case 106: - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 75: case 107: - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x18000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x300000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L, active12, 0L); case 76: case 108: if ((active0 & 0x1000L) != 0L) @@ -22477,58 +22612,58 @@ else if ((active4 & 0x8000000000L) != 0L) jjmatchedKind = 12; jjmatchedPos = 2; } - else if ((active8 & 0x200000L) != 0L) + else if ((active8 & 0x40000000L) != 0L) { - jjmatchedKind = 533; + jjmatchedKind = 542; jjmatchedPos = 2; } - else if ((active10 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(2, 701, 76); - return jjMoveStringLiteralDfa3_4(active0, 0x30000000006000L, active1, 0x1fe0000L, active2, 0x10000000L, active3, 0x10000200414000L, active4, 0L, active5, 0x2001e00404006000L, active6, 0L, active7, 0x3000000380003000L, active8, 0xffffffffffc00000L, active9, 0x3ffL, active10, 0x7000000000L, active11, 0x54400L, active12, 0L); + else if ((active11 & 0x80L) != 0L) + return jjStartNfaWithStates_4(2, 711, 76); + return jjMoveStringLiteralDfa3_4(active0, 0x30000000006000L, active1, 0x1fe0000L, active2, 0x100000000L, active3, 0x100002004140000L, active4, 0L, active5, 0x3c0080800c0000L, active6, 0x4L, active7, 0xe0000c0000L, active8, 0xffffffff80000060L, active9, 0x7ffffL, active10, 0x1c00000000000L, active11, 0x15100000L, active12, 0L); case 77: case 109: - if ((active9 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(2, 604, 76); - return jjMoveStringLiteralDfa3_4(active0, 0x400L, active1, 0x1000001e000000L, active2, 0x80000000000L, active3, 0x1800000000000000L, active4, 0x20000000000000L, active5, 0x6000038000040L, active6, 0L, active7, 0L, active8, 0x8c00L, active9, 0x7fe2040000000L, active10, 0x400L, active11, 0x400004L, active12, 0L); + if ((active9 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_4(2, 613, 76); + return jjMoveStringLiteralDfa3_4(active0, 0x400L, active1, 0x2000001e000000L, active2, 0x800000000000L, active3, 0x8000000000000000L, active4, 0x400000000000001L, active5, 0xc0000700000800L, active6, 0L, active7, 0L, active8, 0x1180000L, active9, 0xffc408000000000L, active10, 0x100000L, active11, 0x100001000L, active12, 0L); case 78: case 110: - if ((active5 & 0x8000L) != 0L) + if ((active5 & 0x100000L) != 0L) { - jjmatchedKind = 335; + jjmatchedKind = 340; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x8000100000000000L, active1, 0xfffe0000000L, active2, 0xe000020000000L, active3, 0x200006400020000L, active4, 0x1010000000040L, active5, 0x8041c70000L, active6, 0xc00000000000000L, active7, 0x4000040000000000L, active8, 0x100L, active9, 0x8000020000000L, active10, 0x40000000600000L, active11, 0x100001L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x8000100000000000L, active1, 0x1fffe0000000L, active2, 0xe0000200000000L, active3, 0x2000064000200000L, active4, 0x20200000000400L, active5, 0x100838e00000L, active6, 0L, active7, 0x1000000000003L, active8, 0x20080L, active9, 0x1000004000000000L, active10, 0x180000000L, active11, 0x40000401L, active12, 0L); case 79: case 111: - return jjMoveStringLiteralDfa3_4(active0, 0xc00100000000L, active1, 0x4000000006000L, active2, 0x2001000000000000L, active3, 0x3c28100300000L, active4, 0x3fce00080L, active5, 0L, active6, 0x20000000000000L, active7, 0x1e000000000000L, active8, 0x200L, active9, 0L, active10, 0L, active11, 0x20L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0xc00100000000L, active1, 0x8000000006000L, active2, 0x10000000000000L, active3, 0x3c281003000002L, active4, 0x7fce000800L, active5, 0L, active6, 0x800000000000000L, active7, 0x3c00000000000000L, active8, 0x40000L, active9, 0L, active10, 0L, active11, 0x8000L, active12, 0L); case 80: case 112: - if ((active3 & 0x200L) != 0L) + if ((active3 & 0x2000L) != 0L) { - jjmatchedKind = 201; + jjmatchedKind = 205; jjmatchedPos = 2; } - else if ((active3 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(2, 245, 76); - else if ((active4 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(2, 317, 76); - return jjMoveStringLiteralDfa3_4(active0, 0x80000L, active1, 0L, active2, 0x80000040000000L, active3, 0x6000000000000400L, active4, 0x100L, active5, 0L, active6, 0L, active7, 0x800000000000c000L, active8, 0L, active9, 0x20000000000000L, active10, 0x1100800L, active11, 0L, active12, 0L); + else if ((active3 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_4(2, 249, 76); + else if ((active5 & 0x4L) != 0L) + return jjStartNfaWithStates_4(2, 322, 76); + return jjMoveStringLiteralDfa3_4(active0, 0x80000L, active1, 0L, active2, 0x800000400000000L, active3, 0x4000L, active4, 0x1006L, active5, 0L, active6, 0L, active7, 0x300000L, active8, 0x100L, active9, 0x4000000000000000L, active10, 0x440200000L, active11, 0L, active12, 0L); case 81: case 113: - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 82: case 114: - if ((active3 & 0x800000L) != 0L) + if ((active3 & 0x8000000L) != 0L) { - jjmatchedKind = 215; + jjmatchedKind = 219; jjmatchedPos = 2; } - else if ((active6 & 0x20000000L) != 0L) + else if ((active6 & 0x800000000L) != 0L) { - jjmatchedKind = 413; + jjmatchedKind = 419; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x40020001e00000L, active1, 0xffe0300000000000L, active2, 0x8000000180000007L, active3, 0x70c0000L, active4, 0x20000000000L, active5, 0x30002000080L, active6, 0x10fc07fc000L, active7, 0x20000000000000L, active8, 0xeL, active9, 0xe0400L, active10, 0x4003f8000000000L, active11, 0x202000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x40020001e00000L, active1, 0xffc0600000000000L, active2, 0x180000000fL, active3, 0x70c00008L, active4, 0x400000000000L, active5, 0x600040001000L, active6, 0x43f01ff00000L, active7, 0x4000000000000000L, active8, 0x1c00L, active9, 0x1c080000L, active10, 0xfe000000000000L, active11, 0x80800010L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -22536,79 +22671,79 @@ else if ((active6 & 0x20000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x780000030000060L, active1, 0L, active2, 0x40079e00000000L, active3, 0x800000000L, active4, 0xc0000001e00L, active5, 0x800000700L, active6, 0x60007800000L, active7, 0x1f0000L, active8, 0x30L, active9, 0x380000000L, active10, 0x2001000L, active11, 0x20000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x780000030000060L, active1, 0L, active2, 0x40079e000000000L, active3, 0x8000000000L, active4, 0x180000001e000L, active5, 0x1000000e000L, active6, 0x18001e0000000L, active7, 0x7c00000L, active8, 0x6000L, active9, 0x70000000000L, active10, 0x800400000L, active11, 0x8000000L, active12, 0L); case 84: case 116: if ((active0 & 0x200000000000L) != 0L) return jjStartNfaWithStates_4(2, 45, 76); - else if ((active2 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(2, 172, 76); - else if ((active3 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(2, 232, 76); - else if ((active4 & 0x2000L) != 0L) + else if ((active2 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_4(2, 176, 76); + else if ((active3 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_4(2, 236, 76); + else if ((active4 & 0x20000L) != 0L) { - jjmatchedKind = 269; + jjmatchedKind = 273; jjmatchedPos = 2; } - else if ((active5 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(2, 362, 76); - else if ((active6 & 0x40L) != 0L) + else if ((active5 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_4(2, 367, 76); + else if ((active6 & 0x1000L) != 0L) { - jjmatchedKind = 390; + jjmatchedKind = 396; jjmatchedPos = 2; } - else if ((active8 & 0x40L) != 0L) + else if ((active8 & 0x8000L) != 0L) { - jjmatchedKind = 518; + jjmatchedKind = 527; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x1801040e00008880L, active1, 0L, active2, 0x2000001ff0L, active3, 0x8000000b800L, active4, 0xc00010000007c000L, active5, 0x8060000180000807L, active6, 0x18000181L, active7, 0x8000fe00000L, active8, 0x80L, active9, 0L, active10, 0x380000000000000L, active11, 0x20000200L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x1801040e00008880L, active1, 0L, active2, 0x20000007fe0L, active3, 0x8000000b8000L, active4, 0x20000007c0000L, active5, 0xc000030000100f8L, active6, 0x600006030L, active7, 0x100003f8000000L, active8, 0x10000L, active9, 0L, active10, 0L, active11, 0x800008000eL, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x400000000000L, active2, 0x4000200000000000L, active3, 0xc0000008000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3c00000000L, active8, 0x10000L, active9, 0x8000000000L, active10, 0x180L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x800000000000L, active2, 0x2000000000000L, active3, 0xc00000080000004L, active4, 0L, active5, 0L, active6, 0L, active7, 0xf0000000000L, active8, 0x2000000L, active9, 0x1000000000000L, active10, 0x30000L, active11, 0L, active12, 0L); case 86: case 118: - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x1800000000000L, active2, 0L, active3, 0x4000000000000L, active4, 0x2000001080000L, active5, 0L, active6, 0x1000000000L, active7, 0x100010000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x3000000000000L, active2, 0L, active3, 0x40000000000000L, active4, 0x40000010800000L, active5, 0L, active6, 0x40000000000L, active7, 0x20000400000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 87: case 119: - if ((active2 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(2, 174, 76); - else if ((active5 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(2, 356, 76); - else if ((active7 & 0x4000000000L) != 0L) + if ((active2 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_4(2, 178, 76); + else if ((active5 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_4(2, 361, 76); + else if ((active7 & 0x100000000000L) != 0L) { - jjmatchedKind = 486; + jjmatchedKind = 492; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000000000000L, active5, 0L, active6, 0x80000000000L, active7, 0x38000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1L, active6, 0x2000000000000L, active7, 0xe00000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 88: case 120: - if ((active5 & 0x8L) != 0L) + if ((active5 & 0x100L) != 0L) { - jjmatchedKind = 323; + jjmatchedKind = 328; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2000000010L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) return jjStartNfaWithStates_4(2, 18, 76); - else if ((active2 & 0x2000L) != 0L) + else if ((active2 & 0x8000L) != 0L) { - jjmatchedKind = 141; + jjmatchedKind = 143; jjmatchedPos = 2; } - else if ((active2 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(2, 175, 76); - else if ((active4 & 0x800000000L) != 0L) + else if ((active2 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_4(2, 179, 76); + else if ((active4 & 0x10000000000L) != 0L) { - jjmatchedKind = 291; + jjmatchedKind = 296; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x40000000L, active1, 0L, active2, 0x4000L, active3, 0L, active4, 0x3000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000L, active10, 0L, active11, 0x800000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x40000000L, active1, 0L, active2, 0x70000L, active3, 0L, active4, 0x60000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20000000L, active10, 0x40000L, active11, 0x200000000L, active12, 0L); case 90: case 122: - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); default : break; } @@ -22626,148 +22761,148 @@ private final int jjMoveStringLiteralDfa3_4(long old0, long active0, long old1, switch(curChar) { case 45: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x400000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 49: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400000000L, active11, 0L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000L, active11, 0L); case 51: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x800000000L, active11, 0L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x200000000000L, active11, 0L); case 56: - if ((active10 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(3, 673, 76); + if ((active10 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_4(3, 683, 76); break; case 95: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x1800000000000000L, active3, 0L, active4, 0x3000000000L, active5, 0x80000000000L, active6, 0L, active7, 0x18000000000L, active8, 0xfffffffffe000000L, active9, 0x200000000003ffL, active10, 0x18000000000L, active11, 0x10000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x1L, active4, 0x60000000000L, active5, 0x1000000000000L, active6, 0L, active7, 0x600000000000L, active8, 0xfffffffc00000000L, active9, 0x400000000007ffffL, active10, 0x6000000040000L, active11, 0x4000000000L); case 65: case 97: - if ((active2 & 0x10L) != 0L) + if ((active2 & 0x20L) != 0L) { - jjmatchedKind = 132; + jjmatchedKind = 133; jjmatchedPos = 3; } - else if ((active4 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(3, 280, 76); - return jjMoveStringLiteralDfa4_4(active0, 0x1802100001e10000L, active1, 0x3800000000000L, active2, 0x400e088000320020L, active3, 0x120001L, active4, 0x780000000000000L, active5, 0x200000000L, active6, 0x1fc000L, active7, 0x8000000000001000L, active8, 0L, active9, 0L, active10, 0xa00001L, active11, 0x20002200L); + else if ((active4 & 0x10000000L) != 0L) + return jjStartNfaWithStates_4(3, 284, 76); + return jjMoveStringLiteralDfa4_4(active0, 0x1802100001e10000L, active1, 0x7000000000000L, active2, 0xe0880003200040L, active3, 0x1200014L, active4, 0xf000000000000000L, active5, 0x4000000000L, active6, 0x7f00000L, active7, 0x40000L, active8, 0x100L, active9, 0L, active10, 0x280000200L, active11, 0x8000880000L); case 66: case 98: if ((active0 & 0x400000000000L) != 0L) return jjStartNfaWithStates_4(3, 46, 76); else if ((active1 & 0x2000L) != 0L) return jjStartNfaWithStates_4(3, 77, 76); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x200000000000L, active3, 0x20000000000L, active4, 0L, active5, 0x2000000000040L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000400L, active11, 0L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x2000000000000L, active3, 0x200000000000L, active4, 0L, active5, 0x40000000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000100000L, active11, 0L); case 67: case 99: - if ((active2 & 0x200000000L) != 0L) + if ((active2 & 0x2000000000L) != 0L) { - jjmatchedKind = 161; + jjmatchedKind = 165; jjmatchedPos = 3; } - else if ((active3 & 0x40L) != 0L) + else if ((active3 & 0x400L) != 0L) { - jjmatchedKind = 198; + jjmatchedKind = 202; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_4(active0, 0x180000000000000L, active1, 0x400L, active2, 0x2000011c00000000L, active3, 0x410008080L, active4, 0xc000000000000000L, active5, 0x7L, active6, 0x207023c0800000L, active7, 0L, active8, 0x1e0000L, active9, 0x8200000L, active10, 0x40000001000L, active11, 0L); + return jjMoveStringLiteralDfa4_4(active0, 0x180000000000000L, active1, 0x400L, active2, 0x11c000000000L, active3, 0x4100080802L, active4, 0L, active5, 0xf8L, active6, 0x81c08f020000000L, active7, 0L, active8, 0x3c000000L, active9, 0x1040000000L, active10, 0x10000000400000L, active11, 0L); case 68: case 100: - if ((active3 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 244, 76); - else if ((active4 & 0x200000000000L) != 0L) + if ((active3 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_4(3, 248, 76); + else if ((active4 & 0x4000000000000L) != 0L) { - jjmatchedKind = 301; + jjmatchedKind = 306; jjmatchedPos = 3; } - else if ((active6 & 0x1000000000000000L) != 0L) + else if ((active7 & 0x4L) != 0L) { - jjmatchedKind = 444; + jjmatchedKind = 450; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_4(active0, 0x40000000000000L, active1, 0xe0000000L, active2, 0L, active3, 0x80000000L, active4, 0x400000200000L, active5, 0x400000L, active6, 0x2000000000000000L, active7, 0L, active8, 0L, active9, 0x20018000L, active10, 0x40000000000000L, active11, 0L); + return jjMoveStringLiteralDfa4_4(active0, 0x40000000000000L, active1, 0xe0000000L, active2, 0L, active3, 0x800000000L, active4, 0x8000002000000L, active5, 0x8000000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0x4003000000L, active10, 0L, active11, 0x1L); case 69: case 101: if ((active0 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_4(3, 57, 76); - else if ((active1 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 115, 76); - else if ((active2 & 0x40L) != 0L) + else if ((active1 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_4(3, 116, 76); + else if ((active2 & 0x80L) != 0L) { - jjmatchedKind = 134; + jjmatchedKind = 135; jjmatchedPos = 3; } - else if ((active2 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 182, 76); - else if ((active3 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(3, 222, 76); - else if ((active4 & 0x8000000000000L) != 0L) + else if ((active2 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_4(3, 186, 76); + else if ((active3 & 0x400000000L) != 0L) + return jjStartNfaWithStates_4(3, 226, 76); + else if ((active4 & 0x100000000000000L) != 0L) { - jjmatchedKind = 307; + jjmatchedKind = 312; jjmatchedPos = 3; } - else if ((active5 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(3, 345, 76); - else if ((active5 & 0x10000000L) != 0L) + else if ((active5 & 0x40000000L) != 0L) + return jjStartNfaWithStates_4(3, 350, 76); + else if ((active5 & 0x200000000L) != 0L) { - jjmatchedKind = 348; + jjmatchedKind = 353; jjmatchedPos = 3; } - else if ((active5 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(3, 359, 76); - else if ((active7 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(3, 479, 76); - else if ((active8 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(3, 524, 76); - else if ((active8 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(3, 527, 76); - else if ((active9 & 0x20000000000L) != 0L) + else if ((active5 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_4(3, 364, 76); + else if ((active7 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_4(3, 485, 76); + else if ((active8 & 0x200000L) != 0L) + return jjStartNfaWithStates_4(3, 533, 76); + else if ((active8 & 0x1000000L) != 0L) + return jjStartNfaWithStates_4(3, 536, 76); + else if ((active9 & 0x4000000000000L) != 0L) { - jjmatchedKind = 617; + jjmatchedKind = 626; jjmatchedPos = 3; } - else if ((active10 & 0x80L) != 0L) - return jjStartNfaWithStates_4(3, 647, 76); - else if ((active10 & 0x800L) != 0L) - return jjStartNfaWithStates_4(3, 651, 76); - else if ((active11 & 0x1L) != 0L) - return jjStartNfaWithStates_4(3, 704, 76); - return jjMoveStringLiteralDfa4_4(active0, 0x10008820L, active1, 0x10000000000000L, active2, 0x2090c01f80L, active3, 0x180000600200180cL, active4, 0x81210400003c640L, active5, 0x6c000020000000L, active6, 0x800000000acL, active7, 0x1001900000016006L, active8, 0x400000L, active9, 0x7fc0000020000L, active10, 0x3410000L, active11, 0x1000L); + else if ((active10 & 0x10000L) != 0L) + return jjStartNfaWithStates_4(3, 656, 76); + else if ((active10 & 0x200000L) != 0L) + return jjStartNfaWithStates_4(3, 661, 76); + else if ((active11 & 0x400L) != 0L) + return jjStartNfaWithStates_4(3, 714, 76); + return jjMoveStringLiteralDfa4_4(active0, 0x10008820L, active1, 0x20000000000000L, active2, 0x2090c007f00L, active3, 0x80000600200180c0L, active4, 0x2420800003c6401L, active5, 0xd80000400000001L, active6, 0x2000000002980L, active7, 0x32e000000580180L, active8, 0x80000020L, active9, 0xff8000004000000L, active10, 0xd04000000L, active11, 0x400000L); case 70: case 102: - if ((active7 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 509, 76); + if ((active8 & 0x40L) != 0L) + return jjStartNfaWithStates_4(3, 518, 76); break; case 71: case 103: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x4000000000L, active3, 0L, active4, 0x1030000000000L, active5, 0x80L, active6, 0x400000000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400001eL, active11, 0x8000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x40000000000L, active3, 0L, active4, 0x20600000000000L, active5, 0x1000L, active6, 0L, active7, 0x1L, active8, 0L, active9, 0L, active10, 0x1000003c00L, active11, 0x2000000L); case 72: case 104: if ((active0 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_4(3, 48, 76); - else if ((active2 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 180, 76); - else if ((active6 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(3, 411, 76); - else if ((active10 & 0x80000000000000L) != 0L) + else if ((active2 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_4(3, 184, 76); + else if ((active6 & 0x200000000L) != 0L) + return jjStartNfaWithStates_4(3, 417, 76); + else if ((active11 & 0x2L) != 0L) { - jjmatchedKind = 695; + jjmatchedKind = 705; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_4(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800L, active6, 0L, active7, 0x20000000L, active8, 0L, active9, 0L, active10, 0x300000000000000L, active11, 0x180L); + return jjMoveStringLiteralDfa4_4(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x6000cL); case 73: case 105: - return jjMoveStringLiteralDfa4_4(active0, 0x9c020000480L, active1, 0x1L, active2, 0x107040000L, active3, 0x4000800000000L, active4, 0x20000000000008L, active5, 0x8000000080100000L, active6, 0x60400000011L, active7, 0L, active8, 0x402L, active9, 0x40000000040000L, active10, 0x100000L, active11, 0x4010L); + return jjMoveStringLiteralDfa4_4(active0, 0x9c020000480L, active1, 0x1L, active2, 0x1070400000L, active3, 0x40008000000000L, active4, 0x400000000000080L, active5, 0x1002000000L, active6, 0x1810000000630L, active7, 0L, active8, 0x80400L, active9, 0x8000000008000000L, active10, 0x40000000L, active11, 0x1004000L); case 75: case 107: - if ((active6 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 443, 76); - else if ((active7 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 507, 76); - else if ((active10 & 0x1000000000000L) != 0L) + if ((active7 & 0x2L) != 0L) + return jjStartNfaWithStates_4(3, 449, 76); + else if ((active8 & 0x10L) != 0L) + return jjStartNfaWithStates_4(3, 516, 76); + else if ((active10 & 0x400000000000000L) != 0L) { - jjmatchedKind = 688; + jjmatchedKind = 698; jjmatchedPos = 3; } - else if ((active10 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 698, 76); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x400000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0x8L); + else if ((active11 & 0x10L) != 0L) + return jjStartNfaWithStates_4(3, 708, 76); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x4000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000L, active8, 0L, active9, 0L, active10, 0x800000000000000L, active11, 0x2000L); case 76: case 108: if ((active0 & 0x10000000000000L) != 0L) @@ -22780,68 +22915,68 @@ else if ((active0 & 0x2000000000000000L) != 0L) jjmatchedKind = 61; jjmatchedPos = 3; } - else if ((active3 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(3, 225, 76); - else if ((active5 & 0x200000000000L) != 0L) + else if ((active3 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_4(3, 229, 76); + else if ((active5 & 0x4000000000000L) != 0L) { - jjmatchedKind = 365; + jjmatchedKind = 370; jjmatchedPos = 3; } - else if ((active6 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 446, 76); - else if ((active11 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(3, 722, 76); - return jjMoveStringLiteralDfa4_4(active0, 0x4020800000080000L, active1, 0x7e8000L, active2, 0x88008L, active3, 0x2000000000400430L, active4, 0x800003L, active5, 0x1d00000006000L, active6, 0xc0000000000000L, active7, 0x600300008000L, active8, 0x4000L, active9, 0x1c00100000L, active10, 0L, active11, 0x8000000L); + else if ((active7 & 0x10L) != 0L) + return jjStartNfaWithStates_4(3, 452, 76); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_4(3, 732, 76); + return jjMoveStringLiteralDfa4_4(active0, 0x4020800000080000L, active1, 0x7e8000L, active2, 0x880010L, active3, 0x4004300L, active4, 0x8000032L, active5, 0x3a0000000c0000L, active6, 0x3000000000000000L, active7, 0xc000c000200000L, active8, 0x800000L, active9, 0x380020000000L, active10, 0L, active11, 0x2000000000L); case 77: case 109: - if ((active3 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(3, 224, 76); - else if ((active10 & 0x20L) != 0L) + if ((active3 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_4(3, 228, 76); + else if ((active10 & 0x4000L) != 0L) { - jjmatchedKind = 645; + jjmatchedKind = 654; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_4(active0, 0x140000000L, active1, 0x1e000000L, active2, 0x20000000000000L, active3, 0x8021000000L, active4, 0L, active5, 0x30000000000L, active6, 0x4000800000000L, active7, 0L, active8, 0L, active9, 0x40400000L, active10, 0x40L, active11, 0x20L); + return jjMoveStringLiteralDfa4_4(active0, 0x140000000L, active1, 0x1e000000L, active2, 0x200000000000000L, active3, 0x80210000000L, active4, 0L, active5, 0x600000000000L, active6, 0x100020000000000L, active7, 0L, active8, 0L, active9, 0x8080000000L, active10, 0x8000L, active11, 0x8000L); case 78: case 110: - if ((active4 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(3, 281, 76); - else if ((active4 & 0x4000000L) != 0L) + if ((active4 & 0x20000000L) != 0L) + return jjStartNfaWithStates_4(3, 285, 76); + else if ((active4 & 0x40000000L) != 0L) { - jjmatchedKind = 282; + jjmatchedKind = 286; jjmatchedPos = 3; } - else if ((active5 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 382, 76); - else if ((active6 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(3, 422, 76); - else if ((active9 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(3, 614, 76); - else if ((active10 & 0x4000000000000L) != 0L) + else if ((active6 & 0x8L) != 0L) + return jjStartNfaWithStates_4(3, 387, 76); + else if ((active6 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_4(3, 428, 76); + else if ((active9 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_4(3, 623, 76); + else if ((active10 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 690; + jjmatchedKind = 700; jjmatchedPos = 3; } - else if ((active11 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(3, 723, 76); - return jjMoveStringLiteralDfa4_4(active0, 0x20008000000L, active1, 0x400700000000L, active2, 0L, active3, 0x100300008000000L, active4, 0x3f8000000L, active5, 0L, active6, 0L, active7, 0x40000000000L, active8, 0L, active9, 0xff80000000000000L, active10, 0x8800100080100L, active11, 0x800000L); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_4(3, 733, 76); + return jjMoveStringLiteralDfa4_4(active0, 0x20008000000L, active1, 0x800700000000L, active2, 0L, active3, 0x1003000080000000L, active4, 0x7f80000000L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0L, active9, 0L, active10, 0x22000400200201ffL, active11, 0x200000000L); case 79: case 111: - if ((active3 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(3, 235, 76); - else if ((active4 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(3, 274, 76); - return jjMoveStringLiteralDfa4_4(active0, 0x2000006040L, active1, 0x10000L, active2, 0x8100000000000000L, active3, 0x4200000000200000L, active4, 0x80000L, active5, 0x440000000L, active6, 0x8001000000000L, active7, 0x1a0000010000000L, active8, 0L, active9, 0L, active10, 0x2e000L, active11, 0x10000L); + if ((active3 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_4(3, 239, 76); + else if ((active4 & 0x400000L) != 0L) + return jjStartNfaWithStates_4(3, 278, 76); + return jjMoveStringLiteralDfa4_4(active0, 0x2000006040L, active1, 0x10000L, active2, 0x1000000000030000L, active3, 0x2000000002000008L, active4, 0x800004L, active5, 0x8800000000L, active6, 0x200040000000000L, active7, 0x4000000400000000L, active8, 0x3L, active9, 0L, active10, 0xb800000L, active11, 0x4000000L); case 80: case 112: - if ((active2 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 176, 76); - else if ((active8 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(3, 525, 76); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0L, active5, 0x8000000L, active6, 0x800000000100L, active7, 0x1e000000020000L, active8, 0x800L, active9, 0x2000000000L, active10, 0x800000000000000L, active11, 0x400004L); + if ((active2 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_4(3, 180, 76); + else if ((active8 & 0x400000L) != 0L) + return jjStartNfaWithStates_4(3, 534, 76); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x100000000L, active6, 0x20000000004000L, active7, 0x3c00000000800000L, active8, 0x100000L, active9, 0x400000000000L, active10, 0L, active11, 0x100001020L); case 81: case 113: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40000L, active11, 0L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10000000L, active11, 0L); case 82: case 114: if ((active1 & 0x2L) != 0L) @@ -22849,83 +22984,83 @@ else if ((active8 & 0x2000L) != 0L) jjmatchedKind = 65; jjmatchedPos = 3; } - else if ((active1 & 0x100000000000L) != 0L) + else if ((active1 & 0x200000000000L) != 0L) { - jjmatchedKind = 108; + jjmatchedKind = 109; jjmatchedPos = 3; } - else if ((active3 & 0x40000000000000L) != 0L) + else if ((active3 & 0x400000000000000L) != 0L) { - jjmatchedKind = 246; + jjmatchedKind = 250; jjmatchedPos = 3; } - else if ((active6 & 0x200L) != 0L) + else if ((active6 & 0x8000L) != 0L) { - jjmatchedKind = 393; + jjmatchedKind = 399; jjmatchedPos = 3; } - else if ((active10 & 0x8000000L) != 0L) + else if ((active10 & 0x2000000000L) != 0L) { - jjmatchedKind = 667; + jjmatchedKind = 677; jjmatchedPos = 3; } - else if ((active10 & 0x4000000000000000L) != 0L) + else if ((active11 & 0x100L) != 0L) { - jjmatchedKind = 702; + jjmatchedKind = 712; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_4(active0, 0x600000000L, active1, 0xffe02000000003fcL, active2, 0x8000001L, active3, 0x88000000002002L, active4, 0x4000000000004L, active5, 0x1000L, active6, 0x300000000001c00L, active7, 0x40000000000ff8L, active8, 0x10000L, active9, 0x8000000800L, active10, 0x80100000f0000000L, active11, 0x5000800L); + return jjMoveStringLiteralDfa4_4(active0, 0x600000000L, active1, 0xffc04000000003fcL, active2, 0x80000003L, active3, 0x880000000020020L, active4, 0x80000000000040L, active5, 0x20000L, active6, 0xc000000000070000L, active7, 0x800000000003fe00L, active8, 0x2000000L, active9, 0x1000000100000L, active10, 0x400003c000000000L, active11, 0x1400200200L); case 83: case 115: - if ((active2 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(3, 142, 76); - else if ((active7 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(3, 489, 76); - else if ((active8 & 0x80L) != 0L) - return jjStartNfaWithStates_4(3, 519, 76); - else if ((active9 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(3, 616, 76); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x401f800005800L, active2, 0x20000006L, active3, 0xc4100L, active4, 0L, active5, 0x100000000000720L, active6, 0x1000003000000L, active7, 0x4000000000000000L, active8, 0x800030L, active9, 0x7800000L, active10, 0x300000000200L, active11, 0x20000L); + if ((active2 & 0x40000L) != 0L) + return jjStartNfaWithStates_4(3, 146, 76); + else if ((active7 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_4(3, 495, 76); + else if ((active8 & 0x10000L) != 0L) + return jjStartNfaWithStates_4(3, 528, 76); + else if ((active9 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_4(3, 625, 76); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x801f800005800L, active2, 0x20000000cL, active3, 0xc41000L, active4, 0L, active5, 0x200000000000e400L, active6, 0x400000c0000000L, active7, 0L, active8, 0x100006080L, active9, 0xf00000000L, active10, 0xc0000000080000L, active11, 0x8000000L); case 84: case 116: if ((active0 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_4(3, 58, 76); - else if ((active4 & 0x40000000000L) != 0L) + else if ((active4 & 0x800000000000L) != 0L) { - jjmatchedKind = 298; + jjmatchedKind = 303; jjmatchedPos = 3; } - else if ((active4 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(3, 303, 76); - else if ((active5 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(3, 357, 76); - else if ((active5 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 378, 76); - else if ((active6 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(3, 410, 76); - else if ((active9 & 0x400L) != 0L) - return jjStartNfaWithStates_4(3, 586, 76); - return jjMoveStringLiteralDfa4_4(active0, 0x8000000000000000L, active1, 0x60000000000L, active2, 0x80040040000000L, active3, 0x4010000L, active4, 0x80000001830L, active5, 0x805800000L, active6, 0x10010600000L, active7, 0x200003c000c0000L, active8, 0L, active9, 0x380007000L, active10, 0x1020000000000000L, active11, 0x2100040L); + else if ((active4 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_4(3, 308, 76); + else if ((active5 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_4(3, 362, 76); + else if ((active5 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_4(3, 383, 76); + else if ((active6 & 0x100000000L) != 0L) + return jjStartNfaWithStates_4(3, 416, 76); + else if ((active9 & 0x80000L) != 0L) + return jjStartNfaWithStates_4(3, 595, 76); + return jjMoveStringLiteralDfa4_4(active0, 0x8000000000000000L, active1, 0xe0000000000L, active2, 0x800400400000000L, active3, 0x40100000L, active4, 0x1000000018300L, active5, 0x100b0000000L, active6, 0x400418000000L, active7, 0xf0003000000L, active8, 0x4L, active9, 0x70000e00000L, active10, 0x8000000000000000L, active11, 0x840010040L); case 85: case 117: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x1800000L, active2, 0L, active3, 0x3c00000000000L, active4, 0x180L, active5, 0x10000100230000L, active6, 0x8000000000000000L, active7, 0x40008000ff00000L, active8, 0x101L, active9, 0x80000L, active10, 0x7000000000L, active11, 0x400L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x1800000L, active2, 0L, active3, 0x3c000000000000L, active4, 0x1800L, active5, 0x200002004600000L, active6, 0L, active7, 0x100003fc000020L, active8, 0x20208L, active9, 0x10000000L, active10, 0x1c00000000000L, active11, 0x100000L); case 86: case 118: - if ((active6 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 433, 76); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x80000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40010L, active6, 0x10000000000000L, active7, 0L, active8, 0xcL, active9, 0L, active10, 0L, active11, 0x200000L); + if ((active6 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_4(3, 439, 76); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x100000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800200L, active6, 0x400000000000000L, active7, 0L, active8, 0x1800L, active9, 0L, active10, 0L, active11, 0x80000000L); case 87: case 119: - if ((active8 & 0x200L) != 0L) - return jjStartNfaWithStates_4(3, 521, 76); - else if ((active10 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(3, 686, 76); - return jjMoveStringLiteralDfa4_4(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x40000L) != 0L) + return jjStartNfaWithStates_4(3, 530, 76); + else if ((active10 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_4(3, 696, 76); + return jjMoveStringLiteralDfa4_4(active0, 0x40000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active5 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(3, 381, 76); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); + if ((active6 & 0x4L) != 0L) + return jjStartNfaWithStates_4(3, 386, 76); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1000000000000000L, active10, 0x20000000000000L, active11, 0L); default : break; } @@ -22943,147 +23078,147 @@ private final int jjMoveStringLiteralDfa4_4(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active10 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(4, 675, 76); + if ((active10 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_4(4, 685, 76); break; case 54: - if ((active10 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(4, 674, 76); + if ((active10 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_4(4, 684, 76); break; case 95: - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x10000000000004L, active2, 0x1080L, active3, 0x10000000L, active4, 0x100803f8000000L, active5, 0L, active6, 0L, active7, 0xff8L, active8, 0L, active9, 0xc0000000000L, active10, 0xf0000040L, active11, 0x200L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x20000000000004L, active2, 0x300L, active3, 0x100000000L, active4, 0x201007f80000000L, active5, 0L, active6, 0L, active7, 0xe00000003fe00L, active8, 0L, active9, 0x18000000000000L, active10, 0x3c000008000L, active11, 0x80000L); case 65: case 97: - return jjMoveStringLiteralDfa5_4(active0, 0x180000000000000L, active1, 0x200063e03f8L, active2, 0x20000080000L, active3, 0x8020081002400L, active4, 0x4000000801800L, active5, 0x430000440710L, active6, 0x4800000800000L, active7, 0x20000004e000L, active8, 0x1000002L, active9, 0x20020000L, active10, 0x1000L, active11, 0L); + return jjMoveStringLiteralDfa5_4(active0, 0x180000000000000L, active1, 0x600063e03f8L, active2, 0x200000800000L, active3, 0x80200810024000L, active4, 0x80000008018000L, active5, 0x860000880e200L, active6, 0x120000020000000L, active7, 0x40000001380000L, active8, 0x200000400L, active9, 0x4004000000L, active10, 0x400000L, active11, 0L); case 66: case 98: - if ((active5 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(4, 354, 76); - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x20L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000L, active8, 0x3e000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active5 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_4(4, 359, 76); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x40L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000L, active8, 0x7c00000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(4, 727, 76); - return jjMoveStringLiteralDfa5_4(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8L, active5, 0x8000000000000L, active6, 0L, active7, 0x1040008000000000L, active8, 0xc0010000L, active9, 0x80000L, active10, 0x100L, active11, 0x10000000L); + if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_4(4, 737, 76); + return jjMoveStringLiteralDfa5_4(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80L, active5, 0x100000000000000L, active6, 0L, active7, 0x8000200000000000L, active8, 0x18002000020L, active9, 0x10000000L, active10, 0x60000L, active11, 0x4000000000L); case 68: case 100: - if ((active3 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(4, 219, 76); - return jjMoveStringLiteralDfa5_4(active0, 0x2000000000000L, active1, 0L, active2, 0x100000000020000L, active3, 0x1800000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000L, active9, 0L, active10, 0x200L, active11, 0L); + if ((active3 & 0x80000000L) != 0L) + return jjStartNfaWithStates_4(4, 223, 76); + return jjMoveStringLiteralDfa5_4(active0, 0x2000000000000L, active1, 0L, active2, 0x1000000000200000L, active3, 0x8000000000000000L, active4, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000L, active9, 0L, active10, 0x80000L, active11, 0L); case 69: case 101: if ((active1 & 0x4000L) != 0L) return jjStartNfaWithStates_4(4, 78, 76); - else if ((active2 & 0x8L) != 0L) - return jjStartNfaWithStates_4(4, 131, 76); - else if ((active3 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(4, 206, 76); - else if ((active3 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 250, 76); - else if ((active4 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(4, 297, 76); - else if ((active5 & 0x80L) != 0L) - return jjStartNfaWithStates_4(4, 327, 76); - else if ((active5 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(4, 364, 76); - else if ((active6 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 442, 76); - else if ((active7 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(4, 478, 76); - else if ((active7 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(4, 494, 76); - else if ((active7 & 0x2000000000000L) != 0L) + else if ((active2 & 0x10L) != 0L) + return jjStartNfaWithStates_4(4, 132, 76); + else if ((active3 & 0x40000L) != 0L) + return jjStartNfaWithStates_4(4, 210, 76); + else if ((active3 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 254, 76); + else if ((active4 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_4(4, 302, 76); + else if ((active5 & 0x1000L) != 0L) + return jjStartNfaWithStates_4(4, 332, 76); + else if ((active5 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 369, 76); + else if ((active7 & 0x1L) != 0L) + return jjStartNfaWithStates_4(4, 448, 76); + else if ((active7 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_4(4, 484, 76); + else if ((active7 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 503, 76); + else if ((active7 & 0x400000000000000L) != 0L) { - jjmatchedKind = 497; + jjmatchedKind = 506; jjmatchedPos = 4; } - else if ((active8 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(4, 529, 76); - else if ((active9 & 0x1000L) != 0L) + else if ((active8 & 0x4000000L) != 0L) + return jjStartNfaWithStates_4(4, 538, 76); + else if ((active9 & 0x200000L) != 0L) { - jjmatchedKind = 588; + jjmatchedKind = 597; jjmatchedPos = 4; } - else if ((active9 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(4, 596, 76); - else if ((active9 & 0x400000000L) != 0L) + else if ((active9 & 0x20000000L) != 0L) + return jjStartNfaWithStates_4(4, 605, 76); + else if ((active9 & 0x80000000000L) != 0L) { - jjmatchedKind = 610; + jjmatchedKind = 619; jjmatchedPos = 4; } - else if ((active10 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(4, 666, 76); else if ((active10 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_4(4, 676, 76); + else if ((active10 & 0x400000000000L) != 0L) { - jjmatchedKind = 676; + jjmatchedKind = 686; jjmatchedPos = 4; } - else if ((active10 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 692, 76); - else if ((active10 & 0x1000000000000000L) != 0L) + else if ((active10 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 702, 76); + else if ((active11 & 0x40L) != 0L) { - jjmatchedKind = 700; + jjmatchedKind = 710; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_4(active0, 0x20840000000000L, active1, 0xffe0280700408000L, active2, 0x420000028000001L, active3, 0x2000008020010000L, active4, 0x400004L, active5, 0x102000000004040L, active6, 0x213003d0000000L, active7, 0x1c000000020000L, active8, 0xdL, active9, 0x1bc881a000L, active10, 0x8806000000000L, active11, 0x40005c0L); + return jjMoveStringLiteralDfa5_4(active0, 0x20840000000000L, active1, 0xffc0500700408000L, active2, 0x4200000280000003L, active3, 0x80200100000L, active4, 0x4000042L, active5, 0x2040000000080800L, active6, 0x84c00f400000000L, active7, 0x3800000000800000L, active8, 0x1a00L, active9, 0x379103400000L, active10, 0x2201800000000000L, active11, 0x1000170000L); case 70: case 102: - if ((active2 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(4, 159, 76); - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0L, active4, 0L, active5, 0x100000L, active6, 0L, active7, 0L, active8, 0x800000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x800000000L) != 0L) + return jjStartNfaWithStates_4(4, 163, 76); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x8000000000030000L, active3, 0L, active4, 0L, active5, 0x2000000L, active6, 0L, active7, 0L, active8, 0x100000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(4, 672, 76); - return jjMoveStringLiteralDfa5_4(active0, 0x20000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1eL, active11, 0x10000L); + if ((active10 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_4(4, 682, 76); + return jjMoveStringLiteralDfa5_4(active0, 0x20000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x40000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c00L, active11, 0x4000000L); case 72: case 104: - if ((active2 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(4, 158, 76); - else if ((active2 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 189, 76); - else if ((active3 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(4, 207, 76); - else if ((active4 & 0x4000000000000000L) != 0L) + if ((active2 & 0x400000000L) != 0L) + return jjStartNfaWithStates_4(4, 162, 76); + else if ((active3 & 0x2L) != 0L) + return jjStartNfaWithStates_4(4, 193, 76); + else if ((active3 & 0x80000L) != 0L) + return jjStartNfaWithStates_4(4, 211, 76); + else if ((active5 & 0x8L) != 0L) { - jjmatchedKind = 318; + jjmatchedKind = 323; jjmatchedPos = 4; } - else if ((active5 & 0x800000L) != 0L) + else if ((active5 & 0x10000000L) != 0L) { - jjmatchedKind = 343; + jjmatchedKind = 348; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x8000000000000000L, active5, 0x1000007L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20040000000000L, active11, 0L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000f0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8010000000000000L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa5_4(active0, 0x4040000700000000L, active1, 0x400f8000000L, active2, 0xc0000000000L, active3, 0x2000000L, active4, 0x400000000030L, active5, 0x800804002000L, active6, 0xd0412001600000L, active7, 0x4200043c00000000L, active8, 0x3fff0001c0030L, active9, 0x8000000004000L, active10, 0x1003a0000000000L, active11, 0x2308020L); + return jjMoveStringLiteralDfa5_4(active0, 0x4040000700000000L, active1, 0x800f8000000L, active2, 0xc00000000000L, active3, 0x20000000L, active4, 0x8000000000300L, active5, 0x10010080040000L, active6, 0x3410480058000000L, active7, 0x10f0000000000L, active8, 0x7ffe00038006084L, active9, 0x1000000000800000L, active10, 0xe8000000000000L, active11, 0x8c2008004L); case 75: case 107: if ((active1 & 0x400L) != 0L) return jjStartNfaWithStates_4(4, 74, 76); - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x10000L) != 0L) return jjStartNfaWithStates_4(4, 80, 76); - else if ((active3 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(4, 209, 76); - else if ((active4 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(4, 294, 76); - else if ((active4 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 305, 76); - else if ((active4 & 0x80000000000000L) != 0L) + else if ((active3 & 0x200000L) != 0L) + return jjStartNfaWithStates_4(4, 213, 76); + else if ((active4 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_4(4, 299, 76); + else if ((active4 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 310, 76); + else if ((active4 & 0x1000000000000000L) != 0L) { - jjmatchedKind = 311; + jjmatchedKind = 316; jjmatchedPos = 4; } - else if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(4, 733, 76); - return jjMoveStringLiteralDfa5_4(active0, 0x1800000000000040L, active1, 0L, active2, 0x4000208000008000L, active3, 0L, active4, 0x300000000000000L, active5, 0x200000L, active6, 0xc00L, active7, 0x20000000100000L, active8, 0x1c000000004c00L, active9, 0x60000000200000L, active10, 0x400L, active11, 0x2004L); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_4(4, 743, 76); + return jjMoveStringLiteralDfa5_4(active0, 0x1800000000000040L, active1, 0L, active2, 0x2080000080000L, active3, 0x4L, active4, 0x6000000000000000L, active5, 0x4000000L, active6, 0x30000L, active7, 0x4000000004000000L, active8, 0x3800000000980000L, active9, 0xc000000040000000L, active10, 0x100000L, active11, 0x801000L); case 77: case 109: - return jjMoveStringLiteralDfa5_4(active0, 0x40000000L, active1, 0x1800000L, active2, 0xe000000040000L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0x1fc000L, active7, 0x1800000000000L, active8, 0L, active9, 0L, active10, 0x204000L, active11, 0L); + return jjMoveStringLiteralDfa5_4(active0, 0x40000000L, active1, 0x1800000L, active2, 0xe0000000400000L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0x7f00000L, active7, 0x300000000000000L, active8, 0L, active9, 0L, active10, 0x81000000L, active11, 0L); case 78: case 110: if ((active0 & 0x400L) != 0L) @@ -23095,122 +23230,122 @@ else if ((active0 & 0x4000000000L) != 0L) } else if ((active1 & 0x1L) != 0L) return jjStartNfaWithStates_4(4, 64, 76); - else if ((active10 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(4, 657, 76); - return jjMoveStringLiteralDfa5_4(active0, 0x98000000020L, active1, 0L, active2, 0x4007000000L, active3, 0x4000000000800L, active4, 0x200L, active5, 0L, active6, 0x10L, active7, 0x180010000000000L, active8, 0x1e0000000000000L, active9, 0x40000L, active10, 0x8000L, active11, 0x4010L); + else if ((active10 & 0x8000000L) != 0L) + return jjStartNfaWithStates_4(4, 667, 76); + return jjMoveStringLiteralDfa5_4(active0, 0x98000000020L, active1, 0L, active2, 0x40070000000L, active3, 0x40000000008000L, active4, 0x2000L, active5, 0L, active6, 0x600L, active7, 0x400000000000L, active8, 0xc000000000000003L, active9, 0x8000003L, active10, 0x2000000L, active11, 0x1004000L); case 79: case 111: - return jjMoveStringLiteralDfa5_4(active0, 0x20800000080L, active1, 0L, active2, 0x10000000006L, active3, 0x800400000L, active4, 0x200000L, active5, 0x8000000080001800L, active6, 0x400000001L, active7, 0L, active8, 0L, active9, 0x2000000000L, active10, 0x240000000080000L, active11, 0L); + return jjMoveStringLiteralDfa5_4(active0, 0x20800000080L, active1, 0L, active2, 0x10000000000cL, active3, 0x8004000000L, active4, 0x2000000L, active5, 0x1000030000L, active6, 0x10000000030L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0x20000000L, active11, 0x9L); case 80: case 112: - if ((active3 & 0x400000000000L) != 0L) + if ((active3 & 0x4000000000000L) != 0L) { - jjmatchedKind = 238; + jjmatchedKind = 242; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x1000000000000000L, active3, 0x380000000000dL, active4, 0L, active5, 0L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0L, active10, 0x800008000000000L, active11, 0L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x380000000000d1L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0x2000000000000L, active11, 0x20L); case 82: case 114: if ((active0 & 0x800L) != 0L) return jjStartNfaWithStates_4(4, 11, 76); else if ((active0 & 0x8000L) != 0L) return jjStartNfaWithStates_4(4, 15, 76); - else if ((active2 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 191, 76); - else if ((active3 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(4, 213, 76); - else if ((active4 & 0x40L) != 0L) - return jjStartNfaWithStates_4(4, 262, 76); - else if ((active4 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 315, 76); - else if ((active5 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(4, 353, 76); - else if ((active6 & 0x4L) != 0L) + else if ((active3 & 0x8L) != 0L) + return jjStartNfaWithStates_4(4, 195, 76); + else if ((active3 & 0x2000000L) != 0L) + return jjStartNfaWithStates_4(4, 217, 76); + else if ((active4 & 0x400L) != 0L) + return jjStartNfaWithStates_4(4, 266, 76); + else if ((active5 & 0x1L) != 0L) + return jjStartNfaWithStates_4(4, 320, 76); + else if ((active5 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_4(4, 358, 76); + else if ((active6 & 0x80L) != 0L) { - jjmatchedKind = 386; + jjmatchedKind = 391; jjmatchedPos = 4; } - else if ((active6 & 0x80L) != 0L) - return jjStartNfaWithStates_4(4, 391, 76); - else if ((active6 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(4, 427, 76); - else if ((active6 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 435, 76); - else if ((active10 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(4, 656, 76); - else if ((active10 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(4, 664, 76); - return jjMoveStringLiteralDfa5_4(active0, 0x102010000000L, active1, 0x1800000000000L, active2, 0x3c00c00000L, active3, 0x4200006004001000L, active4, 0x100000038400L, active5, 0x14000100000000L, active6, 0x8000000000001028L, active7, 0x840008000fe80006L, active8, 0x200000000000000L, active9, 0L, active10, 0x2000000L, active11, 0L); + else if ((active6 & 0x2000L) != 0L) + return jjStartNfaWithStates_4(4, 397, 76); + else if ((active6 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 433, 76); + else if ((active6 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 441, 76); + else if ((active10 & 0x4000000L) != 0L) + return jjStartNfaWithStates_4(4, 666, 76); + else if ((active10 & 0x400000000L) != 0L) + return jjStartNfaWithStates_4(4, 674, 76); + return jjMoveStringLiteralDfa5_4(active0, 0x102010000000L, active1, 0x3000000000000L, active2, 0x3c00c000000L, active3, 0x2000060040010000L, active4, 0x2000000384004L, active5, 0x280002000000000L, active6, 0x40900L, active7, 0x100003fa0001a0L, active8, 0x108L, active9, 0x4L, active10, 0x800000000L, active11, 0L); case 83: case 115: - if ((active1 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 114, 76); - else if ((active3 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 247, 76); - else if ((active5 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(4, 347, 76); - else if ((active5 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(4, 349, 76); - else if ((active5 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 368, 76); - else if ((active6 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 445, 76); - else if ((active8 & 0x100L) != 0L) - return jjStartNfaWithStates_4(4, 520, 76); - else if ((active10 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 689, 76); - else if ((active10 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 703, 76); - return jjMoveStringLiteralDfa5_4(active0, 0x8000000L, active1, 0x1800L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40000000L, active6, 0L, active7, 0L, active8, 0x400000000000000L, active9, 0xff81f08000000000L, active10, 0x10000400000L, active11, 0L); + if ((active1 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 115, 76); + else if ((active3 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 251, 76); + else if ((active5 & 0x100000000L) != 0L) + return jjStartNfaWithStates_4(4, 352, 76); + else if ((active5 & 0x400000000L) != 0L) + return jjStartNfaWithStates_4(4, 354, 76); + else if ((active5 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 373, 76); + else if ((active7 & 0x8L) != 0L) + return jjStartNfaWithStates_4(4, 451, 76); + else if ((active8 & 0x20000L) != 0L) + return jjStartNfaWithStates_4(4, 529, 76); + else if ((active10 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 699, 76); + else if ((active11 & 0x200L) != 0L) + return jjStartNfaWithStates_4(4, 713, 76); + return jjMoveStringLiteralDfa5_4(active0, 0x8000000L, active1, 0x1800L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3e1000000000008L, active10, 0x40001000001ffL, active11, 0L); case 84: case 116: - if ((active1 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(4, 110, 76); - else if ((active3 & 0x40000L) != 0L) + if ((active1 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_4(4, 111, 76); + else if ((active3 & 0x400000L) != 0L) { - jjmatchedKind = 210; + jjmatchedKind = 214; jjmatchedPos = 4; } - else if ((active3 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(4, 212, 76); - else if ((active3 & 0x100000000000L) != 0L) + else if ((active3 & 0x1000000L) != 0L) + return jjStartNfaWithStates_4(4, 216, 76); + else if ((active3 & 0x1000000000000L) != 0L) { - jjmatchedKind = 236; + jjmatchedKind = 240; jjmatchedPos = 4; } - else if ((active4 & 0x80L) != 0L) - return jjStartNfaWithStates_4(4, 263, 76); - else if ((active4 & 0x100L) != 0L) - return jjStartNfaWithStates_4(4, 264, 76); - else if ((active4 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 309, 76); - else if ((active6 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(4, 420, 76); - else if ((active7 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(4, 464, 76); - else if ((active7 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(4, 477, 76); - else if ((active9 & 0x800L) != 0L) - return jjStartNfaWithStates_4(4, 587, 76); - else if ((active10 & 0x1L) != 0L) - return jjStartNfaWithStates_4(4, 640, 76); - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x201f800000000L, active2, 0x10000f00L, active3, 0x100200400080100L, active4, 0x401002000000000L, active5, 0x60000000030000L, active6, 0x300060002000000L, active7, 0x1000L, active8, 0xf800000000800000L, active9, 0x70000ffL, active10, 0x800000L, active11, 0L); + else if ((active4 & 0x800L) != 0L) + return jjStartNfaWithStates_4(4, 267, 76); + else if ((active4 & 0x1000L) != 0L) + return jjStartNfaWithStates_4(4, 268, 76); + else if ((active4 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 314, 76); + else if ((active6 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_4(4, 426, 76); + else if ((active7 & 0x400000L) != 0L) + return jjStartNfaWithStates_4(4, 470, 76); + else if ((active7 & 0x800000000L) != 0L) + return jjStartNfaWithStates_4(4, 483, 76); + else if ((active9 & 0x100000L) != 0L) + return jjStartNfaWithStates_4(4, 596, 76); + else if ((active10 & 0x200L) != 0L) + return jjStartNfaWithStates_4(4, 649, 76); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x401f800000000L, active2, 0x100007c00L, active3, 0x1002004000801000L, active4, 0x8020040000000000L, active5, 0xc00000000600000L, active6, 0xc001800080000000L, active7, 0x40000L, active8, 0x100000000L, active9, 0xe0001fff0L, active10, 0x200000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_4(active0, 0x8000000000000000L, active1, 0L, active2, 0x300000L, active3, 0xb0L, active4, 0x10000000003L, active5, 0x20L, active6, 0x800000100L, active7, 0x200000000L, active8, 0L, active9, 0x400000L, active10, 0x42000L, active11, 0x400008L); + return jjMoveStringLiteralDfa5_4(active0, 0x8000000000000000L, active1, 0L, active2, 0x3000000L, active3, 0xb00L, active4, 0x200000000030L, active5, 0x400L, active6, 0x20000004000L, active7, 0x8000000000L, active8, 0L, active9, 0x80000000L, active10, 0x10800000L, active11, 0x100002000L); case 86: case 118: - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0x80000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300L, active10, 0x100000L, active11, 0L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x1000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x60000L, active10, 0x40000000L, active11, 0L); case 87: case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_4(4, 14, 76); - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); case 88: case 120: - if ((active11 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(4, 716, 76); - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0L, active10, 0L, active11, 0L); + if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_4(4, 726, 76); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x80000L) != 0L) @@ -23220,16 +23355,16 @@ else if ((active0 & 0x200000L) != 0L) jjmatchedKind = 21; jjmatchedPos = 4; } - else if ((active2 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_4(4, 183, 76); - else if ((active3 & 0x2L) != 0L) - return jjStartNfaWithStates_4(4, 193, 76); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(4, 728, 76); - return jjMoveStringLiteralDfa5_4(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000800L); + else if ((active2 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_4(4, 187, 76); + else if ((active3 & 0x20L) != 0L) + return jjStartNfaWithStates_4(4, 197, 76); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_4(4, 738, 76); + return jjMoveStringLiteralDfa5_4(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000200000L); case 90: case 122: - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xc00000000000000L, active10, 0L, active11, 0L); default : break; } @@ -23247,18 +23382,18 @@ private final int jjMoveStringLiteralDfa5_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_4(active0, 0x18001c00000L, active1, 0x1800000001000L, active2, 0x20000000L, active3, 0x800020080000L, active4, 0L, active5, 0x20000000000006L, active6, 0L, active7, 0x1c000000000000L, active8, 0L, active9, 0x800000000L, active10, 0x20004000000000L, active11, 0x5c0L); + return jjMoveStringLiteralDfa6_4(active0, 0x18001c00000L, active1, 0x3000000001000L, active2, 0x200000000L, active3, 0x8000200800000L, active4, 0L, active5, 0x4000000000000c0L, active6, 0L, active7, 0x3800000000000000L, active8, 0L, active9, 0x100000000000L, active10, 0x8001000000000000L, active11, 0x170000L); case 65: case 97: - if ((active7 & 0x800000000000L) != 0L) + if ((active7 & 0x100000000000000L) != 0L) { - jjmatchedKind = 495; + jjmatchedKind = 504; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_4(active0, 0x800000002000L, active1, 0L, active2, 0x1000000000040020L, active3, 0x6004000000L, active4, 0x110018400038L, active5, 0x80100000000L, active6, 0x200c10L, active7, 0x8001000100000018L, active8, 0x100800400L, active9, 0x780000000200300L, active10, 0x50000000340L, active11, 0x4L); + return jjMoveStringLiteralDfa6_4(active0, 0x800000002000L, active1, 0L, active2, 0x400040L, active3, 0x60040000001L, active4, 0x2200184000380L, active5, 0x1002000000000L, active6, 0x8030600L, active7, 0x200004000000600L, active8, 0x20100080100L, active9, 0x40060000L, active10, 0x140000000e800fL, active11, 0x1000L); case 66: case 98: - return jjMoveStringLiteralDfa6_4(active0, 0x600000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_4(active0, 0x600000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: if ((active0 & 0x100000000L) != 0L) @@ -23266,109 +23401,109 @@ private final int jjMoveStringLiteralDfa5_4(long old0, long active0, long old1, jjmatchedKind = 32; jjmatchedPos = 5; } - else if ((active6 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 438, 76); - else if ((active9 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(5, 590, 76); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x7004003f8L, active2, 0L, active3, 0x2000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x28020L, active8, 0x60000000400000L, active9, 0L, active10, 0L, active11, 0x200020L); + else if ((active6 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 444, 76); + else if ((active9 & 0x800000L) != 0L) + return jjStartNfaWithStates_4(5, 599, 76); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x7004003f8L, active2, 0L, active3, 0x20000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000a00800L, active8, 0xc000000080000000L, active9, 0L, active10, 0L, active11, 0x80008000L); case 68: case 100: if ((active0 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_4(5, 53, 76); - else if ((active3 & 0x800L) != 0L) - return jjStartNfaWithStates_4(5, 203, 76); - else if ((active5 & 0x800L) != 0L) - return jjStartNfaWithStates_4(5, 331, 76); - else if ((active6 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(5, 418, 76); - else if ((active7 & 0x80000000000000L) != 0L) + else if ((active3 & 0x8000L) != 0L) + return jjStartNfaWithStates_4(5, 207, 76); + else if ((active5 & 0x10000L) != 0L) + return jjStartNfaWithStates_4(5, 336, 76); + else if ((active6 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_4(5, 424, 76); + else if ((active8 & 0x1L) != 0L) { - jjmatchedKind = 503; + jjmatchedKind = 512; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_4(active0, 0x180000000000000L, active1, 0x10000000000000L, active2, 0x1000L, active3, 0x30L, active4, 0x3L, active5, 0L, active6, 0x20300000000000L, active7, 0x100080000000000L, active8, 0L, active9, 0x48000000000L, active10, 0xf0008000L, active11, 0L); + return jjMoveStringLiteralDfa6_4(active0, 0x180000000000000L, active1, 0x20000000000000L, active2, 0x100L, active3, 0x300L, active4, 0x30L, active5, 0L, active6, 0x80c000000000000L, active7, 0x10000000000000L, active8, 0x2L, active9, 0x9000000000000L, active10, 0x3c002000000L, active11, 0L); case 69: case 101: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_4(5, 37, 76); - else if ((active1 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 113, 76); - else if ((active2 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(5, 145, 76); - else if ((active2 & 0x1000000L) != 0L) + else if ((active1 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 114, 76); + else if ((active2 & 0x200000L) != 0L) + return jjStartNfaWithStates_4(5, 149, 76); + else if ((active2 & 0x10000000L) != 0L) { - jjmatchedKind = 152; + jjmatchedKind = 156; jjmatchedPos = 5; } - else if ((active2 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(5, 155, 76); - else if ((active2 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(5, 156, 76); - else if ((active2 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(5, 173, 76); - else if ((active3 & 0x1L) != 0L) - return jjStartNfaWithStates_4(5, 192, 76); - else if ((active3 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 249, 76); - else if ((active5 & 0x10000L) != 0L) + else if ((active2 & 0x80000000L) != 0L) + return jjStartNfaWithStates_4(5, 159, 76); + else if ((active2 & 0x100000000L) != 0L) + return jjStartNfaWithStates_4(5, 160, 76); + else if ((active2 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 177, 76); + else if ((active3 & 0x10L) != 0L) + return jjStartNfaWithStates_4(5, 196, 76); + else if ((active3 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 253, 76); + else if ((active5 & 0x200000L) != 0L) { - jjmatchedKind = 336; + jjmatchedKind = 341; jjmatchedPos = 5; } - else if ((active5 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(5, 341, 76); - else if ((active7 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(5, 476, 76); - else if ((active8 & 0x800L) != 0L) - return jjStartNfaWithStates_4(5, 523, 76); - else if ((active8 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(5, 528, 76); - else if ((active10 & 0x400L) != 0L) - return jjStartNfaWithStates_4(5, 650, 76); - else if ((active10 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(5, 658, 76); - else if ((active10 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(5, 663, 76); - return jjMoveStringLiteralDfa6_4(active0, 0x40040000000L, active1, 0L, active2, 0x106000000L, active3, 0x200000000000L, active4, 0x8000001020084000L, active5, 0x40020001L, active6, 0x3000000001fc000L, active7, 0x6L, active8, 0x200000200000000L, active9, 0x20000008000000L, active10, 0x80000000020001eL, active11, 0x4000L); + else if ((active5 & 0x4000000L) != 0L) + return jjStartNfaWithStates_4(5, 346, 76); + else if ((active7 & 0x400000000L) != 0L) + return jjStartNfaWithStates_4(5, 482, 76); + else if ((active8 & 0x100000L) != 0L) + return jjStartNfaWithStates_4(5, 532, 76); + else if ((active8 & 0x2000000L) != 0L) + return jjStartNfaWithStates_4(5, 537, 76); + else if ((active10 & 0x100000L) != 0L) + return jjStartNfaWithStates_4(5, 660, 76); + else if ((active10 & 0x10000000L) != 0L) + return jjStartNfaWithStates_4(5, 668, 76); + else if ((active10 & 0x200000000L) != 0L) + return jjStartNfaWithStates_4(5, 673, 76); + return jjMoveStringLiteralDfa6_4(active0, 0x40040000000L, active1, 0L, active2, 0x1060000000L, active3, 0x2000000000000L, active4, 0x20200840000L, active5, 0x800400030L, active6, 0xc000000007f00000L, active7, 0x180L, active8, 0x40000000000L, active9, 0x4000001000000004L, active10, 0x80003c00L, active11, 0x1000020L); case 70: case 102: - if ((active5 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(5, 367, 76); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000000000L, active7, 0L, active8, 0x1c0000L, active9, 0x1800000000000000L, active10, 0L, active11, 0L); + if ((active5 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 372, 76); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000000000000L, active7, 0L, active8, 0x38000000L, active9, 0L, active10, 0x30L, active11, 0L); case 71: case 103: - if ((active3 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 242, 76); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000L, active4, 0L, active5, 0x700L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000L, active10, 0L, active11, 0x10000L); + if ((active3 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 246, 76); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x20000000L, active4, 0L, active5, 0xe000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x4000000L); case 72: case 104: - if ((active4 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 304, 76); - else if ((active7 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 502, 76); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000L, active7, 0L, active8, 0x40000000L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active4 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 309, 76); + else if ((active7 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 511, 76); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 73: case 105: - return jjMoveStringLiteralDfa6_4(active0, 0x8000000L, active1, 0x20000000800L, active2, 0x10e001c00000f00L, active3, 0x1901000400000400L, active4, 0L, active5, 0x4000000100000L, active6, 0x60000001008L, active7, 0x400000000081040L, active8, 0x380000000e004000L, active9, 0x40000001000000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa6_4(active0, 0x8000000L, active1, 0x60000000800L, active2, 0x10e001c000007c00L, active3, 0x9010004000004000L, active4, 0x1L, active5, 0x80000002000000L, active6, 0x1800000040100L, active7, 0x2041000L, active8, 0x1c00800008L, active9, 0x8000000200000070L, active10, 0L, active11, 0x4000L); case 76: case 108: - if ((active3 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(5, 233, 76); - else if ((active6 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(5, 407, 76); - else if ((active7 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 501, 76); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x4L, active2, 0x8000300000L, active3, 0L, active4, 0L, active5, 0x30000040010L, active6, 0x10000000000000L, active7, 0L, active8, 0x890000002L, active9, 0xe000000000400000L, active10, 0L, active11, 0x2000L); + if ((active3 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_4(5, 237, 76); + else if ((active6 & 0x20000000L) != 0L) + return jjStartNfaWithStates_4(5, 413, 76); + else if ((active7 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 510, 76); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x4L, active2, 0x80003000000L, active3, 0L, active4, 0L, active5, 0x600000800200L, active6, 0x400000000000000L, active7, 0L, active8, 0x112000000400L, active9, 0x80000000L, active10, 0x1c0L, active11, 0x800000L); case 77: case 109: - if ((active9 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(5, 593, 76); - else if ((active9 & 0x80000000L) != 0L) + if ((active9 & 0x4000000L) != 0L) + return jjStartNfaWithStates_4(5, 602, 76); + else if ((active9 & 0x10000000000L) != 0L) { - jjmatchedKind = 607; + jjmatchedKind = 616; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0x4L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000000000L, active9, 0x300002000L, active10, 0x4000L, active11, 0L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0x42L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x60000400008L, active10, 0x1000000L, active11, 0L); case 78: case 110: if ((active0 & 0x80L) != 0L) @@ -23378,74 +23513,74 @@ else if ((active1 & 0x800000L) != 0L) jjmatchedKind = 87; jjmatchedPos = 5; } - else if ((active2 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(5, 171, 76); - else if ((active3 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(5, 227, 76); - else if ((active5 & 0x8000000000000000L) != 0L) + else if ((active2 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_4(5, 175, 76); + else if ((active3 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_4(5, 231, 76); + else if ((active6 & 0x10L) != 0L) { - jjmatchedKind = 383; + jjmatchedKind = 388; jjmatchedPos = 5; } - else if ((active7 & 0x200000L) != 0L) + else if ((active7 & 0x8000000L) != 0L) { - jjmatchedKind = 469; + jjmatchedKind = 475; jjmatchedPos = 5; } - else if ((active10 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 696, 76); - return jjMoveStringLiteralDfa6_4(active0, 0x4040000020000000L, active1, 0xffe0040007000000L, active2, 0x20050000000001L, active3, 0x1000L, active4, 0x400000001800L, active5, 0x880004000L, active6, 0x23c1000001L, active7, 0x43c0fc00000L, active8, 0x3fff000000001L, active9, 0x8000000000000L, active10, 0xa0000002000L, active11, 0x108000L); + else if ((active11 & 0x4L) != 0L) + return jjStartNfaWithStates_4(5, 706, 76); + return jjMoveStringLiteralDfa6_4(active0, 0x4040000020000000L, active1, 0xffc0080007000000L, active2, 0x200500000000003L, active3, 0x10000L, active4, 0x8000000018000L, active5, 0x11000080000L, active6, 0x8f040000020L, active7, 0x10f03f0000000L, active8, 0x7ffe00000000200L, active9, 0x1000000000000000L, active10, 0x28000000800000L, active11, 0x42000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_4(active0, 0x1800000000000000L, active1, 0L, active2, 0x4000008000L, active3, 0L, active4, 0x4000000c0000000L, active5, 0L, active6, 0x10000000000L, active7, 0x200108000000000L, active8, 0x1c000420000030L, active9, 0x6000000000000L, active10, 0x308000100000L, active11, 0x20000L); + return jjMoveStringLiteralDfa6_4(active0, 0x1800000000000000L, active1, 0L, active2, 0x40000080000L, active3, 0L, active4, 0x8000000c00000000L, active5, 0L, active6, 0x400000000000L, active7, 0x2c200000000000L, active8, 0x3800084000006004L, active9, 0xc00000000000000L, active10, 0xc2000040000000L, active11, 0x8000000L); case 80: case 112: - if ((active7 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(5, 481, 76); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1000L, active11, 0x808L); + if ((active7 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_4(5, 487, 76); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x400000L, active11, 0x202000L); case 81: case 113: - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x2L) != 0L) + if ((active2 & 0x4L) != 0L) { - jjmatchedKind = 129; + jjmatchedKind = 130; jjmatchedPos = 5; } - else if ((active3 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(5, 208, 76); - else if ((active5 & 0x40L) != 0L) - return jjStartNfaWithStates_4(5, 326, 76); - else if ((active5 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 369, 76); - else if ((active7 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(5, 493, 76); - else if ((active8 & 0x4L) != 0L) + else if ((active3 & 0x100000L) != 0L) + return jjStartNfaWithStates_4(5, 212, 76); + else if ((active5 & 0x800L) != 0L) + return jjStartNfaWithStates_4(5, 331, 76); + else if ((active5 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 374, 76); + else if ((active7 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 502, 76); + else if ((active8 & 0x800L) != 0L) { - jjmatchedKind = 514; + jjmatchedKind = 523; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_4(active0, 0x8000000800000000L, active1, 0x9f800000000L, active2, 0x800000000c80004L, active3, 0x8000000000000L, active4, 0x14000000000000L, active5, 0x10000000000020L, active6, 0x5800010000000L, active7, 0x40080L, active8, 0x1000008L, active9, 0x2006000000L, active10, 0L, active11, 0x200L); + return jjMoveStringLiteralDfa6_4(active0, 0x8000000800000000L, active1, 0x11f800000000L, active2, 0x800000000c800008L, active3, 0x80000000000000L, active4, 0x280000000000000L, active5, 0x200000000000400L, active6, 0x160000400000000L, active7, 0x1002000L, active8, 0x200001000L, active9, 0x400c00000000L, active10, 0L, active11, 0x80000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) return jjStartNfaWithStates_4(5, 16, 76); - else if ((active2 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 190, 76); - else if ((active3 & 0x100L) != 0L) - return jjStartNfaWithStates_4(5, 200, 76); - else if ((active3 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 241, 76); - else if ((active5 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(5, 344, 76); - else if ((active5 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 374, 76); - else if ((active6 & 0x20L) != 0L) - return jjStartNfaWithStates_4(5, 389, 76); - else if ((active10 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(5, 677, 76); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x200000008000L, active2, 0L, active3, 0x10000000L, active4, 0x18200L, active5, 0x4003000L, active6, 0x8000400000000000L, active7, 0x2f00L, active8, 0xc000000000000000L, active9, 0x10000000ffL, active10, 0x800000000000L, active11, 0x6000000L); + else if ((active3 & 0x4L) != 0L) + return jjStartNfaWithStates_4(5, 194, 76); + else if ((active3 & 0x1000L) != 0L) + return jjStartNfaWithStates_4(5, 204, 76); + else if ((active3 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 245, 76); + else if ((active5 & 0x20000000L) != 0L) + return jjStartNfaWithStates_4(5, 349, 76); + else if ((active5 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 379, 76); + else if ((active6 & 0x800L) != 0L) + return jjStartNfaWithStates_4(5, 395, 76); + else if ((active10 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_4(5, 687, 76); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x400000008000L, active2, 0L, active3, 0x100000000L, active4, 0x2000182000L, active5, 0x80060000L, active6, 0x10000000000000L, active7, 0xbc020L, active8, 0L, active9, 0x20000001ff80L, active10, 0x200000000000000L, active11, 0x1800000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -23457,64 +23592,64 @@ else if ((active1 & 0x8000000L) != 0L) jjmatchedKind = 91; jjmatchedPos = 5; } - else if ((active3 & 0x4L) != 0L) + else if ((active3 & 0x40L) != 0L) { - jjmatchedKind = 194; + jjmatchedKind = 198; jjmatchedPos = 5; } - else if ((active3 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(5, 216, 76); - else if ((active3 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 254, 76); - else if ((active4 & 0x400L) != 0L) - return jjStartNfaWithStates_4(5, 266, 76); - else if ((active5 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 371, 76); + else if ((active3 & 0x10000000L) != 0L) + return jjStartNfaWithStates_4(5, 220, 76); + else if ((active4 & 0x4L) != 0L) + return jjStartNfaWithStates_4(5, 258, 76); + else if ((active4 & 0x4000L) != 0L) + return jjStartNfaWithStates_4(5, 270, 76); else if ((active5 & 0x100000000000000L) != 0L) return jjStartNfaWithStates_4(5, 376, 76); - else if ((active6 & 0x100L) != 0L) - return jjStartNfaWithStates_4(5, 392, 76); - else if ((active7 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(5, 468, 76); - else if ((active7 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 508, 76); - else if ((active9 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(5, 599, 76); - else if ((active10 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(5, 662, 76); - else if ((active10 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(5, 665, 76); - return jjMoveStringLiteralDfa6_4(active0, 0x2000010000000L, active1, 0xf03e0000L, active2, 0x20000000080L, active3, 0x8000000088L, active4, 0x300000000800000L, active5, 0L, active6, 0x800400000L, active7, 0x4000000000004000L, active8, 0L, active9, 0x1f80040080000L, active10, 0L, active11, 0x400000L); + else if ((active5 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_4(5, 381, 76); + else if ((active6 & 0x4000L) != 0L) + return jjStartNfaWithStates_4(5, 398, 76); + else if ((active7 & 0x4000000L) != 0L) + return jjStartNfaWithStates_4(5, 474, 76); + else if ((active8 & 0x20L) != 0L) + return jjStartNfaWithStates_4(5, 517, 76); + else if ((active9 & 0x100000000L) != 0L) + return jjStartNfaWithStates_4(5, 608, 76); + else if ((active10 & 0x100000000L) != 0L) + return jjStartNfaWithStates_4(5, 672, 76); + else if ((active10 & 0x800000000L) != 0L) + return jjStartNfaWithStates_4(5, 675, 76); + return jjMoveStringLiteralDfa6_4(active0, 0x2000010000000L, active1, 0xf03e0000L, active2, 0x200000000200L, active3, 0x80000000880L, active4, 0x6000000008000000L, active5, 0L, active6, 0x20010000000L, active7, 0x100000L, active8, 0x80L, active9, 0x3f0008010000000L, active10, 0L, active11, 0x100000000L); case 85: case 117: - return jjMoveStringLiteralDfa6_4(active0, 0x20000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000L, active8, 0x80000000000000L, active9, 0L, active10, 0x200000000000000L, active11, 0L); + return jjMoveStringLiteralDfa6_4(active0, 0x20000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0x8L); case 86: case 118: - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80200020000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x18000L, active10, 0x8000000000000L, active11, 0L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1004000200000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3000002L, active10, 0x2000000000000000L, active11, 0L); case 87: case 119: - if ((active4 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(5, 277, 76); - else if ((active10 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(5, 694, 76); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x400000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000L, active11, 0L); + if ((active4 & 0x2000000L) != 0L) + return jjStartNfaWithStates_4(5, 281, 76); + else if ((active11 & 0x1L) != 0L) + return jjStartNfaWithStates_4(5, 704, 76); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0x10000L, active3, 0x4000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L); case 88: case 120: - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0x400000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0x4000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x100000000000L) != 0L) return jjStartNfaWithStates_4(5, 44, 76); - else if ((active3 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(5, 223, 76); - else if ((active5 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(5, 342, 76); - else if ((active9 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(5, 605, 76); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + else if ((active3 & 0x800000000L) != 0L) + return jjStartNfaWithStates_4(5, 227, 76); + else if ((active5 & 0x8000000L) != 0L) + return jjStartNfaWithStates_4(5, 347, 76); + else if ((active9 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_4(5, 614, 76); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0x20000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x8000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x2000000000L); default : break; } @@ -23532,40 +23667,40 @@ private final int jjMoveStringLiteralDfa6_4(long old0, long active0, long old1, switch(curChar) { case 50: - if ((active7 & 0x80L) != 0L) - return jjStartNfaWithStates_4(6, 455, 76); + if ((active7 & 0x2000L) != 0L) + return jjStartNfaWithStates_4(6, 461, 76); break; case 95: - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0x8L, active9, 0x300058000L, active10, 0L, active11, 0x4000L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1000L, active9, 0x6000b000000L, active10, 0L, active11, 0x1000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_4(active0, 0x40000000400000L, active1, 0xf800000000L, active2, 0x800000000400000L, active3, 0x1800000000001000L, active4, 0x80200020000L, active5, 0x80000000L, active6, 0L, active7, 0x80000004000L, active8, 0x700000040000000L, active9, 0xe001f0b000000000L, active10, 0x20000000000L, active11, 0x10000000L); + return jjMoveStringLiteralDfa7_4(active0, 0x40000000400000L, active1, 0xf800000000L, active2, 0x8000000004000000L, active3, 0x8000000000010000L, active4, 0x1004000200001L, active5, 0x1000000000L, active6, 0L, active7, 0x12000000100000L, active8, 0x8000000000L, active9, 0x3e160000000000eL, active10, 0x80000000001c0L, active11, 0x4000000000L); case 66: case 98: - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0x400000000L, active3, 0L, active4, 0xc0000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0x4000000000L, active3, 0L, active4, 0xc00000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000000000000L, active11, 0L); case 67: case 99: - if ((active2 & 0x2000000000000L) != 0L) + if ((active2 & 0x20000000000000L) != 0L) { - jjmatchedKind = 177; + jjmatchedKind = 181; jjmatchedPos = 6; } - else if ((active5 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 370, 76); - return jjMoveStringLiteralDfa7_4(active0, 0x800000L, active1, 0x8000L, active2, 0xc060000008000L, active3, 0x8800000000000L, active4, 0x800L, active5, 0x40000000L, active6, 0L, active7, 0x4000100080000L, active8, 0x200000001L, active9, 0x780000000000000L, active10, 0L, active11, 0L); + else if ((active5 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 375, 76); + return jjMoveStringLiteralDfa7_4(active0, 0x800000L, active1, 0x8000L, active2, 0xc0600000080000L, active3, 0x88000000000000L, active4, 0x2000008000L, active5, 0x800000000L, active6, 0L, active7, 0x800004002000000L, active8, 0x40000000200L, active9, 0L, active10, 0xfL, active11, 0L); case 68: case 100: - if ((active2 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(6, 153, 76); - else if ((active2 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(6, 160, 76); - else if ((active3 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(6, 237, 76); - else if ((active4 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 319, 76); - else if ((active10 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(6, 661, 76); - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x6000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0x800000002000L, active11, 0L); + if ((active2 & 0x20000000L) != 0L) + return jjStartNfaWithStates_4(6, 157, 76); + else if ((active2 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_4(6, 164, 76); + else if ((active3 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 241, 76); + else if ((active5 & 0x10L) != 0L) + return jjStartNfaWithStates_4(6, 324, 76); + else if ((active10 & 0x80000000L) != 0L) + return jjStartNfaWithStates_4(6, 671, 76); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x6000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000L, active7, 0L, active8, 0L, active9, 0x1000000000L, active10, 0x200000000800000L, active11, 0L); case 69: case 101: if ((active0 & 0x80000000000000L) != 0L) @@ -23575,39 +23710,39 @@ else if ((active10 & 0x200000L) != 0L) } else if ((active1 & 0x20000L) != 0L) return jjStartNfaWithStates_4(6, 81, 76); - else if ((active2 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(6, 147, 76); - else if ((active3 & 0x10L) != 0L) - return jjStartNfaWithStates_4(6, 196, 76); - else if ((active3 & 0x80L) != 0L) - return jjStartNfaWithStates_4(6, 199, 76); - else if ((active4 & 0x1L) != 0L) - return jjStartNfaWithStates_4(6, 256, 76); - else if ((active6 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(6, 419, 76); - else if ((active6 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(6, 431, 76); - else if ((active7 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(6, 461, 76); - else if ((active7 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(6, 463, 76); - else if ((active7 & 0x400000000L) != 0L) + else if ((active2 & 0x800000L) != 0L) + return jjStartNfaWithStates_4(6, 151, 76); + else if ((active3 & 0x100L) != 0L) + return jjStartNfaWithStates_4(6, 200, 76); + else if ((active3 & 0x800L) != 0L) + return jjStartNfaWithStates_4(6, 203, 76); + else if ((active4 & 0x10L) != 0L) + return jjStartNfaWithStates_4(6, 260, 76); + else if ((active6 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_4(6, 425, 76); + else if ((active6 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 437, 76); + else if ((active7 & 0x80000L) != 0L) + return jjStartNfaWithStates_4(6, 467, 76); + else if ((active7 & 0x200000L) != 0L) + return jjStartNfaWithStates_4(6, 469, 76); + else if ((active7 & 0x10000000000L) != 0L) { - jjmatchedKind = 482; + jjmatchedKind = 488; jjmatchedPos = 6; } - else if ((active10 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(6, 652, 76); - else if ((active11 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(6, 725, 76); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(6, 726, 76); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(6, 731, 76); - return jjMoveStringLiteralDfa7_4(active0, 0x100000000000000L, active1, 0x4L, active2, 0x400000000800000L, active3, 0x2000000010000000L, active4, 0x10000000018004L, active5, 0x10000004103720L, active6, 0x10100000000000L, active7, 0x3803c00000L, active8, 0x400000L, active9, 0x2000L, active10, 0x80000f0000000L, active11, 0x2200L); + else if ((active10 & 0x400000L) != 0L) + return jjStartNfaWithStates_4(6, 662, 76); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_4(6, 735, 76); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_4(6, 736, 76); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_4(6, 741, 76); + return jjMoveStringLiteralDfa7_4(active0, 0x100000000000000L, active1, 0x4L, active2, 0x4000000008030000L, active3, 0x100000000L, active4, 0x200000000180042L, active5, 0x20000008206e400L, active6, 0x404000000000000L, active7, 0xe00f0000000L, active8, 0x80000000L, active9, 0x400000L, active10, 0x200003c000000000L, active11, 0x880000L); case 70: case 102: - return jjMoveStringLiteralDfa7_4(active0, 0x8000000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_4(active0, 0x8000000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x800000000000000L) != 0L) @@ -23617,135 +23752,140 @@ else if ((active11 & 0x8000000L) != 0L) } else if ((active0 & 0x4000000000000000L) != 0L) return jjStartNfaWithStates_4(6, 62, 76); - else if ((active4 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(6, 302, 76); - else if ((active5 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(6, 355, 76); - else if ((active6 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(6, 408, 76); - else if ((active6 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(6, 421, 76); - else if ((active7 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(6, 490, 76); - else if ((active10 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(6, 683, 76); - else if ((active11 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(6, 719, 76); - return jjMoveStringLiteralDfa7_4(active0, 0x1000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0x80L); + else if ((active4 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 307, 76); + else if ((active5 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_4(6, 360, 76); + else if ((active6 & 0x40000000L) != 0L) + return jjStartNfaWithStates_4(6, 414, 76); + else if ((active6 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_4(6, 427, 76); + else if ((active7 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 496, 76); + else if ((active10 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 693, 76); + else if ((active11 & 0x2000000L) != 0L) + return jjStartNfaWithStates_4(6, 729, 76); + return jjMoveStringLiteralDfa7_4(active0, 0x1000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0x20000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) return jjStartNfaWithStates_4(6, 49, 76); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(6, 730, 76); - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_4(6, 740, 76); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_4(active0, 0x810000000L, active1, 0x100000e03c0000L, active2, 0x2000001000L, active3, 0x400028L, active4, 0x300000000800202L, active5, 0x30000000000L, active6, 0x8000600000400000L, active7, 0x4000100004000000L, active8, 0xc0000000001c0002L, active9, 0x400060000ffL, active10, 0xc000L, active11, 0x10020L); + return jjMoveStringLiteralDfa7_4(active0, 0x810000000L, active1, 0x200000e03c0000L, active2, 0x20000000100L, active3, 0x4000280L, active4, 0x6000000008002020L, active5, 0x600000000000L, active6, 0x18000010000000L, active7, 0x20000100000020L, active8, 0x38000480L, active9, 0x8000c0001ff80L, active10, 0x3000000L, active11, 0x4008000L); case 76: case 108: - if ((active2 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(6, 146, 76); - else if ((active3 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(6, 229, 76); - else if ((active4 & 0x10L) != 0L) + if ((active2 & 0x400000L) != 0L) + return jjStartNfaWithStates_4(6, 150, 76); + else if ((active3 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_4(6, 233, 76); + else if ((active4 & 0x100L) != 0L) { - jjmatchedKind = 260; + jjmatchedKind = 264; jjmatchedPos = 6; } - else if ((active4 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(6, 300, 76); - else if ((active5 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(6, 352, 76); - else if ((active6 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(6, 405, 76); - return jjMoveStringLiteralDfa7_4(active0, 0x20000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20L, active5, 0x20480000000000L, active6, 0x10L, active7, 0x100L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active4 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 305, 76); + else if ((active5 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_4(6, 357, 76); + else if ((active6 & 0x200L) != 0L) + { + jjmatchedKind = 393; + jjmatchedPos = 6; + } + else if ((active6 & 0x8000000L) != 0L) + return jjStartNfaWithStates_4(6, 411, 76); + return jjMoveStringLiteralDfa7_4(active0, 0x20000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200L, active5, 0x409000000000000L, active6, 0x400L, active7, 0x4000L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa7_4(active0, 0x21000000L, active1, 0L, active2, 0xf00L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x10000000000L, active8, 0x1880000000000000L, active9, 0L, active10, 0x10000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_4(active0, 0x21000000L, active1, 0L, active2, 0x7c00L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0L, active7, 0x400000000000L, active8, 0L, active9, 0x31L, active10, 0x4000000000000L, active11, 0L); case 78: case 110: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_4(6, 42, 76); else if ((active0 & 0x800000000000L) != 0L) return jjStartNfaWithStates_4(6, 47, 76); - else if ((active3 & 0x400L) != 0L) - return jjStartNfaWithStates_4(6, 202, 76); - else if ((active3 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(6, 217, 76); - else if ((active3 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(6, 218, 76); - else if ((active6 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(6, 412, 76); - else if ((active6 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(6, 424, 76); - else if ((active7 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 505, 76); - else if ((active8 & 0x10L) != 0L) + else if ((active3 & 0x4000L) != 0L) + return jjStartNfaWithStates_4(6, 206, 76); + else if ((active3 & 0x20000000L) != 0L) + return jjStartNfaWithStates_4(6, 221, 76); + else if ((active3 & 0x40000000L) != 0L) + return jjStartNfaWithStates_4(6, 222, 76); + else if ((active6 & 0x400000000L) != 0L) + return jjStartNfaWithStates_4(6, 418, 76); + else if ((active6 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_4(6, 430, 76); + else if ((active8 & 0x4L) != 0L) + return jjStartNfaWithStates_4(6, 514, 76); + else if ((active8 & 0x2000L) != 0L) { - jjmatchedKind = 516; + jjmatchedKind = 525; jjmatchedPos = 6; } - else if ((active10 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(6, 659, 76); - else if ((active10 & 0x100000000000L) != 0L) + else if ((active10 & 0x20000000L) != 0L) + return jjStartNfaWithStates_4(6, 669, 76); + else if ((active10 & 0x40000000000000L) != 0L) { - jjmatchedKind = 684; + jjmatchedKind = 694; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x20000000000L, active2, 0x100010000000000L, active3, 0x1000000000000L, active4, 0L, active5, 0x4002L, active6, 0x8L, active7, 0x8000000000046L, active8, 0x201c000005004020L, active9, 0x46000800000000L, active10, 0x200000000000L, active11, 0x100L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x60000000000L, active2, 0x1000100000000000L, active3, 0x10000000000000L, active4, 0L, active5, 0x80040L, active6, 0x100L, active7, 0x1000000000001180L, active8, 0x3800000a00804000L, active9, 0x8c00100000000040L, active10, 0x80000000000000L, active11, 0x40000L); case 79: case 111: - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x1000L, active2, 0x8000000000L, active3, 0x400000000L, active4, 0L, active5, 0L, active6, 0x60000000000L, active7, 0x20L, active8, 0x8b0000000L, active9, 0x1800000000000000L, active10, 0x4000000000L, active11, 0L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x1000L, active2, 0x80000000000L, active3, 0x4000000000L, active4, 0L, active5, 0L, active6, 0x1800000000000L, active7, 0x800L, active8, 0x116000000000L, active9, 0L, active10, 0x1000000000030L, active11, 0L); case 80: case 112: - if ((active10 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(6, 679, 76); - return jjMoveStringLiteralDfa7_4(active0, 0x10000000000L, active1, 0xa00000000000L, active2, 0x1800000000L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0x400L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active10 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 689, 76); + return jjMoveStringLiteralDfa7_4(active0, 0x10000000000L, active1, 0x1400000000000L, active2, 0x18000000000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x10000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(6, 154, 76); - else if ((active4 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(6, 270, 76); - else if ((active4 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(6, 275, 76); - else if ((active4 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(6, 278, 76); - else if ((active4 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 314, 76); - else if ((active6 & 0x100000000000000L) != 0L) + if ((active2 & 0x40000000L) != 0L) + return jjStartNfaWithStates_4(6, 158, 76); + else if ((active4 & 0x40000L) != 0L) + return jjStartNfaWithStates_4(6, 274, 76); + else if ((active4 & 0x800000L) != 0L) + return jjStartNfaWithStates_4(6, 279, 76); + else if ((active4 & 0x4000000L) != 0L) + return jjStartNfaWithStates_4(6, 282, 76); + else if ((active4 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 319, 76); + else if ((active6 & 0x4000000000000000L) != 0L) { - jjmatchedKind = 440; + jjmatchedKind = 446; jjmatchedPos = 6; } - else if ((active8 & 0x400L) != 0L) - return jjStartNfaWithStates_4(6, 522, 76); - else if ((active10 & 0x2L) != 0L) + else if ((active8 & 0x80000L) != 0L) + return jjStartNfaWithStates_4(6, 531, 76); + else if ((active10 & 0x400L) != 0L) { - jjmatchedKind = 641; + jjmatchedKind = 650; jjmatchedPos = 6; } - else if ((active10 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(6, 682, 76); - else if ((active10 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 699, 76); - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0x1000000020000080L, active3, 0x8020000000L, active4, 0x18000000L, active5, 0x4L, active6, 0x200000002000000L, active7, 0L, active8, 0L, active9, 0x80040000300L, active10, 0x5cL, active11, 0x20000L); + else if ((active10 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 692, 76); + else if ((active11 & 0x20L) != 0L) + return jjStartNfaWithStates_4(6, 709, 76); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0x200000200L, active3, 0x80200000001L, active4, 0x180000000L, active5, 0x80L, active6, 0x8000000080000000L, active7, 0x8000000000000L, active8, 0L, active9, 0x10008000060000L, active10, 0xb800L, active11, 0x8000000L); case 83: case 115: - if ((active5 & 0x1L) != 0L) - return jjStartNfaWithStates_4(6, 320, 76); - else if ((active5 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(6, 337, 76); - else if ((active6 & 0x1L) != 0L) - return jjStartNfaWithStates_4(6, 384, 76); - else if ((active7 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(6, 475, 76); - else if ((active7 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 504, 76); - else if ((active11 & 0x8L) != 0L) - return jjStartNfaWithStates_4(6, 707, 76); - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x200000L, active10, 0L, active11, 0x40L); + if ((active5 & 0x20L) != 0L) + return jjStartNfaWithStates_4(6, 325, 76); + else if ((active5 & 0x400000L) != 0L) + return jjStartNfaWithStates_4(6, 342, 76); + else if ((active6 & 0x20L) != 0L) + return jjStartNfaWithStates_4(6, 389, 76); + else if ((active7 & 0x200000000L) != 0L) + return jjStartNfaWithStates_4(6, 481, 76); + else if ((active8 & 0x2L) != 0L) + return jjStartNfaWithStates_4(6, 513, 76); + else if ((active11 & 0x2000L) != 0L) + return jjStartNfaWithStates_4(6, 717, 76); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x2000000000000L, active2, 0x40000000040L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000000L, active8, 0L, active9, 0x40000000L, active10, 0x40000L, active11, 0x10000L); case 84: case 116: if ((active1 & 0x400000L) != 0L) @@ -23755,64 +23895,64 @@ else if ((active1 & 0x100000000L) != 0L) jjmatchedKind = 96; jjmatchedPos = 6; } - else if ((active1 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(6, 107, 76); - else if ((active1 & 0x20000000000000L) != 0L) + else if ((active1 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_4(6, 108, 76); + else if ((active1 & 0x40000000000000L) != 0L) { - jjmatchedKind = 117; + jjmatchedKind = 118; jjmatchedPos = 6; } - else if ((active2 & 0x100000L) != 0L) + else if ((active2 & 0x1000000L) != 0L) { - jjmatchedKind = 148; + jjmatchedKind = 152; jjmatchedPos = 6; } - else if ((active2 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 181, 76); - else if ((active3 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(6, 205, 76); - else if ((active6 & 0x40000000L) != 0L) + else if ((active2 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 185, 76); + else if ((active3 & 0x20000L) != 0L) + return jjStartNfaWithStates_4(6, 209, 76); + else if ((active6 & 0x1000000000L) != 0L) { - jjmatchedKind = 414; + jjmatchedKind = 420; jjmatchedPos = 6; } - else if ((active7 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(6, 465, 76); - else if ((active7 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(6, 466, 76); - else if ((active8 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(6, 539, 76); - else if ((active9 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 627, 76); - else if ((active10 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(6, 660, 76); - else if ((active10 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 697, 76); - return jjMoveStringLiteralDfa7_4(active0, 0x48002040L, active1, 0xffc00006100003f8L, active2, 0x200001L, active3, 0x100004000000000L, active4, 0x1008L, active5, 0L, active6, 0x3801fc000L, active7, 0x8400000000000000L, active8, 0x3fff100800000L, active9, 0x1400000L, active10, 0x100L, active11, 0x2000c14L); + else if ((active7 & 0x800000L) != 0L) + return jjStartNfaWithStates_4(6, 471, 76); + else if ((active7 & 0x1000000L) != 0L) + return jjStartNfaWithStates_4(6, 472, 76); + else if ((active8 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_4(6, 548, 76); + else if ((active9 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 636, 76); + else if ((active10 & 0x40000000L) != 0L) + return jjStartNfaWithStates_4(6, 670, 76); + else if ((active11 & 0x8L) != 0L) + return jjStartNfaWithStates_4(6, 707, 76); + return jjMoveStringLiteralDfa7_4(active0, 0x48002040L, active1, 0xff800006100003f8L, active2, 0x2000003L, active3, 0x1000040000000000L, active4, 0x10080L, active5, 0L, active6, 0xe007f00000L, active7, 0L, active8, 0x7ffe20100000108L, active9, 0x280000000L, active10, 0x20000L, active11, 0x800305000L); case 85: case 117: - return jjMoveStringLiteralDfa7_4(active0, 0x600000000L, active1, 0x50000000000L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0x40010L, active6, 0x20000000000000L, active7, 0x8000000000L, active8, 0x400000000L, active9, 0x80000L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa7_4(active0, 0x600000000L, active1, 0x90000000000L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0x800200L, active6, 0x800000000000000L, active7, 0x200000000000L, active8, 0x80000000000L, active9, 0x10000000L, active10, 0L, active11, 0x40000000L); case 86: case 118: - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0x1018L, active8, 0L, active9, 0x20000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0x40000000000000L, active7, 0x40600L, active8, 0L, active9, 0x4000000000000000L, active10, 0L, active11, 0L); case 88: case 120: - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0x600L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0x18000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_4(6, 63, 76); - else if ((active4 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 306, 76); - else if ((active6 & 0x800L) != 0L) - return jjStartNfaWithStates_4(6, 395, 76); - else if ((active6 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 434, 76); - else if ((active6 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_4(6, 439, 76); - else if ((active10 & 0x200L) != 0L) - return jjStartNfaWithStates_4(6, 649, 76); - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + else if ((active4 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 311, 76); + else if ((active6 & 0x20000L) != 0L) + return jjStartNfaWithStates_4(6, 401, 76); + else if ((active6 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 440, 76); + else if ((active6 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_4(6, 445, 76); + else if ((active10 & 0x80000L) != 0L) + return jjStartNfaWithStates_4(6, 659, 76); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; } @@ -23830,36 +23970,36 @@ private final int jjMoveStringLiteralDfa7_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa8_4(active0, 0x1000000000000000L, active1, 0xffc0000006000000L, active2, 0xc000000000001L, active3, 0L, active4, 0L, active5, 0x700L, active6, 0x200000000L, active7, 0x3800000000L, active8, 0xc000000000000020L, active9, 0xffL, active10, 0x1cL, active11, 0L); + return jjMoveStringLiteralDfa8_4(active0, 0x1000000000000000L, active1, 0xff80000006000000L, active2, 0xc0000000000003L, active3, 0L, active4, 0L, active5, 0xe000L, active6, 0x8000000000L, active7, 0xe0000000000L, active8, 0x4000L, active9, 0x1ff80L, active10, 0x3800L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_4(active0, 0x10001000000L, active1, 0x1000000000000L, active2, 0x20008000L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000L, active8, 0x20000804000000L, active9, 0x800040000L, active10, 0x800000000000L, active11, 0x100L); + return jjMoveStringLiteralDfa8_4(active0, 0x10001000000L, active1, 0x2000000000000L, active2, 0x2000a0000L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1800000000000000L, active8, 0x4000100800000000L, active9, 0x100008000000L, active10, 0x200000000000000L, active11, 0x40000L); case 66: case 98: - if ((active8 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(7, 540, 76); - else if ((active8 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(7, 543, 76); - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0x400000L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0L, active7, 0x10000004000L, active8, 0x400000000L, active9, 0x100L, active10, 0L, active11, 0L); + if ((active8 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_4(7, 549, 76); + else if ((active8 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_4(7, 552, 76); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0x4000000L, active3, 0L, active4, 0x20000000000L, active5, 0L, active6, 0L, active7, 0x400000100000L, active8, 0x80000000000L, active9, 0x20000L, active10, 0L, active11, 0L); case 67: case 99: - if ((active2 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 186, 80); - else if ((active8 & 0x40000L) != 0L) + if ((active2 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 190, 80); + else if ((active8 & 0x8000000L) != 0L) { - jjmatchedKind = 530; + jjmatchedKind = 539; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x10000000000L, active2, 0L, active3, 0x10000000L, active4, 0x18000L, active5, 0x3000L, active6, 0L, active7, 0x10000000000006L, active8, 0x180000L, active9, 0x200L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x10000000000L, active2, 0L, active3, 0x100000000L, active4, 0x180000L, active5, 0x60000L, active6, 0L, active7, 0x2000000000000180L, active8, 0x30000000L, active9, 0x40000L, active10, 0L, active11, 0L); case 68: case 100: if ((active0 & 0x100000000000000L) != 0L) return jjStartNfaWithStates_4(7, 56, 76); - else if ((active2 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(7, 151, 76); - else if ((active11 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(7, 721, 76); - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3c00000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + else if ((active2 & 0x8000000L) != 0L) + return jjStartNfaWithStates_4(7, 155, 76); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_4(7, 731, 76); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000f0000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x40L) != 0L) @@ -23868,188 +24008,193 @@ else if ((active0 & 0x2000L) != 0L) return jjStartNfaWithStates_4(7, 13, 76); else if ((active1 & 0x8000L) != 0L) return jjStartNfaWithStates_4(7, 79, 76); - else if ((active1 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(7, 106, 76); - else if ((active2 & 0x20L) != 0L) - return jjStartNfaWithStates_4(7, 133, 76); - else if ((active2 & 0x100L) != 0L) + else if ((active1 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_4(7, 107, 76); + else if ((active2 & 0x40L) != 0L) + return jjStartNfaWithStates_4(7, 134, 76); + else if ((active2 & 0x400L) != 0L) { - jjmatchedKind = 136; + jjmatchedKind = 138; jjmatchedPos = 7; } - else if ((active2 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(7, 162, 76); - else if ((active4 & 0x800L) != 0L) - return jjStartNfaWithStates_4(7, 267, 76); - else if ((active4 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(7, 293, 76); - else if ((active4 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(7, 296, 76); - else if ((active5 & 0x10L) != 0L) - return jjStartNfaWithStates_4(7, 324, 76); - else if ((active5 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(7, 338, 76); - else if ((active5 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(7, 366, 76); - else if ((active6 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 432, 76); - else if ((active7 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(7, 460, 76); - else if ((active8 & 0x1L) != 0L) - return jjStartNfaWithStates_4(7, 512, 76); - else if ((active8 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(7, 535, 76); + else if ((active2 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_4(7, 166, 76); + else if ((active4 & 0x8000L) != 0L) + return jjStartNfaWithStates_4(7, 271, 76); + else if ((active4 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_4(7, 298, 76); + else if ((active4 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_4(7, 301, 76); + else if ((active5 & 0x200L) != 0L) + return jjStartNfaWithStates_4(7, 329, 76); + else if ((active5 & 0x800000L) != 0L) + return jjStartNfaWithStates_4(7, 343, 76); + else if ((active5 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 371, 76); + else if ((active6 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 438, 76); + else if ((active7 & 0x40000L) != 0L) + return jjStartNfaWithStates_4(7, 466, 76); + else if ((active8 & 0x200L) != 0L) + return jjStartNfaWithStates_4(7, 521, 76); else if ((active8 & 0x100000000L) != 0L) return jjStartNfaWithStates_4(7, 544, 76); - else if ((active8 & 0x800000000000000L) != 0L) + else if ((active8 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_4(7, 553, 76); + else if ((active9 & 0x10L) != 0L) { - jjmatchedKind = 571; + jjmatchedKind = 580; jjmatchedPos = 7; } - else if ((active10 & 0x100L) != 0L) - return jjStartNfaWithStates_4(7, 648, 76); - else if ((active11 & 0x4L) != 0L) - return jjStartNfaWithStates_4(7, 706, 76); - return jjMoveStringLiteralDfa8_4(active0, 0x20000000L, active1, 0x100003f8L, active2, 0x10000000e00L, active3, 0x4000000000L, active4, 0x100000000L, active5, 0x20000000000004L, active6, 0x1fc000L, active7, 0L, active8, 0x1083fff000000000L, active9, 0x26000000000000L, active10, 0x2000L, active11, 0x800L); + else if ((active10 & 0x20000L) != 0L) + return jjStartNfaWithStates_4(7, 657, 76); + else if ((active11 & 0x1000L) != 0L) + return jjStartNfaWithStates_4(7, 716, 76); + return jjMoveStringLiteralDfa8_4(active0, 0x20000000L, active1, 0x100003f8L, active2, 0x100000017800L, active3, 0x40000000000L, active4, 0x1000000000L, active5, 0x400000000000080L, active6, 0x7f00000L, active7, 0L, active8, 0x7ffe00000000000L, active9, 0x4c00000000000021L, active10, 0x800000L, active11, 0x200000L); case 70: case 102: - if ((active10 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(7, 678, 76); - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0x1000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000000L, active10, 0xf0000000L, active11, 0L); + if ((active10 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 688, 76); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0x100L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0L, active9, 0x8000000000000L, active10, 0x3c000000000L, active11, 0L); case 71: case 103: - if ((active2 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 184, 76); - else if ((active3 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 240, 76); - else if ((active6 & 0x8L) != 0L) - return jjStartNfaWithStates_4(7, 387, 76); - else if ((active9 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 630, 76); - return jjMoveStringLiteralDfa8_4(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000000000L, active5, 0L, active6, 0x10000000000000L, active7, 0x18L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0x200L); + if ((active2 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 188, 76); + else if ((active3 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 244, 76); + else if ((active6 & 0x100L) != 0L) + return jjStartNfaWithStates_4(7, 392, 76); + else if ((active9 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 639, 76); + return jjMoveStringLiteralDfa8_4(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0x400000000000000L, active7, 0x600L, active8, 0x3800000000000000L, active9, 0L, active10, 0L, active11, 0x80000L); case 72: case 104: - if ((active2 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(7, 169, 76); - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x8000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_4(7, 173, 76); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x80000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_4(active0, 0x8000000L, active1, 0xfe00000800L, active2, 0L, active3, 0L, active4, 0x20001000L, active5, 0x4000L, active6, 0x180001010L, active7, 0L, active8, 0x203000000L, active9, 0x40400000L, active10, 0x200000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa8_4(active0, 0x8000000L, active1, 0xfe00000800L, active2, 0L, active3, 0L, active4, 0x200010000L, active5, 0x80000L, active6, 0x6000040400L, active7, 0L, active8, 0x40600000000L, active9, 0x8080000000L, active10, 0x80000000000000L, active11, 0x800000000L); case 74: case 106: - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0xc0000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0xc00000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 75: case 107: - if ((active7 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(7, 480, 76); + if ((active7 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_4(7, 486, 76); break; case 76: case 108: - if ((active3 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(7, 204, 76); - else if ((active4 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(7, 273, 76); - else if ((active5 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(7, 351, 76); - else if ((active8 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 569, 76); - else if ((active11 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(7, 717, 76); - return jjMoveStringLiteralDfa8_4(active0, 0x40020000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80200000020L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000020000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active3 & 0x10000L) != 0L) + return jjStartNfaWithStates_4(7, 208, 76); + else if ((active4 & 0x200000L) != 0L) + return jjStartNfaWithStates_4(7, 277, 76); + else if ((active5 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_4(7, 356, 76); + else if ((active9 & 0x4L) != 0L) + return jjStartNfaWithStates_4(7, 578, 76); + else if ((active11 & 0x800000L) != 0L) + return jjStartNfaWithStates_4(7, 727, 76); + return jjMoveStringLiteralDfa8_4(active0, 0x40020000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1004000000200L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000L, active9, 0x8L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0x800000000000000L, active3, 0L, active4, 0x300000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0L, active4, 0x6000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3e0200000000000L, active10, 0L, active11, 0L); case 78: case 110: - if ((active3 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(7, 226, 76); - else if ((active6 & 0x20000000000L) != 0L) + if ((active3 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_4(7, 230, 76); + else if ((active6 & 0x800000000000L) != 0L) { - jjmatchedKind = 425; + jjmatchedKind = 431; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x1000004L, active2, 0x2000000004L, active3, 0x2000000000400020L, active4, 0x6L, active5, 0x10000000000000L, active6, 0x240000000000L, active7, 0x1108004000000L, active8, 0x8L, active9, 0x6002000L, active10, 0L, active11, 0x10010000L); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x1000004L, active2, 0x20000000008L, active3, 0x4000200L, active4, 0x62L, active5, 0x200000000000000L, active6, 0x9000000000000L, active7, 0x220200100000000L, active8, 0x1000L, active9, 0xc00400000L, active10, 0L, active11, 0x4004000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_4(active0, 0x10800000L, active1, 0xa000e03c0000L, active2, 0L, active3, 0x800020000008L, active4, 0x800008L, active5, 0x40000000L, active6, 0x400002400000L, active7, 0x8000000000000100L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa8_4(active0, 0x10800000L, active1, 0x14000e03c0000L, active2, 0L, active3, 0x8000200000080L, active4, 0x2008000080L, active5, 0x800000000L, active6, 0x10000090000000L, active7, 0x4000L, active8, 0x8000000000000100L, active9, 0L, active10, 0L, active11, 0x40000000L); case 80: case 112: - if ((active10 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(7, 680, 76); - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000L, active9, 0x8000L, active10, 0L, active11, 0L); + if ((active10 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 690, 76); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0x1000000L, active10, 0L, active11, 0L); case 82: case 114: - if ((active8 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(7, 542, 76); - else if ((active10 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 691, 76); - return jjMoveStringLiteralDfa8_4(active0, 0x8040000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0x18000000L, active5, 0L, active6, 0x20000000000000L, active7, 0L, active8, 0x100000000000000L, active9, 0x1800002000080000L, active10, 0x20000000040L, active11, 0x80L); + if ((active8 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_4(7, 551, 76); + else if ((active10 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 701, 76); + return jjMoveStringLiteralDfa8_4(active0, 0x8040000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0x180000000L, active5, 0L, active6, 0x800000000000000L, active7, 0L, active8, 0L, active9, 0x400010000002L, active10, 0x8000000008030L, active11, 0x20000L); case 83: case 115: if ((active1 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(7, 105, 76); - else if ((active2 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(7, 149, 76); - else if ((active5 & 0x20L) != 0L) - return jjStartNfaWithStates_4(7, 325, 76); - else if ((active5 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(7, 340, 76); - else if ((active6 & 0x400L) != 0L) - return jjStartNfaWithStates_4(7, 394, 76); - else if ((active6 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(7, 428, 76); - else if ((active6 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 441, 76); - else if ((active9 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(7, 603, 76); - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x10000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x210000L, active10, 0L, active11, 0x4000L); + { + jjmatchedKind = 105; + jjmatchedPos = 7; + } + else if ((active2 & 0x2000000L) != 0L) + return jjStartNfaWithStates_4(7, 153, 76); + else if ((active5 & 0x400L) != 0L) + return jjStartNfaWithStates_4(7, 330, 76); + else if ((active5 & 0x2000000L) != 0L) + return jjStartNfaWithStates_4(7, 345, 76); + else if ((active6 & 0x10000L) != 0L) + return jjStartNfaWithStates_4(7, 400, 76); + else if ((active6 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 434, 76); + else if ((active6 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 447, 76); + else if ((active9 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_4(7, 612, 76); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x20040000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x42000000L, active10, 0L, active11, 0x1000000L); case 84: case 116: - if ((active2 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(7, 170, 76); - else if ((active5 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(7, 346, 76); - else if ((active7 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(7, 467, 76); - else if ((active8 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(7, 526, 76); - return jjMoveStringLiteralDfa8_4(active0, 0x600000000L, active1, 0L, active2, 0x1000005800000000L, active3, 0x1800000000000000L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0xe780000100000000L, active10, 0xc000L, active11, 0x20L); + if ((active2 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_4(7, 174, 76); + else if ((active5 & 0x80000000L) != 0L) + return jjStartNfaWithStates_4(7, 351, 76); + else if ((active7 & 0x2000000L) != 0L) + return jjStartNfaWithStates_4(7, 473, 76); + else if ((active8 & 0x800000L) != 0L) + return jjStartNfaWithStates_4(7, 535, 76); + else if ((active10 & 0x40000L) != 0L) + return jjStartNfaWithStates_4(7, 658, 76); + return jjMoveStringLiteralDfa8_4(active0, 0x600000000L, active1, 0L, active2, 0x58000000000L, active3, 0x8000000000000001L, active4, 0x2001L, active5, 0L, active6, 0L, active7, 0x1000L, active8, 0L, active9, 0x20000000000L, active10, 0x30001cfL, active11, 0x8000L); case 85: case 117: - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0x80000000002L, active6, 0L, active7, 0x20L, active8, 0L, active9, 0x80201000000L, active10, 0x20000000000000L, active11, 0L); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0x1000000000040L, active6, 0L, active7, 0x800L, active8, 0L, active9, 0x10040200000000L, active10, 0x8000000000000000L, active11, 0L); case 86: case 118: - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000000000000000L, active7, 0x4000000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20L, active8, 0x80L, active9, 0L, active10, 0L, active11, 0L); case 87: case 119: - if ((active2 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(7, 167, 76); + if ((active2 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_4(7, 171, 76); break; case 88: case 120: - if ((active7 & 0x200L) != 0L) - return jjStartNfaWithStates_4(7, 457, 76); + if ((active7 & 0x8000L) != 0L) + return jjStartNfaWithStates_4(7, 463, 76); break; case 89: case 121: - if ((active3 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(7, 231, 76); - else if ((active3 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 248, 76); - else if ((active7 & 0x400L) != 0L) - return jjStartNfaWithStates_4(7, 458, 76); - else if ((active7 & 0x800L) != 0L) - return jjStartNfaWithStates_4(7, 459, 76); - else if ((active7 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(7, 491, 76); - else if ((active7 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(7, 506, 76); - else if ((active9 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(7, 615, 76); - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000000000L, active9, 0L, active10, 0L, active11, 0x450L); + if ((active3 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_4(7, 235, 76); + else if ((active3 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 252, 76); + else if ((active7 & 0x10000L) != 0L) + return jjStartNfaWithStates_4(7, 464, 76); + else if ((active7 & 0x20000L) != 0L) + return jjStartNfaWithStates_4(7, 465, 76); + else if ((active7 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 500, 76); + else if ((active8 & 0x8L) != 0L) + return jjStartNfaWithStates_4(7, 515, 76); + else if ((active9 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_4(7, 624, 76); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40L, active10, 0L, active11, 0x114000L); case 90: case 122: - return jjMoveStringLiteralDfa8_4(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x30000000000L, active6, 0L, active7, 0L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa8_4(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x600000000000L, active6, 0L, active7, 0L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); default : break; } @@ -24067,31 +24212,31 @@ private final int jjMoveStringLiteralDfa8_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0xe00L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000000000L, active7, 0x3c00000L, active8, 0x80000L, active9, 0x6000000200000L, active10, 0L, active11, 0x10L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x40000000000L, active2, 0x7800L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0xf0000000L, active8, 0x10000000L, active9, 0xc00000040000000L, active10, 0L, active11, 0x4000L); case 65: case 97: - return jjMoveStringLiteralDfa9_4(active0, 0x8800000000L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0x18001000L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0xaL, active9, 0x10000L, active10, 0x40L, active11, 0L); + return jjMoveStringLiteralDfa9_4(active0, 0x8800000000L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0x180010000L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1400L, active9, 0x2000000L, active10, 0x8000L, active11, 0L); case 66: case 98: - if ((active8 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 566, 76); + if ((active8 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 575, 76); break; case 67: case 99: - if ((active9 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(8, 606, 76); - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x40000000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x10000000000004L, active6, 0L, active7, 0x800000000L, active8, 0x100000000000000L, active9, 0L, active10, 0x20000000000004L, active11, 0x2000000L); + if ((active9 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_4(8, 615, 76); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x80000000000000L, active2, 0x100000000000L, active3, 0L, active4, 0L, active5, 0x200000000000080L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0x2L, active10, 0x8000000000000800L, active11, 0x800000000L); case 68: case 100: if ((active1 & 0x10000000L) != 0L) return jjStartNfaWithStates_4(8, 92, 76); - else if ((active3 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(8, 230, 76); - else if ((active10 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(8, 653, 76); - else if ((active11 & 0x800L) != 0L) - return jjStartNfaWithStates_4(8, 715, 76); - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x180000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active3 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_4(8, 234, 76); + else if ((active10 & 0x800000L) != 0L) + return jjStartNfaWithStates_4(8, 663, 76); + else if ((active11 & 0x200000L) != 0L) + return jjStartNfaWithStates_4(8, 725, 76); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x300000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x200000000L) != 0L) @@ -24099,87 +24244,92 @@ else if ((active11 & 0x800L) != 0L) jjmatchedKind = 33; jjmatchedPos = 8; } - else if ((active2 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 187, 76); - else if ((active3 & 0x800000000000000L) != 0L) + else if ((active2 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 191, 76); + else if ((active3 & 0x8000000000000000L) != 0L) { - jjmatchedKind = 251; + jjmatchedKind = 255; jjmatchedPos = 8; } - else if ((active4 & 0x100000000000000L) != 0L) + else if ((active4 & 0x2000000000000000L) != 0L) { - jjmatchedKind = 312; + jjmatchedKind = 317; jjmatchedPos = 8; } - else if ((active5 & 0x10000000000L) != 0L) + else if ((active5 & 0x200000000000L) != 0L) { - jjmatchedKind = 360; + jjmatchedKind = 365; jjmatchedPos = 8; } - else if ((active5 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(8, 363, 76); - else if ((active6 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 437, 76); - else if ((active6 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 447, 76); - else if ((active7 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 510, 76); - else if ((active9 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(8, 595, 76); - else if ((active9 & 0x2000000000000000L) != 0L) + else if ((active5 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 368, 76); + else if ((active6 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 443, 76); + else if ((active7 & 0x20L) != 0L) + return jjStartNfaWithStates_4(8, 453, 76); + else if ((active8 & 0x80L) != 0L) + return jjStartNfaWithStates_4(8, 519, 76); + else if ((active9 & 0x10000000L) != 0L) + return jjStartNfaWithStates_4(8, 604, 76); + else if ((active10 & 0x40L) != 0L) { - jjmatchedKind = 637; + jjmatchedKind = 646; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_4(active0, 0x400000000L, active1, 0x800L, active2, 0L, active3, 0x1000000000000000L, active4, 0x2100010c0000000L, active5, 0x20000000000L, active6, 0x10000000000000L, active7, 0x10000000042L, active8, 0x20000000L, active9, 0x4000000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_4(active0, 0x400000000L, active1, 0x800L, active2, 0L, active3, 0L, active4, 0x4200020c00000001L, active5, 0x400000000000L, active6, 0x400000000000000L, active7, 0x400000001080L, active8, 0x4000000000L, active9, 0L, active10, 0x80L, active11, 0L); case 70: case 102: - if ((active2 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(8, 140, 76); - else if ((active9 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(8, 618, 76); - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x100L) != 0L) + return jjStartNfaWithStates_4(8, 136, 76); + else if ((active9 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 627, 76); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x400000L) != 0L) return jjStartNfaWithStates_4(8, 22, 76); - else if ((active3 & 0x20L) != 0L) - return jjStartNfaWithStates_4(8, 197, 76); - else if ((active3 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(8, 214, 76); - else if ((active4 & 0x2L) != 0L) - return jjStartNfaWithStates_4(8, 257, 76); - else if ((active6 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(8, 429, 76); - else if ((active7 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(8, 474, 76); - else if ((active9 & 0x2000000L) != 0L) + else if ((active3 & 0x200L) != 0L) + return jjStartNfaWithStates_4(8, 201, 76); + else if ((active3 & 0x4000000L) != 0L) + return jjStartNfaWithStates_4(8, 218, 76); + else if ((active4 & 0x20L) != 0L) + return jjStartNfaWithStates_4(8, 261, 76); + else if ((active6 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 435, 76); + else if ((active7 & 0x100000000L) != 0L) + return jjStartNfaWithStates_4(8, 480, 76); + else if ((active9 & 0x400000000L) != 0L) { - jjmatchedKind = 601; + jjmatchedKind = 610; jjmatchedPos = 8; } - else if ((active11 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(8, 720, 76); - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x4L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000L, active9, 0x4040000L, active10, 0L, active11, 0x10000000L); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_4(8, 730, 76); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x4L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0x808000000L, active10, 0L, active11, 0x4000000000L); case 72: case 104: - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x201L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000000L, active8, 0L, active9, 0x40200L, active10, 0L, active11, 0L); case 73: case 105: if ((active0 & 0x20000000000L) != 0L) return jjStartNfaWithStates_4(8, 41, 76); - return jjMoveStringLiteralDfa9_4(active0, 0x40000040000000L, active1, 0x1000L, active2, 0x1000006800000000L, active3, 0L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0x4L, active8, 0x2000000000000000L, active9, 0x8780000100000100L, active10, 0xf0008000L, active11, 0x4200L); + return jjMoveStringLiteralDfa9_4(active0, 0x40000040000000L, active1, 0x1000L, active2, 0x68000000000L, active3, 0x1L, active4, 0x2000L, active5, 0L, active6, 0L, active7, 0x8000000000100L, active8, 0L, active9, 0x20000020040L, active10, 0x3c00200010fL, active11, 0x1080000L); + case 75: + case 107: + if ((active2 & 0x10000L) != 0L) + return jjStartNfaWithStates_4(8, 144, 76); + break; case 76: case 108: - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0x400000L, active3, 0x80000L, active4, 0L, active5, 0x100L, active6, 0x180000000L, active7, 0x4000L, active8, 0x400000400000000L, active9, 0x20000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0x4000000L, active3, 0x800000L, active4, 0L, active5, 0x2000L, active6, 0x6000000000L, active7, 0x100000L, active8, 0x80000000000L, active9, 0x4000000000000008L, active10, 0L, active11, 0L); case 77: case 109: - if ((active9 & 0x800000000000000L) != 0L) + if ((active10 & 0x10L) != 0L) { - jjmatchedKind = 635; + jjmatchedKind = 644; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x1000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0L, active7, 0x8000000000000L, active8, 0x200000000L, active9, 0x100000080000000eL, active10, 0L, active11, 0x100L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x2000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x40L, active6, 0L, active7, 0x1000000000000000L, active8, 0x40000000000L, active9, 0x100000001c00L, active10, 0x20L, active11, 0x40000L); case 78: case 110: if ((active0 & 0x10000000L) != 0L) @@ -24194,31 +24344,31 @@ else if ((active1 & 0x20000000L) != 0L) jjmatchedKind = 93; jjmatchedPos = 8; } - else if ((active3 & 0x8L) != 0L) - return jjStartNfaWithStates_4(8, 195, 76); - else if ((active4 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(8, 279, 76); - else if ((active6 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(8, 406, 76); - else if ((active6 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(8, 430, 76); - return jjMoveStringLiteralDfa9_4(active0, 0x1000000020800000L, active1, 0x20f8c0380000L, active2, 0x20000080L, active3, 0x800000000000L, active4, 0L, active5, 0x20000040000000L, active6, 0x1000L, active7, 0x1000000020L, active8, 0x3000000L, active9, 0x80000000000L, active10, 0x200000000008L, active11, 0x40L); + else if ((active3 & 0x80L) != 0L) + return jjStartNfaWithStates_4(8, 199, 76); + else if ((active4 & 0x8000000L) != 0L) + return jjStartNfaWithStates_4(8, 283, 76); + else if ((active6 & 0x10000000L) != 0L) + return jjStartNfaWithStates_4(8, 412, 76); + else if ((active6 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 436, 76); + return jjMoveStringLiteralDfa9_4(active0, 0x1000000020800000L, active1, 0x40f8c0380000L, active2, 0x200000200L, active3, 0x8000000000000L, active4, 0L, active5, 0x400000800000000L, active6, 0x40000L, active7, 0x40000000800L, active8, 0x600000000L, active9, 0x10000000000000L, active10, 0x80000000001000L, active11, 0x10000L); case 79: case 111: - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x600000000L, active2, 0x1000000000L, active3, 0x10000000L, active4, 0L, active5, 0x3200L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0x80L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x600000000L, active2, 0x10000000000L, active3, 0x100000000L, active4, 0L, active5, 0x64000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1000000L, active10, 0L, active11, 0x20000L); case 80: case 112: - if ((active1 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(8, 111, 76); - else if ((active9 & 0x100000000000L) != 0L) + if ((active1 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 112, 76); + else if ((active9 & 0x20000000000000L) != 0L) { - jjmatchedKind = 620; + jjmatchedKind = 629; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x100L, active8, 0L, active9, 0x1e01000000000L, active10, 0L, active11, 0x400L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0x4000L, active8, 0L, active9, 0x3c0200000000000L, active10, 0L, active11, 0x100000L); case 81: case 113: - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0L); case 82: case 114: if ((active1 & 0x8L) != 0L) @@ -24226,74 +24376,78 @@ else if ((active9 & 0x100000000000L) != 0L) jjmatchedKind = 67; jjmatchedPos = 8; } - else if ((active4 & 0x8L) != 0L) - return jjStartNfaWithStates_4(8, 259, 76); - else if ((active6 & 0x4000L) != 0L) + else if ((active2 & 0x20000L) != 0L) + return jjStartNfaWithStates_4(8, 145, 76); + else if ((active4 & 0x80L) != 0L) + return jjStartNfaWithStates_4(8, 263, 76); + else if ((active6 & 0x100000L) != 0L) { - jjmatchedKind = 398; + jjmatchedKind = 404; jjmatchedPos = 8; } - else if ((active7 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 511, 76); - else if ((active8 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 565, 76); - return jjMoveStringLiteralDfa9_4(active0, 0x10000000000L, active1, 0xc000000000003f0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0x2001f8000L, active7, 0L, active8, 0x83ffe004000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active8 & 0x100L) != 0L) + return jjStartNfaWithStates_4(8, 520, 76); + else if ((active8 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 574, 76); + return jjMoveStringLiteralDfa9_4(active0, 0x10000000000L, active1, 0x18000000000003f0L, active2, 0L, active3, 0L, active4, 0x1000000000L, active5, 0L, active6, 0x8007e00000L, active7, 0L, active8, 0x7ffc00800000000L, active9, 0x1L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x1000000000000000L, active2, 0L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0x1000000000000000L, active9, 0x200400020L, active10, 0x10L, active11, 0L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x2000000000000000L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0x4080000000000L, active8, 0L, active9, 0x40080004020L, active10, 0x2000L, active11, 0L); case 84: case 116: - if ((active1 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 116, 76); - else if ((active4 & 0x4L) != 0L) - return jjStartNfaWithStates_4(8, 258, 76); - else if ((active4 & 0x8000L) != 0L) + if ((active1 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 117, 76); + else if ((active4 & 0x40L) != 0L) + return jjStartNfaWithStates_4(8, 262, 76); + else if ((active4 & 0x80000L) != 0L) { - jjmatchedKind = 271; + jjmatchedKind = 275; jjmatchedPos = 8; } - else if ((active7 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(8, 487, 76); - else if ((active7 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(8, 492, 76); - else if ((active8 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(8, 547, 76); - else if ((active9 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(8, 589, 76); - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0xe000010000000000L, active2, 0x8000L, active3, 0x2000000000000000L, active4, 0x10000L, active5, 0x400L, active6, 0x10L, active7, 0x4000000000000L, active8, 0x500000L, active9, 0x1000000L, active10, 0x4000L, active11, 0L); + else if ((active7 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_4(8, 493, 76); + else if ((active7 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 497, 76); + else if ((active7 & 0x20000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 501, 76); + else if ((active8 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_4(8, 556, 76); + else if ((active9 & 0x400000L) != 0L) + return jjStartNfaWithStates_4(8, 598, 76); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0xc000010000000000L, active2, 0x80001L, active3, 0L, active4, 0x100002L, active5, 0x8000L, active6, 0x400L, active7, 0x800000000000000L, active8, 0xa0000000L, active9, 0x200000000L, active10, 0x1000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0x80200000000L, active5, 0x4000L, active6, 0x2000000L, active7, 0L, active8, 0x20L, active9, 0L, active10, 0L, active11, 0x100000L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0x1004000000000L, active5, 0x80000L, active6, 0x80000000L, active7, 0L, active8, 0x4000L, active9, 0L, active10, 0L, active11, 0x40000000L); case 86: case 118: - return jjMoveStringLiteralDfa9_4(active0, 0x8000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa9_4(active0, 0x8000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 87: case 119: - if ((active3 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(8, 221, 76); - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40L, active10, 0L, active11, 0L); + if ((active3 & 0x200000000L) != 0L) + return jjStartNfaWithStates_4(8, 225, 76); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000L, active10, 0L, active11, 0L); case 88: case 120: - if ((active7 & 0x8L) != 0L) - return jjStartNfaWithStates_4(8, 451, 76); + if ((active7 & 0x200L) != 0L) + return jjStartNfaWithStates_4(8, 457, 76); return jjMoveStringLiteralDfa9_4(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active3 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(8, 243, 76); - else if ((active4 & 0x20L) != 0L) - return jjStartNfaWithStates_4(8, 261, 76); - else if ((active7 & 0x10L) != 0L) - return jjStartNfaWithStates_4(8, 452, 76); - else if ((active9 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(8, 613, 76); - else if ((active10 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(8, 681, 76); - else if ((active10 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(8, 687, 76); - else if ((active11 & 0x20L) != 0L) - return jjStartNfaWithStates_4(8, 709, 76); - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80L, active10, 0L, active11, 0L); + if ((active3 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 247, 76); + else if ((active4 & 0x200L) != 0L) + return jjStartNfaWithStates_4(8, 265, 76); + else if ((active7 & 0x400L) != 0L) + return jjStartNfaWithStates_4(8, 458, 76); + else if ((active9 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_4(8, 622, 76); + else if ((active10 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 691, 76); + else if ((active10 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_4(8, 697, 76); + else if ((active11 & 0x8000L) != 0L) + return jjStartNfaWithStates_4(8, 719, 76); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); default : break; } @@ -24311,88 +24465,90 @@ private final int jjMoveStringLiteralDfa9_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa10_4(active0, 0x1000000L, active1, 0x803800f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1f8000L, active7, 0L, active8, 0L, active9, 0x4021800004000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_4(active0, 0x1000000L, active1, 0x803800f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x7e00000L, active7, 0L, active8, 0L, active9, 0x4300000800000000L, active10, 0x80L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa10_4(active0, 0x1000000000000000L, active1, 0x2c0000040000000L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0x200000000L, active7, 0x4001800000000L, active8, 0x401c000220000000L, active9, 0x200000000200L, active10, 0xcL, active11, 0L); + return jjMoveStringLiteralDfa10_4(active0, 0x1000000000000000L, active1, 0x580000040000000L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0x8000000000L, active7, 0x800060000000000L, active8, 0x3800044000000000L, active9, 0x40000000040080L, active10, 0x1800L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1000L, active5, 0x2L, active6, 0L, active7, 0L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0x40L, active6, 0L, active7, 0L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: if ((active0 & 0x40000000L) != 0L) return jjStartNfaWithStates_4(9, 30, 76); - else if ((active2 & 0x80L) != 0L) - return jjStartNfaWithStates_4(9, 135, 76); - else if ((active9 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(9, 619, 76); - return jjMoveStringLiteralDfa10_4(active0, 0x800000L, active1, 0x1000000000000000L, active2, 0x4000000000L, active3, 0x800000000000L, active4, 0xc0000000L, active5, 0x200L, active6, 0L, active7, 0x2000400000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x40L); + else if ((active2 & 0x200L) != 0L) + return jjStartNfaWithStates_4(9, 137, 76); + else if ((active9 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_4(9, 628, 76); + return jjMoveStringLiteralDfa10_4(active0, 0x800000L, active1, 0x2000000000000000L, active2, 0x40000000000L, active3, 0x8000000000000L, active4, 0xc00000000L, active5, 0x4000L, active6, 0L, active7, 0x80010000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0x10000L); case 68: case 100: - if ((active5 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(9, 350, 76); - else if ((active5 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(9, 361, 76); - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x200000000000L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0L, active11, 0L); + if ((active5 & 0x800000000L) != 0L) + return jjStartNfaWithStates_4(9, 355, 76); + else if ((active5 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_4(9, 366, 76); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x400000000000L, active2, 0x800L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000000000000L, active10, 0L, active11, 0L); case 69: case 101: if ((active0 & 0x8000000L) != 0L) return jjStartNfaWithStates_4(9, 27, 76); - else if ((active2 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(9, 143, 76); - else if ((active2 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(9, 150, 76); - else if ((active4 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(9, 289, 76); - else if ((active4 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(9, 299, 76); - else if ((active7 & 0x100L) != 0L) - return jjStartNfaWithStates_4(9, 456, 76); + else if ((active2 & 0x80000L) != 0L) + return jjStartNfaWithStates_4(9, 147, 76); + else if ((active2 & 0x4000000L) != 0L) + return jjStartNfaWithStates_4(9, 154, 76); + else if ((active4 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_4(9, 293, 76); + else if ((active4 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_4(9, 294, 76); + else if ((active4 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_4(9, 304, 76); else if ((active7 & 0x4000L) != 0L) return jjStartNfaWithStates_4(9, 462, 76); - else if ((active7 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 499, 76); - else if ((active8 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(9, 546, 76); - else if ((active9 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(9, 600, 76); - else if ((active9 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(9, 611, 76); - else if ((active11 & 0x100L) != 0L) - return jjStartNfaWithStates_4(9, 712, 76); - else if ((active11 & 0x400L) != 0L) - return jjStartNfaWithStates_4(9, 714, 76); - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000500L, active6, 0x180000000L, active7, 0x10000000000000L, active8, 0x1000000000L, active9, 0x2004000e0L, active10, 0x4000L, active11, 0x10000000L); + else if ((active7 & 0x100000L) != 0L) + return jjStartNfaWithStates_4(9, 468, 76); + else if ((active7 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_4(9, 508, 76); + else if ((active8 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_4(9, 555, 76); + else if ((active9 & 0x200000000L) != 0L) + return jjStartNfaWithStates_4(9, 609, 76); + else if ((active9 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_4(9, 620, 76); + else if ((active11 & 0x40000L) != 0L) + return jjStartNfaWithStates_4(9, 722, 76); + else if ((active11 & 0x100000L) != 0L) + return jjStartNfaWithStates_4(9, 724, 76); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x20000000000a000L, active6, 0x6000000000L, active7, 0x2004000000000000L, active8, 0x200000000000L, active9, 0x4008001c000L, active10, 0x1000000L, active11, 0x4000000000L); case 71: case 103: - if ((active6 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(9, 396, 76); - else if ((active8 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(9, 536, 76); - else if ((active9 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(9, 594, 76); - else if ((active10 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(9, 685, 76); - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x20000000000000L, active6, 0x2000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x40000L) != 0L) + return jjStartNfaWithStates_4(9, 402, 76); + else if ((active8 & 0x200000000L) != 0L) + return jjStartNfaWithStates_4(9, 545, 76); + else if ((active9 & 0x8000000L) != 0L) + return jjStartNfaWithStates_4(9, 603, 76); + else if ((active10 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_4(9, 695, 76); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400000000000000L, active6, 0x80000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x2000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000002L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x6000000000000100L, active2, 0xc00L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x480000000400000L, active9, 0x6L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0xc000000000000100L, active2, 0x3000L, active3, 0L, active4, 0x100000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000L, active9, 0xc09L, active10, 0L, active11, 0L); case 75: case 107: - if ((active2 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(9, 157, 76); - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000000L, active11, 0x10L); + if ((active2 & 0x200000000L) != 0L) + return jjStartNfaWithStates_4(9, 161, 76); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8000000000000000L, active11, 0x4000L); case 76: case 108: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000L, active8, 0L, active9, 0x1000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1L, active5, 0L, active6, 0L, active7, 0x20000000L, active8, 0L, active9, 0x200000000000L, active10, 0L, active11, 0L); case 77: case 109: - if ((active5 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(9, 334, 76); - return jjMoveStringLiteralDfa10_4(active0, 0x8000000000L, active1, 0x1000000L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000L, active8, 0x8L, active9, 0x4000100010000L, active10, 0L, active11, 0L); + if ((active5 & 0x80000L) != 0L) + return jjStartNfaWithStates_4(9, 339, 76); + return jjMoveStringLiteralDfa10_4(active0, 0x8000000000L, active1, 0x1000000L, active2, 0x8L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x200000000000000L, active8, 0x1000L, active9, 0x800020002000000L, active10, 0L, active11, 0L); case 78: case 110: if ((active1 & 0x200000000L) != 0L) @@ -24400,45 +24556,45 @@ else if ((active10 & 0x200000000000L) != 0L) jjmatchedKind = 97; jjmatchedPos = 9; } - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x400000000L, active2, 0L, active3, 0x10000000L, active4, 0L, active5, 0x3000L, active6, 0L, active7, 0x4L, active8, 0x2000000000080000L, active9, 0x100L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x400000000L, active2, 0L, active3, 0x100000000L, active4, 0L, active5, 0x60000L, active6, 0L, active7, 0x8000000000100L, active8, 0x10000000L, active9, 0x20040L, active10, 0x3c000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0xc00010000000000L, active2, 0x800000000L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x8780000000200009L, active10, 0x8000L, active11, 0x200L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x1800010000000000L, active2, 0x8000000000L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0x40001200L, active10, 0x200010fL, active11, 0x80000L); case 80: case 112: - if ((active1 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 112, 76); - else if ((active9 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(9, 591, 76); + if ((active1 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_4(9, 113, 76); + else if ((active9 & 0x1000000L) != 0L) + return jjStartNfaWithStates_4(9, 600, 76); break; case 82: case 114: if ((active1 & 0x800L) != 0L) return jjStartNfaWithStates_4(9, 75, 76); - else if ((active2 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(9, 164, 76); - else if ((active4 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(9, 292, 76); - else if ((active7 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(9, 488, 76); - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x40000000000L, active7, 0x40L, active8, 0x8000000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active2 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_4(9, 168, 76); + else if ((active4 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_4(9, 297, 76); + else if ((active7 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_4(9, 494, 76); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000000000000L, active7, 0x1000L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 83: case 115: if ((active0 & 0x400000000L) != 0L) return jjStartNfaWithStates_4(9, 34, 76); else if ((active1 & 0x200L) != 0L) return jjStartNfaWithStates_4(9, 73, 76); - else if ((active6 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 436, 76); - else if ((active7 & 0x2L) != 0L) - return jjStartNfaWithStates_4(9, 449, 76); - else if ((active9 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 636, 76); - else if ((active11 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(9, 724, 76); - else if ((active11 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(9, 729, 76); - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0x2000000001L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x20L, active9, 0L, active10, 0L, active11, 0L); + else if ((active6 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_4(9, 442, 76); + else if ((active7 & 0x80L) != 0L) + return jjStartNfaWithStates_4(9, 455, 76); + else if ((active10 & 0x20L) != 0L) + return jjStartNfaWithStates_4(9, 645, 76); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_4(9, 734, 76); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_4(9, 739, 76); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x40000000000L, active2, 0x20000000002L, active3, 0L, active4, 0x4000000000000000L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x4000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: if ((active0 & 0x20000000L) != 0L) @@ -24448,43 +24604,43 @@ else if ((active1 & 0x800000000L) != 0L) jjmatchedKind = 99; jjmatchedPos = 9; } - else if ((active2 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(9, 168, 76); - else if ((active7 & 0x20L) != 0L) - return jjStartNfaWithStates_4(9, 453, 76); - else if ((active8 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(9, 537, 76); - return jjMoveStringLiteralDfa10_4(active0, 0x40010800000000L, active1, 0xf000000004L, active2, 0x1000000000000000L, active3, 0L, active4, 0x20000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active2 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_4(9, 172, 76); + else if ((active7 & 0x800L) != 0L) + return jjStartNfaWithStates_4(9, 459, 76); + else if ((active8 & 0x400000000L) != 0L) + return jjStartNfaWithStates_4(9, 546, 76); + return jjMoveStringLiteralDfa10_4(active0, 0x40010800000000L, active1, 0xf000000004L, active2, 0x4000L, active3, 0x1L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0x80000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10L, active10, 0L, active11, 0x80L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active3, 0x800000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000L, active10, 0L, active11, 0x20000L); case 86: case 118: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x7ffc00000000000L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active4 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(9, 308, 76); + if ((active4 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_4(9, 313, 76); break; case 89: case 121: - if ((active4 & 0x8000000L) != 0L) + if ((active4 & 0x80000000L) != 0L) { - jjmatchedKind = 283; + jjmatchedKind = 287; jjmatchedPos = 9; } - else if ((active4 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(9, 288, 76); - else if ((active6 & 0x10L) != 0L) - return jjStartNfaWithStates_4(9, 388, 76); - else if ((active8 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(9, 538, 76); - else if ((active10 & 0x40L) != 0L) - return jjStartNfaWithStates_4(9, 646, 76); - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active4 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_4(9, 292, 76); + else if ((active6 & 0x400L) != 0L) + return jjStartNfaWithStates_4(9, 394, 76); + else if ((active8 & 0x800000000L) != 0L) + return jjStartNfaWithStates_4(9, 547, 76); + else if ((active10 & 0x8000L) != 0L) + return jjStartNfaWithStates_4(9, 655, 76); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x1000000L); default : break; } @@ -24502,157 +24658,159 @@ private final int jjMoveStringLiteralDfa10_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x7400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x180000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x7400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x6000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa11_4(active0, 0x800000L, active1, 0x8000000000000000L, active2, 0L, active3, 0x800000000000L, active4, 0x10000000L, active5, 0L, active6, 0L, active7, 0x400000L, active8, 0x9103ffe000080000L, active9, 0x190L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_4(active0, 0x800000L, active1, 0L, active2, 0x1L, active3, 0x8000000000000L, active4, 0x100000000L, active5, 0L, active6, 0L, active7, 0x8000010000000L, active8, 0x7ffc00010000000L, active9, 0x32122L, active10, 0L, active11, 0L); case 67: case 99: - if ((active8 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_4(10, 567, 76); - return jjMoveStringLiteralDfa11_4(active0, 0x1000000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000040L, active8, 0L, active9, 0x20000000000022L, active10, 0L, active11, 0L); + if ((active9 & 0x1L) != 0L) + return jjStartNfaWithStates_4(10, 576, 76); + return jjMoveStringLiteralDfa11_4(active0, 0x1000000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001000L, active8, 0L, active9, 0x4000000000004400L, active10, 0L, active11, 0L); case 68: case 100: - if ((active3 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(10, 220, 76); - else if ((active5 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(10, 332, 76); - else if ((active5 & 0x2000L) != 0L) - return jjStartNfaWithStates_4(10, 333, 76); - else if ((active10 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(10, 654, 76); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000L, active10, 0L, active11, 0x10000000L); + if ((active3 & 0x100000000L) != 0L) + return jjStartNfaWithStates_4(10, 224, 76); + else if ((active5 & 0x20000L) != 0L) + return jjStartNfaWithStates_4(10, 337, 76); + else if ((active5 & 0x40000L) != 0L) + return jjStartNfaWithStates_4(10, 338, 76); + else if ((active10 & 0x1000000L) != 0L) + return jjStartNfaWithStates_4(10, 664, 76); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x140000000000000L, active10, 0L, active11, 0x4000000000L); case 69: - case 101: - if ((active0 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(10, 39, 76); - else if ((active1 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(10, 88, 76); - else if ((active2 & 0x4L) != 0L) - return jjStartNfaWithStates_4(10, 130, 76); - else if ((active3 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(10, 211, 76); - else if ((active4 & 0x200L) != 0L) - return jjStartNfaWithStates_4(10, 265, 76); - else if ((active7 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(10, 496, 76); - else if ((active8 & 0x8L) != 0L) - return jjStartNfaWithStates_4(10, 515, 76); - else if ((active9 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(10, 608, 76); - else if ((active9 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(10, 612, 76); - else if ((active11 & 0x4000L) != 0L) - return jjStartNfaWithStates_4(10, 718, 76); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x2L, active6, 0x40000000000L, active7, 0x800000L, active8, 0x20L, active9, 0x40L, active10, 0x200000f0000000L, active11, 0x10L); + case 101: + if ((active0 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_4(10, 39, 76); + else if ((active1 & 0x1000000L) != 0L) + return jjStartNfaWithStates_4(10, 88, 76); + else if ((active2 & 0x8L) != 0L) + return jjStartNfaWithStates_4(10, 131, 76); + else if ((active3 & 0x800000L) != 0L) + return jjStartNfaWithStates_4(10, 215, 76); + else if ((active4 & 0x2000L) != 0L) + return jjStartNfaWithStates_4(10, 269, 76); + else if ((active7 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_4(10, 505, 76); + else if ((active8 & 0x1000L) != 0L) + return jjStartNfaWithStates_4(10, 524, 76); + else if ((active9 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_4(10, 617, 76); + else if ((active9 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_4(10, 621, 76); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_4(10, 728, 76); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0x2L, active3, 0L, active4, 0L, active5, 0x40L, active6, 0x1000000000000L, active7, 0x20000000L, active8, 0x4000L, active9, 0x8000L, active10, 0x800003c000000000L, active11, 0x4000L); case 70: case 102: - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active7 & 0x4L) != 0L) - return jjStartNfaWithStates_4(10, 450, 76); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active7 & 0x100L) != 0L) + return jjStartNfaWithStates_4(10, 456, 76); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: if ((active1 & 0x4L) != 0L) return jjStartNfaWithStates_4(10, 66, 76); - else if ((active6 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(10, 409, 76); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x1000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x40L); + else if ((active6 & 0x80000000L) != 0L) + return jjStartNfaWithStates_4(10, 415, 76); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x2000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0x10000L); case 73: case 105: - return jjMoveStringLiteralDfa11_4(active0, 0x10800000000L, active1, 0x200000001000L, active2, 0x1000000000000200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4400000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_4(active0, 0x10800000000L, active1, 0x400000001000L, active2, 0x800L, active3, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x880000000000000L, active10, 0L, active11, 0L); case 76: case 108: if ((active1 & 0x40000000L) != 0L) return jjStartNfaWithStates_4(10, 94, 76); - else if ((active8 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(10, 545, 76); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x400000000000010L, active2, 0L, active3, 0L, active4, 0x1000L, active5, 0L, active6, 0L, active7, 0x4000000000000L, active8, 0x2L, active9, 0L, active10, 0L, active11, 0L); + else if ((active8 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_4(10, 554, 76); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x800000000000010L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0L, active7, 0x800000000000000L, active8, 0x400L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa11_4(active0, 0x1000000000000000L, active1, 0x6000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000L, active7, 0x10001000000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); + return jjMoveStringLiteralDfa11_4(active0, 0x1000000000000000L, active1, 0xc000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0x2000040000000000L, active8, 0L, active9, 0L, active10, 0x1000L, active11, 0L); case 78: case 110: - if ((active2 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(10, 163, 76); - else if ((active8 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(10, 541, 76); - else if ((active9 & 0x80000000000000L) != 0L) + if ((active2 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_4(10, 167, 76); + else if ((active8 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_4(10, 550, 76); + else if ((active10 & 0x1L) != 0L) { - jjmatchedKind = 631; + jjmatchedKind = 640; jjmatchedPos = 10; } - else if ((active9 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(10, 639, 76); - else if ((active11 & 0x200L) != 0L) - return jjStartNfaWithStates_4(10, 713, 76); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x86100000L, active2, 0xc000000000c00L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x200010000L, active7, 0L, active8, 0x400000000000000L, active9, 0x70000000000000cL, active10, 0x8000L, active11, 0L); + else if ((active10 & 0x100L) != 0L) + return jjStartNfaWithStates_4(10, 648, 76); + else if ((active11 & 0x80000L) != 0L) + return jjStartNfaWithStates_4(10, 723, 76); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x86100000L, active2, 0xc0000000003000L, active3, 0L, active4, 0L, active5, 0x2000L, active6, 0x8000400000L, active7, 0L, active8, 0L, active9, 0x1808L, active10, 0x200000eL, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x400000L, active9, 0x2000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x80000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); case 80: case 112: - if ((active9 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(10, 592, 76); - else if ((active11 & 0x80L) != 0L) - return jjStartNfaWithStates_4(10, 711, 76); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x2000000L) != 0L) + return jjStartNfaWithStates_4(10, 601, 76); + else if ((active11 & 0x20000L) != 0L) + return jjStartNfaWithStates_4(10, 721, 76); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: if ((active1 & 0x10000000000L) != 0L) return jjStartNfaWithStates_4(10, 104, 76); - else if ((active8 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(10, 548, 76); - else if ((active9 & 0x200L) != 0L) - return jjStartNfaWithStates_4(10, 585, 76); - else if ((active9 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(10, 609, 76); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0x4000000004200000L, active10, 0L, active11, 0L); + else if ((active8 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_4(10, 557, 76); + else if ((active9 & 0x40000L) != 0L) + return jjStartNfaWithStates_4(10, 594, 76); + else if ((active9 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_4(10, 618, 76); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000000L, active9, 0x840000000L, active10, 0x80L, active11, 0L); case 83: case 115: if ((active1 & 0x8000000000L) != 0L) return jjStartNfaWithStates_4(10, 103, 76); - else if ((active2 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(10, 166, 76); - else if ((active4 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(10, 285, 76); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x2001e0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + else if ((active2 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_4(10, 170, 76); + else if ((active4 & 0x200000000L) != 0L) + return jjStartNfaWithStates_4(10, 289, 76); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x2001e0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - if ((active4 & 0x40000000L) != 0L) + if ((active4 & 0x400000000L) != 0L) { - jjmatchedKind = 286; + jjmatchedKind = 290; jjmatchedPos = 10; } - else if ((active8 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(10, 573, 76); - else if ((active9 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(10, 598, 76); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x2c0000000000000L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0x200000080000000L, active5, 0x20000000000200L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0x1000000000000L, active10, 0x4L, active11, 0L); + else if ((active7 & 0x4000000000000L) != 0L) + return jjStartNfaWithStates_4(10, 498, 76); + else if ((active9 & 0x40L) != 0L) + return jjStartNfaWithStates_4(10, 582, 76); + else if ((active9 & 0x80000000L) != 0L) + return jjStartNfaWithStates_4(10, 607, 76); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x580000000000000L, active2, 0x20000000000L, active3, 0L, active4, 0x4000000800000002L, active5, 0x400000000004000L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0x200000000000000L, active10, 0x800L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x40000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0L); case 87: case 119: - if ((active1 & 0x800000000000000L) != 0L) - return jjStartNfaWithStates_4(10, 123, 76); + if ((active1 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_4(10, 124, 76); break; case 88: case 120: - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x400L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: if ((active0 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_4(10, 54, 76); - else if ((active3 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(10, 252, 76); - else if ((active8 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(10, 574, 76); + else if ((active4 & 0x1L) != 0L) + return jjStartNfaWithStates_4(10, 256, 76); + else if ((active9 & 0x80L) != 0L) + return jjStartNfaWithStates_4(10, 583, 76); break; default : break; @@ -24671,127 +24829,129 @@ private final int jjMoveStringLiteralDfa11_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 65: case 97: - if ((active7 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 500, 76); - return jjMoveStringLiteralDfa12_4(active0, 0x1000000L, active1, 0x140000000180000L, active2, 0L, active3, 0L, active4, 0x200000080000000L, active5, 0L, active6, 0x10000L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x8004L, active11, 0L); + if ((active7 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_4(11, 509, 76); + return jjMoveStringLiteralDfa12_4(active0, 0x1000000L, active1, 0x280000000180000L, active2, 0L, active3, 0L, active4, 0x4000000800000000L, active5, 0L, active6, 0x400000L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x2000800L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0x40000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0x1006200000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x8008000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0x1006200000L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0x1000000000000000L, active9, 0x100L, active10, 0L, active11, 0L); case 68: case 100: - if ((active9 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(11, 621, 76); - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x100000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + if ((active9 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_4(11, 630, 76); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x4000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 69: case 101: if ((active0 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_4(11, 60, 76); - else if ((active1 & 0x80000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 119, 76); - else if ((active1 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 122, 76); - else if ((active1 & 0x2000000000000000L) != 0L) + else if ((active1 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_4(11, 120, 76); + else if ((active1 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_4(11, 123, 76); + else if ((active1 & 0x4000000000000000L) != 0L) { - jjmatchedKind = 125; + jjmatchedKind = 126; jjmatchedPos = 11; } - else if ((active4 & 0x1000L) != 0L) - return jjStartNfaWithStates_4(11, 268, 76); - else if ((active7 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(11, 484, 76); - else if ((active8 & 0x2L) != 0L) - return jjStartNfaWithStates_4(11, 513, 76); - else if ((active8 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(11, 532, 76); - else if ((active10 & 0x8L) != 0L) - return jjStartNfaWithStates_4(11, 643, 76); - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0x50000000000000f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x2000000040L, active8, 0L, active9, 0x4000000004000000L, active10, 0x10L, active11, 0L); + else if ((active4 & 0x10000L) != 0L) + return jjStartNfaWithStates_4(11, 272, 76); + else if ((active7 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_4(11, 490, 76); + else if ((active8 & 0x400L) != 0L) + return jjStartNfaWithStates_4(11, 522, 76); + else if ((active8 & 0x20000000L) != 0L) + return jjStartNfaWithStates_4(11, 541, 76); + else if ((active10 & 0x1000L) != 0L) + return jjStartNfaWithStates_4(11, 652, 76); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0xa0000000000000f0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000L, active6, 0L, active7, 0x80000001000L, active8, 0L, active9, 0x800000000L, active10, 0x2080L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0x200L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0x800L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x80000000000000L, active10, 0L, active11, 0L); case 71: case 103: - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x10000000L, active5, 0x100L, active6, 0x40000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100000000L, active5, 0x2000L, active6, 0x1000000000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active1 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 121, 76); - else if ((active5 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 373, 76); + if ((active1 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_4(11, 122, 76); + else if ((active5 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_4(11, 378, 76); break; case 73: case 105: - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000200000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0x20000000000L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000040000000L, active10, 0L, active11, 0L); case 75: case 107: - if ((active6 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(11, 417, 76); - else if ((active9 & 0x40L) != 0L) - return jjStartNfaWithStates_4(11, 582, 76); + if ((active6 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_4(11, 423, 76); + else if ((active9 & 0x8000L) != 0L) + return jjStartNfaWithStates_4(11, 591, 76); break; case 76: case 108: - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x3ffe000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active7 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_4(11, 499, 76); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x7ffc00000000000L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000080000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x10000000L, active9, 0x20L, active10, 0L, active11, 0L); case 78: case 110: if ((active1 & 0x1000L) != 0L) return jjStartNfaWithStates_4(11, 76, 76); - else if ((active4 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(11, 272, 76); - else if ((active8 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(11, 534, 76); - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0x8000202400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0x800000L, active8, 0x10000000000000L, active9, 0x4000000000000L, active10, 0L, active11, 0L); + else if ((active4 & 0x100000L) != 0L) + return jjStartNfaWithStates_4(11, 276, 76); + else if ((active8 & 0x80000000L) != 0L) + return jjStartNfaWithStates_4(11, 543, 76); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0x402400000000L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0x20000000L, active8, 0x2000000000000000L, active9, 0x800000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa12_4(active0, 0x800000000L, active1, 0L, active2, 0x1000000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x8000L, active7, 0x4000000000000L, active8, 0L, active9, 0x20000000000020L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_4(active0, 0x800000000L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0L, active5, 0L, active6, 0x200000L, active7, 0x800000000000000L, active8, 0L, active9, 0x4000000000004000L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 82: case 114: - if ((active2 & 0x1L) != 0L) - return jjStartNfaWithStates_4(11, 128, 76); - else if ((active5 & 0x2L) != 0L) - return jjStartNfaWithStates_4(11, 321, 76); - else if ((active8 & 0x20L) != 0L) - return jjStartNfaWithStates_4(11, 517, 76); - else if ((active8 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 568, 76); - else if ((active9 & 0x1L) != 0L) - return jjStartNfaWithStates_4(11, 576, 76); - else if ((active9 & 0x80L) != 0L) - return jjStartNfaWithStates_4(11, 583, 76); - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x1000000000112L, active10, 0L, active11, 0x40L); + if ((active2 & 0x2L) != 0L) + return jjStartNfaWithStates_4(11, 129, 76); + else if ((active5 & 0x40L) != 0L) + return jjStartNfaWithStates_4(11, 326, 76); + else if ((active8 & 0x4000L) != 0L) + return jjStartNfaWithStates_4(11, 526, 76); + else if ((active9 & 0x2L) != 0L) + return jjStartNfaWithStates_4(11, 577, 76); + else if ((active9 & 0x200L) != 0L) + return jjStartNfaWithStates_4(11, 585, 76); + else if ((active9 & 0x10000L) != 0L) + return jjStartNfaWithStates_4(11, 592, 76); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0x200000000022400L, active10, 0L, active11, 0x10000L); case 83: case 115: - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x700000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xeL, active11, 0L); case 84: case 116: - if ((active3 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(11, 239, 76); - else if ((active5 & 0x400L) != 0L) - return jjStartNfaWithStates_4(11, 330, 76); - else if ((active8 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 570, 76); - else if ((active10 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(11, 693, 76); - return jjMoveStringLiteralDfa12_4(active0, 0x10000800000L, active1, 0x100L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0L); + if ((active3 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_4(11, 243, 76); + else if ((active5 & 0x8000L) != 0L) + return jjStartNfaWithStates_4(11, 335, 76); + else if ((active9 & 0x8L) != 0L) + return jjStartNfaWithStates_4(11, 579, 76); + else if ((active10 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_4(11, 703, 76); + return jjMoveStringLiteralDfa12_4(active0, 0x10000800000L, active1, 0x100L, active2, 0x3000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0x1000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0x80000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2000000000004L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0x80000000L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000800L, active10, 0L, active11, 0L); case 89: case 121: - if ((active11 & 0x10L) != 0L) - return jjStartNfaWithStates_4(11, 708, 76); + if ((active11 & 0x4000L) != 0L) + return jjStartNfaWithStates_4(11, 718, 76); break; default : break; @@ -24810,86 +24970,86 @@ private final int jjMoveStringLiteralDfa12_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa13_4(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8003ffe000000000L, active9, 0x700000000000000L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa13_4(active0, 0x800000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x7ffc00000000000L, active9, 0x100L, active10, 0x3c00000000eL, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x3400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active2 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(12, 165, 76); - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x10000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active2 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_4(12, 169, 76); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x28000L, active7, 0x400000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0xa00000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: - if ((active8 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(12, 531, 76); - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400001c0000L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x10000000L) != 0L) + return jjStartNfaWithStates_4(12, 540, 76); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0x3000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1000007000000L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: - if ((active2 & 0x200L) != 0L) - return jjStartNfaWithStates_4(12, 137, 76); - else if ((active9 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(12, 622, 76); - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800000000000L, active10, 0L, active11, 0L); + if ((active2 & 0x800L) != 0L) + return jjStartNfaWithStates_4(12, 139, 76); + else if ((active9 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_4(12, 631, 76); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); case 71: case 103: - if ((active1 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(12, 109, 76); - else if ((active4 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(12, 284, 76); - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000000L, active5, 0L, active6, 0L, active7, 0x4000000800000L, active8, 0L, active9, 0x4000000004200000L, active10, 0L, active11, 0L); + if ((active1 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_4(12, 110, 76); + else if ((active4 & 0x100000000L) != 0L) + return jjStartNfaWithStates_4(12, 288, 76); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x800000000L, active5, 0L, active6, 0L, active7, 0x800000020000000L, active8, 0L, active9, 0x840000000L, active10, 0x80L, active11, 0L); case 72: case 104: - if ((active9 & 0x8L) != 0L) - return jjStartNfaWithStates_4(12, 579, 76); - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x1000L) != 0L) + return jjStartNfaWithStates_4(12, 588, 76); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa13_4(active0, 0x10000000000L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0x100000000L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_4(active0, 0x10000000000L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80L, active6, 0x4000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 76: case 108: - if ((active10 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(12, 655, 76); - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x40000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); + if ((active10 & 0x2000000L) != 0L) + return jjStartNfaWithStates_4(12, 665, 76); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x80000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x800L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x1000000080100000L, active2, 0L, active3, 0L, active4, 0x200000000000000L, active5, 0L, active6, 0x10000L, active7, 0x2000000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x2000000080100000L, active2, 0L, active3, 0L, active4, 0x4000000000000000L, active5, 0L, active6, 0x400000L, active7, 0x80000000000L, active8, 0L, active9, 0L, active10, 0x2000L, active11, 0L); case 78: case 110: if ((active0 & 0x800000000L) != 0L) return jjStartNfaWithStates_4(12, 35, 76); - else if ((active2 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(12, 188, 76); - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x10L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x20L, active10, 0L, active11, 0L); + else if ((active3 & 0x1L) != 0L) + return jjStartNfaWithStates_4(12, 192, 76); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x10L, active2, 0x4000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0x10000L); case 80: case 112: - if ((active8 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(12, 572, 76); - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active9 & 0x20L) != 0L) + return jjStartNfaWithStates_4(12, 581, 76); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 82: case 114: - if ((active9 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(12, 625, 76); - return jjMoveStringLiteralDfa13_4(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_4(12, 634, 76); + return jjMoveStringLiteralDfa13_4(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0xc000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x8000040000000000L, active2, 0x1L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x60800e0L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0x300L, active6, 0L, active7, 0L, active8, 0L, active9, 0x14L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x60800e0L, active2, 0xc0000000000000L, active3, 0L, active4, 0L, active5, 0x6000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2800L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x25000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0x200000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4a00000000000000L, active10, 0L, active11, 0L); case 89: case 121: - if ((active9 & 0x100L) != 0L) - return jjStartNfaWithStates_4(12, 584, 76); + if ((active9 & 0x20000L) != 0L) + return jjStartNfaWithStates_4(12, 593, 76); break; default : break; @@ -24902,114 +25062,116 @@ private final int jjMoveStringLiteralDfa13_4(long old0, long active0, long old1, return jjStartNfa_4(11, old0, old1, old2, old3, old4, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_4(12, active0, active1, active2, active3, active4, active5, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_4(12, active0, active1, active2, 0L, active4, active5, active6, active7, active8, active9, active10, active11, 0L); return 13; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0xe0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0xe0L, active2, 0L, active4, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active1 & 0x1000000000000000L) != 0L) - return jjStartNfaWithStates_4(13, 124, 76); - else if ((active7 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(13, 485, 76); - else if ((active10 & 0x10L) != 0L) - return jjStartNfaWithStates_4(13, 644, 76); - return jjMoveStringLiteralDfa14_4(active0, 0x800000L, active1, 0x80000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + if ((active1 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_4(13, 125, 76); + else if ((active7 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_4(13, 491, 76); + else if ((active10 & 0x2000L) != 0L) + return jjStartNfaWithStates_4(13, 653, 76); + return jjMoveStringLiteralDfa14_4(active0, 0x800000L, active1, 0x80000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000000L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 66: case 98: - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x80000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x80000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x100L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + if ((active2 & 0x4000L) != 0L) + return jjStartNfaWithStates_4(13, 142, 76); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x100L, active2, 0L, active4, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 68: case 100: - if ((active9 & 0x20L) != 0L) - return jjStartNfaWithStates_4(13, 581, 76); - return jjMoveStringLiteralDfa14_4(active0, 0x1000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1e000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x4000L) != 0L) + return jjStartNfaWithStates_4(13, 590, 76); + return jjMoveStringLiteralDfa14_4(active0, 0x1000000L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3c00000000000L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x100000L) != 0L) return jjStartNfaWithStates_4(13, 84, 76); - else if ((active6 & 0x8000L) != 0L) - return jjStartNfaWithStates_4(13, 399, 76); - else if ((active6 & 0x10000L) != 0L) - return jjStartNfaWithStates_4(13, 400, 76); - else if ((active9 & 0x4L) != 0L) - return jjStartNfaWithStates_4(13, 578, 76); - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x200000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x4000000004000010L, active10, 0L, active11, 0L); + else if ((active6 & 0x200000L) != 0L) + return jjStartNfaWithStates_4(13, 405, 76); + else if ((active6 & 0x400000L) != 0L) + return jjStartNfaWithStates_4(13, 406, 76); + else if ((active9 & 0x800L) != 0L) + return jjStartNfaWithStates_4(13, 587, 76); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x200000L, active2, 0L, active4, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x800002000L, active10, 0x80L, active11, 0L); case 70: case 102: - if ((active9 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(13, 623, 76); - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active9 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_4(13, 632, 76); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0x1L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active4 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(13, 287, 76); - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x10L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active4 & 0x800000000L) != 0L) + return jjStartNfaWithStates_4(13, 291, 76); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x10L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active5 & 0x100L) != 0L) - return jjStartNfaWithStates_4(13, 328, 76); - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x4000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100e0000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active5 & 0x2000L) != 0L) + return jjStartNfaWithStates_4(13, 333, 76); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x4000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x201c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x6000000L, active2, 0xc000000000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x200000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000000L, active4, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x100000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x200000000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x2400000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x2400000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - if ((active3 & 0x2000000000000000L) != 0L) - return jjStartNfaWithStates_4(13, 253, 76); - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x80000000L, active7, 0L, active8, 0x4000000000000L, active9, 0x21000000000000L, active10, 0L, active11, 0x40L); + if ((active4 & 0x2L) != 0L) + return jjStartNfaWithStates_4(13, 257, 76); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x2000000000L, active7, 0L, active8, 0x800000000000000L, active9, 0x4200000000000000L, active10, 0L, active11, 0x10000L); case 79: case 111: - return jjMoveStringLiteralDfa14_4(active0, 0x10000000000L, active1, 0x40000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x800000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); + return jjMoveStringLiteralDfa14_4(active0, 0x10000000000L, active1, 0x80000000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0L, active9, 0L, active10, 0x800L, active11, 0L); case 80: case 112: - if ((active4 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(13, 313, 76); + if ((active4 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_4(13, 318, 76); break; case 82: case 114: - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0xc00L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0x3000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 83: case 115: - if ((active7 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(13, 498, 76); - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x100000000L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + if ((active7 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_4(13, 507, 76); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0x4000000000L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 84: case 116: - if ((active7 & 0x40L) != 0L) - return jjStartNfaWithStates_4(13, 454, 76); - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x4000001000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x3800000L, active8, 0L, active9, 0x4000000000000L, active10, 0xf0000000L, active11, 0L); + if ((active7 & 0x1000L) != 0L) + return jjStartNfaWithStates_4(13, 460, 76); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x8000041000000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0xe0000000L, active8, 0L, active9, 0x800000000000000L, active10, 0x3c000000000L, active11, 0L); case 88: case 120: - if ((active6 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(13, 426, 76); + if ((active6 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_4(13, 432, 76); break; case 89: case 121: - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x600000000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0L, active2, 0L, active4, 0L, active5, 0x80L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_4(12, active0, active1, active2, active3, active4, active5, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_4(12, active0, active1, active2, 0L, active4, active5, active6, active7, active8, active9, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa14_4(long old0, long active0, long old1, long active1, long old2, long active2, long old3, long active3, long old4, long active4, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa14_4(long old0, long active0, long old1, long active1, long old2, long active2, long old4, long active4, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active3 &= old3) | (active4 &= old4) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_4(12, old0, old1, old2, old3, old4, old5, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active4 &= old4) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_4(12, old0, old1, old2, 0L, old4, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_4(13, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); @@ -25018,48 +25180,48 @@ private final int jjMoveStringLiteralDfa14_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x4000001000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0x1401e000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x8000001000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0x2803c00000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active6 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(14, 416, 76); - else if ((active9 & 0x1000000000000L) != 0L) - return jjStartNfaWithStates_4(14, 624, 76); - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); + if ((active6 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_4(14, 422, 76); + else if ((active9 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_4(14, 633, 76); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); case 69: case 101: if ((active1 & 0x400000000L) != 0L) return jjStartNfaWithStates_4(14, 98, 76); else if ((active1 & 0x2000000000L) != 0L) return jjStartNfaWithStates_4(14, 101, 76); - else if ((active5 & 0x4L) != 0L) - return jjStartNfaWithStates_4(14, 322, 76); - else if ((active9 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(14, 626, 76); - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x4080000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8003800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + else if ((active5 & 0x80L) != 0L) + return jjStartNfaWithStates_4(14, 327, 76); + else if ((active9 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_4(14, 635, 76); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x4080000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 71: case 103: - if ((active1 & 0x40000000000000L) != 0L) - return jjStartNfaWithStates_4(14, 118, 76); - else if ((active7 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(14, 483, 76); - else if ((active10 & 0x4L) != 0L) - return jjStartNfaWithStates_4(14, 642, 76); - return jjMoveStringLiteralDfa15_4(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x10000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active1 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_4(14, 119, 76); + else if ((active7 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_4(14, 489, 76); + else if ((active10 & 0x800L) != 0L) + return jjStartNfaWithStates_4(14, 651, 76); + return jjMoveStringLiteralDfa15_4(active0, 0x800000L, active1, 0L, active2, 0L, active5, 0x200000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active7 & 0x800000L) != 0L) - return jjStartNfaWithStates_4(14, 471, 76); + if ((active7 & 0x20000000L) != 0L) + return jjStartNfaWithStates_4(14, 477, 76); break; case 73: case 105: - return jjMoveStringLiteralDfa15_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0x300000000000L, active9, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa15_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0x60000000000000L, active9, 0L, active10, 0L, active11, 0x10000L); case 76: case 108: - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 77: case 109: return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x200000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -25067,19 +25229,21 @@ else if ((active10 & 0x4L) != 0L) case 110: if ((active0 & 0x10000000000L) != 0L) return jjStartNfaWithStates_4(14, 40, 76); - else if ((active9 & 0x200000L) != 0L) - return jjStartNfaWithStates_4(14, 597, 76); - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + else if ((active9 & 0x40000000L) != 0L) + return jjStartNfaWithStates_4(14, 606, 76); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x8000000006000000L, active2, 0xc000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4e0000000000L, active9, 0x600000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x6000000L, active2, 0xc0000000000001L, active5, 0L, active6, 0L, active7, 0L, active8, 0x9c000000000000L, active9, 0L, active10, 0xcL, active11, 0L); case 82: case 114: - if ((active8 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(14, 563, 76); - else if ((active9 & 0x10L) != 0L) - return jjStartNfaWithStates_4(14, 580, 76); - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + if ((active1 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_4(14, 106, 76); + else if ((active8 & 0x1000000000000000L) != 0L) + return jjStartNfaWithStates_4(14, 572, 76); + else if ((active9 & 0x2000L) != 0L) + return jjStartNfaWithStates_4(14, 589, 76); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 83: case 115: if ((active1 & 0x100L) != 0L) @@ -25087,24 +25251,24 @@ else if ((active9 & 0x10L) != 0L) return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - if ((active6 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(14, 415, 76); - else if ((active9 & 0x20000000000000L) != 0L) - return jjStartNfaWithStates_4(14, 629, 76); - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x100000000000010L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_4(14, 421, 76); + else if ((active9 & 0x4000000000000000L) != 0L) + return jjStartNfaWithStates_4(14, 638, 76); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0x200000000000010L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 86: case 118: - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0xc00L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0x3000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active9 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(14, 602, 76); - else if ((active9 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(14, 638, 76); + if ((active9 & 0x800000000L) != 0L) + return jjStartNfaWithStates_4(14, 611, 76); + else if ((active10 & 0x80L) != 0L) + return jjStartNfaWithStates_4(14, 647, 76); break; case 89: case 121: - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); default : break; } @@ -25122,21 +25286,21 @@ private final int jjMoveStringLiteralDfa15_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: if ((active1 & 0x200000L) != 0L) return jjStartNfaWithStates_4(15, 85, 76); - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0x60L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0x3000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0x60L, active2, 0x3000L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0x600000000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 69: case 101: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0x10000000000200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0x200000000004000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: if ((active0 & 0x800000L) != 0L) @@ -25149,10 +25313,10 @@ private final int jjMoveStringLiteralDfa15_4(long old0, long active0, long old1, break; case 76: case 108: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0x4000004000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0x8000004000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 78: case 110: if ((active1 & 0x2000000L) != 0L) @@ -25160,42 +25324,42 @@ private final int jjMoveStringLiteralDfa15_4(long old0, long active0, long old1, jjmatchedKind = 89; jjmatchedPos = 15; } - else if ((active2 & 0x4000000000000L) != 0L) + else if ((active2 & 0x40000000000000L) != 0L) { - jjmatchedKind = 178; + jjmatchedKind = 182; jjmatchedPos = 15; } - return jjMoveStringLiteralDfa16_4(active0, 0x1000000L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x700000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_4(active0, 0x1000000L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0x80000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 82: case 114: if ((active1 & 0x80000000L) != 0L) return jjStartNfaWithStates_4(15, 95, 76); - else if ((active8 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(15, 564, 76); - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active8 & 0x2000000000000000L) != 0L) + return jjStartNfaWithStates_4(15, 573, 76); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0x800000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x2000000L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 85: case 117: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: - if ((active8 & 0x2000000000L) != 0L) + if ((active8 & 0x400000000000L) != 0L) { - jjmatchedKind = 549; + jjmatchedKind = 558; jjmatchedPos = 15; } - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000L); default : break; } @@ -25213,17 +25377,17 @@ private final int jjMoveStringLiteralDfa16_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: if ((active1 & 0x4000000000L) != 0L) return jjStartNfaWithStates_4(16, 102, 76); - return jjMoveStringLiteralDfa17_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa17_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000L); case 69: case 101: - if ((active7 & 0x2000000L) != 0L) - return jjStartNfaWithStates_4(16, 473, 76); - return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0xf0000000L, active11, 0L); + if ((active7 & 0x80000000L) != 0L) + return jjStartNfaWithStates_4(16, 479, 76); + return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 71: case 103: if ((active1 & 0x80000L) != 0L) @@ -25234,52 +25398,52 @@ private final int jjMoveStringLiteralDfa16_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0x4000000000L); case 76: case 108: - return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0x400000L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0x3000L, active5, 0L, active6, 0x800000L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0x8000000000000040L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0x40L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0x1000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 80: case 112: - if ((active1 & 0x4000000000000000L) != 0L) - return jjStartNfaWithStates_4(16, 126, 76); + if ((active1 & 0x8000000000000000L) != 0L) + return jjStartNfaWithStates_4(16, 127, 76); break; case 82: case 114: - if ((active8 & 0x20000000000L) != 0L) + if ((active8 & 0x4000000000000L) != 0L) { - jjmatchedKind = 553; + jjmatchedKind = 562; jjmatchedPos = 16; } - else if ((active8 & 0x1000000000000L) != 0L) + else if ((active8 & 0x200000000000000L) != 0L) { - jjmatchedKind = 560; + jjmatchedKind = 569; jjmatchedPos = 16; } - return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x418000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0x100000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0x200000000000020L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x80000000000000L, active9, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x300000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x60000000000000L, active9, 0L, active10, 0L, active11, 0L); case 88: case 120: - if ((active5 & 0x10000000000000L) != 0L) - return jjStartNfaWithStates_4(16, 372, 76); + if ((active5 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_4(16, 377, 76); break; case 89: case 121: - if ((active8 & 0x4000000000000L) != 0L) - return jjStartNfaWithStates_4(16, 562, 76); + if ((active8 & 0x800000000000000L) != 0L) + return jjStartNfaWithStates_4(16, 571, 76); break; default : break; @@ -25298,46 +25462,46 @@ private final int jjMoveStringLiteralDfa17_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0x8000000000000000L, active2, 0xc00L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0xf0000000L, active11, 0L); + return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0x3001L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x418000000000000L, active9, 0L, active10, 0x3c000000000L, active11, 0L); case 65: case 97: return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: if ((active1 & 0x40L) != 0L) return jjStartNfaWithStates_4(17, 70, 76); - return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 71: case 103: if ((active1 & 0x1000000000L) != 0L) return jjStartNfaWithStates_4(17, 100, 76); - return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active8 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(17, 558, 76); + if ((active8 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_4(17, 567, 76); break; case 73: case 105: - return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x10000000L, active8, 0L, active9, 0L, active10, 0x4L, active11, 0L); case 76: case 108: return jjMoveStringLiteralDfa18_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0x8000800000000000L, active9, 0x2L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0x100000000000000L, active9, 0x500L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x63800000000000L, active9, 0L, active10, 0L, active11, 0x4000010000L); case 86: case 118: - return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); default : break; } @@ -25355,38 +25519,38 @@ private final int jjMoveStringLiteralDfa18_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x7000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0x400L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x30000000L, active11, 0L); + return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0x1000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0xc000000000L, active11, 0L); case 68: case 100: - if ((active8 & 0x800000000000L) != 0L) - return jjStartNfaWithStates_4(18, 559, 76); - else if ((active8 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(18, 575, 76); - else if ((active9 & 0x2L) != 0L) - return jjStartNfaWithStates_4(18, 577, 76); - return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + if ((active8 & 0x100000000000000L) != 0L) + return jjStartNfaWithStates_4(18, 568, 76); + else if ((active9 & 0x100L) != 0L) + return jjStartNfaWithStates_4(18, 584, 76); + else if ((active9 & 0x400L) != 0L) + return jjStartNfaWithStates_4(18, 586, 76); + return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x8L, active11, 0L); case 69: case 101: - if ((active8 & 0x100000000000L) != 0L) + if ((active8 & 0x20000000000000L) != 0L) { - jjmatchedKind = 556; + jjmatchedKind = 565; jjmatchedPos = 18; } - else if ((active9 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(18, 632, 76); - return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + else if ((active10 & 0x2L) != 0L) + return jjStartNfaWithStates_4(18, 641, 76); + return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x40000000000000L, active9, 0L, active10, 0L, active11, 0L); case 71: case 103: - return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0x1L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa19_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x4000010000L); case 76: case 108: return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0x20L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -25395,19 +25559,19 @@ else if ((active9 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0x80L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x40000000L, active11, 0L); + return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1c000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3800000000000L, active9, 0L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0x800L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0x2000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); + return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000000L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0x200L, active6, 0L, active7, 0x400000L, active8, 0x20c0000000000L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0L, active5, 0x4000L, active6, 0L, active7, 0x10000000L, active8, 0x418000000000000L, active9, 0L, active10, 0x4L, active11, 0L); default : break; } @@ -25419,86 +25583,86 @@ private final int jjMoveStringLiteralDfa19_4(long old0, long active0, long old1, return jjStartNfa_4(17, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, old9, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_4(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_4(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, 0L, active10, active11, 0L); return 19; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x21c000000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x43800000000000L, active10, 0x8L, active11, 0L); case 65: case 97: if ((active1 & 0x80L) != 0L) return jjStartNfaWithStates_4(19, 71, 76); - return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x50000000L, active11, 0L); + return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x14000000000L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x40000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); + return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x1000000L, active7, 0L, active8, 0L, active10, 0x20000000000L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x4000000L, active2, 0x8000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x4000000L, active2, 0x80000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 72: case 104: - if ((active5 & 0x200L) != 0L) - return jjStartNfaWithStates_4(19, 329, 76); + if ((active5 & 0x4000L) != 0L) + return jjStartNfaWithStates_4(19, 334, 76); break; case 78: case 110: - return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x100000000000000L, active2, 0L, active5, 0L, active6, 0x80000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x200000000000000L, active2, 0L, active5, 0L, active6, 0x2000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x20L, active2, 0x400L, active5, 0L, active6, 0x20000L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0x20000000L, active11, 0x10000040L); + return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x20L, active2, 0x1000L, active5, 0L, active6, 0x800000L, active7, 0L, active8, 0x418000000000000L, active10, 0x8000000000L, active11, 0x4000010000L); case 82: case 114: - return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x8000000000000000L, active2, 0x800L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0x2001L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x100000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa20_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x1000000L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa20_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x40000000L, active8, 0L, active10, 0x4L, active11, 0L); case 89: case 121: - if ((active7 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(19, 470, 76); + if ((active7 & 0x10000000L) != 0L) + return jjStartNfaWithStates_4(19, 476, 76); break; default : break; } - return jjStartNfa_4(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_4(18, active0, active1, active2, 0L, 0L, active5, active6, active7, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa20_4(long old0, long active0, long old1, long active1, long old2, long active2, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa20_4(long old0, long active0, long old1, long active1, long old2, long active2, long old5, long active5, long old6, long active6, long old7, long active7, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_4(18, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active5 &= old5) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_4(18, old0, old1, old2, 0L, 0L, old5, old6, old7, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_4(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_4(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, 0L, active10, active11, 0L); return 20; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x20c0000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x418000000000000L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0xc0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0x3000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 66: case 98: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0x8L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0x100000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0x4000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0x400L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x20000000L, active11, 0L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0x1000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x8000000000L, active11, 0L); case 69: case 101: if ((active1 & 0x4000000L) != 0L) return jjStartNfaWithStates_4(20, 90, 76); - else if ((active2 & 0x8000000000000L) != 0L) - return jjStartNfaWithStates_4(20, 179, 76); - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0x800L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200000000000000L, active10, 0L, active11, 0L); + else if ((active2 & 0x80000000000000L) != 0L) + return jjStartNfaWithStates_4(20, 183, 76); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0x2000L, active6, 0L, active7, 0L, active8, 0L, active10, 0x4L, active11, 0L); case 71: case 103: if ((active1 & 0x20L) != 0L) @@ -25506,24 +25670,24 @@ else if ((active2 & 0x8000000000000L) != 0L) break; case 72: case 104: - if ((active7 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(20, 472, 76); - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x4000000000L, active9, 0L, active10, 0x80000000L, active11, 0L); + if ((active7 & 0x40000000L) != 0L) + return jjStartNfaWithStates_4(20, 478, 76); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x800000000000L, active10, 0x20000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000L, active9, 0L, active10, 0x40000000L, active11, 0L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active10, 0x10000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x4000010000L); case 79: case 111: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0x8000000000000000L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0x1L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0x100000000000000L, active2, 0L, active6, 0x20000L, active7, 0L, active8, 0x10000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0x200000000000000L, active2, 0L, active6, 0x800000L, active7, 0L, active8, 0x2000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x200000000000L, active9, 0L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x40000000000000L, active10, 0x4000000000L, active11, 0L); case 89: case 121: if ((active0 & 0x1000000L) != 0L) @@ -25532,187 +25696,187 @@ else if ((active2 & 0x8000000000000L) != 0L) default : break; } - return jjStartNfa_4(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, active9, active10, active11, 0L); + return jjStartNfa_4(19, active0, active1, active2, 0L, 0L, 0L, active6, active7, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa21_4(long old0, long active0, long old1, long active1, long old2, long active2, long old6, long active6, long old7, long active7, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa21_4(long old0, long active0, long old1, long active1, long old2, long active2, long old6, long active6, long old7, long active7, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_4(19, old0, old1, old2, 0L, 0L, 0L, old6, old7, old8, old9, old10, old11, 0L); + if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active7 &= old7) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_4(19, old0, old1, old2, 0L, 0L, 0L, old6, old7, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_4(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_4(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 21; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000040L); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000010000L); case 65: case 97: - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0x400000000000000L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x4000000008L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0x800L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 68: case 100: - if ((active9 & 0x200000000000000L) != 0L) - return jjStartNfaWithStates_4(21, 633, 76); + if ((active10 & 0x4L) != 0L) + return jjStartNfaWithStates_4(21, 642, 76); break; case 69: case 101: - if ((active2 & 0x400L) != 0L) - return jjStartNfaWithStates_4(21, 138, 76); - else if ((active10 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(21, 669, 76); - else if ((active10 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(21, 670, 76); - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0L, active10, 0x80000000L, active11, 0L); + if ((active2 & 0x1000L) != 0L) + return jjStartNfaWithStates_4(21, 140, 76); + else if ((active10 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_4(21, 679, 76); + else if ((active10 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_4(21, 680, 76); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x20000000000L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa22_4(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_4(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 72: case 104: - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0x1000000000000L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0x80000L, active8, 0x2040000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0x2000000L, active8, 0x408000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x204000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x40800000000000L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa22_4(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_4(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_4(20, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa22_4(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa22_4(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_4(20, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_4(20, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_4(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_4(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 22; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0x400000000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x8L, active11, 0L); case 69: case 101: - if ((active6 & 0x80000L) != 0L) - return jjStartNfaWithStates_4(22, 403, 76); - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + if ((active6 & 0x2000000L) != 0L) + return jjStartNfaWithStates_4(22, 409, 76); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0x800L, active6, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); case 76: case 108: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0x10000000L, active11, 0L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x4000000000L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0x40L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000000L, active11, 0x10000L); case 78: case 110: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x1000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa23_4(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_4(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0x400000000000000L, active10, 0L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa23_4(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000000000L); case 84: case 116: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x4000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x800000000000L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_4(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_4(21, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa23_4(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa23_4(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_4(21, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_4(21, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_4(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + jjStopStringLiteralDfa_4(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); return 23; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa24_4(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 65: case 97: - if ((active10 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(23, 671, 76); + if ((active10 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_4(23, 681, 76); break; case 67: case 99: - return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0x20000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0x800000L, active8, 0L, active10, 0L, active11, 0L); case 75: case 107: - if ((active9 & 0x400000000000000L) != 0L) - return jjStartNfaWithStates_4(23, 634, 76); + if ((active10 & 0x8L) != 0L) + return jjStartNfaWithStates_4(23, 643, 76); break; case 76: case 108: - return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0x40000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0x1000000L, active8, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0x100000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x408000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active9, 0L, active10, 0x10000000L, active11, 0x10000040L); + return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0x4000000000L, active11, 0x4000010000L); case 82: case 114: - if ((active8 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(23, 550, 76); - return jjMoveStringLiteralDfa24_4(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); + if ((active8 & 0x800000000000L) != 0L) + return jjStartNfaWithStates_4(23, 559, 76); + return jjMoveStringLiteralDfa24_4(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0x800L, active6, 0L, active8, 0x200000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000L, active9, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x1000000000000L, active10, 0L, active11, 0L); default : break; } - return jjStartNfa_4(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, active9, active10, active11, 0L); + return jjStartNfa_4(22, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); } -private final int jjMoveStringLiteralDfa24_4(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old9, long active9, long old10, long active10, long old11, long active11) +private final int jjMoveStringLiteralDfa24_4(long old1, long active1, long old2, long active2, long old6, long active6, long old8, long active8, long old10, long active10, long old11, long active11) { - if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active9 &= old9) | (active10 &= old10) | (active11 &= old11)) == 0L) - return jjStartNfa_4(22, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, old9, old10, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active6 &= old6) | (active8 &= old8) | (active10 &= old10) | (active11 &= old11)) == 0L) + return jjStartNfa_4(22, 0L, old1, old2, 0L, 0L, 0L, old6, 0L, old8, 0L, old10, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_4(23, 0L, active1, active2, 0L, 0L, 0L, active6, 0L, active8, 0L, active10, active11, 0L); @@ -25722,44 +25886,44 @@ private final int jjMoveStringLiteralDfa24_4(long old1, long active1, long old2, { case 65: case 97: - if ((active6 & 0x100000L) != 0L) - return jjStartNfaWithStates_4(24, 404, 76); + if ((active6 & 0x4000000L) != 0L) + return jjStartNfaWithStates_4(24, 410, 76); break; case 68: case 100: - return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x40L); + return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x10000L); case 69: case 101: - return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 70: case 102: - return jjMoveStringLiteralDfa25_4(active1, 0x8000000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0x1L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 71: case 103: - if ((active10 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(24, 668, 76); + if ((active10 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_4(24, 678, 76); break; case 73: case 105: - return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0x800L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0x2000L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 77: case 109: - return jjMoveStringLiteralDfa25_4(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_4(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x2000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0x60000L, active8, 0x80000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0x1800000L, active8, 0x10000000000000L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x2008000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x401000000000000L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000L, active10, 0L, active11, 0L); + return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x4000000000L); default : break; } @@ -25777,46 +25941,46 @@ private final int jjMoveStringLiteralDfa25_4(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa26_4(active1, 0x100000000000000L, active2, 0L, active6, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa26_4(active1, 0x200000000000000L, active2, 0L, active6, 0L, active8, 0L, active11, 0L); case 67: case 99: - return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); case 68: case 100: - if ((active8 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(25, 552, 76); + if ((active8 & 0x2000000000000L) != 0L) + return jjStartNfaWithStates_4(25, 561, 76); break; case 69: case 101: - if ((active8 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(25, 551, 76); - else if ((active11 & 0x40L) != 0L) - return jjStartNfaWithStates_4(25, 710, 76); + if ((active8 & 0x1000000000000L) != 0L) + return jjStartNfaWithStates_4(25, 560, 76); + else if ((active11 & 0x10000L) != 0L) + return jjStartNfaWithStates_4(25, 720, 76); break; case 71: case 103: - if ((active6 & 0x40000L) != 0L) - return jjStartNfaWithStates_4(25, 402, 76); + if ((active6 & 0x1000000L) != 0L) + return jjStartNfaWithStates_4(25, 408, 76); break; case 72: case 104: - if ((active8 & 0x2000000000000L) != 0L) - return jjStartNfaWithStates_4(25, 561, 76); + if ((active8 & 0x400000000000000L) != 0L) + return jjStartNfaWithStates_4(25, 570, 76); break; case 78: case 110: - if ((active6 & 0x20000L) != 0L) - return jjStartNfaWithStates_4(25, 401, 76); - return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x80000000000L, active11, 0L); + if ((active6 & 0x800000L) != 0L) + return jjStartNfaWithStates_4(25, 407, 76); + return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa26_4(active1, 0x8000000000000000L, active2, 0x800L, active6, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0x2001L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x4000000000L); case 84: case 116: - return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000L, active11, 0L); + return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x8000000000000L, active11, 0L); default : break; } @@ -25834,31 +25998,31 @@ private final int jjMoveStringLiteralDfa26_4(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa27_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 68: case 100: - if ((active8 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(26, 555, 76); + if ((active8 & 0x10000000000000L) != 0L) + return jjStartNfaWithStates_4(26, 564, 76); break; case 69: case 101: - if ((active8 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(26, 554, 76); + if ((active8 & 0x8000000000000L) != 0L) + return jjStartNfaWithStates_4(26, 563, 76); break; case 71: case 103: - return jjMoveStringLiteralDfa27_4(active1, 0x100000000000000L, active2, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa27_4(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); case 78: case 110: - if ((active2 & 0x800L) != 0L) - return jjStartNfaWithStates_4(26, 139, 76); + if ((active2 & 0x2000L) != 0L) + return jjStartNfaWithStates_4(26, 141, 76); break; case 79: case 111: - return jjMoveStringLiteralDfa27_4(active1, 0L, active2, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa27_4(active1, 0L, active2, 0L, active8, 0x40000000000000L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa27_4(active1, 0x8000000000000000L, active2, 0L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa27_4(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); default : break; } @@ -25870,131 +26034,131 @@ private final int jjMoveStringLiteralDfa27_4(long old1, long active1, long old2, return jjStartNfa_4(25, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_4(26, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_4(26, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); return 27; } switch(curChar) { case 95: - return jjMoveStringLiteralDfa28_4(active1, 0x8000000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa28_4(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa28_4(active1, 0L, active8, 0x200000000000L, active11, 0L); + return jjMoveStringLiteralDfa28_4(active1, 0L, active2, 0L, active8, 0x40000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_4(active1, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa28_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 82: case 114: - return jjMoveStringLiteralDfa28_4(active1, 0x100000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa28_4(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); default : break; } - return jjStartNfa_4(26, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + return jjStartNfa_4(26, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa28_4(long old1, long active1, long old8, long active8, long old11, long active11) +private final int jjMoveStringLiteralDfa28_4(long old1, long active1, long old2, long active2, long old8, long active8, long old11, long active11) { - if (((active1 &= old1) | (active8 &= old8) | (active11 &= old11)) == 0L) - return jjStartNfa_4(26, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active8 &= old8) | (active11 &= old11)) == 0L) + return jjStartNfa_4(26, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_4(27, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_4(27, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); return 28; } switch(curChar) { case 68: case 100: - if ((active8 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(28, 557, 76); + if ((active8 & 0x40000000000000L) != 0L) + return jjStartNfaWithStates_4(28, 566, 76); break; case 69: case 101: - return jjMoveStringLiteralDfa29_4(active1, 0L, active8, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa29_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x4000000000L); case 79: case 111: - return jjMoveStringLiteralDfa29_4(active1, 0x100000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa29_4(active1, 0x200000000000000L, active2, 0L, active8, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa29_4(active1, 0x8000000000000000L, active8, 0L, active11, 0L); + return jjMoveStringLiteralDfa29_4(active1, 0L, active2, 0x1L, active8, 0L, active11, 0L); default : break; } - return jjStartNfa_4(27, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); + return jjStartNfa_4(27, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, active8, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa29_4(long old1, long active1, long old8, long active8, long old11, long active11) +private final int jjMoveStringLiteralDfa29_4(long old1, long active1, long old2, long active2, long old8, long active8, long old11, long active11) { - if (((active1 &= old1) | (active8 &= old8) | (active11 &= old11)) == 0L) - return jjStartNfa_4(27, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active8 &= old8) | (active11 &= old11)) == 0L) + return jjStartNfa_4(27, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, old8, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_4(28, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_4(28, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 29; } switch(curChar) { case 82: case 114: - return jjMoveStringLiteralDfa30_4(active1, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa30_4(active1, 0L, active2, 0L, active11, 0x4000000000L); case 85: case 117: - return jjMoveStringLiteralDfa30_4(active1, 0x100000000000000L, active11, 0L); + return jjMoveStringLiteralDfa30_4(active1, 0x200000000000000L, active2, 0L, active11, 0L); case 89: case 121: - return jjMoveStringLiteralDfa30_4(active1, 0x8000000000000000L, active11, 0L); + return jjMoveStringLiteralDfa30_4(active1, 0L, active2, 0x1L, active11, 0L); default : break; } - return jjStartNfa_4(28, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_4(28, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa30_4(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa30_4(long old1, long active1, long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_4(28, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_4(28, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_4(29, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_4(29, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 30; } switch(curChar) { case 67: case 99: - return jjMoveStringLiteralDfa31_4(active1, 0L, active11, 0x10000000L); + return jjMoveStringLiteralDfa31_4(active1, 0L, active2, 0L, active11, 0x4000000000L); case 80: case 112: - if ((active1 & 0x100000000000000L) != 0L) - return jjStartNfaWithStates_4(30, 120, 76); - return jjMoveStringLiteralDfa31_4(active1, 0x8000000000000000L, active11, 0L); + if ((active1 & 0x200000000000000L) != 0L) + return jjStartNfaWithStates_4(30, 121, 76); + return jjMoveStringLiteralDfa31_4(active1, 0L, active2, 0x1L, active11, 0L); default : break; } - return jjStartNfa_4(29, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_4(29, 0L, active1, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa31_4(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa31_4(long old1, long active1, long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_4(29, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active1 &= old1) | (active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_4(29, 0L, old1, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { - jjStopStringLiteralDfa_4(30, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + jjStopStringLiteralDfa_4(30, 0L, 0L, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); return 31; } switch(curChar) { case 69: case 101: - if ((active1 & 0x8000000000000000L) != 0L) - return jjStartNfaWithStates_4(31, 127, 76); - return jjMoveStringLiteralDfa32_4(active1, 0L, active11, 0x10000000L); + if ((active2 & 0x1L) != 0L) + return jjStartNfaWithStates_4(31, 128, 76); + return jjMoveStringLiteralDfa32_4(active2, 0L, active11, 0x4000000000L); default : break; } - return jjStartNfa_4(30, 0L, active1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); + return jjStartNfa_4(30, 0L, 0L, active2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); } -private final int jjMoveStringLiteralDfa32_4(long old1, long active1, long old11, long active11) +private final int jjMoveStringLiteralDfa32_4(long old2, long active2, long old11, long active11) { - if (((active1 &= old1) | (active11 &= old11)) == 0L) - return jjStartNfa_4(30, 0L, old1, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); + if (((active2 &= old2) | (active11 &= old11)) == 0L) + return jjStartNfa_4(30, 0L, 0L, old2, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, old11, 0L); try { curChar = input_stream.readChar(); } catch(java.io.IOException e) { jjStopStringLiteralDfa_4(31, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, active11, 0L); @@ -26004,7 +26168,7 @@ private final int jjMoveStringLiteralDfa32_4(long old1, long active1, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_4(active11, 0x10000000L); + return jjMoveStringLiteralDfa33_4(active11, 0x4000000000L); default : break; } @@ -26023,8 +26187,8 @@ private final int jjMoveStringLiteralDfa33_4(long old11, long active11) { case 84: case 116: - if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(33, 732, 76); + if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_4(33, 742, 76); break; default : break; @@ -26055,8 +26219,8 @@ private final int jjMoveNfa_4(int startState, int curPos) jjCheckNAddStates(62, 64); else if (curChar == 34) { - if (kind > 746) - kind = 746; + if (kind > 756) + kind = 756; } break; case 58: @@ -26064,12 +26228,22 @@ else if (curChar == 34) jjCheckNAddStates(65, 67); else if (curChar == 39) { - if (kind > 747) - kind = 747; + if (kind > 757) + kind = 757; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 59; break; + case 77: + if ((0x3ff000000000000L & l) != 0L) + { + if (kind > 746) + kind = 746; + jjCheckNAdd(52); + } + if ((0x3ff000000000000L & l) != 0L) + jjCheckNAddTwoStates(51, 41); + break; case 1: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(25, 26); @@ -26077,8 +26251,8 @@ else if (curChar == 39) jjCheckNAddStates(16, 18); if ((0x3ff201000000000L & l) != 0L) { - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); } if ((0x3ff001000000000L & l) != 0L) @@ -26086,26 +26260,6 @@ else if (curChar == 39) if (curChar == 36) jjCheckNAdd(27); break; - case 77: - if ((0x3ff000000000000L & l) != 0L) - { - if (kind > 736) - kind = 736; - jjCheckNAdd(52); - } - if ((0x3ff000000000000L & l) != 0L) - jjCheckNAddTwoStates(51, 41); - break; - case 78: - if (curChar == 32) - jjCheckNAddTwoStates(68, 69); - if (curChar == 32) - jjCheckNAddTwoStates(65, 66); - if (curChar == 32) - jjCheckNAddTwoStates(63, 64); - if (curChar == 32) - jjCheckNAddTwoStates(61, 62); - break; case 31: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(25, 26); @@ -26113,8 +26267,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 32; if ((0x3ff201000000000L & l) != 0L) { - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); } if ((0x3ff001000000000L & l) != 0L) @@ -26122,13 +26276,23 @@ else if (curChar == 38) if (curChar == 36) jjCheckNAdd(27); break; + case 78: + if (curChar == 32) + jjCheckNAddTwoStates(68, 69); + if (curChar == 32) + jjCheckNAddTwoStates(65, 66); + if (curChar == 32) + jjCheckNAddTwoStates(63, 64); + if (curChar == 32) + jjCheckNAddTwoStates(61, 62); + break; case 76: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(25, 26); if ((0x3ff201000000000L & l) != 0L) { - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); } if ((0x3ff001000000000L & l) != 0L) @@ -26139,8 +26303,8 @@ else if (curChar == 38) case 74: if (curChar == 47) { - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(71, 73); } else if (curChar == 42) @@ -26151,8 +26315,8 @@ else if (curChar == 42) jjCheckNAddTwoStates(25, 26); if ((0x3ff201000000000L & l) != 0L) { - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); } if (curChar == 36) @@ -26169,8 +26333,8 @@ else if (curChar == 46) jjCheckNAddTwoStates(51, 52); else if (curChar == 7) { - if (kind > 808) - kind = 808; + if (kind > 819) + kind = 819; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 11; @@ -26178,14 +26342,14 @@ else if (curChar == 34) jjCheckNAddStates(62, 64); if ((0x3ff000000000000L & l) != 0L) { - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAddStates(80, 86); } else if (curChar == 36) { - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); } break; @@ -26202,8 +26366,8 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 740) - kind = 740; + if (curChar == 39 && kind > 750) + kind = 750; break; case 6: if (curChar == 34) @@ -26217,30 +26381,30 @@ else if (curChar == 36) jjCheckNAddStates(62, 64); break; case 10: - if (curChar == 34 && kind > 746) - kind = 746; + if (curChar == 34 && kind > 756) + kind = 756; break; case 11: if (curChar != 45) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(71, 73); break; case 12: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(71, 73); break; case 13: - if ((0x2400L & l) != 0L && kind > 794) - kind = 794; + if ((0x2400L & l) != 0L && kind > 805) + kind = 805; break; case 14: - if (curChar == 10 && kind > 794) - kind = 794; + if (curChar == 10 && kind > 805) + kind = 805; break; case 15: if (curChar == 13) @@ -26257,15 +26421,15 @@ else if (curChar == 36) case 22: if (curChar != 36) break; - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); break; case 23: if ((0x3ff201000000000L & l) == 0L) break; - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); break; case 24: @@ -26283,8 +26447,8 @@ else if (curChar == 36) case 27: if (curChar != 36) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjCheckNAddTwoStates(27, 28); break; case 28: @@ -26294,8 +26458,8 @@ else if (curChar == 36) case 29: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjCheckNAdd(29); break; case 32: @@ -26315,25 +26479,25 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 34; break; case 36: - if (curChar == 34 && kind > 805) - kind = 805; + if (curChar == 34 && kind > 816) + kind = 816; break; case 37: - if (curChar == 7 && kind > 808) - kind = 808; + if (curChar == 7 && kind > 819) + kind = 819; break; case 38: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAddStates(80, 86); break; case 39: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 734) - kind = 734; + if (kind > 744) + kind = 744; jjCheckNAdd(39); break; case 40: @@ -26347,8 +26511,8 @@ else if (curChar == 36) case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 735) - kind = 735; + if (kind > 745) + kind = 745; jjCheckNAdd(43); break; case 44: @@ -26362,22 +26526,22 @@ else if (curChar == 36) case 46: if (curChar != 46) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(47); break; case 47: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(47); break; case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAddStates(93, 95); break; case 49: @@ -26395,8 +26559,8 @@ else if (curChar == 36) case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 736) - kind = 736; + if (kind > 746) + kind = 746; jjCheckNAdd(52); break; case 53: @@ -26411,12 +26575,12 @@ else if (curChar == 36) jjCheckNAddStates(65, 67); break; case 57: - if (curChar == 39 && kind > 747) - kind = 747; + if (curChar == 39 && kind > 757) + kind = 757; break; case 59: - if (curChar == 39 && kind > 748) - kind = 748; + if (curChar == 39 && kind > 758) + kind = 758; break; case 61: if (curChar == 32) @@ -26443,14 +26607,14 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 73; break; case 73: - if ((0xffff7fffffffffffL & l) != 0L && kind > 792) - kind = 792; + if ((0xffff7fffffffffffL & l) != 0L && kind > 803) + kind = 803; break; case 75: if (curChar != 47) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjCheckNAddStates(71, 73); break; default : break; @@ -26485,8 +26649,20 @@ else if (curChar == 92) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; + jjCheckNAdd(23); + } + break; + case 31: + if ((0x7fffffe87fffffeL & l) != 0L) + jjCheckNAddTwoStates(25, 26); + if ((0x7fffffe87fffffeL & l) != 0L) + jjCheckNAddStates(68, 70); + if ((0x7fffffe87fffffeL & l) != 0L) + { + if (kind > 813) + kind = 813; jjCheckNAdd(23); } break; @@ -26497,25 +26673,13 @@ else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; else if ((0x1000000010L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 761) + kind = 761; } if ((0x10000000100000L & l) != 0L) { - if (kind > 752) - kind = 752; - } - break; - case 31: - if ((0x7fffffe87fffffeL & l) != 0L) - jjCheckNAddTwoStates(25, 26); - if ((0x7fffffe87fffffeL & l) != 0L) - jjCheckNAddStates(68, 70); - if ((0x7fffffe87fffffeL & l) != 0L) - { - if (kind > 802) - kind = 802; - jjCheckNAdd(23); + if (kind > 762) + kind = 762; } break; case 76: @@ -26525,8 +26689,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); } break; @@ -26535,8 +26699,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddTwoStates(25, 26); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); } break; @@ -26549,8 +26713,8 @@ else if (curChar == 96) jjCheckNAddStates(87, 89); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); } if ((0x20000000200000L & l) != 0L) @@ -26573,8 +26737,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(62, 64); break; case 12: - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjAddStates(71, 73); break; case 17: @@ -26593,21 +26757,21 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(87, 89); break; case 21: - if (curChar == 96 && kind > 801) - kind = 801; + if (curChar == 96 && kind > 812) + kind = 812; break; case 22: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); break; case 23: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); break; case 24: @@ -26621,15 +26785,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjAddStates(108, 109); break; case 29: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjstateSet[jjnewStateCnt++] = 29; break; case 30: @@ -26659,32 +26823,32 @@ else if ((0x100000001000000L & l) != 0L) jjAddStates(100, 107); break; case 62: - if ((0x1000000010L & l) != 0L && kind > 751) - kind = 751; + if ((0x1000000010L & l) != 0L && kind > 761) + kind = 761; break; case 64: - if ((0x10000000100000L & l) != 0L && kind > 752) - kind = 752; + if ((0x10000000100000L & l) != 0L && kind > 762) + kind = 762; break; case 66: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; break; case 67: - if ((0x8000000080000L & l) != 0L && kind > 753) - kind = 753; + if ((0x8000000080000L & l) != 0L && kind > 763) + kind = 763; break; case 69: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 70; break; case 70: - if ((0x400000004000L & l) != 0L && kind > 754) - kind = 754; + if ((0x400000004000L & l) != 0L && kind > 764) + kind = 764; break; case 73: - if (kind > 792) - kind = 792; + if (kind > 803) + kind = 803; break; default : break; } @@ -26716,8 +26880,8 @@ else if ((0x100000001000000L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -26728,8 +26892,8 @@ else if ((0x100000001000000L & l) != 0L) case 31: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -26740,8 +26904,8 @@ else if ((0x100000001000000L & l) != 0L) case 76: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -26752,8 +26916,8 @@ else if ((0x100000001000000L & l) != 0L) case 80: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -26762,8 +26926,8 @@ else if ((0x100000001000000L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -26776,8 +26940,8 @@ else if ((0x100000001000000L & l) != 0L) case 12: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 794) - kind = 794; + if (kind > 805) + kind = 805; jjAddStates(71, 73); break; case 18: @@ -26788,15 +26952,15 @@ else if ((0x100000001000000L & l) != 0L) case 22: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); break; case 23: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 802) - kind = 802; + if (kind > 813) + kind = 813; jjCheckNAdd(23); break; case 24: @@ -26810,15 +26974,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjAddStates(108, 109); break; case 29: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 804) - kind = 804; + if (kind > 815) + kind = 815; jjstateSet[jjnewStateCnt++] = 29; break; case 33: @@ -26831,8 +26995,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(65, 67); break; case 73: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 792) - kind = 792; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 803) + kind = 803; break; default : break; } @@ -26948,12 +27112,13 @@ private static final boolean jjCanMove_1(int hiByte, int i1, int i2, long l1, lo 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, null, null, null, null, null, -null, null, null, null, null, null, null, null, "\50", "\51", null, null, null, null, -"\173", "\175", "\133", "\135", "\73", "\56", "\54", "\75", "\76", "\74", "\77", -"\72", "\74\75", "\76\75", "\74\76", "\41\75", "\53", "\55", "\52", "\57", "\45", -"\174\174", "\75\76", "\56\56", "\47", "\42", "\174", "\136", "\44", "\72\72", null, null, -null, null, null, "\57\52\53", "\52\57", 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, "\50", "\51", null, null, null, null, "\173", "\175", +"\133", "\135", "\73", "\56", "\54", "\75", "\76", "\74", "\77", "\72", "\74\75", +"\76\75", "\74\76", "\41\75", "\53", "\55", "\55\76", "\52", "\57", "\45", "\174\174", +"\75\76", "\56\56", "\47", "\42", "\174", "\136", "\44", "\72\72", null, null, null, +null, null, "\57\52\53", "\52\57", null, null, null, null, null, null, null, null, +null, null, null, null, null, null, null, null, null, }; public static final String[] lexStateNames = { "DEFAULT", "DQID", @@ -26995,32 +27160,32 @@ private static final boolean jjCanMove_1(int hiByte, int i1, int i2, long l1, lo -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 5, 6, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 5, 6, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, }; static final long[] jjtoToken = { 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, - 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xfffffdf1ffffffffL, - 0x13fc0c1ffffL, + 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xfff7c7ffffffffffL, + 0x9fe060fffffffL, }; static final long[] jjtoSkip = { 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, - 0x1c3e0000L, + 0xe1f0000000L, }; static final long[] jjtoSpecial = { 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, - 0x18000000L, + 0xc000000000L, }; static final long[] jjtoMore = { 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, - 0x23000000L, + 0x11800000000L, }; protected SimpleCharStream input_stream; private final int[] jjrounds = new int[94]; @@ -27167,18 +27332,18 @@ public Token getNextToken() jjmatchedKind = 0x7fffffff; jjmatchedPos = 0; curPos = jjMoveStringLiteralDfa0_5(); - if (jjmatchedPos == 0 && jjmatchedKind > 797) + if (jjmatchedPos == 0 && jjmatchedKind > 808) { - jjmatchedKind = 797; + jjmatchedKind = 808; } break; case 6: jjmatchedKind = 0x7fffffff; jjmatchedPos = 0; curPos = jjMoveStringLiteralDfa0_6(); - if (jjmatchedPos == 0 && jjmatchedKind > 797) + if (jjmatchedPos == 0 && jjmatchedKind > 808) { - jjmatchedKind = 797; + jjmatchedKind = 808; } break; } @@ -27254,13 +27419,13 @@ void SkipLexicalActions(Token matchedToken) { switch(jjmatchedKind) { - case 795 : + case 806 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); popState(); break; - case 796 : + case 807 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); @@ -27275,14 +27440,14 @@ void MoreLexicalActions() jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch(jjmatchedKind) { - case 792 : + case 803 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; pushState(); break; - case 793 : + case 804 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen)); @@ -27297,73 +27462,73 @@ void TokenLexicalActions(Token matchedToken) { switch(jjmatchedKind) { - case 156 : + case 160 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); beforeTableName(); break; - case 162 : + case 166 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); beforeTableName(); break; - case 224 : + case 228 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); beforeTableName(); break; - case 266 : + case 270 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); beforeTableName(); break; - case 281 : + case 285 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); beforeTableName(); break; - case 327 : + case 332 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); beforeTableName(); break; - case 508 : + case 517 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); afterTableName(); break; - case 518 : + case 527 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); afterTableName(); break; - case 610 : + case 619 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); beforeTableName(); break; - case 663 : + case 673 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); beforeTableName(); break; - case 677 : + case 687 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); afterTableName(); break; - case 802 : + case 813 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/trait/TraitUtils.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/trait/TraitUtils.java index 408a552323038..b007a97331549 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/trait/TraitUtils.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/trait/TraitUtils.java @@ -17,6 +17,7 @@ package org.apache.ignite.internal.processors.query.calcite.trait; +import java.math.BigDecimal; import java.util.Collection; import java.util.Collections; import java.util.HashMap; @@ -321,6 +322,10 @@ public static RelInput changeTraits(RelInput input, RelTrait... traits) { return input.getFloat(tag); } + @Override public BigDecimal getBigDecimal(String tag) { + return input.getBigDecimal(tag); + } + @Override public > E getEnum(String tag, Class enumClass) { return input.getEnum(tag, enumClass); } diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/HashAggregateExecutionTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/HashAggregateExecutionTest.java index a7aff75cf9af4..95b8ae9a4346e 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/HashAggregateExecutionTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/exec/rel/HashAggregateExecutionTest.java @@ -166,6 +166,7 @@ public void countOfEmptyWithRewind() { false, false, false, + ImmutableList.of(), ImmutableIntList.of(), -1, null, diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/IntervalTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/IntervalTest.java index 1d03d5f36337e..11f9c66605cd5 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/IntervalTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/IntervalTest.java @@ -36,8 +36,8 @@ public class IntervalTest extends AbstractBasicIntegrationTest { public void testIntervalResult() { assertEquals(Duration.ofSeconds(1), eval("INTERVAL 1 SECONDS")); assertEquals(Duration.ofSeconds(-1), eval("INTERVAL -1 SECONDS")); - assertThrows("SELECT INTERVAL '123' SECONDS", IgniteSQLException.class, "exceeds precision"); assertEquals(Duration.ofSeconds(123), eval("INTERVAL 123 SECONDS")); + assertEquals(Duration.ofSeconds(123), eval("INTERVAL '123' SECONDS")); assertEquals(Duration.ofSeconds(123), eval("INTERVAL '123' SECONDS(3)")); assertEquals(Duration.ofMinutes(2), eval("INTERVAL 2 MINUTES")); assertEquals(Duration.ofHours(3), eval("INTERVAL 3 HOURS")); @@ -363,6 +363,7 @@ public void testScalarCache() { */ @Test public void testExtract() { + assertEquals(0L, eval("EXTRACT(DAY FROM INTERVAL 1 MONTH)")); assertEquals(2L, eval("EXTRACT(MONTH FROM INTERVAL 14 MONTHS)")); assertEquals(0L, eval("EXTRACT(MONTH FROM INTERVAL 1 YEAR)")); assertEquals(2L, eval("EXTRACT(MONTH FROM INTERVAL '1-2' YEAR TO MONTH)")); @@ -382,7 +383,7 @@ public void testExtract() { assertEquals(-4L, eval("EXTRACT(SECOND FROM INTERVAL '-1 2:3:4.567' DAY TO SECOND)")); assertEquals(-4567L, eval("EXTRACT(MILLISECOND FROM INTERVAL '-1 2:3:4.567' DAY TO SECOND)")); - assertThrows("SELECT EXTRACT(DAY FROM INTERVAL 1 MONTH)", IgniteSQLException.class, "Cannot apply"); + assertThrows("SELECT EXTRACT(DOW FROM INTERVAL 1 MONTH)", IgniteSQLException.class, "Cannot apply"); assertThrows("SELECT EXTRACT(MONTH FROM INTERVAL 1 DAY)", IgniteSQLException.class, "Cannot apply"); } diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/StdSqlOperatorsTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/StdSqlOperatorsTest.java index 391fd1c551679..98da886d3950a 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/StdSqlOperatorsTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/StdSqlOperatorsTest.java @@ -192,19 +192,23 @@ public void testMathFunctions() { assertExpression("EXP(2)").returns(Math.exp(2)).check(); assertExpression("POWER(2, 2)").returns(Math.pow(2, 2)).check(); assertExpression("LN(2)").returns(Math.log(2)).check(); - assertExpression("LOG10(2) ").returns(Math.log10(2)).check(); + assertExpression("LOG10(2)").returns(Math.log(2) / Math.log(10)).check(); assertExpression("ABS(-1)").returns(Math.abs(-1)).check(); assertExpression("RAND()").check(); assertExpression("RAND_INTEGER(10)").check(); assertExpression("ACOS(1)").returns(Math.acos(1)).check(); + assertExpression("ACOSH(1)").returns(0d).check(); assertExpression("ASIN(1)").returns(Math.asin(1)).check(); + assertExpression("ASINH(0)").returns(0d).check(); assertExpression("ATAN(1)").returns(Math.atan(1)).check(); + assertExpression("ATANH(0)").returns(0d).check(); assertExpression("ATAN2(1, 1)").returns(Math.atan2(1, 1)).check(); assertExpression("SQRT(4)").returns(Math.sqrt(4)).check(); assertExpression("CBRT(8)").returns(Math.cbrt(8)).check(); assertExpression("COS(1)").returns(Math.cos(1)).check(); assertExpression("COSH(1)").returns(Math.cosh(1)).check(); assertExpression("COT(1)").returns(1.0d / Math.tan(1)).check(); + assertExpression("COTH(1)").returns(1.0d / Math.tanh(1)).check(); assertExpression("DEGREES(1)").returns(Math.toDegrees(1)).check(); assertExpression("RADIANS(1)").returns(Math.toRadians(1)).check(); assertExpression("ROUND(1.7)").returns(BigDecimal.valueOf(2)).check(); @@ -213,6 +217,10 @@ public void testMathFunctions() { assertExpression("SINH(1)").returns(Math.sinh(1)).check(); assertExpression("TAN(1)").returns(Math.tan(1)).check(); assertExpression("TANH(1)").returns(Math.tanh(1)).check(); + assertExpression("SEC(1)").returns(1d / Math.cos(1)).check(); + assertExpression("SECH(1)").returns(1d / Math.cosh(1)).check(); + assertExpression("CSC(1)").returns(1d / Math.sin(1)).check(); + assertExpression("CSCH(1)").returns(1d / Math.sinh(1)).check(); assertExpression("TRUNCATE(1.7)").returns(BigDecimal.valueOf(1)).check(); assertExpression("PI").returns(Math.PI).check(); } diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/PlannerTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/PlannerTest.java index 036c6dd10bd53..baf2809de5467 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/PlannerTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/PlannerTest.java @@ -850,63 +850,4 @@ public void testMergeJoinIsNotAppliedForNonEquiJoin() throws Exception { " IgniteTableScan(table=[[PUBLIC, DEPT]])\n", RelOptUtil.toString(phys)); } - - /** */ - @Test - public void testNotStandardFunctions() throws Exception { - IgniteSchema publicSchema = new IgniteSchema("PUBLIC"); - IgniteTypeFactory f = new IgniteTypeFactory(IgniteTypeSystem.INSTANCE); - - publicSchema.addTable( - "TEST", - new TestTable( - new RelDataTypeFactory.Builder(f) - .add("ID", f.createJavaType(Integer.class)) - .add("VAL", f.createJavaType(String.class)) - .build()) { - - @Override public IgniteDistribution distribution() { - return IgniteDistributions.affinity(0, "TEST", "hash"); - } - } - ); - - String queries[] = { - "select REVERSE(val) from TEST", // MYSQL - "select DECODE(id, 0, val, '') from TEST" // ORACLE - }; - - for (String sql : queries) { - IgniteRel phys = physicalPlan( - sql, - publicSchema - ); - - checkSplitAndSerialization(phys, publicSchema); - } - } - - /** */ - @Test - public void testMinusDateSerialization() throws Exception { - IgniteSchema publicSchema = new IgniteSchema("PUBLIC"); - - IgniteRel phys = physicalPlan("SELECT (DATE '2021-03-01' - DATE '2021-01-01') MONTHS", publicSchema); - - checkSplitAndSerialization(phys, publicSchema); - } - - /** */ - @Test - public void testFloatSerialization() throws Exception { - IgniteSchema publicSchema = new IgniteSchema("PUBLIC"); - - IgniteRel phys = physicalPlan("SELECT " + Integer.MAX_VALUE + "::FLOAT, " + - Long.MAX_VALUE + "::FLOAT" + - "-17014118346046923173168730371588410572::FLOAT" + - "-17014118346046923173.168730371588410572::FLOAT", - publicSchema); - - checkSplitAndSerialization(phys, publicSchema); - } } diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/SerializationPlannerTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/SerializationPlannerTest.java new file mode 100644 index 0000000000000..15661476be03a --- /dev/null +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/SerializationPlannerTest.java @@ -0,0 +1,93 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.internal.processors.query.calcite.planner; + +import org.apache.calcite.rel.core.Aggregate; +import org.apache.calcite.sql.SqlKind; +import org.apache.ignite.internal.processors.query.calcite.rel.IgniteRel; +import org.apache.ignite.internal.processors.query.calcite.schema.IgniteSchema; +import org.apache.ignite.internal.processors.query.calcite.trait.IgniteDistributions; +import org.junit.Test; + +import static org.apache.ignite.internal.processors.query.calcite.trait.IgniteDistributions.single; + +/** + * Test fragments serialization/deserialization (with different SQL operators). + */ +public class SerializationPlannerTest extends AbstractPlannerTest { + /** */ + @Test + public void testNotStandardFunctionsSerialization() throws Exception { + IgniteSchema publicSchema = createSchema( + createTable("TEST", IgniteDistributions.affinity(0, "TEST", "hash"), + "ID", Integer.class, "VAL", String.class) + ); + + String queries[] = { + "select REVERSE(val) from TEST", // MYSQL + "select DECODE(id, 0, val, '') from TEST" // ORACLE + }; + + for (String sql : queries) { + IgniteRel phys = physicalPlan(sql, publicSchema); + + checkSplitAndSerialization(phys, publicSchema); + } + } + + /** */ + @Test + public void testMinusDateSerialization() throws Exception { + IgniteSchema publicSchema = new IgniteSchema("PUBLIC"); + + IgniteRel phys = physicalPlan("SELECT (DATE '2021-03-01' - DATE '2021-01-01') MONTHS", publicSchema); + + checkSplitAndSerialization(phys, publicSchema); + } + + /** */ + @Test + public void testFloatSerialization() throws Exception { + IgniteSchema publicSchema = new IgniteSchema("PUBLIC"); + + IgniteRel phys = physicalPlan("SELECT " + Integer.MAX_VALUE + "::FLOAT, " + + Long.MAX_VALUE + "::FLOAT" + + "-17014118346046923173168730371588410572::FLOAT" + + "-17014118346046923173.168730371588410572::FLOAT", + publicSchema); + + checkSplitAndSerialization(phys, publicSchema); + } + + /** */ + @Test + public void testLiteralAggSerialization() throws Exception { + IgniteSchema publicSchema = createSchema( + createTable("ORDERS", single(), "ID", Integer.class), + createTable("ORDER_ITEMS", single(), "ID", Integer.class, "ORDER_ID", Integer.class) + ); + + assertPlan("SELECT * FROM orders WHERE id not in (SELECT order_id FROM order_items)", publicSchema, + hasChildThat(isInstanceOf(Aggregate.class) + .and(n -> n.getAggCallList().stream().anyMatch( + aggCall -> aggCall.getAggregation().getKind() == SqlKind.LITERAL_AGG) + ) + ) + ); + } +} diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/SortAggregatePlannerTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/SortAggregatePlannerTest.java index dd23d6a8e0ea3..9116092c0d7db 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/SortAggregatePlannerTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/SortAggregatePlannerTest.java @@ -212,7 +212,7 @@ public void testEmptyCollationPassThroughLimit() throws Exception { assertPlan("SELECT (SELECT test.a FROM test t ORDER BY 1 LIMIT 1) FROM test", publicSchema, hasChildThat(isInstanceOf(IgniteCorrelatedNestedLoopJoin.class) - .and(input(1, hasChildThat(isInstanceOf(IgniteLimit.class) + .and(input(1, nodeOrAnyChild(isInstanceOf(IgniteLimit.class) .and(input(isInstanceOf(IgniteSort.class))))))) ); } diff --git a/modules/calcite/src/test/java/org/apache/ignite/testsuites/PlannerTestSuite.java b/modules/calcite/src/test/java/org/apache/ignite/testsuites/PlannerTestSuite.java index d7f185e32cee3..6f9a452e70973 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/testsuites/PlannerTestSuite.java +++ b/modules/calcite/src/test/java/org/apache/ignite/testsuites/PlannerTestSuite.java @@ -34,6 +34,7 @@ import org.apache.ignite.internal.processors.query.calcite.planner.PlannerTest; import org.apache.ignite.internal.processors.query.calcite.planner.PlannerTimeoutTest; import org.apache.ignite.internal.processors.query.calcite.planner.ProjectFilterScanMergePlannerTest; +import org.apache.ignite.internal.processors.query.calcite.planner.SerializationPlannerTest; import org.apache.ignite.internal.processors.query.calcite.planner.SetOpPlannerTest; import org.apache.ignite.internal.processors.query.calcite.planner.SortAggregatePlannerTest; import org.apache.ignite.internal.processors.query.calcite.planner.SortedIndexSpoolPlannerTest; @@ -77,7 +78,8 @@ IndexSearchBoundsPlannerTest.class, InlineIndexScanPlannerTest.class, - HintsTestSuite.class + HintsTestSuite.class, + SerializationPlannerTest.class, }) public class PlannerTestSuite { }