diff --git a/src/grammar/spark/SqlBase.g4 b/src/grammar/spark/SqlBase.g4 index 738ebdb..7c51982 100644 --- a/src/grammar/spark/SqlBase.g4 +++ b/src/grammar/spark/SqlBase.g4 @@ -17,66 +17,62 @@ grammar SqlBase; @parser::members { - /** - * When false, INTERSECT is given the greater precedence over the other set - * operations (UNION, EXCEPT and MINUS) as per the SQL standard. - */ -// public boolean legacy_setops_precedence_enbled = false; - legacy_setops_precedence_enbled = false; - /** - * When false, a literal with an exponent would be converted into - * double type rather than decimal type. - */ -// public boolean legacy_exponent_literal_as_decimal_enabled = false; - legacy_exponent_literal_as_decimal_enabled = false; - /** - * When true, the behavior of keywords follows ANSI SQL standard. - */ -// public boolean SQL_standard_keyword_behavior = false; - SQL_standard_keyword_behavior = false; + /** + * When false, INTERSECT is given the greater precedence over the other set + * operations (UNION, EXCEPT and MINUS) as per the SQL standard. + */ + // public boolean legacy_setops_precedence_enbled = false; + /** + * When false, a literal with an exponent would be converted into + * double type rather than decimal type. + */ + // public boolean legacy_exponent_literal_as_decimal_enabled = false; + global.legacy_exponent_literal_as_decimal_enabled = false; + /** + * When true, the behavior of keywords follows ANSI SQL standard. + */ + // public boolean SQL_standard_keyword_behavior = false; + + global.legacy_setops_precedence_enbled = false; + global.legacy_exponent_literal_as_decimal_enabled = false; + global.SQL_standard_keyword_behavior = false; } -//@lexer::members { -// /** -// * Verify whether current token is a valid decimal token (which contains dot). -// * Returns true if the character that follows the token is not a digit or letter or underscore. -// * -// * For example: -// * For char stream "2.3", "2." is not a valid decimal token, because it is followed by digit '3'. -// * For char stream "2.3_", "2.3" is not a valid decimal token, because it is followed by '_'. -// * For char stream "2.3W", "2.3" is not a valid decimal token, because it is followed by 'W'. -// * For char stream "12.0D 34.E2+0.12 " 12.0D is a valid decimal token because it is followed -// * by a space. 34.E2 is a valid decimal token because it is followed by symbol '+' -// * which is not a digit or letter or underscore. -// */ -// public boolean isValidDecimal() { -// int nextChar = _input.LA(1); -// if (nextChar >= 'A' && nextChar <= 'Z' || nextChar >= '0' && nextChar <= '9' || -// nextChar == '_') { -// return false; -// } else { -// return true; -// } -// } -// -// /** -// * This method will be called when we see '/*' and try to match it as a bracketed comment. -// * If the next character is '+', it should be parsed as hint later, and we cannot match -// * it as a bracketed comment. -// * -// * Returns true if the next character is '+'. -// */ -// public boolean isHint() { -// int nextChar = _input.LA(1); -// if (nextChar == '+') { -// return true; -// } else { -// return false; -// } -// } -//} +@lexer::members { + var ctx = this + /** + * Verify whether current token is a valid decimal token (which contains dot). + * Returns true if the character that follows the token is not a digit or letter or underscore. + * + * For example: + * For char stream "2.3", "2." is not a valid decimal token, because it is followed by digit '3'. + * For char stream "2.3_", "2.3" is not a valid decimal token, because it is followed by '_'. + * For char stream "2.3W", "2.3" is not a valid decimal token, because it is followed by 'W'. + * For char stream "12.0D 34.E2+0.12 " 12.0D is a valid decimal token because it is followed + * by a space. 34.E2 is a valid decimal token because it is followed by symbol '+' + * which is not a digit or letter or underscore. + */ + global.isValidDecimal = function() { + let nextChar = ctx._input.LA(1); + return !(nextChar >= 'A' && nextChar <= 'Z' || nextChar >= '0' && nextChar <= '9' || nextChar == '_') + } -program: statement EOF; + /** + * This method will be called when we see '/*' and try to match it as a bracketed comment. + * If the next character is '+', it should be parsed as hint later, and we cannot match + * it as a bracketed comment. + * + * Returns true if the next character is '+'. + */ + global.isHint = function() { + let nextChar = ctx._input.LA(1); + return nextChar == '+' + } +} + +program + : singleStatement EOF + ; singleStatement : statement ';'* EOF diff --git a/src/lib/spark/SqlBase.interp b/src/lib/spark/SqlBase.interp new file mode 100644 index 0000000..336eba2 --- /dev/null +++ b/src/lib/spark/SqlBase.interp @@ -0,0 +1,735 @@ +token literal names: +null +';' +'(' +')' +',' +'.' +'/*+' +'*/' +'->' +'[' +']' +':' +'ADD' +'AFTER' +'ALL' +'ALTER' +'ANALYZE' +'AND' +'ANTI' +'ANY' +'ARCHIVE' +'ARRAY' +'AS' +'ASC' +'AT' +'AUTHORIZATION' +'BETWEEN' +'BOTH' +'BUCKET' +'BUCKETS' +'BY' +'CACHE' +'CASCADE' +'CASE' +'CAST' +'CHANGE' +'CHECK' +'CLEAR' +'CLUSTER' +'CLUSTERED' +'CODEGEN' +'COLLATE' +'COLLECTION' +'COLUMN' +'COLUMNS' +'COMMENT' +'COMMIT' +'COMPACT' +'COMPACTIONS' +'COMPUTE' +'CONCATENATE' +'CONSTRAINT' +'COST' +'CREATE' +'CROSS' +'CUBE' +'CURRENT' +'CURRENT_DATE' +'CURRENT_TIME' +'CURRENT_TIMESTAMP' +'CURRENT_USER' +'DATA' +'DATABASE' +null +'DBPROPERTIES' +'DEFINED' +'DELETE' +'DELIMITED' +'DESC' +'DESCRIBE' +'DFS' +'DIRECTORIES' +'DIRECTORY' +'DISTINCT' +'DISTRIBUTE' +'DIV' +'DROP' +'ELSE' +'END' +'ESCAPE' +'ESCAPED' +'EXCEPT' +'EXCHANGE' +'EXISTS' +'EXPLAIN' +'EXPORT' +'EXTENDED' +'EXTERNAL' +'EXTRACT' +'FALSE' +'FETCH' +'FIELDS' +'FILTER' +'FILEFORMAT' +'FIRST' +'FOLLOWING' +'FOR' +'FOREIGN' +'FORMAT' +'FORMATTED' +'FROM' +'FULL' +'FUNCTION' +'FUNCTIONS' +'GLOBAL' +'GRANT' +'GROUP' +'GROUPING' +'HAVING' +'IF' +'IGNORE' +'IMPORT' +'IN' +'INDEX' +'INDEXES' +'INNER' +'INPATH' +'INPUTFORMAT' +'INSERT' +'INTERSECT' +'INTERVAL' +'INTO' +'IS' +'ITEMS' +'JOIN' +'KEYS' +'LAST' +'LATERAL' +'LAZY' +'LEADING' +'LEFT' +'LIKE' +'LIMIT' +'LINES' +'LIST' +'LOAD' +'LOCAL' +'LOCATION' +'LOCK' +'LOCKS' +'LOGICAL' +'MACRO' +'MAP' +'MATCHED' +'MERGE' +'MSCK' +'NAMESPACE' +'NAMESPACES' +'NATURAL' +'NO' +null +'NULL' +'NULLS' +'OF' +'ON' +'ONLY' +'OPTION' +'OPTIONS' +'OR' +'ORDER' +'OUT' +'OUTER' +'OUTPUTFORMAT' +'OVER' +'OVERLAPS' +'OVERLAY' +'OVERWRITE' +'PARTITION' +'PARTITIONED' +'PARTITIONS' +'PERCENT' +'PIVOT' +'PLACING' +'POSITION' +'PRECEDING' +'PRIMARY' +'PRINCIPALS' +'PROPERTIES' +'PURGE' +'QUERY' +'RANGE' +'RECORDREADER' +'RECORDWRITER' +'RECOVER' +'REDUCE' +'REFERENCES' +'REFRESH' +'RENAME' +'REPAIR' +'REPLACE' +'RESET' +'RESTRICT' +'REVOKE' +'RIGHT' +null +'ROLE' +'ROLES' +'ROLLBACK' +'ROLLUP' +'ROW' +'ROWS' +'SCHEMA' +'SELECT' +'SEMI' +'SEPARATED' +'SERDE' +'SERDEPROPERTIES' +'SESSION_USER' +'SET' +'MINUS' +'SETS' +'SHOW' +'SKEWED' +'SOME' +'SORT' +'SORTED' +'START' +'STATISTICS' +'STORED' +'STRATIFY' +'STRUCT' +'SUBSTR' +'SUBSTRING' +'TABLE' +'TABLES' +'TABLESAMPLE' +'TBLPROPERTIES' +null +'TERMINATED' +'THEN' +'TIME' +'TO' +'TOUCH' +'TRAILING' +'TRANSACTION' +'TRANSACTIONS' +'TRANSFORM' +'TRIM' +'TRUE' +'TRUNCATE' +'TYPE' +'UNARCHIVE' +'UNBOUNDED' +'UNCACHE' +'UNION' +'UNIQUE' +'UNKNOWN' +'UNLOCK' +'UNSET' +'UPDATE' +'USE' +'USER' +'USING' +'VALUES' +'VIEW' +'VIEWS' +'WHEN' +'WHERE' +'WINDOW' +'WITH' +'ZONE' +null +'<=>' +'<>' +'!=' +'<' +null +'>' +null +'+' +'-' +'*' +'/' +'%' +'~' +'&' +'|' +'||' +'^' +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null + +token symbolic names: +null +null +null +null +null +null +null +null +null +null +null +null +ADD +AFTER +ALL +ALTER +ANALYZE +AND +ANTI +ANY +ARCHIVE +ARRAY +AS +ASC +AT +AUTHORIZATION +BETWEEN +BOTH +BUCKET +BUCKETS +BY +CACHE +CASCADE +CASE +CAST +CHANGE +CHECK +CLEAR +CLUSTER +CLUSTERED +CODEGEN +COLLATE +COLLECTION +COLUMN +COLUMNS +COMMENT +COMMIT +COMPACT +COMPACTIONS +COMPUTE +CONCATENATE +CONSTRAINT +COST +CREATE +CROSS +CUBE +CURRENT +CURRENT_DATE +CURRENT_TIME +CURRENT_TIMESTAMP +CURRENT_USER +DATA +DATABASE +DATABASES +DBPROPERTIES +DEFINED +DELETE +DELIMITED +DESC +DESCRIBE +DFS +DIRECTORIES +DIRECTORY +DISTINCT +DISTRIBUTE +DIV +DROP +ELSE +END +ESCAPE +ESCAPED +EXCEPT +EXCHANGE +EXISTS +EXPLAIN +EXPORT +EXTENDED +EXTERNAL +EXTRACT +FALSE +FETCH +FIELDS +FILTER +FILEFORMAT +FIRST +FOLLOWING +FOR +FOREIGN +FORMAT +FORMATTED +FROM +FULL +FUNCTION +FUNCTIONS +GLOBAL +GRANT +GROUP +GROUPING +HAVING +IF +IGNORE +IMPORT +IN +INDEX +INDEXES +INNER +INPATH +INPUTFORMAT +INSERT +INTERSECT +INTERVAL +INTO +IS +ITEMS +JOIN +KEYS +LAST +LATERAL +LAZY +LEADING +LEFT +LIKE +LIMIT +LINES +LIST +LOAD +LOCAL +LOCATION +LOCK +LOCKS +LOGICAL +MACRO +MAP +MATCHED +MERGE +MSCK +NAMESPACE +NAMESPACES +NATURAL +NO +NOT +NULL +NULLS +OF +ON +ONLY +OPTION +OPTIONS +OR +ORDER +OUT +OUTER +OUTPUTFORMAT +OVER +OVERLAPS +OVERLAY +OVERWRITE +PARTITION +PARTITIONED +PARTITIONS +PERCENTLIT +PIVOT +PLACING +POSITION +PRECEDING +PRIMARY +PRINCIPALS +PROPERTIES +PURGE +QUERY +RANGE +RECORDREADER +RECORDWRITER +RECOVER +REDUCE +REFERENCES +REFRESH +RENAME +REPAIR +REPLACE +RESET +RESTRICT +REVOKE +RIGHT +RLIKE +ROLE +ROLES +ROLLBACK +ROLLUP +ROW +ROWS +SCHEMA +SELECT +SEMI +SEPARATED +SERDE +SERDEPROPERTIES +SESSION_USER +SET +SETMINUS +SETS +SHOW +SKEWED +SOME +SORT +SORTED +START +STATISTICS +STORED +STRATIFY +STRUCT +SUBSTR +SUBSTRING +TABLE +TABLES +TABLESAMPLE +TBLPROPERTIES +TEMPORARY +TERMINATED +THEN +TIME +TO +TOUCH +TRAILING +TRANSACTION +TRANSACTIONS +TRANSFORM +TRIM +TRUE +TRUNCATE +TYPE +UNARCHIVE +UNBOUNDED +UNCACHE +UNION +UNIQUE +UNKNOWN +UNLOCK +UNSET +UPDATE +USE +USER +USING +VALUES +VIEW +VIEWS +WHEN +WHERE +WINDOW +WITH +ZONE +EQ +NSEQ +NEQ +NEQJ +LT +LTE +GT +GTE +PLUS +MINUS +ASTERISK +SLASH +PERCENT +TILDE +AMPERSAND +PIPE +CONCAT_PIPE +HAT +STRING +BIGINT_LITERAL +SMALLINT_LITERAL +TINYINT_LITERAL +INTEGER_VALUE +EXPONENT_VALUE +DECIMAL_VALUE +FLOAT_LITERAL +DOUBLE_LITERAL +BIGDECIMAL_LITERAL +IDENTIFIER +BACKQUOTED_IDENTIFIER +SIMPLE_COMMENT +BRACKETED_COMMENT +WS +UNRECOGNIZED + +rule names: +program +singleStatement +singleExpression +singleTableIdentifier +singleMultipartIdentifier +singleDataType +singleTableSchema +statement +configKey +unsupportedHiveNativeCommands +createTableHeader +replaceTableHeader +bucketSpec +skewSpec +locationSpec +commentSpec +query +insertInto +partitionSpecLocation +partitionSpec +partitionVal +namespace +describeFuncName +describeColName +ctes +namedQuery +tableProvider +createTableClauses +tablePropertyList +tableProperty +tablePropertyKey +tablePropertyValue +constantList +nestedConstantList +createFileFormat +fileFormat +storageHandler +resource +dmlStatementNoWith +queryOrganization +multiInsertQueryBody +queryTerm +queryPrimary +sortItem +fromStatement +fromStatementBody +querySpecification +transformClause +selectClause +setClause +matchedClause +notMatchedClause +matchedAction +notMatchedAction +assignmentList +assignment +whereClause +havingClause +hint +hintStatement +fromClause +aggregationClause +groupingSet +pivotClause +pivotColumn +pivotValue +lateralView +setQuantifier +relation +joinRelation +joinType +joinCriteria +sample +sampleMethod +identifierList +identifierSeq +orderedIdentifierList +orderedIdentifier +identifierCommentList +identifierComment +relationPrimary +inlineTable +functionTable +tableAlias +rowFormat +multipartIdentifierList +multipartIdentifier +tableIdentifier +namedExpression +namedExpressionSeq +transformList +transform +transformArgument +expression +booleanExpression +predicate +valueExpression +primaryExpression +constant +comparisonOperator +arithmeticOperator +predicateOperator +booleanValue +interval +errorCapturingMultiUnitsInterval +multiUnitsInterval +errorCapturingUnitToUnitInterval +unitToUnitInterval +intervalValue +colPosition +dataType +qualifiedColTypeWithPositionList +qualifiedColTypeWithPosition +colTypeList +colType +complexColTypeList +complexColType +whenClause +windowClause +namedWindow +windowSpec +windowFrame +frameBound +qualifiedNameList +functionName +qualifiedName +errorCapturingIdentifier +errorCapturingIdentifierExtra +identifier +strictIdentifier +quotedIdentifier +number +alterColumnAction +ansiNonReserved +strictNonReserved +nonReserved + + +atn: +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 296, 3028, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 7, 3, 280, 10, 3, 12, 3, 14, 3, 283, 11, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 5, 9, 304, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 309, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 317, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 325, 10, 9, 12, 9, 14, 9, 328, 11, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 347, 10, 9, 3, 9, 3, 9, 5, 9, 351, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 357, 10, 9, 3, 9, 5, 9, 360, 10, 9, 3, 9, 5, 9, 363, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 370, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 375, 10, 9, 3, 9, 5, 9, 378, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 385, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 397, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 406, 10, 9, 12, 9, 14, 9, 409, 11, 9, 3, 9, 5, 9, 412, 10, 9, 3, 9, 5, 9, 415, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 422, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 433, 10, 9, 12, 9, 14, 9, 436, 11, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 443, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 448, 10, 9, 3, 9, 5, 9, 451, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 457, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 468, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 532, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 541, 10, 9, 3, 9, 3, 9, 5, 9, 545, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 551, 10, 9, 3, 9, 3, 9, 5, 9, 555, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 560, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 566, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 578, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 586, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 592, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 605, 10, 9, 3, 9, 6, 9, 608, 10, 9, 13, 9, 14, 9, 609, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 626, 10, 9, 3, 9, 3, 9, 3, 9, 7, 9, 631, 10, 9, 12, 9, 14, 9, 634, 11, 9, 3, 9, 5, 9, 637, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 643, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 658, 10, 9, 3, 9, 3, 9, 5, 9, 662, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 668, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 674, 10, 9, 3, 9, 5, 9, 677, 10, 9, 3, 9, 5, 9, 680, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 686, 10, 9, 3, 9, 3, 9, 5, 9, 690, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 698, 10, 9, 12, 9, 14, 9, 701, 11, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 709, 10, 9, 3, 9, 5, 9, 712, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 721, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 726, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 732, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 739, 10, 9, 3, 9, 5, 9, 742, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 748, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 757, 10, 9, 12, 9, 14, 9, 760, 11, 9, 5, 9, 762, 10, 9, 3, 9, 3, 9, 5, 9, 766, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 771, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 776, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 783, 10, 9, 3, 9, 5, 9, 786, 10, 9, 3, 9, 5, 9, 789, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 796, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 801, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 810, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 818, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 824, 10, 9, 3, 9, 5, 9, 827, 10, 9, 3, 9, 5, 9, 830, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 836, 10, 9, 3, 9, 3, 9, 5, 9, 840, 10, 9, 3, 9, 3, 9, 5, 9, 844, 10, 9, 3, 9, 3, 9, 5, 9, 848, 10, 9, 5, 9, 850, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 858, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 866, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 872, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 878, 10, 9, 3, 9, 5, 9, 881, 10, 9, 3, 9, 3, 9, 5, 9, 885, 10, 9, 3, 9, 5, 9, 888, 10, 9, 3, 9, 3, 9, 5, 9, 892, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 918, 10, 9, 12, 9, 14, 9, 921, 11, 9, 5, 9, 923, 10, 9, 3, 9, 3, 9, 5, 9, 927, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 933, 10, 9, 3, 9, 5, 9, 936, 10, 9, 3, 9, 5, 9, 939, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 945, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 953, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 958, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 964, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 970, 10, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 980, 10, 9, 12, 9, 14, 9, 983, 11, 9, 5, 9, 985, 10, 9, 3, 9, 3, 9, 3, 9, 7, 9, 990, 10, 9, 12, 9, 14, 9, 993, 11, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 1007, 10, 9, 12, 9, 14, 9, 1010, 11, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 1016, 10, 9, 12, 9, 14, 9, 1019, 11, 9, 5, 9, 1021, 10, 9, 3, 9, 3, 9, 7, 9, 1025, 10, 9, 12, 9, 14, 9, 1028, 11, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 1034, 10, 9, 12, 9, 14, 9, 1037, 11, 9, 3, 9, 3, 9, 7, 9, 1041, 10, 9, 12, 9, 14, 9, 1044, 11, 9, 5, 9, 1046, 10, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 1056, 10, 11, 3, 11, 3, 11, 5, 11, 1060, 10, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 1067, 10, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 1183, 10, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 1191, 10, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 1199, 10, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 1208, 10, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 1218, 10, 11, 3, 12, 3, 12, 5, 12, 1222, 10, 12, 3, 12, 5, 12, 1225, 10, 12, 3, 12, 3, 12, 3, 12, 3, 12, 5, 12, 1231, 10, 12, 3, 12, 3, 12, 3, 13, 3, 13, 5, 13, 1237, 10, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 5, 14, 1249, 10, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 5, 15, 1261, 10, 15, 3, 15, 3, 15, 3, 15, 5, 15, 1266, 10, 15, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 18, 5, 18, 1275, 10, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 5, 19, 1283, 10, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 5, 19, 1290, 10, 19, 5, 19, 1292, 10, 19, 3, 19, 3, 19, 3, 19, 5, 19, 1297, 10, 19, 3, 19, 3, 19, 5, 19, 1301, 10, 19, 3, 19, 3, 19, 3, 19, 5, 19, 1306, 10, 19, 3, 19, 3, 19, 3, 19, 5, 19, 1311, 10, 19, 3, 19, 3, 19, 3, 19, 5, 19, 1316, 10, 19, 3, 19, 5, 19, 1319, 10, 19, 3, 19, 3, 19, 3, 19, 5, 19, 1324, 10, 19, 3, 19, 3, 19, 5, 19, 1328, 10, 19, 3, 19, 3, 19, 3, 19, 5, 19, 1333, 10, 19, 5, 19, 1335, 10, 19, 3, 20, 3, 20, 5, 20, 1339, 10, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 1346, 10, 21, 12, 21, 14, 21, 1349, 11, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 5, 22, 1356, 10, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 5, 24, 1365, 10, 24, 3, 25, 3, 25, 3, 25, 7, 25, 1370, 10, 25, 12, 25, 14, 25, 1373, 11, 25, 3, 26, 3, 26, 3, 26, 3, 26, 7, 26, 1379, 10, 26, 12, 26, 14, 26, 1382, 11, 26, 3, 27, 3, 27, 5, 27, 1386, 10, 27, 3, 27, 5, 27, 1389, 10, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 7, 29, 1408, 10, 29, 12, 29, 14, 29, 1411, 11, 29, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 1417, 10, 30, 12, 30, 14, 30, 1420, 11, 30, 3, 30, 3, 30, 3, 31, 3, 31, 5, 31, 1426, 10, 31, 3, 31, 5, 31, 1429, 10, 31, 3, 32, 3, 32, 3, 32, 7, 32, 1434, 10, 32, 12, 32, 14, 32, 1437, 11, 32, 3, 32, 5, 32, 1440, 10, 32, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 1446, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 7, 34, 1452, 10, 34, 12, 34, 14, 34, 1455, 11, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 7, 35, 1463, 10, 35, 12, 35, 14, 35, 1466, 11, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 1476, 10, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 1483, 10, 37, 3, 38, 3, 38, 3, 38, 3, 38, 5, 38, 1489, 10, 38, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 6, 40, 1500, 10, 40, 13, 40, 14, 40, 1501, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 5, 40, 1509, 10, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 5, 40, 1516, 10, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 5, 40, 1528, 10, 40, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 1534, 10, 40, 12, 40, 14, 40, 1537, 11, 40, 3, 40, 7, 40, 1540, 10, 40, 12, 40, 14, 40, 1543, 11, 40, 5, 40, 1545, 10, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 1552, 10, 41, 12, 41, 14, 41, 1555, 11, 41, 5, 41, 1557, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 1564, 10, 41, 12, 41, 14, 41, 1567, 11, 41, 5, 41, 1569, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 1576, 10, 41, 12, 41, 14, 41, 1579, 11, 41, 5, 41, 1581, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 1588, 10, 41, 12, 41, 14, 41, 1591, 11, 41, 5, 41, 1593, 10, 41, 3, 41, 5, 41, 1596, 10, 41, 3, 41, 3, 41, 3, 41, 5, 41, 1601, 10, 41, 5, 41, 1603, 10, 41, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 1615, 10, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 1622, 10, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 1629, 10, 43, 3, 43, 7, 43, 1632, 10, 43, 12, 43, 14, 43, 1635, 11, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 5, 44, 1646, 10, 44, 3, 45, 3, 45, 5, 45, 1650, 10, 45, 3, 45, 3, 45, 5, 45, 1654, 10, 45, 3, 46, 3, 46, 6, 46, 1658, 10, 46, 13, 46, 14, 46, 1659, 3, 47, 3, 47, 5, 47, 1664, 10, 47, 3, 47, 3, 47, 3, 47, 3, 47, 7, 47, 1670, 10, 47, 12, 47, 14, 47, 1673, 11, 47, 3, 47, 5, 47, 1676, 10, 47, 3, 47, 5, 47, 1679, 10, 47, 3, 47, 5, 47, 1682, 10, 47, 3, 47, 5, 47, 1685, 10, 47, 3, 47, 3, 47, 5, 47, 1689, 10, 47, 3, 48, 3, 48, 5, 48, 1693, 10, 48, 3, 48, 5, 48, 1696, 10, 48, 3, 48, 3, 48, 5, 48, 1700, 10, 48, 3, 48, 7, 48, 1703, 10, 48, 12, 48, 14, 48, 1706, 11, 48, 3, 48, 5, 48, 1709, 10, 48, 3, 48, 5, 48, 1712, 10, 48, 3, 48, 5, 48, 1715, 10, 48, 3, 48, 5, 48, 1718, 10, 48, 5, 48, 1720, 10, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 5, 49, 1732, 10, 49, 3, 49, 5, 49, 1735, 10, 49, 3, 49, 3, 49, 5, 49, 1739, 10, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 5, 49, 1749, 10, 49, 3, 49, 3, 49, 5, 49, 1753, 10, 49, 5, 49, 1755, 10, 49, 3, 49, 5, 49, 1758, 10, 49, 3, 49, 3, 49, 5, 49, 1762, 10, 49, 3, 50, 3, 50, 7, 50, 1766, 10, 50, 12, 50, 14, 50, 1769, 11, 50, 3, 50, 5, 50, 1772, 10, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 5, 52, 1783, 10, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 5, 53, 1793, 10, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 5, 54, 1805, 10, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 7, 55, 1818, 10, 55, 12, 55, 14, 55, 1821, 11, 55, 3, 55, 3, 55, 5, 55, 1825, 10, 55, 3, 56, 3, 56, 3, 56, 7, 56, 1830, 10, 56, 12, 56, 14, 56, 1833, 11, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 5, 60, 1848, 10, 60, 3, 60, 7, 60, 1851, 10, 60, 12, 60, 14, 60, 1854, 11, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 7, 61, 1864, 10, 61, 12, 61, 14, 61, 1867, 11, 61, 3, 61, 3, 61, 5, 61, 1871, 10, 61, 3, 62, 3, 62, 3, 62, 3, 62, 7, 62, 1877, 10, 62, 12, 62, 14, 62, 1880, 11, 62, 3, 62, 7, 62, 1883, 10, 62, 12, 62, 14, 62, 1886, 11, 62, 3, 62, 5, 62, 1889, 10, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 7, 63, 1896, 10, 63, 12, 63, 14, 63, 1899, 11, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 7, 63, 1911, 10, 63, 12, 63, 14, 63, 1914, 11, 63, 3, 63, 3, 63, 5, 63, 1918, 10, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 7, 63, 1928, 10, 63, 12, 63, 14, 63, 1931, 11, 63, 3, 63, 3, 63, 5, 63, 1935, 10, 63, 3, 64, 3, 64, 3, 64, 3, 64, 7, 64, 1941, 10, 64, 12, 64, 14, 64, 1944, 11, 64, 5, 64, 1946, 10, 64, 3, 64, 3, 64, 5, 64, 1950, 10, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 7, 65, 1962, 10, 65, 12, 65, 14, 65, 1965, 11, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 7, 66, 1975, 10, 66, 12, 66, 14, 66, 1978, 11, 66, 3, 66, 3, 66, 5, 66, 1982, 10, 66, 3, 67, 3, 67, 5, 67, 1986, 10, 67, 3, 67, 5, 67, 1989, 10, 67, 3, 68, 3, 68, 3, 68, 5, 68, 1994, 10, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 7, 68, 2001, 10, 68, 12, 68, 14, 68, 2004, 11, 68, 5, 68, 2006, 10, 68, 3, 68, 3, 68, 3, 68, 5, 68, 2011, 10, 68, 3, 68, 3, 68, 3, 68, 7, 68, 2016, 10, 68, 12, 68, 14, 68, 2019, 11, 68, 5, 68, 2021, 10, 68, 3, 69, 3, 69, 3, 70, 3, 70, 7, 70, 2027, 10, 70, 12, 70, 14, 70, 2030, 11, 70, 3, 71, 3, 71, 3, 71, 3, 71, 5, 71, 2036, 10, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 5, 71, 2043, 10, 71, 3, 72, 5, 72, 2046, 10, 72, 3, 72, 3, 72, 3, 72, 5, 72, 2051, 10, 72, 3, 72, 5, 72, 2054, 10, 72, 3, 72, 3, 72, 3, 72, 5, 72, 2059, 10, 72, 3, 72, 3, 72, 5, 72, 2063, 10, 72, 3, 72, 5, 72, 2066, 10, 72, 3, 72, 5, 72, 2069, 10, 72, 3, 73, 3, 73, 3, 73, 3, 73, 5, 73, 2075, 10, 73, 3, 74, 3, 74, 3, 74, 5, 74, 2080, 10, 74, 3, 74, 3, 74, 3, 75, 5, 75, 2085, 10, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 5, 75, 2103, 10, 75, 5, 75, 2105, 10, 75, 3, 75, 5, 75, 2108, 10, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 7, 77, 2117, 10, 77, 12, 77, 14, 77, 2120, 11, 77, 3, 78, 3, 78, 3, 78, 3, 78, 7, 78, 2126, 10, 78, 12, 78, 14, 78, 2129, 11, 78, 3, 78, 3, 78, 3, 79, 3, 79, 5, 79, 2135, 10, 79, 3, 80, 3, 80, 3, 80, 3, 80, 7, 80, 2141, 10, 80, 12, 80, 14, 80, 2144, 11, 80, 3, 80, 3, 80, 3, 81, 3, 81, 5, 81, 2150, 10, 81, 3, 82, 3, 82, 5, 82, 2154, 10, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 5, 82, 2162, 10, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 5, 82, 2170, 10, 82, 3, 82, 3, 82, 3, 82, 3, 82, 5, 82, 2176, 10, 82, 3, 83, 3, 83, 3, 83, 3, 83, 7, 83, 2182, 10, 83, 12, 83, 14, 83, 2185, 11, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 7, 84, 2194, 10, 84, 12, 84, 14, 84, 2197, 11, 84, 5, 84, 2199, 10, 84, 3, 84, 3, 84, 3, 84, 3, 85, 5, 85, 2205, 10, 85, 3, 85, 3, 85, 5, 85, 2209, 10, 85, 5, 85, 2211, 10, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 2220, 10, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 2232, 10, 86, 5, 86, 2234, 10, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 2241, 10, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 2248, 10, 86, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 2254, 10, 86, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 2260, 10, 86, 5, 86, 2262, 10, 86, 3, 87, 3, 87, 3, 87, 7, 87, 2267, 10, 87, 12, 87, 14, 87, 2270, 11, 87, 3, 88, 3, 88, 3, 88, 7, 88, 2275, 10, 88, 12, 88, 14, 88, 2278, 11, 88, 3, 89, 3, 89, 3, 89, 5, 89, 2283, 10, 89, 3, 89, 3, 89, 3, 90, 3, 90, 5, 90, 2289, 10, 90, 3, 90, 3, 90, 5, 90, 2293, 10, 90, 5, 90, 2295, 10, 90, 3, 91, 3, 91, 3, 91, 7, 91, 2300, 10, 91, 12, 91, 14, 91, 2303, 11, 91, 3, 92, 3, 92, 3, 92, 3, 92, 7, 92, 2309, 10, 92, 12, 92, 14, 92, 2312, 11, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 7, 93, 2322, 10, 93, 12, 93, 14, 93, 2325, 11, 93, 3, 93, 3, 93, 5, 93, 2329, 10, 93, 3, 94, 3, 94, 5, 94, 2333, 10, 94, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 5, 96, 2347, 10, 96, 5, 96, 2349, 10, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 7, 96, 2357, 10, 96, 12, 96, 14, 96, 2360, 11, 96, 3, 97, 5, 97, 2363, 10, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 5, 97, 2371, 10, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 7, 97, 2378, 10, 97, 12, 97, 14, 97, 2381, 11, 97, 3, 97, 3, 97, 3, 97, 5, 97, 2386, 10, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 5, 97, 2394, 10, 97, 3, 97, 3, 97, 3, 97, 5, 97, 2399, 10, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 7, 97, 2409, 10, 97, 12, 97, 14, 97, 2412, 11, 97, 3, 97, 3, 97, 5, 97, 2416, 10, 97, 3, 97, 5, 97, 2419, 10, 97, 3, 97, 3, 97, 3, 97, 3, 97, 5, 97, 2425, 10, 97, 3, 97, 3, 97, 5, 97, 2429, 10, 97, 3, 97, 3, 97, 3, 97, 5, 97, 2434, 10, 97, 3, 97, 3, 97, 3, 97, 5, 97, 2439, 10, 97, 3, 97, 3, 97, 3, 97, 5, 97, 2444, 10, 97, 3, 98, 3, 98, 3, 98, 3, 98, 5, 98, 2450, 10, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 7, 98, 2471, 10, 98, 12, 98, 14, 98, 2474, 11, 98, 3, 99, 3, 99, 3, 99, 3, 99, 6, 99, 2480, 10, 99, 13, 99, 14, 99, 2481, 3, 99, 3, 99, 5, 99, 2486, 10, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 6, 99, 2493, 10, 99, 13, 99, 14, 99, 2494, 3, 99, 3, 99, 5, 99, 2499, 10, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 7, 99, 2515, 10, 99, 12, 99, 14, 99, 2518, 11, 99, 5, 99, 2520, 10, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 5, 99, 2528, 10, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 5, 99, 2537, 10, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 6, 99, 2558, 10, 99, 13, 99, 14, 99, 2559, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 5, 99, 2571, 10, 99, 3, 99, 3, 99, 3, 99, 7, 99, 2576, 10, 99, 12, 99, 14, 99, 2579, 11, 99, 5, 99, 2581, 10, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 5, 99, 2590, 10, 99, 3, 99, 3, 99, 5, 99, 2594, 10, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 6, 99, 2604, 10, 99, 13, 99, 14, 99, 2605, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 5, 99, 2631, 10, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 5, 99, 2638, 10, 99, 3, 99, 5, 99, 2641, 10, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 5, 99, 2656, 10, 99, 3, 99, 3, 99, 5, 99, 2660, 10, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 7, 99, 2670, 10, 99, 12, 99, 14, 99, 2673, 11, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 6, 100, 2683, 10, 100, 13, 100, 14, 100, 2684, 5, 100, 2687, 10, 100, 3, 101, 3, 101, 3, 102, 3, 102, 3, 103, 3, 103, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 5, 105, 2700, 10, 105, 3, 106, 3, 106, 5, 106, 2704, 10, 106, 3, 107, 3, 107, 3, 107, 6, 107, 2709, 10, 107, 13, 107, 14, 107, 2710, 3, 108, 3, 108, 3, 108, 5, 108, 2716, 10, 108, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 5, 110, 2724, 10, 110, 3, 110, 3, 110, 5, 110, 2728, 10, 110, 3, 111, 3, 111, 3, 111, 5, 111, 2733, 10, 111, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 5, 112, 2750, 10, 112, 3, 112, 3, 112, 5, 112, 2754, 10, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 7, 112, 2761, 10, 112, 12, 112, 14, 112, 2764, 11, 112, 3, 112, 5, 112, 2767, 10, 112, 5, 112, 2769, 10, 112, 3, 113, 3, 113, 3, 113, 7, 113, 2774, 10, 113, 12, 113, 14, 113, 2777, 11, 113, 3, 114, 3, 114, 3, 114, 3, 114, 5, 114, 2783, 10, 114, 3, 114, 5, 114, 2786, 10, 114, 3, 114, 5, 114, 2789, 10, 114, 3, 115, 3, 115, 3, 115, 7, 115, 2794, 10, 115, 12, 115, 14, 115, 2797, 11, 115, 3, 116, 3, 116, 3, 116, 3, 116, 5, 116, 2803, 10, 116, 3, 116, 5, 116, 2806, 10, 116, 3, 117, 3, 117, 3, 117, 7, 117, 2811, 10, 117, 12, 117, 14, 117, 2814, 11, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 5, 118, 2821, 10, 118, 3, 118, 5, 118, 2824, 10, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 7, 120, 2835, 10, 120, 12, 120, 14, 120, 2838, 11, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 7, 122, 2855, 10, 122, 12, 122, 14, 122, 2858, 11, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 7, 122, 2865, 10, 122, 12, 122, 14, 122, 2868, 11, 122, 5, 122, 2870, 10, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 7, 122, 2877, 10, 122, 12, 122, 14, 122, 2880, 11, 122, 5, 122, 2882, 10, 122, 5, 122, 2884, 10, 122, 3, 122, 5, 122, 2887, 10, 122, 3, 122, 5, 122, 2890, 10, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 5, 123, 2908, 10, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 5, 124, 2917, 10, 124, 3, 125, 3, 125, 3, 125, 7, 125, 2922, 10, 125, 12, 125, 14, 125, 2925, 11, 125, 3, 126, 3, 126, 3, 126, 3, 126, 5, 126, 2931, 10, 126, 3, 127, 3, 127, 3, 127, 7, 127, 2936, 10, 127, 12, 127, 14, 127, 2939, 11, 127, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 6, 129, 2946, 10, 129, 13, 129, 14, 129, 2947, 3, 129, 5, 129, 2951, 10, 129, 3, 130, 3, 130, 3, 130, 5, 130, 2956, 10, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 5, 131, 2964, 10, 131, 3, 132, 3, 132, 3, 133, 3, 133, 5, 133, 2970, 10, 133, 3, 133, 3, 133, 3, 133, 5, 133, 2975, 10, 133, 3, 133, 3, 133, 3, 133, 5, 133, 2980, 10, 133, 3, 133, 3, 133, 5, 133, 2984, 10, 133, 3, 133, 3, 133, 5, 133, 2988, 10, 133, 3, 133, 3, 133, 5, 133, 2992, 10, 133, 3, 133, 3, 133, 5, 133, 2996, 10, 133, 3, 133, 3, 133, 5, 133, 3000, 10, 133, 3, 133, 3, 133, 5, 133, 3004, 10, 133, 3, 133, 3, 133, 5, 133, 3008, 10, 133, 3, 133, 5, 133, 3011, 10, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 5, 134, 3020, 10, 134, 3, 135, 3, 135, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 10, 919, 981, 991, 1008, 1017, 1026, 1035, 1042, 6, 84, 190, 194, 196, 138, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 2, 45, 4, 2, 66, 66, 179, 179, 4, 2, 34, 34, 193, 193, 4, 2, 65, 65, 149, 149, 4, 2, 102, 102, 114, 114, 3, 2, 45, 46, 4, 2, 225, 225, 256, 256, 4, 2, 17, 17, 37, 37, 7, 2, 42, 42, 54, 54, 88, 88, 101, 101, 142, 142, 3, 2, 70, 71, 4, 2, 88, 88, 101, 101, 4, 2, 153, 153, 281, 281, 4, 2, 14, 14, 136, 136, 4, 2, 138, 138, 281, 281, 5, 2, 64, 64, 148, 148, 203, 203, 6, 2, 83, 83, 121, 121, 211, 211, 246, 246, 5, 2, 83, 83, 211, 211, 246, 246, 4, 2, 25, 25, 70, 70, 4, 2, 96, 96, 128, 128, 4, 2, 16, 16, 75, 75, 4, 2, 285, 285, 287, 287, 5, 2, 16, 16, 21, 21, 215, 215, 5, 2, 91, 91, 240, 240, 248, 248, 4, 2, 271, 272, 276, 276, 4, 2, 77, 77, 273, 275, 4, 2, 271, 272, 279, 279, 4, 2, 59, 59, 61, 61, 3, 2, 223, 224, 4, 2, 6, 6, 102, 102, 4, 2, 6, 6, 98, 98, 5, 2, 29, 29, 131, 131, 235, 235, 3, 2, 263, 270, 4, 2, 77, 77, 271, 280, 6, 2, 19, 19, 114, 114, 152, 152, 160, 160, 4, 2, 91, 91, 240, 240, 3, 2, 271, 272, 4, 2, 76, 76, 169, 169, 4, 2, 161, 161, 216, 216, 4, 2, 97, 97, 176, 176, 3, 2, 286, 287, 4, 2, 78, 78, 210, 210, 50, 2, 14, 15, 17, 18, 20, 20, 22, 23, 25, 26, 28, 28, 30, 34, 37, 37, 39, 42, 44, 44, 46, 52, 54, 54, 57, 58, 63, 74, 76, 78, 82, 82, 84, 90, 93, 93, 95, 97, 100, 101, 104, 106, 109, 109, 111, 113, 115, 116, 118, 120, 122, 122, 125, 125, 127, 130, 133, 149, 151, 151, 154, 155, 158, 159, 162, 162, 164, 165, 167, 176, 178, 186, 188, 194, 196, 203, 205, 208, 210, 214, 216, 224, 226, 230, 234, 234, 236, 245, 249, 252, 255, 257, 260, 260, 262, 262, 17, 2, 20, 20, 56, 56, 83, 83, 103, 103, 117, 117, 121, 121, 126, 126, 132, 132, 150, 150, 156, 156, 195, 195, 205, 205, 211, 211, 246, 246, 254, 254, 18, 2, 14, 19, 21, 55, 57, 82, 84, 102, 104, 116, 118, 120, 122, 125, 127, 131, 133, 149, 151, 155, 157, 194, 196, 204, 206, 210, 212, 245, 247, 253, 255, 262, 2, 3501, 2, 274, 3, 2, 2, 2, 4, 277, 3, 2, 2, 2, 6, 286, 3, 2, 2, 2, 8, 289, 3, 2, 2, 2, 10, 292, 3, 2, 2, 2, 12, 295, 3, 2, 2, 2, 14, 298, 3, 2, 2, 2, 16, 1045, 3, 2, 2, 2, 18, 1047, 3, 2, 2, 2, 20, 1217, 3, 2, 2, 2, 22, 1219, 3, 2, 2, 2, 24, 1236, 3, 2, 2, 2, 26, 1242, 3, 2, 2, 2, 28, 1254, 3, 2, 2, 2, 30, 1267, 3, 2, 2, 2, 32, 1270, 3, 2, 2, 2, 34, 1274, 3, 2, 2, 2, 36, 1334, 3, 2, 2, 2, 38, 1336, 3, 2, 2, 2, 40, 1340, 3, 2, 2, 2, 42, 1352, 3, 2, 2, 2, 44, 1357, 3, 2, 2, 2, 46, 1364, 3, 2, 2, 2, 48, 1366, 3, 2, 2, 2, 50, 1374, 3, 2, 2, 2, 52, 1383, 3, 2, 2, 2, 54, 1394, 3, 2, 2, 2, 56, 1409, 3, 2, 2, 2, 58, 1412, 3, 2, 2, 2, 60, 1423, 3, 2, 2, 2, 62, 1439, 3, 2, 2, 2, 64, 1445, 3, 2, 2, 2, 66, 1447, 3, 2, 2, 2, 68, 1458, 3, 2, 2, 2, 70, 1475, 3, 2, 2, 2, 72, 1482, 3, 2, 2, 2, 74, 1484, 3, 2, 2, 2, 76, 1490, 3, 2, 2, 2, 78, 1544, 3, 2, 2, 2, 80, 1556, 3, 2, 2, 2, 82, 1604, 3, 2, 2, 2, 84, 1607, 3, 2, 2, 2, 86, 1645, 3, 2, 2, 2, 88, 1647, 3, 2, 2, 2, 90, 1655, 3, 2, 2, 2, 92, 1688, 3, 2, 2, 2, 94, 1719, 3, 2, 2, 2, 96, 1731, 3, 2, 2, 2, 98, 1763, 3, 2, 2, 2, 100, 1775, 3, 2, 2, 2, 102, 1778, 3, 2, 2, 2, 104, 1787, 3, 2, 2, 2, 106, 1804, 3, 2, 2, 2, 108, 1824, 3, 2, 2, 2, 110, 1826, 3, 2, 2, 2, 112, 1834, 3, 2, 2, 2, 114, 1838, 3, 2, 2, 2, 116, 1841, 3, 2, 2, 2, 118, 1844, 3, 2, 2, 2, 120, 1870, 3, 2, 2, 2, 122, 1872, 3, 2, 2, 2, 124, 1934, 3, 2, 2, 2, 126, 1949, 3, 2, 2, 2, 128, 1951, 3, 2, 2, 2, 130, 1981, 3, 2, 2, 2, 132, 1983, 3, 2, 2, 2, 134, 1990, 3, 2, 2, 2, 136, 2022, 3, 2, 2, 2, 138, 2024, 3, 2, 2, 2, 140, 2042, 3, 2, 2, 2, 142, 2068, 3, 2, 2, 2, 144, 2074, 3, 2, 2, 2, 146, 2076, 3, 2, 2, 2, 148, 2107, 3, 2, 2, 2, 150, 2109, 3, 2, 2, 2, 152, 2113, 3, 2, 2, 2, 154, 2121, 3, 2, 2, 2, 156, 2132, 3, 2, 2, 2, 158, 2136, 3, 2, 2, 2, 160, 2147, 3, 2, 2, 2, 162, 2175, 3, 2, 2, 2, 164, 2177, 3, 2, 2, 2, 166, 2188, 3, 2, 2, 2, 168, 2210, 3, 2, 2, 2, 170, 2261, 3, 2, 2, 2, 172, 2263, 3, 2, 2, 2, 174, 2271, 3, 2, 2, 2, 176, 2282, 3, 2, 2, 2, 178, 2286, 3, 2, 2, 2, 180, 2296, 3, 2, 2, 2, 182, 2304, 3, 2, 2, 2, 184, 2328, 3, 2, 2, 2, 186, 2332, 3, 2, 2, 2, 188, 2334, 3, 2, 2, 2, 190, 2348, 3, 2, 2, 2, 192, 2443, 3, 2, 2, 2, 194, 2449, 3, 2, 2, 2, 196, 2659, 3, 2, 2, 2, 198, 2686, 3, 2, 2, 2, 200, 2688, 3, 2, 2, 2, 202, 2690, 3, 2, 2, 2, 204, 2692, 3, 2, 2, 2, 206, 2694, 3, 2, 2, 2, 208, 2696, 3, 2, 2, 2, 210, 2701, 3, 2, 2, 2, 212, 2708, 3, 2, 2, 2, 214, 2712, 3, 2, 2, 2, 216, 2717, 3, 2, 2, 2, 218, 2727, 3, 2, 2, 2, 220, 2732, 3, 2, 2, 2, 222, 2768, 3, 2, 2, 2, 224, 2770, 3, 2, 2, 2, 226, 2778, 3, 2, 2, 2, 228, 2790, 3, 2, 2, 2, 230, 2798, 3, 2, 2, 2, 232, 2807, 3, 2, 2, 2, 234, 2815, 3, 2, 2, 2, 236, 2825, 3, 2, 2, 2, 238, 2830, 3, 2, 2, 2, 240, 2839, 3, 2, 2, 2, 242, 2889, 3, 2, 2, 2, 244, 2907, 3, 2, 2, 2, 246, 2916, 3, 2, 2, 2, 248, 2918, 3, 2, 2, 2, 250, 2930, 3, 2, 2, 2, 252, 2932, 3, 2, 2, 2, 254, 2940, 3, 2, 2, 2, 256, 2950, 3, 2, 2, 2, 258, 2955, 3, 2, 2, 2, 260, 2963, 3, 2, 2, 2, 262, 2965, 3, 2, 2, 2, 264, 3010, 3, 2, 2, 2, 266, 3019, 3, 2, 2, 2, 268, 3021, 3, 2, 2, 2, 270, 3023, 3, 2, 2, 2, 272, 3025, 3, 2, 2, 2, 274, 275, 5, 4, 3, 2, 275, 276, 7, 2, 2, 3, 276, 3, 3, 2, 2, 2, 277, 281, 5, 16, 9, 2, 278, 280, 7, 3, 2, 2, 279, 278, 3, 2, 2, 2, 280, 283, 3, 2, 2, 2, 281, 279, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 284, 3, 2, 2, 2, 283, 281, 3, 2, 2, 2, 284, 285, 7, 2, 2, 3, 285, 5, 3, 2, 2, 2, 286, 287, 5, 178, 90, 2, 287, 288, 7, 2, 2, 3, 288, 7, 3, 2, 2, 2, 289, 290, 5, 176, 89, 2, 290, 291, 7, 2, 2, 3, 291, 9, 3, 2, 2, 2, 292, 293, 5, 174, 88, 2, 293, 294, 7, 2, 2, 3, 294, 11, 3, 2, 2, 2, 295, 296, 5, 222, 112, 2, 296, 297, 7, 2, 2, 3, 297, 13, 3, 2, 2, 2, 298, 299, 5, 228, 115, 2, 299, 300, 7, 2, 2, 3, 300, 15, 3, 2, 2, 2, 301, 1046, 5, 34, 18, 2, 302, 304, 5, 50, 26, 2, 303, 302, 3, 2, 2, 2, 303, 304, 3, 2, 2, 2, 304, 305, 3, 2, 2, 2, 305, 1046, 5, 78, 40, 2, 306, 308, 7, 252, 2, 2, 307, 309, 7, 148, 2, 2, 308, 307, 3, 2, 2, 2, 308, 309, 3, 2, 2, 2, 309, 310, 3, 2, 2, 2, 310, 1046, 5, 174, 88, 2, 311, 312, 7, 55, 2, 2, 312, 316, 5, 44, 23, 2, 313, 314, 7, 111, 2, 2, 314, 315, 7, 152, 2, 2, 315, 317, 7, 85, 2, 2, 316, 313, 3, 2, 2, 2, 316, 317, 3, 2, 2, 2, 317, 318, 3, 2, 2, 2, 318, 326, 5, 174, 88, 2, 319, 325, 5, 32, 17, 2, 320, 325, 5, 30, 16, 2, 321, 322, 7, 261, 2, 2, 322, 323, 9, 2, 2, 2, 323, 325, 5, 58, 30, 2, 324, 319, 3, 2, 2, 2, 324, 320, 3, 2, 2, 2, 324, 321, 3, 2, 2, 2, 325, 328, 3, 2, 2, 2, 326, 324, 3, 2, 2, 2, 326, 327, 3, 2, 2, 2, 327, 1046, 3, 2, 2, 2, 328, 326, 3, 2, 2, 2, 329, 330, 7, 17, 2, 2, 330, 331, 5, 44, 23, 2, 331, 332, 5, 174, 88, 2, 332, 333, 7, 210, 2, 2, 333, 334, 9, 2, 2, 2, 334, 335, 5, 58, 30, 2, 335, 1046, 3, 2, 2, 2, 336, 337, 7, 17, 2, 2, 337, 338, 5, 44, 23, 2, 338, 339, 5, 174, 88, 2, 339, 340, 7, 210, 2, 2, 340, 341, 5, 30, 16, 2, 341, 1046, 3, 2, 2, 2, 342, 343, 7, 78, 2, 2, 343, 346, 5, 44, 23, 2, 344, 345, 7, 111, 2, 2, 345, 347, 7, 85, 2, 2, 346, 344, 3, 2, 2, 2, 346, 347, 3, 2, 2, 2, 347, 348, 3, 2, 2, 2, 348, 350, 5, 174, 88, 2, 349, 351, 9, 3, 2, 2, 350, 349, 3, 2, 2, 2, 350, 351, 3, 2, 2, 2, 351, 1046, 3, 2, 2, 2, 352, 353, 7, 213, 2, 2, 353, 356, 9, 4, 2, 2, 354, 355, 9, 5, 2, 2, 355, 357, 5, 174, 88, 2, 356, 354, 3, 2, 2, 2, 356, 357, 3, 2, 2, 2, 357, 362, 3, 2, 2, 2, 358, 360, 7, 133, 2, 2, 359, 358, 3, 2, 2, 2, 359, 360, 3, 2, 2, 2, 360, 361, 3, 2, 2, 2, 361, 363, 7, 281, 2, 2, 362, 359, 3, 2, 2, 2, 362, 363, 3, 2, 2, 2, 363, 1046, 3, 2, 2, 2, 364, 369, 5, 22, 12, 2, 365, 366, 7, 4, 2, 2, 366, 367, 5, 228, 115, 2, 367, 368, 7, 5, 2, 2, 368, 370, 3, 2, 2, 2, 369, 365, 3, 2, 2, 2, 369, 370, 3, 2, 2, 2, 370, 371, 3, 2, 2, 2, 371, 372, 5, 54, 28, 2, 372, 377, 5, 56, 29, 2, 373, 375, 7, 24, 2, 2, 374, 373, 3, 2, 2, 2, 374, 375, 3, 2, 2, 2, 375, 376, 3, 2, 2, 2, 376, 378, 5, 34, 18, 2, 377, 374, 3, 2, 2, 2, 377, 378, 3, 2, 2, 2, 378, 1046, 3, 2, 2, 2, 379, 384, 5, 22, 12, 2, 380, 381, 7, 4, 2, 2, 381, 382, 5, 228, 115, 2, 382, 383, 7, 5, 2, 2, 383, 385, 3, 2, 2, 2, 384, 380, 3, 2, 2, 2, 384, 385, 3, 2, 2, 2, 385, 407, 3, 2, 2, 2, 386, 406, 5, 32, 17, 2, 387, 388, 7, 170, 2, 2, 388, 389, 7, 32, 2, 2, 389, 390, 7, 4, 2, 2, 390, 391, 5, 228, 115, 2, 391, 392, 7, 5, 2, 2, 392, 397, 3, 2, 2, 2, 393, 394, 7, 170, 2, 2, 394, 395, 7, 32, 2, 2, 395, 397, 5, 150, 76, 2, 396, 387, 3, 2, 2, 2, 396, 393, 3, 2, 2, 2, 397, 406, 3, 2, 2, 2, 398, 406, 5, 26, 14, 2, 399, 406, 5, 28, 15, 2, 400, 406, 5, 170, 86, 2, 401, 406, 5, 70, 36, 2, 402, 406, 5, 30, 16, 2, 403, 404, 7, 228, 2, 2, 404, 406, 5, 58, 30, 2, 405, 386, 3, 2, 2, 2, 405, 396, 3, 2, 2, 2, 405, 398, 3, 2, 2, 2, 405, 399, 3, 2, 2, 2, 405, 400, 3, 2, 2, 2, 405, 401, 3, 2, 2, 2, 405, 402, 3, 2, 2, 2, 405, 403, 3, 2, 2, 2, 406, 409, 3, 2, 2, 2, 407, 405, 3, 2, 2, 2, 407, 408, 3, 2, 2, 2, 408, 414, 3, 2, 2, 2, 409, 407, 3, 2, 2, 2, 410, 412, 7, 24, 2, 2, 411, 410, 3, 2, 2, 2, 411, 412, 3, 2, 2, 2, 412, 413, 3, 2, 2, 2, 413, 415, 5, 34, 18, 2, 414, 411, 3, 2, 2, 2, 414, 415, 3, 2, 2, 2, 415, 1046, 3, 2, 2, 2, 416, 417, 7, 55, 2, 2, 417, 421, 7, 225, 2, 2, 418, 419, 7, 111, 2, 2, 419, 420, 7, 152, 2, 2, 420, 422, 7, 85, 2, 2, 421, 418, 3, 2, 2, 2, 421, 422, 3, 2, 2, 2, 422, 423, 3, 2, 2, 2, 423, 424, 5, 176, 89, 2, 424, 425, 7, 133, 2, 2, 425, 434, 5, 176, 89, 2, 426, 433, 5, 54, 28, 2, 427, 433, 5, 170, 86, 2, 428, 433, 5, 70, 36, 2, 429, 433, 5, 30, 16, 2, 430, 431, 7, 228, 2, 2, 431, 433, 5, 58, 30, 2, 432, 426, 3, 2, 2, 2, 432, 427, 3, 2, 2, 2, 432, 428, 3, 2, 2, 2, 432, 429, 3, 2, 2, 2, 432, 430, 3, 2, 2, 2, 433, 436, 3, 2, 2, 2, 434, 432, 3, 2, 2, 2, 434, 435, 3, 2, 2, 2, 435, 1046, 3, 2, 2, 2, 436, 434, 3, 2, 2, 2, 437, 442, 5, 24, 13, 2, 438, 439, 7, 4, 2, 2, 439, 440, 5, 228, 115, 2, 440, 441, 7, 5, 2, 2, 441, 443, 3, 2, 2, 2, 442, 438, 3, 2, 2, 2, 442, 443, 3, 2, 2, 2, 443, 444, 3, 2, 2, 2, 444, 445, 5, 54, 28, 2, 445, 450, 5, 56, 29, 2, 446, 448, 7, 24, 2, 2, 447, 446, 3, 2, 2, 2, 447, 448, 3, 2, 2, 2, 448, 449, 3, 2, 2, 2, 449, 451, 5, 34, 18, 2, 450, 447, 3, 2, 2, 2, 450, 451, 3, 2, 2, 2, 451, 1046, 3, 2, 2, 2, 452, 453, 7, 18, 2, 2, 453, 454, 7, 225, 2, 2, 454, 456, 5, 174, 88, 2, 455, 457, 5, 40, 21, 2, 456, 455, 3, 2, 2, 2, 456, 457, 3, 2, 2, 2, 457, 458, 3, 2, 2, 2, 458, 459, 7, 51, 2, 2, 459, 467, 7, 219, 2, 2, 460, 468, 5, 258, 130, 2, 461, 462, 7, 98, 2, 2, 462, 463, 7, 46, 2, 2, 463, 468, 5, 152, 77, 2, 464, 465, 7, 98, 2, 2, 465, 466, 7, 16, 2, 2, 466, 468, 7, 46, 2, 2, 467, 460, 3, 2, 2, 2, 467, 461, 3, 2, 2, 2, 467, 464, 3, 2, 2, 2, 467, 468, 3, 2, 2, 2, 468, 1046, 3, 2, 2, 2, 469, 470, 7, 17, 2, 2, 470, 471, 7, 225, 2, 2, 471, 472, 5, 174, 88, 2, 472, 473, 7, 14, 2, 2, 473, 474, 9, 6, 2, 2, 474, 475, 5, 224, 113, 2, 475, 1046, 3, 2, 2, 2, 476, 477, 7, 17, 2, 2, 477, 478, 7, 225, 2, 2, 478, 479, 5, 174, 88, 2, 479, 480, 7, 14, 2, 2, 480, 481, 9, 6, 2, 2, 481, 482, 7, 4, 2, 2, 482, 483, 5, 224, 113, 2, 483, 484, 7, 5, 2, 2, 484, 1046, 3, 2, 2, 2, 485, 486, 7, 17, 2, 2, 486, 487, 7, 225, 2, 2, 487, 488, 5, 174, 88, 2, 488, 489, 7, 189, 2, 2, 489, 490, 7, 45, 2, 2, 490, 491, 5, 174, 88, 2, 491, 492, 7, 233, 2, 2, 492, 493, 5, 254, 128, 2, 493, 1046, 3, 2, 2, 2, 494, 495, 7, 17, 2, 2, 495, 496, 7, 225, 2, 2, 496, 497, 5, 174, 88, 2, 497, 498, 7, 78, 2, 2, 498, 499, 9, 6, 2, 2, 499, 500, 7, 4, 2, 2, 500, 501, 5, 172, 87, 2, 501, 502, 7, 5, 2, 2, 502, 1046, 3, 2, 2, 2, 503, 504, 7, 17, 2, 2, 504, 505, 7, 225, 2, 2, 505, 506, 5, 174, 88, 2, 506, 507, 7, 78, 2, 2, 507, 508, 9, 6, 2, 2, 508, 509, 5, 172, 87, 2, 509, 1046, 3, 2, 2, 2, 510, 511, 7, 17, 2, 2, 511, 512, 9, 7, 2, 2, 512, 513, 5, 174, 88, 2, 513, 514, 7, 189, 2, 2, 514, 515, 7, 233, 2, 2, 515, 516, 5, 174, 88, 2, 516, 1046, 3, 2, 2, 2, 517, 518, 7, 17, 2, 2, 518, 519, 9, 7, 2, 2, 519, 520, 5, 174, 88, 2, 520, 521, 7, 210, 2, 2, 521, 522, 7, 228, 2, 2, 522, 523, 5, 58, 30, 2, 523, 1046, 3, 2, 2, 2, 524, 525, 7, 17, 2, 2, 525, 526, 9, 7, 2, 2, 526, 527, 5, 174, 88, 2, 527, 528, 7, 250, 2, 2, 528, 531, 7, 228, 2, 2, 529, 530, 7, 111, 2, 2, 530, 532, 7, 85, 2, 2, 531, 529, 3, 2, 2, 2, 531, 532, 3, 2, 2, 2, 532, 533, 3, 2, 2, 2, 533, 534, 5, 58, 30, 2, 534, 1046, 3, 2, 2, 2, 535, 536, 7, 17, 2, 2, 536, 537, 7, 225, 2, 2, 537, 538, 5, 174, 88, 2, 538, 540, 9, 8, 2, 2, 539, 541, 7, 45, 2, 2, 540, 539, 3, 2, 2, 2, 540, 541, 3, 2, 2, 2, 541, 542, 3, 2, 2, 2, 542, 544, 5, 174, 88, 2, 543, 545, 5, 266, 134, 2, 544, 543, 3, 2, 2, 2, 544, 545, 3, 2, 2, 2, 545, 1046, 3, 2, 2, 2, 546, 547, 7, 17, 2, 2, 547, 548, 7, 225, 2, 2, 548, 550, 5, 174, 88, 2, 549, 551, 5, 40, 21, 2, 550, 549, 3, 2, 2, 2, 550, 551, 3, 2, 2, 2, 551, 552, 3, 2, 2, 2, 552, 554, 7, 37, 2, 2, 553, 555, 7, 45, 2, 2, 554, 553, 3, 2, 2, 2, 554, 555, 3, 2, 2, 2, 555, 556, 3, 2, 2, 2, 556, 557, 5, 174, 88, 2, 557, 559, 5, 230, 116, 2, 558, 560, 5, 220, 111, 2, 559, 558, 3, 2, 2, 2, 559, 560, 3, 2, 2, 2, 560, 1046, 3, 2, 2, 2, 561, 562, 7, 17, 2, 2, 562, 563, 7, 225, 2, 2, 563, 565, 5, 174, 88, 2, 564, 566, 5, 40, 21, 2, 565, 564, 3, 2, 2, 2, 565, 566, 3, 2, 2, 2, 566, 567, 3, 2, 2, 2, 567, 568, 7, 191, 2, 2, 568, 569, 7, 46, 2, 2, 569, 570, 7, 4, 2, 2, 570, 571, 5, 224, 113, 2, 571, 572, 7, 5, 2, 2, 572, 1046, 3, 2, 2, 2, 573, 574, 7, 17, 2, 2, 574, 575, 7, 225, 2, 2, 575, 577, 5, 174, 88, 2, 576, 578, 5, 40, 21, 2, 577, 576, 3, 2, 2, 2, 577, 578, 3, 2, 2, 2, 578, 579, 3, 2, 2, 2, 579, 580, 7, 210, 2, 2, 580, 581, 7, 207, 2, 2, 581, 585, 7, 281, 2, 2, 582, 583, 7, 261, 2, 2, 583, 584, 7, 208, 2, 2, 584, 586, 5, 58, 30, 2, 585, 582, 3, 2, 2, 2, 585, 586, 3, 2, 2, 2, 586, 1046, 3, 2, 2, 2, 587, 588, 7, 17, 2, 2, 588, 589, 7, 225, 2, 2, 589, 591, 5, 174, 88, 2, 590, 592, 5, 40, 21, 2, 591, 590, 3, 2, 2, 2, 591, 592, 3, 2, 2, 2, 592, 593, 3, 2, 2, 2, 593, 594, 7, 210, 2, 2, 594, 595, 7, 208, 2, 2, 595, 596, 5, 58, 30, 2, 596, 1046, 3, 2, 2, 2, 597, 598, 7, 17, 2, 2, 598, 599, 9, 7, 2, 2, 599, 600, 5, 174, 88, 2, 600, 604, 7, 14, 2, 2, 601, 602, 7, 111, 2, 2, 602, 603, 7, 152, 2, 2, 603, 605, 7, 85, 2, 2, 604, 601, 3, 2, 2, 2, 604, 605, 3, 2, 2, 2, 605, 607, 3, 2, 2, 2, 606, 608, 5, 38, 20, 2, 607, 606, 3, 2, 2, 2, 608, 609, 3, 2, 2, 2, 609, 607, 3, 2, 2, 2, 609, 610, 3, 2, 2, 2, 610, 1046, 3, 2, 2, 2, 611, 612, 7, 17, 2, 2, 612, 613, 7, 225, 2, 2, 613, 614, 5, 174, 88, 2, 614, 615, 5, 40, 21, 2, 615, 616, 7, 189, 2, 2, 616, 617, 7, 233, 2, 2, 617, 618, 5, 40, 21, 2, 618, 1046, 3, 2, 2, 2, 619, 620, 7, 17, 2, 2, 620, 621, 9, 7, 2, 2, 621, 622, 5, 174, 88, 2, 622, 625, 7, 78, 2, 2, 623, 624, 7, 111, 2, 2, 624, 626, 7, 85, 2, 2, 625, 623, 3, 2, 2, 2, 625, 626, 3, 2, 2, 2, 626, 627, 3, 2, 2, 2, 627, 632, 5, 40, 21, 2, 628, 629, 7, 6, 2, 2, 629, 631, 5, 40, 21, 2, 630, 628, 3, 2, 2, 2, 631, 634, 3, 2, 2, 2, 632, 630, 3, 2, 2, 2, 632, 633, 3, 2, 2, 2, 633, 636, 3, 2, 2, 2, 634, 632, 3, 2, 2, 2, 635, 637, 7, 180, 2, 2, 636, 635, 3, 2, 2, 2, 636, 637, 3, 2, 2, 2, 637, 1046, 3, 2, 2, 2, 638, 639, 7, 17, 2, 2, 639, 640, 7, 225, 2, 2, 640, 642, 5, 174, 88, 2, 641, 643, 5, 40, 21, 2, 642, 641, 3, 2, 2, 2, 642, 643, 3, 2, 2, 2, 643, 644, 3, 2, 2, 2, 644, 645, 7, 210, 2, 2, 645, 646, 5, 30, 16, 2, 646, 1046, 3, 2, 2, 2, 647, 648, 7, 17, 2, 2, 648, 649, 7, 225, 2, 2, 649, 650, 5, 174, 88, 2, 650, 651, 7, 185, 2, 2, 651, 652, 7, 171, 2, 2, 652, 1046, 3, 2, 2, 2, 653, 654, 7, 78, 2, 2, 654, 657, 7, 225, 2, 2, 655, 656, 7, 111, 2, 2, 656, 658, 7, 85, 2, 2, 657, 655, 3, 2, 2, 2, 657, 658, 3, 2, 2, 2, 658, 659, 3, 2, 2, 2, 659, 661, 5, 174, 88, 2, 660, 662, 7, 180, 2, 2, 661, 660, 3, 2, 2, 2, 661, 662, 3, 2, 2, 2, 662, 1046, 3, 2, 2, 2, 663, 664, 7, 78, 2, 2, 664, 667, 7, 256, 2, 2, 665, 666, 7, 111, 2, 2, 666, 668, 7, 85, 2, 2, 667, 665, 3, 2, 2, 2, 667, 668, 3, 2, 2, 2, 668, 669, 3, 2, 2, 2, 669, 1046, 5, 174, 88, 2, 670, 673, 7, 55, 2, 2, 671, 672, 7, 160, 2, 2, 672, 674, 7, 191, 2, 2, 673, 671, 3, 2, 2, 2, 673, 674, 3, 2, 2, 2, 674, 679, 3, 2, 2, 2, 675, 677, 7, 106, 2, 2, 676, 675, 3, 2, 2, 2, 676, 677, 3, 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 680, 7, 229, 2, 2, 679, 676, 3, 2, 2, 2, 679, 680, 3, 2, 2, 2, 680, 681, 3, 2, 2, 2, 681, 685, 7, 256, 2, 2, 682, 683, 7, 111, 2, 2, 683, 684, 7, 152, 2, 2, 684, 686, 7, 85, 2, 2, 685, 682, 3, 2, 2, 2, 685, 686, 3, 2, 2, 2, 686, 687, 3, 2, 2, 2, 687, 689, 5, 174, 88, 2, 688, 690, 5, 158, 80, 2, 689, 688, 3, 2, 2, 2, 689, 690, 3, 2, 2, 2, 690, 699, 3, 2, 2, 2, 691, 698, 5, 32, 17, 2, 692, 693, 7, 170, 2, 2, 693, 694, 7, 156, 2, 2, 694, 698, 5, 150, 76, 2, 695, 696, 7, 228, 2, 2, 696, 698, 5, 58, 30, 2, 697, 691, 3, 2, 2, 2, 697, 692, 3, 2, 2, 2, 697, 695, 3, 2, 2, 2, 698, 701, 3, 2, 2, 2, 699, 697, 3, 2, 2, 2, 699, 700, 3, 2, 2, 2, 700, 702, 3, 2, 2, 2, 701, 699, 3, 2, 2, 2, 702, 703, 7, 24, 2, 2, 703, 704, 5, 34, 18, 2, 704, 1046, 3, 2, 2, 2, 705, 708, 7, 55, 2, 2, 706, 707, 7, 160, 2, 2, 707, 709, 7, 191, 2, 2, 708, 706, 3, 2, 2, 2, 708, 709, 3, 2, 2, 2, 709, 711, 3, 2, 2, 2, 710, 712, 7, 106, 2, 2, 711, 710, 3, 2, 2, 2, 711, 712, 3, 2, 2, 2, 712, 713, 3, 2, 2, 2, 713, 714, 7, 229, 2, 2, 714, 715, 7, 256, 2, 2, 715, 720, 5, 176, 89, 2, 716, 717, 7, 4, 2, 2, 717, 718, 5, 228, 115, 2, 718, 719, 7, 5, 2, 2, 719, 721, 3, 2, 2, 2, 720, 716, 3, 2, 2, 2, 720, 721, 3, 2, 2, 2, 721, 722, 3, 2, 2, 2, 722, 725, 5, 54, 28, 2, 723, 724, 7, 159, 2, 2, 724, 726, 5, 58, 30, 2, 725, 723, 3, 2, 2, 2, 725, 726, 3, 2, 2, 2, 726, 1046, 3, 2, 2, 2, 727, 728, 7, 17, 2, 2, 728, 729, 7, 256, 2, 2, 729, 731, 5, 174, 88, 2, 730, 732, 7, 24, 2, 2, 731, 730, 3, 2, 2, 2, 731, 732, 3, 2, 2, 2, 732, 733, 3, 2, 2, 2, 733, 734, 5, 34, 18, 2, 734, 1046, 3, 2, 2, 2, 735, 738, 7, 55, 2, 2, 736, 737, 7, 160, 2, 2, 737, 739, 7, 191, 2, 2, 738, 736, 3, 2, 2, 2, 738, 739, 3, 2, 2, 2, 739, 741, 3, 2, 2, 2, 740, 742, 7, 229, 2, 2, 741, 740, 3, 2, 2, 2, 741, 742, 3, 2, 2, 2, 742, 743, 3, 2, 2, 2, 743, 747, 7, 104, 2, 2, 744, 745, 7, 111, 2, 2, 745, 746, 7, 152, 2, 2, 746, 748, 7, 85, 2, 2, 747, 744, 3, 2, 2, 2, 747, 748, 3, 2, 2, 2, 748, 749, 3, 2, 2, 2, 749, 750, 5, 174, 88, 2, 750, 751, 7, 24, 2, 2, 751, 761, 7, 281, 2, 2, 752, 753, 7, 254, 2, 2, 753, 758, 5, 76, 39, 2, 754, 755, 7, 6, 2, 2, 755, 757, 5, 76, 39, 2, 756, 754, 3, 2, 2, 2, 757, 760, 3, 2, 2, 2, 758, 756, 3, 2, 2, 2, 758, 759, 3, 2, 2, 2, 759, 762, 3, 2, 2, 2, 760, 758, 3, 2, 2, 2, 761, 752, 3, 2, 2, 2, 761, 762, 3, 2, 2, 2, 762, 1046, 3, 2, 2, 2, 763, 765, 7, 78, 2, 2, 764, 766, 7, 229, 2, 2, 765, 764, 3, 2, 2, 2, 765, 766, 3, 2, 2, 2, 766, 767, 3, 2, 2, 2, 767, 770, 7, 104, 2, 2, 768, 769, 7, 111, 2, 2, 769, 771, 7, 85, 2, 2, 770, 768, 3, 2, 2, 2, 770, 771, 3, 2, 2, 2, 771, 772, 3, 2, 2, 2, 772, 1046, 5, 174, 88, 2, 773, 775, 7, 86, 2, 2, 774, 776, 9, 9, 2, 2, 775, 774, 3, 2, 2, 2, 775, 776, 3, 2, 2, 2, 776, 777, 3, 2, 2, 2, 777, 1046, 5, 16, 9, 2, 778, 779, 7, 213, 2, 2, 779, 782, 7, 226, 2, 2, 780, 781, 9, 5, 2, 2, 781, 783, 5, 174, 88, 2, 782, 780, 3, 2, 2, 2, 782, 783, 3, 2, 2, 2, 783, 788, 3, 2, 2, 2, 784, 786, 7, 133, 2, 2, 785, 784, 3, 2, 2, 2, 785, 786, 3, 2, 2, 2, 786, 787, 3, 2, 2, 2, 787, 789, 7, 281, 2, 2, 788, 785, 3, 2, 2, 2, 788, 789, 3, 2, 2, 2, 789, 1046, 3, 2, 2, 2, 790, 791, 7, 213, 2, 2, 791, 792, 7, 225, 2, 2, 792, 795, 7, 88, 2, 2, 793, 794, 9, 5, 2, 2, 794, 796, 5, 174, 88, 2, 795, 793, 3, 2, 2, 2, 795, 796, 3, 2, 2, 2, 796, 797, 3, 2, 2, 2, 797, 798, 7, 133, 2, 2, 798, 800, 7, 281, 2, 2, 799, 801, 5, 40, 21, 2, 800, 799, 3, 2, 2, 2, 800, 801, 3, 2, 2, 2, 801, 1046, 3, 2, 2, 2, 802, 803, 7, 213, 2, 2, 803, 804, 7, 228, 2, 2, 804, 809, 5, 174, 88, 2, 805, 806, 7, 4, 2, 2, 806, 807, 5, 62, 32, 2, 807, 808, 7, 5, 2, 2, 808, 810, 3, 2, 2, 2, 809, 805, 3, 2, 2, 2, 809, 810, 3, 2, 2, 2, 810, 1046, 3, 2, 2, 2, 811, 812, 7, 213, 2, 2, 812, 813, 7, 46, 2, 2, 813, 814, 9, 5, 2, 2, 814, 817, 5, 174, 88, 2, 815, 816, 9, 5, 2, 2, 816, 818, 5, 174, 88, 2, 817, 815, 3, 2, 2, 2, 817, 818, 3, 2, 2, 2, 818, 1046, 3, 2, 2, 2, 819, 820, 7, 213, 2, 2, 820, 823, 7, 257, 2, 2, 821, 822, 9, 5, 2, 2, 822, 824, 5, 174, 88, 2, 823, 821, 3, 2, 2, 2, 823, 824, 3, 2, 2, 2, 824, 829, 3, 2, 2, 2, 825, 827, 7, 133, 2, 2, 826, 825, 3, 2, 2, 2, 826, 827, 3, 2, 2, 2, 827, 828, 3, 2, 2, 2, 828, 830, 7, 281, 2, 2, 829, 826, 3, 2, 2, 2, 829, 830, 3, 2, 2, 2, 830, 1046, 3, 2, 2, 2, 831, 832, 7, 213, 2, 2, 832, 833, 7, 171, 2, 2, 833, 835, 5, 174, 88, 2, 834, 836, 5, 40, 21, 2, 835, 834, 3, 2, 2, 2, 835, 836, 3, 2, 2, 2, 836, 1046, 3, 2, 2, 2, 837, 839, 7, 213, 2, 2, 838, 840, 5, 258, 130, 2, 839, 838, 3, 2, 2, 2, 839, 840, 3, 2, 2, 2, 840, 841, 3, 2, 2, 2, 841, 849, 7, 105, 2, 2, 842, 844, 7, 133, 2, 2, 843, 842, 3, 2, 2, 2, 843, 844, 3, 2, 2, 2, 844, 847, 3, 2, 2, 2, 845, 848, 5, 174, 88, 2, 846, 848, 7, 281, 2, 2, 847, 845, 3, 2, 2, 2, 847, 846, 3, 2, 2, 2, 848, 850, 3, 2, 2, 2, 849, 843, 3, 2, 2, 2, 849, 850, 3, 2, 2, 2, 850, 1046, 3, 2, 2, 2, 851, 852, 7, 213, 2, 2, 852, 853, 7, 55, 2, 2, 853, 854, 7, 225, 2, 2, 854, 857, 5, 174, 88, 2, 855, 856, 7, 24, 2, 2, 856, 858, 7, 207, 2, 2, 857, 855, 3, 2, 2, 2, 857, 858, 3, 2, 2, 2, 858, 1046, 3, 2, 2, 2, 859, 860, 7, 213, 2, 2, 860, 861, 7, 58, 2, 2, 861, 1046, 7, 148, 2, 2, 862, 863, 9, 10, 2, 2, 863, 865, 7, 104, 2, 2, 864, 866, 7, 88, 2, 2, 865, 864, 3, 2, 2, 2, 865, 866, 3, 2, 2, 2, 866, 867, 3, 2, 2, 2, 867, 1046, 5, 46, 24, 2, 868, 869, 9, 10, 2, 2, 869, 871, 5, 44, 23, 2, 870, 872, 7, 88, 2, 2, 871, 870, 3, 2, 2, 2, 871, 872, 3, 2, 2, 2, 872, 873, 3, 2, 2, 2, 873, 874, 5, 174, 88, 2, 874, 1046, 3, 2, 2, 2, 875, 877, 9, 10, 2, 2, 876, 878, 7, 225, 2, 2, 877, 876, 3, 2, 2, 2, 877, 878, 3, 2, 2, 2, 878, 880, 3, 2, 2, 2, 879, 881, 9, 11, 2, 2, 880, 879, 3, 2, 2, 2, 880, 881, 3, 2, 2, 2, 881, 882, 3, 2, 2, 2, 882, 884, 5, 174, 88, 2, 883, 885, 5, 40, 21, 2, 884, 883, 3, 2, 2, 2, 884, 885, 3, 2, 2, 2, 885, 887, 3, 2, 2, 2, 886, 888, 5, 48, 25, 2, 887, 886, 3, 2, 2, 2, 887, 888, 3, 2, 2, 2, 888, 1046, 3, 2, 2, 2, 889, 891, 9, 10, 2, 2, 890, 892, 7, 181, 2, 2, 891, 890, 3, 2, 2, 2, 891, 892, 3, 2, 2, 2, 892, 893, 3, 2, 2, 2, 893, 1046, 5, 34, 18, 2, 894, 895, 7, 47, 2, 2, 895, 896, 7, 156, 2, 2, 896, 897, 5, 44, 23, 2, 897, 898, 5, 174, 88, 2, 898, 899, 7, 124, 2, 2, 899, 900, 9, 12, 2, 2, 900, 1046, 3, 2, 2, 2, 901, 902, 7, 47, 2, 2, 902, 903, 7, 156, 2, 2, 903, 904, 7, 225, 2, 2, 904, 905, 5, 174, 88, 2, 905, 906, 7, 124, 2, 2, 906, 907, 9, 12, 2, 2, 907, 1046, 3, 2, 2, 2, 908, 909, 7, 188, 2, 2, 909, 910, 7, 225, 2, 2, 910, 1046, 5, 174, 88, 2, 911, 912, 7, 188, 2, 2, 912, 913, 7, 104, 2, 2, 913, 1046, 5, 174, 88, 2, 914, 922, 7, 188, 2, 2, 915, 923, 7, 281, 2, 2, 916, 918, 11, 2, 2, 2, 917, 916, 3, 2, 2, 2, 918, 921, 3, 2, 2, 2, 919, 920, 3, 2, 2, 2, 919, 917, 3, 2, 2, 2, 920, 923, 3, 2, 2, 2, 921, 919, 3, 2, 2, 2, 922, 915, 3, 2, 2, 2, 922, 919, 3, 2, 2, 2, 923, 1046, 3, 2, 2, 2, 924, 926, 7, 33, 2, 2, 925, 927, 7, 130, 2, 2, 926, 925, 3, 2, 2, 2, 926, 927, 3, 2, 2, 2, 927, 928, 3, 2, 2, 2, 928, 929, 7, 225, 2, 2, 929, 932, 5, 174, 88, 2, 930, 931, 7, 159, 2, 2, 931, 933, 5, 58, 30, 2, 932, 930, 3, 2, 2, 2, 932, 933, 3, 2, 2, 2, 933, 938, 3, 2, 2, 2, 934, 936, 7, 24, 2, 2, 935, 934, 3, 2, 2, 2, 935, 936, 3, 2, 2, 2, 936, 937, 3, 2, 2, 2, 937, 939, 5, 34, 18, 2, 938, 935, 3, 2, 2, 2, 938, 939, 3, 2, 2, 2, 939, 1046, 3, 2, 2, 2, 940, 941, 7, 245, 2, 2, 941, 944, 7, 225, 2, 2, 942, 943, 7, 111, 2, 2, 943, 945, 7, 85, 2, 2, 944, 942, 3, 2, 2, 2, 944, 945, 3, 2, 2, 2, 945, 946, 3, 2, 2, 2, 946, 1046, 5, 174, 88, 2, 947, 948, 7, 39, 2, 2, 948, 1046, 7, 33, 2, 2, 949, 950, 7, 137, 2, 2, 950, 952, 7, 63, 2, 2, 951, 953, 7, 138, 2, 2, 952, 951, 3, 2, 2, 2, 952, 953, 3, 2, 2, 2, 953, 954, 3, 2, 2, 2, 954, 955, 7, 118, 2, 2, 955, 957, 7, 281, 2, 2, 956, 958, 7, 168, 2, 2, 957, 956, 3, 2, 2, 2, 957, 958, 3, 2, 2, 2, 958, 959, 3, 2, 2, 2, 959, 960, 7, 123, 2, 2, 960, 961, 7, 225, 2, 2, 961, 963, 5, 174, 88, 2, 962, 964, 5, 40, 21, 2, 963, 962, 3, 2, 2, 2, 963, 964, 3, 2, 2, 2, 964, 1046, 3, 2, 2, 2, 965, 966, 7, 241, 2, 2, 966, 967, 7, 225, 2, 2, 967, 969, 5, 174, 88, 2, 968, 970, 5, 40, 21, 2, 969, 968, 3, 2, 2, 2, 969, 970, 3, 2, 2, 2, 970, 1046, 3, 2, 2, 2, 971, 972, 7, 147, 2, 2, 972, 973, 7, 190, 2, 2, 973, 974, 7, 225, 2, 2, 974, 1046, 5, 174, 88, 2, 975, 976, 9, 13, 2, 2, 976, 984, 5, 258, 130, 2, 977, 985, 7, 281, 2, 2, 978, 980, 11, 2, 2, 2, 979, 978, 3, 2, 2, 2, 980, 983, 3, 2, 2, 2, 981, 982, 3, 2, 2, 2, 981, 979, 3, 2, 2, 2, 982, 985, 3, 2, 2, 2, 983, 981, 3, 2, 2, 2, 984, 977, 3, 2, 2, 2, 984, 981, 3, 2, 2, 2, 985, 1046, 3, 2, 2, 2, 986, 987, 7, 210, 2, 2, 987, 991, 7, 197, 2, 2, 988, 990, 11, 2, 2, 2, 989, 988, 3, 2, 2, 2, 990, 993, 3, 2, 2, 2, 991, 992, 3, 2, 2, 2, 991, 989, 3, 2, 2, 2, 992, 1046, 3, 2, 2, 2, 993, 991, 3, 2, 2, 2, 994, 995, 7, 210, 2, 2, 995, 996, 7, 232, 2, 2, 996, 997, 7, 262, 2, 2, 997, 1046, 5, 208, 105, 2, 998, 999, 7, 210, 2, 2, 999, 1000, 7, 232, 2, 2, 1000, 1001, 7, 262, 2, 2, 1001, 1046, 9, 14, 2, 2, 1002, 1003, 7, 210, 2, 2, 1003, 1004, 7, 232, 2, 2, 1004, 1008, 7, 262, 2, 2, 1005, 1007, 11, 2, 2, 2, 1006, 1005, 3, 2, 2, 2, 1007, 1010, 3, 2, 2, 2, 1008, 1009, 3, 2, 2, 2, 1008, 1006, 3, 2, 2, 2, 1009, 1046, 3, 2, 2, 2, 1010, 1008, 3, 2, 2, 2, 1011, 1012, 7, 210, 2, 2, 1012, 1020, 5, 18, 10, 2, 1013, 1017, 7, 263, 2, 2, 1014, 1016, 11, 2, 2, 2, 1015, 1014, 3, 2, 2, 2, 1016, 1019, 3, 2, 2, 2, 1017, 1018, 3, 2, 2, 2, 1017, 1015, 3, 2, 2, 2, 1018, 1021, 3, 2, 2, 2, 1019, 1017, 3, 2, 2, 2, 1020, 1013, 3, 2, 2, 2, 1020, 1021, 3, 2, 2, 2, 1021, 1046, 3, 2, 2, 2, 1022, 1026, 7, 210, 2, 2, 1023, 1025, 11, 2, 2, 2, 1024, 1023, 3, 2, 2, 2, 1025, 1028, 3, 2, 2, 2, 1026, 1027, 3, 2, 2, 2, 1026, 1024, 3, 2, 2, 2, 1027, 1046, 3, 2, 2, 2, 1028, 1026, 3, 2, 2, 2, 1029, 1030, 7, 192, 2, 2, 1030, 1046, 5, 18, 10, 2, 1031, 1035, 7, 192, 2, 2, 1032, 1034, 11, 2, 2, 2, 1033, 1032, 3, 2, 2, 2, 1034, 1037, 3, 2, 2, 2, 1035, 1036, 3, 2, 2, 2, 1035, 1033, 3, 2, 2, 2, 1036, 1046, 3, 2, 2, 2, 1037, 1035, 3, 2, 2, 2, 1038, 1042, 5, 20, 11, 2, 1039, 1041, 11, 2, 2, 2, 1040, 1039, 3, 2, 2, 2, 1041, 1044, 3, 2, 2, 2, 1042, 1043, 3, 2, 2, 2, 1042, 1040, 3, 2, 2, 2, 1043, 1046, 3, 2, 2, 2, 1044, 1042, 3, 2, 2, 2, 1045, 301, 3, 2, 2, 2, 1045, 303, 3, 2, 2, 2, 1045, 306, 3, 2, 2, 2, 1045, 311, 3, 2, 2, 2, 1045, 329, 3, 2, 2, 2, 1045, 336, 3, 2, 2, 2, 1045, 342, 3, 2, 2, 2, 1045, 352, 3, 2, 2, 2, 1045, 364, 3, 2, 2, 2, 1045, 379, 3, 2, 2, 2, 1045, 416, 3, 2, 2, 2, 1045, 437, 3, 2, 2, 2, 1045, 452, 3, 2, 2, 2, 1045, 469, 3, 2, 2, 2, 1045, 476, 3, 2, 2, 2, 1045, 485, 3, 2, 2, 2, 1045, 494, 3, 2, 2, 2, 1045, 503, 3, 2, 2, 2, 1045, 510, 3, 2, 2, 2, 1045, 517, 3, 2, 2, 2, 1045, 524, 3, 2, 2, 2, 1045, 535, 3, 2, 2, 2, 1045, 546, 3, 2, 2, 2, 1045, 561, 3, 2, 2, 2, 1045, 573, 3, 2, 2, 2, 1045, 587, 3, 2, 2, 2, 1045, 597, 3, 2, 2, 2, 1045, 611, 3, 2, 2, 2, 1045, 619, 3, 2, 2, 2, 1045, 638, 3, 2, 2, 2, 1045, 647, 3, 2, 2, 2, 1045, 653, 3, 2, 2, 2, 1045, 663, 3, 2, 2, 2, 1045, 670, 3, 2, 2, 2, 1045, 705, 3, 2, 2, 2, 1045, 727, 3, 2, 2, 2, 1045, 735, 3, 2, 2, 2, 1045, 763, 3, 2, 2, 2, 1045, 773, 3, 2, 2, 2, 1045, 778, 3, 2, 2, 2, 1045, 790, 3, 2, 2, 2, 1045, 802, 3, 2, 2, 2, 1045, 811, 3, 2, 2, 2, 1045, 819, 3, 2, 2, 2, 1045, 831, 3, 2, 2, 2, 1045, 837, 3, 2, 2, 2, 1045, 851, 3, 2, 2, 2, 1045, 859, 3, 2, 2, 2, 1045, 862, 3, 2, 2, 2, 1045, 868, 3, 2, 2, 2, 1045, 875, 3, 2, 2, 2, 1045, 889, 3, 2, 2, 2, 1045, 894, 3, 2, 2, 2, 1045, 901, 3, 2, 2, 2, 1045, 908, 3, 2, 2, 2, 1045, 911, 3, 2, 2, 2, 1045, 914, 3, 2, 2, 2, 1045, 924, 3, 2, 2, 2, 1045, 940, 3, 2, 2, 2, 1045, 947, 3, 2, 2, 2, 1045, 949, 3, 2, 2, 2, 1045, 965, 3, 2, 2, 2, 1045, 971, 3, 2, 2, 2, 1045, 975, 3, 2, 2, 2, 1045, 986, 3, 2, 2, 2, 1045, 994, 3, 2, 2, 2, 1045, 998, 3, 2, 2, 2, 1045, 1002, 3, 2, 2, 2, 1045, 1011, 3, 2, 2, 2, 1045, 1022, 3, 2, 2, 2, 1045, 1029, 3, 2, 2, 2, 1045, 1031, 3, 2, 2, 2, 1045, 1038, 3, 2, 2, 2, 1046, 17, 3, 2, 2, 2, 1047, 1048, 5, 262, 132, 2, 1048, 19, 3, 2, 2, 2, 1049, 1050, 7, 55, 2, 2, 1050, 1218, 7, 197, 2, 2, 1051, 1052, 7, 78, 2, 2, 1052, 1218, 7, 197, 2, 2, 1053, 1055, 7, 107, 2, 2, 1054, 1056, 7, 197, 2, 2, 1055, 1054, 3, 2, 2, 2, 1055, 1056, 3, 2, 2, 2, 1056, 1218, 3, 2, 2, 2, 1057, 1059, 7, 194, 2, 2, 1058, 1060, 7, 197, 2, 2, 1059, 1058, 3, 2, 2, 2, 1059, 1060, 3, 2, 2, 2, 1060, 1218, 3, 2, 2, 2, 1061, 1062, 7, 213, 2, 2, 1062, 1218, 7, 107, 2, 2, 1063, 1064, 7, 213, 2, 2, 1064, 1066, 7, 197, 2, 2, 1065, 1067, 7, 107, 2, 2, 1066, 1065, 3, 2, 2, 2, 1066, 1067, 3, 2, 2, 2, 1067, 1218, 3, 2, 2, 2, 1068, 1069, 7, 213, 2, 2, 1069, 1218, 7, 178, 2, 2, 1070, 1071, 7, 213, 2, 2, 1071, 1218, 7, 198, 2, 2, 1072, 1073, 7, 213, 2, 2, 1073, 1074, 7, 58, 2, 2, 1074, 1218, 7, 198, 2, 2, 1075, 1076, 7, 87, 2, 2, 1076, 1218, 7, 225, 2, 2, 1077, 1078, 7, 113, 2, 2, 1078, 1218, 7, 225, 2, 2, 1079, 1080, 7, 213, 2, 2, 1080, 1218, 7, 50, 2, 2, 1081, 1082, 7, 213, 2, 2, 1082, 1083, 7, 55, 2, 2, 1083, 1218, 7, 225, 2, 2, 1084, 1085, 7, 213, 2, 2, 1085, 1218, 7, 237, 2, 2, 1086, 1087, 7, 213, 2, 2, 1087, 1218, 7, 116, 2, 2, 1088, 1089, 7, 213, 2, 2, 1089, 1218, 7, 141, 2, 2, 1090, 1091, 7, 55, 2, 2, 1091, 1218, 7, 115, 2, 2, 1092, 1093, 7, 78, 2, 2, 1093, 1218, 7, 115, 2, 2, 1094, 1095, 7, 17, 2, 2, 1095, 1218, 7, 115, 2, 2, 1096, 1097, 7, 140, 2, 2, 1097, 1218, 7, 225, 2, 2, 1098, 1099, 7, 140, 2, 2, 1099, 1218, 7, 64, 2, 2, 1100, 1101, 7, 249, 2, 2, 1101, 1218, 7, 225, 2, 2, 1102, 1103, 7, 249, 2, 2, 1103, 1218, 7, 64, 2, 2, 1104, 1105, 7, 55, 2, 2, 1105, 1106, 7, 229, 2, 2, 1106, 1218, 7, 143, 2, 2, 1107, 1108, 7, 78, 2, 2, 1108, 1109, 7, 229, 2, 2, 1109, 1218, 7, 143, 2, 2, 1110, 1111, 7, 17, 2, 2, 1111, 1112, 7, 225, 2, 2, 1112, 1113, 5, 176, 89, 2, 1113, 1114, 7, 152, 2, 2, 1114, 1115, 7, 41, 2, 2, 1115, 1218, 3, 2, 2, 2, 1116, 1117, 7, 17, 2, 2, 1117, 1118, 7, 225, 2, 2, 1118, 1119, 5, 176, 89, 2, 1119, 1120, 7, 41, 2, 2, 1120, 1121, 7, 32, 2, 2, 1121, 1218, 3, 2, 2, 2, 1122, 1123, 7, 17, 2, 2, 1123, 1124, 7, 225, 2, 2, 1124, 1125, 5, 176, 89, 2, 1125, 1126, 7, 152, 2, 2, 1126, 1127, 7, 217, 2, 2, 1127, 1218, 3, 2, 2, 2, 1128, 1129, 7, 17, 2, 2, 1129, 1130, 7, 225, 2, 2, 1130, 1131, 5, 176, 89, 2, 1131, 1132, 7, 214, 2, 2, 1132, 1133, 7, 32, 2, 2, 1133, 1218, 3, 2, 2, 2, 1134, 1135, 7, 17, 2, 2, 1135, 1136, 7, 225, 2, 2, 1136, 1137, 5, 176, 89, 2, 1137, 1138, 7, 152, 2, 2, 1138, 1139, 7, 214, 2, 2, 1139, 1218, 3, 2, 2, 2, 1140, 1141, 7, 17, 2, 2, 1141, 1142, 7, 225, 2, 2, 1142, 1143, 5, 176, 89, 2, 1143, 1144, 7, 152, 2, 2, 1144, 1145, 7, 220, 2, 2, 1145, 1146, 7, 24, 2, 2, 1146, 1147, 7, 73, 2, 2, 1147, 1218, 3, 2, 2, 2, 1148, 1149, 7, 17, 2, 2, 1149, 1150, 7, 225, 2, 2, 1150, 1151, 5, 176, 89, 2, 1151, 1152, 7, 210, 2, 2, 1152, 1153, 7, 214, 2, 2, 1153, 1154, 7, 139, 2, 2, 1154, 1218, 3, 2, 2, 2, 1155, 1156, 7, 17, 2, 2, 1156, 1157, 7, 225, 2, 2, 1157, 1158, 5, 176, 89, 2, 1158, 1159, 7, 84, 2, 2, 1159, 1160, 7, 169, 2, 2, 1160, 1218, 3, 2, 2, 2, 1161, 1162, 7, 17, 2, 2, 1162, 1163, 7, 225, 2, 2, 1163, 1164, 5, 176, 89, 2, 1164, 1165, 7, 22, 2, 2, 1165, 1166, 7, 169, 2, 2, 1166, 1218, 3, 2, 2, 2, 1167, 1168, 7, 17, 2, 2, 1168, 1169, 7, 225, 2, 2, 1169, 1170, 5, 176, 89, 2, 1170, 1171, 7, 243, 2, 2, 1171, 1172, 7, 169, 2, 2, 1172, 1218, 3, 2, 2, 2, 1173, 1174, 7, 17, 2, 2, 1174, 1175, 7, 225, 2, 2, 1175, 1176, 5, 176, 89, 2, 1176, 1177, 7, 234, 2, 2, 1177, 1218, 3, 2, 2, 2, 1178, 1179, 7, 17, 2, 2, 1179, 1180, 7, 225, 2, 2, 1180, 1182, 5, 176, 89, 2, 1181, 1183, 5, 40, 21, 2, 1182, 1181, 3, 2, 2, 2, 1182, 1183, 3, 2, 2, 2, 1183, 1184, 3, 2, 2, 2, 1184, 1185, 7, 49, 2, 2, 1185, 1218, 3, 2, 2, 2, 1186, 1187, 7, 17, 2, 2, 1187, 1188, 7, 225, 2, 2, 1188, 1190, 5, 176, 89, 2, 1189, 1191, 5, 40, 21, 2, 1190, 1189, 3, 2, 2, 2, 1190, 1191, 3, 2, 2, 2, 1191, 1192, 3, 2, 2, 2, 1192, 1193, 7, 52, 2, 2, 1193, 1218, 3, 2, 2, 2, 1194, 1195, 7, 17, 2, 2, 1195, 1196, 7, 225, 2, 2, 1196, 1198, 5, 176, 89, 2, 1197, 1199, 5, 40, 21, 2, 1198, 1197, 3, 2, 2, 2, 1198, 1199, 3, 2, 2, 2, 1199, 1200, 3, 2, 2, 2, 1200, 1201, 7, 210, 2, 2, 1201, 1202, 7, 95, 2, 2, 1202, 1218, 3, 2, 2, 2, 1203, 1204, 7, 17, 2, 2, 1204, 1205, 7, 225, 2, 2, 1205, 1207, 5, 176, 89, 2, 1206, 1208, 5, 40, 21, 2, 1207, 1206, 3, 2, 2, 2, 1207, 1208, 3, 2, 2, 2, 1208, 1209, 3, 2, 2, 2, 1209, 1210, 7, 191, 2, 2, 1210, 1211, 7, 46, 2, 2, 1211, 1218, 3, 2, 2, 2, 1212, 1213, 7, 218, 2, 2, 1213, 1218, 7, 236, 2, 2, 1214, 1218, 7, 48, 2, 2, 1215, 1218, 7, 199, 2, 2, 1216, 1218, 7, 72, 2, 2, 1217, 1049, 3, 2, 2, 2, 1217, 1051, 3, 2, 2, 2, 1217, 1053, 3, 2, 2, 2, 1217, 1057, 3, 2, 2, 2, 1217, 1061, 3, 2, 2, 2, 1217, 1063, 3, 2, 2, 2, 1217, 1068, 3, 2, 2, 2, 1217, 1070, 3, 2, 2, 2, 1217, 1072, 3, 2, 2, 2, 1217, 1075, 3, 2, 2, 2, 1217, 1077, 3, 2, 2, 2, 1217, 1079, 3, 2, 2, 2, 1217, 1081, 3, 2, 2, 2, 1217, 1084, 3, 2, 2, 2, 1217, 1086, 3, 2, 2, 2, 1217, 1088, 3, 2, 2, 2, 1217, 1090, 3, 2, 2, 2, 1217, 1092, 3, 2, 2, 2, 1217, 1094, 3, 2, 2, 2, 1217, 1096, 3, 2, 2, 2, 1217, 1098, 3, 2, 2, 2, 1217, 1100, 3, 2, 2, 2, 1217, 1102, 3, 2, 2, 2, 1217, 1104, 3, 2, 2, 2, 1217, 1107, 3, 2, 2, 2, 1217, 1110, 3, 2, 2, 2, 1217, 1116, 3, 2, 2, 2, 1217, 1122, 3, 2, 2, 2, 1217, 1128, 3, 2, 2, 2, 1217, 1134, 3, 2, 2, 2, 1217, 1140, 3, 2, 2, 2, 1217, 1148, 3, 2, 2, 2, 1217, 1155, 3, 2, 2, 2, 1217, 1161, 3, 2, 2, 2, 1217, 1167, 3, 2, 2, 2, 1217, 1173, 3, 2, 2, 2, 1217, 1178, 3, 2, 2, 2, 1217, 1186, 3, 2, 2, 2, 1217, 1194, 3, 2, 2, 2, 1217, 1203, 3, 2, 2, 2, 1217, 1212, 3, 2, 2, 2, 1217, 1214, 3, 2, 2, 2, 1217, 1215, 3, 2, 2, 2, 1217, 1216, 3, 2, 2, 2, 1218, 21, 3, 2, 2, 2, 1219, 1221, 7, 55, 2, 2, 1220, 1222, 7, 229, 2, 2, 1221, 1220, 3, 2, 2, 2, 1221, 1222, 3, 2, 2, 2, 1222, 1224, 3, 2, 2, 2, 1223, 1225, 7, 89, 2, 2, 1224, 1223, 3, 2, 2, 2, 1224, 1225, 3, 2, 2, 2, 1225, 1226, 3, 2, 2, 2, 1226, 1230, 7, 225, 2, 2, 1227, 1228, 7, 111, 2, 2, 1228, 1229, 7, 152, 2, 2, 1229, 1231, 7, 85, 2, 2, 1230, 1227, 3, 2, 2, 2, 1230, 1231, 3, 2, 2, 2, 1231, 1232, 3, 2, 2, 2, 1232, 1233, 5, 174, 88, 2, 1233, 23, 3, 2, 2, 2, 1234, 1235, 7, 55, 2, 2, 1235, 1237, 7, 160, 2, 2, 1236, 1234, 3, 2, 2, 2, 1236, 1237, 3, 2, 2, 2, 1237, 1238, 3, 2, 2, 2, 1238, 1239, 7, 191, 2, 2, 1239, 1240, 7, 225, 2, 2, 1240, 1241, 5, 174, 88, 2, 1241, 25, 3, 2, 2, 2, 1242, 1243, 7, 41, 2, 2, 1243, 1244, 7, 32, 2, 2, 1244, 1248, 5, 150, 76, 2, 1245, 1246, 7, 217, 2, 2, 1246, 1247, 7, 32, 2, 2, 1247, 1249, 5, 154, 78, 2, 1248, 1245, 3, 2, 2, 2, 1248, 1249, 3, 2, 2, 2, 1249, 1250, 3, 2, 2, 2, 1250, 1251, 7, 123, 2, 2, 1251, 1252, 7, 285, 2, 2, 1252, 1253, 7, 31, 2, 2, 1253, 27, 3, 2, 2, 2, 1254, 1255, 7, 214, 2, 2, 1255, 1256, 7, 32, 2, 2, 1256, 1257, 5, 150, 76, 2, 1257, 1260, 7, 156, 2, 2, 1258, 1261, 5, 66, 34, 2, 1259, 1261, 5, 68, 35, 2, 1260, 1258, 3, 2, 2, 2, 1260, 1259, 3, 2, 2, 2, 1261, 1265, 3, 2, 2, 2, 1262, 1263, 7, 220, 2, 2, 1263, 1264, 7, 24, 2, 2, 1264, 1266, 7, 73, 2, 2, 1265, 1262, 3, 2, 2, 2, 1265, 1266, 3, 2, 2, 2, 1266, 29, 3, 2, 2, 2, 1267, 1268, 7, 139, 2, 2, 1268, 1269, 7, 281, 2, 2, 1269, 31, 3, 2, 2, 2, 1270, 1271, 7, 47, 2, 2, 1271, 1272, 7, 281, 2, 2, 1272, 33, 3, 2, 2, 2, 1273, 1275, 5, 50, 26, 2, 1274, 1273, 3, 2, 2, 2, 1274, 1275, 3, 2, 2, 2, 1275, 1276, 3, 2, 2, 2, 1276, 1277, 5, 84, 43, 2, 1277, 1278, 5, 80, 41, 2, 1278, 35, 3, 2, 2, 2, 1279, 1280, 7, 120, 2, 2, 1280, 1282, 7, 168, 2, 2, 1281, 1283, 7, 225, 2, 2, 1282, 1281, 3, 2, 2, 2, 1282, 1283, 3, 2, 2, 2, 1283, 1284, 3, 2, 2, 2, 1284, 1291, 5, 174, 88, 2, 1285, 1289, 5, 40, 21, 2, 1286, 1287, 7, 111, 2, 2, 1287, 1288, 7, 152, 2, 2, 1288, 1290, 7, 85, 2, 2, 1289, 1286, 3, 2, 2, 2, 1289, 1290, 3, 2, 2, 2, 1290, 1292, 3, 2, 2, 2, 1291, 1285, 3, 2, 2, 2, 1291, 1292, 3, 2, 2, 2, 1292, 1335, 3, 2, 2, 2, 1293, 1294, 7, 120, 2, 2, 1294, 1296, 7, 123, 2, 2, 1295, 1297, 7, 225, 2, 2, 1296, 1295, 3, 2, 2, 2, 1296, 1297, 3, 2, 2, 2, 1297, 1298, 3, 2, 2, 2, 1298, 1300, 5, 174, 88, 2, 1299, 1301, 5, 40, 21, 2, 1300, 1299, 3, 2, 2, 2, 1300, 1301, 3, 2, 2, 2, 1301, 1305, 3, 2, 2, 2, 1302, 1303, 7, 111, 2, 2, 1303, 1304, 7, 152, 2, 2, 1304, 1306, 7, 85, 2, 2, 1305, 1302, 3, 2, 2, 2, 1305, 1306, 3, 2, 2, 2, 1306, 1335, 3, 2, 2, 2, 1307, 1308, 7, 120, 2, 2, 1308, 1310, 7, 168, 2, 2, 1309, 1311, 7, 138, 2, 2, 1310, 1309, 3, 2, 2, 2, 1310, 1311, 3, 2, 2, 2, 1311, 1312, 3, 2, 2, 2, 1312, 1313, 7, 74, 2, 2, 1313, 1315, 7, 281, 2, 2, 1314, 1316, 5, 170, 86, 2, 1315, 1314, 3, 2, 2, 2, 1315, 1316, 3, 2, 2, 2, 1316, 1318, 3, 2, 2, 2, 1317, 1319, 5, 70, 36, 2, 1318, 1317, 3, 2, 2, 2, 1318, 1319, 3, 2, 2, 2, 1319, 1335, 3, 2, 2, 2, 1320, 1321, 7, 120, 2, 2, 1321, 1323, 7, 168, 2, 2, 1322, 1324, 7, 138, 2, 2, 1323, 1322, 3, 2, 2, 2, 1323, 1324, 3, 2, 2, 2, 1324, 1325, 3, 2, 2, 2, 1325, 1327, 7, 74, 2, 2, 1326, 1328, 7, 281, 2, 2, 1327, 1326, 3, 2, 2, 2, 1327, 1328, 3, 2, 2, 2, 1328, 1329, 3, 2, 2, 2, 1329, 1332, 5, 54, 28, 2, 1330, 1331, 7, 159, 2, 2, 1331, 1333, 5, 58, 30, 2, 1332, 1330, 3, 2, 2, 2, 1332, 1333, 3, 2, 2, 2, 1333, 1335, 3, 2, 2, 2, 1334, 1279, 3, 2, 2, 2, 1334, 1293, 3, 2, 2, 2, 1334, 1307, 3, 2, 2, 2, 1334, 1320, 3, 2, 2, 2, 1335, 37, 3, 2, 2, 2, 1336, 1338, 5, 40, 21, 2, 1337, 1339, 5, 30, 16, 2, 1338, 1337, 3, 2, 2, 2, 1338, 1339, 3, 2, 2, 2, 1339, 39, 3, 2, 2, 2, 1340, 1341, 7, 169, 2, 2, 1341, 1342, 7, 4, 2, 2, 1342, 1347, 5, 42, 22, 2, 1343, 1344, 7, 6, 2, 2, 1344, 1346, 5, 42, 22, 2, 1345, 1343, 3, 2, 2, 2, 1346, 1349, 3, 2, 2, 2, 1347, 1345, 3, 2, 2, 2, 1347, 1348, 3, 2, 2, 2, 1348, 1350, 3, 2, 2, 2, 1349, 1347, 3, 2, 2, 2, 1350, 1351, 7, 5, 2, 2, 1351, 41, 3, 2, 2, 2, 1352, 1355, 5, 258, 130, 2, 1353, 1354, 7, 263, 2, 2, 1354, 1356, 5, 198, 100, 2, 1355, 1353, 3, 2, 2, 2, 1355, 1356, 3, 2, 2, 2, 1356, 43, 3, 2, 2, 2, 1357, 1358, 9, 15, 2, 2, 1358, 45, 3, 2, 2, 2, 1359, 1365, 5, 252, 127, 2, 1360, 1365, 7, 281, 2, 2, 1361, 1365, 5, 200, 101, 2, 1362, 1365, 5, 202, 102, 2, 1363, 1365, 5, 204, 103, 2, 1364, 1359, 3, 2, 2, 2, 1364, 1360, 3, 2, 2, 2, 1364, 1361, 3, 2, 2, 2, 1364, 1362, 3, 2, 2, 2, 1364, 1363, 3, 2, 2, 2, 1365, 47, 3, 2, 2, 2, 1366, 1371, 5, 258, 130, 2, 1367, 1368, 7, 7, 2, 2, 1368, 1370, 5, 258, 130, 2, 1369, 1367, 3, 2, 2, 2, 1370, 1373, 3, 2, 2, 2, 1371, 1369, 3, 2, 2, 2, 1371, 1372, 3, 2, 2, 2, 1372, 49, 3, 2, 2, 2, 1373, 1371, 3, 2, 2, 2, 1374, 1375, 7, 261, 2, 2, 1375, 1380, 5, 52, 27, 2, 1376, 1377, 7, 6, 2, 2, 1377, 1379, 5, 52, 27, 2, 1378, 1376, 3, 2, 2, 2, 1379, 1382, 3, 2, 2, 2, 1380, 1378, 3, 2, 2, 2, 1380, 1381, 3, 2, 2, 2, 1381, 51, 3, 2, 2, 2, 1382, 1380, 3, 2, 2, 2, 1383, 1385, 5, 254, 128, 2, 1384, 1386, 5, 150, 76, 2, 1385, 1384, 3, 2, 2, 2, 1385, 1386, 3, 2, 2, 2, 1386, 1388, 3, 2, 2, 2, 1387, 1389, 7, 24, 2, 2, 1388, 1387, 3, 2, 2, 2, 1388, 1389, 3, 2, 2, 2, 1389, 1390, 3, 2, 2, 2, 1390, 1391, 7, 4, 2, 2, 1391, 1392, 5, 34, 18, 2, 1392, 1393, 7, 5, 2, 2, 1393, 53, 3, 2, 2, 2, 1394, 1395, 7, 254, 2, 2, 1395, 1396, 5, 174, 88, 2, 1396, 55, 3, 2, 2, 2, 1397, 1398, 7, 159, 2, 2, 1398, 1408, 5, 58, 30, 2, 1399, 1400, 7, 170, 2, 2, 1400, 1401, 7, 32, 2, 2, 1401, 1408, 5, 182, 92, 2, 1402, 1408, 5, 26, 14, 2, 1403, 1408, 5, 30, 16, 2, 1404, 1408, 5, 32, 17, 2, 1405, 1406, 7, 228, 2, 2, 1406, 1408, 5, 58, 30, 2, 1407, 1397, 3, 2, 2, 2, 1407, 1399, 3, 2, 2, 2, 1407, 1402, 3, 2, 2, 2, 1407, 1403, 3, 2, 2, 2, 1407, 1404, 3, 2, 2, 2, 1407, 1405, 3, 2, 2, 2, 1408, 1411, 3, 2, 2, 2, 1409, 1407, 3, 2, 2, 2, 1409, 1410, 3, 2, 2, 2, 1410, 57, 3, 2, 2, 2, 1411, 1409, 3, 2, 2, 2, 1412, 1413, 7, 4, 2, 2, 1413, 1418, 5, 60, 31, 2, 1414, 1415, 7, 6, 2, 2, 1415, 1417, 5, 60, 31, 2, 1416, 1414, 3, 2, 2, 2, 1417, 1420, 3, 2, 2, 2, 1418, 1416, 3, 2, 2, 2, 1418, 1419, 3, 2, 2, 2, 1419, 1421, 3, 2, 2, 2, 1420, 1418, 3, 2, 2, 2, 1421, 1422, 7, 5, 2, 2, 1422, 59, 3, 2, 2, 2, 1423, 1428, 5, 62, 32, 2, 1424, 1426, 7, 263, 2, 2, 1425, 1424, 3, 2, 2, 2, 1425, 1426, 3, 2, 2, 2, 1426, 1427, 3, 2, 2, 2, 1427, 1429, 5, 64, 33, 2, 1428, 1425, 3, 2, 2, 2, 1428, 1429, 3, 2, 2, 2, 1429, 61, 3, 2, 2, 2, 1430, 1435, 5, 258, 130, 2, 1431, 1432, 7, 7, 2, 2, 1432, 1434, 5, 258, 130, 2, 1433, 1431, 3, 2, 2, 2, 1434, 1437, 3, 2, 2, 2, 1435, 1433, 3, 2, 2, 2, 1435, 1436, 3, 2, 2, 2, 1436, 1440, 3, 2, 2, 2, 1437, 1435, 3, 2, 2, 2, 1438, 1440, 7, 281, 2, 2, 1439, 1430, 3, 2, 2, 2, 1439, 1438, 3, 2, 2, 2, 1440, 63, 3, 2, 2, 2, 1441, 1446, 7, 285, 2, 2, 1442, 1446, 7, 287, 2, 2, 1443, 1446, 5, 206, 104, 2, 1444, 1446, 7, 281, 2, 2, 1445, 1441, 3, 2, 2, 2, 1445, 1442, 3, 2, 2, 2, 1445, 1443, 3, 2, 2, 2, 1445, 1444, 3, 2, 2, 2, 1446, 65, 3, 2, 2, 2, 1447, 1448, 7, 4, 2, 2, 1448, 1453, 5, 198, 100, 2, 1449, 1450, 7, 6, 2, 2, 1450, 1452, 5, 198, 100, 2, 1451, 1449, 3, 2, 2, 2, 1452, 1455, 3, 2, 2, 2, 1453, 1451, 3, 2, 2, 2, 1453, 1454, 3, 2, 2, 2, 1454, 1456, 3, 2, 2, 2, 1455, 1453, 3, 2, 2, 2, 1456, 1457, 7, 5, 2, 2, 1457, 67, 3, 2, 2, 2, 1458, 1459, 7, 4, 2, 2, 1459, 1464, 5, 66, 34, 2, 1460, 1461, 7, 6, 2, 2, 1461, 1463, 5, 66, 34, 2, 1462, 1460, 3, 2, 2, 2, 1463, 1466, 3, 2, 2, 2, 1464, 1462, 3, 2, 2, 2, 1464, 1465, 3, 2, 2, 2, 1465, 1467, 3, 2, 2, 2, 1466, 1464, 3, 2, 2, 2, 1467, 1468, 7, 5, 2, 2, 1468, 69, 3, 2, 2, 2, 1469, 1470, 7, 220, 2, 2, 1470, 1471, 7, 24, 2, 2, 1471, 1476, 5, 72, 37, 2, 1472, 1473, 7, 220, 2, 2, 1473, 1474, 7, 32, 2, 2, 1474, 1476, 5, 74, 38, 2, 1475, 1469, 3, 2, 2, 2, 1475, 1472, 3, 2, 2, 2, 1476, 71, 3, 2, 2, 2, 1477, 1478, 7, 119, 2, 2, 1478, 1479, 7, 281, 2, 2, 1479, 1480, 7, 164, 2, 2, 1480, 1483, 7, 281, 2, 2, 1481, 1483, 5, 258, 130, 2, 1482, 1477, 3, 2, 2, 2, 1482, 1481, 3, 2, 2, 2, 1483, 73, 3, 2, 2, 2, 1484, 1488, 7, 281, 2, 2, 1485, 1486, 7, 261, 2, 2, 1486, 1487, 7, 208, 2, 2, 1487, 1489, 5, 58, 30, 2, 1488, 1485, 3, 2, 2, 2, 1488, 1489, 3, 2, 2, 2, 1489, 75, 3, 2, 2, 2, 1490, 1491, 5, 258, 130, 2, 1491, 1492, 7, 281, 2, 2, 1492, 77, 3, 2, 2, 2, 1493, 1494, 5, 36, 19, 2, 1494, 1495, 5, 84, 43, 2, 1495, 1496, 5, 80, 41, 2, 1496, 1545, 3, 2, 2, 2, 1497, 1499, 5, 122, 62, 2, 1498, 1500, 5, 82, 42, 2, 1499, 1498, 3, 2, 2, 2, 1500, 1501, 3, 2, 2, 2, 1501, 1499, 3, 2, 2, 2, 1501, 1502, 3, 2, 2, 2, 1502, 1545, 3, 2, 2, 2, 1503, 1504, 7, 68, 2, 2, 1504, 1505, 7, 102, 2, 2, 1505, 1506, 5, 174, 88, 2, 1506, 1508, 5, 168, 85, 2, 1507, 1509, 5, 114, 58, 2, 1508, 1507, 3, 2, 2, 2, 1508, 1509, 3, 2, 2, 2, 1509, 1545, 3, 2, 2, 2, 1510, 1511, 7, 251, 2, 2, 1511, 1512, 5, 174, 88, 2, 1512, 1513, 5, 168, 85, 2, 1513, 1515, 5, 100, 51, 2, 1514, 1516, 5, 114, 58, 2, 1515, 1514, 3, 2, 2, 2, 1515, 1516, 3, 2, 2, 2, 1516, 1545, 3, 2, 2, 2, 1517, 1518, 7, 146, 2, 2, 1518, 1519, 7, 123, 2, 2, 1519, 1520, 5, 174, 88, 2, 1520, 1521, 5, 168, 85, 2, 1521, 1527, 7, 254, 2, 2, 1522, 1528, 5, 174, 88, 2, 1523, 1524, 7, 4, 2, 2, 1524, 1525, 5, 34, 18, 2, 1525, 1526, 7, 5, 2, 2, 1526, 1528, 3, 2, 2, 2, 1527, 1522, 3, 2, 2, 2, 1527, 1523, 3, 2, 2, 2, 1528, 1529, 3, 2, 2, 2, 1529, 1530, 5, 168, 85, 2, 1530, 1531, 7, 156, 2, 2, 1531, 1535, 5, 190, 96, 2, 1532, 1534, 5, 102, 52, 2, 1533, 1532, 3, 2, 2, 2, 1534, 1537, 3, 2, 2, 2, 1535, 1533, 3, 2, 2, 2, 1535, 1536, 3, 2, 2, 2, 1536, 1541, 3, 2, 2, 2, 1537, 1535, 3, 2, 2, 2, 1538, 1540, 5, 104, 53, 2, 1539, 1538, 3, 2, 2, 2, 1540, 1543, 3, 2, 2, 2, 1541, 1539, 3, 2, 2, 2, 1541, 1542, 3, 2, 2, 2, 1542, 1545, 3, 2, 2, 2, 1543, 1541, 3, 2, 2, 2, 1544, 1493, 3, 2, 2, 2, 1544, 1497, 3, 2, 2, 2, 1544, 1503, 3, 2, 2, 2, 1544, 1510, 3, 2, 2, 2, 1544, 1517, 3, 2, 2, 2, 1545, 79, 3, 2, 2, 2, 1546, 1547, 7, 161, 2, 2, 1547, 1548, 7, 32, 2, 2, 1548, 1553, 5, 88, 45, 2, 1549, 1550, 7, 6, 2, 2, 1550, 1552, 5, 88, 45, 2, 1551, 1549, 3, 2, 2, 2, 1552, 1555, 3, 2, 2, 2, 1553, 1551, 3, 2, 2, 2, 1553, 1554, 3, 2, 2, 2, 1554, 1557, 3, 2, 2, 2, 1555, 1553, 3, 2, 2, 2, 1556, 1546, 3, 2, 2, 2, 1556, 1557, 3, 2, 2, 2, 1557, 1568, 3, 2, 2, 2, 1558, 1559, 7, 40, 2, 2, 1559, 1560, 7, 32, 2, 2, 1560, 1565, 5, 188, 95, 2, 1561, 1562, 7, 6, 2, 2, 1562, 1564, 5, 188, 95, 2, 1563, 1561, 3, 2, 2, 2, 1564, 1567, 3, 2, 2, 2, 1565, 1563, 3, 2, 2, 2, 1565, 1566, 3, 2, 2, 2, 1566, 1569, 3, 2, 2, 2, 1567, 1565, 3, 2, 2, 2, 1568, 1558, 3, 2, 2, 2, 1568, 1569, 3, 2, 2, 2, 1569, 1580, 3, 2, 2, 2, 1570, 1571, 7, 76, 2, 2, 1571, 1572, 7, 32, 2, 2, 1572, 1577, 5, 188, 95, 2, 1573, 1574, 7, 6, 2, 2, 1574, 1576, 5, 188, 95, 2, 1575, 1573, 3, 2, 2, 2, 1576, 1579, 3, 2, 2, 2, 1577, 1575, 3, 2, 2, 2, 1577, 1578, 3, 2, 2, 2, 1578, 1581, 3, 2, 2, 2, 1579, 1577, 3, 2, 2, 2, 1580, 1570, 3, 2, 2, 2, 1580, 1581, 3, 2, 2, 2, 1581, 1592, 3, 2, 2, 2, 1582, 1583, 7, 216, 2, 2, 1583, 1584, 7, 32, 2, 2, 1584, 1589, 5, 88, 45, 2, 1585, 1586, 7, 6, 2, 2, 1586, 1588, 5, 88, 45, 2, 1587, 1585, 3, 2, 2, 2, 1588, 1591, 3, 2, 2, 2, 1589, 1587, 3, 2, 2, 2, 1589, 1590, 3, 2, 2, 2, 1590, 1593, 3, 2, 2, 2, 1591, 1589, 3, 2, 2, 2, 1592, 1582, 3, 2, 2, 2, 1592, 1593, 3, 2, 2, 2, 1593, 1595, 3, 2, 2, 2, 1594, 1596, 5, 238, 120, 2, 1595, 1594, 3, 2, 2, 2, 1595, 1596, 3, 2, 2, 2, 1596, 1602, 3, 2, 2, 2, 1597, 1600, 7, 134, 2, 2, 1598, 1601, 7, 16, 2, 2, 1599, 1601, 5, 188, 95, 2, 1600, 1598, 3, 2, 2, 2, 1600, 1599, 3, 2, 2, 2, 1601, 1603, 3, 2, 2, 2, 1602, 1597, 3, 2, 2, 2, 1602, 1603, 3, 2, 2, 2, 1603, 81, 3, 2, 2, 2, 1604, 1605, 5, 36, 19, 2, 1605, 1606, 5, 92, 47, 2, 1606, 83, 3, 2, 2, 2, 1607, 1608, 8, 43, 1, 2, 1608, 1609, 5, 86, 44, 2, 1609, 1633, 3, 2, 2, 2, 1610, 1611, 12, 5, 2, 2, 1611, 1612, 6, 43, 3, 2, 1612, 1614, 9, 16, 2, 2, 1613, 1615, 5, 136, 69, 2, 1614, 1613, 3, 2, 2, 2, 1614, 1615, 3, 2, 2, 2, 1615, 1616, 3, 2, 2, 2, 1616, 1632, 5, 84, 43, 6, 1617, 1618, 12, 4, 2, 2, 1618, 1619, 6, 43, 5, 2, 1619, 1621, 7, 121, 2, 2, 1620, 1622, 5, 136, 69, 2, 1621, 1620, 3, 2, 2, 2, 1621, 1622, 3, 2, 2, 2, 1622, 1623, 3, 2, 2, 2, 1623, 1632, 5, 84, 43, 5, 1624, 1625, 12, 3, 2, 2, 1625, 1626, 6, 43, 7, 2, 1626, 1628, 9, 17, 2, 2, 1627, 1629, 5, 136, 69, 2, 1628, 1627, 3, 2, 2, 2, 1628, 1629, 3, 2, 2, 2, 1629, 1630, 3, 2, 2, 2, 1630, 1632, 5, 84, 43, 4, 1631, 1610, 3, 2, 2, 2, 1631, 1617, 3, 2, 2, 2, 1631, 1624, 3, 2, 2, 2, 1632, 1635, 3, 2, 2, 2, 1633, 1631, 3, 2, 2, 2, 1633, 1634, 3, 2, 2, 2, 1634, 85, 3, 2, 2, 2, 1635, 1633, 3, 2, 2, 2, 1636, 1646, 5, 94, 48, 2, 1637, 1646, 5, 90, 46, 2, 1638, 1639, 7, 225, 2, 2, 1639, 1646, 5, 174, 88, 2, 1640, 1646, 5, 164, 83, 2, 1641, 1642, 7, 4, 2, 2, 1642, 1643, 5, 34, 18, 2, 1643, 1644, 7, 5, 2, 2, 1644, 1646, 3, 2, 2, 2, 1645, 1636, 3, 2, 2, 2, 1645, 1637, 3, 2, 2, 2, 1645, 1638, 3, 2, 2, 2, 1645, 1640, 3, 2, 2, 2, 1645, 1641, 3, 2, 2, 2, 1646, 87, 3, 2, 2, 2, 1647, 1649, 5, 188, 95, 2, 1648, 1650, 9, 18, 2, 2, 1649, 1648, 3, 2, 2, 2, 1649, 1650, 3, 2, 2, 2, 1650, 1653, 3, 2, 2, 2, 1651, 1652, 7, 154, 2, 2, 1652, 1654, 9, 19, 2, 2, 1653, 1651, 3, 2, 2, 2, 1653, 1654, 3, 2, 2, 2, 1654, 89, 3, 2, 2, 2, 1655, 1657, 5, 122, 62, 2, 1656, 1658, 5, 92, 47, 2, 1657, 1656, 3, 2, 2, 2, 1658, 1659, 3, 2, 2, 2, 1659, 1657, 3, 2, 2, 2, 1659, 1660, 3, 2, 2, 2, 1660, 91, 3, 2, 2, 2, 1661, 1663, 5, 96, 49, 2, 1662, 1664, 5, 114, 58, 2, 1663, 1662, 3, 2, 2, 2, 1663, 1664, 3, 2, 2, 2, 1664, 1665, 3, 2, 2, 2, 1665, 1666, 5, 80, 41, 2, 1666, 1689, 3, 2, 2, 2, 1667, 1671, 5, 98, 50, 2, 1668, 1670, 5, 134, 68, 2, 1669, 1668, 3, 2, 2, 2, 1670, 1673, 3, 2, 2, 2, 1671, 1669, 3, 2, 2, 2, 1671, 1672, 3, 2, 2, 2, 1672, 1675, 3, 2, 2, 2, 1673, 1671, 3, 2, 2, 2, 1674, 1676, 5, 114, 58, 2, 1675, 1674, 3, 2, 2, 2, 1675, 1676, 3, 2, 2, 2, 1676, 1678, 3, 2, 2, 2, 1677, 1679, 5, 124, 63, 2, 1678, 1677, 3, 2, 2, 2, 1678, 1679, 3, 2, 2, 2, 1679, 1681, 3, 2, 2, 2, 1680, 1682, 5, 116, 59, 2, 1681, 1680, 3, 2, 2, 2, 1681, 1682, 3, 2, 2, 2, 1682, 1684, 3, 2, 2, 2, 1683, 1685, 5, 238, 120, 2, 1684, 1683, 3, 2, 2, 2, 1684, 1685, 3, 2, 2, 2, 1685, 1686, 3, 2, 2, 2, 1686, 1687, 5, 80, 41, 2, 1687, 1689, 3, 2, 2, 2, 1688, 1661, 3, 2, 2, 2, 1688, 1667, 3, 2, 2, 2, 1689, 93, 3, 2, 2, 2, 1690, 1692, 5, 96, 49, 2, 1691, 1693, 5, 122, 62, 2, 1692, 1691, 3, 2, 2, 2, 1692, 1693, 3, 2, 2, 2, 1693, 1695, 3, 2, 2, 2, 1694, 1696, 5, 114, 58, 2, 1695, 1694, 3, 2, 2, 2, 1695, 1696, 3, 2, 2, 2, 1696, 1720, 3, 2, 2, 2, 1697, 1699, 5, 98, 50, 2, 1698, 1700, 5, 122, 62, 2, 1699, 1698, 3, 2, 2, 2, 1699, 1700, 3, 2, 2, 2, 1700, 1704, 3, 2, 2, 2, 1701, 1703, 5, 134, 68, 2, 1702, 1701, 3, 2, 2, 2, 1703, 1706, 3, 2, 2, 2, 1704, 1702, 3, 2, 2, 2, 1704, 1705, 3, 2, 2, 2, 1705, 1708, 3, 2, 2, 2, 1706, 1704, 3, 2, 2, 2, 1707, 1709, 5, 114, 58, 2, 1708, 1707, 3, 2, 2, 2, 1708, 1709, 3, 2, 2, 2, 1709, 1711, 3, 2, 2, 2, 1710, 1712, 5, 124, 63, 2, 1711, 1710, 3, 2, 2, 2, 1711, 1712, 3, 2, 2, 2, 1712, 1714, 3, 2, 2, 2, 1713, 1715, 5, 116, 59, 2, 1714, 1713, 3, 2, 2, 2, 1714, 1715, 3, 2, 2, 2, 1715, 1717, 3, 2, 2, 2, 1716, 1718, 5, 238, 120, 2, 1717, 1716, 3, 2, 2, 2, 1717, 1718, 3, 2, 2, 2, 1718, 1720, 3, 2, 2, 2, 1719, 1690, 3, 2, 2, 2, 1719, 1697, 3, 2, 2, 2, 1720, 95, 3, 2, 2, 2, 1721, 1722, 7, 204, 2, 2, 1722, 1723, 7, 238, 2, 2, 1723, 1724, 7, 4, 2, 2, 1724, 1725, 5, 180, 91, 2, 1725, 1726, 7, 5, 2, 2, 1726, 1732, 3, 2, 2, 2, 1727, 1728, 7, 144, 2, 2, 1728, 1732, 5, 180, 91, 2, 1729, 1730, 7, 186, 2, 2, 1730, 1732, 5, 180, 91, 2, 1731, 1721, 3, 2, 2, 2, 1731, 1727, 3, 2, 2, 2, 1731, 1729, 3, 2, 2, 2, 1732, 1734, 3, 2, 2, 2, 1733, 1735, 5, 170, 86, 2, 1734, 1733, 3, 2, 2, 2, 1734, 1735, 3, 2, 2, 2, 1735, 1738, 3, 2, 2, 2, 1736, 1737, 7, 184, 2, 2, 1737, 1739, 7, 281, 2, 2, 1738, 1736, 3, 2, 2, 2, 1738, 1739, 3, 2, 2, 2, 1739, 1740, 3, 2, 2, 2, 1740, 1741, 7, 254, 2, 2, 1741, 1754, 7, 281, 2, 2, 1742, 1752, 7, 24, 2, 2, 1743, 1753, 5, 152, 77, 2, 1744, 1753, 5, 228, 115, 2, 1745, 1748, 7, 4, 2, 2, 1746, 1749, 5, 152, 77, 2, 1747, 1749, 5, 228, 115, 2, 1748, 1746, 3, 2, 2, 2, 1748, 1747, 3, 2, 2, 2, 1749, 1750, 3, 2, 2, 2, 1750, 1751, 7, 5, 2, 2, 1751, 1753, 3, 2, 2, 2, 1752, 1743, 3, 2, 2, 2, 1752, 1744, 3, 2, 2, 2, 1752, 1745, 3, 2, 2, 2, 1753, 1755, 3, 2, 2, 2, 1754, 1742, 3, 2, 2, 2, 1754, 1755, 3, 2, 2, 2, 1755, 1757, 3, 2, 2, 2, 1756, 1758, 5, 170, 86, 2, 1757, 1756, 3, 2, 2, 2, 1757, 1758, 3, 2, 2, 2, 1758, 1761, 3, 2, 2, 2, 1759, 1760, 7, 183, 2, 2, 1760, 1762, 7, 281, 2, 2, 1761, 1759, 3, 2, 2, 2, 1761, 1762, 3, 2, 2, 2, 1762, 97, 3, 2, 2, 2, 1763, 1767, 7, 204, 2, 2, 1764, 1766, 5, 118, 60, 2, 1765, 1764, 3, 2, 2, 2, 1766, 1769, 3, 2, 2, 2, 1767, 1765, 3, 2, 2, 2, 1767, 1768, 3, 2, 2, 2, 1768, 1771, 3, 2, 2, 2, 1769, 1767, 3, 2, 2, 2, 1770, 1772, 5, 136, 69, 2, 1771, 1770, 3, 2, 2, 2, 1771, 1772, 3, 2, 2, 2, 1772, 1773, 3, 2, 2, 2, 1773, 1774, 5, 180, 91, 2, 1774, 99, 3, 2, 2, 2, 1775, 1776, 7, 210, 2, 2, 1776, 1777, 5, 110, 56, 2, 1777, 101, 3, 2, 2, 2, 1778, 1779, 7, 258, 2, 2, 1779, 1782, 7, 145, 2, 2, 1780, 1781, 7, 19, 2, 2, 1781, 1783, 5, 190, 96, 2, 1782, 1780, 3, 2, 2, 2, 1782, 1783, 3, 2, 2, 2, 1783, 1784, 3, 2, 2, 2, 1784, 1785, 7, 231, 2, 2, 1785, 1786, 5, 106, 54, 2, 1786, 103, 3, 2, 2, 2, 1787, 1788, 7, 258, 2, 2, 1788, 1789, 7, 152, 2, 2, 1789, 1792, 7, 145, 2, 2, 1790, 1791, 7, 19, 2, 2, 1791, 1793, 5, 190, 96, 2, 1792, 1790, 3, 2, 2, 2, 1792, 1793, 3, 2, 2, 2, 1793, 1794, 3, 2, 2, 2, 1794, 1795, 7, 231, 2, 2, 1795, 1796, 5, 108, 55, 2, 1796, 105, 3, 2, 2, 2, 1797, 1805, 7, 68, 2, 2, 1798, 1799, 7, 251, 2, 2, 1799, 1800, 7, 210, 2, 2, 1800, 1805, 7, 273, 2, 2, 1801, 1802, 7, 251, 2, 2, 1802, 1803, 7, 210, 2, 2, 1803, 1805, 5, 110, 56, 2, 1804, 1797, 3, 2, 2, 2, 1804, 1798, 3, 2, 2, 2, 1804, 1801, 3, 2, 2, 2, 1805, 107, 3, 2, 2, 2, 1806, 1807, 7, 120, 2, 2, 1807, 1825, 7, 273, 2, 2, 1808, 1809, 7, 120, 2, 2, 1809, 1810, 7, 4, 2, 2, 1810, 1811, 5, 172, 87, 2, 1811, 1812, 7, 5, 2, 2, 1812, 1813, 7, 255, 2, 2, 1813, 1814, 7, 4, 2, 2, 1814, 1819, 5, 188, 95, 2, 1815, 1816, 7, 6, 2, 2, 1816, 1818, 5, 188, 95, 2, 1817, 1815, 3, 2, 2, 2, 1818, 1821, 3, 2, 2, 2, 1819, 1817, 3, 2, 2, 2, 1819, 1820, 3, 2, 2, 2, 1820, 1822, 3, 2, 2, 2, 1821, 1819, 3, 2, 2, 2, 1822, 1823, 7, 5, 2, 2, 1823, 1825, 3, 2, 2, 2, 1824, 1806, 3, 2, 2, 2, 1824, 1808, 3, 2, 2, 2, 1825, 109, 3, 2, 2, 2, 1826, 1831, 5, 112, 57, 2, 1827, 1828, 7, 6, 2, 2, 1828, 1830, 5, 112, 57, 2, 1829, 1827, 3, 2, 2, 2, 1830, 1833, 3, 2, 2, 2, 1831, 1829, 3, 2, 2, 2, 1831, 1832, 3, 2, 2, 2, 1832, 111, 3, 2, 2, 2, 1833, 1831, 3, 2, 2, 2, 1834, 1835, 5, 174, 88, 2, 1835, 1836, 7, 263, 2, 2, 1836, 1837, 5, 188, 95, 2, 1837, 113, 3, 2, 2, 2, 1838, 1839, 7, 259, 2, 2, 1839, 1840, 5, 190, 96, 2, 1840, 115, 3, 2, 2, 2, 1841, 1842, 7, 110, 2, 2, 1842, 1843, 5, 190, 96, 2, 1843, 117, 3, 2, 2, 2, 1844, 1845, 7, 8, 2, 2, 1845, 1852, 5, 120, 61, 2, 1846, 1848, 7, 6, 2, 2, 1847, 1846, 3, 2, 2, 2, 1847, 1848, 3, 2, 2, 2, 1848, 1849, 3, 2, 2, 2, 1849, 1851, 5, 120, 61, 2, 1850, 1847, 3, 2, 2, 2, 1851, 1854, 3, 2, 2, 2, 1852, 1850, 3, 2, 2, 2, 1852, 1853, 3, 2, 2, 2, 1853, 1855, 3, 2, 2, 2, 1854, 1852, 3, 2, 2, 2, 1855, 1856, 7, 9, 2, 2, 1856, 119, 3, 2, 2, 2, 1857, 1871, 5, 258, 130, 2, 1858, 1859, 5, 258, 130, 2, 1859, 1860, 7, 4, 2, 2, 1860, 1865, 5, 196, 99, 2, 1861, 1862, 7, 6, 2, 2, 1862, 1864, 5, 196, 99, 2, 1863, 1861, 3, 2, 2, 2, 1864, 1867, 3, 2, 2, 2, 1865, 1863, 3, 2, 2, 2, 1865, 1866, 3, 2, 2, 2, 1866, 1868, 3, 2, 2, 2, 1867, 1865, 3, 2, 2, 2, 1868, 1869, 7, 5, 2, 2, 1869, 1871, 3, 2, 2, 2, 1870, 1857, 3, 2, 2, 2, 1870, 1858, 3, 2, 2, 2, 1871, 121, 3, 2, 2, 2, 1872, 1873, 7, 102, 2, 2, 1873, 1878, 5, 138, 70, 2, 1874, 1875, 7, 6, 2, 2, 1875, 1877, 5, 138, 70, 2, 1876, 1874, 3, 2, 2, 2, 1877, 1880, 3, 2, 2, 2, 1878, 1876, 3, 2, 2, 2, 1878, 1879, 3, 2, 2, 2, 1879, 1884, 3, 2, 2, 2, 1880, 1878, 3, 2, 2, 2, 1881, 1883, 5, 134, 68, 2, 1882, 1881, 3, 2, 2, 2, 1883, 1886, 3, 2, 2, 2, 1884, 1882, 3, 2, 2, 2, 1884, 1885, 3, 2, 2, 2, 1885, 1888, 3, 2, 2, 2, 1886, 1884, 3, 2, 2, 2, 1887, 1889, 5, 128, 65, 2, 1888, 1887, 3, 2, 2, 2, 1888, 1889, 3, 2, 2, 2, 1889, 123, 3, 2, 2, 2, 1890, 1891, 7, 108, 2, 2, 1891, 1892, 7, 32, 2, 2, 1892, 1897, 5, 188, 95, 2, 1893, 1894, 7, 6, 2, 2, 1894, 1896, 5, 188, 95, 2, 1895, 1893, 3, 2, 2, 2, 1896, 1899, 3, 2, 2, 2, 1897, 1895, 3, 2, 2, 2, 1897, 1898, 3, 2, 2, 2, 1898, 1917, 3, 2, 2, 2, 1899, 1897, 3, 2, 2, 2, 1900, 1901, 7, 261, 2, 2, 1901, 1918, 7, 200, 2, 2, 1902, 1903, 7, 261, 2, 2, 1903, 1918, 7, 57, 2, 2, 1904, 1905, 7, 109, 2, 2, 1905, 1906, 7, 212, 2, 2, 1906, 1907, 7, 4, 2, 2, 1907, 1912, 5, 126, 64, 2, 1908, 1909, 7, 6, 2, 2, 1909, 1911, 5, 126, 64, 2, 1910, 1908, 3, 2, 2, 2, 1911, 1914, 3, 2, 2, 2, 1912, 1910, 3, 2, 2, 2, 1912, 1913, 3, 2, 2, 2, 1913, 1915, 3, 2, 2, 2, 1914, 1912, 3, 2, 2, 2, 1915, 1916, 7, 5, 2, 2, 1916, 1918, 3, 2, 2, 2, 1917, 1900, 3, 2, 2, 2, 1917, 1902, 3, 2, 2, 2, 1917, 1904, 3, 2, 2, 2, 1917, 1918, 3, 2, 2, 2, 1918, 1935, 3, 2, 2, 2, 1919, 1920, 7, 108, 2, 2, 1920, 1921, 7, 32, 2, 2, 1921, 1922, 7, 109, 2, 2, 1922, 1923, 7, 212, 2, 2, 1923, 1924, 7, 4, 2, 2, 1924, 1929, 5, 126, 64, 2, 1925, 1926, 7, 6, 2, 2, 1926, 1928, 5, 126, 64, 2, 1927, 1925, 3, 2, 2, 2, 1928, 1931, 3, 2, 2, 2, 1929, 1927, 3, 2, 2, 2, 1929, 1930, 3, 2, 2, 2, 1930, 1932, 3, 2, 2, 2, 1931, 1929, 3, 2, 2, 2, 1932, 1933, 7, 5, 2, 2, 1933, 1935, 3, 2, 2, 2, 1934, 1890, 3, 2, 2, 2, 1934, 1919, 3, 2, 2, 2, 1935, 125, 3, 2, 2, 2, 1936, 1945, 7, 4, 2, 2, 1937, 1942, 5, 188, 95, 2, 1938, 1939, 7, 6, 2, 2, 1939, 1941, 5, 188, 95, 2, 1940, 1938, 3, 2, 2, 2, 1941, 1944, 3, 2, 2, 2, 1942, 1940, 3, 2, 2, 2, 1942, 1943, 3, 2, 2, 2, 1943, 1946, 3, 2, 2, 2, 1944, 1942, 3, 2, 2, 2, 1945, 1937, 3, 2, 2, 2, 1945, 1946, 3, 2, 2, 2, 1946, 1947, 3, 2, 2, 2, 1947, 1950, 7, 5, 2, 2, 1948, 1950, 5, 188, 95, 2, 1949, 1936, 3, 2, 2, 2, 1949, 1948, 3, 2, 2, 2, 1950, 127, 3, 2, 2, 2, 1951, 1952, 7, 173, 2, 2, 1952, 1953, 7, 4, 2, 2, 1953, 1954, 5, 180, 91, 2, 1954, 1955, 7, 98, 2, 2, 1955, 1956, 5, 130, 66, 2, 1956, 1957, 7, 114, 2, 2, 1957, 1958, 7, 4, 2, 2, 1958, 1963, 5, 132, 67, 2, 1959, 1960, 7, 6, 2, 2, 1960, 1962, 5, 132, 67, 2, 1961, 1959, 3, 2, 2, 2, 1962, 1965, 3, 2, 2, 2, 1963, 1961, 3, 2, 2, 2, 1963, 1964, 3, 2, 2, 2, 1964, 1966, 3, 2, 2, 2, 1965, 1963, 3, 2, 2, 2, 1966, 1967, 7, 5, 2, 2, 1967, 1968, 7, 5, 2, 2, 1968, 129, 3, 2, 2, 2, 1969, 1982, 5, 258, 130, 2, 1970, 1971, 7, 4, 2, 2, 1971, 1976, 5, 258, 130, 2, 1972, 1973, 7, 6, 2, 2, 1973, 1975, 5, 258, 130, 2, 1974, 1972, 3, 2, 2, 2, 1975, 1978, 3, 2, 2, 2, 1976, 1974, 3, 2, 2, 2, 1976, 1977, 3, 2, 2, 2, 1977, 1979, 3, 2, 2, 2, 1978, 1976, 3, 2, 2, 2, 1979, 1980, 7, 5, 2, 2, 1980, 1982, 3, 2, 2, 2, 1981, 1969, 3, 2, 2, 2, 1981, 1970, 3, 2, 2, 2, 1982, 131, 3, 2, 2, 2, 1983, 1988, 5, 188, 95, 2, 1984, 1986, 7, 24, 2, 2, 1985, 1984, 3, 2, 2, 2, 1985, 1986, 3, 2, 2, 2, 1986, 1987, 3, 2, 2, 2, 1987, 1989, 5, 258, 130, 2, 1988, 1985, 3, 2, 2, 2, 1988, 1989, 3, 2, 2, 2, 1989, 133, 3, 2, 2, 2, 1990, 1991, 7, 129, 2, 2, 1991, 1993, 7, 256, 2, 2, 1992, 1994, 7, 163, 2, 2, 1993, 1992, 3, 2, 2, 2, 1993, 1994, 3, 2, 2, 2, 1994, 1995, 3, 2, 2, 2, 1995, 1996, 5, 252, 127, 2, 1996, 2005, 7, 4, 2, 2, 1997, 2002, 5, 188, 95, 2, 1998, 1999, 7, 6, 2, 2, 1999, 2001, 5, 188, 95, 2, 2000, 1998, 3, 2, 2, 2, 2001, 2004, 3, 2, 2, 2, 2002, 2000, 3, 2, 2, 2, 2002, 2003, 3, 2, 2, 2, 2003, 2006, 3, 2, 2, 2, 2004, 2002, 3, 2, 2, 2, 2005, 1997, 3, 2, 2, 2, 2005, 2006, 3, 2, 2, 2, 2006, 2007, 3, 2, 2, 2, 2007, 2008, 7, 5, 2, 2, 2008, 2020, 5, 258, 130, 2, 2009, 2011, 7, 24, 2, 2, 2010, 2009, 3, 2, 2, 2, 2010, 2011, 3, 2, 2, 2, 2011, 2012, 3, 2, 2, 2, 2012, 2017, 5, 258, 130, 2, 2013, 2014, 7, 6, 2, 2, 2014, 2016, 5, 258, 130, 2, 2015, 2013, 3, 2, 2, 2, 2016, 2019, 3, 2, 2, 2, 2017, 2015, 3, 2, 2, 2, 2017, 2018, 3, 2, 2, 2, 2018, 2021, 3, 2, 2, 2, 2019, 2017, 3, 2, 2, 2, 2020, 2010, 3, 2, 2, 2, 2020, 2021, 3, 2, 2, 2, 2021, 135, 3, 2, 2, 2, 2022, 2023, 9, 20, 2, 2, 2023, 137, 3, 2, 2, 2, 2024, 2028, 5, 162, 82, 2, 2025, 2027, 5, 140, 71, 2, 2026, 2025, 3, 2, 2, 2, 2027, 2030, 3, 2, 2, 2, 2028, 2026, 3, 2, 2, 2, 2028, 2029, 3, 2, 2, 2, 2029, 139, 3, 2, 2, 2, 2030, 2028, 3, 2, 2, 2, 2031, 2032, 5, 142, 72, 2, 2032, 2033, 7, 126, 2, 2, 2033, 2035, 5, 162, 82, 2, 2034, 2036, 5, 144, 73, 2, 2035, 2034, 3, 2, 2, 2, 2035, 2036, 3, 2, 2, 2, 2036, 2043, 3, 2, 2, 2, 2037, 2038, 7, 150, 2, 2, 2038, 2039, 5, 142, 72, 2, 2039, 2040, 7, 126, 2, 2, 2040, 2041, 5, 162, 82, 2, 2041, 2043, 3, 2, 2, 2, 2042, 2031, 3, 2, 2, 2, 2042, 2037, 3, 2, 2, 2, 2043, 141, 3, 2, 2, 2, 2044, 2046, 7, 117, 2, 2, 2045, 2044, 3, 2, 2, 2, 2045, 2046, 3, 2, 2, 2, 2046, 2069, 3, 2, 2, 2, 2047, 2069, 7, 56, 2, 2, 2048, 2050, 7, 132, 2, 2, 2049, 2051, 7, 163, 2, 2, 2050, 2049, 3, 2, 2, 2, 2050, 2051, 3, 2, 2, 2, 2051, 2069, 3, 2, 2, 2, 2052, 2054, 7, 132, 2, 2, 2053, 2052, 3, 2, 2, 2, 2053, 2054, 3, 2, 2, 2, 2054, 2055, 3, 2, 2, 2, 2055, 2069, 7, 205, 2, 2, 2056, 2058, 7, 195, 2, 2, 2057, 2059, 7, 163, 2, 2, 2058, 2057, 3, 2, 2, 2, 2058, 2059, 3, 2, 2, 2, 2059, 2069, 3, 2, 2, 2, 2060, 2062, 7, 103, 2, 2, 2061, 2063, 7, 163, 2, 2, 2062, 2061, 3, 2, 2, 2, 2062, 2063, 3, 2, 2, 2, 2063, 2069, 3, 2, 2, 2, 2064, 2066, 7, 132, 2, 2, 2065, 2064, 3, 2, 2, 2, 2065, 2066, 3, 2, 2, 2, 2066, 2067, 3, 2, 2, 2, 2067, 2069, 7, 20, 2, 2, 2068, 2045, 3, 2, 2, 2, 2068, 2047, 3, 2, 2, 2, 2068, 2048, 3, 2, 2, 2, 2068, 2053, 3, 2, 2, 2, 2068, 2056, 3, 2, 2, 2, 2068, 2060, 3, 2, 2, 2, 2068, 2065, 3, 2, 2, 2, 2069, 143, 3, 2, 2, 2, 2070, 2071, 7, 156, 2, 2, 2071, 2075, 5, 190, 96, 2, 2072, 2073, 7, 254, 2, 2, 2073, 2075, 5, 150, 76, 2, 2074, 2070, 3, 2, 2, 2, 2074, 2072, 3, 2, 2, 2, 2075, 145, 3, 2, 2, 2, 2076, 2077, 7, 227, 2, 2, 2077, 2079, 7, 4, 2, 2, 2078, 2080, 5, 148, 75, 2, 2079, 2078, 3, 2, 2, 2, 2079, 2080, 3, 2, 2, 2, 2080, 2081, 3, 2, 2, 2, 2081, 2082, 7, 5, 2, 2, 2082, 147, 3, 2, 2, 2, 2083, 2085, 7, 272, 2, 2, 2084, 2083, 3, 2, 2, 2, 2084, 2085, 3, 2, 2, 2, 2085, 2086, 3, 2, 2, 2, 2086, 2087, 9, 21, 2, 2, 2087, 2108, 7, 172, 2, 2, 2088, 2089, 5, 188, 95, 2, 2089, 2090, 7, 202, 2, 2, 2090, 2108, 3, 2, 2, 2, 2091, 2092, 7, 30, 2, 2, 2092, 2093, 7, 285, 2, 2, 2093, 2094, 7, 162, 2, 2, 2094, 2095, 7, 155, 2, 2, 2095, 2104, 7, 285, 2, 2, 2096, 2102, 7, 156, 2, 2, 2097, 2103, 5, 258, 130, 2, 2098, 2099, 5, 252, 127, 2, 2099, 2100, 7, 4, 2, 2, 2100, 2101, 7, 5, 2, 2, 2101, 2103, 3, 2, 2, 2, 2102, 2097, 3, 2, 2, 2, 2102, 2098, 3, 2, 2, 2, 2103, 2105, 3, 2, 2, 2, 2104, 2096, 3, 2, 2, 2, 2104, 2105, 3, 2, 2, 2, 2105, 2108, 3, 2, 2, 2, 2106, 2108, 5, 188, 95, 2, 2107, 2084, 3, 2, 2, 2, 2107, 2088, 3, 2, 2, 2, 2107, 2091, 3, 2, 2, 2, 2107, 2106, 3, 2, 2, 2, 2108, 149, 3, 2, 2, 2, 2109, 2110, 7, 4, 2, 2, 2110, 2111, 5, 152, 77, 2, 2111, 2112, 7, 5, 2, 2, 2112, 151, 3, 2, 2, 2, 2113, 2118, 5, 254, 128, 2, 2114, 2115, 7, 6, 2, 2, 2115, 2117, 5, 254, 128, 2, 2116, 2114, 3, 2, 2, 2, 2117, 2120, 3, 2, 2, 2, 2118, 2116, 3, 2, 2, 2, 2118, 2119, 3, 2, 2, 2, 2119, 153, 3, 2, 2, 2, 2120, 2118, 3, 2, 2, 2, 2121, 2122, 7, 4, 2, 2, 2122, 2127, 5, 156, 79, 2, 2123, 2124, 7, 6, 2, 2, 2124, 2126, 5, 156, 79, 2, 2125, 2123, 3, 2, 2, 2, 2126, 2129, 3, 2, 2, 2, 2127, 2125, 3, 2, 2, 2, 2127, 2128, 3, 2, 2, 2, 2128, 2130, 3, 2, 2, 2, 2129, 2127, 3, 2, 2, 2, 2130, 2131, 7, 5, 2, 2, 2131, 155, 3, 2, 2, 2, 2132, 2134, 5, 254, 128, 2, 2133, 2135, 9, 18, 2, 2, 2134, 2133, 3, 2, 2, 2, 2134, 2135, 3, 2, 2, 2, 2135, 157, 3, 2, 2, 2, 2136, 2137, 7, 4, 2, 2, 2137, 2142, 5, 160, 81, 2, 2138, 2139, 7, 6, 2, 2, 2139, 2141, 5, 160, 81, 2, 2140, 2138, 3, 2, 2, 2, 2141, 2144, 3, 2, 2, 2, 2142, 2140, 3, 2, 2, 2, 2142, 2143, 3, 2, 2, 2, 2143, 2145, 3, 2, 2, 2, 2144, 2142, 3, 2, 2, 2, 2145, 2146, 7, 5, 2, 2, 2146, 159, 3, 2, 2, 2, 2147, 2149, 5, 258, 130, 2, 2148, 2150, 5, 32, 17, 2, 2149, 2148, 3, 2, 2, 2, 2149, 2150, 3, 2, 2, 2, 2150, 161, 3, 2, 2, 2, 2151, 2153, 5, 174, 88, 2, 2152, 2154, 5, 146, 74, 2, 2153, 2152, 3, 2, 2, 2, 2153, 2154, 3, 2, 2, 2, 2154, 2155, 3, 2, 2, 2, 2155, 2156, 5, 168, 85, 2, 2156, 2176, 3, 2, 2, 2, 2157, 2158, 7, 4, 2, 2, 2158, 2159, 5, 34, 18, 2, 2159, 2161, 7, 5, 2, 2, 2160, 2162, 5, 146, 74, 2, 2161, 2160, 3, 2, 2, 2, 2161, 2162, 3, 2, 2, 2, 2162, 2163, 3, 2, 2, 2, 2163, 2164, 5, 168, 85, 2, 2164, 2176, 3, 2, 2, 2, 2165, 2166, 7, 4, 2, 2, 2166, 2167, 5, 138, 70, 2, 2167, 2169, 7, 5, 2, 2, 2168, 2170, 5, 146, 74, 2, 2169, 2168, 3, 2, 2, 2, 2169, 2170, 3, 2, 2, 2, 2170, 2171, 3, 2, 2, 2, 2171, 2172, 5, 168, 85, 2, 2172, 2176, 3, 2, 2, 2, 2173, 2176, 5, 164, 83, 2, 2174, 2176, 5, 166, 84, 2, 2175, 2151, 3, 2, 2, 2, 2175, 2157, 3, 2, 2, 2, 2175, 2165, 3, 2, 2, 2, 2175, 2173, 3, 2, 2, 2, 2175, 2174, 3, 2, 2, 2, 2176, 163, 3, 2, 2, 2, 2177, 2178, 7, 255, 2, 2, 2178, 2183, 5, 188, 95, 2, 2179, 2180, 7, 6, 2, 2, 2180, 2182, 5, 188, 95, 2, 2181, 2179, 3, 2, 2, 2, 2182, 2185, 3, 2, 2, 2, 2183, 2181, 3, 2, 2, 2, 2183, 2184, 3, 2, 2, 2, 2184, 2186, 3, 2, 2, 2, 2185, 2183, 3, 2, 2, 2, 2186, 2187, 5, 168, 85, 2, 2187, 165, 3, 2, 2, 2, 2188, 2189, 5, 254, 128, 2, 2189, 2198, 7, 4, 2, 2, 2190, 2195, 5, 188, 95, 2, 2191, 2192, 7, 6, 2, 2, 2192, 2194, 5, 188, 95, 2, 2193, 2191, 3, 2, 2, 2, 2194, 2197, 3, 2, 2, 2, 2195, 2193, 3, 2, 2, 2, 2195, 2196, 3, 2, 2, 2, 2196, 2199, 3, 2, 2, 2, 2197, 2195, 3, 2, 2, 2, 2198, 2190, 3, 2, 2, 2, 2198, 2199, 3, 2, 2, 2, 2199, 2200, 3, 2, 2, 2, 2200, 2201, 7, 5, 2, 2, 2201, 2202, 5, 168, 85, 2, 2202, 167, 3, 2, 2, 2, 2203, 2205, 7, 24, 2, 2, 2204, 2203, 3, 2, 2, 2, 2204, 2205, 3, 2, 2, 2, 2205, 2206, 3, 2, 2, 2, 2206, 2208, 5, 260, 131, 2, 2207, 2209, 5, 150, 76, 2, 2208, 2207, 3, 2, 2, 2, 2208, 2209, 3, 2, 2, 2, 2209, 2211, 3, 2, 2, 2, 2210, 2204, 3, 2, 2, 2, 2210, 2211, 3, 2, 2, 2, 2211, 169, 3, 2, 2, 2, 2212, 2213, 7, 201, 2, 2, 2213, 2214, 7, 100, 2, 2, 2214, 2215, 7, 207, 2, 2, 2215, 2219, 7, 281, 2, 2, 2216, 2217, 7, 261, 2, 2, 2217, 2218, 7, 208, 2, 2, 2218, 2220, 5, 58, 30, 2, 2219, 2216, 3, 2, 2, 2, 2219, 2220, 3, 2, 2, 2, 2220, 2262, 3, 2, 2, 2, 2221, 2222, 7, 201, 2, 2, 2222, 2223, 7, 100, 2, 2, 2223, 2233, 7, 69, 2, 2, 2224, 2225, 7, 93, 2, 2, 2225, 2226, 7, 230, 2, 2, 2226, 2227, 7, 32, 2, 2, 2227, 2231, 7, 281, 2, 2, 2228, 2229, 7, 82, 2, 2, 2229, 2230, 7, 32, 2, 2, 2230, 2232, 7, 281, 2, 2, 2231, 2228, 3, 2, 2, 2, 2231, 2232, 3, 2, 2, 2, 2232, 2234, 3, 2, 2, 2, 2233, 2224, 3, 2, 2, 2, 2233, 2234, 3, 2, 2, 2, 2234, 2240, 3, 2, 2, 2, 2235, 2236, 7, 44, 2, 2, 2236, 2237, 7, 125, 2, 2, 2237, 2238, 7, 230, 2, 2, 2238, 2239, 7, 32, 2, 2, 2239, 2241, 7, 281, 2, 2, 2240, 2235, 3, 2, 2, 2, 2240, 2241, 3, 2, 2, 2, 2241, 2247, 3, 2, 2, 2, 2242, 2243, 7, 144, 2, 2, 2243, 2244, 7, 127, 2, 2, 2244, 2245, 7, 230, 2, 2, 2245, 2246, 7, 32, 2, 2, 2246, 2248, 7, 281, 2, 2, 2247, 2242, 3, 2, 2, 2, 2247, 2248, 3, 2, 2, 2, 2248, 2253, 3, 2, 2, 2, 2249, 2250, 7, 135, 2, 2, 2250, 2251, 7, 230, 2, 2, 2251, 2252, 7, 32, 2, 2, 2252, 2254, 7, 281, 2, 2, 2253, 2249, 3, 2, 2, 2, 2253, 2254, 3, 2, 2, 2, 2254, 2259, 3, 2, 2, 2, 2255, 2256, 7, 153, 2, 2, 2256, 2257, 7, 67, 2, 2, 2257, 2258, 7, 24, 2, 2, 2258, 2260, 7, 281, 2, 2, 2259, 2255, 3, 2, 2, 2, 2259, 2260, 3, 2, 2, 2, 2260, 2262, 3, 2, 2, 2, 2261, 2212, 3, 2, 2, 2, 2261, 2221, 3, 2, 2, 2, 2262, 171, 3, 2, 2, 2, 2263, 2268, 5, 174, 88, 2, 2264, 2265, 7, 6, 2, 2, 2265, 2267, 5, 174, 88, 2, 2266, 2264, 3, 2, 2, 2, 2267, 2270, 3, 2, 2, 2, 2268, 2266, 3, 2, 2, 2, 2268, 2269, 3, 2, 2, 2, 2269, 173, 3, 2, 2, 2, 2270, 2268, 3, 2, 2, 2, 2271, 2276, 5, 254, 128, 2, 2272, 2273, 7, 7, 2, 2, 2273, 2275, 5, 254, 128, 2, 2274, 2272, 3, 2, 2, 2, 2275, 2278, 3, 2, 2, 2, 2276, 2274, 3, 2, 2, 2, 2276, 2277, 3, 2, 2, 2, 2277, 175, 3, 2, 2, 2, 2278, 2276, 3, 2, 2, 2, 2279, 2280, 5, 254, 128, 2, 2280, 2281, 7, 7, 2, 2, 2281, 2283, 3, 2, 2, 2, 2282, 2279, 3, 2, 2, 2, 2282, 2283, 3, 2, 2, 2, 2283, 2284, 3, 2, 2, 2, 2284, 2285, 5, 254, 128, 2, 2285, 177, 3, 2, 2, 2, 2286, 2294, 5, 188, 95, 2, 2287, 2289, 7, 24, 2, 2, 2288, 2287, 3, 2, 2, 2, 2288, 2289, 3, 2, 2, 2, 2289, 2292, 3, 2, 2, 2, 2290, 2293, 5, 254, 128, 2, 2291, 2293, 5, 150, 76, 2, 2292, 2290, 3, 2, 2, 2, 2292, 2291, 3, 2, 2, 2, 2293, 2295, 3, 2, 2, 2, 2294, 2288, 3, 2, 2, 2, 2294, 2295, 3, 2, 2, 2, 2295, 179, 3, 2, 2, 2, 2296, 2301, 5, 178, 90, 2, 2297, 2298, 7, 6, 2, 2, 2298, 2300, 5, 178, 90, 2, 2299, 2297, 3, 2, 2, 2, 2300, 2303, 3, 2, 2, 2, 2301, 2299, 3, 2, 2, 2, 2301, 2302, 3, 2, 2, 2, 2302, 181, 3, 2, 2, 2, 2303, 2301, 3, 2, 2, 2, 2304, 2305, 7, 4, 2, 2, 2305, 2310, 5, 184, 93, 2, 2306, 2307, 7, 6, 2, 2, 2307, 2309, 5, 184, 93, 2, 2308, 2306, 3, 2, 2, 2, 2309, 2312, 3, 2, 2, 2, 2310, 2308, 3, 2, 2, 2, 2310, 2311, 3, 2, 2, 2, 2311, 2313, 3, 2, 2, 2, 2312, 2310, 3, 2, 2, 2, 2313, 2314, 7, 5, 2, 2, 2314, 183, 3, 2, 2, 2, 2315, 2329, 5, 252, 127, 2, 2316, 2317, 5, 258, 130, 2, 2317, 2318, 7, 4, 2, 2, 2318, 2323, 5, 186, 94, 2, 2319, 2320, 7, 6, 2, 2, 2320, 2322, 5, 186, 94, 2, 2321, 2319, 3, 2, 2, 2, 2322, 2325, 3, 2, 2, 2, 2323, 2321, 3, 2, 2, 2, 2323, 2324, 3, 2, 2, 2, 2324, 2326, 3, 2, 2, 2, 2325, 2323, 3, 2, 2, 2, 2326, 2327, 7, 5, 2, 2, 2327, 2329, 3, 2, 2, 2, 2328, 2315, 3, 2, 2, 2, 2328, 2316, 3, 2, 2, 2, 2329, 185, 3, 2, 2, 2, 2330, 2333, 5, 252, 127, 2, 2331, 2333, 5, 198, 100, 2, 2332, 2330, 3, 2, 2, 2, 2332, 2331, 3, 2, 2, 2, 2333, 187, 3, 2, 2, 2, 2334, 2335, 5, 190, 96, 2, 2335, 189, 3, 2, 2, 2, 2336, 2337, 8, 96, 1, 2, 2337, 2338, 7, 152, 2, 2, 2338, 2349, 5, 190, 96, 7, 2339, 2340, 7, 85, 2, 2, 2340, 2341, 7, 4, 2, 2, 2341, 2342, 5, 34, 18, 2, 2342, 2343, 7, 5, 2, 2, 2343, 2349, 3, 2, 2, 2, 2344, 2346, 5, 194, 98, 2, 2345, 2347, 5, 192, 97, 2, 2346, 2345, 3, 2, 2, 2, 2346, 2347, 3, 2, 2, 2, 2347, 2349, 3, 2, 2, 2, 2348, 2336, 3, 2, 2, 2, 2348, 2339, 3, 2, 2, 2, 2348, 2344, 3, 2, 2, 2, 2349, 2358, 3, 2, 2, 2, 2350, 2351, 12, 4, 2, 2, 2351, 2352, 7, 19, 2, 2, 2352, 2357, 5, 190, 96, 5, 2353, 2354, 12, 3, 2, 2, 2354, 2355, 7, 160, 2, 2, 2355, 2357, 5, 190, 96, 4, 2356, 2350, 3, 2, 2, 2, 2356, 2353, 3, 2, 2, 2, 2357, 2360, 3, 2, 2, 2, 2358, 2356, 3, 2, 2, 2, 2358, 2359, 3, 2, 2, 2, 2359, 191, 3, 2, 2, 2, 2360, 2358, 3, 2, 2, 2, 2361, 2363, 7, 152, 2, 2, 2362, 2361, 3, 2, 2, 2, 2362, 2363, 3, 2, 2, 2, 2363, 2364, 3, 2, 2, 2, 2364, 2365, 7, 28, 2, 2, 2365, 2366, 5, 194, 98, 2, 2366, 2367, 7, 19, 2, 2, 2367, 2368, 5, 194, 98, 2, 2368, 2444, 3, 2, 2, 2, 2369, 2371, 7, 152, 2, 2, 2370, 2369, 3, 2, 2, 2, 2370, 2371, 3, 2, 2, 2, 2371, 2372, 3, 2, 2, 2, 2372, 2373, 7, 114, 2, 2, 2373, 2374, 7, 4, 2, 2, 2374, 2379, 5, 188, 95, 2, 2375, 2376, 7, 6, 2, 2, 2376, 2378, 5, 188, 95, 2, 2377, 2375, 3, 2, 2, 2, 2378, 2381, 3, 2, 2, 2, 2379, 2377, 3, 2, 2, 2, 2379, 2380, 3, 2, 2, 2, 2380, 2382, 3, 2, 2, 2, 2381, 2379, 3, 2, 2, 2, 2382, 2383, 7, 5, 2, 2, 2383, 2444, 3, 2, 2, 2, 2384, 2386, 7, 152, 2, 2, 2385, 2384, 3, 2, 2, 2, 2385, 2386, 3, 2, 2, 2, 2386, 2387, 3, 2, 2, 2, 2387, 2388, 7, 114, 2, 2, 2388, 2389, 7, 4, 2, 2, 2389, 2390, 5, 34, 18, 2, 2390, 2391, 7, 5, 2, 2, 2391, 2444, 3, 2, 2, 2, 2392, 2394, 7, 152, 2, 2, 2393, 2392, 3, 2, 2, 2, 2393, 2394, 3, 2, 2, 2, 2394, 2395, 3, 2, 2, 2, 2395, 2396, 7, 196, 2, 2, 2396, 2444, 5, 194, 98, 2, 2397, 2399, 7, 152, 2, 2, 2398, 2397, 3, 2, 2, 2, 2398, 2399, 3, 2, 2, 2, 2399, 2400, 3, 2, 2, 2, 2400, 2401, 7, 133, 2, 2, 2401, 2415, 9, 22, 2, 2, 2402, 2403, 7, 4, 2, 2, 2403, 2416, 7, 5, 2, 2, 2404, 2405, 7, 4, 2, 2, 2405, 2410, 5, 188, 95, 2, 2406, 2407, 7, 6, 2, 2, 2407, 2409, 5, 188, 95, 2, 2408, 2406, 3, 2, 2, 2, 2409, 2412, 3, 2, 2, 2, 2410, 2408, 3, 2, 2, 2, 2410, 2411, 3, 2, 2, 2, 2411, 2413, 3, 2, 2, 2, 2412, 2410, 3, 2, 2, 2, 2413, 2414, 7, 5, 2, 2, 2414, 2416, 3, 2, 2, 2, 2415, 2402, 3, 2, 2, 2, 2415, 2404, 3, 2, 2, 2, 2416, 2444, 3, 2, 2, 2, 2417, 2419, 7, 152, 2, 2, 2418, 2417, 3, 2, 2, 2, 2418, 2419, 3, 2, 2, 2, 2419, 2420, 3, 2, 2, 2, 2420, 2421, 7, 133, 2, 2, 2421, 2424, 5, 194, 98, 2, 2422, 2423, 7, 81, 2, 2, 2423, 2425, 7, 281, 2, 2, 2424, 2422, 3, 2, 2, 2, 2424, 2425, 3, 2, 2, 2, 2425, 2444, 3, 2, 2, 2, 2426, 2428, 7, 124, 2, 2, 2427, 2429, 7, 152, 2, 2, 2428, 2427, 3, 2, 2, 2, 2428, 2429, 3, 2, 2, 2, 2429, 2430, 3, 2, 2, 2, 2430, 2444, 7, 153, 2, 2, 2431, 2433, 7, 124, 2, 2, 2432, 2434, 7, 152, 2, 2, 2433, 2432, 3, 2, 2, 2, 2433, 2434, 3, 2, 2, 2, 2434, 2435, 3, 2, 2, 2, 2435, 2444, 9, 23, 2, 2, 2436, 2438, 7, 124, 2, 2, 2437, 2439, 7, 152, 2, 2, 2438, 2437, 3, 2, 2, 2, 2438, 2439, 3, 2, 2, 2, 2439, 2440, 3, 2, 2, 2, 2440, 2441, 7, 75, 2, 2, 2441, 2442, 7, 102, 2, 2, 2442, 2444, 5, 194, 98, 2, 2443, 2362, 3, 2, 2, 2, 2443, 2370, 3, 2, 2, 2, 2443, 2385, 3, 2, 2, 2, 2443, 2393, 3, 2, 2, 2, 2443, 2398, 3, 2, 2, 2, 2443, 2418, 3, 2, 2, 2, 2443, 2426, 3, 2, 2, 2, 2443, 2431, 3, 2, 2, 2, 2443, 2436, 3, 2, 2, 2, 2444, 193, 3, 2, 2, 2, 2445, 2446, 8, 98, 1, 2, 2446, 2450, 5, 196, 99, 2, 2447, 2448, 9, 24, 2, 2, 2448, 2450, 5, 194, 98, 9, 2449, 2445, 3, 2, 2, 2, 2449, 2447, 3, 2, 2, 2, 2450, 2472, 3, 2, 2, 2, 2451, 2452, 12, 8, 2, 2, 2452, 2453, 9, 25, 2, 2, 2453, 2471, 5, 194, 98, 9, 2454, 2455, 12, 7, 2, 2, 2455, 2456, 9, 26, 2, 2, 2456, 2471, 5, 194, 98, 8, 2457, 2458, 12, 6, 2, 2, 2458, 2459, 7, 277, 2, 2, 2459, 2471, 5, 194, 98, 7, 2460, 2461, 12, 5, 2, 2, 2461, 2462, 7, 280, 2, 2, 2462, 2471, 5, 194, 98, 6, 2463, 2464, 12, 4, 2, 2, 2464, 2465, 7, 278, 2, 2, 2465, 2471, 5, 194, 98, 5, 2466, 2467, 12, 3, 2, 2, 2467, 2468, 5, 200, 101, 2, 2468, 2469, 5, 194, 98, 4, 2469, 2471, 3, 2, 2, 2, 2470, 2451, 3, 2, 2, 2, 2470, 2454, 3, 2, 2, 2, 2470, 2457, 3, 2, 2, 2, 2470, 2460, 3, 2, 2, 2, 2470, 2463, 3, 2, 2, 2, 2470, 2466, 3, 2, 2, 2, 2471, 2474, 3, 2, 2, 2, 2472, 2470, 3, 2, 2, 2, 2472, 2473, 3, 2, 2, 2, 2473, 195, 3, 2, 2, 2, 2474, 2472, 3, 2, 2, 2, 2475, 2476, 8, 99, 1, 2, 2476, 2660, 9, 27, 2, 2, 2477, 2479, 7, 35, 2, 2, 2478, 2480, 5, 236, 119, 2, 2479, 2478, 3, 2, 2, 2, 2480, 2481, 3, 2, 2, 2, 2481, 2479, 3, 2, 2, 2, 2481, 2482, 3, 2, 2, 2, 2482, 2485, 3, 2, 2, 2, 2483, 2484, 7, 79, 2, 2, 2484, 2486, 5, 188, 95, 2, 2485, 2483, 3, 2, 2, 2, 2485, 2486, 3, 2, 2, 2, 2486, 2487, 3, 2, 2, 2, 2487, 2488, 7, 80, 2, 2, 2488, 2660, 3, 2, 2, 2, 2489, 2490, 7, 35, 2, 2, 2490, 2492, 5, 188, 95, 2, 2491, 2493, 5, 236, 119, 2, 2492, 2491, 3, 2, 2, 2, 2493, 2494, 3, 2, 2, 2, 2494, 2492, 3, 2, 2, 2, 2494, 2495, 3, 2, 2, 2, 2495, 2498, 3, 2, 2, 2, 2496, 2497, 7, 79, 2, 2, 2497, 2499, 5, 188, 95, 2, 2498, 2496, 3, 2, 2, 2, 2498, 2499, 3, 2, 2, 2, 2499, 2500, 3, 2, 2, 2, 2500, 2501, 7, 80, 2, 2, 2501, 2660, 3, 2, 2, 2, 2502, 2503, 7, 36, 2, 2, 2503, 2504, 7, 4, 2, 2, 2504, 2505, 5, 188, 95, 2, 2505, 2506, 7, 24, 2, 2, 2506, 2507, 5, 222, 112, 2, 2507, 2508, 7, 5, 2, 2, 2508, 2660, 3, 2, 2, 2, 2509, 2510, 7, 222, 2, 2, 2510, 2519, 7, 4, 2, 2, 2511, 2516, 5, 178, 90, 2, 2512, 2513, 7, 6, 2, 2, 2513, 2515, 5, 178, 90, 2, 2514, 2512, 3, 2, 2, 2, 2515, 2518, 3, 2, 2, 2, 2516, 2514, 3, 2, 2, 2, 2516, 2517, 3, 2, 2, 2, 2517, 2520, 3, 2, 2, 2, 2518, 2516, 3, 2, 2, 2, 2519, 2511, 3, 2, 2, 2, 2519, 2520, 3, 2, 2, 2, 2520, 2521, 3, 2, 2, 2, 2521, 2660, 7, 5, 2, 2, 2522, 2523, 7, 96, 2, 2, 2523, 2524, 7, 4, 2, 2, 2524, 2527, 5, 188, 95, 2, 2525, 2526, 7, 112, 2, 2, 2526, 2528, 7, 154, 2, 2, 2527, 2525, 3, 2, 2, 2, 2527, 2528, 3, 2, 2, 2, 2528, 2529, 3, 2, 2, 2, 2529, 2530, 7, 5, 2, 2, 2530, 2660, 3, 2, 2, 2, 2531, 2532, 7, 128, 2, 2, 2532, 2533, 7, 4, 2, 2, 2533, 2536, 5, 188, 95, 2, 2534, 2535, 7, 112, 2, 2, 2535, 2537, 7, 154, 2, 2, 2536, 2534, 3, 2, 2, 2, 2536, 2537, 3, 2, 2, 2, 2537, 2538, 3, 2, 2, 2, 2538, 2539, 7, 5, 2, 2, 2539, 2660, 3, 2, 2, 2, 2540, 2541, 7, 175, 2, 2, 2541, 2542, 7, 4, 2, 2, 2542, 2543, 5, 194, 98, 2, 2543, 2544, 7, 114, 2, 2, 2544, 2545, 5, 194, 98, 2, 2545, 2546, 7, 5, 2, 2, 2546, 2660, 3, 2, 2, 2, 2547, 2660, 5, 198, 100, 2, 2548, 2660, 7, 273, 2, 2, 2549, 2550, 5, 252, 127, 2, 2550, 2551, 7, 7, 2, 2, 2551, 2552, 7, 273, 2, 2, 2552, 2660, 3, 2, 2, 2, 2553, 2554, 7, 4, 2, 2, 2554, 2557, 5, 178, 90, 2, 2555, 2556, 7, 6, 2, 2, 2556, 2558, 5, 178, 90, 2, 2557, 2555, 3, 2, 2, 2, 2558, 2559, 3, 2, 2, 2, 2559, 2557, 3, 2, 2, 2, 2559, 2560, 3, 2, 2, 2, 2560, 2561, 3, 2, 2, 2, 2561, 2562, 7, 5, 2, 2, 2562, 2660, 3, 2, 2, 2, 2563, 2564, 7, 4, 2, 2, 2564, 2565, 5, 34, 18, 2, 2565, 2566, 7, 5, 2, 2, 2566, 2660, 3, 2, 2, 2, 2567, 2568, 5, 250, 126, 2, 2568, 2580, 7, 4, 2, 2, 2569, 2571, 5, 136, 69, 2, 2570, 2569, 3, 2, 2, 2, 2570, 2571, 3, 2, 2, 2, 2571, 2572, 3, 2, 2, 2, 2572, 2577, 5, 188, 95, 2, 2573, 2574, 7, 6, 2, 2, 2574, 2576, 5, 188, 95, 2, 2575, 2573, 3, 2, 2, 2, 2576, 2579, 3, 2, 2, 2, 2577, 2575, 3, 2, 2, 2, 2577, 2578, 3, 2, 2, 2, 2578, 2581, 3, 2, 2, 2, 2579, 2577, 3, 2, 2, 2, 2580, 2570, 3, 2, 2, 2, 2580, 2581, 3, 2, 2, 2, 2581, 2582, 3, 2, 2, 2, 2582, 2589, 7, 5, 2, 2, 2583, 2584, 7, 94, 2, 2, 2584, 2585, 7, 4, 2, 2, 2585, 2586, 7, 259, 2, 2, 2586, 2587, 5, 190, 96, 2, 2587, 2588, 7, 5, 2, 2, 2588, 2590, 3, 2, 2, 2, 2589, 2583, 3, 2, 2, 2, 2589, 2590, 3, 2, 2, 2, 2590, 2593, 3, 2, 2, 2, 2591, 2592, 7, 165, 2, 2, 2592, 2594, 5, 242, 122, 2, 2593, 2591, 3, 2, 2, 2, 2593, 2594, 3, 2, 2, 2, 2594, 2660, 3, 2, 2, 2, 2595, 2596, 5, 258, 130, 2, 2596, 2597, 7, 10, 2, 2, 2597, 2598, 5, 188, 95, 2, 2598, 2660, 3, 2, 2, 2, 2599, 2600, 7, 4, 2, 2, 2600, 2603, 5, 258, 130, 2, 2601, 2602, 7, 6, 2, 2, 2602, 2604, 5, 258, 130, 2, 2603, 2601, 3, 2, 2, 2, 2604, 2605, 3, 2, 2, 2, 2605, 2603, 3, 2, 2, 2, 2605, 2606, 3, 2, 2, 2, 2606, 2607, 3, 2, 2, 2, 2607, 2608, 7, 5, 2, 2, 2608, 2609, 7, 10, 2, 2, 2609, 2610, 5, 188, 95, 2, 2610, 2660, 3, 2, 2, 2, 2611, 2660, 5, 258, 130, 2, 2612, 2613, 7, 4, 2, 2, 2613, 2614, 5, 188, 95, 2, 2614, 2615, 7, 5, 2, 2, 2615, 2660, 3, 2, 2, 2, 2616, 2617, 7, 90, 2, 2, 2617, 2618, 7, 4, 2, 2, 2618, 2619, 5, 258, 130, 2, 2619, 2620, 7, 102, 2, 2, 2620, 2621, 5, 194, 98, 2, 2621, 2622, 7, 5, 2, 2, 2622, 2660, 3, 2, 2, 2, 2623, 2624, 9, 28, 2, 2, 2624, 2625, 7, 4, 2, 2, 2625, 2626, 5, 194, 98, 2, 2626, 2627, 9, 29, 2, 2, 2627, 2630, 5, 194, 98, 2, 2628, 2629, 9, 30, 2, 2, 2629, 2631, 5, 194, 98, 2, 2630, 2628, 3, 2, 2, 2, 2630, 2631, 3, 2, 2, 2, 2631, 2632, 3, 2, 2, 2, 2632, 2633, 7, 5, 2, 2, 2633, 2660, 3, 2, 2, 2, 2634, 2635, 7, 239, 2, 2, 2635, 2637, 7, 4, 2, 2, 2636, 2638, 9, 31, 2, 2, 2637, 2636, 3, 2, 2, 2, 2637, 2638, 3, 2, 2, 2, 2638, 2640, 3, 2, 2, 2, 2639, 2641, 5, 194, 98, 2, 2640, 2639, 3, 2, 2, 2, 2640, 2641, 3, 2, 2, 2, 2641, 2642, 3, 2, 2, 2, 2642, 2643, 7, 102, 2, 2, 2643, 2644, 5, 194, 98, 2, 2644, 2645, 7, 5, 2, 2, 2645, 2660, 3, 2, 2, 2, 2646, 2647, 7, 167, 2, 2, 2647, 2648, 7, 4, 2, 2, 2648, 2649, 5, 194, 98, 2, 2649, 2650, 7, 174, 2, 2, 2650, 2651, 5, 194, 98, 2, 2651, 2652, 7, 102, 2, 2, 2652, 2655, 5, 194, 98, 2, 2653, 2654, 7, 98, 2, 2, 2654, 2656, 5, 194, 98, 2, 2655, 2653, 3, 2, 2, 2, 2655, 2656, 3, 2, 2, 2, 2656, 2657, 3, 2, 2, 2, 2657, 2658, 7, 5, 2, 2, 2658, 2660, 3, 2, 2, 2, 2659, 2475, 3, 2, 2, 2, 2659, 2477, 3, 2, 2, 2, 2659, 2489, 3, 2, 2, 2, 2659, 2502, 3, 2, 2, 2, 2659, 2509, 3, 2, 2, 2, 2659, 2522, 3, 2, 2, 2, 2659, 2531, 3, 2, 2, 2, 2659, 2540, 3, 2, 2, 2, 2659, 2547, 3, 2, 2, 2, 2659, 2548, 3, 2, 2, 2, 2659, 2549, 3, 2, 2, 2, 2659, 2553, 3, 2, 2, 2, 2659, 2563, 3, 2, 2, 2, 2659, 2567, 3, 2, 2, 2, 2659, 2595, 3, 2, 2, 2, 2659, 2599, 3, 2, 2, 2, 2659, 2611, 3, 2, 2, 2, 2659, 2612, 3, 2, 2, 2, 2659, 2616, 3, 2, 2, 2, 2659, 2623, 3, 2, 2, 2, 2659, 2634, 3, 2, 2, 2, 2659, 2646, 3, 2, 2, 2, 2660, 2671, 3, 2, 2, 2, 2661, 2662, 12, 10, 2, 2, 2662, 2663, 7, 11, 2, 2, 2663, 2664, 5, 194, 98, 2, 2664, 2665, 7, 12, 2, 2, 2665, 2670, 3, 2, 2, 2, 2666, 2667, 12, 8, 2, 2, 2667, 2668, 7, 7, 2, 2, 2668, 2670, 5, 258, 130, 2, 2669, 2661, 3, 2, 2, 2, 2669, 2666, 3, 2, 2, 2, 2670, 2673, 3, 2, 2, 2, 2671, 2669, 3, 2, 2, 2, 2671, 2672, 3, 2, 2, 2, 2672, 197, 3, 2, 2, 2, 2673, 2671, 3, 2, 2, 2, 2674, 2687, 7, 153, 2, 2, 2675, 2687, 5, 208, 105, 2, 2676, 2677, 5, 258, 130, 2, 2677, 2678, 7, 281, 2, 2, 2678, 2687, 3, 2, 2, 2, 2679, 2687, 5, 264, 133, 2, 2680, 2687, 5, 206, 104, 2, 2681, 2683, 7, 281, 2, 2, 2682, 2681, 3, 2, 2, 2, 2683, 2684, 3, 2, 2, 2, 2684, 2682, 3, 2, 2, 2, 2684, 2685, 3, 2, 2, 2, 2685, 2687, 3, 2, 2, 2, 2686, 2674, 3, 2, 2, 2, 2686, 2675, 3, 2, 2, 2, 2686, 2676, 3, 2, 2, 2, 2686, 2679, 3, 2, 2, 2, 2686, 2680, 3, 2, 2, 2, 2686, 2682, 3, 2, 2, 2, 2687, 199, 3, 2, 2, 2, 2688, 2689, 9, 32, 2, 2, 2689, 201, 3, 2, 2, 2, 2690, 2691, 9, 33, 2, 2, 2691, 203, 3, 2, 2, 2, 2692, 2693, 9, 34, 2, 2, 2693, 205, 3, 2, 2, 2, 2694, 2695, 9, 35, 2, 2, 2695, 207, 3, 2, 2, 2, 2696, 2699, 7, 122, 2, 2, 2697, 2700, 5, 210, 106, 2, 2698, 2700, 5, 214, 108, 2, 2699, 2697, 3, 2, 2, 2, 2699, 2698, 3, 2, 2, 2, 2699, 2700, 3, 2, 2, 2, 2700, 209, 3, 2, 2, 2, 2701, 2703, 5, 212, 107, 2, 2702, 2704, 5, 216, 109, 2, 2703, 2702, 3, 2, 2, 2, 2703, 2704, 3, 2, 2, 2, 2704, 211, 3, 2, 2, 2, 2705, 2706, 5, 218, 110, 2, 2706, 2707, 5, 258, 130, 2, 2707, 2709, 3, 2, 2, 2, 2708, 2705, 3, 2, 2, 2, 2709, 2710, 3, 2, 2, 2, 2710, 2708, 3, 2, 2, 2, 2710, 2711, 3, 2, 2, 2, 2711, 213, 3, 2, 2, 2, 2712, 2715, 5, 216, 109, 2, 2713, 2716, 5, 212, 107, 2, 2714, 2716, 5, 216, 109, 2, 2715, 2713, 3, 2, 2, 2, 2715, 2714, 3, 2, 2, 2, 2715, 2716, 3, 2, 2, 2, 2716, 215, 3, 2, 2, 2, 2717, 2718, 5, 218, 110, 2, 2718, 2719, 5, 258, 130, 2, 2719, 2720, 7, 233, 2, 2, 2720, 2721, 5, 258, 130, 2, 2721, 217, 3, 2, 2, 2, 2722, 2724, 9, 36, 2, 2, 2723, 2722, 3, 2, 2, 2, 2723, 2724, 3, 2, 2, 2, 2724, 2725, 3, 2, 2, 2, 2725, 2728, 9, 21, 2, 2, 2726, 2728, 7, 281, 2, 2, 2727, 2723, 3, 2, 2, 2, 2727, 2726, 3, 2, 2, 2, 2728, 219, 3, 2, 2, 2, 2729, 2733, 7, 96, 2, 2, 2730, 2731, 7, 15, 2, 2, 2731, 2733, 5, 254, 128, 2, 2732, 2729, 3, 2, 2, 2, 2732, 2730, 3, 2, 2, 2, 2733, 221, 3, 2, 2, 2, 2734, 2735, 7, 23, 2, 2, 2735, 2736, 7, 267, 2, 2, 2736, 2737, 5, 222, 112, 2, 2737, 2738, 7, 269, 2, 2, 2738, 2769, 3, 2, 2, 2, 2739, 2740, 7, 144, 2, 2, 2740, 2741, 7, 267, 2, 2, 2741, 2742, 5, 222, 112, 2, 2742, 2743, 7, 6, 2, 2, 2743, 2744, 5, 222, 112, 2, 2744, 2745, 7, 269, 2, 2, 2745, 2769, 3, 2, 2, 2, 2746, 2753, 7, 222, 2, 2, 2747, 2749, 7, 267, 2, 2, 2748, 2750, 5, 232, 117, 2, 2749, 2748, 3, 2, 2, 2, 2749, 2750, 3, 2, 2, 2, 2750, 2751, 3, 2, 2, 2, 2751, 2754, 7, 269, 2, 2, 2752, 2754, 7, 265, 2, 2, 2753, 2747, 3, 2, 2, 2, 2753, 2752, 3, 2, 2, 2, 2754, 2769, 3, 2, 2, 2, 2755, 2766, 5, 258, 130, 2, 2756, 2757, 7, 4, 2, 2, 2757, 2762, 7, 285, 2, 2, 2758, 2759, 7, 6, 2, 2, 2759, 2761, 7, 285, 2, 2, 2760, 2758, 3, 2, 2, 2, 2761, 2764, 3, 2, 2, 2, 2762, 2760, 3, 2, 2, 2, 2762, 2763, 3, 2, 2, 2, 2763, 2765, 3, 2, 2, 2, 2764, 2762, 3, 2, 2, 2, 2765, 2767, 7, 5, 2, 2, 2766, 2756, 3, 2, 2, 2, 2766, 2767, 3, 2, 2, 2, 2767, 2769, 3, 2, 2, 2, 2768, 2734, 3, 2, 2, 2, 2768, 2739, 3, 2, 2, 2, 2768, 2746, 3, 2, 2, 2, 2768, 2755, 3, 2, 2, 2, 2769, 223, 3, 2, 2, 2, 2770, 2775, 5, 226, 114, 2, 2771, 2772, 7, 6, 2, 2, 2772, 2774, 5, 226, 114, 2, 2773, 2771, 3, 2, 2, 2, 2774, 2777, 3, 2, 2, 2, 2775, 2773, 3, 2, 2, 2, 2775, 2776, 3, 2, 2, 2, 2776, 225, 3, 2, 2, 2, 2777, 2775, 3, 2, 2, 2, 2778, 2779, 5, 174, 88, 2, 2779, 2782, 5, 222, 112, 2, 2780, 2781, 7, 152, 2, 2, 2781, 2783, 7, 153, 2, 2, 2782, 2780, 3, 2, 2, 2, 2782, 2783, 3, 2, 2, 2, 2783, 2785, 3, 2, 2, 2, 2784, 2786, 5, 32, 17, 2, 2785, 2784, 3, 2, 2, 2, 2785, 2786, 3, 2, 2, 2, 2786, 2788, 3, 2, 2, 2, 2787, 2789, 5, 220, 111, 2, 2788, 2787, 3, 2, 2, 2, 2788, 2789, 3, 2, 2, 2, 2789, 227, 3, 2, 2, 2, 2790, 2795, 5, 230, 116, 2, 2791, 2792, 7, 6, 2, 2, 2792, 2794, 5, 230, 116, 2, 2793, 2791, 3, 2, 2, 2, 2794, 2797, 3, 2, 2, 2, 2795, 2793, 3, 2, 2, 2, 2795, 2796, 3, 2, 2, 2, 2796, 229, 3, 2, 2, 2, 2797, 2795, 3, 2, 2, 2, 2798, 2799, 5, 254, 128, 2, 2799, 2802, 5, 222, 112, 2, 2800, 2801, 7, 152, 2, 2, 2801, 2803, 7, 153, 2, 2, 2802, 2800, 3, 2, 2, 2, 2802, 2803, 3, 2, 2, 2, 2803, 2805, 3, 2, 2, 2, 2804, 2806, 5, 32, 17, 2, 2805, 2804, 3, 2, 2, 2, 2805, 2806, 3, 2, 2, 2, 2806, 231, 3, 2, 2, 2, 2807, 2812, 5, 234, 118, 2, 2808, 2809, 7, 6, 2, 2, 2809, 2811, 5, 234, 118, 2, 2810, 2808, 3, 2, 2, 2, 2811, 2814, 3, 2, 2, 2, 2812, 2810, 3, 2, 2, 2, 2812, 2813, 3, 2, 2, 2, 2813, 233, 3, 2, 2, 2, 2814, 2812, 3, 2, 2, 2, 2815, 2816, 5, 258, 130, 2, 2816, 2817, 7, 13, 2, 2, 2817, 2820, 5, 222, 112, 2, 2818, 2819, 7, 152, 2, 2, 2819, 2821, 7, 153, 2, 2, 2820, 2818, 3, 2, 2, 2, 2820, 2821, 3, 2, 2, 2, 2821, 2823, 3, 2, 2, 2, 2822, 2824, 5, 32, 17, 2, 2823, 2822, 3, 2, 2, 2, 2823, 2824, 3, 2, 2, 2, 2824, 235, 3, 2, 2, 2, 2825, 2826, 7, 258, 2, 2, 2826, 2827, 5, 188, 95, 2, 2827, 2828, 7, 231, 2, 2, 2828, 2829, 5, 188, 95, 2, 2829, 237, 3, 2, 2, 2, 2830, 2831, 7, 260, 2, 2, 2831, 2836, 5, 240, 121, 2, 2832, 2833, 7, 6, 2, 2, 2833, 2835, 5, 240, 121, 2, 2834, 2832, 3, 2, 2, 2, 2835, 2838, 3, 2, 2, 2, 2836, 2834, 3, 2, 2, 2, 2836, 2837, 3, 2, 2, 2, 2837, 239, 3, 2, 2, 2, 2838, 2836, 3, 2, 2, 2, 2839, 2840, 5, 254, 128, 2, 2840, 2841, 7, 24, 2, 2, 2841, 2842, 5, 242, 122, 2, 2842, 241, 3, 2, 2, 2, 2843, 2890, 5, 254, 128, 2, 2844, 2845, 7, 4, 2, 2, 2845, 2846, 5, 254, 128, 2, 2846, 2847, 7, 5, 2, 2, 2847, 2890, 3, 2, 2, 2, 2848, 2883, 7, 4, 2, 2, 2849, 2850, 7, 40, 2, 2, 2850, 2851, 7, 32, 2, 2, 2851, 2856, 5, 188, 95, 2, 2852, 2853, 7, 6, 2, 2, 2853, 2855, 5, 188, 95, 2, 2854, 2852, 3, 2, 2, 2, 2855, 2858, 3, 2, 2, 2, 2856, 2854, 3, 2, 2, 2, 2856, 2857, 3, 2, 2, 2, 2857, 2884, 3, 2, 2, 2, 2858, 2856, 3, 2, 2, 2, 2859, 2860, 9, 37, 2, 2, 2860, 2861, 7, 32, 2, 2, 2861, 2866, 5, 188, 95, 2, 2862, 2863, 7, 6, 2, 2, 2863, 2865, 5, 188, 95, 2, 2864, 2862, 3, 2, 2, 2, 2865, 2868, 3, 2, 2, 2, 2866, 2864, 3, 2, 2, 2, 2866, 2867, 3, 2, 2, 2, 2867, 2870, 3, 2, 2, 2, 2868, 2866, 3, 2, 2, 2, 2869, 2859, 3, 2, 2, 2, 2869, 2870, 3, 2, 2, 2, 2870, 2881, 3, 2, 2, 2, 2871, 2872, 9, 38, 2, 2, 2872, 2873, 7, 32, 2, 2, 2873, 2878, 5, 88, 45, 2, 2874, 2875, 7, 6, 2, 2, 2875, 2877, 5, 88, 45, 2, 2876, 2874, 3, 2, 2, 2, 2877, 2880, 3, 2, 2, 2, 2878, 2876, 3, 2, 2, 2, 2878, 2879, 3, 2, 2, 2, 2879, 2882, 3, 2, 2, 2, 2880, 2878, 3, 2, 2, 2, 2881, 2871, 3, 2, 2, 2, 2881, 2882, 3, 2, 2, 2, 2882, 2884, 3, 2, 2, 2, 2883, 2849, 3, 2, 2, 2, 2883, 2869, 3, 2, 2, 2, 2884, 2886, 3, 2, 2, 2, 2885, 2887, 5, 244, 123, 2, 2886, 2885, 3, 2, 2, 2, 2886, 2887, 3, 2, 2, 2, 2887, 2888, 3, 2, 2, 2, 2888, 2890, 7, 5, 2, 2, 2889, 2843, 3, 2, 2, 2, 2889, 2844, 3, 2, 2, 2, 2889, 2848, 3, 2, 2, 2, 2890, 243, 3, 2, 2, 2, 2891, 2892, 7, 182, 2, 2, 2892, 2908, 5, 246, 124, 2, 2893, 2894, 7, 202, 2, 2, 2894, 2908, 5, 246, 124, 2, 2895, 2896, 7, 182, 2, 2, 2896, 2897, 7, 28, 2, 2, 2897, 2898, 5, 246, 124, 2, 2898, 2899, 7, 19, 2, 2, 2899, 2900, 5, 246, 124, 2, 2900, 2908, 3, 2, 2, 2, 2901, 2902, 7, 202, 2, 2, 2902, 2903, 7, 28, 2, 2, 2903, 2904, 5, 246, 124, 2, 2904, 2905, 7, 19, 2, 2, 2905, 2906, 5, 246, 124, 2, 2906, 2908, 3, 2, 2, 2, 2907, 2891, 3, 2, 2, 2, 2907, 2893, 3, 2, 2, 2, 2907, 2895, 3, 2, 2, 2, 2907, 2901, 3, 2, 2, 2, 2908, 245, 3, 2, 2, 2, 2909, 2910, 7, 244, 2, 2, 2910, 2917, 9, 39, 2, 2, 2911, 2912, 7, 58, 2, 2, 2912, 2917, 7, 201, 2, 2, 2913, 2914, 5, 188, 95, 2, 2914, 2915, 9, 39, 2, 2, 2915, 2917, 3, 2, 2, 2, 2916, 2909, 3, 2, 2, 2, 2916, 2911, 3, 2, 2, 2, 2916, 2913, 3, 2, 2, 2, 2917, 247, 3, 2, 2, 2, 2918, 2923, 5, 252, 127, 2, 2919, 2920, 7, 6, 2, 2, 2920, 2922, 5, 252, 127, 2, 2921, 2919, 3, 2, 2, 2, 2922, 2925, 3, 2, 2, 2, 2923, 2921, 3, 2, 2, 2, 2923, 2924, 3, 2, 2, 2, 2924, 249, 3, 2, 2, 2, 2925, 2923, 3, 2, 2, 2, 2926, 2931, 5, 252, 127, 2, 2927, 2931, 7, 94, 2, 2, 2928, 2931, 7, 132, 2, 2, 2929, 2931, 7, 195, 2, 2, 2930, 2926, 3, 2, 2, 2, 2930, 2927, 3, 2, 2, 2, 2930, 2928, 3, 2, 2, 2, 2930, 2929, 3, 2, 2, 2, 2931, 251, 3, 2, 2, 2, 2932, 2937, 5, 258, 130, 2, 2933, 2934, 7, 7, 2, 2, 2934, 2936, 5, 258, 130, 2, 2935, 2933, 3, 2, 2, 2, 2936, 2939, 3, 2, 2, 2, 2937, 2935, 3, 2, 2, 2, 2937, 2938, 3, 2, 2, 2, 2938, 253, 3, 2, 2, 2, 2939, 2937, 3, 2, 2, 2, 2940, 2941, 5, 258, 130, 2, 2941, 2942, 5, 256, 129, 2, 2942, 255, 3, 2, 2, 2, 2943, 2944, 7, 272, 2, 2, 2944, 2946, 5, 258, 130, 2, 2945, 2943, 3, 2, 2, 2, 2946, 2947, 3, 2, 2, 2, 2947, 2945, 3, 2, 2, 2, 2947, 2948, 3, 2, 2, 2, 2948, 2951, 3, 2, 2, 2, 2949, 2951, 3, 2, 2, 2, 2950, 2945, 3, 2, 2, 2, 2950, 2949, 3, 2, 2, 2, 2951, 257, 3, 2, 2, 2, 2952, 2956, 5, 260, 131, 2, 2953, 2954, 6, 130, 18, 2, 2954, 2956, 5, 270, 136, 2, 2955, 2952, 3, 2, 2, 2, 2955, 2953, 3, 2, 2, 2, 2956, 259, 3, 2, 2, 2, 2957, 2964, 7, 291, 2, 2, 2958, 2964, 5, 262, 132, 2, 2959, 2960, 6, 131, 19, 2, 2960, 2964, 5, 268, 135, 2, 2961, 2962, 6, 131, 20, 2, 2962, 2964, 5, 272, 137, 2, 2963, 2957, 3, 2, 2, 2, 2963, 2958, 3, 2, 2, 2, 2963, 2959, 3, 2, 2, 2, 2963, 2961, 3, 2, 2, 2, 2964, 261, 3, 2, 2, 2, 2965, 2966, 7, 292, 2, 2, 2966, 263, 3, 2, 2, 2, 2967, 2969, 6, 133, 21, 2, 2968, 2970, 7, 272, 2, 2, 2969, 2968, 3, 2, 2, 2, 2969, 2970, 3, 2, 2, 2, 2970, 2971, 3, 2, 2, 2, 2971, 3011, 7, 286, 2, 2, 2972, 2974, 6, 133, 22, 2, 2973, 2975, 7, 272, 2, 2, 2974, 2973, 3, 2, 2, 2, 2974, 2975, 3, 2, 2, 2, 2975, 2976, 3, 2, 2, 2, 2976, 3011, 7, 287, 2, 2, 2977, 2979, 6, 133, 23, 2, 2978, 2980, 7, 272, 2, 2, 2979, 2978, 3, 2, 2, 2, 2979, 2980, 3, 2, 2, 2, 2980, 2981, 3, 2, 2, 2, 2981, 3011, 9, 40, 2, 2, 2982, 2984, 7, 272, 2, 2, 2983, 2982, 3, 2, 2, 2, 2983, 2984, 3, 2, 2, 2, 2984, 2985, 3, 2, 2, 2, 2985, 3011, 7, 285, 2, 2, 2986, 2988, 7, 272, 2, 2, 2987, 2986, 3, 2, 2, 2, 2987, 2988, 3, 2, 2, 2, 2988, 2989, 3, 2, 2, 2, 2989, 3011, 7, 282, 2, 2, 2990, 2992, 7, 272, 2, 2, 2991, 2990, 3, 2, 2, 2, 2991, 2992, 3, 2, 2, 2, 2992, 2993, 3, 2, 2, 2, 2993, 3011, 7, 283, 2, 2, 2994, 2996, 7, 272, 2, 2, 2995, 2994, 3, 2, 2, 2, 2995, 2996, 3, 2, 2, 2, 2996, 2997, 3, 2, 2, 2, 2997, 3011, 7, 284, 2, 2, 2998, 3000, 7, 272, 2, 2, 2999, 2998, 3, 2, 2, 2, 2999, 3000, 3, 2, 2, 2, 3000, 3001, 3, 2, 2, 2, 3001, 3011, 7, 289, 2, 2, 3002, 3004, 7, 272, 2, 2, 3003, 3002, 3, 2, 2, 2, 3003, 3004, 3, 2, 2, 2, 3004, 3005, 3, 2, 2, 2, 3005, 3011, 7, 288, 2, 2, 3006, 3008, 7, 272, 2, 2, 3007, 3006, 3, 2, 2, 2, 3007, 3008, 3, 2, 2, 2, 3008, 3009, 3, 2, 2, 2, 3009, 3011, 7, 290, 2, 2, 3010, 2967, 3, 2, 2, 2, 3010, 2972, 3, 2, 2, 2, 3010, 2977, 3, 2, 2, 2, 3010, 2983, 3, 2, 2, 2, 3010, 2987, 3, 2, 2, 2, 3010, 2991, 3, 2, 2, 2, 3010, 2995, 3, 2, 2, 2, 3010, 2999, 3, 2, 2, 2, 3010, 3003, 3, 2, 2, 2, 3010, 3007, 3, 2, 2, 2, 3011, 265, 3, 2, 2, 2, 3012, 3013, 7, 242, 2, 2, 3013, 3020, 5, 222, 112, 2, 3014, 3020, 5, 32, 17, 2, 3015, 3020, 5, 220, 111, 2, 3016, 3017, 9, 41, 2, 2, 3017, 3018, 7, 152, 2, 2, 3018, 3020, 7, 153, 2, 2, 3019, 3012, 3, 2, 2, 2, 3019, 3014, 3, 2, 2, 2, 3019, 3015, 3, 2, 2, 2, 3019, 3016, 3, 2, 2, 2, 3020, 267, 3, 2, 2, 2, 3021, 3022, 9, 42, 2, 2, 3022, 269, 3, 2, 2, 2, 3023, 3024, 9, 43, 2, 2, 3024, 271, 3, 2, 2, 2, 3025, 3026, 9, 44, 2, 2, 3026, 273, 3, 2, 2, 2, 395, 281, 303, 308, 316, 324, 326, 346, 350, 356, 359, 362, 369, 374, 377, 384, 396, 405, 407, 411, 414, 421, 432, 434, 442, 447, 450, 456, 467, 531, 540, 544, 550, 554, 559, 565, 577, 585, 591, 604, 609, 625, 632, 636, 642, 657, 661, 667, 673, 676, 679, 685, 689, 697, 699, 708, 711, 720, 725, 731, 738, 741, 747, 758, 761, 765, 770, 775, 782, 785, 788, 795, 800, 809, 817, 823, 826, 829, 835, 839, 843, 847, 849, 857, 865, 871, 877, 880, 884, 887, 891, 919, 922, 926, 932, 935, 938, 944, 952, 957, 963, 969, 981, 984, 991, 1008, 1017, 1020, 1026, 1035, 1042, 1045, 1055, 1059, 1066, 1182, 1190, 1198, 1207, 1217, 1221, 1224, 1230, 1236, 1248, 1260, 1265, 1274, 1282, 1289, 1291, 1296, 1300, 1305, 1310, 1315, 1318, 1323, 1327, 1332, 1334, 1338, 1347, 1355, 1364, 1371, 1380, 1385, 1388, 1407, 1409, 1418, 1425, 1428, 1435, 1439, 1445, 1453, 1464, 1475, 1482, 1488, 1501, 1508, 1515, 1527, 1535, 1541, 1544, 1553, 1556, 1565, 1568, 1577, 1580, 1589, 1592, 1595, 1600, 1602, 1614, 1621, 1628, 1631, 1633, 1645, 1649, 1653, 1659, 1663, 1671, 1675, 1678, 1681, 1684, 1688, 1692, 1695, 1699, 1704, 1708, 1711, 1714, 1717, 1719, 1731, 1734, 1738, 1748, 1752, 1754, 1757, 1761, 1767, 1771, 1782, 1792, 1804, 1819, 1824, 1831, 1847, 1852, 1865, 1870, 1878, 1884, 1888, 1897, 1912, 1917, 1929, 1934, 1942, 1945, 1949, 1963, 1976, 1981, 1985, 1988, 1993, 2002, 2005, 2010, 2017, 2020, 2028, 2035, 2042, 2045, 2050, 2053, 2058, 2062, 2065, 2068, 2074, 2079, 2084, 2102, 2104, 2107, 2118, 2127, 2134, 2142, 2149, 2153, 2161, 2169, 2175, 2183, 2195, 2198, 2204, 2208, 2210, 2219, 2231, 2233, 2240, 2247, 2253, 2259, 2261, 2268, 2276, 2282, 2288, 2292, 2294, 2301, 2310, 2323, 2328, 2332, 2346, 2348, 2356, 2358, 2362, 2370, 2379, 2385, 2393, 2398, 2410, 2415, 2418, 2424, 2428, 2433, 2438, 2443, 2449, 2470, 2472, 2481, 2485, 2494, 2498, 2516, 2519, 2527, 2536, 2559, 2570, 2577, 2580, 2589, 2593, 2605, 2630, 2637, 2640, 2655, 2659, 2669, 2671, 2684, 2686, 2699, 2703, 2710, 2715, 2723, 2727, 2732, 2749, 2753, 2762, 2766, 2768, 2775, 2782, 2785, 2788, 2795, 2802, 2805, 2812, 2820, 2823, 2836, 2856, 2866, 2869, 2878, 2881, 2883, 2886, 2889, 2907, 2916, 2923, 2930, 2937, 2947, 2950, 2955, 2963, 2969, 2974, 2979, 2983, 2987, 2991, 2995, 2999, 3003, 3007, 3010, 3019] \ No newline at end of file diff --git a/src/lib/spark/SqlBase.tokens b/src/lib/spark/SqlBase.tokens new file mode 100644 index 0000000..1ab4c5a --- /dev/null +++ b/src/lib/spark/SqlBase.tokens @@ -0,0 +1,565 @@ +T__0=1 +T__1=2 +T__2=3 +T__3=4 +T__4=5 +T__5=6 +T__6=7 +T__7=8 +T__8=9 +T__9=10 +T__10=11 +ADD=12 +AFTER=13 +ALL=14 +ALTER=15 +ANALYZE=16 +AND=17 +ANTI=18 +ANY=19 +ARCHIVE=20 +ARRAY=21 +AS=22 +ASC=23 +AT=24 +AUTHORIZATION=25 +BETWEEN=26 +BOTH=27 +BUCKET=28 +BUCKETS=29 +BY=30 +CACHE=31 +CASCADE=32 +CASE=33 +CAST=34 +CHANGE=35 +CHECK=36 +CLEAR=37 +CLUSTER=38 +CLUSTERED=39 +CODEGEN=40 +COLLATE=41 +COLLECTION=42 +COLUMN=43 +COLUMNS=44 +COMMENT=45 +COMMIT=46 +COMPACT=47 +COMPACTIONS=48 +COMPUTE=49 +CONCATENATE=50 +CONSTRAINT=51 +COST=52 +CREATE=53 +CROSS=54 +CUBE=55 +CURRENT=56 +CURRENT_DATE=57 +CURRENT_TIME=58 +CURRENT_TIMESTAMP=59 +CURRENT_USER=60 +DATA=61 +DATABASE=62 +DATABASES=63 +DBPROPERTIES=64 +DEFINED=65 +DELETE=66 +DELIMITED=67 +DESC=68 +DESCRIBE=69 +DFS=70 +DIRECTORIES=71 +DIRECTORY=72 +DISTINCT=73 +DISTRIBUTE=74 +DIV=75 +DROP=76 +ELSE=77 +END=78 +ESCAPE=79 +ESCAPED=80 +EXCEPT=81 +EXCHANGE=82 +EXISTS=83 +EXPLAIN=84 +EXPORT=85 +EXTENDED=86 +EXTERNAL=87 +EXTRACT=88 +FALSE=89 +FETCH=90 +FIELDS=91 +FILTER=92 +FILEFORMAT=93 +FIRST=94 +FOLLOWING=95 +FOR=96 +FOREIGN=97 +FORMAT=98 +FORMATTED=99 +FROM=100 +FULL=101 +FUNCTION=102 +FUNCTIONS=103 +GLOBAL=104 +GRANT=105 +GROUP=106 +GROUPING=107 +HAVING=108 +IF=109 +IGNORE=110 +IMPORT=111 +IN=112 +INDEX=113 +INDEXES=114 +INNER=115 +INPATH=116 +INPUTFORMAT=117 +INSERT=118 +INTERSECT=119 +INTERVAL=120 +INTO=121 +IS=122 +ITEMS=123 +JOIN=124 +KEYS=125 +LAST=126 +LATERAL=127 +LAZY=128 +LEADING=129 +LEFT=130 +LIKE=131 +LIMIT=132 +LINES=133 +LIST=134 +LOAD=135 +LOCAL=136 +LOCATION=137 +LOCK=138 +LOCKS=139 +LOGICAL=140 +MACRO=141 +MAP=142 +MATCHED=143 +MERGE=144 +MSCK=145 +NAMESPACE=146 +NAMESPACES=147 +NATURAL=148 +NO=149 +NOT=150 +NULL=151 +NULLS=152 +OF=153 +ON=154 +ONLY=155 +OPTION=156 +OPTIONS=157 +OR=158 +ORDER=159 +OUT=160 +OUTER=161 +OUTPUTFORMAT=162 +OVER=163 +OVERLAPS=164 +OVERLAY=165 +OVERWRITE=166 +PARTITION=167 +PARTITIONED=168 +PARTITIONS=169 +PERCENTLIT=170 +PIVOT=171 +PLACING=172 +POSITION=173 +PRECEDING=174 +PRIMARY=175 +PRINCIPALS=176 +PROPERTIES=177 +PURGE=178 +QUERY=179 +RANGE=180 +RECORDREADER=181 +RECORDWRITER=182 +RECOVER=183 +REDUCE=184 +REFERENCES=185 +REFRESH=186 +RENAME=187 +REPAIR=188 +REPLACE=189 +RESET=190 +RESTRICT=191 +REVOKE=192 +RIGHT=193 +RLIKE=194 +ROLE=195 +ROLES=196 +ROLLBACK=197 +ROLLUP=198 +ROW=199 +ROWS=200 +SCHEMA=201 +SELECT=202 +SEMI=203 +SEPARATED=204 +SERDE=205 +SERDEPROPERTIES=206 +SESSION_USER=207 +SET=208 +SETMINUS=209 +SETS=210 +SHOW=211 +SKEWED=212 +SOME=213 +SORT=214 +SORTED=215 +START=216 +STATISTICS=217 +STORED=218 +STRATIFY=219 +STRUCT=220 +SUBSTR=221 +SUBSTRING=222 +TABLE=223 +TABLES=224 +TABLESAMPLE=225 +TBLPROPERTIES=226 +TEMPORARY=227 +TERMINATED=228 +THEN=229 +TIME=230 +TO=231 +TOUCH=232 +TRAILING=233 +TRANSACTION=234 +TRANSACTIONS=235 +TRANSFORM=236 +TRIM=237 +TRUE=238 +TRUNCATE=239 +TYPE=240 +UNARCHIVE=241 +UNBOUNDED=242 +UNCACHE=243 +UNION=244 +UNIQUE=245 +UNKNOWN=246 +UNLOCK=247 +UNSET=248 +UPDATE=249 +USE=250 +USER=251 +USING=252 +VALUES=253 +VIEW=254 +VIEWS=255 +WHEN=256 +WHERE=257 +WINDOW=258 +WITH=259 +ZONE=260 +EQ=261 +NSEQ=262 +NEQ=263 +NEQJ=264 +LT=265 +LTE=266 +GT=267 +GTE=268 +PLUS=269 +MINUS=270 +ASTERISK=271 +SLASH=272 +PERCENT=273 +TILDE=274 +AMPERSAND=275 +PIPE=276 +CONCAT_PIPE=277 +HAT=278 +STRING=279 +BIGINT_LITERAL=280 +SMALLINT_LITERAL=281 +TINYINT_LITERAL=282 +INTEGER_VALUE=283 +EXPONENT_VALUE=284 +DECIMAL_VALUE=285 +FLOAT_LITERAL=286 +DOUBLE_LITERAL=287 +BIGDECIMAL_LITERAL=288 +IDENTIFIER=289 +BACKQUOTED_IDENTIFIER=290 +SIMPLE_COMMENT=291 +BRACKETED_COMMENT=292 +WS=293 +UNRECOGNIZED=294 +';'=1 +'('=2 +')'=3 +','=4 +'.'=5 +'/*+'=6 +'*/'=7 +'->'=8 +'['=9 +']'=10 +':'=11 +'ADD'=12 +'AFTER'=13 +'ALL'=14 +'ALTER'=15 +'ANALYZE'=16 +'AND'=17 +'ANTI'=18 +'ANY'=19 +'ARCHIVE'=20 +'ARRAY'=21 +'AS'=22 +'ASC'=23 +'AT'=24 +'AUTHORIZATION'=25 +'BETWEEN'=26 +'BOTH'=27 +'BUCKET'=28 +'BUCKETS'=29 +'BY'=30 +'CACHE'=31 +'CASCADE'=32 +'CASE'=33 +'CAST'=34 +'CHANGE'=35 +'CHECK'=36 +'CLEAR'=37 +'CLUSTER'=38 +'CLUSTERED'=39 +'CODEGEN'=40 +'COLLATE'=41 +'COLLECTION'=42 +'COLUMN'=43 +'COLUMNS'=44 +'COMMENT'=45 +'COMMIT'=46 +'COMPACT'=47 +'COMPACTIONS'=48 +'COMPUTE'=49 +'CONCATENATE'=50 +'CONSTRAINT'=51 +'COST'=52 +'CREATE'=53 +'CROSS'=54 +'CUBE'=55 +'CURRENT'=56 +'CURRENT_DATE'=57 +'CURRENT_TIME'=58 +'CURRENT_TIMESTAMP'=59 +'CURRENT_USER'=60 +'DATA'=61 +'DATABASE'=62 +'DBPROPERTIES'=64 +'DEFINED'=65 +'DELETE'=66 +'DELIMITED'=67 +'DESC'=68 +'DESCRIBE'=69 +'DFS'=70 +'DIRECTORIES'=71 +'DIRECTORY'=72 +'DISTINCT'=73 +'DISTRIBUTE'=74 +'DIV'=75 +'DROP'=76 +'ELSE'=77 +'END'=78 +'ESCAPE'=79 +'ESCAPED'=80 +'EXCEPT'=81 +'EXCHANGE'=82 +'EXISTS'=83 +'EXPLAIN'=84 +'EXPORT'=85 +'EXTENDED'=86 +'EXTERNAL'=87 +'EXTRACT'=88 +'FALSE'=89 +'FETCH'=90 +'FIELDS'=91 +'FILTER'=92 +'FILEFORMAT'=93 +'FIRST'=94 +'FOLLOWING'=95 +'FOR'=96 +'FOREIGN'=97 +'FORMAT'=98 +'FORMATTED'=99 +'FROM'=100 +'FULL'=101 +'FUNCTION'=102 +'FUNCTIONS'=103 +'GLOBAL'=104 +'GRANT'=105 +'GROUP'=106 +'GROUPING'=107 +'HAVING'=108 +'IF'=109 +'IGNORE'=110 +'IMPORT'=111 +'IN'=112 +'INDEX'=113 +'INDEXES'=114 +'INNER'=115 +'INPATH'=116 +'INPUTFORMAT'=117 +'INSERT'=118 +'INTERSECT'=119 +'INTERVAL'=120 +'INTO'=121 +'IS'=122 +'ITEMS'=123 +'JOIN'=124 +'KEYS'=125 +'LAST'=126 +'LATERAL'=127 +'LAZY'=128 +'LEADING'=129 +'LEFT'=130 +'LIKE'=131 +'LIMIT'=132 +'LINES'=133 +'LIST'=134 +'LOAD'=135 +'LOCAL'=136 +'LOCATION'=137 +'LOCK'=138 +'LOCKS'=139 +'LOGICAL'=140 +'MACRO'=141 +'MAP'=142 +'MATCHED'=143 +'MERGE'=144 +'MSCK'=145 +'NAMESPACE'=146 +'NAMESPACES'=147 +'NATURAL'=148 +'NO'=149 +'NULL'=151 +'NULLS'=152 +'OF'=153 +'ON'=154 +'ONLY'=155 +'OPTION'=156 +'OPTIONS'=157 +'OR'=158 +'ORDER'=159 +'OUT'=160 +'OUTER'=161 +'OUTPUTFORMAT'=162 +'OVER'=163 +'OVERLAPS'=164 +'OVERLAY'=165 +'OVERWRITE'=166 +'PARTITION'=167 +'PARTITIONED'=168 +'PARTITIONS'=169 +'PERCENT'=170 +'PIVOT'=171 +'PLACING'=172 +'POSITION'=173 +'PRECEDING'=174 +'PRIMARY'=175 +'PRINCIPALS'=176 +'PROPERTIES'=177 +'PURGE'=178 +'QUERY'=179 +'RANGE'=180 +'RECORDREADER'=181 +'RECORDWRITER'=182 +'RECOVER'=183 +'REDUCE'=184 +'REFERENCES'=185 +'REFRESH'=186 +'RENAME'=187 +'REPAIR'=188 +'REPLACE'=189 +'RESET'=190 +'RESTRICT'=191 +'REVOKE'=192 +'RIGHT'=193 +'ROLE'=195 +'ROLES'=196 +'ROLLBACK'=197 +'ROLLUP'=198 +'ROW'=199 +'ROWS'=200 +'SCHEMA'=201 +'SELECT'=202 +'SEMI'=203 +'SEPARATED'=204 +'SERDE'=205 +'SERDEPROPERTIES'=206 +'SESSION_USER'=207 +'SET'=208 +'MINUS'=209 +'SETS'=210 +'SHOW'=211 +'SKEWED'=212 +'SOME'=213 +'SORT'=214 +'SORTED'=215 +'START'=216 +'STATISTICS'=217 +'STORED'=218 +'STRATIFY'=219 +'STRUCT'=220 +'SUBSTR'=221 +'SUBSTRING'=222 +'TABLE'=223 +'TABLES'=224 +'TABLESAMPLE'=225 +'TBLPROPERTIES'=226 +'TERMINATED'=228 +'THEN'=229 +'TIME'=230 +'TO'=231 +'TOUCH'=232 +'TRAILING'=233 +'TRANSACTION'=234 +'TRANSACTIONS'=235 +'TRANSFORM'=236 +'TRIM'=237 +'TRUE'=238 +'TRUNCATE'=239 +'TYPE'=240 +'UNARCHIVE'=241 +'UNBOUNDED'=242 +'UNCACHE'=243 +'UNION'=244 +'UNIQUE'=245 +'UNKNOWN'=246 +'UNLOCK'=247 +'UNSET'=248 +'UPDATE'=249 +'USE'=250 +'USER'=251 +'USING'=252 +'VALUES'=253 +'VIEW'=254 +'VIEWS'=255 +'WHEN'=256 +'WHERE'=257 +'WINDOW'=258 +'WITH'=259 +'ZONE'=260 +'<=>'=262 +'<>'=263 +'!='=264 +'<'=265 +'>'=267 +'+'=269 +'-'=270 +'*'=271 +'/'=272 +'%'=273 +'~'=274 +'&'=275 +'|'=276 +'||'=277 +'^'=278 diff --git a/src/lib/spark/SqlBaseLexer.interp b/src/lib/spark/SqlBaseLexer.interp new file mode 100644 index 0000000..da43745 --- /dev/null +++ b/src/lib/spark/SqlBaseLexer.interp @@ -0,0 +1,903 @@ +token literal names: +null +';' +'(' +')' +',' +'.' +'/*+' +'*/' +'->' +'[' +']' +':' +'ADD' +'AFTER' +'ALL' +'ALTER' +'ANALYZE' +'AND' +'ANTI' +'ANY' +'ARCHIVE' +'ARRAY' +'AS' +'ASC' +'AT' +'AUTHORIZATION' +'BETWEEN' +'BOTH' +'BUCKET' +'BUCKETS' +'BY' +'CACHE' +'CASCADE' +'CASE' +'CAST' +'CHANGE' +'CHECK' +'CLEAR' +'CLUSTER' +'CLUSTERED' +'CODEGEN' +'COLLATE' +'COLLECTION' +'COLUMN' +'COLUMNS' +'COMMENT' +'COMMIT' +'COMPACT' +'COMPACTIONS' +'COMPUTE' +'CONCATENATE' +'CONSTRAINT' +'COST' +'CREATE' +'CROSS' +'CUBE' +'CURRENT' +'CURRENT_DATE' +'CURRENT_TIME' +'CURRENT_TIMESTAMP' +'CURRENT_USER' +'DATA' +'DATABASE' +null +'DBPROPERTIES' +'DEFINED' +'DELETE' +'DELIMITED' +'DESC' +'DESCRIBE' +'DFS' +'DIRECTORIES' +'DIRECTORY' +'DISTINCT' +'DISTRIBUTE' +'DIV' +'DROP' +'ELSE' +'END' +'ESCAPE' +'ESCAPED' +'EXCEPT' +'EXCHANGE' +'EXISTS' +'EXPLAIN' +'EXPORT' +'EXTENDED' +'EXTERNAL' +'EXTRACT' +'FALSE' +'FETCH' +'FIELDS' +'FILTER' +'FILEFORMAT' +'FIRST' +'FOLLOWING' +'FOR' +'FOREIGN' +'FORMAT' +'FORMATTED' +'FROM' +'FULL' +'FUNCTION' +'FUNCTIONS' +'GLOBAL' +'GRANT' +'GROUP' +'GROUPING' +'HAVING' +'IF' +'IGNORE' +'IMPORT' +'IN' +'INDEX' +'INDEXES' +'INNER' +'INPATH' +'INPUTFORMAT' +'INSERT' +'INTERSECT' +'INTERVAL' +'INTO' +'IS' +'ITEMS' +'JOIN' +'KEYS' +'LAST' +'LATERAL' +'LAZY' +'LEADING' +'LEFT' +'LIKE' +'LIMIT' +'LINES' +'LIST' +'LOAD' +'LOCAL' +'LOCATION' +'LOCK' +'LOCKS' +'LOGICAL' +'MACRO' +'MAP' +'MATCHED' +'MERGE' +'MSCK' +'NAMESPACE' +'NAMESPACES' +'NATURAL' +'NO' +null +'NULL' +'NULLS' +'OF' +'ON' +'ONLY' +'OPTION' +'OPTIONS' +'OR' +'ORDER' +'OUT' +'OUTER' +'OUTPUTFORMAT' +'OVER' +'OVERLAPS' +'OVERLAY' +'OVERWRITE' +'PARTITION' +'PARTITIONED' +'PARTITIONS' +'PERCENT' +'PIVOT' +'PLACING' +'POSITION' +'PRECEDING' +'PRIMARY' +'PRINCIPALS' +'PROPERTIES' +'PURGE' +'QUERY' +'RANGE' +'RECORDREADER' +'RECORDWRITER' +'RECOVER' +'REDUCE' +'REFERENCES' +'REFRESH' +'RENAME' +'REPAIR' +'REPLACE' +'RESET' +'RESTRICT' +'REVOKE' +'RIGHT' +null +'ROLE' +'ROLES' +'ROLLBACK' +'ROLLUP' +'ROW' +'ROWS' +'SCHEMA' +'SELECT' +'SEMI' +'SEPARATED' +'SERDE' +'SERDEPROPERTIES' +'SESSION_USER' +'SET' +'MINUS' +'SETS' +'SHOW' +'SKEWED' +'SOME' +'SORT' +'SORTED' +'START' +'STATISTICS' +'STORED' +'STRATIFY' +'STRUCT' +'SUBSTR' +'SUBSTRING' +'TABLE' +'TABLES' +'TABLESAMPLE' +'TBLPROPERTIES' +null +'TERMINATED' +'THEN' +'TIME' +'TO' +'TOUCH' +'TRAILING' +'TRANSACTION' +'TRANSACTIONS' +'TRANSFORM' +'TRIM' +'TRUE' +'TRUNCATE' +'TYPE' +'UNARCHIVE' +'UNBOUNDED' +'UNCACHE' +'UNION' +'UNIQUE' +'UNKNOWN' +'UNLOCK' +'UNSET' +'UPDATE' +'USE' +'USER' +'USING' +'VALUES' +'VIEW' +'VIEWS' +'WHEN' +'WHERE' +'WINDOW' +'WITH' +'ZONE' +null +'<=>' +'<>' +'!=' +'<' +null +'>' +null +'+' +'-' +'*' +'/' +'%' +'~' +'&' +'|' +'||' +'^' +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null + +token symbolic names: +null +null +null +null +null +null +null +null +null +null +null +null +ADD +AFTER +ALL +ALTER +ANALYZE +AND +ANTI +ANY +ARCHIVE +ARRAY +AS +ASC +AT +AUTHORIZATION +BETWEEN +BOTH +BUCKET +BUCKETS +BY +CACHE +CASCADE +CASE +CAST +CHANGE +CHECK +CLEAR +CLUSTER +CLUSTERED +CODEGEN +COLLATE +COLLECTION +COLUMN +COLUMNS +COMMENT +COMMIT +COMPACT +COMPACTIONS +COMPUTE +CONCATENATE +CONSTRAINT +COST +CREATE +CROSS +CUBE +CURRENT +CURRENT_DATE +CURRENT_TIME +CURRENT_TIMESTAMP +CURRENT_USER +DATA +DATABASE +DATABASES +DBPROPERTIES +DEFINED +DELETE +DELIMITED +DESC +DESCRIBE +DFS +DIRECTORIES +DIRECTORY +DISTINCT +DISTRIBUTE +DIV +DROP +ELSE +END +ESCAPE +ESCAPED +EXCEPT +EXCHANGE +EXISTS +EXPLAIN +EXPORT +EXTENDED +EXTERNAL +EXTRACT +FALSE +FETCH +FIELDS +FILTER +FILEFORMAT +FIRST +FOLLOWING +FOR +FOREIGN +FORMAT +FORMATTED +FROM +FULL +FUNCTION +FUNCTIONS +GLOBAL +GRANT +GROUP +GROUPING +HAVING +IF +IGNORE +IMPORT +IN +INDEX +INDEXES +INNER +INPATH +INPUTFORMAT +INSERT +INTERSECT +INTERVAL +INTO +IS +ITEMS +JOIN +KEYS +LAST +LATERAL +LAZY +LEADING +LEFT +LIKE +LIMIT +LINES +LIST +LOAD +LOCAL +LOCATION +LOCK +LOCKS +LOGICAL +MACRO +MAP +MATCHED +MERGE +MSCK +NAMESPACE +NAMESPACES +NATURAL +NO +NOT +NULL +NULLS +OF +ON +ONLY +OPTION +OPTIONS +OR +ORDER +OUT +OUTER +OUTPUTFORMAT +OVER +OVERLAPS +OVERLAY +OVERWRITE +PARTITION +PARTITIONED +PARTITIONS +PERCENTLIT +PIVOT +PLACING +POSITION +PRECEDING +PRIMARY +PRINCIPALS +PROPERTIES +PURGE +QUERY +RANGE +RECORDREADER +RECORDWRITER +RECOVER +REDUCE +REFERENCES +REFRESH +RENAME +REPAIR +REPLACE +RESET +RESTRICT +REVOKE +RIGHT +RLIKE +ROLE +ROLES +ROLLBACK +ROLLUP +ROW +ROWS +SCHEMA +SELECT +SEMI +SEPARATED +SERDE +SERDEPROPERTIES +SESSION_USER +SET +SETMINUS +SETS +SHOW +SKEWED +SOME +SORT +SORTED +START +STATISTICS +STORED +STRATIFY +STRUCT +SUBSTR +SUBSTRING +TABLE +TABLES +TABLESAMPLE +TBLPROPERTIES +TEMPORARY +TERMINATED +THEN +TIME +TO +TOUCH +TRAILING +TRANSACTION +TRANSACTIONS +TRANSFORM +TRIM +TRUE +TRUNCATE +TYPE +UNARCHIVE +UNBOUNDED +UNCACHE +UNION +UNIQUE +UNKNOWN +UNLOCK +UNSET +UPDATE +USE +USER +USING +VALUES +VIEW +VIEWS +WHEN +WHERE +WINDOW +WITH +ZONE +EQ +NSEQ +NEQ +NEQJ +LT +LTE +GT +GTE +PLUS +MINUS +ASTERISK +SLASH +PERCENT +TILDE +AMPERSAND +PIPE +CONCAT_PIPE +HAT +STRING +BIGINT_LITERAL +SMALLINT_LITERAL +TINYINT_LITERAL +INTEGER_VALUE +EXPONENT_VALUE +DECIMAL_VALUE +FLOAT_LITERAL +DOUBLE_LITERAL +BIGDECIMAL_LITERAL +IDENTIFIER +BACKQUOTED_IDENTIFIER +SIMPLE_COMMENT +BRACKETED_COMMENT +WS +UNRECOGNIZED + +rule names: +T__0 +T__1 +T__2 +T__3 +T__4 +T__5 +T__6 +T__7 +T__8 +T__9 +T__10 +ADD +AFTER +ALL +ALTER +ANALYZE +AND +ANTI +ANY +ARCHIVE +ARRAY +AS +ASC +AT +AUTHORIZATION +BETWEEN +BOTH +BUCKET +BUCKETS +BY +CACHE +CASCADE +CASE +CAST +CHANGE +CHECK +CLEAR +CLUSTER +CLUSTERED +CODEGEN +COLLATE +COLLECTION +COLUMN +COLUMNS +COMMENT +COMMIT +COMPACT +COMPACTIONS +COMPUTE +CONCATENATE +CONSTRAINT +COST +CREATE +CROSS +CUBE +CURRENT +CURRENT_DATE +CURRENT_TIME +CURRENT_TIMESTAMP +CURRENT_USER +DATA +DATABASE +DATABASES +DBPROPERTIES +DEFINED +DELETE +DELIMITED +DESC +DESCRIBE +DFS +DIRECTORIES +DIRECTORY +DISTINCT +DISTRIBUTE +DIV +DROP +ELSE +END +ESCAPE +ESCAPED +EXCEPT +EXCHANGE +EXISTS +EXPLAIN +EXPORT +EXTENDED +EXTERNAL +EXTRACT +FALSE +FETCH +FIELDS +FILTER +FILEFORMAT +FIRST +FOLLOWING +FOR +FOREIGN +FORMAT +FORMATTED +FROM +FULL +FUNCTION +FUNCTIONS +GLOBAL +GRANT +GROUP +GROUPING +HAVING +IF +IGNORE +IMPORT +IN +INDEX +INDEXES +INNER +INPATH +INPUTFORMAT +INSERT +INTERSECT +INTERVAL +INTO +IS +ITEMS +JOIN +KEYS +LAST +LATERAL +LAZY +LEADING +LEFT +LIKE +LIMIT +LINES +LIST +LOAD +LOCAL +LOCATION +LOCK +LOCKS +LOGICAL +MACRO +MAP +MATCHED +MERGE +MSCK +NAMESPACE +NAMESPACES +NATURAL +NO +NOT +NULL +NULLS +OF +ON +ONLY +OPTION +OPTIONS +OR +ORDER +OUT +OUTER +OUTPUTFORMAT +OVER +OVERLAPS +OVERLAY +OVERWRITE +PARTITION +PARTITIONED +PARTITIONS +PERCENTLIT +PIVOT +PLACING +POSITION +PRECEDING +PRIMARY +PRINCIPALS +PROPERTIES +PURGE +QUERY +RANGE +RECORDREADER +RECORDWRITER +RECOVER +REDUCE +REFERENCES +REFRESH +RENAME +REPAIR +REPLACE +RESET +RESTRICT +REVOKE +RIGHT +RLIKE +ROLE +ROLES +ROLLBACK +ROLLUP +ROW +ROWS +SCHEMA +SELECT +SEMI +SEPARATED +SERDE +SERDEPROPERTIES +SESSION_USER +SET +SETMINUS +SETS +SHOW +SKEWED +SOME +SORT +SORTED +START +STATISTICS +STORED +STRATIFY +STRUCT +SUBSTR +SUBSTRING +TABLE +TABLES +TABLESAMPLE +TBLPROPERTIES +TEMPORARY +TERMINATED +THEN +TIME +TO +TOUCH +TRAILING +TRANSACTION +TRANSACTIONS +TRANSFORM +TRIM +TRUE +TRUNCATE +TYPE +UNARCHIVE +UNBOUNDED +UNCACHE +UNION +UNIQUE +UNKNOWN +UNLOCK +UNSET +UPDATE +USE +USER +USING +VALUES +VIEW +VIEWS +WHEN +WHERE +WINDOW +WITH +ZONE +EQ +NSEQ +NEQ +NEQJ +LT +LTE +GT +GTE +PLUS +MINUS +ASTERISK +SLASH +PERCENT +TILDE +AMPERSAND +PIPE +CONCAT_PIPE +HAT +STRING +BIGINT_LITERAL +SMALLINT_LITERAL +TINYINT_LITERAL +INTEGER_VALUE +EXPONENT_VALUE +DECIMAL_VALUE +FLOAT_LITERAL +DOUBLE_LITERAL +BIGDECIMAL_LITERAL +IDENTIFIER +BACKQUOTED_IDENTIFIER +DECIMAL_DIGITS +EXPONENT +DIGIT +LETTER +SIMPLE_COMMENT +BRACKETED_COMMENT +WS +UNRECOGNIZED + +channel names: +DEFAULT_TOKEN_CHANNEL +HIDDEN + +mode names: +DEFAULT_MODE + +atn: +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 296, 2733, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 4, 274, 9, 274, 4, 275, 9, 275, 4, 276, 9, 276, 4, 277, 9, 277, 4, 278, 9, 278, 4, 279, 9, 279, 4, 280, 9, 280, 4, 281, 9, 281, 4, 282, 9, 282, 4, 283, 9, 283, 4, 284, 9, 284, 4, 285, 9, 285, 4, 286, 9, 286, 4, 287, 9, 287, 4, 288, 9, 288, 4, 289, 9, 289, 4, 290, 9, 290, 4, 291, 9, 291, 4, 292, 9, 292, 4, 293, 9, 293, 4, 294, 9, 294, 4, 295, 9, 295, 4, 296, 9, 296, 4, 297, 9, 297, 4, 298, 9, 298, 4, 299, 9, 299, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 5, 64, 1023, 10, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 113, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 5, 151, 1632, 10, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 5, 195, 1978, 10, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 5, 228, 2233, 10, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 259, 3, 259, 3, 259, 3, 259, 3, 259, 3, 259, 3, 259, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 261, 3, 261, 3, 261, 3, 261, 3, 261, 3, 262, 3, 262, 3, 262, 5, 262, 2466, 10, 262, 3, 263, 3, 263, 3, 263, 3, 263, 3, 264, 3, 264, 3, 264, 3, 265, 3, 265, 3, 265, 3, 266, 3, 266, 3, 267, 3, 267, 3, 267, 3, 267, 5, 267, 2484, 10, 267, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 5, 269, 2492, 10, 269, 3, 270, 3, 270, 3, 271, 3, 271, 3, 272, 3, 272, 3, 273, 3, 273, 3, 274, 3, 274, 3, 275, 3, 275, 3, 276, 3, 276, 3, 277, 3, 277, 3, 278, 3, 278, 3, 278, 3, 279, 3, 279, 3, 280, 3, 280, 3, 280, 3, 280, 7, 280, 2519, 10, 280, 12, 280, 14, 280, 2522, 11, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 7, 280, 2529, 10, 280, 12, 280, 14, 280, 2532, 11, 280, 3, 280, 5, 280, 2535, 10, 280, 3, 281, 6, 281, 2538, 10, 281, 13, 281, 14, 281, 2539, 3, 281, 3, 281, 3, 282, 6, 282, 2545, 10, 282, 13, 282, 14, 282, 2546, 3, 282, 3, 282, 3, 283, 6, 283, 2552, 10, 283, 13, 283, 14, 283, 2553, 3, 283, 3, 283, 3, 284, 6, 284, 2559, 10, 284, 13, 284, 14, 284, 2560, 3, 285, 6, 285, 2564, 10, 285, 13, 285, 14, 285, 2565, 3, 285, 3, 285, 3, 285, 3, 285, 3, 285, 3, 285, 5, 285, 2574, 10, 285, 3, 286, 3, 286, 3, 286, 3, 287, 6, 287, 2580, 10, 287, 13, 287, 14, 287, 2581, 3, 287, 5, 287, 2585, 10, 287, 3, 287, 3, 287, 3, 287, 3, 287, 5, 287, 2591, 10, 287, 3, 287, 3, 287, 3, 287, 5, 287, 2596, 10, 287, 3, 288, 6, 288, 2599, 10, 288, 13, 288, 14, 288, 2600, 3, 288, 5, 288, 2604, 10, 288, 3, 288, 3, 288, 3, 288, 3, 288, 5, 288, 2610, 10, 288, 3, 288, 3, 288, 3, 288, 5, 288, 2615, 10, 288, 3, 289, 6, 289, 2618, 10, 289, 13, 289, 14, 289, 2619, 3, 289, 5, 289, 2623, 10, 289, 3, 289, 3, 289, 3, 289, 3, 289, 3, 289, 5, 289, 2630, 10, 289, 3, 289, 3, 289, 3, 289, 3, 289, 3, 289, 5, 289, 2637, 10, 289, 3, 290, 3, 290, 3, 290, 6, 290, 2642, 10, 290, 13, 290, 14, 290, 2643, 3, 291, 3, 291, 3, 291, 3, 291, 7, 291, 2650, 10, 291, 12, 291, 14, 291, 2653, 11, 291, 3, 291, 3, 291, 3, 292, 6, 292, 2658, 10, 292, 13, 292, 14, 292, 2659, 3, 292, 3, 292, 7, 292, 2664, 10, 292, 12, 292, 14, 292, 2667, 11, 292, 3, 292, 3, 292, 6, 292, 2671, 10, 292, 13, 292, 14, 292, 2672, 5, 292, 2675, 10, 292, 3, 293, 3, 293, 5, 293, 2679, 10, 293, 3, 293, 6, 293, 2682, 10, 293, 13, 293, 14, 293, 2683, 3, 294, 3, 294, 3, 295, 3, 295, 3, 296, 3, 296, 3, 296, 3, 296, 3, 296, 3, 296, 7, 296, 2696, 10, 296, 12, 296, 14, 296, 2699, 11, 296, 3, 296, 5, 296, 2702, 10, 296, 3, 296, 5, 296, 2705, 10, 296, 3, 296, 3, 296, 3, 297, 3, 297, 3, 297, 3, 297, 3, 297, 3, 297, 7, 297, 2715, 10, 297, 12, 297, 14, 297, 2718, 11, 297, 3, 297, 3, 297, 3, 297, 3, 297, 3, 297, 3, 298, 6, 298, 2726, 10, 298, 13, 298, 14, 298, 2727, 3, 298, 3, 298, 3, 299, 3, 299, 3, 2716, 2, 300, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 122, 243, 123, 245, 124, 247, 125, 249, 126, 251, 127, 253, 128, 255, 129, 257, 130, 259, 131, 261, 132, 263, 133, 265, 134, 267, 135, 269, 136, 271, 137, 273, 138, 275, 139, 277, 140, 279, 141, 281, 142, 283, 143, 285, 144, 287, 145, 289, 146, 291, 147, 293, 148, 295, 149, 297, 150, 299, 151, 301, 152, 303, 153, 305, 154, 307, 155, 309, 156, 311, 157, 313, 158, 315, 159, 317, 160, 319, 161, 321, 162, 323, 163, 325, 164, 327, 165, 329, 166, 331, 167, 333, 168, 335, 169, 337, 170, 339, 171, 341, 172, 343, 173, 345, 174, 347, 175, 349, 176, 351, 177, 353, 178, 355, 179, 357, 180, 359, 181, 361, 182, 363, 183, 365, 184, 367, 185, 369, 186, 371, 187, 373, 188, 375, 189, 377, 190, 379, 191, 381, 192, 383, 193, 385, 194, 387, 195, 389, 196, 391, 197, 393, 198, 395, 199, 397, 200, 399, 201, 401, 202, 403, 203, 405, 204, 407, 205, 409, 206, 411, 207, 413, 208, 415, 209, 417, 210, 419, 211, 421, 212, 423, 213, 425, 214, 427, 215, 429, 216, 431, 217, 433, 218, 435, 219, 437, 220, 439, 221, 441, 222, 443, 223, 445, 224, 447, 225, 449, 226, 451, 227, 453, 228, 455, 229, 457, 230, 459, 231, 461, 232, 463, 233, 465, 234, 467, 235, 469, 236, 471, 237, 473, 238, 475, 239, 477, 240, 479, 241, 481, 242, 483, 243, 485, 244, 487, 245, 489, 246, 491, 247, 493, 248, 495, 249, 497, 250, 499, 251, 501, 252, 503, 253, 505, 254, 507, 255, 509, 256, 511, 257, 513, 258, 515, 259, 517, 260, 519, 261, 521, 262, 523, 263, 525, 264, 527, 265, 529, 266, 531, 267, 533, 268, 535, 269, 537, 270, 539, 271, 541, 272, 543, 273, 545, 274, 547, 275, 549, 276, 551, 277, 553, 278, 555, 279, 557, 280, 559, 281, 561, 282, 563, 283, 565, 284, 567, 285, 569, 286, 571, 287, 573, 288, 575, 289, 577, 290, 579, 291, 581, 292, 583, 2, 585, 2, 587, 2, 589, 2, 591, 293, 593, 294, 595, 295, 597, 296, 3, 2, 10, 4, 2, 41, 41, 94, 94, 4, 2, 36, 36, 94, 94, 3, 2, 98, 98, 4, 2, 45, 45, 47, 47, 3, 2, 50, 59, 3, 2, 67, 92, 4, 2, 12, 12, 15, 15, 5, 2, 11, 12, 15, 15, 34, 34, 2, 2776, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 531, 3, 2, 2, 2, 2, 533, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 543, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 2, 547, 3, 2, 2, 2, 2, 549, 3, 2, 2, 2, 2, 551, 3, 2, 2, 2, 2, 553, 3, 2, 2, 2, 2, 555, 3, 2, 2, 2, 2, 557, 3, 2, 2, 2, 2, 559, 3, 2, 2, 2, 2, 561, 3, 2, 2, 2, 2, 563, 3, 2, 2, 2, 2, 565, 3, 2, 2, 2, 2, 567, 3, 2, 2, 2, 2, 569, 3, 2, 2, 2, 2, 571, 3, 2, 2, 2, 2, 573, 3, 2, 2, 2, 2, 575, 3, 2, 2, 2, 2, 577, 3, 2, 2, 2, 2, 579, 3, 2, 2, 2, 2, 581, 3, 2, 2, 2, 2, 591, 3, 2, 2, 2, 2, 593, 3, 2, 2, 2, 2, 595, 3, 2, 2, 2, 2, 597, 3, 2, 2, 2, 3, 599, 3, 2, 2, 2, 5, 601, 3, 2, 2, 2, 7, 603, 3, 2, 2, 2, 9, 605, 3, 2, 2, 2, 11, 607, 3, 2, 2, 2, 13, 609, 3, 2, 2, 2, 15, 613, 3, 2, 2, 2, 17, 616, 3, 2, 2, 2, 19, 619, 3, 2, 2, 2, 21, 621, 3, 2, 2, 2, 23, 623, 3, 2, 2, 2, 25, 625, 3, 2, 2, 2, 27, 629, 3, 2, 2, 2, 29, 635, 3, 2, 2, 2, 31, 639, 3, 2, 2, 2, 33, 645, 3, 2, 2, 2, 35, 653, 3, 2, 2, 2, 37, 657, 3, 2, 2, 2, 39, 662, 3, 2, 2, 2, 41, 666, 3, 2, 2, 2, 43, 674, 3, 2, 2, 2, 45, 680, 3, 2, 2, 2, 47, 683, 3, 2, 2, 2, 49, 687, 3, 2, 2, 2, 51, 690, 3, 2, 2, 2, 53, 704, 3, 2, 2, 2, 55, 712, 3, 2, 2, 2, 57, 717, 3, 2, 2, 2, 59, 724, 3, 2, 2, 2, 61, 732, 3, 2, 2, 2, 63, 735, 3, 2, 2, 2, 65, 741, 3, 2, 2, 2, 67, 749, 3, 2, 2, 2, 69, 754, 3, 2, 2, 2, 71, 759, 3, 2, 2, 2, 73, 766, 3, 2, 2, 2, 75, 772, 3, 2, 2, 2, 77, 778, 3, 2, 2, 2, 79, 786, 3, 2, 2, 2, 81, 796, 3, 2, 2, 2, 83, 804, 3, 2, 2, 2, 85, 812, 3, 2, 2, 2, 87, 823, 3, 2, 2, 2, 89, 830, 3, 2, 2, 2, 91, 838, 3, 2, 2, 2, 93, 846, 3, 2, 2, 2, 95, 853, 3, 2, 2, 2, 97, 861, 3, 2, 2, 2, 99, 873, 3, 2, 2, 2, 101, 881, 3, 2, 2, 2, 103, 893, 3, 2, 2, 2, 105, 904, 3, 2, 2, 2, 107, 909, 3, 2, 2, 2, 109, 916, 3, 2, 2, 2, 111, 922, 3, 2, 2, 2, 113, 927, 3, 2, 2, 2, 115, 935, 3, 2, 2, 2, 117, 948, 3, 2, 2, 2, 119, 961, 3, 2, 2, 2, 121, 979, 3, 2, 2, 2, 123, 992, 3, 2, 2, 2, 125, 997, 3, 2, 2, 2, 127, 1022, 3, 2, 2, 2, 129, 1024, 3, 2, 2, 2, 131, 1037, 3, 2, 2, 2, 133, 1045, 3, 2, 2, 2, 135, 1052, 3, 2, 2, 2, 137, 1062, 3, 2, 2, 2, 139, 1067, 3, 2, 2, 2, 141, 1076, 3, 2, 2, 2, 143, 1080, 3, 2, 2, 2, 145, 1092, 3, 2, 2, 2, 147, 1102, 3, 2, 2, 2, 149, 1111, 3, 2, 2, 2, 151, 1122, 3, 2, 2, 2, 153, 1126, 3, 2, 2, 2, 155, 1131, 3, 2, 2, 2, 157, 1136, 3, 2, 2, 2, 159, 1140, 3, 2, 2, 2, 161, 1147, 3, 2, 2, 2, 163, 1155, 3, 2, 2, 2, 165, 1162, 3, 2, 2, 2, 167, 1171, 3, 2, 2, 2, 169, 1178, 3, 2, 2, 2, 171, 1186, 3, 2, 2, 2, 173, 1193, 3, 2, 2, 2, 175, 1202, 3, 2, 2, 2, 177, 1211, 3, 2, 2, 2, 179, 1219, 3, 2, 2, 2, 181, 1225, 3, 2, 2, 2, 183, 1231, 3, 2, 2, 2, 185, 1238, 3, 2, 2, 2, 187, 1245, 3, 2, 2, 2, 189, 1256, 3, 2, 2, 2, 191, 1262, 3, 2, 2, 2, 193, 1272, 3, 2, 2, 2, 195, 1276, 3, 2, 2, 2, 197, 1284, 3, 2, 2, 2, 199, 1291, 3, 2, 2, 2, 201, 1301, 3, 2, 2, 2, 203, 1306, 3, 2, 2, 2, 205, 1311, 3, 2, 2, 2, 207, 1320, 3, 2, 2, 2, 209, 1330, 3, 2, 2, 2, 211, 1337, 3, 2, 2, 2, 213, 1343, 3, 2, 2, 2, 215, 1349, 3, 2, 2, 2, 217, 1358, 3, 2, 2, 2, 219, 1365, 3, 2, 2, 2, 221, 1368, 3, 2, 2, 2, 223, 1375, 3, 2, 2, 2, 225, 1382, 3, 2, 2, 2, 227, 1385, 3, 2, 2, 2, 229, 1391, 3, 2, 2, 2, 231, 1399, 3, 2, 2, 2, 233, 1405, 3, 2, 2, 2, 235, 1412, 3, 2, 2, 2, 237, 1424, 3, 2, 2, 2, 239, 1431, 3, 2, 2, 2, 241, 1441, 3, 2, 2, 2, 243, 1450, 3, 2, 2, 2, 245, 1455, 3, 2, 2, 2, 247, 1458, 3, 2, 2, 2, 249, 1464, 3, 2, 2, 2, 251, 1469, 3, 2, 2, 2, 253, 1474, 3, 2, 2, 2, 255, 1479, 3, 2, 2, 2, 257, 1487, 3, 2, 2, 2, 259, 1492, 3, 2, 2, 2, 261, 1500, 3, 2, 2, 2, 263, 1505, 3, 2, 2, 2, 265, 1510, 3, 2, 2, 2, 267, 1516, 3, 2, 2, 2, 269, 1522, 3, 2, 2, 2, 271, 1527, 3, 2, 2, 2, 273, 1532, 3, 2, 2, 2, 275, 1538, 3, 2, 2, 2, 277, 1547, 3, 2, 2, 2, 279, 1552, 3, 2, 2, 2, 281, 1558, 3, 2, 2, 2, 283, 1566, 3, 2, 2, 2, 285, 1572, 3, 2, 2, 2, 287, 1576, 3, 2, 2, 2, 289, 1584, 3, 2, 2, 2, 291, 1590, 3, 2, 2, 2, 293, 1595, 3, 2, 2, 2, 295, 1605, 3, 2, 2, 2, 297, 1616, 3, 2, 2, 2, 299, 1624, 3, 2, 2, 2, 301, 1631, 3, 2, 2, 2, 303, 1633, 3, 2, 2, 2, 305, 1638, 3, 2, 2, 2, 307, 1644, 3, 2, 2, 2, 309, 1647, 3, 2, 2, 2, 311, 1650, 3, 2, 2, 2, 313, 1655, 3, 2, 2, 2, 315, 1662, 3, 2, 2, 2, 317, 1670, 3, 2, 2, 2, 319, 1673, 3, 2, 2, 2, 321, 1679, 3, 2, 2, 2, 323, 1683, 3, 2, 2, 2, 325, 1689, 3, 2, 2, 2, 327, 1702, 3, 2, 2, 2, 329, 1707, 3, 2, 2, 2, 331, 1716, 3, 2, 2, 2, 333, 1724, 3, 2, 2, 2, 335, 1734, 3, 2, 2, 2, 337, 1744, 3, 2, 2, 2, 339, 1756, 3, 2, 2, 2, 341, 1767, 3, 2, 2, 2, 343, 1775, 3, 2, 2, 2, 345, 1781, 3, 2, 2, 2, 347, 1789, 3, 2, 2, 2, 349, 1798, 3, 2, 2, 2, 351, 1808, 3, 2, 2, 2, 353, 1816, 3, 2, 2, 2, 355, 1827, 3, 2, 2, 2, 357, 1838, 3, 2, 2, 2, 359, 1844, 3, 2, 2, 2, 361, 1850, 3, 2, 2, 2, 363, 1856, 3, 2, 2, 2, 365, 1869, 3, 2, 2, 2, 367, 1882, 3, 2, 2, 2, 369, 1890, 3, 2, 2, 2, 371, 1897, 3, 2, 2, 2, 373, 1908, 3, 2, 2, 2, 375, 1916, 3, 2, 2, 2, 377, 1923, 3, 2, 2, 2, 379, 1930, 3, 2, 2, 2, 381, 1938, 3, 2, 2, 2, 383, 1944, 3, 2, 2, 2, 385, 1953, 3, 2, 2, 2, 387, 1960, 3, 2, 2, 2, 389, 1977, 3, 2, 2, 2, 391, 1979, 3, 2, 2, 2, 393, 1984, 3, 2, 2, 2, 395, 1990, 3, 2, 2, 2, 397, 1999, 3, 2, 2, 2, 399, 2006, 3, 2, 2, 2, 401, 2010, 3, 2, 2, 2, 403, 2015, 3, 2, 2, 2, 405, 2022, 3, 2, 2, 2, 407, 2029, 3, 2, 2, 2, 409, 2034, 3, 2, 2, 2, 411, 2044, 3, 2, 2, 2, 413, 2050, 3, 2, 2, 2, 415, 2066, 3, 2, 2, 2, 417, 2079, 3, 2, 2, 2, 419, 2083, 3, 2, 2, 2, 421, 2089, 3, 2, 2, 2, 423, 2094, 3, 2, 2, 2, 425, 2099, 3, 2, 2, 2, 427, 2106, 3, 2, 2, 2, 429, 2111, 3, 2, 2, 2, 431, 2116, 3, 2, 2, 2, 433, 2123, 3, 2, 2, 2, 435, 2129, 3, 2, 2, 2, 437, 2140, 3, 2, 2, 2, 439, 2147, 3, 2, 2, 2, 441, 2156, 3, 2, 2, 2, 443, 2163, 3, 2, 2, 2, 445, 2170, 3, 2, 2, 2, 447, 2180, 3, 2, 2, 2, 449, 2186, 3, 2, 2, 2, 451, 2193, 3, 2, 2, 2, 453, 2205, 3, 2, 2, 2, 455, 2232, 3, 2, 2, 2, 457, 2234, 3, 2, 2, 2, 459, 2245, 3, 2, 2, 2, 461, 2250, 3, 2, 2, 2, 463, 2255, 3, 2, 2, 2, 465, 2258, 3, 2, 2, 2, 467, 2264, 3, 2, 2, 2, 469, 2273, 3, 2, 2, 2, 471, 2285, 3, 2, 2, 2, 473, 2298, 3, 2, 2, 2, 475, 2308, 3, 2, 2, 2, 477, 2313, 3, 2, 2, 2, 479, 2318, 3, 2, 2, 2, 481, 2327, 3, 2, 2, 2, 483, 2332, 3, 2, 2, 2, 485, 2342, 3, 2, 2, 2, 487, 2352, 3, 2, 2, 2, 489, 2360, 3, 2, 2, 2, 491, 2366, 3, 2, 2, 2, 493, 2373, 3, 2, 2, 2, 495, 2381, 3, 2, 2, 2, 497, 2388, 3, 2, 2, 2, 499, 2394, 3, 2, 2, 2, 501, 2401, 3, 2, 2, 2, 503, 2405, 3, 2, 2, 2, 505, 2410, 3, 2, 2, 2, 507, 2416, 3, 2, 2, 2, 509, 2423, 3, 2, 2, 2, 511, 2428, 3, 2, 2, 2, 513, 2434, 3, 2, 2, 2, 515, 2439, 3, 2, 2, 2, 517, 2445, 3, 2, 2, 2, 519, 2452, 3, 2, 2, 2, 521, 2457, 3, 2, 2, 2, 523, 2465, 3, 2, 2, 2, 525, 2467, 3, 2, 2, 2, 527, 2471, 3, 2, 2, 2, 529, 2474, 3, 2, 2, 2, 531, 2477, 3, 2, 2, 2, 533, 2483, 3, 2, 2, 2, 535, 2485, 3, 2, 2, 2, 537, 2491, 3, 2, 2, 2, 539, 2493, 3, 2, 2, 2, 541, 2495, 3, 2, 2, 2, 543, 2497, 3, 2, 2, 2, 545, 2499, 3, 2, 2, 2, 547, 2501, 3, 2, 2, 2, 549, 2503, 3, 2, 2, 2, 551, 2505, 3, 2, 2, 2, 553, 2507, 3, 2, 2, 2, 555, 2509, 3, 2, 2, 2, 557, 2512, 3, 2, 2, 2, 559, 2534, 3, 2, 2, 2, 561, 2537, 3, 2, 2, 2, 563, 2544, 3, 2, 2, 2, 565, 2551, 3, 2, 2, 2, 567, 2558, 3, 2, 2, 2, 569, 2573, 3, 2, 2, 2, 571, 2575, 3, 2, 2, 2, 573, 2595, 3, 2, 2, 2, 575, 2614, 3, 2, 2, 2, 577, 2636, 3, 2, 2, 2, 579, 2641, 3, 2, 2, 2, 581, 2645, 3, 2, 2, 2, 583, 2674, 3, 2, 2, 2, 585, 2676, 3, 2, 2, 2, 587, 2685, 3, 2, 2, 2, 589, 2687, 3, 2, 2, 2, 591, 2689, 3, 2, 2, 2, 593, 2708, 3, 2, 2, 2, 595, 2725, 3, 2, 2, 2, 597, 2731, 3, 2, 2, 2, 599, 600, 7, 61, 2, 2, 600, 4, 3, 2, 2, 2, 601, 602, 7, 42, 2, 2, 602, 6, 3, 2, 2, 2, 603, 604, 7, 43, 2, 2, 604, 8, 3, 2, 2, 2, 605, 606, 7, 46, 2, 2, 606, 10, 3, 2, 2, 2, 607, 608, 7, 48, 2, 2, 608, 12, 3, 2, 2, 2, 609, 610, 7, 49, 2, 2, 610, 611, 7, 44, 2, 2, 611, 612, 7, 45, 2, 2, 612, 14, 3, 2, 2, 2, 613, 614, 7, 44, 2, 2, 614, 615, 7, 49, 2, 2, 615, 16, 3, 2, 2, 2, 616, 617, 7, 47, 2, 2, 617, 618, 7, 64, 2, 2, 618, 18, 3, 2, 2, 2, 619, 620, 7, 93, 2, 2, 620, 20, 3, 2, 2, 2, 621, 622, 7, 95, 2, 2, 622, 22, 3, 2, 2, 2, 623, 624, 7, 60, 2, 2, 624, 24, 3, 2, 2, 2, 625, 626, 7, 67, 2, 2, 626, 627, 7, 70, 2, 2, 627, 628, 7, 70, 2, 2, 628, 26, 3, 2, 2, 2, 629, 630, 7, 67, 2, 2, 630, 631, 7, 72, 2, 2, 631, 632, 7, 86, 2, 2, 632, 633, 7, 71, 2, 2, 633, 634, 7, 84, 2, 2, 634, 28, 3, 2, 2, 2, 635, 636, 7, 67, 2, 2, 636, 637, 7, 78, 2, 2, 637, 638, 7, 78, 2, 2, 638, 30, 3, 2, 2, 2, 639, 640, 7, 67, 2, 2, 640, 641, 7, 78, 2, 2, 641, 642, 7, 86, 2, 2, 642, 643, 7, 71, 2, 2, 643, 644, 7, 84, 2, 2, 644, 32, 3, 2, 2, 2, 645, 646, 7, 67, 2, 2, 646, 647, 7, 80, 2, 2, 647, 648, 7, 67, 2, 2, 648, 649, 7, 78, 2, 2, 649, 650, 7, 91, 2, 2, 650, 651, 7, 92, 2, 2, 651, 652, 7, 71, 2, 2, 652, 34, 3, 2, 2, 2, 653, 654, 7, 67, 2, 2, 654, 655, 7, 80, 2, 2, 655, 656, 7, 70, 2, 2, 656, 36, 3, 2, 2, 2, 657, 658, 7, 67, 2, 2, 658, 659, 7, 80, 2, 2, 659, 660, 7, 86, 2, 2, 660, 661, 7, 75, 2, 2, 661, 38, 3, 2, 2, 2, 662, 663, 7, 67, 2, 2, 663, 664, 7, 80, 2, 2, 664, 665, 7, 91, 2, 2, 665, 40, 3, 2, 2, 2, 666, 667, 7, 67, 2, 2, 667, 668, 7, 84, 2, 2, 668, 669, 7, 69, 2, 2, 669, 670, 7, 74, 2, 2, 670, 671, 7, 75, 2, 2, 671, 672, 7, 88, 2, 2, 672, 673, 7, 71, 2, 2, 673, 42, 3, 2, 2, 2, 674, 675, 7, 67, 2, 2, 675, 676, 7, 84, 2, 2, 676, 677, 7, 84, 2, 2, 677, 678, 7, 67, 2, 2, 678, 679, 7, 91, 2, 2, 679, 44, 3, 2, 2, 2, 680, 681, 7, 67, 2, 2, 681, 682, 7, 85, 2, 2, 682, 46, 3, 2, 2, 2, 683, 684, 7, 67, 2, 2, 684, 685, 7, 85, 2, 2, 685, 686, 7, 69, 2, 2, 686, 48, 3, 2, 2, 2, 687, 688, 7, 67, 2, 2, 688, 689, 7, 86, 2, 2, 689, 50, 3, 2, 2, 2, 690, 691, 7, 67, 2, 2, 691, 692, 7, 87, 2, 2, 692, 693, 7, 86, 2, 2, 693, 694, 7, 74, 2, 2, 694, 695, 7, 81, 2, 2, 695, 696, 7, 84, 2, 2, 696, 697, 7, 75, 2, 2, 697, 698, 7, 92, 2, 2, 698, 699, 7, 67, 2, 2, 699, 700, 7, 86, 2, 2, 700, 701, 7, 75, 2, 2, 701, 702, 7, 81, 2, 2, 702, 703, 7, 80, 2, 2, 703, 52, 3, 2, 2, 2, 704, 705, 7, 68, 2, 2, 705, 706, 7, 71, 2, 2, 706, 707, 7, 86, 2, 2, 707, 708, 7, 89, 2, 2, 708, 709, 7, 71, 2, 2, 709, 710, 7, 71, 2, 2, 710, 711, 7, 80, 2, 2, 711, 54, 3, 2, 2, 2, 712, 713, 7, 68, 2, 2, 713, 714, 7, 81, 2, 2, 714, 715, 7, 86, 2, 2, 715, 716, 7, 74, 2, 2, 716, 56, 3, 2, 2, 2, 717, 718, 7, 68, 2, 2, 718, 719, 7, 87, 2, 2, 719, 720, 7, 69, 2, 2, 720, 721, 7, 77, 2, 2, 721, 722, 7, 71, 2, 2, 722, 723, 7, 86, 2, 2, 723, 58, 3, 2, 2, 2, 724, 725, 7, 68, 2, 2, 725, 726, 7, 87, 2, 2, 726, 727, 7, 69, 2, 2, 727, 728, 7, 77, 2, 2, 728, 729, 7, 71, 2, 2, 729, 730, 7, 86, 2, 2, 730, 731, 7, 85, 2, 2, 731, 60, 3, 2, 2, 2, 732, 733, 7, 68, 2, 2, 733, 734, 7, 91, 2, 2, 734, 62, 3, 2, 2, 2, 735, 736, 7, 69, 2, 2, 736, 737, 7, 67, 2, 2, 737, 738, 7, 69, 2, 2, 738, 739, 7, 74, 2, 2, 739, 740, 7, 71, 2, 2, 740, 64, 3, 2, 2, 2, 741, 742, 7, 69, 2, 2, 742, 743, 7, 67, 2, 2, 743, 744, 7, 85, 2, 2, 744, 745, 7, 69, 2, 2, 745, 746, 7, 67, 2, 2, 746, 747, 7, 70, 2, 2, 747, 748, 7, 71, 2, 2, 748, 66, 3, 2, 2, 2, 749, 750, 7, 69, 2, 2, 750, 751, 7, 67, 2, 2, 751, 752, 7, 85, 2, 2, 752, 753, 7, 71, 2, 2, 753, 68, 3, 2, 2, 2, 754, 755, 7, 69, 2, 2, 755, 756, 7, 67, 2, 2, 756, 757, 7, 85, 2, 2, 757, 758, 7, 86, 2, 2, 758, 70, 3, 2, 2, 2, 759, 760, 7, 69, 2, 2, 760, 761, 7, 74, 2, 2, 761, 762, 7, 67, 2, 2, 762, 763, 7, 80, 2, 2, 763, 764, 7, 73, 2, 2, 764, 765, 7, 71, 2, 2, 765, 72, 3, 2, 2, 2, 766, 767, 7, 69, 2, 2, 767, 768, 7, 74, 2, 2, 768, 769, 7, 71, 2, 2, 769, 770, 7, 69, 2, 2, 770, 771, 7, 77, 2, 2, 771, 74, 3, 2, 2, 2, 772, 773, 7, 69, 2, 2, 773, 774, 7, 78, 2, 2, 774, 775, 7, 71, 2, 2, 775, 776, 7, 67, 2, 2, 776, 777, 7, 84, 2, 2, 777, 76, 3, 2, 2, 2, 778, 779, 7, 69, 2, 2, 779, 780, 7, 78, 2, 2, 780, 781, 7, 87, 2, 2, 781, 782, 7, 85, 2, 2, 782, 783, 7, 86, 2, 2, 783, 784, 7, 71, 2, 2, 784, 785, 7, 84, 2, 2, 785, 78, 3, 2, 2, 2, 786, 787, 7, 69, 2, 2, 787, 788, 7, 78, 2, 2, 788, 789, 7, 87, 2, 2, 789, 790, 7, 85, 2, 2, 790, 791, 7, 86, 2, 2, 791, 792, 7, 71, 2, 2, 792, 793, 7, 84, 2, 2, 793, 794, 7, 71, 2, 2, 794, 795, 7, 70, 2, 2, 795, 80, 3, 2, 2, 2, 796, 797, 7, 69, 2, 2, 797, 798, 7, 81, 2, 2, 798, 799, 7, 70, 2, 2, 799, 800, 7, 71, 2, 2, 800, 801, 7, 73, 2, 2, 801, 802, 7, 71, 2, 2, 802, 803, 7, 80, 2, 2, 803, 82, 3, 2, 2, 2, 804, 805, 7, 69, 2, 2, 805, 806, 7, 81, 2, 2, 806, 807, 7, 78, 2, 2, 807, 808, 7, 78, 2, 2, 808, 809, 7, 67, 2, 2, 809, 810, 7, 86, 2, 2, 810, 811, 7, 71, 2, 2, 811, 84, 3, 2, 2, 2, 812, 813, 7, 69, 2, 2, 813, 814, 7, 81, 2, 2, 814, 815, 7, 78, 2, 2, 815, 816, 7, 78, 2, 2, 816, 817, 7, 71, 2, 2, 817, 818, 7, 69, 2, 2, 818, 819, 7, 86, 2, 2, 819, 820, 7, 75, 2, 2, 820, 821, 7, 81, 2, 2, 821, 822, 7, 80, 2, 2, 822, 86, 3, 2, 2, 2, 823, 824, 7, 69, 2, 2, 824, 825, 7, 81, 2, 2, 825, 826, 7, 78, 2, 2, 826, 827, 7, 87, 2, 2, 827, 828, 7, 79, 2, 2, 828, 829, 7, 80, 2, 2, 829, 88, 3, 2, 2, 2, 830, 831, 7, 69, 2, 2, 831, 832, 7, 81, 2, 2, 832, 833, 7, 78, 2, 2, 833, 834, 7, 87, 2, 2, 834, 835, 7, 79, 2, 2, 835, 836, 7, 80, 2, 2, 836, 837, 7, 85, 2, 2, 837, 90, 3, 2, 2, 2, 838, 839, 7, 69, 2, 2, 839, 840, 7, 81, 2, 2, 840, 841, 7, 79, 2, 2, 841, 842, 7, 79, 2, 2, 842, 843, 7, 71, 2, 2, 843, 844, 7, 80, 2, 2, 844, 845, 7, 86, 2, 2, 845, 92, 3, 2, 2, 2, 846, 847, 7, 69, 2, 2, 847, 848, 7, 81, 2, 2, 848, 849, 7, 79, 2, 2, 849, 850, 7, 79, 2, 2, 850, 851, 7, 75, 2, 2, 851, 852, 7, 86, 2, 2, 852, 94, 3, 2, 2, 2, 853, 854, 7, 69, 2, 2, 854, 855, 7, 81, 2, 2, 855, 856, 7, 79, 2, 2, 856, 857, 7, 82, 2, 2, 857, 858, 7, 67, 2, 2, 858, 859, 7, 69, 2, 2, 859, 860, 7, 86, 2, 2, 860, 96, 3, 2, 2, 2, 861, 862, 7, 69, 2, 2, 862, 863, 7, 81, 2, 2, 863, 864, 7, 79, 2, 2, 864, 865, 7, 82, 2, 2, 865, 866, 7, 67, 2, 2, 866, 867, 7, 69, 2, 2, 867, 868, 7, 86, 2, 2, 868, 869, 7, 75, 2, 2, 869, 870, 7, 81, 2, 2, 870, 871, 7, 80, 2, 2, 871, 872, 7, 85, 2, 2, 872, 98, 3, 2, 2, 2, 873, 874, 7, 69, 2, 2, 874, 875, 7, 81, 2, 2, 875, 876, 7, 79, 2, 2, 876, 877, 7, 82, 2, 2, 877, 878, 7, 87, 2, 2, 878, 879, 7, 86, 2, 2, 879, 880, 7, 71, 2, 2, 880, 100, 3, 2, 2, 2, 881, 882, 7, 69, 2, 2, 882, 883, 7, 81, 2, 2, 883, 884, 7, 80, 2, 2, 884, 885, 7, 69, 2, 2, 885, 886, 7, 67, 2, 2, 886, 887, 7, 86, 2, 2, 887, 888, 7, 71, 2, 2, 888, 889, 7, 80, 2, 2, 889, 890, 7, 67, 2, 2, 890, 891, 7, 86, 2, 2, 891, 892, 7, 71, 2, 2, 892, 102, 3, 2, 2, 2, 893, 894, 7, 69, 2, 2, 894, 895, 7, 81, 2, 2, 895, 896, 7, 80, 2, 2, 896, 897, 7, 85, 2, 2, 897, 898, 7, 86, 2, 2, 898, 899, 7, 84, 2, 2, 899, 900, 7, 67, 2, 2, 900, 901, 7, 75, 2, 2, 901, 902, 7, 80, 2, 2, 902, 903, 7, 86, 2, 2, 903, 104, 3, 2, 2, 2, 904, 905, 7, 69, 2, 2, 905, 906, 7, 81, 2, 2, 906, 907, 7, 85, 2, 2, 907, 908, 7, 86, 2, 2, 908, 106, 3, 2, 2, 2, 909, 910, 7, 69, 2, 2, 910, 911, 7, 84, 2, 2, 911, 912, 7, 71, 2, 2, 912, 913, 7, 67, 2, 2, 913, 914, 7, 86, 2, 2, 914, 915, 7, 71, 2, 2, 915, 108, 3, 2, 2, 2, 916, 917, 7, 69, 2, 2, 917, 918, 7, 84, 2, 2, 918, 919, 7, 81, 2, 2, 919, 920, 7, 85, 2, 2, 920, 921, 7, 85, 2, 2, 921, 110, 3, 2, 2, 2, 922, 923, 7, 69, 2, 2, 923, 924, 7, 87, 2, 2, 924, 925, 7, 68, 2, 2, 925, 926, 7, 71, 2, 2, 926, 112, 3, 2, 2, 2, 927, 928, 7, 69, 2, 2, 928, 929, 7, 87, 2, 2, 929, 930, 7, 84, 2, 2, 930, 931, 7, 84, 2, 2, 931, 932, 7, 71, 2, 2, 932, 933, 7, 80, 2, 2, 933, 934, 7, 86, 2, 2, 934, 114, 3, 2, 2, 2, 935, 936, 7, 69, 2, 2, 936, 937, 7, 87, 2, 2, 937, 938, 7, 84, 2, 2, 938, 939, 7, 84, 2, 2, 939, 940, 7, 71, 2, 2, 940, 941, 7, 80, 2, 2, 941, 942, 7, 86, 2, 2, 942, 943, 7, 97, 2, 2, 943, 944, 7, 70, 2, 2, 944, 945, 7, 67, 2, 2, 945, 946, 7, 86, 2, 2, 946, 947, 7, 71, 2, 2, 947, 116, 3, 2, 2, 2, 948, 949, 7, 69, 2, 2, 949, 950, 7, 87, 2, 2, 950, 951, 7, 84, 2, 2, 951, 952, 7, 84, 2, 2, 952, 953, 7, 71, 2, 2, 953, 954, 7, 80, 2, 2, 954, 955, 7, 86, 2, 2, 955, 956, 7, 97, 2, 2, 956, 957, 7, 86, 2, 2, 957, 958, 7, 75, 2, 2, 958, 959, 7, 79, 2, 2, 959, 960, 7, 71, 2, 2, 960, 118, 3, 2, 2, 2, 961, 962, 7, 69, 2, 2, 962, 963, 7, 87, 2, 2, 963, 964, 7, 84, 2, 2, 964, 965, 7, 84, 2, 2, 965, 966, 7, 71, 2, 2, 966, 967, 7, 80, 2, 2, 967, 968, 7, 86, 2, 2, 968, 969, 7, 97, 2, 2, 969, 970, 7, 86, 2, 2, 970, 971, 7, 75, 2, 2, 971, 972, 7, 79, 2, 2, 972, 973, 7, 71, 2, 2, 973, 974, 7, 85, 2, 2, 974, 975, 7, 86, 2, 2, 975, 976, 7, 67, 2, 2, 976, 977, 7, 79, 2, 2, 977, 978, 7, 82, 2, 2, 978, 120, 3, 2, 2, 2, 979, 980, 7, 69, 2, 2, 980, 981, 7, 87, 2, 2, 981, 982, 7, 84, 2, 2, 982, 983, 7, 84, 2, 2, 983, 984, 7, 71, 2, 2, 984, 985, 7, 80, 2, 2, 985, 986, 7, 86, 2, 2, 986, 987, 7, 97, 2, 2, 987, 988, 7, 87, 2, 2, 988, 989, 7, 85, 2, 2, 989, 990, 7, 71, 2, 2, 990, 991, 7, 84, 2, 2, 991, 122, 3, 2, 2, 2, 992, 993, 7, 70, 2, 2, 993, 994, 7, 67, 2, 2, 994, 995, 7, 86, 2, 2, 995, 996, 7, 67, 2, 2, 996, 124, 3, 2, 2, 2, 997, 998, 7, 70, 2, 2, 998, 999, 7, 67, 2, 2, 999, 1000, 7, 86, 2, 2, 1000, 1001, 7, 67, 2, 2, 1001, 1002, 7, 68, 2, 2, 1002, 1003, 7, 67, 2, 2, 1003, 1004, 7, 85, 2, 2, 1004, 1005, 7, 71, 2, 2, 1005, 126, 3, 2, 2, 2, 1006, 1007, 7, 70, 2, 2, 1007, 1008, 7, 67, 2, 2, 1008, 1009, 7, 86, 2, 2, 1009, 1010, 7, 67, 2, 2, 1010, 1011, 7, 68, 2, 2, 1011, 1012, 7, 67, 2, 2, 1012, 1013, 7, 85, 2, 2, 1013, 1014, 7, 71, 2, 2, 1014, 1023, 7, 85, 2, 2, 1015, 1016, 7, 85, 2, 2, 1016, 1017, 7, 69, 2, 2, 1017, 1018, 7, 74, 2, 2, 1018, 1019, 7, 71, 2, 2, 1019, 1020, 7, 79, 2, 2, 1020, 1021, 7, 67, 2, 2, 1021, 1023, 7, 85, 2, 2, 1022, 1006, 3, 2, 2, 2, 1022, 1015, 3, 2, 2, 2, 1023, 128, 3, 2, 2, 2, 1024, 1025, 7, 70, 2, 2, 1025, 1026, 7, 68, 2, 2, 1026, 1027, 7, 82, 2, 2, 1027, 1028, 7, 84, 2, 2, 1028, 1029, 7, 81, 2, 2, 1029, 1030, 7, 82, 2, 2, 1030, 1031, 7, 71, 2, 2, 1031, 1032, 7, 84, 2, 2, 1032, 1033, 7, 86, 2, 2, 1033, 1034, 7, 75, 2, 2, 1034, 1035, 7, 71, 2, 2, 1035, 1036, 7, 85, 2, 2, 1036, 130, 3, 2, 2, 2, 1037, 1038, 7, 70, 2, 2, 1038, 1039, 7, 71, 2, 2, 1039, 1040, 7, 72, 2, 2, 1040, 1041, 7, 75, 2, 2, 1041, 1042, 7, 80, 2, 2, 1042, 1043, 7, 71, 2, 2, 1043, 1044, 7, 70, 2, 2, 1044, 132, 3, 2, 2, 2, 1045, 1046, 7, 70, 2, 2, 1046, 1047, 7, 71, 2, 2, 1047, 1048, 7, 78, 2, 2, 1048, 1049, 7, 71, 2, 2, 1049, 1050, 7, 86, 2, 2, 1050, 1051, 7, 71, 2, 2, 1051, 134, 3, 2, 2, 2, 1052, 1053, 7, 70, 2, 2, 1053, 1054, 7, 71, 2, 2, 1054, 1055, 7, 78, 2, 2, 1055, 1056, 7, 75, 2, 2, 1056, 1057, 7, 79, 2, 2, 1057, 1058, 7, 75, 2, 2, 1058, 1059, 7, 86, 2, 2, 1059, 1060, 7, 71, 2, 2, 1060, 1061, 7, 70, 2, 2, 1061, 136, 3, 2, 2, 2, 1062, 1063, 7, 70, 2, 2, 1063, 1064, 7, 71, 2, 2, 1064, 1065, 7, 85, 2, 2, 1065, 1066, 7, 69, 2, 2, 1066, 138, 3, 2, 2, 2, 1067, 1068, 7, 70, 2, 2, 1068, 1069, 7, 71, 2, 2, 1069, 1070, 7, 85, 2, 2, 1070, 1071, 7, 69, 2, 2, 1071, 1072, 7, 84, 2, 2, 1072, 1073, 7, 75, 2, 2, 1073, 1074, 7, 68, 2, 2, 1074, 1075, 7, 71, 2, 2, 1075, 140, 3, 2, 2, 2, 1076, 1077, 7, 70, 2, 2, 1077, 1078, 7, 72, 2, 2, 1078, 1079, 7, 85, 2, 2, 1079, 142, 3, 2, 2, 2, 1080, 1081, 7, 70, 2, 2, 1081, 1082, 7, 75, 2, 2, 1082, 1083, 7, 84, 2, 2, 1083, 1084, 7, 71, 2, 2, 1084, 1085, 7, 69, 2, 2, 1085, 1086, 7, 86, 2, 2, 1086, 1087, 7, 81, 2, 2, 1087, 1088, 7, 84, 2, 2, 1088, 1089, 7, 75, 2, 2, 1089, 1090, 7, 71, 2, 2, 1090, 1091, 7, 85, 2, 2, 1091, 144, 3, 2, 2, 2, 1092, 1093, 7, 70, 2, 2, 1093, 1094, 7, 75, 2, 2, 1094, 1095, 7, 84, 2, 2, 1095, 1096, 7, 71, 2, 2, 1096, 1097, 7, 69, 2, 2, 1097, 1098, 7, 86, 2, 2, 1098, 1099, 7, 81, 2, 2, 1099, 1100, 7, 84, 2, 2, 1100, 1101, 7, 91, 2, 2, 1101, 146, 3, 2, 2, 2, 1102, 1103, 7, 70, 2, 2, 1103, 1104, 7, 75, 2, 2, 1104, 1105, 7, 85, 2, 2, 1105, 1106, 7, 86, 2, 2, 1106, 1107, 7, 75, 2, 2, 1107, 1108, 7, 80, 2, 2, 1108, 1109, 7, 69, 2, 2, 1109, 1110, 7, 86, 2, 2, 1110, 148, 3, 2, 2, 2, 1111, 1112, 7, 70, 2, 2, 1112, 1113, 7, 75, 2, 2, 1113, 1114, 7, 85, 2, 2, 1114, 1115, 7, 86, 2, 2, 1115, 1116, 7, 84, 2, 2, 1116, 1117, 7, 75, 2, 2, 1117, 1118, 7, 68, 2, 2, 1118, 1119, 7, 87, 2, 2, 1119, 1120, 7, 86, 2, 2, 1120, 1121, 7, 71, 2, 2, 1121, 150, 3, 2, 2, 2, 1122, 1123, 7, 70, 2, 2, 1123, 1124, 7, 75, 2, 2, 1124, 1125, 7, 88, 2, 2, 1125, 152, 3, 2, 2, 2, 1126, 1127, 7, 70, 2, 2, 1127, 1128, 7, 84, 2, 2, 1128, 1129, 7, 81, 2, 2, 1129, 1130, 7, 82, 2, 2, 1130, 154, 3, 2, 2, 2, 1131, 1132, 7, 71, 2, 2, 1132, 1133, 7, 78, 2, 2, 1133, 1134, 7, 85, 2, 2, 1134, 1135, 7, 71, 2, 2, 1135, 156, 3, 2, 2, 2, 1136, 1137, 7, 71, 2, 2, 1137, 1138, 7, 80, 2, 2, 1138, 1139, 7, 70, 2, 2, 1139, 158, 3, 2, 2, 2, 1140, 1141, 7, 71, 2, 2, 1141, 1142, 7, 85, 2, 2, 1142, 1143, 7, 69, 2, 2, 1143, 1144, 7, 67, 2, 2, 1144, 1145, 7, 82, 2, 2, 1145, 1146, 7, 71, 2, 2, 1146, 160, 3, 2, 2, 2, 1147, 1148, 7, 71, 2, 2, 1148, 1149, 7, 85, 2, 2, 1149, 1150, 7, 69, 2, 2, 1150, 1151, 7, 67, 2, 2, 1151, 1152, 7, 82, 2, 2, 1152, 1153, 7, 71, 2, 2, 1153, 1154, 7, 70, 2, 2, 1154, 162, 3, 2, 2, 2, 1155, 1156, 7, 71, 2, 2, 1156, 1157, 7, 90, 2, 2, 1157, 1158, 7, 69, 2, 2, 1158, 1159, 7, 71, 2, 2, 1159, 1160, 7, 82, 2, 2, 1160, 1161, 7, 86, 2, 2, 1161, 164, 3, 2, 2, 2, 1162, 1163, 7, 71, 2, 2, 1163, 1164, 7, 90, 2, 2, 1164, 1165, 7, 69, 2, 2, 1165, 1166, 7, 74, 2, 2, 1166, 1167, 7, 67, 2, 2, 1167, 1168, 7, 80, 2, 2, 1168, 1169, 7, 73, 2, 2, 1169, 1170, 7, 71, 2, 2, 1170, 166, 3, 2, 2, 2, 1171, 1172, 7, 71, 2, 2, 1172, 1173, 7, 90, 2, 2, 1173, 1174, 7, 75, 2, 2, 1174, 1175, 7, 85, 2, 2, 1175, 1176, 7, 86, 2, 2, 1176, 1177, 7, 85, 2, 2, 1177, 168, 3, 2, 2, 2, 1178, 1179, 7, 71, 2, 2, 1179, 1180, 7, 90, 2, 2, 1180, 1181, 7, 82, 2, 2, 1181, 1182, 7, 78, 2, 2, 1182, 1183, 7, 67, 2, 2, 1183, 1184, 7, 75, 2, 2, 1184, 1185, 7, 80, 2, 2, 1185, 170, 3, 2, 2, 2, 1186, 1187, 7, 71, 2, 2, 1187, 1188, 7, 90, 2, 2, 1188, 1189, 7, 82, 2, 2, 1189, 1190, 7, 81, 2, 2, 1190, 1191, 7, 84, 2, 2, 1191, 1192, 7, 86, 2, 2, 1192, 172, 3, 2, 2, 2, 1193, 1194, 7, 71, 2, 2, 1194, 1195, 7, 90, 2, 2, 1195, 1196, 7, 86, 2, 2, 1196, 1197, 7, 71, 2, 2, 1197, 1198, 7, 80, 2, 2, 1198, 1199, 7, 70, 2, 2, 1199, 1200, 7, 71, 2, 2, 1200, 1201, 7, 70, 2, 2, 1201, 174, 3, 2, 2, 2, 1202, 1203, 7, 71, 2, 2, 1203, 1204, 7, 90, 2, 2, 1204, 1205, 7, 86, 2, 2, 1205, 1206, 7, 71, 2, 2, 1206, 1207, 7, 84, 2, 2, 1207, 1208, 7, 80, 2, 2, 1208, 1209, 7, 67, 2, 2, 1209, 1210, 7, 78, 2, 2, 1210, 176, 3, 2, 2, 2, 1211, 1212, 7, 71, 2, 2, 1212, 1213, 7, 90, 2, 2, 1213, 1214, 7, 86, 2, 2, 1214, 1215, 7, 84, 2, 2, 1215, 1216, 7, 67, 2, 2, 1216, 1217, 7, 69, 2, 2, 1217, 1218, 7, 86, 2, 2, 1218, 178, 3, 2, 2, 2, 1219, 1220, 7, 72, 2, 2, 1220, 1221, 7, 67, 2, 2, 1221, 1222, 7, 78, 2, 2, 1222, 1223, 7, 85, 2, 2, 1223, 1224, 7, 71, 2, 2, 1224, 180, 3, 2, 2, 2, 1225, 1226, 7, 72, 2, 2, 1226, 1227, 7, 71, 2, 2, 1227, 1228, 7, 86, 2, 2, 1228, 1229, 7, 69, 2, 2, 1229, 1230, 7, 74, 2, 2, 1230, 182, 3, 2, 2, 2, 1231, 1232, 7, 72, 2, 2, 1232, 1233, 7, 75, 2, 2, 1233, 1234, 7, 71, 2, 2, 1234, 1235, 7, 78, 2, 2, 1235, 1236, 7, 70, 2, 2, 1236, 1237, 7, 85, 2, 2, 1237, 184, 3, 2, 2, 2, 1238, 1239, 7, 72, 2, 2, 1239, 1240, 7, 75, 2, 2, 1240, 1241, 7, 78, 2, 2, 1241, 1242, 7, 86, 2, 2, 1242, 1243, 7, 71, 2, 2, 1243, 1244, 7, 84, 2, 2, 1244, 186, 3, 2, 2, 2, 1245, 1246, 7, 72, 2, 2, 1246, 1247, 7, 75, 2, 2, 1247, 1248, 7, 78, 2, 2, 1248, 1249, 7, 71, 2, 2, 1249, 1250, 7, 72, 2, 2, 1250, 1251, 7, 81, 2, 2, 1251, 1252, 7, 84, 2, 2, 1252, 1253, 7, 79, 2, 2, 1253, 1254, 7, 67, 2, 2, 1254, 1255, 7, 86, 2, 2, 1255, 188, 3, 2, 2, 2, 1256, 1257, 7, 72, 2, 2, 1257, 1258, 7, 75, 2, 2, 1258, 1259, 7, 84, 2, 2, 1259, 1260, 7, 85, 2, 2, 1260, 1261, 7, 86, 2, 2, 1261, 190, 3, 2, 2, 2, 1262, 1263, 7, 72, 2, 2, 1263, 1264, 7, 81, 2, 2, 1264, 1265, 7, 78, 2, 2, 1265, 1266, 7, 78, 2, 2, 1266, 1267, 7, 81, 2, 2, 1267, 1268, 7, 89, 2, 2, 1268, 1269, 7, 75, 2, 2, 1269, 1270, 7, 80, 2, 2, 1270, 1271, 7, 73, 2, 2, 1271, 192, 3, 2, 2, 2, 1272, 1273, 7, 72, 2, 2, 1273, 1274, 7, 81, 2, 2, 1274, 1275, 7, 84, 2, 2, 1275, 194, 3, 2, 2, 2, 1276, 1277, 7, 72, 2, 2, 1277, 1278, 7, 81, 2, 2, 1278, 1279, 7, 84, 2, 2, 1279, 1280, 7, 71, 2, 2, 1280, 1281, 7, 75, 2, 2, 1281, 1282, 7, 73, 2, 2, 1282, 1283, 7, 80, 2, 2, 1283, 196, 3, 2, 2, 2, 1284, 1285, 7, 72, 2, 2, 1285, 1286, 7, 81, 2, 2, 1286, 1287, 7, 84, 2, 2, 1287, 1288, 7, 79, 2, 2, 1288, 1289, 7, 67, 2, 2, 1289, 1290, 7, 86, 2, 2, 1290, 198, 3, 2, 2, 2, 1291, 1292, 7, 72, 2, 2, 1292, 1293, 7, 81, 2, 2, 1293, 1294, 7, 84, 2, 2, 1294, 1295, 7, 79, 2, 2, 1295, 1296, 7, 67, 2, 2, 1296, 1297, 7, 86, 2, 2, 1297, 1298, 7, 86, 2, 2, 1298, 1299, 7, 71, 2, 2, 1299, 1300, 7, 70, 2, 2, 1300, 200, 3, 2, 2, 2, 1301, 1302, 7, 72, 2, 2, 1302, 1303, 7, 84, 2, 2, 1303, 1304, 7, 81, 2, 2, 1304, 1305, 7, 79, 2, 2, 1305, 202, 3, 2, 2, 2, 1306, 1307, 7, 72, 2, 2, 1307, 1308, 7, 87, 2, 2, 1308, 1309, 7, 78, 2, 2, 1309, 1310, 7, 78, 2, 2, 1310, 204, 3, 2, 2, 2, 1311, 1312, 7, 72, 2, 2, 1312, 1313, 7, 87, 2, 2, 1313, 1314, 7, 80, 2, 2, 1314, 1315, 7, 69, 2, 2, 1315, 1316, 7, 86, 2, 2, 1316, 1317, 7, 75, 2, 2, 1317, 1318, 7, 81, 2, 2, 1318, 1319, 7, 80, 2, 2, 1319, 206, 3, 2, 2, 2, 1320, 1321, 7, 72, 2, 2, 1321, 1322, 7, 87, 2, 2, 1322, 1323, 7, 80, 2, 2, 1323, 1324, 7, 69, 2, 2, 1324, 1325, 7, 86, 2, 2, 1325, 1326, 7, 75, 2, 2, 1326, 1327, 7, 81, 2, 2, 1327, 1328, 7, 80, 2, 2, 1328, 1329, 7, 85, 2, 2, 1329, 208, 3, 2, 2, 2, 1330, 1331, 7, 73, 2, 2, 1331, 1332, 7, 78, 2, 2, 1332, 1333, 7, 81, 2, 2, 1333, 1334, 7, 68, 2, 2, 1334, 1335, 7, 67, 2, 2, 1335, 1336, 7, 78, 2, 2, 1336, 210, 3, 2, 2, 2, 1337, 1338, 7, 73, 2, 2, 1338, 1339, 7, 84, 2, 2, 1339, 1340, 7, 67, 2, 2, 1340, 1341, 7, 80, 2, 2, 1341, 1342, 7, 86, 2, 2, 1342, 212, 3, 2, 2, 2, 1343, 1344, 7, 73, 2, 2, 1344, 1345, 7, 84, 2, 2, 1345, 1346, 7, 81, 2, 2, 1346, 1347, 7, 87, 2, 2, 1347, 1348, 7, 82, 2, 2, 1348, 214, 3, 2, 2, 2, 1349, 1350, 7, 73, 2, 2, 1350, 1351, 7, 84, 2, 2, 1351, 1352, 7, 81, 2, 2, 1352, 1353, 7, 87, 2, 2, 1353, 1354, 7, 82, 2, 2, 1354, 1355, 7, 75, 2, 2, 1355, 1356, 7, 80, 2, 2, 1356, 1357, 7, 73, 2, 2, 1357, 216, 3, 2, 2, 2, 1358, 1359, 7, 74, 2, 2, 1359, 1360, 7, 67, 2, 2, 1360, 1361, 7, 88, 2, 2, 1361, 1362, 7, 75, 2, 2, 1362, 1363, 7, 80, 2, 2, 1363, 1364, 7, 73, 2, 2, 1364, 218, 3, 2, 2, 2, 1365, 1366, 7, 75, 2, 2, 1366, 1367, 7, 72, 2, 2, 1367, 220, 3, 2, 2, 2, 1368, 1369, 7, 75, 2, 2, 1369, 1370, 7, 73, 2, 2, 1370, 1371, 7, 80, 2, 2, 1371, 1372, 7, 81, 2, 2, 1372, 1373, 7, 84, 2, 2, 1373, 1374, 7, 71, 2, 2, 1374, 222, 3, 2, 2, 2, 1375, 1376, 7, 75, 2, 2, 1376, 1377, 7, 79, 2, 2, 1377, 1378, 7, 82, 2, 2, 1378, 1379, 7, 81, 2, 2, 1379, 1380, 7, 84, 2, 2, 1380, 1381, 7, 86, 2, 2, 1381, 224, 3, 2, 2, 2, 1382, 1383, 7, 75, 2, 2, 1383, 1384, 7, 80, 2, 2, 1384, 226, 3, 2, 2, 2, 1385, 1386, 7, 75, 2, 2, 1386, 1387, 7, 80, 2, 2, 1387, 1388, 7, 70, 2, 2, 1388, 1389, 7, 71, 2, 2, 1389, 1390, 7, 90, 2, 2, 1390, 228, 3, 2, 2, 2, 1391, 1392, 7, 75, 2, 2, 1392, 1393, 7, 80, 2, 2, 1393, 1394, 7, 70, 2, 2, 1394, 1395, 7, 71, 2, 2, 1395, 1396, 7, 90, 2, 2, 1396, 1397, 7, 71, 2, 2, 1397, 1398, 7, 85, 2, 2, 1398, 230, 3, 2, 2, 2, 1399, 1400, 7, 75, 2, 2, 1400, 1401, 7, 80, 2, 2, 1401, 1402, 7, 80, 2, 2, 1402, 1403, 7, 71, 2, 2, 1403, 1404, 7, 84, 2, 2, 1404, 232, 3, 2, 2, 2, 1405, 1406, 7, 75, 2, 2, 1406, 1407, 7, 80, 2, 2, 1407, 1408, 7, 82, 2, 2, 1408, 1409, 7, 67, 2, 2, 1409, 1410, 7, 86, 2, 2, 1410, 1411, 7, 74, 2, 2, 1411, 234, 3, 2, 2, 2, 1412, 1413, 7, 75, 2, 2, 1413, 1414, 7, 80, 2, 2, 1414, 1415, 7, 82, 2, 2, 1415, 1416, 7, 87, 2, 2, 1416, 1417, 7, 86, 2, 2, 1417, 1418, 7, 72, 2, 2, 1418, 1419, 7, 81, 2, 2, 1419, 1420, 7, 84, 2, 2, 1420, 1421, 7, 79, 2, 2, 1421, 1422, 7, 67, 2, 2, 1422, 1423, 7, 86, 2, 2, 1423, 236, 3, 2, 2, 2, 1424, 1425, 7, 75, 2, 2, 1425, 1426, 7, 80, 2, 2, 1426, 1427, 7, 85, 2, 2, 1427, 1428, 7, 71, 2, 2, 1428, 1429, 7, 84, 2, 2, 1429, 1430, 7, 86, 2, 2, 1430, 238, 3, 2, 2, 2, 1431, 1432, 7, 75, 2, 2, 1432, 1433, 7, 80, 2, 2, 1433, 1434, 7, 86, 2, 2, 1434, 1435, 7, 71, 2, 2, 1435, 1436, 7, 84, 2, 2, 1436, 1437, 7, 85, 2, 2, 1437, 1438, 7, 71, 2, 2, 1438, 1439, 7, 69, 2, 2, 1439, 1440, 7, 86, 2, 2, 1440, 240, 3, 2, 2, 2, 1441, 1442, 7, 75, 2, 2, 1442, 1443, 7, 80, 2, 2, 1443, 1444, 7, 86, 2, 2, 1444, 1445, 7, 71, 2, 2, 1445, 1446, 7, 84, 2, 2, 1446, 1447, 7, 88, 2, 2, 1447, 1448, 7, 67, 2, 2, 1448, 1449, 7, 78, 2, 2, 1449, 242, 3, 2, 2, 2, 1450, 1451, 7, 75, 2, 2, 1451, 1452, 7, 80, 2, 2, 1452, 1453, 7, 86, 2, 2, 1453, 1454, 7, 81, 2, 2, 1454, 244, 3, 2, 2, 2, 1455, 1456, 7, 75, 2, 2, 1456, 1457, 7, 85, 2, 2, 1457, 246, 3, 2, 2, 2, 1458, 1459, 7, 75, 2, 2, 1459, 1460, 7, 86, 2, 2, 1460, 1461, 7, 71, 2, 2, 1461, 1462, 7, 79, 2, 2, 1462, 1463, 7, 85, 2, 2, 1463, 248, 3, 2, 2, 2, 1464, 1465, 7, 76, 2, 2, 1465, 1466, 7, 81, 2, 2, 1466, 1467, 7, 75, 2, 2, 1467, 1468, 7, 80, 2, 2, 1468, 250, 3, 2, 2, 2, 1469, 1470, 7, 77, 2, 2, 1470, 1471, 7, 71, 2, 2, 1471, 1472, 7, 91, 2, 2, 1472, 1473, 7, 85, 2, 2, 1473, 252, 3, 2, 2, 2, 1474, 1475, 7, 78, 2, 2, 1475, 1476, 7, 67, 2, 2, 1476, 1477, 7, 85, 2, 2, 1477, 1478, 7, 86, 2, 2, 1478, 254, 3, 2, 2, 2, 1479, 1480, 7, 78, 2, 2, 1480, 1481, 7, 67, 2, 2, 1481, 1482, 7, 86, 2, 2, 1482, 1483, 7, 71, 2, 2, 1483, 1484, 7, 84, 2, 2, 1484, 1485, 7, 67, 2, 2, 1485, 1486, 7, 78, 2, 2, 1486, 256, 3, 2, 2, 2, 1487, 1488, 7, 78, 2, 2, 1488, 1489, 7, 67, 2, 2, 1489, 1490, 7, 92, 2, 2, 1490, 1491, 7, 91, 2, 2, 1491, 258, 3, 2, 2, 2, 1492, 1493, 7, 78, 2, 2, 1493, 1494, 7, 71, 2, 2, 1494, 1495, 7, 67, 2, 2, 1495, 1496, 7, 70, 2, 2, 1496, 1497, 7, 75, 2, 2, 1497, 1498, 7, 80, 2, 2, 1498, 1499, 7, 73, 2, 2, 1499, 260, 3, 2, 2, 2, 1500, 1501, 7, 78, 2, 2, 1501, 1502, 7, 71, 2, 2, 1502, 1503, 7, 72, 2, 2, 1503, 1504, 7, 86, 2, 2, 1504, 262, 3, 2, 2, 2, 1505, 1506, 7, 78, 2, 2, 1506, 1507, 7, 75, 2, 2, 1507, 1508, 7, 77, 2, 2, 1508, 1509, 7, 71, 2, 2, 1509, 264, 3, 2, 2, 2, 1510, 1511, 7, 78, 2, 2, 1511, 1512, 7, 75, 2, 2, 1512, 1513, 7, 79, 2, 2, 1513, 1514, 7, 75, 2, 2, 1514, 1515, 7, 86, 2, 2, 1515, 266, 3, 2, 2, 2, 1516, 1517, 7, 78, 2, 2, 1517, 1518, 7, 75, 2, 2, 1518, 1519, 7, 80, 2, 2, 1519, 1520, 7, 71, 2, 2, 1520, 1521, 7, 85, 2, 2, 1521, 268, 3, 2, 2, 2, 1522, 1523, 7, 78, 2, 2, 1523, 1524, 7, 75, 2, 2, 1524, 1525, 7, 85, 2, 2, 1525, 1526, 7, 86, 2, 2, 1526, 270, 3, 2, 2, 2, 1527, 1528, 7, 78, 2, 2, 1528, 1529, 7, 81, 2, 2, 1529, 1530, 7, 67, 2, 2, 1530, 1531, 7, 70, 2, 2, 1531, 272, 3, 2, 2, 2, 1532, 1533, 7, 78, 2, 2, 1533, 1534, 7, 81, 2, 2, 1534, 1535, 7, 69, 2, 2, 1535, 1536, 7, 67, 2, 2, 1536, 1537, 7, 78, 2, 2, 1537, 274, 3, 2, 2, 2, 1538, 1539, 7, 78, 2, 2, 1539, 1540, 7, 81, 2, 2, 1540, 1541, 7, 69, 2, 2, 1541, 1542, 7, 67, 2, 2, 1542, 1543, 7, 86, 2, 2, 1543, 1544, 7, 75, 2, 2, 1544, 1545, 7, 81, 2, 2, 1545, 1546, 7, 80, 2, 2, 1546, 276, 3, 2, 2, 2, 1547, 1548, 7, 78, 2, 2, 1548, 1549, 7, 81, 2, 2, 1549, 1550, 7, 69, 2, 2, 1550, 1551, 7, 77, 2, 2, 1551, 278, 3, 2, 2, 2, 1552, 1553, 7, 78, 2, 2, 1553, 1554, 7, 81, 2, 2, 1554, 1555, 7, 69, 2, 2, 1555, 1556, 7, 77, 2, 2, 1556, 1557, 7, 85, 2, 2, 1557, 280, 3, 2, 2, 2, 1558, 1559, 7, 78, 2, 2, 1559, 1560, 7, 81, 2, 2, 1560, 1561, 7, 73, 2, 2, 1561, 1562, 7, 75, 2, 2, 1562, 1563, 7, 69, 2, 2, 1563, 1564, 7, 67, 2, 2, 1564, 1565, 7, 78, 2, 2, 1565, 282, 3, 2, 2, 2, 1566, 1567, 7, 79, 2, 2, 1567, 1568, 7, 67, 2, 2, 1568, 1569, 7, 69, 2, 2, 1569, 1570, 7, 84, 2, 2, 1570, 1571, 7, 81, 2, 2, 1571, 284, 3, 2, 2, 2, 1572, 1573, 7, 79, 2, 2, 1573, 1574, 7, 67, 2, 2, 1574, 1575, 7, 82, 2, 2, 1575, 286, 3, 2, 2, 2, 1576, 1577, 7, 79, 2, 2, 1577, 1578, 7, 67, 2, 2, 1578, 1579, 7, 86, 2, 2, 1579, 1580, 7, 69, 2, 2, 1580, 1581, 7, 74, 2, 2, 1581, 1582, 7, 71, 2, 2, 1582, 1583, 7, 70, 2, 2, 1583, 288, 3, 2, 2, 2, 1584, 1585, 7, 79, 2, 2, 1585, 1586, 7, 71, 2, 2, 1586, 1587, 7, 84, 2, 2, 1587, 1588, 7, 73, 2, 2, 1588, 1589, 7, 71, 2, 2, 1589, 290, 3, 2, 2, 2, 1590, 1591, 7, 79, 2, 2, 1591, 1592, 7, 85, 2, 2, 1592, 1593, 7, 69, 2, 2, 1593, 1594, 7, 77, 2, 2, 1594, 292, 3, 2, 2, 2, 1595, 1596, 7, 80, 2, 2, 1596, 1597, 7, 67, 2, 2, 1597, 1598, 7, 79, 2, 2, 1598, 1599, 7, 71, 2, 2, 1599, 1600, 7, 85, 2, 2, 1600, 1601, 7, 82, 2, 2, 1601, 1602, 7, 67, 2, 2, 1602, 1603, 7, 69, 2, 2, 1603, 1604, 7, 71, 2, 2, 1604, 294, 3, 2, 2, 2, 1605, 1606, 7, 80, 2, 2, 1606, 1607, 7, 67, 2, 2, 1607, 1608, 7, 79, 2, 2, 1608, 1609, 7, 71, 2, 2, 1609, 1610, 7, 85, 2, 2, 1610, 1611, 7, 82, 2, 2, 1611, 1612, 7, 67, 2, 2, 1612, 1613, 7, 69, 2, 2, 1613, 1614, 7, 71, 2, 2, 1614, 1615, 7, 85, 2, 2, 1615, 296, 3, 2, 2, 2, 1616, 1617, 7, 80, 2, 2, 1617, 1618, 7, 67, 2, 2, 1618, 1619, 7, 86, 2, 2, 1619, 1620, 7, 87, 2, 2, 1620, 1621, 7, 84, 2, 2, 1621, 1622, 7, 67, 2, 2, 1622, 1623, 7, 78, 2, 2, 1623, 298, 3, 2, 2, 2, 1624, 1625, 7, 80, 2, 2, 1625, 1626, 7, 81, 2, 2, 1626, 300, 3, 2, 2, 2, 1627, 1628, 7, 80, 2, 2, 1628, 1629, 7, 81, 2, 2, 1629, 1632, 7, 86, 2, 2, 1630, 1632, 7, 35, 2, 2, 1631, 1627, 3, 2, 2, 2, 1631, 1630, 3, 2, 2, 2, 1632, 302, 3, 2, 2, 2, 1633, 1634, 7, 80, 2, 2, 1634, 1635, 7, 87, 2, 2, 1635, 1636, 7, 78, 2, 2, 1636, 1637, 7, 78, 2, 2, 1637, 304, 3, 2, 2, 2, 1638, 1639, 7, 80, 2, 2, 1639, 1640, 7, 87, 2, 2, 1640, 1641, 7, 78, 2, 2, 1641, 1642, 7, 78, 2, 2, 1642, 1643, 7, 85, 2, 2, 1643, 306, 3, 2, 2, 2, 1644, 1645, 7, 81, 2, 2, 1645, 1646, 7, 72, 2, 2, 1646, 308, 3, 2, 2, 2, 1647, 1648, 7, 81, 2, 2, 1648, 1649, 7, 80, 2, 2, 1649, 310, 3, 2, 2, 2, 1650, 1651, 7, 81, 2, 2, 1651, 1652, 7, 80, 2, 2, 1652, 1653, 7, 78, 2, 2, 1653, 1654, 7, 91, 2, 2, 1654, 312, 3, 2, 2, 2, 1655, 1656, 7, 81, 2, 2, 1656, 1657, 7, 82, 2, 2, 1657, 1658, 7, 86, 2, 2, 1658, 1659, 7, 75, 2, 2, 1659, 1660, 7, 81, 2, 2, 1660, 1661, 7, 80, 2, 2, 1661, 314, 3, 2, 2, 2, 1662, 1663, 7, 81, 2, 2, 1663, 1664, 7, 82, 2, 2, 1664, 1665, 7, 86, 2, 2, 1665, 1666, 7, 75, 2, 2, 1666, 1667, 7, 81, 2, 2, 1667, 1668, 7, 80, 2, 2, 1668, 1669, 7, 85, 2, 2, 1669, 316, 3, 2, 2, 2, 1670, 1671, 7, 81, 2, 2, 1671, 1672, 7, 84, 2, 2, 1672, 318, 3, 2, 2, 2, 1673, 1674, 7, 81, 2, 2, 1674, 1675, 7, 84, 2, 2, 1675, 1676, 7, 70, 2, 2, 1676, 1677, 7, 71, 2, 2, 1677, 1678, 7, 84, 2, 2, 1678, 320, 3, 2, 2, 2, 1679, 1680, 7, 81, 2, 2, 1680, 1681, 7, 87, 2, 2, 1681, 1682, 7, 86, 2, 2, 1682, 322, 3, 2, 2, 2, 1683, 1684, 7, 81, 2, 2, 1684, 1685, 7, 87, 2, 2, 1685, 1686, 7, 86, 2, 2, 1686, 1687, 7, 71, 2, 2, 1687, 1688, 7, 84, 2, 2, 1688, 324, 3, 2, 2, 2, 1689, 1690, 7, 81, 2, 2, 1690, 1691, 7, 87, 2, 2, 1691, 1692, 7, 86, 2, 2, 1692, 1693, 7, 82, 2, 2, 1693, 1694, 7, 87, 2, 2, 1694, 1695, 7, 86, 2, 2, 1695, 1696, 7, 72, 2, 2, 1696, 1697, 7, 81, 2, 2, 1697, 1698, 7, 84, 2, 2, 1698, 1699, 7, 79, 2, 2, 1699, 1700, 7, 67, 2, 2, 1700, 1701, 7, 86, 2, 2, 1701, 326, 3, 2, 2, 2, 1702, 1703, 7, 81, 2, 2, 1703, 1704, 7, 88, 2, 2, 1704, 1705, 7, 71, 2, 2, 1705, 1706, 7, 84, 2, 2, 1706, 328, 3, 2, 2, 2, 1707, 1708, 7, 81, 2, 2, 1708, 1709, 7, 88, 2, 2, 1709, 1710, 7, 71, 2, 2, 1710, 1711, 7, 84, 2, 2, 1711, 1712, 7, 78, 2, 2, 1712, 1713, 7, 67, 2, 2, 1713, 1714, 7, 82, 2, 2, 1714, 1715, 7, 85, 2, 2, 1715, 330, 3, 2, 2, 2, 1716, 1717, 7, 81, 2, 2, 1717, 1718, 7, 88, 2, 2, 1718, 1719, 7, 71, 2, 2, 1719, 1720, 7, 84, 2, 2, 1720, 1721, 7, 78, 2, 2, 1721, 1722, 7, 67, 2, 2, 1722, 1723, 7, 91, 2, 2, 1723, 332, 3, 2, 2, 2, 1724, 1725, 7, 81, 2, 2, 1725, 1726, 7, 88, 2, 2, 1726, 1727, 7, 71, 2, 2, 1727, 1728, 7, 84, 2, 2, 1728, 1729, 7, 89, 2, 2, 1729, 1730, 7, 84, 2, 2, 1730, 1731, 7, 75, 2, 2, 1731, 1732, 7, 86, 2, 2, 1732, 1733, 7, 71, 2, 2, 1733, 334, 3, 2, 2, 2, 1734, 1735, 7, 82, 2, 2, 1735, 1736, 7, 67, 2, 2, 1736, 1737, 7, 84, 2, 2, 1737, 1738, 7, 86, 2, 2, 1738, 1739, 7, 75, 2, 2, 1739, 1740, 7, 86, 2, 2, 1740, 1741, 7, 75, 2, 2, 1741, 1742, 7, 81, 2, 2, 1742, 1743, 7, 80, 2, 2, 1743, 336, 3, 2, 2, 2, 1744, 1745, 7, 82, 2, 2, 1745, 1746, 7, 67, 2, 2, 1746, 1747, 7, 84, 2, 2, 1747, 1748, 7, 86, 2, 2, 1748, 1749, 7, 75, 2, 2, 1749, 1750, 7, 86, 2, 2, 1750, 1751, 7, 75, 2, 2, 1751, 1752, 7, 81, 2, 2, 1752, 1753, 7, 80, 2, 2, 1753, 1754, 7, 71, 2, 2, 1754, 1755, 7, 70, 2, 2, 1755, 338, 3, 2, 2, 2, 1756, 1757, 7, 82, 2, 2, 1757, 1758, 7, 67, 2, 2, 1758, 1759, 7, 84, 2, 2, 1759, 1760, 7, 86, 2, 2, 1760, 1761, 7, 75, 2, 2, 1761, 1762, 7, 86, 2, 2, 1762, 1763, 7, 75, 2, 2, 1763, 1764, 7, 81, 2, 2, 1764, 1765, 7, 80, 2, 2, 1765, 1766, 7, 85, 2, 2, 1766, 340, 3, 2, 2, 2, 1767, 1768, 7, 82, 2, 2, 1768, 1769, 7, 71, 2, 2, 1769, 1770, 7, 84, 2, 2, 1770, 1771, 7, 69, 2, 2, 1771, 1772, 7, 71, 2, 2, 1772, 1773, 7, 80, 2, 2, 1773, 1774, 7, 86, 2, 2, 1774, 342, 3, 2, 2, 2, 1775, 1776, 7, 82, 2, 2, 1776, 1777, 7, 75, 2, 2, 1777, 1778, 7, 88, 2, 2, 1778, 1779, 7, 81, 2, 2, 1779, 1780, 7, 86, 2, 2, 1780, 344, 3, 2, 2, 2, 1781, 1782, 7, 82, 2, 2, 1782, 1783, 7, 78, 2, 2, 1783, 1784, 7, 67, 2, 2, 1784, 1785, 7, 69, 2, 2, 1785, 1786, 7, 75, 2, 2, 1786, 1787, 7, 80, 2, 2, 1787, 1788, 7, 73, 2, 2, 1788, 346, 3, 2, 2, 2, 1789, 1790, 7, 82, 2, 2, 1790, 1791, 7, 81, 2, 2, 1791, 1792, 7, 85, 2, 2, 1792, 1793, 7, 75, 2, 2, 1793, 1794, 7, 86, 2, 2, 1794, 1795, 7, 75, 2, 2, 1795, 1796, 7, 81, 2, 2, 1796, 1797, 7, 80, 2, 2, 1797, 348, 3, 2, 2, 2, 1798, 1799, 7, 82, 2, 2, 1799, 1800, 7, 84, 2, 2, 1800, 1801, 7, 71, 2, 2, 1801, 1802, 7, 69, 2, 2, 1802, 1803, 7, 71, 2, 2, 1803, 1804, 7, 70, 2, 2, 1804, 1805, 7, 75, 2, 2, 1805, 1806, 7, 80, 2, 2, 1806, 1807, 7, 73, 2, 2, 1807, 350, 3, 2, 2, 2, 1808, 1809, 7, 82, 2, 2, 1809, 1810, 7, 84, 2, 2, 1810, 1811, 7, 75, 2, 2, 1811, 1812, 7, 79, 2, 2, 1812, 1813, 7, 67, 2, 2, 1813, 1814, 7, 84, 2, 2, 1814, 1815, 7, 91, 2, 2, 1815, 352, 3, 2, 2, 2, 1816, 1817, 7, 82, 2, 2, 1817, 1818, 7, 84, 2, 2, 1818, 1819, 7, 75, 2, 2, 1819, 1820, 7, 80, 2, 2, 1820, 1821, 7, 69, 2, 2, 1821, 1822, 7, 75, 2, 2, 1822, 1823, 7, 82, 2, 2, 1823, 1824, 7, 67, 2, 2, 1824, 1825, 7, 78, 2, 2, 1825, 1826, 7, 85, 2, 2, 1826, 354, 3, 2, 2, 2, 1827, 1828, 7, 82, 2, 2, 1828, 1829, 7, 84, 2, 2, 1829, 1830, 7, 81, 2, 2, 1830, 1831, 7, 82, 2, 2, 1831, 1832, 7, 71, 2, 2, 1832, 1833, 7, 84, 2, 2, 1833, 1834, 7, 86, 2, 2, 1834, 1835, 7, 75, 2, 2, 1835, 1836, 7, 71, 2, 2, 1836, 1837, 7, 85, 2, 2, 1837, 356, 3, 2, 2, 2, 1838, 1839, 7, 82, 2, 2, 1839, 1840, 7, 87, 2, 2, 1840, 1841, 7, 84, 2, 2, 1841, 1842, 7, 73, 2, 2, 1842, 1843, 7, 71, 2, 2, 1843, 358, 3, 2, 2, 2, 1844, 1845, 7, 83, 2, 2, 1845, 1846, 7, 87, 2, 2, 1846, 1847, 7, 71, 2, 2, 1847, 1848, 7, 84, 2, 2, 1848, 1849, 7, 91, 2, 2, 1849, 360, 3, 2, 2, 2, 1850, 1851, 7, 84, 2, 2, 1851, 1852, 7, 67, 2, 2, 1852, 1853, 7, 80, 2, 2, 1853, 1854, 7, 73, 2, 2, 1854, 1855, 7, 71, 2, 2, 1855, 362, 3, 2, 2, 2, 1856, 1857, 7, 84, 2, 2, 1857, 1858, 7, 71, 2, 2, 1858, 1859, 7, 69, 2, 2, 1859, 1860, 7, 81, 2, 2, 1860, 1861, 7, 84, 2, 2, 1861, 1862, 7, 70, 2, 2, 1862, 1863, 7, 84, 2, 2, 1863, 1864, 7, 71, 2, 2, 1864, 1865, 7, 67, 2, 2, 1865, 1866, 7, 70, 2, 2, 1866, 1867, 7, 71, 2, 2, 1867, 1868, 7, 84, 2, 2, 1868, 364, 3, 2, 2, 2, 1869, 1870, 7, 84, 2, 2, 1870, 1871, 7, 71, 2, 2, 1871, 1872, 7, 69, 2, 2, 1872, 1873, 7, 81, 2, 2, 1873, 1874, 7, 84, 2, 2, 1874, 1875, 7, 70, 2, 2, 1875, 1876, 7, 89, 2, 2, 1876, 1877, 7, 84, 2, 2, 1877, 1878, 7, 75, 2, 2, 1878, 1879, 7, 86, 2, 2, 1879, 1880, 7, 71, 2, 2, 1880, 1881, 7, 84, 2, 2, 1881, 366, 3, 2, 2, 2, 1882, 1883, 7, 84, 2, 2, 1883, 1884, 7, 71, 2, 2, 1884, 1885, 7, 69, 2, 2, 1885, 1886, 7, 81, 2, 2, 1886, 1887, 7, 88, 2, 2, 1887, 1888, 7, 71, 2, 2, 1888, 1889, 7, 84, 2, 2, 1889, 368, 3, 2, 2, 2, 1890, 1891, 7, 84, 2, 2, 1891, 1892, 7, 71, 2, 2, 1892, 1893, 7, 70, 2, 2, 1893, 1894, 7, 87, 2, 2, 1894, 1895, 7, 69, 2, 2, 1895, 1896, 7, 71, 2, 2, 1896, 370, 3, 2, 2, 2, 1897, 1898, 7, 84, 2, 2, 1898, 1899, 7, 71, 2, 2, 1899, 1900, 7, 72, 2, 2, 1900, 1901, 7, 71, 2, 2, 1901, 1902, 7, 84, 2, 2, 1902, 1903, 7, 71, 2, 2, 1903, 1904, 7, 80, 2, 2, 1904, 1905, 7, 69, 2, 2, 1905, 1906, 7, 71, 2, 2, 1906, 1907, 7, 85, 2, 2, 1907, 372, 3, 2, 2, 2, 1908, 1909, 7, 84, 2, 2, 1909, 1910, 7, 71, 2, 2, 1910, 1911, 7, 72, 2, 2, 1911, 1912, 7, 84, 2, 2, 1912, 1913, 7, 71, 2, 2, 1913, 1914, 7, 85, 2, 2, 1914, 1915, 7, 74, 2, 2, 1915, 374, 3, 2, 2, 2, 1916, 1917, 7, 84, 2, 2, 1917, 1918, 7, 71, 2, 2, 1918, 1919, 7, 80, 2, 2, 1919, 1920, 7, 67, 2, 2, 1920, 1921, 7, 79, 2, 2, 1921, 1922, 7, 71, 2, 2, 1922, 376, 3, 2, 2, 2, 1923, 1924, 7, 84, 2, 2, 1924, 1925, 7, 71, 2, 2, 1925, 1926, 7, 82, 2, 2, 1926, 1927, 7, 67, 2, 2, 1927, 1928, 7, 75, 2, 2, 1928, 1929, 7, 84, 2, 2, 1929, 378, 3, 2, 2, 2, 1930, 1931, 7, 84, 2, 2, 1931, 1932, 7, 71, 2, 2, 1932, 1933, 7, 82, 2, 2, 1933, 1934, 7, 78, 2, 2, 1934, 1935, 7, 67, 2, 2, 1935, 1936, 7, 69, 2, 2, 1936, 1937, 7, 71, 2, 2, 1937, 380, 3, 2, 2, 2, 1938, 1939, 7, 84, 2, 2, 1939, 1940, 7, 71, 2, 2, 1940, 1941, 7, 85, 2, 2, 1941, 1942, 7, 71, 2, 2, 1942, 1943, 7, 86, 2, 2, 1943, 382, 3, 2, 2, 2, 1944, 1945, 7, 84, 2, 2, 1945, 1946, 7, 71, 2, 2, 1946, 1947, 7, 85, 2, 2, 1947, 1948, 7, 86, 2, 2, 1948, 1949, 7, 84, 2, 2, 1949, 1950, 7, 75, 2, 2, 1950, 1951, 7, 69, 2, 2, 1951, 1952, 7, 86, 2, 2, 1952, 384, 3, 2, 2, 2, 1953, 1954, 7, 84, 2, 2, 1954, 1955, 7, 71, 2, 2, 1955, 1956, 7, 88, 2, 2, 1956, 1957, 7, 81, 2, 2, 1957, 1958, 7, 77, 2, 2, 1958, 1959, 7, 71, 2, 2, 1959, 386, 3, 2, 2, 2, 1960, 1961, 7, 84, 2, 2, 1961, 1962, 7, 75, 2, 2, 1962, 1963, 7, 73, 2, 2, 1963, 1964, 7, 74, 2, 2, 1964, 1965, 7, 86, 2, 2, 1965, 388, 3, 2, 2, 2, 1966, 1967, 7, 84, 2, 2, 1967, 1968, 7, 78, 2, 2, 1968, 1969, 7, 75, 2, 2, 1969, 1970, 7, 77, 2, 2, 1970, 1978, 7, 71, 2, 2, 1971, 1972, 7, 84, 2, 2, 1972, 1973, 7, 71, 2, 2, 1973, 1974, 7, 73, 2, 2, 1974, 1975, 7, 71, 2, 2, 1975, 1976, 7, 90, 2, 2, 1976, 1978, 7, 82, 2, 2, 1977, 1966, 3, 2, 2, 2, 1977, 1971, 3, 2, 2, 2, 1978, 390, 3, 2, 2, 2, 1979, 1980, 7, 84, 2, 2, 1980, 1981, 7, 81, 2, 2, 1981, 1982, 7, 78, 2, 2, 1982, 1983, 7, 71, 2, 2, 1983, 392, 3, 2, 2, 2, 1984, 1985, 7, 84, 2, 2, 1985, 1986, 7, 81, 2, 2, 1986, 1987, 7, 78, 2, 2, 1987, 1988, 7, 71, 2, 2, 1988, 1989, 7, 85, 2, 2, 1989, 394, 3, 2, 2, 2, 1990, 1991, 7, 84, 2, 2, 1991, 1992, 7, 81, 2, 2, 1992, 1993, 7, 78, 2, 2, 1993, 1994, 7, 78, 2, 2, 1994, 1995, 7, 68, 2, 2, 1995, 1996, 7, 67, 2, 2, 1996, 1997, 7, 69, 2, 2, 1997, 1998, 7, 77, 2, 2, 1998, 396, 3, 2, 2, 2, 1999, 2000, 7, 84, 2, 2, 2000, 2001, 7, 81, 2, 2, 2001, 2002, 7, 78, 2, 2, 2002, 2003, 7, 78, 2, 2, 2003, 2004, 7, 87, 2, 2, 2004, 2005, 7, 82, 2, 2, 2005, 398, 3, 2, 2, 2, 2006, 2007, 7, 84, 2, 2, 2007, 2008, 7, 81, 2, 2, 2008, 2009, 7, 89, 2, 2, 2009, 400, 3, 2, 2, 2, 2010, 2011, 7, 84, 2, 2, 2011, 2012, 7, 81, 2, 2, 2012, 2013, 7, 89, 2, 2, 2013, 2014, 7, 85, 2, 2, 2014, 402, 3, 2, 2, 2, 2015, 2016, 7, 85, 2, 2, 2016, 2017, 7, 69, 2, 2, 2017, 2018, 7, 74, 2, 2, 2018, 2019, 7, 71, 2, 2, 2019, 2020, 7, 79, 2, 2, 2020, 2021, 7, 67, 2, 2, 2021, 404, 3, 2, 2, 2, 2022, 2023, 7, 85, 2, 2, 2023, 2024, 7, 71, 2, 2, 2024, 2025, 7, 78, 2, 2, 2025, 2026, 7, 71, 2, 2, 2026, 2027, 7, 69, 2, 2, 2027, 2028, 7, 86, 2, 2, 2028, 406, 3, 2, 2, 2, 2029, 2030, 7, 85, 2, 2, 2030, 2031, 7, 71, 2, 2, 2031, 2032, 7, 79, 2, 2, 2032, 2033, 7, 75, 2, 2, 2033, 408, 3, 2, 2, 2, 2034, 2035, 7, 85, 2, 2, 2035, 2036, 7, 71, 2, 2, 2036, 2037, 7, 82, 2, 2, 2037, 2038, 7, 67, 2, 2, 2038, 2039, 7, 84, 2, 2, 2039, 2040, 7, 67, 2, 2, 2040, 2041, 7, 86, 2, 2, 2041, 2042, 7, 71, 2, 2, 2042, 2043, 7, 70, 2, 2, 2043, 410, 3, 2, 2, 2, 2044, 2045, 7, 85, 2, 2, 2045, 2046, 7, 71, 2, 2, 2046, 2047, 7, 84, 2, 2, 2047, 2048, 7, 70, 2, 2, 2048, 2049, 7, 71, 2, 2, 2049, 412, 3, 2, 2, 2, 2050, 2051, 7, 85, 2, 2, 2051, 2052, 7, 71, 2, 2, 2052, 2053, 7, 84, 2, 2, 2053, 2054, 7, 70, 2, 2, 2054, 2055, 7, 71, 2, 2, 2055, 2056, 7, 82, 2, 2, 2056, 2057, 7, 84, 2, 2, 2057, 2058, 7, 81, 2, 2, 2058, 2059, 7, 82, 2, 2, 2059, 2060, 7, 71, 2, 2, 2060, 2061, 7, 84, 2, 2, 2061, 2062, 7, 86, 2, 2, 2062, 2063, 7, 75, 2, 2, 2063, 2064, 7, 71, 2, 2, 2064, 2065, 7, 85, 2, 2, 2065, 414, 3, 2, 2, 2, 2066, 2067, 7, 85, 2, 2, 2067, 2068, 7, 71, 2, 2, 2068, 2069, 7, 85, 2, 2, 2069, 2070, 7, 85, 2, 2, 2070, 2071, 7, 75, 2, 2, 2071, 2072, 7, 81, 2, 2, 2072, 2073, 7, 80, 2, 2, 2073, 2074, 7, 97, 2, 2, 2074, 2075, 7, 87, 2, 2, 2075, 2076, 7, 85, 2, 2, 2076, 2077, 7, 71, 2, 2, 2077, 2078, 7, 84, 2, 2, 2078, 416, 3, 2, 2, 2, 2079, 2080, 7, 85, 2, 2, 2080, 2081, 7, 71, 2, 2, 2081, 2082, 7, 86, 2, 2, 2082, 418, 3, 2, 2, 2, 2083, 2084, 7, 79, 2, 2, 2084, 2085, 7, 75, 2, 2, 2085, 2086, 7, 80, 2, 2, 2086, 2087, 7, 87, 2, 2, 2087, 2088, 7, 85, 2, 2, 2088, 420, 3, 2, 2, 2, 2089, 2090, 7, 85, 2, 2, 2090, 2091, 7, 71, 2, 2, 2091, 2092, 7, 86, 2, 2, 2092, 2093, 7, 85, 2, 2, 2093, 422, 3, 2, 2, 2, 2094, 2095, 7, 85, 2, 2, 2095, 2096, 7, 74, 2, 2, 2096, 2097, 7, 81, 2, 2, 2097, 2098, 7, 89, 2, 2, 2098, 424, 3, 2, 2, 2, 2099, 2100, 7, 85, 2, 2, 2100, 2101, 7, 77, 2, 2, 2101, 2102, 7, 71, 2, 2, 2102, 2103, 7, 89, 2, 2, 2103, 2104, 7, 71, 2, 2, 2104, 2105, 7, 70, 2, 2, 2105, 426, 3, 2, 2, 2, 2106, 2107, 7, 85, 2, 2, 2107, 2108, 7, 81, 2, 2, 2108, 2109, 7, 79, 2, 2, 2109, 2110, 7, 71, 2, 2, 2110, 428, 3, 2, 2, 2, 2111, 2112, 7, 85, 2, 2, 2112, 2113, 7, 81, 2, 2, 2113, 2114, 7, 84, 2, 2, 2114, 2115, 7, 86, 2, 2, 2115, 430, 3, 2, 2, 2, 2116, 2117, 7, 85, 2, 2, 2117, 2118, 7, 81, 2, 2, 2118, 2119, 7, 84, 2, 2, 2119, 2120, 7, 86, 2, 2, 2120, 2121, 7, 71, 2, 2, 2121, 2122, 7, 70, 2, 2, 2122, 432, 3, 2, 2, 2, 2123, 2124, 7, 85, 2, 2, 2124, 2125, 7, 86, 2, 2, 2125, 2126, 7, 67, 2, 2, 2126, 2127, 7, 84, 2, 2, 2127, 2128, 7, 86, 2, 2, 2128, 434, 3, 2, 2, 2, 2129, 2130, 7, 85, 2, 2, 2130, 2131, 7, 86, 2, 2, 2131, 2132, 7, 67, 2, 2, 2132, 2133, 7, 86, 2, 2, 2133, 2134, 7, 75, 2, 2, 2134, 2135, 7, 85, 2, 2, 2135, 2136, 7, 86, 2, 2, 2136, 2137, 7, 75, 2, 2, 2137, 2138, 7, 69, 2, 2, 2138, 2139, 7, 85, 2, 2, 2139, 436, 3, 2, 2, 2, 2140, 2141, 7, 85, 2, 2, 2141, 2142, 7, 86, 2, 2, 2142, 2143, 7, 81, 2, 2, 2143, 2144, 7, 84, 2, 2, 2144, 2145, 7, 71, 2, 2, 2145, 2146, 7, 70, 2, 2, 2146, 438, 3, 2, 2, 2, 2147, 2148, 7, 85, 2, 2, 2148, 2149, 7, 86, 2, 2, 2149, 2150, 7, 84, 2, 2, 2150, 2151, 7, 67, 2, 2, 2151, 2152, 7, 86, 2, 2, 2152, 2153, 7, 75, 2, 2, 2153, 2154, 7, 72, 2, 2, 2154, 2155, 7, 91, 2, 2, 2155, 440, 3, 2, 2, 2, 2156, 2157, 7, 85, 2, 2, 2157, 2158, 7, 86, 2, 2, 2158, 2159, 7, 84, 2, 2, 2159, 2160, 7, 87, 2, 2, 2160, 2161, 7, 69, 2, 2, 2161, 2162, 7, 86, 2, 2, 2162, 442, 3, 2, 2, 2, 2163, 2164, 7, 85, 2, 2, 2164, 2165, 7, 87, 2, 2, 2165, 2166, 7, 68, 2, 2, 2166, 2167, 7, 85, 2, 2, 2167, 2168, 7, 86, 2, 2, 2168, 2169, 7, 84, 2, 2, 2169, 444, 3, 2, 2, 2, 2170, 2171, 7, 85, 2, 2, 2171, 2172, 7, 87, 2, 2, 2172, 2173, 7, 68, 2, 2, 2173, 2174, 7, 85, 2, 2, 2174, 2175, 7, 86, 2, 2, 2175, 2176, 7, 84, 2, 2, 2176, 2177, 7, 75, 2, 2, 2177, 2178, 7, 80, 2, 2, 2178, 2179, 7, 73, 2, 2, 2179, 446, 3, 2, 2, 2, 2180, 2181, 7, 86, 2, 2, 2181, 2182, 7, 67, 2, 2, 2182, 2183, 7, 68, 2, 2, 2183, 2184, 7, 78, 2, 2, 2184, 2185, 7, 71, 2, 2, 2185, 448, 3, 2, 2, 2, 2186, 2187, 7, 86, 2, 2, 2187, 2188, 7, 67, 2, 2, 2188, 2189, 7, 68, 2, 2, 2189, 2190, 7, 78, 2, 2, 2190, 2191, 7, 71, 2, 2, 2191, 2192, 7, 85, 2, 2, 2192, 450, 3, 2, 2, 2, 2193, 2194, 7, 86, 2, 2, 2194, 2195, 7, 67, 2, 2, 2195, 2196, 7, 68, 2, 2, 2196, 2197, 7, 78, 2, 2, 2197, 2198, 7, 71, 2, 2, 2198, 2199, 7, 85, 2, 2, 2199, 2200, 7, 67, 2, 2, 2200, 2201, 7, 79, 2, 2, 2201, 2202, 7, 82, 2, 2, 2202, 2203, 7, 78, 2, 2, 2203, 2204, 7, 71, 2, 2, 2204, 452, 3, 2, 2, 2, 2205, 2206, 7, 86, 2, 2, 2206, 2207, 7, 68, 2, 2, 2207, 2208, 7, 78, 2, 2, 2208, 2209, 7, 82, 2, 2, 2209, 2210, 7, 84, 2, 2, 2210, 2211, 7, 81, 2, 2, 2211, 2212, 7, 82, 2, 2, 2212, 2213, 7, 71, 2, 2, 2213, 2214, 7, 84, 2, 2, 2214, 2215, 7, 86, 2, 2, 2215, 2216, 7, 75, 2, 2, 2216, 2217, 7, 71, 2, 2, 2217, 2218, 7, 85, 2, 2, 2218, 454, 3, 2, 2, 2, 2219, 2220, 7, 86, 2, 2, 2220, 2221, 7, 71, 2, 2, 2221, 2222, 7, 79, 2, 2, 2222, 2223, 7, 82, 2, 2, 2223, 2224, 7, 81, 2, 2, 2224, 2225, 7, 84, 2, 2, 2225, 2226, 7, 67, 2, 2, 2226, 2227, 7, 84, 2, 2, 2227, 2233, 7, 91, 2, 2, 2228, 2229, 7, 86, 2, 2, 2229, 2230, 7, 71, 2, 2, 2230, 2231, 7, 79, 2, 2, 2231, 2233, 7, 82, 2, 2, 2232, 2219, 3, 2, 2, 2, 2232, 2228, 3, 2, 2, 2, 2233, 456, 3, 2, 2, 2, 2234, 2235, 7, 86, 2, 2, 2235, 2236, 7, 71, 2, 2, 2236, 2237, 7, 84, 2, 2, 2237, 2238, 7, 79, 2, 2, 2238, 2239, 7, 75, 2, 2, 2239, 2240, 7, 80, 2, 2, 2240, 2241, 7, 67, 2, 2, 2241, 2242, 7, 86, 2, 2, 2242, 2243, 7, 71, 2, 2, 2243, 2244, 7, 70, 2, 2, 2244, 458, 3, 2, 2, 2, 2245, 2246, 7, 86, 2, 2, 2246, 2247, 7, 74, 2, 2, 2247, 2248, 7, 71, 2, 2, 2248, 2249, 7, 80, 2, 2, 2249, 460, 3, 2, 2, 2, 2250, 2251, 7, 86, 2, 2, 2251, 2252, 7, 75, 2, 2, 2252, 2253, 7, 79, 2, 2, 2253, 2254, 7, 71, 2, 2, 2254, 462, 3, 2, 2, 2, 2255, 2256, 7, 86, 2, 2, 2256, 2257, 7, 81, 2, 2, 2257, 464, 3, 2, 2, 2, 2258, 2259, 7, 86, 2, 2, 2259, 2260, 7, 81, 2, 2, 2260, 2261, 7, 87, 2, 2, 2261, 2262, 7, 69, 2, 2, 2262, 2263, 7, 74, 2, 2, 2263, 466, 3, 2, 2, 2, 2264, 2265, 7, 86, 2, 2, 2265, 2266, 7, 84, 2, 2, 2266, 2267, 7, 67, 2, 2, 2267, 2268, 7, 75, 2, 2, 2268, 2269, 7, 78, 2, 2, 2269, 2270, 7, 75, 2, 2, 2270, 2271, 7, 80, 2, 2, 2271, 2272, 7, 73, 2, 2, 2272, 468, 3, 2, 2, 2, 2273, 2274, 7, 86, 2, 2, 2274, 2275, 7, 84, 2, 2, 2275, 2276, 7, 67, 2, 2, 2276, 2277, 7, 80, 2, 2, 2277, 2278, 7, 85, 2, 2, 2278, 2279, 7, 67, 2, 2, 2279, 2280, 7, 69, 2, 2, 2280, 2281, 7, 86, 2, 2, 2281, 2282, 7, 75, 2, 2, 2282, 2283, 7, 81, 2, 2, 2283, 2284, 7, 80, 2, 2, 2284, 470, 3, 2, 2, 2, 2285, 2286, 7, 86, 2, 2, 2286, 2287, 7, 84, 2, 2, 2287, 2288, 7, 67, 2, 2, 2288, 2289, 7, 80, 2, 2, 2289, 2290, 7, 85, 2, 2, 2290, 2291, 7, 67, 2, 2, 2291, 2292, 7, 69, 2, 2, 2292, 2293, 7, 86, 2, 2, 2293, 2294, 7, 75, 2, 2, 2294, 2295, 7, 81, 2, 2, 2295, 2296, 7, 80, 2, 2, 2296, 2297, 7, 85, 2, 2, 2297, 472, 3, 2, 2, 2, 2298, 2299, 7, 86, 2, 2, 2299, 2300, 7, 84, 2, 2, 2300, 2301, 7, 67, 2, 2, 2301, 2302, 7, 80, 2, 2, 2302, 2303, 7, 85, 2, 2, 2303, 2304, 7, 72, 2, 2, 2304, 2305, 7, 81, 2, 2, 2305, 2306, 7, 84, 2, 2, 2306, 2307, 7, 79, 2, 2, 2307, 474, 3, 2, 2, 2, 2308, 2309, 7, 86, 2, 2, 2309, 2310, 7, 84, 2, 2, 2310, 2311, 7, 75, 2, 2, 2311, 2312, 7, 79, 2, 2, 2312, 476, 3, 2, 2, 2, 2313, 2314, 7, 86, 2, 2, 2314, 2315, 7, 84, 2, 2, 2315, 2316, 7, 87, 2, 2, 2316, 2317, 7, 71, 2, 2, 2317, 478, 3, 2, 2, 2, 2318, 2319, 7, 86, 2, 2, 2319, 2320, 7, 84, 2, 2, 2320, 2321, 7, 87, 2, 2, 2321, 2322, 7, 80, 2, 2, 2322, 2323, 7, 69, 2, 2, 2323, 2324, 7, 67, 2, 2, 2324, 2325, 7, 86, 2, 2, 2325, 2326, 7, 71, 2, 2, 2326, 480, 3, 2, 2, 2, 2327, 2328, 7, 86, 2, 2, 2328, 2329, 7, 91, 2, 2, 2329, 2330, 7, 82, 2, 2, 2330, 2331, 7, 71, 2, 2, 2331, 482, 3, 2, 2, 2, 2332, 2333, 7, 87, 2, 2, 2333, 2334, 7, 80, 2, 2, 2334, 2335, 7, 67, 2, 2, 2335, 2336, 7, 84, 2, 2, 2336, 2337, 7, 69, 2, 2, 2337, 2338, 7, 74, 2, 2, 2338, 2339, 7, 75, 2, 2, 2339, 2340, 7, 88, 2, 2, 2340, 2341, 7, 71, 2, 2, 2341, 484, 3, 2, 2, 2, 2342, 2343, 7, 87, 2, 2, 2343, 2344, 7, 80, 2, 2, 2344, 2345, 7, 68, 2, 2, 2345, 2346, 7, 81, 2, 2, 2346, 2347, 7, 87, 2, 2, 2347, 2348, 7, 80, 2, 2, 2348, 2349, 7, 70, 2, 2, 2349, 2350, 7, 71, 2, 2, 2350, 2351, 7, 70, 2, 2, 2351, 486, 3, 2, 2, 2, 2352, 2353, 7, 87, 2, 2, 2353, 2354, 7, 80, 2, 2, 2354, 2355, 7, 69, 2, 2, 2355, 2356, 7, 67, 2, 2, 2356, 2357, 7, 69, 2, 2, 2357, 2358, 7, 74, 2, 2, 2358, 2359, 7, 71, 2, 2, 2359, 488, 3, 2, 2, 2, 2360, 2361, 7, 87, 2, 2, 2361, 2362, 7, 80, 2, 2, 2362, 2363, 7, 75, 2, 2, 2363, 2364, 7, 81, 2, 2, 2364, 2365, 7, 80, 2, 2, 2365, 490, 3, 2, 2, 2, 2366, 2367, 7, 87, 2, 2, 2367, 2368, 7, 80, 2, 2, 2368, 2369, 7, 75, 2, 2, 2369, 2370, 7, 83, 2, 2, 2370, 2371, 7, 87, 2, 2, 2371, 2372, 7, 71, 2, 2, 2372, 492, 3, 2, 2, 2, 2373, 2374, 7, 87, 2, 2, 2374, 2375, 7, 80, 2, 2, 2375, 2376, 7, 77, 2, 2, 2376, 2377, 7, 80, 2, 2, 2377, 2378, 7, 81, 2, 2, 2378, 2379, 7, 89, 2, 2, 2379, 2380, 7, 80, 2, 2, 2380, 494, 3, 2, 2, 2, 2381, 2382, 7, 87, 2, 2, 2382, 2383, 7, 80, 2, 2, 2383, 2384, 7, 78, 2, 2, 2384, 2385, 7, 81, 2, 2, 2385, 2386, 7, 69, 2, 2, 2386, 2387, 7, 77, 2, 2, 2387, 496, 3, 2, 2, 2, 2388, 2389, 7, 87, 2, 2, 2389, 2390, 7, 80, 2, 2, 2390, 2391, 7, 85, 2, 2, 2391, 2392, 7, 71, 2, 2, 2392, 2393, 7, 86, 2, 2, 2393, 498, 3, 2, 2, 2, 2394, 2395, 7, 87, 2, 2, 2395, 2396, 7, 82, 2, 2, 2396, 2397, 7, 70, 2, 2, 2397, 2398, 7, 67, 2, 2, 2398, 2399, 7, 86, 2, 2, 2399, 2400, 7, 71, 2, 2, 2400, 500, 3, 2, 2, 2, 2401, 2402, 7, 87, 2, 2, 2402, 2403, 7, 85, 2, 2, 2403, 2404, 7, 71, 2, 2, 2404, 502, 3, 2, 2, 2, 2405, 2406, 7, 87, 2, 2, 2406, 2407, 7, 85, 2, 2, 2407, 2408, 7, 71, 2, 2, 2408, 2409, 7, 84, 2, 2, 2409, 504, 3, 2, 2, 2, 2410, 2411, 7, 87, 2, 2, 2411, 2412, 7, 85, 2, 2, 2412, 2413, 7, 75, 2, 2, 2413, 2414, 7, 80, 2, 2, 2414, 2415, 7, 73, 2, 2, 2415, 506, 3, 2, 2, 2, 2416, 2417, 7, 88, 2, 2, 2417, 2418, 7, 67, 2, 2, 2418, 2419, 7, 78, 2, 2, 2419, 2420, 7, 87, 2, 2, 2420, 2421, 7, 71, 2, 2, 2421, 2422, 7, 85, 2, 2, 2422, 508, 3, 2, 2, 2, 2423, 2424, 7, 88, 2, 2, 2424, 2425, 7, 75, 2, 2, 2425, 2426, 7, 71, 2, 2, 2426, 2427, 7, 89, 2, 2, 2427, 510, 3, 2, 2, 2, 2428, 2429, 7, 88, 2, 2, 2429, 2430, 7, 75, 2, 2, 2430, 2431, 7, 71, 2, 2, 2431, 2432, 7, 89, 2, 2, 2432, 2433, 7, 85, 2, 2, 2433, 512, 3, 2, 2, 2, 2434, 2435, 7, 89, 2, 2, 2435, 2436, 7, 74, 2, 2, 2436, 2437, 7, 71, 2, 2, 2437, 2438, 7, 80, 2, 2, 2438, 514, 3, 2, 2, 2, 2439, 2440, 7, 89, 2, 2, 2440, 2441, 7, 74, 2, 2, 2441, 2442, 7, 71, 2, 2, 2442, 2443, 7, 84, 2, 2, 2443, 2444, 7, 71, 2, 2, 2444, 516, 3, 2, 2, 2, 2445, 2446, 7, 89, 2, 2, 2446, 2447, 7, 75, 2, 2, 2447, 2448, 7, 80, 2, 2, 2448, 2449, 7, 70, 2, 2, 2449, 2450, 7, 81, 2, 2, 2450, 2451, 7, 89, 2, 2, 2451, 518, 3, 2, 2, 2, 2452, 2453, 7, 89, 2, 2, 2453, 2454, 7, 75, 2, 2, 2454, 2455, 7, 86, 2, 2, 2455, 2456, 7, 74, 2, 2, 2456, 520, 3, 2, 2, 2, 2457, 2458, 7, 92, 2, 2, 2458, 2459, 7, 81, 2, 2, 2459, 2460, 7, 80, 2, 2, 2460, 2461, 7, 71, 2, 2, 2461, 522, 3, 2, 2, 2, 2462, 2466, 7, 63, 2, 2, 2463, 2464, 7, 63, 2, 2, 2464, 2466, 7, 63, 2, 2, 2465, 2462, 3, 2, 2, 2, 2465, 2463, 3, 2, 2, 2, 2466, 524, 3, 2, 2, 2, 2467, 2468, 7, 62, 2, 2, 2468, 2469, 7, 63, 2, 2, 2469, 2470, 7, 64, 2, 2, 2470, 526, 3, 2, 2, 2, 2471, 2472, 7, 62, 2, 2, 2472, 2473, 7, 64, 2, 2, 2473, 528, 3, 2, 2, 2, 2474, 2475, 7, 35, 2, 2, 2475, 2476, 7, 63, 2, 2, 2476, 530, 3, 2, 2, 2, 2477, 2478, 7, 62, 2, 2, 2478, 532, 3, 2, 2, 2, 2479, 2480, 7, 62, 2, 2, 2480, 2484, 7, 63, 2, 2, 2481, 2482, 7, 35, 2, 2, 2482, 2484, 7, 64, 2, 2, 2483, 2479, 3, 2, 2, 2, 2483, 2481, 3, 2, 2, 2, 2484, 534, 3, 2, 2, 2, 2485, 2486, 7, 64, 2, 2, 2486, 536, 3, 2, 2, 2, 2487, 2488, 7, 64, 2, 2, 2488, 2492, 7, 63, 2, 2, 2489, 2490, 7, 35, 2, 2, 2490, 2492, 7, 62, 2, 2, 2491, 2487, 3, 2, 2, 2, 2491, 2489, 3, 2, 2, 2, 2492, 538, 3, 2, 2, 2, 2493, 2494, 7, 45, 2, 2, 2494, 540, 3, 2, 2, 2, 2495, 2496, 7, 47, 2, 2, 2496, 542, 3, 2, 2, 2, 2497, 2498, 7, 44, 2, 2, 2498, 544, 3, 2, 2, 2, 2499, 2500, 7, 49, 2, 2, 2500, 546, 3, 2, 2, 2, 2501, 2502, 7, 39, 2, 2, 2502, 548, 3, 2, 2, 2, 2503, 2504, 7, 128, 2, 2, 2504, 550, 3, 2, 2, 2, 2505, 2506, 7, 40, 2, 2, 2506, 552, 3, 2, 2, 2, 2507, 2508, 7, 126, 2, 2, 2508, 554, 3, 2, 2, 2, 2509, 2510, 7, 126, 2, 2, 2510, 2511, 7, 126, 2, 2, 2511, 556, 3, 2, 2, 2, 2512, 2513, 7, 96, 2, 2, 2513, 558, 3, 2, 2, 2, 2514, 2520, 7, 41, 2, 2, 2515, 2519, 10, 2, 2, 2, 2516, 2517, 7, 94, 2, 2, 2517, 2519, 11, 2, 2, 2, 2518, 2515, 3, 2, 2, 2, 2518, 2516, 3, 2, 2, 2, 2519, 2522, 3, 2, 2, 2, 2520, 2518, 3, 2, 2, 2, 2520, 2521, 3, 2, 2, 2, 2521, 2523, 3, 2, 2, 2, 2522, 2520, 3, 2, 2, 2, 2523, 2535, 7, 41, 2, 2, 2524, 2530, 7, 36, 2, 2, 2525, 2529, 10, 3, 2, 2, 2526, 2527, 7, 94, 2, 2, 2527, 2529, 11, 2, 2, 2, 2528, 2525, 3, 2, 2, 2, 2528, 2526, 3, 2, 2, 2, 2529, 2532, 3, 2, 2, 2, 2530, 2528, 3, 2, 2, 2, 2530, 2531, 3, 2, 2, 2, 2531, 2533, 3, 2, 2, 2, 2532, 2530, 3, 2, 2, 2, 2533, 2535, 7, 36, 2, 2, 2534, 2514, 3, 2, 2, 2, 2534, 2524, 3, 2, 2, 2, 2535, 560, 3, 2, 2, 2, 2536, 2538, 5, 587, 294, 2, 2537, 2536, 3, 2, 2, 2, 2538, 2539, 3, 2, 2, 2, 2539, 2537, 3, 2, 2, 2, 2539, 2540, 3, 2, 2, 2, 2540, 2541, 3, 2, 2, 2, 2541, 2542, 7, 78, 2, 2, 2542, 562, 3, 2, 2, 2, 2543, 2545, 5, 587, 294, 2, 2544, 2543, 3, 2, 2, 2, 2545, 2546, 3, 2, 2, 2, 2546, 2544, 3, 2, 2, 2, 2546, 2547, 3, 2, 2, 2, 2547, 2548, 3, 2, 2, 2, 2548, 2549, 7, 85, 2, 2, 2549, 564, 3, 2, 2, 2, 2550, 2552, 5, 587, 294, 2, 2551, 2550, 3, 2, 2, 2, 2552, 2553, 3, 2, 2, 2, 2553, 2551, 3, 2, 2, 2, 2553, 2554, 3, 2, 2, 2, 2554, 2555, 3, 2, 2, 2, 2555, 2556, 7, 91, 2, 2, 2556, 566, 3, 2, 2, 2, 2557, 2559, 5, 587, 294, 2, 2558, 2557, 3, 2, 2, 2, 2559, 2560, 3, 2, 2, 2, 2560, 2558, 3, 2, 2, 2, 2560, 2561, 3, 2, 2, 2, 2561, 568, 3, 2, 2, 2, 2562, 2564, 5, 587, 294, 2, 2563, 2562, 3, 2, 2, 2, 2564, 2565, 3, 2, 2, 2, 2565, 2563, 3, 2, 2, 2, 2565, 2566, 3, 2, 2, 2, 2566, 2567, 3, 2, 2, 2, 2567, 2568, 5, 585, 293, 2, 2568, 2574, 3, 2, 2, 2, 2569, 2570, 5, 583, 292, 2, 2570, 2571, 5, 585, 293, 2, 2571, 2572, 6, 285, 2, 2, 2572, 2574, 3, 2, 2, 2, 2573, 2563, 3, 2, 2, 2, 2573, 2569, 3, 2, 2, 2, 2574, 570, 3, 2, 2, 2, 2575, 2576, 5, 583, 292, 2, 2576, 2577, 6, 286, 3, 2, 2577, 572, 3, 2, 2, 2, 2578, 2580, 5, 587, 294, 2, 2579, 2578, 3, 2, 2, 2, 2580, 2581, 3, 2, 2, 2, 2581, 2579, 3, 2, 2, 2, 2581, 2582, 3, 2, 2, 2, 2582, 2584, 3, 2, 2, 2, 2583, 2585, 5, 585, 293, 2, 2584, 2583, 3, 2, 2, 2, 2584, 2585, 3, 2, 2, 2, 2585, 2586, 3, 2, 2, 2, 2586, 2587, 7, 72, 2, 2, 2587, 2596, 3, 2, 2, 2, 2588, 2590, 5, 583, 292, 2, 2589, 2591, 5, 585, 293, 2, 2590, 2589, 3, 2, 2, 2, 2590, 2591, 3, 2, 2, 2, 2591, 2592, 3, 2, 2, 2, 2592, 2593, 7, 72, 2, 2, 2593, 2594, 6, 287, 4, 2, 2594, 2596, 3, 2, 2, 2, 2595, 2579, 3, 2, 2, 2, 2595, 2588, 3, 2, 2, 2, 2596, 574, 3, 2, 2, 2, 2597, 2599, 5, 587, 294, 2, 2598, 2597, 3, 2, 2, 2, 2599, 2600, 3, 2, 2, 2, 2600, 2598, 3, 2, 2, 2, 2600, 2601, 3, 2, 2, 2, 2601, 2603, 3, 2, 2, 2, 2602, 2604, 5, 585, 293, 2, 2603, 2602, 3, 2, 2, 2, 2603, 2604, 3, 2, 2, 2, 2604, 2605, 3, 2, 2, 2, 2605, 2606, 7, 70, 2, 2, 2606, 2615, 3, 2, 2, 2, 2607, 2609, 5, 583, 292, 2, 2608, 2610, 5, 585, 293, 2, 2609, 2608, 3, 2, 2, 2, 2609, 2610, 3, 2, 2, 2, 2610, 2611, 3, 2, 2, 2, 2611, 2612, 7, 70, 2, 2, 2612, 2613, 6, 288, 5, 2, 2613, 2615, 3, 2, 2, 2, 2614, 2598, 3, 2, 2, 2, 2614, 2607, 3, 2, 2, 2, 2615, 576, 3, 2, 2, 2, 2616, 2618, 5, 587, 294, 2, 2617, 2616, 3, 2, 2, 2, 2618, 2619, 3, 2, 2, 2, 2619, 2617, 3, 2, 2, 2, 2619, 2620, 3, 2, 2, 2, 2620, 2622, 3, 2, 2, 2, 2621, 2623, 5, 585, 293, 2, 2622, 2621, 3, 2, 2, 2, 2622, 2623, 3, 2, 2, 2, 2623, 2624, 3, 2, 2, 2, 2624, 2625, 7, 68, 2, 2, 2625, 2626, 7, 70, 2, 2, 2626, 2637, 3, 2, 2, 2, 2627, 2629, 5, 583, 292, 2, 2628, 2630, 5, 585, 293, 2, 2629, 2628, 3, 2, 2, 2, 2629, 2630, 3, 2, 2, 2, 2630, 2631, 3, 2, 2, 2, 2631, 2632, 7, 68, 2, 2, 2632, 2633, 7, 70, 2, 2, 2633, 2634, 3, 2, 2, 2, 2634, 2635, 6, 289, 6, 2, 2635, 2637, 3, 2, 2, 2, 2636, 2617, 3, 2, 2, 2, 2636, 2627, 3, 2, 2, 2, 2637, 578, 3, 2, 2, 2, 2638, 2642, 5, 589, 295, 2, 2639, 2642, 5, 587, 294, 2, 2640, 2642, 7, 97, 2, 2, 2641, 2638, 3, 2, 2, 2, 2641, 2639, 3, 2, 2, 2, 2641, 2640, 3, 2, 2, 2, 2642, 2643, 3, 2, 2, 2, 2643, 2641, 3, 2, 2, 2, 2643, 2644, 3, 2, 2, 2, 2644, 580, 3, 2, 2, 2, 2645, 2651, 7, 98, 2, 2, 2646, 2650, 10, 4, 2, 2, 2647, 2648, 7, 98, 2, 2, 2648, 2650, 7, 98, 2, 2, 2649, 2646, 3, 2, 2, 2, 2649, 2647, 3, 2, 2, 2, 2650, 2653, 3, 2, 2, 2, 2651, 2649, 3, 2, 2, 2, 2651, 2652, 3, 2, 2, 2, 2652, 2654, 3, 2, 2, 2, 2653, 2651, 3, 2, 2, 2, 2654, 2655, 7, 98, 2, 2, 2655, 582, 3, 2, 2, 2, 2656, 2658, 5, 587, 294, 2, 2657, 2656, 3, 2, 2, 2, 2658, 2659, 3, 2, 2, 2, 2659, 2657, 3, 2, 2, 2, 2659, 2660, 3, 2, 2, 2, 2660, 2661, 3, 2, 2, 2, 2661, 2665, 7, 48, 2, 2, 2662, 2664, 5, 587, 294, 2, 2663, 2662, 3, 2, 2, 2, 2664, 2667, 3, 2, 2, 2, 2665, 2663, 3, 2, 2, 2, 2665, 2666, 3, 2, 2, 2, 2666, 2675, 3, 2, 2, 2, 2667, 2665, 3, 2, 2, 2, 2668, 2670, 7, 48, 2, 2, 2669, 2671, 5, 587, 294, 2, 2670, 2669, 3, 2, 2, 2, 2671, 2672, 3, 2, 2, 2, 2672, 2670, 3, 2, 2, 2, 2672, 2673, 3, 2, 2, 2, 2673, 2675, 3, 2, 2, 2, 2674, 2657, 3, 2, 2, 2, 2674, 2668, 3, 2, 2, 2, 2675, 584, 3, 2, 2, 2, 2676, 2678, 7, 71, 2, 2, 2677, 2679, 9, 5, 2, 2, 2678, 2677, 3, 2, 2, 2, 2678, 2679, 3, 2, 2, 2, 2679, 2681, 3, 2, 2, 2, 2680, 2682, 5, 587, 294, 2, 2681, 2680, 3, 2, 2, 2, 2682, 2683, 3, 2, 2, 2, 2683, 2681, 3, 2, 2, 2, 2683, 2684, 3, 2, 2, 2, 2684, 586, 3, 2, 2, 2, 2685, 2686, 9, 6, 2, 2, 2686, 588, 3, 2, 2, 2, 2687, 2688, 9, 7, 2, 2, 2688, 590, 3, 2, 2, 2, 2689, 2690, 7, 47, 2, 2, 2690, 2691, 7, 47, 2, 2, 2691, 2697, 3, 2, 2, 2, 2692, 2693, 7, 94, 2, 2, 2693, 2696, 7, 12, 2, 2, 2694, 2696, 10, 8, 2, 2, 2695, 2692, 3, 2, 2, 2, 2695, 2694, 3, 2, 2, 2, 2696, 2699, 3, 2, 2, 2, 2697, 2695, 3, 2, 2, 2, 2697, 2698, 3, 2, 2, 2, 2698, 2701, 3, 2, 2, 2, 2699, 2697, 3, 2, 2, 2, 2700, 2702, 7, 15, 2, 2, 2701, 2700, 3, 2, 2, 2, 2701, 2702, 3, 2, 2, 2, 2702, 2704, 3, 2, 2, 2, 2703, 2705, 7, 12, 2, 2, 2704, 2703, 3, 2, 2, 2, 2704, 2705, 3, 2, 2, 2, 2705, 2706, 3, 2, 2, 2, 2706, 2707, 8, 296, 2, 2, 2707, 592, 3, 2, 2, 2, 2708, 2709, 7, 49, 2, 2, 2709, 2710, 7, 44, 2, 2, 2710, 2711, 3, 2, 2, 2, 2711, 2716, 6, 297, 7, 2, 2712, 2715, 5, 593, 297, 2, 2713, 2715, 11, 2, 2, 2, 2714, 2712, 3, 2, 2, 2, 2714, 2713, 3, 2, 2, 2, 2715, 2718, 3, 2, 2, 2, 2716, 2717, 3, 2, 2, 2, 2716, 2714, 3, 2, 2, 2, 2717, 2719, 3, 2, 2, 2, 2718, 2716, 3, 2, 2, 2, 2719, 2720, 7, 44, 2, 2, 2720, 2721, 7, 49, 2, 2, 2721, 2722, 3, 2, 2, 2, 2722, 2723, 8, 297, 2, 2, 2723, 594, 3, 2, 2, 2, 2724, 2726, 9, 9, 2, 2, 2725, 2724, 3, 2, 2, 2, 2726, 2727, 3, 2, 2, 2, 2727, 2725, 3, 2, 2, 2, 2727, 2728, 3, 2, 2, 2, 2728, 2729, 3, 2, 2, 2, 2729, 2730, 8, 298, 2, 2, 2730, 596, 3, 2, 2, 2, 2731, 2732, 11, 2, 2, 2, 2732, 598, 3, 2, 2, 2, 50, 2, 1022, 1631, 1977, 2232, 2465, 2483, 2491, 2518, 2520, 2528, 2530, 2534, 2539, 2546, 2553, 2560, 2565, 2573, 2581, 2584, 2590, 2595, 2600, 2603, 2609, 2614, 2619, 2622, 2629, 2636, 2641, 2643, 2649, 2651, 2659, 2665, 2672, 2674, 2678, 2683, 2695, 2697, 2701, 2704, 2714, 2716, 2727, 3, 2, 3, 2] \ No newline at end of file diff --git a/src/lib/spark/SqlBaseLexer.js b/src/lib/spark/SqlBaseLexer.js new file mode 100644 index 0000000..aa2b36e --- /dev/null +++ b/src/lib/spark/SqlBaseLexer.js @@ -0,0 +1,2436 @@ +// Generated from /Users/jinjiongxi/workspace/dt-sql-parser/src/grammar/spark/SqlBase.g4 by ANTLR 4.8 +// jshint ignore: start +var antlr4 = require('antlr4/index'); + + + +var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", + "\u0002\u0128\u0aad\b\u0001\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004", + "\u0004\t\u0004\u0004\u0005\t\u0005\u0004\u0006\t\u0006\u0004\u0007\t", + "\u0007\u0004\b\t\b\u0004\t\t\t\u0004\n\t\n\u0004\u000b\t\u000b\u0004", + "\f\t\f\u0004\r\t\r\u0004\u000e\t\u000e\u0004\u000f\t\u000f\u0004\u0010", + "\t\u0010\u0004\u0011\t\u0011\u0004\u0012\t\u0012\u0004\u0013\t\u0013", + "\u0004\u0014\t\u0014\u0004\u0015\t\u0015\u0004\u0016\t\u0016\u0004\u0017", + "\t\u0017\u0004\u0018\t\u0018\u0004\u0019\t\u0019\u0004\u001a\t\u001a", + "\u0004\u001b\t\u001b\u0004\u001c\t\u001c\u0004\u001d\t\u001d\u0004\u001e", + "\t\u001e\u0004\u001f\t\u001f\u0004 \t \u0004!\t!\u0004\"\t\"\u0004#", + "\t#\u0004$\t$\u0004%\t%\u0004&\t&\u0004\'\t\'\u0004(\t(\u0004)\t)\u0004", + "*\t*\u0004+\t+\u0004,\t,\u0004-\t-\u0004.\t.\u0004/\t/\u00040\t0\u0004", + "1\t1\u00042\t2\u00043\t3\u00044\t4\u00045\t5\u00046\t6\u00047\t7\u0004", + "8\t8\u00049\t9\u0004:\t:\u0004;\t;\u0004<\t<\u0004=\t=\u0004>\t>\u0004", + "?\t?\u0004@\t@\u0004A\tA\u0004B\tB\u0004C\tC\u0004D\tD\u0004E\tE\u0004", + "F\tF\u0004G\tG\u0004H\tH\u0004I\tI\u0004J\tJ\u0004K\tK\u0004L\tL\u0004", + "M\tM\u0004N\tN\u0004O\tO\u0004P\tP\u0004Q\tQ\u0004R\tR\u0004S\tS\u0004", + "T\tT\u0004U\tU\u0004V\tV\u0004W\tW\u0004X\tX\u0004Y\tY\u0004Z\tZ\u0004", + "[\t[\u0004\\\t\\\u0004]\t]\u0004^\t^\u0004_\t_\u0004`\t`\u0004a\ta\u0004", + "b\tb\u0004c\tc\u0004d\td\u0004e\te\u0004f\tf\u0004g\tg\u0004h\th\u0004", + "i\ti\u0004j\tj\u0004k\tk\u0004l\tl\u0004m\tm\u0004n\tn\u0004o\to\u0004", + "p\tp\u0004q\tq\u0004r\tr\u0004s\ts\u0004t\tt\u0004u\tu\u0004v\tv\u0004", + "w\tw\u0004x\tx\u0004y\ty\u0004z\tz\u0004{\t{\u0004|\t|\u0004}\t}\u0004", + "~\t~\u0004\u007f\t\u007f\u0004\u0080\t\u0080\u0004\u0081\t\u0081\u0004", + "\u0082\t\u0082\u0004\u0083\t\u0083\u0004\u0084\t\u0084\u0004\u0085\t", + "\u0085\u0004\u0086\t\u0086\u0004\u0087\t\u0087\u0004\u0088\t\u0088\u0004", + "\u0089\t\u0089\u0004\u008a\t\u008a\u0004\u008b\t\u008b\u0004\u008c\t", + "\u008c\u0004\u008d\t\u008d\u0004\u008e\t\u008e\u0004\u008f\t\u008f\u0004", + "\u0090\t\u0090\u0004\u0091\t\u0091\u0004\u0092\t\u0092\u0004\u0093\t", + "\u0093\u0004\u0094\t\u0094\u0004\u0095\t\u0095\u0004\u0096\t\u0096\u0004", + "\u0097\t\u0097\u0004\u0098\t\u0098\u0004\u0099\t\u0099\u0004\u009a\t", + "\u009a\u0004\u009b\t\u009b\u0004\u009c\t\u009c\u0004\u009d\t\u009d\u0004", + "\u009e\t\u009e\u0004\u009f\t\u009f\u0004\u00a0\t\u00a0\u0004\u00a1\t", + "\u00a1\u0004\u00a2\t\u00a2\u0004\u00a3\t\u00a3\u0004\u00a4\t\u00a4\u0004", + "\u00a5\t\u00a5\u0004\u00a6\t\u00a6\u0004\u00a7\t\u00a7\u0004\u00a8\t", + "\u00a8\u0004\u00a9\t\u00a9\u0004\u00aa\t\u00aa\u0004\u00ab\t\u00ab\u0004", + "\u00ac\t\u00ac\u0004\u00ad\t\u00ad\u0004\u00ae\t\u00ae\u0004\u00af\t", + "\u00af\u0004\u00b0\t\u00b0\u0004\u00b1\t\u00b1\u0004\u00b2\t\u00b2\u0004", + "\u00b3\t\u00b3\u0004\u00b4\t\u00b4\u0004\u00b5\t\u00b5\u0004\u00b6\t", + "\u00b6\u0004\u00b7\t\u00b7\u0004\u00b8\t\u00b8\u0004\u00b9\t\u00b9\u0004", + "\u00ba\t\u00ba\u0004\u00bb\t\u00bb\u0004\u00bc\t\u00bc\u0004\u00bd\t", + "\u00bd\u0004\u00be\t\u00be\u0004\u00bf\t\u00bf\u0004\u00c0\t\u00c0\u0004", + "\u00c1\t\u00c1\u0004\u00c2\t\u00c2\u0004\u00c3\t\u00c3\u0004\u00c4\t", + "\u00c4\u0004\u00c5\t\u00c5\u0004\u00c6\t\u00c6\u0004\u00c7\t\u00c7\u0004", + "\u00c8\t\u00c8\u0004\u00c9\t\u00c9\u0004\u00ca\t\u00ca\u0004\u00cb\t", + "\u00cb\u0004\u00cc\t\u00cc\u0004\u00cd\t\u00cd\u0004\u00ce\t\u00ce\u0004", + "\u00cf\t\u00cf\u0004\u00d0\t\u00d0\u0004\u00d1\t\u00d1\u0004\u00d2\t", + "\u00d2\u0004\u00d3\t\u00d3\u0004\u00d4\t\u00d4\u0004\u00d5\t\u00d5\u0004", + "\u00d6\t\u00d6\u0004\u00d7\t\u00d7\u0004\u00d8\t\u00d8\u0004\u00d9\t", + "\u00d9\u0004\u00da\t\u00da\u0004\u00db\t\u00db\u0004\u00dc\t\u00dc\u0004", + "\u00dd\t\u00dd\u0004\u00de\t\u00de\u0004\u00df\t\u00df\u0004\u00e0\t", + "\u00e0\u0004\u00e1\t\u00e1\u0004\u00e2\t\u00e2\u0004\u00e3\t\u00e3\u0004", + "\u00e4\t\u00e4\u0004\u00e5\t\u00e5\u0004\u00e6\t\u00e6\u0004\u00e7\t", + "\u00e7\u0004\u00e8\t\u00e8\u0004\u00e9\t\u00e9\u0004\u00ea\t\u00ea\u0004", + "\u00eb\t\u00eb\u0004\u00ec\t\u00ec\u0004\u00ed\t\u00ed\u0004\u00ee\t", + "\u00ee\u0004\u00ef\t\u00ef\u0004\u00f0\t\u00f0\u0004\u00f1\t\u00f1\u0004", + "\u00f2\t\u00f2\u0004\u00f3\t\u00f3\u0004\u00f4\t\u00f4\u0004\u00f5\t", + "\u00f5\u0004\u00f6\t\u00f6\u0004\u00f7\t\u00f7\u0004\u00f8\t\u00f8\u0004", + "\u00f9\t\u00f9\u0004\u00fa\t\u00fa\u0004\u00fb\t\u00fb\u0004\u00fc\t", + "\u00fc\u0004\u00fd\t\u00fd\u0004\u00fe\t\u00fe\u0004\u00ff\t\u00ff\u0004", + "\u0100\t\u0100\u0004\u0101\t\u0101\u0004\u0102\t\u0102\u0004\u0103\t", + "\u0103\u0004\u0104\t\u0104\u0004\u0105\t\u0105\u0004\u0106\t\u0106\u0004", + "\u0107\t\u0107\u0004\u0108\t\u0108\u0004\u0109\t\u0109\u0004\u010a\t", + "\u010a\u0004\u010b\t\u010b\u0004\u010c\t\u010c\u0004\u010d\t\u010d\u0004", + "\u010e\t\u010e\u0004\u010f\t\u010f\u0004\u0110\t\u0110\u0004\u0111\t", + "\u0111\u0004\u0112\t\u0112\u0004\u0113\t\u0113\u0004\u0114\t\u0114\u0004", + "\u0115\t\u0115\u0004\u0116\t\u0116\u0004\u0117\t\u0117\u0004\u0118\t", + "\u0118\u0004\u0119\t\u0119\u0004\u011a\t\u011a\u0004\u011b\t\u011b\u0004", + "\u011c\t\u011c\u0004\u011d\t\u011d\u0004\u011e\t\u011e\u0004\u011f\t", + "\u011f\u0004\u0120\t\u0120\u0004\u0121\t\u0121\u0004\u0122\t\u0122\u0004", + "\u0123\t\u0123\u0004\u0124\t\u0124\u0004\u0125\t\u0125\u0004\u0126\t", + "\u0126\u0004\u0127\t\u0127\u0004\u0128\t\u0128\u0004\u0129\t\u0129\u0004", + "\u012a\t\u012a\u0004\u012b\t\u012b\u0003\u0002\u0003\u0002\u0003\u0003", + "\u0003\u0003\u0003\u0004\u0003\u0004\u0003\u0005\u0003\u0005\u0003\u0006", + "\u0003\u0006\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\b", + "\u0003\b\u0003\b\u0003\t\u0003\t\u0003\t\u0003\n\u0003\n\u0003\u000b", + "\u0003\u000b\u0003\f\u0003\f\u0003\r\u0003\r\u0003\r\u0003\r\u0003\u000e", + "\u0003\u000e\u0003\u000e\u0003\u000e\u0003\u000e\u0003\u000e\u0003\u000f", + "\u0003\u000f\u0003\u000f\u0003\u000f\u0003\u0010\u0003\u0010\u0003\u0010", + "\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0011\u0003\u0011\u0003\u0011", + "\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0012", + "\u0003\u0012\u0003\u0012\u0003\u0012\u0003\u0013\u0003\u0013\u0003\u0013", + "\u0003\u0013\u0003\u0013\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014", + "\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015", + "\u0003\u0015\u0003\u0015\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0016", + "\u0003\u0016\u0003\u0016\u0003\u0017\u0003\u0017\u0003\u0017\u0003\u0018", + "\u0003\u0018\u0003\u0018\u0003\u0018\u0003\u0019\u0003\u0019\u0003\u0019", + "\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001a", + "\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001a", + "\u0003\u001a\u0003\u001a\u0003\u001b\u0003\u001b\u0003\u001b\u0003\u001b", + "\u0003\u001b\u0003\u001b\u0003\u001b\u0003\u001b\u0003\u001c\u0003\u001c", + "\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001d\u0003\u001d\u0003\u001d", + "\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001e\u0003\u001e", + "\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e", + "\u0003\u001f\u0003\u001f\u0003\u001f\u0003 \u0003 \u0003 \u0003 \u0003", + " \u0003 \u0003!\u0003!\u0003!\u0003!\u0003!\u0003!\u0003!\u0003!\u0003", + "\"\u0003\"\u0003\"\u0003\"\u0003\"\u0003#\u0003#\u0003#\u0003#\u0003", + "#\u0003$\u0003$\u0003$\u0003$\u0003$\u0003$\u0003$\u0003%\u0003%\u0003", + "%\u0003%\u0003%\u0003%\u0003&\u0003&\u0003&\u0003&\u0003&\u0003&\u0003", + "\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003(\u0003", + "(\u0003(\u0003(\u0003(\u0003(\u0003(\u0003(\u0003(\u0003(\u0003)\u0003", + ")\u0003)\u0003)\u0003)\u0003)\u0003)\u0003)\u0003*\u0003*\u0003*\u0003", + "*\u0003*\u0003*\u0003*\u0003*\u0003+\u0003+\u0003+\u0003+\u0003+\u0003", + "+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003,\u0003,\u0003,\u0003,\u0003", + ",\u0003,\u0003,\u0003-\u0003-\u0003-\u0003-\u0003-\u0003-\u0003-\u0003", + "-\u0003.\u0003.\u0003.\u0003.\u0003.\u0003.\u0003.\u0003.\u0003/\u0003", + "/\u0003/\u0003/\u0003/\u0003/\u0003/\u00030\u00030\u00030\u00030\u0003", + "0\u00030\u00030\u00030\u00031\u00031\u00031\u00031\u00031\u00031\u0003", + "1\u00031\u00031\u00031\u00031\u00031\u00032\u00032\u00032\u00032\u0003", + "2\u00032\u00032\u00032\u00033\u00033\u00033\u00033\u00033\u00033\u0003", + "3\u00033\u00033\u00033\u00033\u00033\u00034\u00034\u00034\u00034\u0003", + "4\u00034\u00034\u00034\u00034\u00034\u00034\u00035\u00035\u00035\u0003", + "5\u00035\u00036\u00036\u00036\u00036\u00036\u00036\u00036\u00037\u0003", + "7\u00037\u00037\u00037\u00037\u00038\u00038\u00038\u00038\u00038\u0003", + "9\u00039\u00039\u00039\u00039\u00039\u00039\u00039\u0003:\u0003:\u0003", + ":\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003", + ":\u0003;\u0003;\u0003;\u0003;\u0003;\u0003;\u0003;\u0003;\u0003;\u0003", + ";\u0003;\u0003;\u0003;\u0003<\u0003<\u0003<\u0003<\u0003<\u0003<\u0003", + "<\u0003<\u0003<\u0003<\u0003<\u0003<\u0003<\u0003<\u0003<\u0003<\u0003", + "<\u0003<\u0003=\u0003=\u0003=\u0003=\u0003=\u0003=\u0003=\u0003=\u0003", + "=\u0003=\u0003=\u0003=\u0003=\u0003>\u0003>\u0003>\u0003>\u0003>\u0003", + "?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003@\u0003", + "@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003", + "@\u0003@\u0003@\u0003@\u0003@\u0005@\u03ff\n@\u0003A\u0003A\u0003A\u0003", + "A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003", + "B\u0003B\u0003B\u0003B\u0003B\u0003B\u0003B\u0003B\u0003C\u0003C\u0003", + "C\u0003C\u0003C\u0003C\u0003C\u0003D\u0003D\u0003D\u0003D\u0003D\u0003", + "D\u0003D\u0003D\u0003D\u0003D\u0003E\u0003E\u0003E\u0003E\u0003E\u0003", + "F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003G\u0003", + "G\u0003G\u0003G\u0003H\u0003H\u0003H\u0003H\u0003H\u0003H\u0003H\u0003", + "H\u0003H\u0003H\u0003H\u0003H\u0003I\u0003I\u0003I\u0003I\u0003I\u0003", + "I\u0003I\u0003I\u0003I\u0003I\u0003J\u0003J\u0003J\u0003J\u0003J\u0003", + "J\u0003J\u0003J\u0003J\u0003K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003", + "K\u0003K\u0003K\u0003K\u0003K\u0003L\u0003L\u0003L\u0003L\u0003M\u0003", + "M\u0003M\u0003M\u0003M\u0003N\u0003N\u0003N\u0003N\u0003N\u0003O\u0003", + "O\u0003O\u0003O\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003", + "Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003R\u0003R\u0003", + "R\u0003R\u0003R\u0003R\u0003R\u0003S\u0003S\u0003S\u0003S\u0003S\u0003", + "S\u0003S\u0003S\u0003S\u0003T\u0003T\u0003T\u0003T\u0003T\u0003T\u0003", + "T\u0003U\u0003U\u0003U\u0003U\u0003U\u0003U\u0003U\u0003U\u0003V\u0003", + "V\u0003V\u0003V\u0003V\u0003V\u0003V\u0003W\u0003W\u0003W\u0003W\u0003", + "W\u0003W\u0003W\u0003W\u0003W\u0003X\u0003X\u0003X\u0003X\u0003X\u0003", + "X\u0003X\u0003X\u0003X\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003", + "Y\u0003Y\u0003Z\u0003Z\u0003Z\u0003Z\u0003Z\u0003Z\u0003[\u0003[\u0003", + "[\u0003[\u0003[\u0003[\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003", + "\\\u0003\\\u0003]\u0003]\u0003]\u0003]\u0003]\u0003]\u0003]\u0003^\u0003", + "^\u0003^\u0003^\u0003^\u0003^\u0003^\u0003^\u0003^\u0003^\u0003^\u0003", + "_\u0003_\u0003_\u0003_\u0003_\u0003_\u0003`\u0003`\u0003`\u0003`\u0003", + "`\u0003`\u0003`\u0003`\u0003`\u0003`\u0003a\u0003a\u0003a\u0003a\u0003", + "b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003c\u0003c\u0003", + "c\u0003c\u0003c\u0003c\u0003c\u0003d\u0003d\u0003d\u0003d\u0003d\u0003", + "d\u0003d\u0003d\u0003d\u0003d\u0003e\u0003e\u0003e\u0003e\u0003e\u0003", + "f\u0003f\u0003f\u0003f\u0003f\u0003g\u0003g\u0003g\u0003g\u0003g\u0003", + "g\u0003g\u0003g\u0003g\u0003h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003", + "h\u0003h\u0003h\u0003h\u0003i\u0003i\u0003i\u0003i\u0003i\u0003i\u0003", + "i\u0003j\u0003j\u0003j\u0003j\u0003j\u0003j\u0003k\u0003k\u0003k\u0003", + "k\u0003k\u0003k\u0003l\u0003l\u0003l\u0003l\u0003l\u0003l\u0003l\u0003", + "l\u0003l\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003n\u0003", + "n\u0003n\u0003o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003p\u0003", + "p\u0003p\u0003p\u0003p\u0003p\u0003p\u0003q\u0003q\u0003q\u0003r\u0003", + "r\u0003r\u0003r\u0003r\u0003r\u0003s\u0003s\u0003s\u0003s\u0003s\u0003", + "s\u0003s\u0003s\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003u\u0003", + "u\u0003u\u0003u\u0003u\u0003u\u0003u\u0003v\u0003v\u0003v\u0003v\u0003", + "v\u0003v\u0003v\u0003v\u0003v\u0003v\u0003v\u0003v\u0003w\u0003w\u0003", + "w\u0003w\u0003w\u0003w\u0003w\u0003x\u0003x\u0003x\u0003x\u0003x\u0003", + "x\u0003x\u0003x\u0003x\u0003x\u0003y\u0003y\u0003y\u0003y\u0003y\u0003", + "y\u0003y\u0003y\u0003y\u0003z\u0003z\u0003z\u0003z\u0003z\u0003{\u0003", + "{\u0003{\u0003|\u0003|\u0003|\u0003|\u0003|\u0003|\u0003}\u0003}\u0003", + "}\u0003}\u0003}\u0003~\u0003~\u0003~\u0003~\u0003~\u0003\u007f\u0003", + "\u007f\u0003\u007f\u0003\u007f\u0003\u007f\u0003\u0080\u0003\u0080\u0003", + "\u0080\u0003\u0080\u0003\u0080\u0003\u0080\u0003\u0080\u0003\u0080\u0003", + "\u0081\u0003\u0081\u0003\u0081\u0003\u0081\u0003\u0081\u0003\u0082\u0003", + "\u0082\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082\u0003", + "\u0082\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083\u0003", + "\u0084\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0085\u0003", + "\u0085\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0086\u0003", + "\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0087\u0003", + "\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0088\u0003\u0088\u0003", + "\u0088\u0003\u0088\u0003\u0088\u0003\u0089\u0003\u0089\u0003\u0089\u0003", + "\u0089\u0003\u0089\u0003\u0089\u0003\u008a\u0003\u008a\u0003\u008a\u0003", + "\u008a\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a\u0003", + "\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008c\u0003", + "\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008d\u0003", + "\u008d\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008d\u0003", + "\u008d\u0003\u008e\u0003\u008e\u0003\u008e\u0003\u008e\u0003\u008e\u0003", + "\u008e\u0003\u008f\u0003\u008f\u0003\u008f\u0003\u008f\u0003\u0090\u0003", + "\u0090\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090\u0003", + "\u0090\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091\u0003", + "\u0091\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003", + "\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003", + "\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0094\u0003\u0094\u0003", + "\u0094\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0094\u0003", + "\u0094\u0003\u0094\u0003\u0094\u0003\u0095\u0003\u0095\u0003\u0095\u0003", + "\u0095\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0096\u0003", + "\u0096\u0003\u0096\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0005", + "\u0097\u0660\n\u0097\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098", + "\u0003\u0098\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099", + "\u0003\u0099\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009b\u0003\u009b", + "\u0003\u009b\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009c", + "\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d", + "\u0003\u009d\u0003\u009e\u0003\u009e\u0003\u009e\u0003\u009e\u0003\u009e", + "\u0003\u009e\u0003\u009e\u0003\u009e\u0003\u009f\u0003\u009f\u0003\u009f", + "\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0", + "\u0003\u00a1\u0003\u00a1\u0003\u00a1\u0003\u00a1\u0003\u00a2\u0003\u00a2", + "\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a3\u0003\u00a3", + "\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3", + "\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a4", + "\u0003\u00a4\u0003\u00a4\u0003\u00a4\u0003\u00a4\u0003\u00a5\u0003\u00a5", + "\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5", + "\u0003\u00a5\u0003\u00a6\u0003\u00a6\u0003\u00a6\u0003\u00a6\u0003\u00a6", + "\u0003\u00a6\u0003\u00a6\u0003\u00a6\u0003\u00a7\u0003\u00a7\u0003\u00a7", + "\u0003\u00a7\u0003\u00a7\u0003\u00a7\u0003\u00a7\u0003\u00a7\u0003\u00a7", + "\u0003\u00a7\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8", + "\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a9", + "\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9", + "\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00aa", + "\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa", + "\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00ab\u0003\u00ab", + "\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab", + "\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac", + "\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad", + "\u0003\u00ad\u0003\u00ad\u0003\u00ae\u0003\u00ae\u0003\u00ae\u0003\u00ae", + "\u0003\u00ae\u0003\u00ae\u0003\u00ae\u0003\u00ae\u0003\u00ae\u0003\u00af", + "\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af", + "\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00b0\u0003\u00b0\u0003\u00b0", + "\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b1", + "\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1", + "\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b2\u0003\u00b2", + "\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b2", + "\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b3\u0003\u00b3\u0003\u00b3", + "\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b4\u0003\u00b4\u0003\u00b4", + "\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b5\u0003\u00b5\u0003\u00b5", + "\u0003\u00b5\u0003\u00b5\u0003\u00b5\u0003\u00b6\u0003\u00b6\u0003\u00b6", + "\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6", + "\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b7\u0003\u00b7", + "\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7", + "\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b8", + "\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8", + "\u0003\u00b8\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9", + "\u0003\u00b9\u0003\u00b9\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00ba", + "\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00ba", + "\u0003\u00ba\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb", + "\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bc\u0003\u00bc\u0003\u00bc", + "\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bd\u0003\u00bd", + "\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00be", + "\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be", + "\u0003\u00be\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf", + "\u0003\u00bf\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0", + "\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c1\u0003\u00c1", + "\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c2", + "\u0003\u00c2\u0003\u00c2\u0003\u00c2\u0003\u00c2\u0003\u00c2\u0003\u00c3", + "\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3", + "\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0005\u00c3\u07ba\n", + "\u00c3\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003", + "\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003", + "\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003", + "\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003", + "\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c8\u0003\u00c8\u0003", + "\u00c8\u0003\u00c8\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003", + "\u00c9\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003", + "\u00ca\u0003\u00ca\u0003\u00cb\u0003\u00cb\u0003\u00cb\u0003\u00cb\u0003", + "\u00cb\u0003\u00cb\u0003\u00cb\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003", + "\u00cc\u0003\u00cc\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003", + "\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003", + "\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003", + "\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003", + "\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003", + "\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00d0\u0003\u00d0\u0003", + "\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003", + "\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d1\u0003", + "\u00d1\u0003\u00d1\u0003\u00d1\u0003\u00d2\u0003\u00d2\u0003\u00d2\u0003", + "\u00d2\u0003\u00d2\u0003\u00d2\u0003\u00d3\u0003\u00d3\u0003\u00d3\u0003", + "\u00d3\u0003\u00d3\u0003\u00d4\u0003\u00d4\u0003\u00d4\u0003\u00d4\u0003", + "\u00d4\u0003\u00d5\u0003\u00d5\u0003\u00d5\u0003\u00d5\u0003\u00d5\u0003", + "\u00d5\u0003\u00d5\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003", + "\u00d6\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003", + "\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003", + "\u00d8\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003", + "\u00d9\u0003\u00da\u0003\u00da\u0003\u00da\u0003\u00da\u0003\u00da\u0003", + "\u00da\u0003\u00da\u0003\u00da\u0003\u00da\u0003\u00da\u0003\u00da\u0003", + "\u00db\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00db\u0003", + "\u00db\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003", + "\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dd\u0003\u00dd\u0003", + "\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00de\u0003", + "\u00de\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00de\u0003", + "\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003", + "\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00e0\u0003\u00e0\u0003", + "\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e1\u0003\u00e1\u0003", + "\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e2\u0003", + "\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003", + "\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e3\u0003", + "\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003", + "\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003", + "\u00e3\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003", + "\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003", + "\u00e4\u0003\u00e4\u0005\u00e4\u08b9\n\u00e4\u0003\u00e5\u0003\u00e5", + "\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5", + "\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e6\u0003\u00e6\u0003\u00e6", + "\u0003\u00e6\u0003\u00e6\u0003\u00e7\u0003\u00e7\u0003\u00e7\u0003\u00e7", + "\u0003\u00e7\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e9\u0003\u00e9", + "\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00ea\u0003\u00ea", + "\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00ea", + "\u0003\u00ea\u0003\u00eb\u0003\u00eb\u0003\u00eb\u0003\u00eb\u0003\u00eb", + "\u0003\u00eb\u0003\u00eb\u0003\u00eb\u0003\u00eb\u0003\u00eb\u0003\u00eb", + "\u0003\u00eb\u0003\u00ec\u0003\u00ec\u0003\u00ec\u0003\u00ec\u0003\u00ec", + "\u0003\u00ec\u0003\u00ec\u0003\u00ec\u0003\u00ec\u0003\u00ec\u0003\u00ec", + "\u0003\u00ec\u0003\u00ec\u0003\u00ed\u0003\u00ed\u0003\u00ed\u0003\u00ed", + "\u0003\u00ed\u0003\u00ed\u0003\u00ed\u0003\u00ed\u0003\u00ed\u0003\u00ed", + "\u0003\u00ee\u0003\u00ee\u0003\u00ee\u0003\u00ee\u0003\u00ee\u0003\u00ef", + "\u0003\u00ef\u0003\u00ef\u0003\u00ef\u0003\u00ef\u0003\u00f0\u0003\u00f0", + "\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f0", + "\u0003\u00f0\u0003\u00f1\u0003\u00f1\u0003\u00f1\u0003\u00f1\u0003\u00f1", + "\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f2", + "\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f3\u0003\u00f3", + "\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3", + "\u0003\u00f3\u0003\u00f3\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4", + "\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f5\u0003\u00f5", + "\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f6\u0003\u00f6", + "\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f7", + "\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7", + "\u0003\u00f7\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8", + "\u0003\u00f8\u0003\u00f8\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9", + "\u0003\u00f9\u0003\u00f9\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa", + "\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fb\u0003\u00fb\u0003\u00fb", + "\u0003\u00fb\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc", + "\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd", + "\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe", + "\u0003\u00fe\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff", + "\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100", + "\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0102", + "\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0103", + "\u0003\u0103\u0003\u0103\u0003\u0103\u0003\u0103\u0003\u0103\u0003\u0103", + "\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0105", + "\u0003\u0105\u0003\u0105\u0003\u0105\u0003\u0105\u0003\u0106\u0003\u0106", + "\u0003\u0106\u0005\u0106\u09a2\n\u0106\u0003\u0107\u0003\u0107\u0003", + "\u0107\u0003\u0107\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0109\u0003", + "\u0109\u0003\u0109\u0003\u010a\u0003\u010a\u0003\u010b\u0003\u010b\u0003", + "\u010b\u0003\u010b\u0005\u010b\u09b4\n\u010b\u0003\u010c\u0003\u010c", + "\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010d\u0005\u010d\u09bc\n", + "\u010d\u0003\u010e\u0003\u010e\u0003\u010f\u0003\u010f\u0003\u0110\u0003", + "\u0110\u0003\u0111\u0003\u0111\u0003\u0112\u0003\u0112\u0003\u0113\u0003", + "\u0113\u0003\u0114\u0003\u0114\u0003\u0115\u0003\u0115\u0003\u0116\u0003", + "\u0116\u0003\u0116\u0003\u0117\u0003\u0117\u0003\u0118\u0003\u0118\u0003", + "\u0118\u0003\u0118\u0007\u0118\u09d7\n\u0118\f\u0118\u000e\u0118\u09da", + "\u000b\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118", + "\u0007\u0118\u09e1\n\u0118\f\u0118\u000e\u0118\u09e4\u000b\u0118\u0003", + "\u0118\u0005\u0118\u09e7\n\u0118\u0003\u0119\u0006\u0119\u09ea\n\u0119", + "\r\u0119\u000e\u0119\u09eb\u0003\u0119\u0003\u0119\u0003\u011a\u0006", + "\u011a\u09f1\n\u011a\r\u011a\u000e\u011a\u09f2\u0003\u011a\u0003\u011a", + "\u0003\u011b\u0006\u011b\u09f8\n\u011b\r\u011b\u000e\u011b\u09f9\u0003", + "\u011b\u0003\u011b\u0003\u011c\u0006\u011c\u09ff\n\u011c\r\u011c\u000e", + "\u011c\u0a00\u0003\u011d\u0006\u011d\u0a04\n\u011d\r\u011d\u000e\u011d", + "\u0a05\u0003\u011d\u0003\u011d\u0003\u011d\u0003\u011d\u0003\u011d\u0003", + "\u011d\u0005\u011d\u0a0e\n\u011d\u0003\u011e\u0003\u011e\u0003\u011e", + "\u0003\u011f\u0006\u011f\u0a14\n\u011f\r\u011f\u000e\u011f\u0a15\u0003", + "\u011f\u0005\u011f\u0a19\n\u011f\u0003\u011f\u0003\u011f\u0003\u011f", + "\u0003\u011f\u0005\u011f\u0a1f\n\u011f\u0003\u011f\u0003\u011f\u0003", + "\u011f\u0005\u011f\u0a24\n\u011f\u0003\u0120\u0006\u0120\u0a27\n\u0120", + "\r\u0120\u000e\u0120\u0a28\u0003\u0120\u0005\u0120\u0a2c\n\u0120\u0003", + "\u0120\u0003\u0120\u0003\u0120\u0003\u0120\u0005\u0120\u0a32\n\u0120", + "\u0003\u0120\u0003\u0120\u0003\u0120\u0005\u0120\u0a37\n\u0120\u0003", + "\u0121\u0006\u0121\u0a3a\n\u0121\r\u0121\u000e\u0121\u0a3b\u0003\u0121", + "\u0005\u0121\u0a3f\n\u0121\u0003\u0121\u0003\u0121\u0003\u0121\u0003", + "\u0121\u0003\u0121\u0005\u0121\u0a46\n\u0121\u0003\u0121\u0003\u0121", + "\u0003\u0121\u0003\u0121\u0003\u0121\u0005\u0121\u0a4d\n\u0121\u0003", + "\u0122\u0003\u0122\u0003\u0122\u0006\u0122\u0a52\n\u0122\r\u0122\u000e", + "\u0122\u0a53\u0003\u0123\u0003\u0123\u0003\u0123\u0003\u0123\u0007\u0123", + "\u0a5a\n\u0123\f\u0123\u000e\u0123\u0a5d\u000b\u0123\u0003\u0123\u0003", + "\u0123\u0003\u0124\u0006\u0124\u0a62\n\u0124\r\u0124\u000e\u0124\u0a63", + "\u0003\u0124\u0003\u0124\u0007\u0124\u0a68\n\u0124\f\u0124\u000e\u0124", + "\u0a6b\u000b\u0124\u0003\u0124\u0003\u0124\u0006\u0124\u0a6f\n\u0124", + "\r\u0124\u000e\u0124\u0a70\u0005\u0124\u0a73\n\u0124\u0003\u0125\u0003", + "\u0125\u0005\u0125\u0a77\n\u0125\u0003\u0125\u0006\u0125\u0a7a\n\u0125", + "\r\u0125\u000e\u0125\u0a7b\u0003\u0126\u0003\u0126\u0003\u0127\u0003", + "\u0127\u0003\u0128\u0003\u0128\u0003\u0128\u0003\u0128\u0003\u0128\u0003", + "\u0128\u0007\u0128\u0a88\n\u0128\f\u0128\u000e\u0128\u0a8b\u000b\u0128", + "\u0003\u0128\u0005\u0128\u0a8e\n\u0128\u0003\u0128\u0005\u0128\u0a91", + "\n\u0128\u0003\u0128\u0003\u0128\u0003\u0129\u0003\u0129\u0003\u0129", + "\u0003\u0129\u0003\u0129\u0003\u0129\u0007\u0129\u0a9b\n\u0129\f\u0129", + "\u000e\u0129\u0a9e\u000b\u0129\u0003\u0129\u0003\u0129\u0003\u0129\u0003", + "\u0129\u0003\u0129\u0003\u012a\u0006\u012a\u0aa6\n\u012a\r\u012a\u000e", + "\u012a\u0aa7\u0003\u012a\u0003\u012a\u0003\u012b\u0003\u012b\u0003\u0a9c", + "\u0002\u012c\u0003\u0003\u0005\u0004\u0007\u0005\t\u0006\u000b\u0007", + "\r\b\u000f\t\u0011\n\u0013\u000b\u0015\f\u0017\r\u0019\u000e\u001b\u000f", + "\u001d\u0010\u001f\u0011!\u0012#\u0013%\u0014\'\u0015)\u0016+\u0017", + "-\u0018/\u00191\u001a3\u001b5\u001c7\u001d9\u001e;\u001f= ?!A\"C#E$", + "G%I&K\'M(O)Q*S+U,W-Y.[/]0_1a2c3e4g5i6k7m8o9q:s;u{?}@\u007fA\u0081", + "B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095", + "L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9", + "V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd", + "`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1", + "j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3s\u00e5", + "t\u00e7u\u00e9v\u00ebw\u00edx\u00efy\u00f1z\u00f3{\u00f5|\u00f7}\u00f9", + "~\u00fb\u007f\u00fd\u0080\u00ff\u0081\u0101\u0082\u0103\u0083\u0105", + "\u0084\u0107\u0085\u0109\u0086\u010b\u0087\u010d\u0088\u010f\u0089\u0111", + "\u008a\u0113\u008b\u0115\u008c\u0117\u008d\u0119\u008e\u011b\u008f\u011d", + "\u0090\u011f\u0091\u0121\u0092\u0123\u0093\u0125\u0094\u0127\u0095\u0129", + "\u0096\u012b\u0097\u012d\u0098\u012f\u0099\u0131\u009a\u0133\u009b\u0135", + "\u009c\u0137\u009d\u0139\u009e\u013b\u009f\u013d\u00a0\u013f\u00a1\u0141", + "\u00a2\u0143\u00a3\u0145\u00a4\u0147\u00a5\u0149\u00a6\u014b\u00a7\u014d", + "\u00a8\u014f\u00a9\u0151\u00aa\u0153\u00ab\u0155\u00ac\u0157\u00ad\u0159", + "\u00ae\u015b\u00af\u015d\u00b0\u015f\u00b1\u0161\u00b2\u0163\u00b3\u0165", + "\u00b4\u0167\u00b5\u0169\u00b6\u016b\u00b7\u016d\u00b8\u016f\u00b9\u0171", + "\u00ba\u0173\u00bb\u0175\u00bc\u0177\u00bd\u0179\u00be\u017b\u00bf\u017d", + "\u00c0\u017f\u00c1\u0181\u00c2\u0183\u00c3\u0185\u00c4\u0187\u00c5\u0189", + "\u00c6\u018b\u00c7\u018d\u00c8\u018f\u00c9\u0191\u00ca\u0193\u00cb\u0195", + "\u00cc\u0197\u00cd\u0199\u00ce\u019b\u00cf\u019d\u00d0\u019f\u00d1\u01a1", + "\u00d2\u01a3\u00d3\u01a5\u00d4\u01a7\u00d5\u01a9\u00d6\u01ab\u00d7\u01ad", + "\u00d8\u01af\u00d9\u01b1\u00da\u01b3\u00db\u01b5\u00dc\u01b7\u00dd\u01b9", + "\u00de\u01bb\u00df\u01bd\u00e0\u01bf\u00e1\u01c1\u00e2\u01c3\u00e3\u01c5", + "\u00e4\u01c7\u00e5\u01c9\u00e6\u01cb\u00e7\u01cd\u00e8\u01cf\u00e9\u01d1", + "\u00ea\u01d3\u00eb\u01d5\u00ec\u01d7\u00ed\u01d9\u00ee\u01db\u00ef\u01dd", + "\u00f0\u01df\u00f1\u01e1\u00f2\u01e3\u00f3\u01e5\u00f4\u01e7\u00f5\u01e9", + "\u00f6\u01eb\u00f7\u01ed\u00f8\u01ef\u00f9\u01f1\u00fa\u01f3\u00fb\u01f5", + "\u00fc\u01f7\u00fd\u01f9\u00fe\u01fb\u00ff\u01fd\u0100\u01ff\u0101\u0201", + "\u0102\u0203\u0103\u0205\u0104\u0207\u0105\u0209\u0106\u020b\u0107\u020d", + "\u0108\u020f\u0109\u0211\u010a\u0213\u010b\u0215\u010c\u0217\u010d\u0219", + "\u010e\u021b\u010f\u021d\u0110\u021f\u0111\u0221\u0112\u0223\u0113\u0225", + "\u0114\u0227\u0115\u0229\u0116\u022b\u0117\u022d\u0118\u022f\u0119\u0231", + "\u011a\u0233\u011b\u0235\u011c\u0237\u011d\u0239\u011e\u023b\u011f\u023d", + "\u0120\u023f\u0121\u0241\u0122\u0243\u0123\u0245\u0124\u0247\u0002\u0249", + "\u0002\u024b\u0002\u024d\u0002\u024f\u0125\u0251\u0126\u0253\u0127\u0255", + "\u0128\u0003\u0002\n\u0004\u0002))^^\u0004\u0002$$^^\u0003\u0002bb\u0004", + "\u0002--//\u0003\u00022;\u0003\u0002C\\\u0004\u0002\f\f\u000f\u000f", + "\u0005\u0002\u000b\f\u000f\u000f\"\"\u0002\u0ad8\u0002\u0003\u0003\u0002", + "\u0002\u0002\u0002\u0005\u0003\u0002\u0002\u0002\u0002\u0007\u0003\u0002", + "\u0002\u0002\u0002\t\u0003\u0002\u0002\u0002\u0002\u000b\u0003\u0002", + "\u0002\u0002\u0002\r\u0003\u0002\u0002\u0002\u0002\u000f\u0003\u0002", + "\u0002\u0002\u0002\u0011\u0003\u0002\u0002\u0002\u0002\u0013\u0003\u0002", + "\u0002\u0002\u0002\u0015\u0003\u0002\u0002\u0002\u0002\u0017\u0003\u0002", + "\u0002\u0002\u0002\u0019\u0003\u0002\u0002\u0002\u0002\u001b\u0003\u0002", + "\u0002\u0002\u0002\u001d\u0003\u0002\u0002\u0002\u0002\u001f\u0003\u0002", + "\u0002\u0002\u0002!\u0003\u0002\u0002\u0002\u0002#\u0003\u0002\u0002", + "\u0002\u0002%\u0003\u0002\u0002\u0002\u0002\'\u0003\u0002\u0002\u0002", + "\u0002)\u0003\u0002\u0002\u0002\u0002+\u0003\u0002\u0002\u0002\u0002", + "-\u0003\u0002\u0002\u0002\u0002/\u0003\u0002\u0002\u0002\u00021\u0003", + "\u0002\u0002\u0002\u00023\u0003\u0002\u0002\u0002\u00025\u0003\u0002", + "\u0002\u0002\u00027\u0003\u0002\u0002\u0002\u00029\u0003\u0002\u0002", + "\u0002\u0002;\u0003\u0002\u0002\u0002\u0002=\u0003\u0002\u0002\u0002", + "\u0002?\u0003\u0002\u0002\u0002\u0002A\u0003\u0002\u0002\u0002\u0002", + "C\u0003\u0002\u0002\u0002\u0002E\u0003\u0002\u0002\u0002\u0002G\u0003", + "\u0002\u0002\u0002\u0002I\u0003\u0002\u0002\u0002\u0002K\u0003\u0002", + "\u0002\u0002\u0002M\u0003\u0002\u0002\u0002\u0002O\u0003\u0002\u0002", + "\u0002\u0002Q\u0003\u0002\u0002\u0002\u0002S\u0003\u0002\u0002\u0002", + "\u0002U\u0003\u0002\u0002\u0002\u0002W\u0003\u0002\u0002\u0002\u0002", + "Y\u0003\u0002\u0002\u0002\u0002[\u0003\u0002\u0002\u0002\u0002]\u0003", + "\u0002\u0002\u0002\u0002_\u0003\u0002\u0002\u0002\u0002a\u0003\u0002", + "\u0002\u0002\u0002c\u0003\u0002\u0002\u0002\u0002e\u0003\u0002\u0002", + "\u0002\u0002g\u0003\u0002\u0002\u0002\u0002i\u0003\u0002\u0002\u0002", + "\u0002k\u0003\u0002\u0002\u0002\u0002m\u0003\u0002\u0002\u0002\u0002", + "o\u0003\u0002\u0002\u0002\u0002q\u0003\u0002\u0002\u0002\u0002s\u0003", + "\u0002\u0002\u0002\u0002u\u0003\u0002\u0002\u0002\u0002w\u0003\u0002", + "\u0002\u0002\u0002y\u0003\u0002\u0002\u0002\u0002{\u0003\u0002\u0002", + "\u0002\u0002}\u0003\u0002\u0002\u0002\u0002\u007f\u0003\u0002\u0002", + "\u0002\u0002\u0081\u0003\u0002\u0002\u0002\u0002\u0083\u0003\u0002\u0002", + "\u0002\u0002\u0085\u0003\u0002\u0002\u0002\u0002\u0087\u0003\u0002\u0002", + "\u0002\u0002\u0089\u0003\u0002\u0002\u0002\u0002\u008b\u0003\u0002\u0002", + "\u0002\u0002\u008d\u0003\u0002\u0002\u0002\u0002\u008f\u0003\u0002\u0002", + "\u0002\u0002\u0091\u0003\u0002\u0002\u0002\u0002\u0093\u0003\u0002\u0002", + "\u0002\u0002\u0095\u0003\u0002\u0002\u0002\u0002\u0097\u0003\u0002\u0002", + "\u0002\u0002\u0099\u0003\u0002\u0002\u0002\u0002\u009b\u0003\u0002\u0002", + "\u0002\u0002\u009d\u0003\u0002\u0002\u0002\u0002\u009f\u0003\u0002\u0002", + "\u0002\u0002\u00a1\u0003\u0002\u0002\u0002\u0002\u00a3\u0003\u0002\u0002", + "\u0002\u0002\u00a5\u0003\u0002\u0002\u0002\u0002\u00a7\u0003\u0002\u0002", + "\u0002\u0002\u00a9\u0003\u0002\u0002\u0002\u0002\u00ab\u0003\u0002\u0002", + "\u0002\u0002\u00ad\u0003\u0002\u0002\u0002\u0002\u00af\u0003\u0002\u0002", + "\u0002\u0002\u00b1\u0003\u0002\u0002\u0002\u0002\u00b3\u0003\u0002\u0002", + "\u0002\u0002\u00b5\u0003\u0002\u0002\u0002\u0002\u00b7\u0003\u0002\u0002", + "\u0002\u0002\u00b9\u0003\u0002\u0002\u0002\u0002\u00bb\u0003\u0002\u0002", + "\u0002\u0002\u00bd\u0003\u0002\u0002\u0002\u0002\u00bf\u0003\u0002\u0002", + "\u0002\u0002\u00c1\u0003\u0002\u0002\u0002\u0002\u00c3\u0003\u0002\u0002", + "\u0002\u0002\u00c5\u0003\u0002\u0002\u0002\u0002\u00c7\u0003\u0002\u0002", + "\u0002\u0002\u00c9\u0003\u0002\u0002\u0002\u0002\u00cb\u0003\u0002\u0002", + "\u0002\u0002\u00cd\u0003\u0002\u0002\u0002\u0002\u00cf\u0003\u0002\u0002", + "\u0002\u0002\u00d1\u0003\u0002\u0002\u0002\u0002\u00d3\u0003\u0002\u0002", + "\u0002\u0002\u00d5\u0003\u0002\u0002\u0002\u0002\u00d7\u0003\u0002\u0002", + "\u0002\u0002\u00d9\u0003\u0002\u0002\u0002\u0002\u00db\u0003\u0002\u0002", + "\u0002\u0002\u00dd\u0003\u0002\u0002\u0002\u0002\u00df\u0003\u0002\u0002", + "\u0002\u0002\u00e1\u0003\u0002\u0002\u0002\u0002\u00e3\u0003\u0002\u0002", + "\u0002\u0002\u00e5\u0003\u0002\u0002\u0002\u0002\u00e7\u0003\u0002\u0002", + "\u0002\u0002\u00e9\u0003\u0002\u0002\u0002\u0002\u00eb\u0003\u0002\u0002", + "\u0002\u0002\u00ed\u0003\u0002\u0002\u0002\u0002\u00ef\u0003\u0002\u0002", + "\u0002\u0002\u00f1\u0003\u0002\u0002\u0002\u0002\u00f3\u0003\u0002\u0002", + "\u0002\u0002\u00f5\u0003\u0002\u0002\u0002\u0002\u00f7\u0003\u0002\u0002", + "\u0002\u0002\u00f9\u0003\u0002\u0002\u0002\u0002\u00fb\u0003\u0002\u0002", + "\u0002\u0002\u00fd\u0003\u0002\u0002\u0002\u0002\u00ff\u0003\u0002\u0002", + "\u0002\u0002\u0101\u0003\u0002\u0002\u0002\u0002\u0103\u0003\u0002\u0002", + "\u0002\u0002\u0105\u0003\u0002\u0002\u0002\u0002\u0107\u0003\u0002\u0002", + "\u0002\u0002\u0109\u0003\u0002\u0002\u0002\u0002\u010b\u0003\u0002\u0002", + "\u0002\u0002\u010d\u0003\u0002\u0002\u0002\u0002\u010f\u0003\u0002\u0002", + "\u0002\u0002\u0111\u0003\u0002\u0002\u0002\u0002\u0113\u0003\u0002\u0002", + "\u0002\u0002\u0115\u0003\u0002\u0002\u0002\u0002\u0117\u0003\u0002\u0002", + "\u0002\u0002\u0119\u0003\u0002\u0002\u0002\u0002\u011b\u0003\u0002\u0002", + "\u0002\u0002\u011d\u0003\u0002\u0002\u0002\u0002\u011f\u0003\u0002\u0002", + "\u0002\u0002\u0121\u0003\u0002\u0002\u0002\u0002\u0123\u0003\u0002\u0002", + "\u0002\u0002\u0125\u0003\u0002\u0002\u0002\u0002\u0127\u0003\u0002\u0002", + "\u0002\u0002\u0129\u0003\u0002\u0002\u0002\u0002\u012b\u0003\u0002\u0002", + "\u0002\u0002\u012d\u0003\u0002\u0002\u0002\u0002\u012f\u0003\u0002\u0002", + "\u0002\u0002\u0131\u0003\u0002\u0002\u0002\u0002\u0133\u0003\u0002\u0002", + "\u0002\u0002\u0135\u0003\u0002\u0002\u0002\u0002\u0137\u0003\u0002\u0002", + "\u0002\u0002\u0139\u0003\u0002\u0002\u0002\u0002\u013b\u0003\u0002\u0002", + "\u0002\u0002\u013d\u0003\u0002\u0002\u0002\u0002\u013f\u0003\u0002\u0002", + "\u0002\u0002\u0141\u0003\u0002\u0002\u0002\u0002\u0143\u0003\u0002\u0002", + "\u0002\u0002\u0145\u0003\u0002\u0002\u0002\u0002\u0147\u0003\u0002\u0002", + "\u0002\u0002\u0149\u0003\u0002\u0002\u0002\u0002\u014b\u0003\u0002\u0002", + "\u0002\u0002\u014d\u0003\u0002\u0002\u0002\u0002\u014f\u0003\u0002\u0002", + "\u0002\u0002\u0151\u0003\u0002\u0002\u0002\u0002\u0153\u0003\u0002\u0002", + "\u0002\u0002\u0155\u0003\u0002\u0002\u0002\u0002\u0157\u0003\u0002\u0002", + "\u0002\u0002\u0159\u0003\u0002\u0002\u0002\u0002\u015b\u0003\u0002\u0002", + "\u0002\u0002\u015d\u0003\u0002\u0002\u0002\u0002\u015f\u0003\u0002\u0002", + "\u0002\u0002\u0161\u0003\u0002\u0002\u0002\u0002\u0163\u0003\u0002\u0002", + "\u0002\u0002\u0165\u0003\u0002\u0002\u0002\u0002\u0167\u0003\u0002\u0002", + "\u0002\u0002\u0169\u0003\u0002\u0002\u0002\u0002\u016b\u0003\u0002\u0002", + "\u0002\u0002\u016d\u0003\u0002\u0002\u0002\u0002\u016f\u0003\u0002\u0002", + "\u0002\u0002\u0171\u0003\u0002\u0002\u0002\u0002\u0173\u0003\u0002\u0002", + "\u0002\u0002\u0175\u0003\u0002\u0002\u0002\u0002\u0177\u0003\u0002\u0002", + "\u0002\u0002\u0179\u0003\u0002\u0002\u0002\u0002\u017b\u0003\u0002\u0002", + "\u0002\u0002\u017d\u0003\u0002\u0002\u0002\u0002\u017f\u0003\u0002\u0002", + "\u0002\u0002\u0181\u0003\u0002\u0002\u0002\u0002\u0183\u0003\u0002\u0002", + "\u0002\u0002\u0185\u0003\u0002\u0002\u0002\u0002\u0187\u0003\u0002\u0002", + "\u0002\u0002\u0189\u0003\u0002\u0002\u0002\u0002\u018b\u0003\u0002\u0002", + "\u0002\u0002\u018d\u0003\u0002\u0002\u0002\u0002\u018f\u0003\u0002\u0002", + "\u0002\u0002\u0191\u0003\u0002\u0002\u0002\u0002\u0193\u0003\u0002\u0002", + "\u0002\u0002\u0195\u0003\u0002\u0002\u0002\u0002\u0197\u0003\u0002\u0002", + "\u0002\u0002\u0199\u0003\u0002\u0002\u0002\u0002\u019b\u0003\u0002\u0002", + "\u0002\u0002\u019d\u0003\u0002\u0002\u0002\u0002\u019f\u0003\u0002\u0002", + "\u0002\u0002\u01a1\u0003\u0002\u0002\u0002\u0002\u01a3\u0003\u0002\u0002", + "\u0002\u0002\u01a5\u0003\u0002\u0002\u0002\u0002\u01a7\u0003\u0002\u0002", + "\u0002\u0002\u01a9\u0003\u0002\u0002\u0002\u0002\u01ab\u0003\u0002\u0002", + "\u0002\u0002\u01ad\u0003\u0002\u0002\u0002\u0002\u01af\u0003\u0002\u0002", + "\u0002\u0002\u01b1\u0003\u0002\u0002\u0002\u0002\u01b3\u0003\u0002\u0002", + "\u0002\u0002\u01b5\u0003\u0002\u0002\u0002\u0002\u01b7\u0003\u0002\u0002", + "\u0002\u0002\u01b9\u0003\u0002\u0002\u0002\u0002\u01bb\u0003\u0002\u0002", + "\u0002\u0002\u01bd\u0003\u0002\u0002\u0002\u0002\u01bf\u0003\u0002\u0002", + "\u0002\u0002\u01c1\u0003\u0002\u0002\u0002\u0002\u01c3\u0003\u0002\u0002", + "\u0002\u0002\u01c5\u0003\u0002\u0002\u0002\u0002\u01c7\u0003\u0002\u0002", + "\u0002\u0002\u01c9\u0003\u0002\u0002\u0002\u0002\u01cb\u0003\u0002\u0002", + "\u0002\u0002\u01cd\u0003\u0002\u0002\u0002\u0002\u01cf\u0003\u0002\u0002", + "\u0002\u0002\u01d1\u0003\u0002\u0002\u0002\u0002\u01d3\u0003\u0002\u0002", + "\u0002\u0002\u01d5\u0003\u0002\u0002\u0002\u0002\u01d7\u0003\u0002\u0002", + "\u0002\u0002\u01d9\u0003\u0002\u0002\u0002\u0002\u01db\u0003\u0002\u0002", + "\u0002\u0002\u01dd\u0003\u0002\u0002\u0002\u0002\u01df\u0003\u0002\u0002", + "\u0002\u0002\u01e1\u0003\u0002\u0002\u0002\u0002\u01e3\u0003\u0002\u0002", + "\u0002\u0002\u01e5\u0003\u0002\u0002\u0002\u0002\u01e7\u0003\u0002\u0002", + "\u0002\u0002\u01e9\u0003\u0002\u0002\u0002\u0002\u01eb\u0003\u0002\u0002", + "\u0002\u0002\u01ed\u0003\u0002\u0002\u0002\u0002\u01ef\u0003\u0002\u0002", + "\u0002\u0002\u01f1\u0003\u0002\u0002\u0002\u0002\u01f3\u0003\u0002\u0002", + "\u0002\u0002\u01f5\u0003\u0002\u0002\u0002\u0002\u01f7\u0003\u0002\u0002", + "\u0002\u0002\u01f9\u0003\u0002\u0002\u0002\u0002\u01fb\u0003\u0002\u0002", + "\u0002\u0002\u01fd\u0003\u0002\u0002\u0002\u0002\u01ff\u0003\u0002\u0002", + "\u0002\u0002\u0201\u0003\u0002\u0002\u0002\u0002\u0203\u0003\u0002\u0002", + "\u0002\u0002\u0205\u0003\u0002\u0002\u0002\u0002\u0207\u0003\u0002\u0002", + "\u0002\u0002\u0209\u0003\u0002\u0002\u0002\u0002\u020b\u0003\u0002\u0002", + "\u0002\u0002\u020d\u0003\u0002\u0002\u0002\u0002\u020f\u0003\u0002\u0002", + "\u0002\u0002\u0211\u0003\u0002\u0002\u0002\u0002\u0213\u0003\u0002\u0002", + "\u0002\u0002\u0215\u0003\u0002\u0002\u0002\u0002\u0217\u0003\u0002\u0002", + "\u0002\u0002\u0219\u0003\u0002\u0002\u0002\u0002\u021b\u0003\u0002\u0002", + "\u0002\u0002\u021d\u0003\u0002\u0002\u0002\u0002\u021f\u0003\u0002\u0002", + "\u0002\u0002\u0221\u0003\u0002\u0002\u0002\u0002\u0223\u0003\u0002\u0002", + "\u0002\u0002\u0225\u0003\u0002\u0002\u0002\u0002\u0227\u0003\u0002\u0002", + "\u0002\u0002\u0229\u0003\u0002\u0002\u0002\u0002\u022b\u0003\u0002\u0002", + "\u0002\u0002\u022d\u0003\u0002\u0002\u0002\u0002\u022f\u0003\u0002\u0002", + "\u0002\u0002\u0231\u0003\u0002\u0002\u0002\u0002\u0233\u0003\u0002\u0002", + "\u0002\u0002\u0235\u0003\u0002\u0002\u0002\u0002\u0237\u0003\u0002\u0002", + "\u0002\u0002\u0239\u0003\u0002\u0002\u0002\u0002\u023b\u0003\u0002\u0002", + "\u0002\u0002\u023d\u0003\u0002\u0002\u0002\u0002\u023f\u0003\u0002\u0002", + "\u0002\u0002\u0241\u0003\u0002\u0002\u0002\u0002\u0243\u0003\u0002\u0002", + "\u0002\u0002\u0245\u0003\u0002\u0002\u0002\u0002\u024f\u0003\u0002\u0002", + "\u0002\u0002\u0251\u0003\u0002\u0002\u0002\u0002\u0253\u0003\u0002\u0002", + "\u0002\u0002\u0255\u0003\u0002\u0002\u0002\u0003\u0257\u0003\u0002\u0002", + "\u0002\u0005\u0259\u0003\u0002\u0002\u0002\u0007\u025b\u0003\u0002\u0002", + "\u0002\t\u025d\u0003\u0002\u0002\u0002\u000b\u025f\u0003\u0002\u0002", + "\u0002\r\u0261\u0003\u0002\u0002\u0002\u000f\u0265\u0003\u0002\u0002", + "\u0002\u0011\u0268\u0003\u0002\u0002\u0002\u0013\u026b\u0003\u0002\u0002", + "\u0002\u0015\u026d\u0003\u0002\u0002\u0002\u0017\u026f\u0003\u0002\u0002", + "\u0002\u0019\u0271\u0003\u0002\u0002\u0002\u001b\u0275\u0003\u0002\u0002", + "\u0002\u001d\u027b\u0003\u0002\u0002\u0002\u001f\u027f\u0003\u0002\u0002", + "\u0002!\u0285\u0003\u0002\u0002\u0002#\u028d\u0003\u0002\u0002\u0002", + "%\u0291\u0003\u0002\u0002\u0002\'\u0296\u0003\u0002\u0002\u0002)\u029a", + "\u0003\u0002\u0002\u0002+\u02a2\u0003\u0002\u0002\u0002-\u02a8\u0003", + "\u0002\u0002\u0002/\u02ab\u0003\u0002\u0002\u00021\u02af\u0003\u0002", + "\u0002\u00023\u02b2\u0003\u0002\u0002\u00025\u02c0\u0003\u0002\u0002", + "\u00027\u02c8\u0003\u0002\u0002\u00029\u02cd\u0003\u0002\u0002\u0002", + ";\u02d4\u0003\u0002\u0002\u0002=\u02dc\u0003\u0002\u0002\u0002?\u02df", + "\u0003\u0002\u0002\u0002A\u02e5\u0003\u0002\u0002\u0002C\u02ed\u0003", + "\u0002\u0002\u0002E\u02f2\u0003\u0002\u0002\u0002G\u02f7\u0003\u0002", + "\u0002\u0002I\u02fe\u0003\u0002\u0002\u0002K\u0304\u0003\u0002\u0002", + "\u0002M\u030a\u0003\u0002\u0002\u0002O\u0312\u0003\u0002\u0002\u0002", + "Q\u031c\u0003\u0002\u0002\u0002S\u0324\u0003\u0002\u0002\u0002U\u032c", + "\u0003\u0002\u0002\u0002W\u0337\u0003\u0002\u0002\u0002Y\u033e\u0003", + "\u0002\u0002\u0002[\u0346\u0003\u0002\u0002\u0002]\u034e\u0003\u0002", + "\u0002\u0002_\u0355\u0003\u0002\u0002\u0002a\u035d\u0003\u0002\u0002", + "\u0002c\u0369\u0003\u0002\u0002\u0002e\u0371\u0003\u0002\u0002\u0002", + "g\u037d\u0003\u0002\u0002\u0002i\u0388\u0003\u0002\u0002\u0002k\u038d", + "\u0003\u0002\u0002\u0002m\u0394\u0003\u0002\u0002\u0002o\u039a\u0003", + "\u0002\u0002\u0002q\u039f\u0003\u0002\u0002\u0002s\u03a7\u0003\u0002", + "\u0002\u0002u\u03b4\u0003\u0002\u0002\u0002w\u03c1\u0003\u0002\u0002", + "\u0002y\u03d3\u0003\u0002\u0002\u0002{\u03e0\u0003\u0002\u0002\u0002", + "}\u03e5\u0003\u0002\u0002\u0002\u007f\u03fe\u0003\u0002\u0002\u0002", + "\u0081\u0400\u0003\u0002\u0002\u0002\u0083\u040d\u0003\u0002\u0002\u0002", + "\u0085\u0415\u0003\u0002\u0002\u0002\u0087\u041c\u0003\u0002\u0002\u0002", + "\u0089\u0426\u0003\u0002\u0002\u0002\u008b\u042b\u0003\u0002\u0002\u0002", + "\u008d\u0434\u0003\u0002\u0002\u0002\u008f\u0438\u0003\u0002\u0002\u0002", + "\u0091\u0444\u0003\u0002\u0002\u0002\u0093\u044e\u0003\u0002\u0002\u0002", + "\u0095\u0457\u0003\u0002\u0002\u0002\u0097\u0462\u0003\u0002\u0002\u0002", + "\u0099\u0466\u0003\u0002\u0002\u0002\u009b\u046b\u0003\u0002\u0002\u0002", + "\u009d\u0470\u0003\u0002\u0002\u0002\u009f\u0474\u0003\u0002\u0002\u0002", + "\u00a1\u047b\u0003\u0002\u0002\u0002\u00a3\u0483\u0003\u0002\u0002\u0002", + "\u00a5\u048a\u0003\u0002\u0002\u0002\u00a7\u0493\u0003\u0002\u0002\u0002", + "\u00a9\u049a\u0003\u0002\u0002\u0002\u00ab\u04a2\u0003\u0002\u0002\u0002", + "\u00ad\u04a9\u0003\u0002\u0002\u0002\u00af\u04b2\u0003\u0002\u0002\u0002", + "\u00b1\u04bb\u0003\u0002\u0002\u0002\u00b3\u04c3\u0003\u0002\u0002\u0002", + "\u00b5\u04c9\u0003\u0002\u0002\u0002\u00b7\u04cf\u0003\u0002\u0002\u0002", + "\u00b9\u04d6\u0003\u0002\u0002\u0002\u00bb\u04dd\u0003\u0002\u0002\u0002", + "\u00bd\u04e8\u0003\u0002\u0002\u0002\u00bf\u04ee\u0003\u0002\u0002\u0002", + "\u00c1\u04f8\u0003\u0002\u0002\u0002\u00c3\u04fc\u0003\u0002\u0002\u0002", + "\u00c5\u0504\u0003\u0002\u0002\u0002\u00c7\u050b\u0003\u0002\u0002\u0002", + "\u00c9\u0515\u0003\u0002\u0002\u0002\u00cb\u051a\u0003\u0002\u0002\u0002", + "\u00cd\u051f\u0003\u0002\u0002\u0002\u00cf\u0528\u0003\u0002\u0002\u0002", + "\u00d1\u0532\u0003\u0002\u0002\u0002\u00d3\u0539\u0003\u0002\u0002\u0002", + "\u00d5\u053f\u0003\u0002\u0002\u0002\u00d7\u0545\u0003\u0002\u0002\u0002", + "\u00d9\u054e\u0003\u0002\u0002\u0002\u00db\u0555\u0003\u0002\u0002\u0002", + "\u00dd\u0558\u0003\u0002\u0002\u0002\u00df\u055f\u0003\u0002\u0002\u0002", + "\u00e1\u0566\u0003\u0002\u0002\u0002\u00e3\u0569\u0003\u0002\u0002\u0002", + "\u00e5\u056f\u0003\u0002\u0002\u0002\u00e7\u0577\u0003\u0002\u0002\u0002", + "\u00e9\u057d\u0003\u0002\u0002\u0002\u00eb\u0584\u0003\u0002\u0002\u0002", + "\u00ed\u0590\u0003\u0002\u0002\u0002\u00ef\u0597\u0003\u0002\u0002\u0002", + "\u00f1\u05a1\u0003\u0002\u0002\u0002\u00f3\u05aa\u0003\u0002\u0002\u0002", + "\u00f5\u05af\u0003\u0002\u0002\u0002\u00f7\u05b2\u0003\u0002\u0002\u0002", + "\u00f9\u05b8\u0003\u0002\u0002\u0002\u00fb\u05bd\u0003\u0002\u0002\u0002", + "\u00fd\u05c2\u0003\u0002\u0002\u0002\u00ff\u05c7\u0003\u0002\u0002\u0002", + "\u0101\u05cf\u0003\u0002\u0002\u0002\u0103\u05d4\u0003\u0002\u0002\u0002", + "\u0105\u05dc\u0003\u0002\u0002\u0002\u0107\u05e1\u0003\u0002\u0002\u0002", + "\u0109\u05e6\u0003\u0002\u0002\u0002\u010b\u05ec\u0003\u0002\u0002\u0002", + "\u010d\u05f2\u0003\u0002\u0002\u0002\u010f\u05f7\u0003\u0002\u0002\u0002", + "\u0111\u05fc\u0003\u0002\u0002\u0002\u0113\u0602\u0003\u0002\u0002\u0002", + "\u0115\u060b\u0003\u0002\u0002\u0002\u0117\u0610\u0003\u0002\u0002\u0002", + "\u0119\u0616\u0003\u0002\u0002\u0002\u011b\u061e\u0003\u0002\u0002\u0002", + "\u011d\u0624\u0003\u0002\u0002\u0002\u011f\u0628\u0003\u0002\u0002\u0002", + "\u0121\u0630\u0003\u0002\u0002\u0002\u0123\u0636\u0003\u0002\u0002\u0002", + "\u0125\u063b\u0003\u0002\u0002\u0002\u0127\u0645\u0003\u0002\u0002\u0002", + "\u0129\u0650\u0003\u0002\u0002\u0002\u012b\u0658\u0003\u0002\u0002\u0002", + "\u012d\u065f\u0003\u0002\u0002\u0002\u012f\u0661\u0003\u0002\u0002\u0002", + "\u0131\u0666\u0003\u0002\u0002\u0002\u0133\u066c\u0003\u0002\u0002\u0002", + "\u0135\u066f\u0003\u0002\u0002\u0002\u0137\u0672\u0003\u0002\u0002\u0002", + "\u0139\u0677\u0003\u0002\u0002\u0002\u013b\u067e\u0003\u0002\u0002\u0002", + "\u013d\u0686\u0003\u0002\u0002\u0002\u013f\u0689\u0003\u0002\u0002\u0002", + "\u0141\u068f\u0003\u0002\u0002\u0002\u0143\u0693\u0003\u0002\u0002\u0002", + "\u0145\u0699\u0003\u0002\u0002\u0002\u0147\u06a6\u0003\u0002\u0002\u0002", + "\u0149\u06ab\u0003\u0002\u0002\u0002\u014b\u06b4\u0003\u0002\u0002\u0002", + "\u014d\u06bc\u0003\u0002\u0002\u0002\u014f\u06c6\u0003\u0002\u0002\u0002", + "\u0151\u06d0\u0003\u0002\u0002\u0002\u0153\u06dc\u0003\u0002\u0002\u0002", + "\u0155\u06e7\u0003\u0002\u0002\u0002\u0157\u06ef\u0003\u0002\u0002\u0002", + "\u0159\u06f5\u0003\u0002\u0002\u0002\u015b\u06fd\u0003\u0002\u0002\u0002", + "\u015d\u0706\u0003\u0002\u0002\u0002\u015f\u0710\u0003\u0002\u0002\u0002", + "\u0161\u0718\u0003\u0002\u0002\u0002\u0163\u0723\u0003\u0002\u0002\u0002", + "\u0165\u072e\u0003\u0002\u0002\u0002\u0167\u0734\u0003\u0002\u0002\u0002", + "\u0169\u073a\u0003\u0002\u0002\u0002\u016b\u0740\u0003\u0002\u0002\u0002", + "\u016d\u074d\u0003\u0002\u0002\u0002\u016f\u075a\u0003\u0002\u0002\u0002", + "\u0171\u0762\u0003\u0002\u0002\u0002\u0173\u0769\u0003\u0002\u0002\u0002", + "\u0175\u0774\u0003\u0002\u0002\u0002\u0177\u077c\u0003\u0002\u0002\u0002", + "\u0179\u0783\u0003\u0002\u0002\u0002\u017b\u078a\u0003\u0002\u0002\u0002", + "\u017d\u0792\u0003\u0002\u0002\u0002\u017f\u0798\u0003\u0002\u0002\u0002", + "\u0181\u07a1\u0003\u0002\u0002\u0002\u0183\u07a8\u0003\u0002\u0002\u0002", + "\u0185\u07b9\u0003\u0002\u0002\u0002\u0187\u07bb\u0003\u0002\u0002\u0002", + "\u0189\u07c0\u0003\u0002\u0002\u0002\u018b\u07c6\u0003\u0002\u0002\u0002", + "\u018d\u07cf\u0003\u0002\u0002\u0002\u018f\u07d6\u0003\u0002\u0002\u0002", + "\u0191\u07da\u0003\u0002\u0002\u0002\u0193\u07df\u0003\u0002\u0002\u0002", + "\u0195\u07e6\u0003\u0002\u0002\u0002\u0197\u07ed\u0003\u0002\u0002\u0002", + "\u0199\u07f2\u0003\u0002\u0002\u0002\u019b\u07fc\u0003\u0002\u0002\u0002", + "\u019d\u0802\u0003\u0002\u0002\u0002\u019f\u0812\u0003\u0002\u0002\u0002", + "\u01a1\u081f\u0003\u0002\u0002\u0002\u01a3\u0823\u0003\u0002\u0002\u0002", + "\u01a5\u0829\u0003\u0002\u0002\u0002\u01a7\u082e\u0003\u0002\u0002\u0002", + "\u01a9\u0833\u0003\u0002\u0002\u0002\u01ab\u083a\u0003\u0002\u0002\u0002", + "\u01ad\u083f\u0003\u0002\u0002\u0002\u01af\u0844\u0003\u0002\u0002\u0002", + "\u01b1\u084b\u0003\u0002\u0002\u0002\u01b3\u0851\u0003\u0002\u0002\u0002", + "\u01b5\u085c\u0003\u0002\u0002\u0002\u01b7\u0863\u0003\u0002\u0002\u0002", + "\u01b9\u086c\u0003\u0002\u0002\u0002\u01bb\u0873\u0003\u0002\u0002\u0002", + "\u01bd\u087a\u0003\u0002\u0002\u0002\u01bf\u0884\u0003\u0002\u0002\u0002", + "\u01c1\u088a\u0003\u0002\u0002\u0002\u01c3\u0891\u0003\u0002\u0002\u0002", + "\u01c5\u089d\u0003\u0002\u0002\u0002\u01c7\u08b8\u0003\u0002\u0002\u0002", + "\u01c9\u08ba\u0003\u0002\u0002\u0002\u01cb\u08c5\u0003\u0002\u0002\u0002", + "\u01cd\u08ca\u0003\u0002\u0002\u0002\u01cf\u08cf\u0003\u0002\u0002\u0002", + "\u01d1\u08d2\u0003\u0002\u0002\u0002\u01d3\u08d8\u0003\u0002\u0002\u0002", + "\u01d5\u08e1\u0003\u0002\u0002\u0002\u01d7\u08ed\u0003\u0002\u0002\u0002", + "\u01d9\u08fa\u0003\u0002\u0002\u0002\u01db\u0904\u0003\u0002\u0002\u0002", + "\u01dd\u0909\u0003\u0002\u0002\u0002\u01df\u090e\u0003\u0002\u0002\u0002", + "\u01e1\u0917\u0003\u0002\u0002\u0002\u01e3\u091c\u0003\u0002\u0002\u0002", + "\u01e5\u0926\u0003\u0002\u0002\u0002\u01e7\u0930\u0003\u0002\u0002\u0002", + "\u01e9\u0938\u0003\u0002\u0002\u0002\u01eb\u093e\u0003\u0002\u0002\u0002", + "\u01ed\u0945\u0003\u0002\u0002\u0002\u01ef\u094d\u0003\u0002\u0002\u0002", + "\u01f1\u0954\u0003\u0002\u0002\u0002\u01f3\u095a\u0003\u0002\u0002\u0002", + "\u01f5\u0961\u0003\u0002\u0002\u0002\u01f7\u0965\u0003\u0002\u0002\u0002", + "\u01f9\u096a\u0003\u0002\u0002\u0002\u01fb\u0970\u0003\u0002\u0002\u0002", + "\u01fd\u0977\u0003\u0002\u0002\u0002\u01ff\u097c\u0003\u0002\u0002\u0002", + "\u0201\u0982\u0003\u0002\u0002\u0002\u0203\u0987\u0003\u0002\u0002\u0002", + "\u0205\u098d\u0003\u0002\u0002\u0002\u0207\u0994\u0003\u0002\u0002\u0002", + "\u0209\u0999\u0003\u0002\u0002\u0002\u020b\u09a1\u0003\u0002\u0002\u0002", + "\u020d\u09a3\u0003\u0002\u0002\u0002\u020f\u09a7\u0003\u0002\u0002\u0002", + "\u0211\u09aa\u0003\u0002\u0002\u0002\u0213\u09ad\u0003\u0002\u0002\u0002", + "\u0215\u09b3\u0003\u0002\u0002\u0002\u0217\u09b5\u0003\u0002\u0002\u0002", + "\u0219\u09bb\u0003\u0002\u0002\u0002\u021b\u09bd\u0003\u0002\u0002\u0002", + "\u021d\u09bf\u0003\u0002\u0002\u0002\u021f\u09c1\u0003\u0002\u0002\u0002", + "\u0221\u09c3\u0003\u0002\u0002\u0002\u0223\u09c5\u0003\u0002\u0002\u0002", + "\u0225\u09c7\u0003\u0002\u0002\u0002\u0227\u09c9\u0003\u0002\u0002\u0002", + "\u0229\u09cb\u0003\u0002\u0002\u0002\u022b\u09cd\u0003\u0002\u0002\u0002", + "\u022d\u09d0\u0003\u0002\u0002\u0002\u022f\u09e6\u0003\u0002\u0002\u0002", + "\u0231\u09e9\u0003\u0002\u0002\u0002\u0233\u09f0\u0003\u0002\u0002\u0002", + "\u0235\u09f7\u0003\u0002\u0002\u0002\u0237\u09fe\u0003\u0002\u0002\u0002", + "\u0239\u0a0d\u0003\u0002\u0002\u0002\u023b\u0a0f\u0003\u0002\u0002\u0002", + "\u023d\u0a23\u0003\u0002\u0002\u0002\u023f\u0a36\u0003\u0002\u0002\u0002", + "\u0241\u0a4c\u0003\u0002\u0002\u0002\u0243\u0a51\u0003\u0002\u0002\u0002", + "\u0245\u0a55\u0003\u0002\u0002\u0002\u0247\u0a72\u0003\u0002\u0002\u0002", + "\u0249\u0a74\u0003\u0002\u0002\u0002\u024b\u0a7d\u0003\u0002\u0002\u0002", + "\u024d\u0a7f\u0003\u0002\u0002\u0002\u024f\u0a81\u0003\u0002\u0002\u0002", + "\u0251\u0a94\u0003\u0002\u0002\u0002\u0253\u0aa5\u0003\u0002\u0002\u0002", + "\u0255\u0aab\u0003\u0002\u0002\u0002\u0257\u0258\u0007=\u0002\u0002", + "\u0258\u0004\u0003\u0002\u0002\u0002\u0259\u025a\u0007*\u0002\u0002", + "\u025a\u0006\u0003\u0002\u0002\u0002\u025b\u025c\u0007+\u0002\u0002", + "\u025c\b\u0003\u0002\u0002\u0002\u025d\u025e\u0007.\u0002\u0002\u025e", + "\n\u0003\u0002\u0002\u0002\u025f\u0260\u00070\u0002\u0002\u0260\f\u0003", + "\u0002\u0002\u0002\u0261\u0262\u00071\u0002\u0002\u0262\u0263\u0007", + ",\u0002\u0002\u0263\u0264\u0007-\u0002\u0002\u0264\u000e\u0003\u0002", + "\u0002\u0002\u0265\u0266\u0007,\u0002\u0002\u0266\u0267\u00071\u0002", + "\u0002\u0267\u0010\u0003\u0002\u0002\u0002\u0268\u0269\u0007/\u0002", + "\u0002\u0269\u026a\u0007@\u0002\u0002\u026a\u0012\u0003\u0002\u0002", + "\u0002\u026b\u026c\u0007]\u0002\u0002\u026c\u0014\u0003\u0002\u0002", + "\u0002\u026d\u026e\u0007_\u0002\u0002\u026e\u0016\u0003\u0002\u0002", + "\u0002\u026f\u0270\u0007<\u0002\u0002\u0270\u0018\u0003\u0002\u0002", + "\u0002\u0271\u0272\u0007C\u0002\u0002\u0272\u0273\u0007F\u0002\u0002", + "\u0273\u0274\u0007F\u0002\u0002\u0274\u001a\u0003\u0002\u0002\u0002", + "\u0275\u0276\u0007C\u0002\u0002\u0276\u0277\u0007H\u0002\u0002\u0277", + "\u0278\u0007V\u0002\u0002\u0278\u0279\u0007G\u0002\u0002\u0279\u027a", + "\u0007T\u0002\u0002\u027a\u001c\u0003\u0002\u0002\u0002\u027b\u027c", + "\u0007C\u0002\u0002\u027c\u027d\u0007N\u0002\u0002\u027d\u027e\u0007", + "N\u0002\u0002\u027e\u001e\u0003\u0002\u0002\u0002\u027f\u0280\u0007", + "C\u0002\u0002\u0280\u0281\u0007N\u0002\u0002\u0281\u0282\u0007V\u0002", + "\u0002\u0282\u0283\u0007G\u0002\u0002\u0283\u0284\u0007T\u0002\u0002", + "\u0284 \u0003\u0002\u0002\u0002\u0285\u0286\u0007C\u0002\u0002\u0286", + "\u0287\u0007P\u0002\u0002\u0287\u0288\u0007C\u0002\u0002\u0288\u0289", + "\u0007N\u0002\u0002\u0289\u028a\u0007[\u0002\u0002\u028a\u028b\u0007", + "\\\u0002\u0002\u028b\u028c\u0007G\u0002\u0002\u028c\"\u0003\u0002\u0002", + "\u0002\u028d\u028e\u0007C\u0002\u0002\u028e\u028f\u0007P\u0002\u0002", + "\u028f\u0290\u0007F\u0002\u0002\u0290$\u0003\u0002\u0002\u0002\u0291", + "\u0292\u0007C\u0002\u0002\u0292\u0293\u0007P\u0002\u0002\u0293\u0294", + "\u0007V\u0002\u0002\u0294\u0295\u0007K\u0002\u0002\u0295&\u0003\u0002", + "\u0002\u0002\u0296\u0297\u0007C\u0002\u0002\u0297\u0298\u0007P\u0002", + "\u0002\u0298\u0299\u0007[\u0002\u0002\u0299(\u0003\u0002\u0002\u0002", + "\u029a\u029b\u0007C\u0002\u0002\u029b\u029c\u0007T\u0002\u0002\u029c", + "\u029d\u0007E\u0002\u0002\u029d\u029e\u0007J\u0002\u0002\u029e\u029f", + "\u0007K\u0002\u0002\u029f\u02a0\u0007X\u0002\u0002\u02a0\u02a1\u0007", + "G\u0002\u0002\u02a1*\u0003\u0002\u0002\u0002\u02a2\u02a3\u0007C\u0002", + "\u0002\u02a3\u02a4\u0007T\u0002\u0002\u02a4\u02a5\u0007T\u0002\u0002", + "\u02a5\u02a6\u0007C\u0002\u0002\u02a6\u02a7\u0007[\u0002\u0002\u02a7", + ",\u0003\u0002\u0002\u0002\u02a8\u02a9\u0007C\u0002\u0002\u02a9\u02aa", + "\u0007U\u0002\u0002\u02aa.\u0003\u0002\u0002\u0002\u02ab\u02ac\u0007", + "C\u0002\u0002\u02ac\u02ad\u0007U\u0002\u0002\u02ad\u02ae\u0007E\u0002", + "\u0002\u02ae0\u0003\u0002\u0002\u0002\u02af\u02b0\u0007C\u0002\u0002", + "\u02b0\u02b1\u0007V\u0002\u0002\u02b12\u0003\u0002\u0002\u0002\u02b2", + "\u02b3\u0007C\u0002\u0002\u02b3\u02b4\u0007W\u0002\u0002\u02b4\u02b5", + "\u0007V\u0002\u0002\u02b5\u02b6\u0007J\u0002\u0002\u02b6\u02b7\u0007", + "Q\u0002\u0002\u02b7\u02b8\u0007T\u0002\u0002\u02b8\u02b9\u0007K\u0002", + "\u0002\u02b9\u02ba\u0007\\\u0002\u0002\u02ba\u02bb\u0007C\u0002\u0002", + "\u02bb\u02bc\u0007V\u0002\u0002\u02bc\u02bd\u0007K\u0002\u0002\u02bd", + "\u02be\u0007Q\u0002\u0002\u02be\u02bf\u0007P\u0002\u0002\u02bf4\u0003", + "\u0002\u0002\u0002\u02c0\u02c1\u0007D\u0002\u0002\u02c1\u02c2\u0007", + "G\u0002\u0002\u02c2\u02c3\u0007V\u0002\u0002\u02c3\u02c4\u0007Y\u0002", + "\u0002\u02c4\u02c5\u0007G\u0002\u0002\u02c5\u02c6\u0007G\u0002\u0002", + "\u02c6\u02c7\u0007P\u0002\u0002\u02c76\u0003\u0002\u0002\u0002\u02c8", + "\u02c9\u0007D\u0002\u0002\u02c9\u02ca\u0007Q\u0002\u0002\u02ca\u02cb", + "\u0007V\u0002\u0002\u02cb\u02cc\u0007J\u0002\u0002\u02cc8\u0003\u0002", + "\u0002\u0002\u02cd\u02ce\u0007D\u0002\u0002\u02ce\u02cf\u0007W\u0002", + "\u0002\u02cf\u02d0\u0007E\u0002\u0002\u02d0\u02d1\u0007M\u0002\u0002", + "\u02d1\u02d2\u0007G\u0002\u0002\u02d2\u02d3\u0007V\u0002\u0002\u02d3", + ":\u0003\u0002\u0002\u0002\u02d4\u02d5\u0007D\u0002\u0002\u02d5\u02d6", + "\u0007W\u0002\u0002\u02d6\u02d7\u0007E\u0002\u0002\u02d7\u02d8\u0007", + "M\u0002\u0002\u02d8\u02d9\u0007G\u0002\u0002\u02d9\u02da\u0007V\u0002", + "\u0002\u02da\u02db\u0007U\u0002\u0002\u02db<\u0003\u0002\u0002\u0002", + "\u02dc\u02dd\u0007D\u0002\u0002\u02dd\u02de\u0007[\u0002\u0002\u02de", + ">\u0003\u0002\u0002\u0002\u02df\u02e0\u0007E\u0002\u0002\u02e0\u02e1", + "\u0007C\u0002\u0002\u02e1\u02e2\u0007E\u0002\u0002\u02e2\u02e3\u0007", + "J\u0002\u0002\u02e3\u02e4\u0007G\u0002\u0002\u02e4@\u0003\u0002\u0002", + "\u0002\u02e5\u02e6\u0007E\u0002\u0002\u02e6\u02e7\u0007C\u0002\u0002", + "\u02e7\u02e8\u0007U\u0002\u0002\u02e8\u02e9\u0007E\u0002\u0002\u02e9", + "\u02ea\u0007C\u0002\u0002\u02ea\u02eb\u0007F\u0002\u0002\u02eb\u02ec", + "\u0007G\u0002\u0002\u02ecB\u0003\u0002\u0002\u0002\u02ed\u02ee\u0007", + "E\u0002\u0002\u02ee\u02ef\u0007C\u0002\u0002\u02ef\u02f0\u0007U\u0002", + "\u0002\u02f0\u02f1\u0007G\u0002\u0002\u02f1D\u0003\u0002\u0002\u0002", + "\u02f2\u02f3\u0007E\u0002\u0002\u02f3\u02f4\u0007C\u0002\u0002\u02f4", + "\u02f5\u0007U\u0002\u0002\u02f5\u02f6\u0007V\u0002\u0002\u02f6F\u0003", + "\u0002\u0002\u0002\u02f7\u02f8\u0007E\u0002\u0002\u02f8\u02f9\u0007", + "J\u0002\u0002\u02f9\u02fa\u0007C\u0002\u0002\u02fa\u02fb\u0007P\u0002", + "\u0002\u02fb\u02fc\u0007I\u0002\u0002\u02fc\u02fd\u0007G\u0002\u0002", + "\u02fdH\u0003\u0002\u0002\u0002\u02fe\u02ff\u0007E\u0002\u0002\u02ff", + "\u0300\u0007J\u0002\u0002\u0300\u0301\u0007G\u0002\u0002\u0301\u0302", + "\u0007E\u0002\u0002\u0302\u0303\u0007M\u0002\u0002\u0303J\u0003\u0002", + "\u0002\u0002\u0304\u0305\u0007E\u0002\u0002\u0305\u0306\u0007N\u0002", + "\u0002\u0306\u0307\u0007G\u0002\u0002\u0307\u0308\u0007C\u0002\u0002", + "\u0308\u0309\u0007T\u0002\u0002\u0309L\u0003\u0002\u0002\u0002\u030a", + "\u030b\u0007E\u0002\u0002\u030b\u030c\u0007N\u0002\u0002\u030c\u030d", + "\u0007W\u0002\u0002\u030d\u030e\u0007U\u0002\u0002\u030e\u030f\u0007", + "V\u0002\u0002\u030f\u0310\u0007G\u0002\u0002\u0310\u0311\u0007T\u0002", + "\u0002\u0311N\u0003\u0002\u0002\u0002\u0312\u0313\u0007E\u0002\u0002", + "\u0313\u0314\u0007N\u0002\u0002\u0314\u0315\u0007W\u0002\u0002\u0315", + "\u0316\u0007U\u0002\u0002\u0316\u0317\u0007V\u0002\u0002\u0317\u0318", + "\u0007G\u0002\u0002\u0318\u0319\u0007T\u0002\u0002\u0319\u031a\u0007", + "G\u0002\u0002\u031a\u031b\u0007F\u0002\u0002\u031bP\u0003\u0002\u0002", + "\u0002\u031c\u031d\u0007E\u0002\u0002\u031d\u031e\u0007Q\u0002\u0002", + "\u031e\u031f\u0007F\u0002\u0002\u031f\u0320\u0007G\u0002\u0002\u0320", + "\u0321\u0007I\u0002\u0002\u0321\u0322\u0007G\u0002\u0002\u0322\u0323", + "\u0007P\u0002\u0002\u0323R\u0003\u0002\u0002\u0002\u0324\u0325\u0007", + "E\u0002\u0002\u0325\u0326\u0007Q\u0002\u0002\u0326\u0327\u0007N\u0002", + "\u0002\u0327\u0328\u0007N\u0002\u0002\u0328\u0329\u0007C\u0002\u0002", + "\u0329\u032a\u0007V\u0002\u0002\u032a\u032b\u0007G\u0002\u0002\u032b", + "T\u0003\u0002\u0002\u0002\u032c\u032d\u0007E\u0002\u0002\u032d\u032e", + "\u0007Q\u0002\u0002\u032e\u032f\u0007N\u0002\u0002\u032f\u0330\u0007", + "N\u0002\u0002\u0330\u0331\u0007G\u0002\u0002\u0331\u0332\u0007E\u0002", + "\u0002\u0332\u0333\u0007V\u0002\u0002\u0333\u0334\u0007K\u0002\u0002", + "\u0334\u0335\u0007Q\u0002\u0002\u0335\u0336\u0007P\u0002\u0002\u0336", + "V\u0003\u0002\u0002\u0002\u0337\u0338\u0007E\u0002\u0002\u0338\u0339", + "\u0007Q\u0002\u0002\u0339\u033a\u0007N\u0002\u0002\u033a\u033b\u0007", + "W\u0002\u0002\u033b\u033c\u0007O\u0002\u0002\u033c\u033d\u0007P\u0002", + "\u0002\u033dX\u0003\u0002\u0002\u0002\u033e\u033f\u0007E\u0002\u0002", + "\u033f\u0340\u0007Q\u0002\u0002\u0340\u0341\u0007N\u0002\u0002\u0341", + "\u0342\u0007W\u0002\u0002\u0342\u0343\u0007O\u0002\u0002\u0343\u0344", + "\u0007P\u0002\u0002\u0344\u0345\u0007U\u0002\u0002\u0345Z\u0003\u0002", + "\u0002\u0002\u0346\u0347\u0007E\u0002\u0002\u0347\u0348\u0007Q\u0002", + "\u0002\u0348\u0349\u0007O\u0002\u0002\u0349\u034a\u0007O\u0002\u0002", + "\u034a\u034b\u0007G\u0002\u0002\u034b\u034c\u0007P\u0002\u0002\u034c", + "\u034d\u0007V\u0002\u0002\u034d\\\u0003\u0002\u0002\u0002\u034e\u034f", + "\u0007E\u0002\u0002\u034f\u0350\u0007Q\u0002\u0002\u0350\u0351\u0007", + "O\u0002\u0002\u0351\u0352\u0007O\u0002\u0002\u0352\u0353\u0007K\u0002", + "\u0002\u0353\u0354\u0007V\u0002\u0002\u0354^\u0003\u0002\u0002\u0002", + "\u0355\u0356\u0007E\u0002\u0002\u0356\u0357\u0007Q\u0002\u0002\u0357", + "\u0358\u0007O\u0002\u0002\u0358\u0359\u0007R\u0002\u0002\u0359\u035a", + "\u0007C\u0002\u0002\u035a\u035b\u0007E\u0002\u0002\u035b\u035c\u0007", + "V\u0002\u0002\u035c`\u0003\u0002\u0002\u0002\u035d\u035e\u0007E\u0002", + "\u0002\u035e\u035f\u0007Q\u0002\u0002\u035f\u0360\u0007O\u0002\u0002", + "\u0360\u0361\u0007R\u0002\u0002\u0361\u0362\u0007C\u0002\u0002\u0362", + "\u0363\u0007E\u0002\u0002\u0363\u0364\u0007V\u0002\u0002\u0364\u0365", + "\u0007K\u0002\u0002\u0365\u0366\u0007Q\u0002\u0002\u0366\u0367\u0007", + "P\u0002\u0002\u0367\u0368\u0007U\u0002\u0002\u0368b\u0003\u0002\u0002", + "\u0002\u0369\u036a\u0007E\u0002\u0002\u036a\u036b\u0007Q\u0002\u0002", + "\u036b\u036c\u0007O\u0002\u0002\u036c\u036d\u0007R\u0002\u0002\u036d", + "\u036e\u0007W\u0002\u0002\u036e\u036f\u0007V\u0002\u0002\u036f\u0370", + "\u0007G\u0002\u0002\u0370d\u0003\u0002\u0002\u0002\u0371\u0372\u0007", + "E\u0002\u0002\u0372\u0373\u0007Q\u0002\u0002\u0373\u0374\u0007P\u0002", + "\u0002\u0374\u0375\u0007E\u0002\u0002\u0375\u0376\u0007C\u0002\u0002", + "\u0376\u0377\u0007V\u0002\u0002\u0377\u0378\u0007G\u0002\u0002\u0378", + "\u0379\u0007P\u0002\u0002\u0379\u037a\u0007C\u0002\u0002\u037a\u037b", + "\u0007V\u0002\u0002\u037b\u037c\u0007G\u0002\u0002\u037cf\u0003\u0002", + "\u0002\u0002\u037d\u037e\u0007E\u0002\u0002\u037e\u037f\u0007Q\u0002", + "\u0002\u037f\u0380\u0007P\u0002\u0002\u0380\u0381\u0007U\u0002\u0002", + "\u0381\u0382\u0007V\u0002\u0002\u0382\u0383\u0007T\u0002\u0002\u0383", + "\u0384\u0007C\u0002\u0002\u0384\u0385\u0007K\u0002\u0002\u0385\u0386", + "\u0007P\u0002\u0002\u0386\u0387\u0007V\u0002\u0002\u0387h\u0003\u0002", + "\u0002\u0002\u0388\u0389\u0007E\u0002\u0002\u0389\u038a\u0007Q\u0002", + "\u0002\u038a\u038b\u0007U\u0002\u0002\u038b\u038c\u0007V\u0002\u0002", + "\u038cj\u0003\u0002\u0002\u0002\u038d\u038e\u0007E\u0002\u0002\u038e", + "\u038f\u0007T\u0002\u0002\u038f\u0390\u0007G\u0002\u0002\u0390\u0391", + "\u0007C\u0002\u0002\u0391\u0392\u0007V\u0002\u0002\u0392\u0393\u0007", + "G\u0002\u0002\u0393l\u0003\u0002\u0002\u0002\u0394\u0395\u0007E\u0002", + "\u0002\u0395\u0396\u0007T\u0002\u0002\u0396\u0397\u0007Q\u0002\u0002", + "\u0397\u0398\u0007U\u0002\u0002\u0398\u0399\u0007U\u0002\u0002\u0399", + "n\u0003\u0002\u0002\u0002\u039a\u039b\u0007E\u0002\u0002\u039b\u039c", + "\u0007W\u0002\u0002\u039c\u039d\u0007D\u0002\u0002\u039d\u039e\u0007", + "G\u0002\u0002\u039ep\u0003\u0002\u0002\u0002\u039f\u03a0\u0007E\u0002", + "\u0002\u03a0\u03a1\u0007W\u0002\u0002\u03a1\u03a2\u0007T\u0002\u0002", + "\u03a2\u03a3\u0007T\u0002\u0002\u03a3\u03a4\u0007G\u0002\u0002\u03a4", + "\u03a5\u0007P\u0002\u0002\u03a5\u03a6\u0007V\u0002\u0002\u03a6r\u0003", + "\u0002\u0002\u0002\u03a7\u03a8\u0007E\u0002\u0002\u03a8\u03a9\u0007", + "W\u0002\u0002\u03a9\u03aa\u0007T\u0002\u0002\u03aa\u03ab\u0007T\u0002", + "\u0002\u03ab\u03ac\u0007G\u0002\u0002\u03ac\u03ad\u0007P\u0002\u0002", + "\u03ad\u03ae\u0007V\u0002\u0002\u03ae\u03af\u0007a\u0002\u0002\u03af", + "\u03b0\u0007F\u0002\u0002\u03b0\u03b1\u0007C\u0002\u0002\u03b1\u03b2", + "\u0007V\u0002\u0002\u03b2\u03b3\u0007G\u0002\u0002\u03b3t\u0003\u0002", + "\u0002\u0002\u03b4\u03b5\u0007E\u0002\u0002\u03b5\u03b6\u0007W\u0002", + "\u0002\u03b6\u03b7\u0007T\u0002\u0002\u03b7\u03b8\u0007T\u0002\u0002", + "\u03b8\u03b9\u0007G\u0002\u0002\u03b9\u03ba\u0007P\u0002\u0002\u03ba", + "\u03bb\u0007V\u0002\u0002\u03bb\u03bc\u0007a\u0002\u0002\u03bc\u03bd", + "\u0007V\u0002\u0002\u03bd\u03be\u0007K\u0002\u0002\u03be\u03bf\u0007", + "O\u0002\u0002\u03bf\u03c0\u0007G\u0002\u0002\u03c0v\u0003\u0002\u0002", + "\u0002\u03c1\u03c2\u0007E\u0002\u0002\u03c2\u03c3\u0007W\u0002\u0002", + "\u03c3\u03c4\u0007T\u0002\u0002\u03c4\u03c5\u0007T\u0002\u0002\u03c5", + "\u03c6\u0007G\u0002\u0002\u03c6\u03c7\u0007P\u0002\u0002\u03c7\u03c8", + "\u0007V\u0002\u0002\u03c8\u03c9\u0007a\u0002\u0002\u03c9\u03ca\u0007", + "V\u0002\u0002\u03ca\u03cb\u0007K\u0002\u0002\u03cb\u03cc\u0007O\u0002", + "\u0002\u03cc\u03cd\u0007G\u0002\u0002\u03cd\u03ce\u0007U\u0002\u0002", + "\u03ce\u03cf\u0007V\u0002\u0002\u03cf\u03d0\u0007C\u0002\u0002\u03d0", + "\u03d1\u0007O\u0002\u0002\u03d1\u03d2\u0007R\u0002\u0002\u03d2x\u0003", + "\u0002\u0002\u0002\u03d3\u03d4\u0007E\u0002\u0002\u03d4\u03d5\u0007", + "W\u0002\u0002\u03d5\u03d6\u0007T\u0002\u0002\u03d6\u03d7\u0007T\u0002", + "\u0002\u03d7\u03d8\u0007G\u0002\u0002\u03d8\u03d9\u0007P\u0002\u0002", + "\u03d9\u03da\u0007V\u0002\u0002\u03da\u03db\u0007a\u0002\u0002\u03db", + "\u03dc\u0007W\u0002\u0002\u03dc\u03dd\u0007U\u0002\u0002\u03dd\u03de", + "\u0007G\u0002\u0002\u03de\u03df\u0007T\u0002\u0002\u03dfz\u0003\u0002", + "\u0002\u0002\u03e0\u03e1\u0007F\u0002\u0002\u03e1\u03e2\u0007C\u0002", + "\u0002\u03e2\u03e3\u0007V\u0002\u0002\u03e3\u03e4\u0007C\u0002\u0002", + "\u03e4|\u0003\u0002\u0002\u0002\u03e5\u03e6\u0007F\u0002\u0002\u03e6", + "\u03e7\u0007C\u0002\u0002\u03e7\u03e8\u0007V\u0002\u0002\u03e8\u03e9", + "\u0007C\u0002\u0002\u03e9\u03ea\u0007D\u0002\u0002\u03ea\u03eb\u0007", + "C\u0002\u0002\u03eb\u03ec\u0007U\u0002\u0002\u03ec\u03ed\u0007G\u0002", + "\u0002\u03ed~\u0003\u0002\u0002\u0002\u03ee\u03ef\u0007F\u0002\u0002", + "\u03ef\u03f0\u0007C\u0002\u0002\u03f0\u03f1\u0007V\u0002\u0002\u03f1", + "\u03f2\u0007C\u0002\u0002\u03f2\u03f3\u0007D\u0002\u0002\u03f3\u03f4", + "\u0007C\u0002\u0002\u03f4\u03f5\u0007U\u0002\u0002\u03f5\u03f6\u0007", + "G\u0002\u0002\u03f6\u03ff\u0007U\u0002\u0002\u03f7\u03f8\u0007U\u0002", + "\u0002\u03f8\u03f9\u0007E\u0002\u0002\u03f9\u03fa\u0007J\u0002\u0002", + "\u03fa\u03fb\u0007G\u0002\u0002\u03fb\u03fc\u0007O\u0002\u0002\u03fc", + "\u03fd\u0007C\u0002\u0002\u03fd\u03ff\u0007U\u0002\u0002\u03fe\u03ee", + "\u0003\u0002\u0002\u0002\u03fe\u03f7\u0003\u0002\u0002\u0002\u03ff\u0080", + "\u0003\u0002\u0002\u0002\u0400\u0401\u0007F\u0002\u0002\u0401\u0402", + "\u0007D\u0002\u0002\u0402\u0403\u0007R\u0002\u0002\u0403\u0404\u0007", + "T\u0002\u0002\u0404\u0405\u0007Q\u0002\u0002\u0405\u0406\u0007R\u0002", + "\u0002\u0406\u0407\u0007G\u0002\u0002\u0407\u0408\u0007T\u0002\u0002", + "\u0408\u0409\u0007V\u0002\u0002\u0409\u040a\u0007K\u0002\u0002\u040a", + "\u040b\u0007G\u0002\u0002\u040b\u040c\u0007U\u0002\u0002\u040c\u0082", + "\u0003\u0002\u0002\u0002\u040d\u040e\u0007F\u0002\u0002\u040e\u040f", + "\u0007G\u0002\u0002\u040f\u0410\u0007H\u0002\u0002\u0410\u0411\u0007", + "K\u0002\u0002\u0411\u0412\u0007P\u0002\u0002\u0412\u0413\u0007G\u0002", + "\u0002\u0413\u0414\u0007F\u0002\u0002\u0414\u0084\u0003\u0002\u0002", + "\u0002\u0415\u0416\u0007F\u0002\u0002\u0416\u0417\u0007G\u0002\u0002", + "\u0417\u0418\u0007N\u0002\u0002\u0418\u0419\u0007G\u0002\u0002\u0419", + "\u041a\u0007V\u0002\u0002\u041a\u041b\u0007G\u0002\u0002\u041b\u0086", + "\u0003\u0002\u0002\u0002\u041c\u041d\u0007F\u0002\u0002\u041d\u041e", + "\u0007G\u0002\u0002\u041e\u041f\u0007N\u0002\u0002\u041f\u0420\u0007", + "K\u0002\u0002\u0420\u0421\u0007O\u0002\u0002\u0421\u0422\u0007K\u0002", + "\u0002\u0422\u0423\u0007V\u0002\u0002\u0423\u0424\u0007G\u0002\u0002", + "\u0424\u0425\u0007F\u0002\u0002\u0425\u0088\u0003\u0002\u0002\u0002", + "\u0426\u0427\u0007F\u0002\u0002\u0427\u0428\u0007G\u0002\u0002\u0428", + "\u0429\u0007U\u0002\u0002\u0429\u042a\u0007E\u0002\u0002\u042a\u008a", + "\u0003\u0002\u0002\u0002\u042b\u042c\u0007F\u0002\u0002\u042c\u042d", + "\u0007G\u0002\u0002\u042d\u042e\u0007U\u0002\u0002\u042e\u042f\u0007", + "E\u0002\u0002\u042f\u0430\u0007T\u0002\u0002\u0430\u0431\u0007K\u0002", + "\u0002\u0431\u0432\u0007D\u0002\u0002\u0432\u0433\u0007G\u0002\u0002", + "\u0433\u008c\u0003\u0002\u0002\u0002\u0434\u0435\u0007F\u0002\u0002", + "\u0435\u0436\u0007H\u0002\u0002\u0436\u0437\u0007U\u0002\u0002\u0437", + "\u008e\u0003\u0002\u0002\u0002\u0438\u0439\u0007F\u0002\u0002\u0439", + "\u043a\u0007K\u0002\u0002\u043a\u043b\u0007T\u0002\u0002\u043b\u043c", + "\u0007G\u0002\u0002\u043c\u043d\u0007E\u0002\u0002\u043d\u043e\u0007", + "V\u0002\u0002\u043e\u043f\u0007Q\u0002\u0002\u043f\u0440\u0007T\u0002", + "\u0002\u0440\u0441\u0007K\u0002\u0002\u0441\u0442\u0007G\u0002\u0002", + "\u0442\u0443\u0007U\u0002\u0002\u0443\u0090\u0003\u0002\u0002\u0002", + "\u0444\u0445\u0007F\u0002\u0002\u0445\u0446\u0007K\u0002\u0002\u0446", + "\u0447\u0007T\u0002\u0002\u0447\u0448\u0007G\u0002\u0002\u0448\u0449", + "\u0007E\u0002\u0002\u0449\u044a\u0007V\u0002\u0002\u044a\u044b\u0007", + "Q\u0002\u0002\u044b\u044c\u0007T\u0002\u0002\u044c\u044d\u0007[\u0002", + "\u0002\u044d\u0092\u0003\u0002\u0002\u0002\u044e\u044f\u0007F\u0002", + "\u0002\u044f\u0450\u0007K\u0002\u0002\u0450\u0451\u0007U\u0002\u0002", + "\u0451\u0452\u0007V\u0002\u0002\u0452\u0453\u0007K\u0002\u0002\u0453", + "\u0454\u0007P\u0002\u0002\u0454\u0455\u0007E\u0002\u0002\u0455\u0456", + "\u0007V\u0002\u0002\u0456\u0094\u0003\u0002\u0002\u0002\u0457\u0458", + "\u0007F\u0002\u0002\u0458\u0459\u0007K\u0002\u0002\u0459\u045a\u0007", + "U\u0002\u0002\u045a\u045b\u0007V\u0002\u0002\u045b\u045c\u0007T\u0002", + "\u0002\u045c\u045d\u0007K\u0002\u0002\u045d\u045e\u0007D\u0002\u0002", + "\u045e\u045f\u0007W\u0002\u0002\u045f\u0460\u0007V\u0002\u0002\u0460", + "\u0461\u0007G\u0002\u0002\u0461\u0096\u0003\u0002\u0002\u0002\u0462", + "\u0463\u0007F\u0002\u0002\u0463\u0464\u0007K\u0002\u0002\u0464\u0465", + "\u0007X\u0002\u0002\u0465\u0098\u0003\u0002\u0002\u0002\u0466\u0467", + "\u0007F\u0002\u0002\u0467\u0468\u0007T\u0002\u0002\u0468\u0469\u0007", + "Q\u0002\u0002\u0469\u046a\u0007R\u0002\u0002\u046a\u009a\u0003\u0002", + "\u0002\u0002\u046b\u046c\u0007G\u0002\u0002\u046c\u046d\u0007N\u0002", + "\u0002\u046d\u046e\u0007U\u0002\u0002\u046e\u046f\u0007G\u0002\u0002", + "\u046f\u009c\u0003\u0002\u0002\u0002\u0470\u0471\u0007G\u0002\u0002", + "\u0471\u0472\u0007P\u0002\u0002\u0472\u0473\u0007F\u0002\u0002\u0473", + "\u009e\u0003\u0002\u0002\u0002\u0474\u0475\u0007G\u0002\u0002\u0475", + "\u0476\u0007U\u0002\u0002\u0476\u0477\u0007E\u0002\u0002\u0477\u0478", + "\u0007C\u0002\u0002\u0478\u0479\u0007R\u0002\u0002\u0479\u047a\u0007", + "G\u0002\u0002\u047a\u00a0\u0003\u0002\u0002\u0002\u047b\u047c\u0007", + "G\u0002\u0002\u047c\u047d\u0007U\u0002\u0002\u047d\u047e\u0007E\u0002", + "\u0002\u047e\u047f\u0007C\u0002\u0002\u047f\u0480\u0007R\u0002\u0002", + "\u0480\u0481\u0007G\u0002\u0002\u0481\u0482\u0007F\u0002\u0002\u0482", + "\u00a2\u0003\u0002\u0002\u0002\u0483\u0484\u0007G\u0002\u0002\u0484", + "\u0485\u0007Z\u0002\u0002\u0485\u0486\u0007E\u0002\u0002\u0486\u0487", + "\u0007G\u0002\u0002\u0487\u0488\u0007R\u0002\u0002\u0488\u0489\u0007", + "V\u0002\u0002\u0489\u00a4\u0003\u0002\u0002\u0002\u048a\u048b\u0007", + "G\u0002\u0002\u048b\u048c\u0007Z\u0002\u0002\u048c\u048d\u0007E\u0002", + "\u0002\u048d\u048e\u0007J\u0002\u0002\u048e\u048f\u0007C\u0002\u0002", + "\u048f\u0490\u0007P\u0002\u0002\u0490\u0491\u0007I\u0002\u0002\u0491", + "\u0492\u0007G\u0002\u0002\u0492\u00a6\u0003\u0002\u0002\u0002\u0493", + "\u0494\u0007G\u0002\u0002\u0494\u0495\u0007Z\u0002\u0002\u0495\u0496", + "\u0007K\u0002\u0002\u0496\u0497\u0007U\u0002\u0002\u0497\u0498\u0007", + "V\u0002\u0002\u0498\u0499\u0007U\u0002\u0002\u0499\u00a8\u0003\u0002", + "\u0002\u0002\u049a\u049b\u0007G\u0002\u0002\u049b\u049c\u0007Z\u0002", + "\u0002\u049c\u049d\u0007R\u0002\u0002\u049d\u049e\u0007N\u0002\u0002", + "\u049e\u049f\u0007C\u0002\u0002\u049f\u04a0\u0007K\u0002\u0002\u04a0", + "\u04a1\u0007P\u0002\u0002\u04a1\u00aa\u0003\u0002\u0002\u0002\u04a2", + "\u04a3\u0007G\u0002\u0002\u04a3\u04a4\u0007Z\u0002\u0002\u04a4\u04a5", + "\u0007R\u0002\u0002\u04a5\u04a6\u0007Q\u0002\u0002\u04a6\u04a7\u0007", + "T\u0002\u0002\u04a7\u04a8\u0007V\u0002\u0002\u04a8\u00ac\u0003\u0002", + "\u0002\u0002\u04a9\u04aa\u0007G\u0002\u0002\u04aa\u04ab\u0007Z\u0002", + "\u0002\u04ab\u04ac\u0007V\u0002\u0002\u04ac\u04ad\u0007G\u0002\u0002", + "\u04ad\u04ae\u0007P\u0002\u0002\u04ae\u04af\u0007F\u0002\u0002\u04af", + "\u04b0\u0007G\u0002\u0002\u04b0\u04b1\u0007F\u0002\u0002\u04b1\u00ae", + "\u0003\u0002\u0002\u0002\u04b2\u04b3\u0007G\u0002\u0002\u04b3\u04b4", + "\u0007Z\u0002\u0002\u04b4\u04b5\u0007V\u0002\u0002\u04b5\u04b6\u0007", + "G\u0002\u0002\u04b6\u04b7\u0007T\u0002\u0002\u04b7\u04b8\u0007P\u0002", + "\u0002\u04b8\u04b9\u0007C\u0002\u0002\u04b9\u04ba\u0007N\u0002\u0002", + "\u04ba\u00b0\u0003\u0002\u0002\u0002\u04bb\u04bc\u0007G\u0002\u0002", + "\u04bc\u04bd\u0007Z\u0002\u0002\u04bd\u04be\u0007V\u0002\u0002\u04be", + "\u04bf\u0007T\u0002\u0002\u04bf\u04c0\u0007C\u0002\u0002\u04c0\u04c1", + "\u0007E\u0002\u0002\u04c1\u04c2\u0007V\u0002\u0002\u04c2\u00b2\u0003", + "\u0002\u0002\u0002\u04c3\u04c4\u0007H\u0002\u0002\u04c4\u04c5\u0007", + "C\u0002\u0002\u04c5\u04c6\u0007N\u0002\u0002\u04c6\u04c7\u0007U\u0002", + "\u0002\u04c7\u04c8\u0007G\u0002\u0002\u04c8\u00b4\u0003\u0002\u0002", + "\u0002\u04c9\u04ca\u0007H\u0002\u0002\u04ca\u04cb\u0007G\u0002\u0002", + "\u04cb\u04cc\u0007V\u0002\u0002\u04cc\u04cd\u0007E\u0002\u0002\u04cd", + "\u04ce\u0007J\u0002\u0002\u04ce\u00b6\u0003\u0002\u0002\u0002\u04cf", + "\u04d0\u0007H\u0002\u0002\u04d0\u04d1\u0007K\u0002\u0002\u04d1\u04d2", + "\u0007G\u0002\u0002\u04d2\u04d3\u0007N\u0002\u0002\u04d3\u04d4\u0007", + "F\u0002\u0002\u04d4\u04d5\u0007U\u0002\u0002\u04d5\u00b8\u0003\u0002", + "\u0002\u0002\u04d6\u04d7\u0007H\u0002\u0002\u04d7\u04d8\u0007K\u0002", + "\u0002\u04d8\u04d9\u0007N\u0002\u0002\u04d9\u04da\u0007V\u0002\u0002", + "\u04da\u04db\u0007G\u0002\u0002\u04db\u04dc\u0007T\u0002\u0002\u04dc", + "\u00ba\u0003\u0002\u0002\u0002\u04dd\u04de\u0007H\u0002\u0002\u04de", + "\u04df\u0007K\u0002\u0002\u04df\u04e0\u0007N\u0002\u0002\u04e0\u04e1", + "\u0007G\u0002\u0002\u04e1\u04e2\u0007H\u0002\u0002\u04e2\u04e3\u0007", + "Q\u0002\u0002\u04e3\u04e4\u0007T\u0002\u0002\u04e4\u04e5\u0007O\u0002", + "\u0002\u04e5\u04e6\u0007C\u0002\u0002\u04e6\u04e7\u0007V\u0002\u0002", + "\u04e7\u00bc\u0003\u0002\u0002\u0002\u04e8\u04e9\u0007H\u0002\u0002", + "\u04e9\u04ea\u0007K\u0002\u0002\u04ea\u04eb\u0007T\u0002\u0002\u04eb", + "\u04ec\u0007U\u0002\u0002\u04ec\u04ed\u0007V\u0002\u0002\u04ed\u00be", + "\u0003\u0002\u0002\u0002\u04ee\u04ef\u0007H\u0002\u0002\u04ef\u04f0", + "\u0007Q\u0002\u0002\u04f0\u04f1\u0007N\u0002\u0002\u04f1\u04f2\u0007", + "N\u0002\u0002\u04f2\u04f3\u0007Q\u0002\u0002\u04f3\u04f4\u0007Y\u0002", + "\u0002\u04f4\u04f5\u0007K\u0002\u0002\u04f5\u04f6\u0007P\u0002\u0002", + "\u04f6\u04f7\u0007I\u0002\u0002\u04f7\u00c0\u0003\u0002\u0002\u0002", + "\u04f8\u04f9\u0007H\u0002\u0002\u04f9\u04fa\u0007Q\u0002\u0002\u04fa", + "\u04fb\u0007T\u0002\u0002\u04fb\u00c2\u0003\u0002\u0002\u0002\u04fc", + "\u04fd\u0007H\u0002\u0002\u04fd\u04fe\u0007Q\u0002\u0002\u04fe\u04ff", + "\u0007T\u0002\u0002\u04ff\u0500\u0007G\u0002\u0002\u0500\u0501\u0007", + "K\u0002\u0002\u0501\u0502\u0007I\u0002\u0002\u0502\u0503\u0007P\u0002", + "\u0002\u0503\u00c4\u0003\u0002\u0002\u0002\u0504\u0505\u0007H\u0002", + "\u0002\u0505\u0506\u0007Q\u0002\u0002\u0506\u0507\u0007T\u0002\u0002", + "\u0507\u0508\u0007O\u0002\u0002\u0508\u0509\u0007C\u0002\u0002\u0509", + "\u050a\u0007V\u0002\u0002\u050a\u00c6\u0003\u0002\u0002\u0002\u050b", + "\u050c\u0007H\u0002\u0002\u050c\u050d\u0007Q\u0002\u0002\u050d\u050e", + "\u0007T\u0002\u0002\u050e\u050f\u0007O\u0002\u0002\u050f\u0510\u0007", + "C\u0002\u0002\u0510\u0511\u0007V\u0002\u0002\u0511\u0512\u0007V\u0002", + "\u0002\u0512\u0513\u0007G\u0002\u0002\u0513\u0514\u0007F\u0002\u0002", + "\u0514\u00c8\u0003\u0002\u0002\u0002\u0515\u0516\u0007H\u0002\u0002", + "\u0516\u0517\u0007T\u0002\u0002\u0517\u0518\u0007Q\u0002\u0002\u0518", + "\u0519\u0007O\u0002\u0002\u0519\u00ca\u0003\u0002\u0002\u0002\u051a", + "\u051b\u0007H\u0002\u0002\u051b\u051c\u0007W\u0002\u0002\u051c\u051d", + "\u0007N\u0002\u0002\u051d\u051e\u0007N\u0002\u0002\u051e\u00cc\u0003", + "\u0002\u0002\u0002\u051f\u0520\u0007H\u0002\u0002\u0520\u0521\u0007", + "W\u0002\u0002\u0521\u0522\u0007P\u0002\u0002\u0522\u0523\u0007E\u0002", + "\u0002\u0523\u0524\u0007V\u0002\u0002\u0524\u0525\u0007K\u0002\u0002", + "\u0525\u0526\u0007Q\u0002\u0002\u0526\u0527\u0007P\u0002\u0002\u0527", + "\u00ce\u0003\u0002\u0002\u0002\u0528\u0529\u0007H\u0002\u0002\u0529", + "\u052a\u0007W\u0002\u0002\u052a\u052b\u0007P\u0002\u0002\u052b\u052c", + "\u0007E\u0002\u0002\u052c\u052d\u0007V\u0002\u0002\u052d\u052e\u0007", + "K\u0002\u0002\u052e\u052f\u0007Q\u0002\u0002\u052f\u0530\u0007P\u0002", + "\u0002\u0530\u0531\u0007U\u0002\u0002\u0531\u00d0\u0003\u0002\u0002", + "\u0002\u0532\u0533\u0007I\u0002\u0002\u0533\u0534\u0007N\u0002\u0002", + "\u0534\u0535\u0007Q\u0002\u0002\u0535\u0536\u0007D\u0002\u0002\u0536", + "\u0537\u0007C\u0002\u0002\u0537\u0538\u0007N\u0002\u0002\u0538\u00d2", + "\u0003\u0002\u0002\u0002\u0539\u053a\u0007I\u0002\u0002\u053a\u053b", + "\u0007T\u0002\u0002\u053b\u053c\u0007C\u0002\u0002\u053c\u053d\u0007", + "P\u0002\u0002\u053d\u053e\u0007V\u0002\u0002\u053e\u00d4\u0003\u0002", + "\u0002\u0002\u053f\u0540\u0007I\u0002\u0002\u0540\u0541\u0007T\u0002", + "\u0002\u0541\u0542\u0007Q\u0002\u0002\u0542\u0543\u0007W\u0002\u0002", + "\u0543\u0544\u0007R\u0002\u0002\u0544\u00d6\u0003\u0002\u0002\u0002", + "\u0545\u0546\u0007I\u0002\u0002\u0546\u0547\u0007T\u0002\u0002\u0547", + "\u0548\u0007Q\u0002\u0002\u0548\u0549\u0007W\u0002\u0002\u0549\u054a", + "\u0007R\u0002\u0002\u054a\u054b\u0007K\u0002\u0002\u054b\u054c\u0007", + "P\u0002\u0002\u054c\u054d\u0007I\u0002\u0002\u054d\u00d8\u0003\u0002", + "\u0002\u0002\u054e\u054f\u0007J\u0002\u0002\u054f\u0550\u0007C\u0002", + "\u0002\u0550\u0551\u0007X\u0002\u0002\u0551\u0552\u0007K\u0002\u0002", + "\u0552\u0553\u0007P\u0002\u0002\u0553\u0554\u0007I\u0002\u0002\u0554", + "\u00da\u0003\u0002\u0002\u0002\u0555\u0556\u0007K\u0002\u0002\u0556", + "\u0557\u0007H\u0002\u0002\u0557\u00dc\u0003\u0002\u0002\u0002\u0558", + "\u0559\u0007K\u0002\u0002\u0559\u055a\u0007I\u0002\u0002\u055a\u055b", + "\u0007P\u0002\u0002\u055b\u055c\u0007Q\u0002\u0002\u055c\u055d\u0007", + "T\u0002\u0002\u055d\u055e\u0007G\u0002\u0002\u055e\u00de\u0003\u0002", + "\u0002\u0002\u055f\u0560\u0007K\u0002\u0002\u0560\u0561\u0007O\u0002", + "\u0002\u0561\u0562\u0007R\u0002\u0002\u0562\u0563\u0007Q\u0002\u0002", + "\u0563\u0564\u0007T\u0002\u0002\u0564\u0565\u0007V\u0002\u0002\u0565", + "\u00e0\u0003\u0002\u0002\u0002\u0566\u0567\u0007K\u0002\u0002\u0567", + "\u0568\u0007P\u0002\u0002\u0568\u00e2\u0003\u0002\u0002\u0002\u0569", + "\u056a\u0007K\u0002\u0002\u056a\u056b\u0007P\u0002\u0002\u056b\u056c", + "\u0007F\u0002\u0002\u056c\u056d\u0007G\u0002\u0002\u056d\u056e\u0007", + "Z\u0002\u0002\u056e\u00e4\u0003\u0002\u0002\u0002\u056f\u0570\u0007", + "K\u0002\u0002\u0570\u0571\u0007P\u0002\u0002\u0571\u0572\u0007F\u0002", + "\u0002\u0572\u0573\u0007G\u0002\u0002\u0573\u0574\u0007Z\u0002\u0002", + "\u0574\u0575\u0007G\u0002\u0002\u0575\u0576\u0007U\u0002\u0002\u0576", + "\u00e6\u0003\u0002\u0002\u0002\u0577\u0578\u0007K\u0002\u0002\u0578", + "\u0579\u0007P\u0002\u0002\u0579\u057a\u0007P\u0002\u0002\u057a\u057b", + "\u0007G\u0002\u0002\u057b\u057c\u0007T\u0002\u0002\u057c\u00e8\u0003", + "\u0002\u0002\u0002\u057d\u057e\u0007K\u0002\u0002\u057e\u057f\u0007", + "P\u0002\u0002\u057f\u0580\u0007R\u0002\u0002\u0580\u0581\u0007C\u0002", + "\u0002\u0581\u0582\u0007V\u0002\u0002\u0582\u0583\u0007J\u0002\u0002", + "\u0583\u00ea\u0003\u0002\u0002\u0002\u0584\u0585\u0007K\u0002\u0002", + "\u0585\u0586\u0007P\u0002\u0002\u0586\u0587\u0007R\u0002\u0002\u0587", + "\u0588\u0007W\u0002\u0002\u0588\u0589\u0007V\u0002\u0002\u0589\u058a", + "\u0007H\u0002\u0002\u058a\u058b\u0007Q\u0002\u0002\u058b\u058c\u0007", + "T\u0002\u0002\u058c\u058d\u0007O\u0002\u0002\u058d\u058e\u0007C\u0002", + "\u0002\u058e\u058f\u0007V\u0002\u0002\u058f\u00ec\u0003\u0002\u0002", + "\u0002\u0590\u0591\u0007K\u0002\u0002\u0591\u0592\u0007P\u0002\u0002", + "\u0592\u0593\u0007U\u0002\u0002\u0593\u0594\u0007G\u0002\u0002\u0594", + "\u0595\u0007T\u0002\u0002\u0595\u0596\u0007V\u0002\u0002\u0596\u00ee", + "\u0003\u0002\u0002\u0002\u0597\u0598\u0007K\u0002\u0002\u0598\u0599", + "\u0007P\u0002\u0002\u0599\u059a\u0007V\u0002\u0002\u059a\u059b\u0007", + "G\u0002\u0002\u059b\u059c\u0007T\u0002\u0002\u059c\u059d\u0007U\u0002", + "\u0002\u059d\u059e\u0007G\u0002\u0002\u059e\u059f\u0007E\u0002\u0002", + "\u059f\u05a0\u0007V\u0002\u0002\u05a0\u00f0\u0003\u0002\u0002\u0002", + "\u05a1\u05a2\u0007K\u0002\u0002\u05a2\u05a3\u0007P\u0002\u0002\u05a3", + "\u05a4\u0007V\u0002\u0002\u05a4\u05a5\u0007G\u0002\u0002\u05a5\u05a6", + "\u0007T\u0002\u0002\u05a6\u05a7\u0007X\u0002\u0002\u05a7\u05a8\u0007", + "C\u0002\u0002\u05a8\u05a9\u0007N\u0002\u0002\u05a9\u00f2\u0003\u0002", + "\u0002\u0002\u05aa\u05ab\u0007K\u0002\u0002\u05ab\u05ac\u0007P\u0002", + "\u0002\u05ac\u05ad\u0007V\u0002\u0002\u05ad\u05ae\u0007Q\u0002\u0002", + "\u05ae\u00f4\u0003\u0002\u0002\u0002\u05af\u05b0\u0007K\u0002\u0002", + "\u05b0\u05b1\u0007U\u0002\u0002\u05b1\u00f6\u0003\u0002\u0002\u0002", + "\u05b2\u05b3\u0007K\u0002\u0002\u05b3\u05b4\u0007V\u0002\u0002\u05b4", + "\u05b5\u0007G\u0002\u0002\u05b5\u05b6\u0007O\u0002\u0002\u05b6\u05b7", + "\u0007U\u0002\u0002\u05b7\u00f8\u0003\u0002\u0002\u0002\u05b8\u05b9", + "\u0007L\u0002\u0002\u05b9\u05ba\u0007Q\u0002\u0002\u05ba\u05bb\u0007", + "K\u0002\u0002\u05bb\u05bc\u0007P\u0002\u0002\u05bc\u00fa\u0003\u0002", + "\u0002\u0002\u05bd\u05be\u0007M\u0002\u0002\u05be\u05bf\u0007G\u0002", + "\u0002\u05bf\u05c0\u0007[\u0002\u0002\u05c0\u05c1\u0007U\u0002\u0002", + "\u05c1\u00fc\u0003\u0002\u0002\u0002\u05c2\u05c3\u0007N\u0002\u0002", + "\u05c3\u05c4\u0007C\u0002\u0002\u05c4\u05c5\u0007U\u0002\u0002\u05c5", + "\u05c6\u0007V\u0002\u0002\u05c6\u00fe\u0003\u0002\u0002\u0002\u05c7", + "\u05c8\u0007N\u0002\u0002\u05c8\u05c9\u0007C\u0002\u0002\u05c9\u05ca", + "\u0007V\u0002\u0002\u05ca\u05cb\u0007G\u0002\u0002\u05cb\u05cc\u0007", + "T\u0002\u0002\u05cc\u05cd\u0007C\u0002\u0002\u05cd\u05ce\u0007N\u0002", + "\u0002\u05ce\u0100\u0003\u0002\u0002\u0002\u05cf\u05d0\u0007N\u0002", + "\u0002\u05d0\u05d1\u0007C\u0002\u0002\u05d1\u05d2\u0007\\\u0002\u0002", + "\u05d2\u05d3\u0007[\u0002\u0002\u05d3\u0102\u0003\u0002\u0002\u0002", + "\u05d4\u05d5\u0007N\u0002\u0002\u05d5\u05d6\u0007G\u0002\u0002\u05d6", + "\u05d7\u0007C\u0002\u0002\u05d7\u05d8\u0007F\u0002\u0002\u05d8\u05d9", + "\u0007K\u0002\u0002\u05d9\u05da\u0007P\u0002\u0002\u05da\u05db\u0007", + "I\u0002\u0002\u05db\u0104\u0003\u0002\u0002\u0002\u05dc\u05dd\u0007", + "N\u0002\u0002\u05dd\u05de\u0007G\u0002\u0002\u05de\u05df\u0007H\u0002", + "\u0002\u05df\u05e0\u0007V\u0002\u0002\u05e0\u0106\u0003\u0002\u0002", + "\u0002\u05e1\u05e2\u0007N\u0002\u0002\u05e2\u05e3\u0007K\u0002\u0002", + "\u05e3\u05e4\u0007M\u0002\u0002\u05e4\u05e5\u0007G\u0002\u0002\u05e5", + "\u0108\u0003\u0002\u0002\u0002\u05e6\u05e7\u0007N\u0002\u0002\u05e7", + "\u05e8\u0007K\u0002\u0002\u05e8\u05e9\u0007O\u0002\u0002\u05e9\u05ea", + "\u0007K\u0002\u0002\u05ea\u05eb\u0007V\u0002\u0002\u05eb\u010a\u0003", + "\u0002\u0002\u0002\u05ec\u05ed\u0007N\u0002\u0002\u05ed\u05ee\u0007", + "K\u0002\u0002\u05ee\u05ef\u0007P\u0002\u0002\u05ef\u05f0\u0007G\u0002", + "\u0002\u05f0\u05f1\u0007U\u0002\u0002\u05f1\u010c\u0003\u0002\u0002", + "\u0002\u05f2\u05f3\u0007N\u0002\u0002\u05f3\u05f4\u0007K\u0002\u0002", + "\u05f4\u05f5\u0007U\u0002\u0002\u05f5\u05f6\u0007V\u0002\u0002\u05f6", + "\u010e\u0003\u0002\u0002\u0002\u05f7\u05f8\u0007N\u0002\u0002\u05f8", + "\u05f9\u0007Q\u0002\u0002\u05f9\u05fa\u0007C\u0002\u0002\u05fa\u05fb", + "\u0007F\u0002\u0002\u05fb\u0110\u0003\u0002\u0002\u0002\u05fc\u05fd", + "\u0007N\u0002\u0002\u05fd\u05fe\u0007Q\u0002\u0002\u05fe\u05ff\u0007", + "E\u0002\u0002\u05ff\u0600\u0007C\u0002\u0002\u0600\u0601\u0007N\u0002", + "\u0002\u0601\u0112\u0003\u0002\u0002\u0002\u0602\u0603\u0007N\u0002", + "\u0002\u0603\u0604\u0007Q\u0002\u0002\u0604\u0605\u0007E\u0002\u0002", + "\u0605\u0606\u0007C\u0002\u0002\u0606\u0607\u0007V\u0002\u0002\u0607", + "\u0608\u0007K\u0002\u0002\u0608\u0609\u0007Q\u0002\u0002\u0609\u060a", + "\u0007P\u0002\u0002\u060a\u0114\u0003\u0002\u0002\u0002\u060b\u060c", + "\u0007N\u0002\u0002\u060c\u060d\u0007Q\u0002\u0002\u060d\u060e\u0007", + "E\u0002\u0002\u060e\u060f\u0007M\u0002\u0002\u060f\u0116\u0003\u0002", + "\u0002\u0002\u0610\u0611\u0007N\u0002\u0002\u0611\u0612\u0007Q\u0002", + "\u0002\u0612\u0613\u0007E\u0002\u0002\u0613\u0614\u0007M\u0002\u0002", + "\u0614\u0615\u0007U\u0002\u0002\u0615\u0118\u0003\u0002\u0002\u0002", + "\u0616\u0617\u0007N\u0002\u0002\u0617\u0618\u0007Q\u0002\u0002\u0618", + "\u0619\u0007I\u0002\u0002\u0619\u061a\u0007K\u0002\u0002\u061a\u061b", + "\u0007E\u0002\u0002\u061b\u061c\u0007C\u0002\u0002\u061c\u061d\u0007", + "N\u0002\u0002\u061d\u011a\u0003\u0002\u0002\u0002\u061e\u061f\u0007", + "O\u0002\u0002\u061f\u0620\u0007C\u0002\u0002\u0620\u0621\u0007E\u0002", + "\u0002\u0621\u0622\u0007T\u0002\u0002\u0622\u0623\u0007Q\u0002\u0002", + "\u0623\u011c\u0003\u0002\u0002\u0002\u0624\u0625\u0007O\u0002\u0002", + "\u0625\u0626\u0007C\u0002\u0002\u0626\u0627\u0007R\u0002\u0002\u0627", + "\u011e\u0003\u0002\u0002\u0002\u0628\u0629\u0007O\u0002\u0002\u0629", + "\u062a\u0007C\u0002\u0002\u062a\u062b\u0007V\u0002\u0002\u062b\u062c", + "\u0007E\u0002\u0002\u062c\u062d\u0007J\u0002\u0002\u062d\u062e\u0007", + "G\u0002\u0002\u062e\u062f\u0007F\u0002\u0002\u062f\u0120\u0003\u0002", + "\u0002\u0002\u0630\u0631\u0007O\u0002\u0002\u0631\u0632\u0007G\u0002", + "\u0002\u0632\u0633\u0007T\u0002\u0002\u0633\u0634\u0007I\u0002\u0002", + "\u0634\u0635\u0007G\u0002\u0002\u0635\u0122\u0003\u0002\u0002\u0002", + "\u0636\u0637\u0007O\u0002\u0002\u0637\u0638\u0007U\u0002\u0002\u0638", + "\u0639\u0007E\u0002\u0002\u0639\u063a\u0007M\u0002\u0002\u063a\u0124", + "\u0003\u0002\u0002\u0002\u063b\u063c\u0007P\u0002\u0002\u063c\u063d", + "\u0007C\u0002\u0002\u063d\u063e\u0007O\u0002\u0002\u063e\u063f\u0007", + "G\u0002\u0002\u063f\u0640\u0007U\u0002\u0002\u0640\u0641\u0007R\u0002", + "\u0002\u0641\u0642\u0007C\u0002\u0002\u0642\u0643\u0007E\u0002\u0002", + "\u0643\u0644\u0007G\u0002\u0002\u0644\u0126\u0003\u0002\u0002\u0002", + "\u0645\u0646\u0007P\u0002\u0002\u0646\u0647\u0007C\u0002\u0002\u0647", + "\u0648\u0007O\u0002\u0002\u0648\u0649\u0007G\u0002\u0002\u0649\u064a", + "\u0007U\u0002\u0002\u064a\u064b\u0007R\u0002\u0002\u064b\u064c\u0007", + "C\u0002\u0002\u064c\u064d\u0007E\u0002\u0002\u064d\u064e\u0007G\u0002", + "\u0002\u064e\u064f\u0007U\u0002\u0002\u064f\u0128\u0003\u0002\u0002", + "\u0002\u0650\u0651\u0007P\u0002\u0002\u0651\u0652\u0007C\u0002\u0002", + "\u0652\u0653\u0007V\u0002\u0002\u0653\u0654\u0007W\u0002\u0002\u0654", + "\u0655\u0007T\u0002\u0002\u0655\u0656\u0007C\u0002\u0002\u0656\u0657", + "\u0007N\u0002\u0002\u0657\u012a\u0003\u0002\u0002\u0002\u0658\u0659", + "\u0007P\u0002\u0002\u0659\u065a\u0007Q\u0002\u0002\u065a\u012c\u0003", + "\u0002\u0002\u0002\u065b\u065c\u0007P\u0002\u0002\u065c\u065d\u0007", + "Q\u0002\u0002\u065d\u0660\u0007V\u0002\u0002\u065e\u0660\u0007#\u0002", + "\u0002\u065f\u065b\u0003\u0002\u0002\u0002\u065f\u065e\u0003\u0002\u0002", + "\u0002\u0660\u012e\u0003\u0002\u0002\u0002\u0661\u0662\u0007P\u0002", + "\u0002\u0662\u0663\u0007W\u0002\u0002\u0663\u0664\u0007N\u0002\u0002", + "\u0664\u0665\u0007N\u0002\u0002\u0665\u0130\u0003\u0002\u0002\u0002", + "\u0666\u0667\u0007P\u0002\u0002\u0667\u0668\u0007W\u0002\u0002\u0668", + "\u0669\u0007N\u0002\u0002\u0669\u066a\u0007N\u0002\u0002\u066a\u066b", + "\u0007U\u0002\u0002\u066b\u0132\u0003\u0002\u0002\u0002\u066c\u066d", + "\u0007Q\u0002\u0002\u066d\u066e\u0007H\u0002\u0002\u066e\u0134\u0003", + "\u0002\u0002\u0002\u066f\u0670\u0007Q\u0002\u0002\u0670\u0671\u0007", + "P\u0002\u0002\u0671\u0136\u0003\u0002\u0002\u0002\u0672\u0673\u0007", + "Q\u0002\u0002\u0673\u0674\u0007P\u0002\u0002\u0674\u0675\u0007N\u0002", + "\u0002\u0675\u0676\u0007[\u0002\u0002\u0676\u0138\u0003\u0002\u0002", + "\u0002\u0677\u0678\u0007Q\u0002\u0002\u0678\u0679\u0007R\u0002\u0002", + "\u0679\u067a\u0007V\u0002\u0002\u067a\u067b\u0007K\u0002\u0002\u067b", + "\u067c\u0007Q\u0002\u0002\u067c\u067d\u0007P\u0002\u0002\u067d\u013a", + "\u0003\u0002\u0002\u0002\u067e\u067f\u0007Q\u0002\u0002\u067f\u0680", + "\u0007R\u0002\u0002\u0680\u0681\u0007V\u0002\u0002\u0681\u0682\u0007", + "K\u0002\u0002\u0682\u0683\u0007Q\u0002\u0002\u0683\u0684\u0007P\u0002", + "\u0002\u0684\u0685\u0007U\u0002\u0002\u0685\u013c\u0003\u0002\u0002", + "\u0002\u0686\u0687\u0007Q\u0002\u0002\u0687\u0688\u0007T\u0002\u0002", + "\u0688\u013e\u0003\u0002\u0002\u0002\u0689\u068a\u0007Q\u0002\u0002", + "\u068a\u068b\u0007T\u0002\u0002\u068b\u068c\u0007F\u0002\u0002\u068c", + "\u068d\u0007G\u0002\u0002\u068d\u068e\u0007T\u0002\u0002\u068e\u0140", + "\u0003\u0002\u0002\u0002\u068f\u0690\u0007Q\u0002\u0002\u0690\u0691", + "\u0007W\u0002\u0002\u0691\u0692\u0007V\u0002\u0002\u0692\u0142\u0003", + "\u0002\u0002\u0002\u0693\u0694\u0007Q\u0002\u0002\u0694\u0695\u0007", + "W\u0002\u0002\u0695\u0696\u0007V\u0002\u0002\u0696\u0697\u0007G\u0002", + "\u0002\u0697\u0698\u0007T\u0002\u0002\u0698\u0144\u0003\u0002\u0002", + "\u0002\u0699\u069a\u0007Q\u0002\u0002\u069a\u069b\u0007W\u0002\u0002", + "\u069b\u069c\u0007V\u0002\u0002\u069c\u069d\u0007R\u0002\u0002\u069d", + "\u069e\u0007W\u0002\u0002\u069e\u069f\u0007V\u0002\u0002\u069f\u06a0", + "\u0007H\u0002\u0002\u06a0\u06a1\u0007Q\u0002\u0002\u06a1\u06a2\u0007", + "T\u0002\u0002\u06a2\u06a3\u0007O\u0002\u0002\u06a3\u06a4\u0007C\u0002", + "\u0002\u06a4\u06a5\u0007V\u0002\u0002\u06a5\u0146\u0003\u0002\u0002", + "\u0002\u06a6\u06a7\u0007Q\u0002\u0002\u06a7\u06a8\u0007X\u0002\u0002", + "\u06a8\u06a9\u0007G\u0002\u0002\u06a9\u06aa\u0007T\u0002\u0002\u06aa", + "\u0148\u0003\u0002\u0002\u0002\u06ab\u06ac\u0007Q\u0002\u0002\u06ac", + "\u06ad\u0007X\u0002\u0002\u06ad\u06ae\u0007G\u0002\u0002\u06ae\u06af", + "\u0007T\u0002\u0002\u06af\u06b0\u0007N\u0002\u0002\u06b0\u06b1\u0007", + "C\u0002\u0002\u06b1\u06b2\u0007R\u0002\u0002\u06b2\u06b3\u0007U\u0002", + "\u0002\u06b3\u014a\u0003\u0002\u0002\u0002\u06b4\u06b5\u0007Q\u0002", + "\u0002\u06b5\u06b6\u0007X\u0002\u0002\u06b6\u06b7\u0007G\u0002\u0002", + "\u06b7\u06b8\u0007T\u0002\u0002\u06b8\u06b9\u0007N\u0002\u0002\u06b9", + "\u06ba\u0007C\u0002\u0002\u06ba\u06bb\u0007[\u0002\u0002\u06bb\u014c", + "\u0003\u0002\u0002\u0002\u06bc\u06bd\u0007Q\u0002\u0002\u06bd\u06be", + "\u0007X\u0002\u0002\u06be\u06bf\u0007G\u0002\u0002\u06bf\u06c0\u0007", + "T\u0002\u0002\u06c0\u06c1\u0007Y\u0002\u0002\u06c1\u06c2\u0007T\u0002", + "\u0002\u06c2\u06c3\u0007K\u0002\u0002\u06c3\u06c4\u0007V\u0002\u0002", + "\u06c4\u06c5\u0007G\u0002\u0002\u06c5\u014e\u0003\u0002\u0002\u0002", + "\u06c6\u06c7\u0007R\u0002\u0002\u06c7\u06c8\u0007C\u0002\u0002\u06c8", + "\u06c9\u0007T\u0002\u0002\u06c9\u06ca\u0007V\u0002\u0002\u06ca\u06cb", + "\u0007K\u0002\u0002\u06cb\u06cc\u0007V\u0002\u0002\u06cc\u06cd\u0007", + "K\u0002\u0002\u06cd\u06ce\u0007Q\u0002\u0002\u06ce\u06cf\u0007P\u0002", + "\u0002\u06cf\u0150\u0003\u0002\u0002\u0002\u06d0\u06d1\u0007R\u0002", + "\u0002\u06d1\u06d2\u0007C\u0002\u0002\u06d2\u06d3\u0007T\u0002\u0002", + "\u06d3\u06d4\u0007V\u0002\u0002\u06d4\u06d5\u0007K\u0002\u0002\u06d5", + "\u06d6\u0007V\u0002\u0002\u06d6\u06d7\u0007K\u0002\u0002\u06d7\u06d8", + "\u0007Q\u0002\u0002\u06d8\u06d9\u0007P\u0002\u0002\u06d9\u06da\u0007", + "G\u0002\u0002\u06da\u06db\u0007F\u0002\u0002\u06db\u0152\u0003\u0002", + "\u0002\u0002\u06dc\u06dd\u0007R\u0002\u0002\u06dd\u06de\u0007C\u0002", + "\u0002\u06de\u06df\u0007T\u0002\u0002\u06df\u06e0\u0007V\u0002\u0002", + "\u06e0\u06e1\u0007K\u0002\u0002\u06e1\u06e2\u0007V\u0002\u0002\u06e2", + "\u06e3\u0007K\u0002\u0002\u06e3\u06e4\u0007Q\u0002\u0002\u06e4\u06e5", + "\u0007P\u0002\u0002\u06e5\u06e6\u0007U\u0002\u0002\u06e6\u0154\u0003", + "\u0002\u0002\u0002\u06e7\u06e8\u0007R\u0002\u0002\u06e8\u06e9\u0007", + "G\u0002\u0002\u06e9\u06ea\u0007T\u0002\u0002\u06ea\u06eb\u0007E\u0002", + "\u0002\u06eb\u06ec\u0007G\u0002\u0002\u06ec\u06ed\u0007P\u0002\u0002", + "\u06ed\u06ee\u0007V\u0002\u0002\u06ee\u0156\u0003\u0002\u0002\u0002", + "\u06ef\u06f0\u0007R\u0002\u0002\u06f0\u06f1\u0007K\u0002\u0002\u06f1", + "\u06f2\u0007X\u0002\u0002\u06f2\u06f3\u0007Q\u0002\u0002\u06f3\u06f4", + "\u0007V\u0002\u0002\u06f4\u0158\u0003\u0002\u0002\u0002\u06f5\u06f6", + "\u0007R\u0002\u0002\u06f6\u06f7\u0007N\u0002\u0002\u06f7\u06f8\u0007", + "C\u0002\u0002\u06f8\u06f9\u0007E\u0002\u0002\u06f9\u06fa\u0007K\u0002", + "\u0002\u06fa\u06fb\u0007P\u0002\u0002\u06fb\u06fc\u0007I\u0002\u0002", + "\u06fc\u015a\u0003\u0002\u0002\u0002\u06fd\u06fe\u0007R\u0002\u0002", + "\u06fe\u06ff\u0007Q\u0002\u0002\u06ff\u0700\u0007U\u0002\u0002\u0700", + "\u0701\u0007K\u0002\u0002\u0701\u0702\u0007V\u0002\u0002\u0702\u0703", + "\u0007K\u0002\u0002\u0703\u0704\u0007Q\u0002\u0002\u0704\u0705\u0007", + "P\u0002\u0002\u0705\u015c\u0003\u0002\u0002\u0002\u0706\u0707\u0007", + "R\u0002\u0002\u0707\u0708\u0007T\u0002\u0002\u0708\u0709\u0007G\u0002", + "\u0002\u0709\u070a\u0007E\u0002\u0002\u070a\u070b\u0007G\u0002\u0002", + "\u070b\u070c\u0007F\u0002\u0002\u070c\u070d\u0007K\u0002\u0002\u070d", + "\u070e\u0007P\u0002\u0002\u070e\u070f\u0007I\u0002\u0002\u070f\u015e", + "\u0003\u0002\u0002\u0002\u0710\u0711\u0007R\u0002\u0002\u0711\u0712", + "\u0007T\u0002\u0002\u0712\u0713\u0007K\u0002\u0002\u0713\u0714\u0007", + "O\u0002\u0002\u0714\u0715\u0007C\u0002\u0002\u0715\u0716\u0007T\u0002", + "\u0002\u0716\u0717\u0007[\u0002\u0002\u0717\u0160\u0003\u0002\u0002", + "\u0002\u0718\u0719\u0007R\u0002\u0002\u0719\u071a\u0007T\u0002\u0002", + "\u071a\u071b\u0007K\u0002\u0002\u071b\u071c\u0007P\u0002\u0002\u071c", + "\u071d\u0007E\u0002\u0002\u071d\u071e\u0007K\u0002\u0002\u071e\u071f", + "\u0007R\u0002\u0002\u071f\u0720\u0007C\u0002\u0002\u0720\u0721\u0007", + "N\u0002\u0002\u0721\u0722\u0007U\u0002\u0002\u0722\u0162\u0003\u0002", + "\u0002\u0002\u0723\u0724\u0007R\u0002\u0002\u0724\u0725\u0007T\u0002", + "\u0002\u0725\u0726\u0007Q\u0002\u0002\u0726\u0727\u0007R\u0002\u0002", + "\u0727\u0728\u0007G\u0002\u0002\u0728\u0729\u0007T\u0002\u0002\u0729", + "\u072a\u0007V\u0002\u0002\u072a\u072b\u0007K\u0002\u0002\u072b\u072c", + "\u0007G\u0002\u0002\u072c\u072d\u0007U\u0002\u0002\u072d\u0164\u0003", + "\u0002\u0002\u0002\u072e\u072f\u0007R\u0002\u0002\u072f\u0730\u0007", + "W\u0002\u0002\u0730\u0731\u0007T\u0002\u0002\u0731\u0732\u0007I\u0002", + "\u0002\u0732\u0733\u0007G\u0002\u0002\u0733\u0166\u0003\u0002\u0002", + "\u0002\u0734\u0735\u0007S\u0002\u0002\u0735\u0736\u0007W\u0002\u0002", + "\u0736\u0737\u0007G\u0002\u0002\u0737\u0738\u0007T\u0002\u0002\u0738", + "\u0739\u0007[\u0002\u0002\u0739\u0168\u0003\u0002\u0002\u0002\u073a", + "\u073b\u0007T\u0002\u0002\u073b\u073c\u0007C\u0002\u0002\u073c\u073d", + "\u0007P\u0002\u0002\u073d\u073e\u0007I\u0002\u0002\u073e\u073f\u0007", + "G\u0002\u0002\u073f\u016a\u0003\u0002\u0002\u0002\u0740\u0741\u0007", + "T\u0002\u0002\u0741\u0742\u0007G\u0002\u0002\u0742\u0743\u0007E\u0002", + "\u0002\u0743\u0744\u0007Q\u0002\u0002\u0744\u0745\u0007T\u0002\u0002", + "\u0745\u0746\u0007F\u0002\u0002\u0746\u0747\u0007T\u0002\u0002\u0747", + "\u0748\u0007G\u0002\u0002\u0748\u0749\u0007C\u0002\u0002\u0749\u074a", + "\u0007F\u0002\u0002\u074a\u074b\u0007G\u0002\u0002\u074b\u074c\u0007", + "T\u0002\u0002\u074c\u016c\u0003\u0002\u0002\u0002\u074d\u074e\u0007", + "T\u0002\u0002\u074e\u074f\u0007G\u0002\u0002\u074f\u0750\u0007E\u0002", + "\u0002\u0750\u0751\u0007Q\u0002\u0002\u0751\u0752\u0007T\u0002\u0002", + "\u0752\u0753\u0007F\u0002\u0002\u0753\u0754\u0007Y\u0002\u0002\u0754", + "\u0755\u0007T\u0002\u0002\u0755\u0756\u0007K\u0002\u0002\u0756\u0757", + "\u0007V\u0002\u0002\u0757\u0758\u0007G\u0002\u0002\u0758\u0759\u0007", + "T\u0002\u0002\u0759\u016e\u0003\u0002\u0002\u0002\u075a\u075b\u0007", + "T\u0002\u0002\u075b\u075c\u0007G\u0002\u0002\u075c\u075d\u0007E\u0002", + "\u0002\u075d\u075e\u0007Q\u0002\u0002\u075e\u075f\u0007X\u0002\u0002", + "\u075f\u0760\u0007G\u0002\u0002\u0760\u0761\u0007T\u0002\u0002\u0761", + "\u0170\u0003\u0002\u0002\u0002\u0762\u0763\u0007T\u0002\u0002\u0763", + "\u0764\u0007G\u0002\u0002\u0764\u0765\u0007F\u0002\u0002\u0765\u0766", + "\u0007W\u0002\u0002\u0766\u0767\u0007E\u0002\u0002\u0767\u0768\u0007", + "G\u0002\u0002\u0768\u0172\u0003\u0002\u0002\u0002\u0769\u076a\u0007", + "T\u0002\u0002\u076a\u076b\u0007G\u0002\u0002\u076b\u076c\u0007H\u0002", + "\u0002\u076c\u076d\u0007G\u0002\u0002\u076d\u076e\u0007T\u0002\u0002", + "\u076e\u076f\u0007G\u0002\u0002\u076f\u0770\u0007P\u0002\u0002\u0770", + "\u0771\u0007E\u0002\u0002\u0771\u0772\u0007G\u0002\u0002\u0772\u0773", + "\u0007U\u0002\u0002\u0773\u0174\u0003\u0002\u0002\u0002\u0774\u0775", + "\u0007T\u0002\u0002\u0775\u0776\u0007G\u0002\u0002\u0776\u0777\u0007", + "H\u0002\u0002\u0777\u0778\u0007T\u0002\u0002\u0778\u0779\u0007G\u0002", + "\u0002\u0779\u077a\u0007U\u0002\u0002\u077a\u077b\u0007J\u0002\u0002", + "\u077b\u0176\u0003\u0002\u0002\u0002\u077c\u077d\u0007T\u0002\u0002", + "\u077d\u077e\u0007G\u0002\u0002\u077e\u077f\u0007P\u0002\u0002\u077f", + "\u0780\u0007C\u0002\u0002\u0780\u0781\u0007O\u0002\u0002\u0781\u0782", + "\u0007G\u0002\u0002\u0782\u0178\u0003\u0002\u0002\u0002\u0783\u0784", + "\u0007T\u0002\u0002\u0784\u0785\u0007G\u0002\u0002\u0785\u0786\u0007", + "R\u0002\u0002\u0786\u0787\u0007C\u0002\u0002\u0787\u0788\u0007K\u0002", + "\u0002\u0788\u0789\u0007T\u0002\u0002\u0789\u017a\u0003\u0002\u0002", + "\u0002\u078a\u078b\u0007T\u0002\u0002\u078b\u078c\u0007G\u0002\u0002", + "\u078c\u078d\u0007R\u0002\u0002\u078d\u078e\u0007N\u0002\u0002\u078e", + "\u078f\u0007C\u0002\u0002\u078f\u0790\u0007E\u0002\u0002\u0790\u0791", + "\u0007G\u0002\u0002\u0791\u017c\u0003\u0002\u0002\u0002\u0792\u0793", + "\u0007T\u0002\u0002\u0793\u0794\u0007G\u0002\u0002\u0794\u0795\u0007", + "U\u0002\u0002\u0795\u0796\u0007G\u0002\u0002\u0796\u0797\u0007V\u0002", + "\u0002\u0797\u017e\u0003\u0002\u0002\u0002\u0798\u0799\u0007T\u0002", + "\u0002\u0799\u079a\u0007G\u0002\u0002\u079a\u079b\u0007U\u0002\u0002", + "\u079b\u079c\u0007V\u0002\u0002\u079c\u079d\u0007T\u0002\u0002\u079d", + "\u079e\u0007K\u0002\u0002\u079e\u079f\u0007E\u0002\u0002\u079f\u07a0", + "\u0007V\u0002\u0002\u07a0\u0180\u0003\u0002\u0002\u0002\u07a1\u07a2", + "\u0007T\u0002\u0002\u07a2\u07a3\u0007G\u0002\u0002\u07a3\u07a4\u0007", + "X\u0002\u0002\u07a4\u07a5\u0007Q\u0002\u0002\u07a5\u07a6\u0007M\u0002", + "\u0002\u07a6\u07a7\u0007G\u0002\u0002\u07a7\u0182\u0003\u0002\u0002", + "\u0002\u07a8\u07a9\u0007T\u0002\u0002\u07a9\u07aa\u0007K\u0002\u0002", + "\u07aa\u07ab\u0007I\u0002\u0002\u07ab\u07ac\u0007J\u0002\u0002\u07ac", + "\u07ad\u0007V\u0002\u0002\u07ad\u0184\u0003\u0002\u0002\u0002\u07ae", + "\u07af\u0007T\u0002\u0002\u07af\u07b0\u0007N\u0002\u0002\u07b0\u07b1", + "\u0007K\u0002\u0002\u07b1\u07b2\u0007M\u0002\u0002\u07b2\u07ba\u0007", + "G\u0002\u0002\u07b3\u07b4\u0007T\u0002\u0002\u07b4\u07b5\u0007G\u0002", + "\u0002\u07b5\u07b6\u0007I\u0002\u0002\u07b6\u07b7\u0007G\u0002\u0002", + "\u07b7\u07b8\u0007Z\u0002\u0002\u07b8\u07ba\u0007R\u0002\u0002\u07b9", + "\u07ae\u0003\u0002\u0002\u0002\u07b9\u07b3\u0003\u0002\u0002\u0002\u07ba", + "\u0186\u0003\u0002\u0002\u0002\u07bb\u07bc\u0007T\u0002\u0002\u07bc", + "\u07bd\u0007Q\u0002\u0002\u07bd\u07be\u0007N\u0002\u0002\u07be\u07bf", + "\u0007G\u0002\u0002\u07bf\u0188\u0003\u0002\u0002\u0002\u07c0\u07c1", + "\u0007T\u0002\u0002\u07c1\u07c2\u0007Q\u0002\u0002\u07c2\u07c3\u0007", + "N\u0002\u0002\u07c3\u07c4\u0007G\u0002\u0002\u07c4\u07c5\u0007U\u0002", + "\u0002\u07c5\u018a\u0003\u0002\u0002\u0002\u07c6\u07c7\u0007T\u0002", + "\u0002\u07c7\u07c8\u0007Q\u0002\u0002\u07c8\u07c9\u0007N\u0002\u0002", + "\u07c9\u07ca\u0007N\u0002\u0002\u07ca\u07cb\u0007D\u0002\u0002\u07cb", + "\u07cc\u0007C\u0002\u0002\u07cc\u07cd\u0007E\u0002\u0002\u07cd\u07ce", + "\u0007M\u0002\u0002\u07ce\u018c\u0003\u0002\u0002\u0002\u07cf\u07d0", + "\u0007T\u0002\u0002\u07d0\u07d1\u0007Q\u0002\u0002\u07d1\u07d2\u0007", + "N\u0002\u0002\u07d2\u07d3\u0007N\u0002\u0002\u07d3\u07d4\u0007W\u0002", + "\u0002\u07d4\u07d5\u0007R\u0002\u0002\u07d5\u018e\u0003\u0002\u0002", + "\u0002\u07d6\u07d7\u0007T\u0002\u0002\u07d7\u07d8\u0007Q\u0002\u0002", + "\u07d8\u07d9\u0007Y\u0002\u0002\u07d9\u0190\u0003\u0002\u0002\u0002", + "\u07da\u07db\u0007T\u0002\u0002\u07db\u07dc\u0007Q\u0002\u0002\u07dc", + "\u07dd\u0007Y\u0002\u0002\u07dd\u07de\u0007U\u0002\u0002\u07de\u0192", + "\u0003\u0002\u0002\u0002\u07df\u07e0\u0007U\u0002\u0002\u07e0\u07e1", + "\u0007E\u0002\u0002\u07e1\u07e2\u0007J\u0002\u0002\u07e2\u07e3\u0007", + "G\u0002\u0002\u07e3\u07e4\u0007O\u0002\u0002\u07e4\u07e5\u0007C\u0002", + "\u0002\u07e5\u0194\u0003\u0002\u0002\u0002\u07e6\u07e7\u0007U\u0002", + "\u0002\u07e7\u07e8\u0007G\u0002\u0002\u07e8\u07e9\u0007N\u0002\u0002", + "\u07e9\u07ea\u0007G\u0002\u0002\u07ea\u07eb\u0007E\u0002\u0002\u07eb", + "\u07ec\u0007V\u0002\u0002\u07ec\u0196\u0003\u0002\u0002\u0002\u07ed", + "\u07ee\u0007U\u0002\u0002\u07ee\u07ef\u0007G\u0002\u0002\u07ef\u07f0", + "\u0007O\u0002\u0002\u07f0\u07f1\u0007K\u0002\u0002\u07f1\u0198\u0003", + "\u0002\u0002\u0002\u07f2\u07f3\u0007U\u0002\u0002\u07f3\u07f4\u0007", + "G\u0002\u0002\u07f4\u07f5\u0007R\u0002\u0002\u07f5\u07f6\u0007C\u0002", + "\u0002\u07f6\u07f7\u0007T\u0002\u0002\u07f7\u07f8\u0007C\u0002\u0002", + "\u07f8\u07f9\u0007V\u0002\u0002\u07f9\u07fa\u0007G\u0002\u0002\u07fa", + "\u07fb\u0007F\u0002\u0002\u07fb\u019a\u0003\u0002\u0002\u0002\u07fc", + "\u07fd\u0007U\u0002\u0002\u07fd\u07fe\u0007G\u0002\u0002\u07fe\u07ff", + "\u0007T\u0002\u0002\u07ff\u0800\u0007F\u0002\u0002\u0800\u0801\u0007", + "G\u0002\u0002\u0801\u019c\u0003\u0002\u0002\u0002\u0802\u0803\u0007", + "U\u0002\u0002\u0803\u0804\u0007G\u0002\u0002\u0804\u0805\u0007T\u0002", + "\u0002\u0805\u0806\u0007F\u0002\u0002\u0806\u0807\u0007G\u0002\u0002", + "\u0807\u0808\u0007R\u0002\u0002\u0808\u0809\u0007T\u0002\u0002\u0809", + "\u080a\u0007Q\u0002\u0002\u080a\u080b\u0007R\u0002\u0002\u080b\u080c", + "\u0007G\u0002\u0002\u080c\u080d\u0007T\u0002\u0002\u080d\u080e\u0007", + "V\u0002\u0002\u080e\u080f\u0007K\u0002\u0002\u080f\u0810\u0007G\u0002", + "\u0002\u0810\u0811\u0007U\u0002\u0002\u0811\u019e\u0003\u0002\u0002", + "\u0002\u0812\u0813\u0007U\u0002\u0002\u0813\u0814\u0007G\u0002\u0002", + "\u0814\u0815\u0007U\u0002\u0002\u0815\u0816\u0007U\u0002\u0002\u0816", + "\u0817\u0007K\u0002\u0002\u0817\u0818\u0007Q\u0002\u0002\u0818\u0819", + "\u0007P\u0002\u0002\u0819\u081a\u0007a\u0002\u0002\u081a\u081b\u0007", + "W\u0002\u0002\u081b\u081c\u0007U\u0002\u0002\u081c\u081d\u0007G\u0002", + "\u0002\u081d\u081e\u0007T\u0002\u0002\u081e\u01a0\u0003\u0002\u0002", + "\u0002\u081f\u0820\u0007U\u0002\u0002\u0820\u0821\u0007G\u0002\u0002", + "\u0821\u0822\u0007V\u0002\u0002\u0822\u01a2\u0003\u0002\u0002\u0002", + "\u0823\u0824\u0007O\u0002\u0002\u0824\u0825\u0007K\u0002\u0002\u0825", + "\u0826\u0007P\u0002\u0002\u0826\u0827\u0007W\u0002\u0002\u0827\u0828", + "\u0007U\u0002\u0002\u0828\u01a4\u0003\u0002\u0002\u0002\u0829\u082a", + "\u0007U\u0002\u0002\u082a\u082b\u0007G\u0002\u0002\u082b\u082c\u0007", + "V\u0002\u0002\u082c\u082d\u0007U\u0002\u0002\u082d\u01a6\u0003\u0002", + "\u0002\u0002\u082e\u082f\u0007U\u0002\u0002\u082f\u0830\u0007J\u0002", + "\u0002\u0830\u0831\u0007Q\u0002\u0002\u0831\u0832\u0007Y\u0002\u0002", + "\u0832\u01a8\u0003\u0002\u0002\u0002\u0833\u0834\u0007U\u0002\u0002", + "\u0834\u0835\u0007M\u0002\u0002\u0835\u0836\u0007G\u0002\u0002\u0836", + "\u0837\u0007Y\u0002\u0002\u0837\u0838\u0007G\u0002\u0002\u0838\u0839", + "\u0007F\u0002\u0002\u0839\u01aa\u0003\u0002\u0002\u0002\u083a\u083b", + "\u0007U\u0002\u0002\u083b\u083c\u0007Q\u0002\u0002\u083c\u083d\u0007", + "O\u0002\u0002\u083d\u083e\u0007G\u0002\u0002\u083e\u01ac\u0003\u0002", + "\u0002\u0002\u083f\u0840\u0007U\u0002\u0002\u0840\u0841\u0007Q\u0002", + "\u0002\u0841\u0842\u0007T\u0002\u0002\u0842\u0843\u0007V\u0002\u0002", + "\u0843\u01ae\u0003\u0002\u0002\u0002\u0844\u0845\u0007U\u0002\u0002", + "\u0845\u0846\u0007Q\u0002\u0002\u0846\u0847\u0007T\u0002\u0002\u0847", + "\u0848\u0007V\u0002\u0002\u0848\u0849\u0007G\u0002\u0002\u0849\u084a", + "\u0007F\u0002\u0002\u084a\u01b0\u0003\u0002\u0002\u0002\u084b\u084c", + "\u0007U\u0002\u0002\u084c\u084d\u0007V\u0002\u0002\u084d\u084e\u0007", + "C\u0002\u0002\u084e\u084f\u0007T\u0002\u0002\u084f\u0850\u0007V\u0002", + "\u0002\u0850\u01b2\u0003\u0002\u0002\u0002\u0851\u0852\u0007U\u0002", + "\u0002\u0852\u0853\u0007V\u0002\u0002\u0853\u0854\u0007C\u0002\u0002", + "\u0854\u0855\u0007V\u0002\u0002\u0855\u0856\u0007K\u0002\u0002\u0856", + "\u0857\u0007U\u0002\u0002\u0857\u0858\u0007V\u0002\u0002\u0858\u0859", + "\u0007K\u0002\u0002\u0859\u085a\u0007E\u0002\u0002\u085a\u085b\u0007", + "U\u0002\u0002\u085b\u01b4\u0003\u0002\u0002\u0002\u085c\u085d\u0007", + "U\u0002\u0002\u085d\u085e\u0007V\u0002\u0002\u085e\u085f\u0007Q\u0002", + "\u0002\u085f\u0860\u0007T\u0002\u0002\u0860\u0861\u0007G\u0002\u0002", + "\u0861\u0862\u0007F\u0002\u0002\u0862\u01b6\u0003\u0002\u0002\u0002", + "\u0863\u0864\u0007U\u0002\u0002\u0864\u0865\u0007V\u0002\u0002\u0865", + "\u0866\u0007T\u0002\u0002\u0866\u0867\u0007C\u0002\u0002\u0867\u0868", + "\u0007V\u0002\u0002\u0868\u0869\u0007K\u0002\u0002\u0869\u086a\u0007", + "H\u0002\u0002\u086a\u086b\u0007[\u0002\u0002\u086b\u01b8\u0003\u0002", + "\u0002\u0002\u086c\u086d\u0007U\u0002\u0002\u086d\u086e\u0007V\u0002", + "\u0002\u086e\u086f\u0007T\u0002\u0002\u086f\u0870\u0007W\u0002\u0002", + "\u0870\u0871\u0007E\u0002\u0002\u0871\u0872\u0007V\u0002\u0002\u0872", + "\u01ba\u0003\u0002\u0002\u0002\u0873\u0874\u0007U\u0002\u0002\u0874", + "\u0875\u0007W\u0002\u0002\u0875\u0876\u0007D\u0002\u0002\u0876\u0877", + "\u0007U\u0002\u0002\u0877\u0878\u0007V\u0002\u0002\u0878\u0879\u0007", + "T\u0002\u0002\u0879\u01bc\u0003\u0002\u0002\u0002\u087a\u087b\u0007", + "U\u0002\u0002\u087b\u087c\u0007W\u0002\u0002\u087c\u087d\u0007D\u0002", + "\u0002\u087d\u087e\u0007U\u0002\u0002\u087e\u087f\u0007V\u0002\u0002", + "\u087f\u0880\u0007T\u0002\u0002\u0880\u0881\u0007K\u0002\u0002\u0881", + "\u0882\u0007P\u0002\u0002\u0882\u0883\u0007I\u0002\u0002\u0883\u01be", + "\u0003\u0002\u0002\u0002\u0884\u0885\u0007V\u0002\u0002\u0885\u0886", + "\u0007C\u0002\u0002\u0886\u0887\u0007D\u0002\u0002\u0887\u0888\u0007", + "N\u0002\u0002\u0888\u0889\u0007G\u0002\u0002\u0889\u01c0\u0003\u0002", + "\u0002\u0002\u088a\u088b\u0007V\u0002\u0002\u088b\u088c\u0007C\u0002", + "\u0002\u088c\u088d\u0007D\u0002\u0002\u088d\u088e\u0007N\u0002\u0002", + "\u088e\u088f\u0007G\u0002\u0002\u088f\u0890\u0007U\u0002\u0002\u0890", + "\u01c2\u0003\u0002\u0002\u0002\u0891\u0892\u0007V\u0002\u0002\u0892", + "\u0893\u0007C\u0002\u0002\u0893\u0894\u0007D\u0002\u0002\u0894\u0895", + "\u0007N\u0002\u0002\u0895\u0896\u0007G\u0002\u0002\u0896\u0897\u0007", + "U\u0002\u0002\u0897\u0898\u0007C\u0002\u0002\u0898\u0899\u0007O\u0002", + "\u0002\u0899\u089a\u0007R\u0002\u0002\u089a\u089b\u0007N\u0002\u0002", + "\u089b\u089c\u0007G\u0002\u0002\u089c\u01c4\u0003\u0002\u0002\u0002", + "\u089d\u089e\u0007V\u0002\u0002\u089e\u089f\u0007D\u0002\u0002\u089f", + "\u08a0\u0007N\u0002\u0002\u08a0\u08a1\u0007R\u0002\u0002\u08a1\u08a2", + "\u0007T\u0002\u0002\u08a2\u08a3\u0007Q\u0002\u0002\u08a3\u08a4\u0007", + "R\u0002\u0002\u08a4\u08a5\u0007G\u0002\u0002\u08a5\u08a6\u0007T\u0002", + "\u0002\u08a6\u08a7\u0007V\u0002\u0002\u08a7\u08a8\u0007K\u0002\u0002", + "\u08a8\u08a9\u0007G\u0002\u0002\u08a9\u08aa\u0007U\u0002\u0002\u08aa", + "\u01c6\u0003\u0002\u0002\u0002\u08ab\u08ac\u0007V\u0002\u0002\u08ac", + "\u08ad\u0007G\u0002\u0002\u08ad\u08ae\u0007O\u0002\u0002\u08ae\u08af", + "\u0007R\u0002\u0002\u08af\u08b0\u0007Q\u0002\u0002\u08b0\u08b1\u0007", + "T\u0002\u0002\u08b1\u08b2\u0007C\u0002\u0002\u08b2\u08b3\u0007T\u0002", + "\u0002\u08b3\u08b9\u0007[\u0002\u0002\u08b4\u08b5\u0007V\u0002\u0002", + "\u08b5\u08b6\u0007G\u0002\u0002\u08b6\u08b7\u0007O\u0002\u0002\u08b7", + "\u08b9\u0007R\u0002\u0002\u08b8\u08ab\u0003\u0002\u0002\u0002\u08b8", + "\u08b4\u0003\u0002\u0002\u0002\u08b9\u01c8\u0003\u0002\u0002\u0002\u08ba", + "\u08bb\u0007V\u0002\u0002\u08bb\u08bc\u0007G\u0002\u0002\u08bc\u08bd", + "\u0007T\u0002\u0002\u08bd\u08be\u0007O\u0002\u0002\u08be\u08bf\u0007", + "K\u0002\u0002\u08bf\u08c0\u0007P\u0002\u0002\u08c0\u08c1\u0007C\u0002", + "\u0002\u08c1\u08c2\u0007V\u0002\u0002\u08c2\u08c3\u0007G\u0002\u0002", + "\u08c3\u08c4\u0007F\u0002\u0002\u08c4\u01ca\u0003\u0002\u0002\u0002", + "\u08c5\u08c6\u0007V\u0002\u0002\u08c6\u08c7\u0007J\u0002\u0002\u08c7", + "\u08c8\u0007G\u0002\u0002\u08c8\u08c9\u0007P\u0002\u0002\u08c9\u01cc", + "\u0003\u0002\u0002\u0002\u08ca\u08cb\u0007V\u0002\u0002\u08cb\u08cc", + "\u0007K\u0002\u0002\u08cc\u08cd\u0007O\u0002\u0002\u08cd\u08ce\u0007", + "G\u0002\u0002\u08ce\u01ce\u0003\u0002\u0002\u0002\u08cf\u08d0\u0007", + "V\u0002\u0002\u08d0\u08d1\u0007Q\u0002\u0002\u08d1\u01d0\u0003\u0002", + "\u0002\u0002\u08d2\u08d3\u0007V\u0002\u0002\u08d3\u08d4\u0007Q\u0002", + "\u0002\u08d4\u08d5\u0007W\u0002\u0002\u08d5\u08d6\u0007E\u0002\u0002", + "\u08d6\u08d7\u0007J\u0002\u0002\u08d7\u01d2\u0003\u0002\u0002\u0002", + "\u08d8\u08d9\u0007V\u0002\u0002\u08d9\u08da\u0007T\u0002\u0002\u08da", + "\u08db\u0007C\u0002\u0002\u08db\u08dc\u0007K\u0002\u0002\u08dc\u08dd", + "\u0007N\u0002\u0002\u08dd\u08de\u0007K\u0002\u0002\u08de\u08df\u0007", + "P\u0002\u0002\u08df\u08e0\u0007I\u0002\u0002\u08e0\u01d4\u0003\u0002", + "\u0002\u0002\u08e1\u08e2\u0007V\u0002\u0002\u08e2\u08e3\u0007T\u0002", + "\u0002\u08e3\u08e4\u0007C\u0002\u0002\u08e4\u08e5\u0007P\u0002\u0002", + "\u08e5\u08e6\u0007U\u0002\u0002\u08e6\u08e7\u0007C\u0002\u0002\u08e7", + "\u08e8\u0007E\u0002\u0002\u08e8\u08e9\u0007V\u0002\u0002\u08e9\u08ea", + "\u0007K\u0002\u0002\u08ea\u08eb\u0007Q\u0002\u0002\u08eb\u08ec\u0007", + "P\u0002\u0002\u08ec\u01d6\u0003\u0002\u0002\u0002\u08ed\u08ee\u0007", + "V\u0002\u0002\u08ee\u08ef\u0007T\u0002\u0002\u08ef\u08f0\u0007C\u0002", + "\u0002\u08f0\u08f1\u0007P\u0002\u0002\u08f1\u08f2\u0007U\u0002\u0002", + "\u08f2\u08f3\u0007C\u0002\u0002\u08f3\u08f4\u0007E\u0002\u0002\u08f4", + "\u08f5\u0007V\u0002\u0002\u08f5\u08f6\u0007K\u0002\u0002\u08f6\u08f7", + "\u0007Q\u0002\u0002\u08f7\u08f8\u0007P\u0002\u0002\u08f8\u08f9\u0007", + "U\u0002\u0002\u08f9\u01d8\u0003\u0002\u0002\u0002\u08fa\u08fb\u0007", + "V\u0002\u0002\u08fb\u08fc\u0007T\u0002\u0002\u08fc\u08fd\u0007C\u0002", + "\u0002\u08fd\u08fe\u0007P\u0002\u0002\u08fe\u08ff\u0007U\u0002\u0002", + "\u08ff\u0900\u0007H\u0002\u0002\u0900\u0901\u0007Q\u0002\u0002\u0901", + "\u0902\u0007T\u0002\u0002\u0902\u0903\u0007O\u0002\u0002\u0903\u01da", + "\u0003\u0002\u0002\u0002\u0904\u0905\u0007V\u0002\u0002\u0905\u0906", + "\u0007T\u0002\u0002\u0906\u0907\u0007K\u0002\u0002\u0907\u0908\u0007", + "O\u0002\u0002\u0908\u01dc\u0003\u0002\u0002\u0002\u0909\u090a\u0007", + "V\u0002\u0002\u090a\u090b\u0007T\u0002\u0002\u090b\u090c\u0007W\u0002", + "\u0002\u090c\u090d\u0007G\u0002\u0002\u090d\u01de\u0003\u0002\u0002", + "\u0002\u090e\u090f\u0007V\u0002\u0002\u090f\u0910\u0007T\u0002\u0002", + "\u0910\u0911\u0007W\u0002\u0002\u0911\u0912\u0007P\u0002\u0002\u0912", + "\u0913\u0007E\u0002\u0002\u0913\u0914\u0007C\u0002\u0002\u0914\u0915", + "\u0007V\u0002\u0002\u0915\u0916\u0007G\u0002\u0002\u0916\u01e0\u0003", + "\u0002\u0002\u0002\u0917\u0918\u0007V\u0002\u0002\u0918\u0919\u0007", + "[\u0002\u0002\u0919\u091a\u0007R\u0002\u0002\u091a\u091b\u0007G\u0002", + "\u0002\u091b\u01e2\u0003\u0002\u0002\u0002\u091c\u091d\u0007W\u0002", + "\u0002\u091d\u091e\u0007P\u0002\u0002\u091e\u091f\u0007C\u0002\u0002", + "\u091f\u0920\u0007T\u0002\u0002\u0920\u0921\u0007E\u0002\u0002\u0921", + "\u0922\u0007J\u0002\u0002\u0922\u0923\u0007K\u0002\u0002\u0923\u0924", + "\u0007X\u0002\u0002\u0924\u0925\u0007G\u0002\u0002\u0925\u01e4\u0003", + "\u0002\u0002\u0002\u0926\u0927\u0007W\u0002\u0002\u0927\u0928\u0007", + "P\u0002\u0002\u0928\u0929\u0007D\u0002\u0002\u0929\u092a\u0007Q\u0002", + "\u0002\u092a\u092b\u0007W\u0002\u0002\u092b\u092c\u0007P\u0002\u0002", + "\u092c\u092d\u0007F\u0002\u0002\u092d\u092e\u0007G\u0002\u0002\u092e", + "\u092f\u0007F\u0002\u0002\u092f\u01e6\u0003\u0002\u0002\u0002\u0930", + "\u0931\u0007W\u0002\u0002\u0931\u0932\u0007P\u0002\u0002\u0932\u0933", + "\u0007E\u0002\u0002\u0933\u0934\u0007C\u0002\u0002\u0934\u0935\u0007", + "E\u0002\u0002\u0935\u0936\u0007J\u0002\u0002\u0936\u0937\u0007G\u0002", + "\u0002\u0937\u01e8\u0003\u0002\u0002\u0002\u0938\u0939\u0007W\u0002", + "\u0002\u0939\u093a\u0007P\u0002\u0002\u093a\u093b\u0007K\u0002\u0002", + "\u093b\u093c\u0007Q\u0002\u0002\u093c\u093d\u0007P\u0002\u0002\u093d", + "\u01ea\u0003\u0002\u0002\u0002\u093e\u093f\u0007W\u0002\u0002\u093f", + "\u0940\u0007P\u0002\u0002\u0940\u0941\u0007K\u0002\u0002\u0941\u0942", + "\u0007S\u0002\u0002\u0942\u0943\u0007W\u0002\u0002\u0943\u0944\u0007", + "G\u0002\u0002\u0944\u01ec\u0003\u0002\u0002\u0002\u0945\u0946\u0007", + "W\u0002\u0002\u0946\u0947\u0007P\u0002\u0002\u0947\u0948\u0007M\u0002", + "\u0002\u0948\u0949\u0007P\u0002\u0002\u0949\u094a\u0007Q\u0002\u0002", + "\u094a\u094b\u0007Y\u0002\u0002\u094b\u094c\u0007P\u0002\u0002\u094c", + "\u01ee\u0003\u0002\u0002\u0002\u094d\u094e\u0007W\u0002\u0002\u094e", + "\u094f\u0007P\u0002\u0002\u094f\u0950\u0007N\u0002\u0002\u0950\u0951", + "\u0007Q\u0002\u0002\u0951\u0952\u0007E\u0002\u0002\u0952\u0953\u0007", + "M\u0002\u0002\u0953\u01f0\u0003\u0002\u0002\u0002\u0954\u0955\u0007", + "W\u0002\u0002\u0955\u0956\u0007P\u0002\u0002\u0956\u0957\u0007U\u0002", + "\u0002\u0957\u0958\u0007G\u0002\u0002\u0958\u0959\u0007V\u0002\u0002", + "\u0959\u01f2\u0003\u0002\u0002\u0002\u095a\u095b\u0007W\u0002\u0002", + "\u095b\u095c\u0007R\u0002\u0002\u095c\u095d\u0007F\u0002\u0002\u095d", + "\u095e\u0007C\u0002\u0002\u095e\u095f\u0007V\u0002\u0002\u095f\u0960", + "\u0007G\u0002\u0002\u0960\u01f4\u0003\u0002\u0002\u0002\u0961\u0962", + "\u0007W\u0002\u0002\u0962\u0963\u0007U\u0002\u0002\u0963\u0964\u0007", + "G\u0002\u0002\u0964\u01f6\u0003\u0002\u0002\u0002\u0965\u0966\u0007", + "W\u0002\u0002\u0966\u0967\u0007U\u0002\u0002\u0967\u0968\u0007G\u0002", + "\u0002\u0968\u0969\u0007T\u0002\u0002\u0969\u01f8\u0003\u0002\u0002", + "\u0002\u096a\u096b\u0007W\u0002\u0002\u096b\u096c\u0007U\u0002\u0002", + "\u096c\u096d\u0007K\u0002\u0002\u096d\u096e\u0007P\u0002\u0002\u096e", + "\u096f\u0007I\u0002\u0002\u096f\u01fa\u0003\u0002\u0002\u0002\u0970", + "\u0971\u0007X\u0002\u0002\u0971\u0972\u0007C\u0002\u0002\u0972\u0973", + "\u0007N\u0002\u0002\u0973\u0974\u0007W\u0002\u0002\u0974\u0975\u0007", + "G\u0002\u0002\u0975\u0976\u0007U\u0002\u0002\u0976\u01fc\u0003\u0002", + "\u0002\u0002\u0977\u0978\u0007X\u0002\u0002\u0978\u0979\u0007K\u0002", + "\u0002\u0979\u097a\u0007G\u0002\u0002\u097a\u097b\u0007Y\u0002\u0002", + "\u097b\u01fe\u0003\u0002\u0002\u0002\u097c\u097d\u0007X\u0002\u0002", + "\u097d\u097e\u0007K\u0002\u0002\u097e\u097f\u0007G\u0002\u0002\u097f", + "\u0980\u0007Y\u0002\u0002\u0980\u0981\u0007U\u0002\u0002\u0981\u0200", + "\u0003\u0002\u0002\u0002\u0982\u0983\u0007Y\u0002\u0002\u0983\u0984", + "\u0007J\u0002\u0002\u0984\u0985\u0007G\u0002\u0002\u0985\u0986\u0007", + "P\u0002\u0002\u0986\u0202\u0003\u0002\u0002\u0002\u0987\u0988\u0007", + "Y\u0002\u0002\u0988\u0989\u0007J\u0002\u0002\u0989\u098a\u0007G\u0002", + "\u0002\u098a\u098b\u0007T\u0002\u0002\u098b\u098c\u0007G\u0002\u0002", + "\u098c\u0204\u0003\u0002\u0002\u0002\u098d\u098e\u0007Y\u0002\u0002", + "\u098e\u098f\u0007K\u0002\u0002\u098f\u0990\u0007P\u0002\u0002\u0990", + "\u0991\u0007F\u0002\u0002\u0991\u0992\u0007Q\u0002\u0002\u0992\u0993", + "\u0007Y\u0002\u0002\u0993\u0206\u0003\u0002\u0002\u0002\u0994\u0995", + "\u0007Y\u0002\u0002\u0995\u0996\u0007K\u0002\u0002\u0996\u0997\u0007", + "V\u0002\u0002\u0997\u0998\u0007J\u0002\u0002\u0998\u0208\u0003\u0002", + "\u0002\u0002\u0999\u099a\u0007\\\u0002\u0002\u099a\u099b\u0007Q\u0002", + "\u0002\u099b\u099c\u0007P\u0002\u0002\u099c\u099d\u0007G\u0002\u0002", + "\u099d\u020a\u0003\u0002\u0002\u0002\u099e\u09a2\u0007?\u0002\u0002", + "\u099f\u09a0\u0007?\u0002\u0002\u09a0\u09a2\u0007?\u0002\u0002\u09a1", + "\u099e\u0003\u0002\u0002\u0002\u09a1\u099f\u0003\u0002\u0002\u0002\u09a2", + "\u020c\u0003\u0002\u0002\u0002\u09a3\u09a4\u0007>\u0002\u0002\u09a4", + "\u09a5\u0007?\u0002\u0002\u09a5\u09a6\u0007@\u0002\u0002\u09a6\u020e", + "\u0003\u0002\u0002\u0002\u09a7\u09a8\u0007>\u0002\u0002\u09a8\u09a9", + "\u0007@\u0002\u0002\u09a9\u0210\u0003\u0002\u0002\u0002\u09aa\u09ab", + "\u0007#\u0002\u0002\u09ab\u09ac\u0007?\u0002\u0002\u09ac\u0212\u0003", + "\u0002\u0002\u0002\u09ad\u09ae\u0007>\u0002\u0002\u09ae\u0214\u0003", + "\u0002\u0002\u0002\u09af\u09b0\u0007>\u0002\u0002\u09b0\u09b4\u0007", + "?\u0002\u0002\u09b1\u09b2\u0007#\u0002\u0002\u09b2\u09b4\u0007@\u0002", + "\u0002\u09b3\u09af\u0003\u0002\u0002\u0002\u09b3\u09b1\u0003\u0002\u0002", + "\u0002\u09b4\u0216\u0003\u0002\u0002\u0002\u09b5\u09b6\u0007@\u0002", + "\u0002\u09b6\u0218\u0003\u0002\u0002\u0002\u09b7\u09b8\u0007@\u0002", + "\u0002\u09b8\u09bc\u0007?\u0002\u0002\u09b9\u09ba\u0007#\u0002\u0002", + "\u09ba\u09bc\u0007>\u0002\u0002\u09bb\u09b7\u0003\u0002\u0002\u0002", + "\u09bb\u09b9\u0003\u0002\u0002\u0002\u09bc\u021a\u0003\u0002\u0002\u0002", + "\u09bd\u09be\u0007-\u0002\u0002\u09be\u021c\u0003\u0002\u0002\u0002", + "\u09bf\u09c0\u0007/\u0002\u0002\u09c0\u021e\u0003\u0002\u0002\u0002", + "\u09c1\u09c2\u0007,\u0002\u0002\u09c2\u0220\u0003\u0002\u0002\u0002", + "\u09c3\u09c4\u00071\u0002\u0002\u09c4\u0222\u0003\u0002\u0002\u0002", + "\u09c5\u09c6\u0007\'\u0002\u0002\u09c6\u0224\u0003\u0002\u0002\u0002", + "\u09c7\u09c8\u0007\u0080\u0002\u0002\u09c8\u0226\u0003\u0002\u0002\u0002", + "\u09c9\u09ca\u0007(\u0002\u0002\u09ca\u0228\u0003\u0002\u0002\u0002", + "\u09cb\u09cc\u0007~\u0002\u0002\u09cc\u022a\u0003\u0002\u0002\u0002", + "\u09cd\u09ce\u0007~\u0002\u0002\u09ce\u09cf\u0007~\u0002\u0002\u09cf", + "\u022c\u0003\u0002\u0002\u0002\u09d0\u09d1\u0007`\u0002\u0002\u09d1", + "\u022e\u0003\u0002\u0002\u0002\u09d2\u09d8\u0007)\u0002\u0002\u09d3", + "\u09d7\n\u0002\u0002\u0002\u09d4\u09d5\u0007^\u0002\u0002\u09d5\u09d7", + "\u000b\u0002\u0002\u0002\u09d6\u09d3\u0003\u0002\u0002\u0002\u09d6\u09d4", + "\u0003\u0002\u0002\u0002\u09d7\u09da\u0003\u0002\u0002\u0002\u09d8\u09d6", + "\u0003\u0002\u0002\u0002\u09d8\u09d9\u0003\u0002\u0002\u0002\u09d9\u09db", + "\u0003\u0002\u0002\u0002\u09da\u09d8\u0003\u0002\u0002\u0002\u09db\u09e7", + "\u0007)\u0002\u0002\u09dc\u09e2\u0007$\u0002\u0002\u09dd\u09e1\n\u0003", + "\u0002\u0002\u09de\u09df\u0007^\u0002\u0002\u09df\u09e1\u000b\u0002", + "\u0002\u0002\u09e0\u09dd\u0003\u0002\u0002\u0002\u09e0\u09de\u0003\u0002", + "\u0002\u0002\u09e1\u09e4\u0003\u0002\u0002\u0002\u09e2\u09e0\u0003\u0002", + "\u0002\u0002\u09e2\u09e3\u0003\u0002\u0002\u0002\u09e3\u09e5\u0003\u0002", + "\u0002\u0002\u09e4\u09e2\u0003\u0002\u0002\u0002\u09e5\u09e7\u0007$", + "\u0002\u0002\u09e6\u09d2\u0003\u0002\u0002\u0002\u09e6\u09dc\u0003\u0002", + "\u0002\u0002\u09e7\u0230\u0003\u0002\u0002\u0002\u09e8\u09ea\u0005\u024b", + "\u0126\u0002\u09e9\u09e8\u0003\u0002\u0002\u0002\u09ea\u09eb\u0003\u0002", + "\u0002\u0002\u09eb\u09e9\u0003\u0002\u0002\u0002\u09eb\u09ec\u0003\u0002", + "\u0002\u0002\u09ec\u09ed\u0003\u0002\u0002\u0002\u09ed\u09ee\u0007N", + "\u0002\u0002\u09ee\u0232\u0003\u0002\u0002\u0002\u09ef\u09f1\u0005\u024b", + "\u0126\u0002\u09f0\u09ef\u0003\u0002\u0002\u0002\u09f1\u09f2\u0003\u0002", + "\u0002\u0002\u09f2\u09f0\u0003\u0002\u0002\u0002\u09f2\u09f3\u0003\u0002", + "\u0002\u0002\u09f3\u09f4\u0003\u0002\u0002\u0002\u09f4\u09f5\u0007U", + "\u0002\u0002\u09f5\u0234\u0003\u0002\u0002\u0002\u09f6\u09f8\u0005\u024b", + "\u0126\u0002\u09f7\u09f6\u0003\u0002\u0002\u0002\u09f8\u09f9\u0003\u0002", + "\u0002\u0002\u09f9\u09f7\u0003\u0002\u0002\u0002\u09f9\u09fa\u0003\u0002", + "\u0002\u0002\u09fa\u09fb\u0003\u0002\u0002\u0002\u09fb\u09fc\u0007[", + "\u0002\u0002\u09fc\u0236\u0003\u0002\u0002\u0002\u09fd\u09ff\u0005\u024b", + "\u0126\u0002\u09fe\u09fd\u0003\u0002\u0002\u0002\u09ff\u0a00\u0003\u0002", + "\u0002\u0002\u0a00\u09fe\u0003\u0002\u0002\u0002\u0a00\u0a01\u0003\u0002", + "\u0002\u0002\u0a01\u0238\u0003\u0002\u0002\u0002\u0a02\u0a04\u0005\u024b", + "\u0126\u0002\u0a03\u0a02\u0003\u0002\u0002\u0002\u0a04\u0a05\u0003\u0002", + "\u0002\u0002\u0a05\u0a03\u0003\u0002\u0002\u0002\u0a05\u0a06\u0003\u0002", + "\u0002\u0002\u0a06\u0a07\u0003\u0002\u0002\u0002\u0a07\u0a08\u0005\u0249", + "\u0125\u0002\u0a08\u0a0e\u0003\u0002\u0002\u0002\u0a09\u0a0a\u0005\u0247", + "\u0124\u0002\u0a0a\u0a0b\u0005\u0249\u0125\u0002\u0a0b\u0a0c\u0006\u011d", + "\u0002\u0002\u0a0c\u0a0e\u0003\u0002\u0002\u0002\u0a0d\u0a03\u0003\u0002", + "\u0002\u0002\u0a0d\u0a09\u0003\u0002\u0002\u0002\u0a0e\u023a\u0003\u0002", + "\u0002\u0002\u0a0f\u0a10\u0005\u0247\u0124\u0002\u0a10\u0a11\u0006\u011e", + "\u0003\u0002\u0a11\u023c\u0003\u0002\u0002\u0002\u0a12\u0a14\u0005\u024b", + "\u0126\u0002\u0a13\u0a12\u0003\u0002\u0002\u0002\u0a14\u0a15\u0003\u0002", + "\u0002\u0002\u0a15\u0a13\u0003\u0002\u0002\u0002\u0a15\u0a16\u0003\u0002", + "\u0002\u0002\u0a16\u0a18\u0003\u0002\u0002\u0002\u0a17\u0a19\u0005\u0249", + "\u0125\u0002\u0a18\u0a17\u0003\u0002\u0002\u0002\u0a18\u0a19\u0003\u0002", + "\u0002\u0002\u0a19\u0a1a\u0003\u0002\u0002\u0002\u0a1a\u0a1b\u0007H", + "\u0002\u0002\u0a1b\u0a24\u0003\u0002\u0002\u0002\u0a1c\u0a1e\u0005\u0247", + "\u0124\u0002\u0a1d\u0a1f\u0005\u0249\u0125\u0002\u0a1e\u0a1d\u0003\u0002", + "\u0002\u0002\u0a1e\u0a1f\u0003\u0002\u0002\u0002\u0a1f\u0a20\u0003\u0002", + "\u0002\u0002\u0a20\u0a21\u0007H\u0002\u0002\u0a21\u0a22\u0006\u011f", + "\u0004\u0002\u0a22\u0a24\u0003\u0002\u0002\u0002\u0a23\u0a13\u0003\u0002", + "\u0002\u0002\u0a23\u0a1c\u0003\u0002\u0002\u0002\u0a24\u023e\u0003\u0002", + "\u0002\u0002\u0a25\u0a27\u0005\u024b\u0126\u0002\u0a26\u0a25\u0003\u0002", + "\u0002\u0002\u0a27\u0a28\u0003\u0002\u0002\u0002\u0a28\u0a26\u0003\u0002", + "\u0002\u0002\u0a28\u0a29\u0003\u0002\u0002\u0002\u0a29\u0a2b\u0003\u0002", + "\u0002\u0002\u0a2a\u0a2c\u0005\u0249\u0125\u0002\u0a2b\u0a2a\u0003\u0002", + "\u0002\u0002\u0a2b\u0a2c\u0003\u0002\u0002\u0002\u0a2c\u0a2d\u0003\u0002", + "\u0002\u0002\u0a2d\u0a2e\u0007F\u0002\u0002\u0a2e\u0a37\u0003\u0002", + "\u0002\u0002\u0a2f\u0a31\u0005\u0247\u0124\u0002\u0a30\u0a32\u0005\u0249", + "\u0125\u0002\u0a31\u0a30\u0003\u0002\u0002\u0002\u0a31\u0a32\u0003\u0002", + "\u0002\u0002\u0a32\u0a33\u0003\u0002\u0002\u0002\u0a33\u0a34\u0007F", + "\u0002\u0002\u0a34\u0a35\u0006\u0120\u0005\u0002\u0a35\u0a37\u0003\u0002", + "\u0002\u0002\u0a36\u0a26\u0003\u0002\u0002\u0002\u0a36\u0a2f\u0003\u0002", + "\u0002\u0002\u0a37\u0240\u0003\u0002\u0002\u0002\u0a38\u0a3a\u0005\u024b", + "\u0126\u0002\u0a39\u0a38\u0003\u0002\u0002\u0002\u0a3a\u0a3b\u0003\u0002", + "\u0002\u0002\u0a3b\u0a39\u0003\u0002\u0002\u0002\u0a3b\u0a3c\u0003\u0002", + "\u0002\u0002\u0a3c\u0a3e\u0003\u0002\u0002\u0002\u0a3d\u0a3f\u0005\u0249", + "\u0125\u0002\u0a3e\u0a3d\u0003\u0002\u0002\u0002\u0a3e\u0a3f\u0003\u0002", + "\u0002\u0002\u0a3f\u0a40\u0003\u0002\u0002\u0002\u0a40\u0a41\u0007D", + "\u0002\u0002\u0a41\u0a42\u0007F\u0002\u0002\u0a42\u0a4d\u0003\u0002", + "\u0002\u0002\u0a43\u0a45\u0005\u0247\u0124\u0002\u0a44\u0a46\u0005\u0249", + "\u0125\u0002\u0a45\u0a44\u0003\u0002\u0002\u0002\u0a45\u0a46\u0003\u0002", + "\u0002\u0002\u0a46\u0a47\u0003\u0002\u0002\u0002\u0a47\u0a48\u0007D", + "\u0002\u0002\u0a48\u0a49\u0007F\u0002\u0002\u0a49\u0a4a\u0003\u0002", + "\u0002\u0002\u0a4a\u0a4b\u0006\u0121\u0006\u0002\u0a4b\u0a4d\u0003\u0002", + "\u0002\u0002\u0a4c\u0a39\u0003\u0002\u0002\u0002\u0a4c\u0a43\u0003\u0002", + "\u0002\u0002\u0a4d\u0242\u0003\u0002\u0002\u0002\u0a4e\u0a52\u0005\u024d", + "\u0127\u0002\u0a4f\u0a52\u0005\u024b\u0126\u0002\u0a50\u0a52\u0007a", + "\u0002\u0002\u0a51\u0a4e\u0003\u0002\u0002\u0002\u0a51\u0a4f\u0003\u0002", + "\u0002\u0002\u0a51\u0a50\u0003\u0002\u0002\u0002\u0a52\u0a53\u0003\u0002", + "\u0002\u0002\u0a53\u0a51\u0003\u0002\u0002\u0002\u0a53\u0a54\u0003\u0002", + "\u0002\u0002\u0a54\u0244\u0003\u0002\u0002\u0002\u0a55\u0a5b\u0007b", + "\u0002\u0002\u0a56\u0a5a\n\u0004\u0002\u0002\u0a57\u0a58\u0007b\u0002", + "\u0002\u0a58\u0a5a\u0007b\u0002\u0002\u0a59\u0a56\u0003\u0002\u0002", + "\u0002\u0a59\u0a57\u0003\u0002\u0002\u0002\u0a5a\u0a5d\u0003\u0002\u0002", + "\u0002\u0a5b\u0a59\u0003\u0002\u0002\u0002\u0a5b\u0a5c\u0003\u0002\u0002", + "\u0002\u0a5c\u0a5e\u0003\u0002\u0002\u0002\u0a5d\u0a5b\u0003\u0002\u0002", + "\u0002\u0a5e\u0a5f\u0007b\u0002\u0002\u0a5f\u0246\u0003\u0002\u0002", + "\u0002\u0a60\u0a62\u0005\u024b\u0126\u0002\u0a61\u0a60\u0003\u0002\u0002", + "\u0002\u0a62\u0a63\u0003\u0002\u0002\u0002\u0a63\u0a61\u0003\u0002\u0002", + "\u0002\u0a63\u0a64\u0003\u0002\u0002\u0002\u0a64\u0a65\u0003\u0002\u0002", + "\u0002\u0a65\u0a69\u00070\u0002\u0002\u0a66\u0a68\u0005\u024b\u0126", + "\u0002\u0a67\u0a66\u0003\u0002\u0002\u0002\u0a68\u0a6b\u0003\u0002\u0002", + "\u0002\u0a69\u0a67\u0003\u0002\u0002\u0002\u0a69\u0a6a\u0003\u0002\u0002", + "\u0002\u0a6a\u0a73\u0003\u0002\u0002\u0002\u0a6b\u0a69\u0003\u0002\u0002", + "\u0002\u0a6c\u0a6e\u00070\u0002\u0002\u0a6d\u0a6f\u0005\u024b\u0126", + "\u0002\u0a6e\u0a6d\u0003\u0002\u0002\u0002\u0a6f\u0a70\u0003\u0002\u0002", + "\u0002\u0a70\u0a6e\u0003\u0002\u0002\u0002\u0a70\u0a71\u0003\u0002\u0002", + "\u0002\u0a71\u0a73\u0003\u0002\u0002\u0002\u0a72\u0a61\u0003\u0002\u0002", + "\u0002\u0a72\u0a6c\u0003\u0002\u0002\u0002\u0a73\u0248\u0003\u0002\u0002", + "\u0002\u0a74\u0a76\u0007G\u0002\u0002\u0a75\u0a77\t\u0005\u0002\u0002", + "\u0a76\u0a75\u0003\u0002\u0002\u0002\u0a76\u0a77\u0003\u0002\u0002\u0002", + "\u0a77\u0a79\u0003\u0002\u0002\u0002\u0a78\u0a7a\u0005\u024b\u0126\u0002", + "\u0a79\u0a78\u0003\u0002\u0002\u0002\u0a7a\u0a7b\u0003\u0002\u0002\u0002", + "\u0a7b\u0a79\u0003\u0002\u0002\u0002\u0a7b\u0a7c\u0003\u0002\u0002\u0002", + "\u0a7c\u024a\u0003\u0002\u0002\u0002\u0a7d\u0a7e\t\u0006\u0002\u0002", + "\u0a7e\u024c\u0003\u0002\u0002\u0002\u0a7f\u0a80\t\u0007\u0002\u0002", + "\u0a80\u024e\u0003\u0002\u0002\u0002\u0a81\u0a82\u0007/\u0002\u0002", + "\u0a82\u0a83\u0007/\u0002\u0002\u0a83\u0a89\u0003\u0002\u0002\u0002", + "\u0a84\u0a85\u0007^\u0002\u0002\u0a85\u0a88\u0007\f\u0002\u0002\u0a86", + "\u0a88\n\b\u0002\u0002\u0a87\u0a84\u0003\u0002\u0002\u0002\u0a87\u0a86", + "\u0003\u0002\u0002\u0002\u0a88\u0a8b\u0003\u0002\u0002\u0002\u0a89\u0a87", + "\u0003\u0002\u0002\u0002\u0a89\u0a8a\u0003\u0002\u0002\u0002\u0a8a\u0a8d", + "\u0003\u0002\u0002\u0002\u0a8b\u0a89\u0003\u0002\u0002\u0002\u0a8c\u0a8e", + "\u0007\u000f\u0002\u0002\u0a8d\u0a8c\u0003\u0002\u0002\u0002\u0a8d\u0a8e", + "\u0003\u0002\u0002\u0002\u0a8e\u0a90\u0003\u0002\u0002\u0002\u0a8f\u0a91", + "\u0007\f\u0002\u0002\u0a90\u0a8f\u0003\u0002\u0002\u0002\u0a90\u0a91", + "\u0003\u0002\u0002\u0002\u0a91\u0a92\u0003\u0002\u0002\u0002\u0a92\u0a93", + "\b\u0128\u0002\u0002\u0a93\u0250\u0003\u0002\u0002\u0002\u0a94\u0a95", + "\u00071\u0002\u0002\u0a95\u0a96\u0007,\u0002\u0002\u0a96\u0a97\u0003", + "\u0002\u0002\u0002\u0a97\u0a9c\u0006\u0129\u0007\u0002\u0a98\u0a9b\u0005", + "\u0251\u0129\u0002\u0a99\u0a9b\u000b\u0002\u0002\u0002\u0a9a\u0a98\u0003", + "\u0002\u0002\u0002\u0a9a\u0a99\u0003\u0002\u0002\u0002\u0a9b\u0a9e\u0003", + "\u0002\u0002\u0002\u0a9c\u0a9d\u0003\u0002\u0002\u0002\u0a9c\u0a9a\u0003", + "\u0002\u0002\u0002\u0a9d\u0a9f\u0003\u0002\u0002\u0002\u0a9e\u0a9c\u0003", + "\u0002\u0002\u0002\u0a9f\u0aa0\u0007,\u0002\u0002\u0aa0\u0aa1\u0007", + "1\u0002\u0002\u0aa1\u0aa2\u0003\u0002\u0002\u0002\u0aa2\u0aa3\b\u0129", + "\u0002\u0002\u0aa3\u0252\u0003\u0002\u0002\u0002\u0aa4\u0aa6\t\t\u0002", + "\u0002\u0aa5\u0aa4\u0003\u0002\u0002\u0002\u0aa6\u0aa7\u0003\u0002\u0002", + "\u0002\u0aa7\u0aa5\u0003\u0002\u0002\u0002\u0aa7\u0aa8\u0003\u0002\u0002", + "\u0002\u0aa8\u0aa9\u0003\u0002\u0002\u0002\u0aa9\u0aaa\b\u012a\u0002", + "\u0002\u0aaa\u0254\u0003\u0002\u0002\u0002\u0aab\u0aac\u000b\u0002\u0002", + "\u0002\u0aac\u0256\u0003\u0002\u0002\u00022\u0002\u03fe\u065f\u07b9", + "\u08b8\u09a1\u09b3\u09bb\u09d6\u09d8\u09e0\u09e2\u09e6\u09eb\u09f2\u09f9", + "\u0a00\u0a05\u0a0d\u0a15\u0a18\u0a1e\u0a23\u0a28\u0a2b\u0a31\u0a36\u0a3b", + "\u0a3e\u0a45\u0a4c\u0a51\u0a53\u0a59\u0a5b\u0a63\u0a69\u0a70\u0a72\u0a76", + "\u0a7b\u0a87\u0a89\u0a8d\u0a90\u0a9a\u0a9c\u0aa7\u0003\u0002\u0003\u0002"].join(""); + + +var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); + +var decisionsToDFA = atn.decisionToState.map( function(ds, index) { return new antlr4.dfa.DFA(ds, index); }); + +function SqlBaseLexer(input) { + antlr4.Lexer.call(this, input); + this._interp = new antlr4.atn.LexerATNSimulator(this, atn, decisionsToDFA, new antlr4.PredictionContextCache()); + + var ctx = this + /** + * Verify whether current token is a valid decimal token (which contains dot). + * Returns true if the character that follows the token is not a digit or letter or underscore. + * + * For example: + * For char stream "2.3", "2." is not a valid decimal token, because it is followed by digit '3'. + * For char stream "2.3_", "2.3" is not a valid decimal token, because it is followed by '_'. + * For char stream "2.3W", "2.3" is not a valid decimal token, because it is followed by 'W'. + * For char stream "12.0D 34.E2+0.12 " 12.0D is a valid decimal token because it is followed + * by a space. 34.E2 is a valid decimal token because it is followed by symbol '+' + * which is not a digit or letter or underscore. + */ + global.isValidDecimal = function() { + let nextChar = ctx._input.LA(1); + return !(nextChar >= 'A' && nextChar <= 'Z' || nextChar >= '0' && nextChar <= '9' || nextChar == '_') + } + + /** + * This method will be called when we see '/*' and try to match it as a bracketed comment. + * If the next character is '+', it should be parsed as hint later, and we cannot match + * it as a bracketed comment. + * + * Returns true if the next character is '+'. + */ + global.isHint = function() { + let nextChar = ctx._input.LA(1); + return nextChar == '+' + } + + return this; +} + +SqlBaseLexer.prototype = Object.create(antlr4.Lexer.prototype); +SqlBaseLexer.prototype.constructor = SqlBaseLexer; + +Object.defineProperty(SqlBaseLexer.prototype, "atn", { + get : function() { + return atn; + } +}); + +SqlBaseLexer.EOF = antlr4.Token.EOF; +SqlBaseLexer.T__0 = 1; +SqlBaseLexer.T__1 = 2; +SqlBaseLexer.T__2 = 3; +SqlBaseLexer.T__3 = 4; +SqlBaseLexer.T__4 = 5; +SqlBaseLexer.T__5 = 6; +SqlBaseLexer.T__6 = 7; +SqlBaseLexer.T__7 = 8; +SqlBaseLexer.T__8 = 9; +SqlBaseLexer.T__9 = 10; +SqlBaseLexer.T__10 = 11; +SqlBaseLexer.ADD = 12; +SqlBaseLexer.AFTER = 13; +SqlBaseLexer.ALL = 14; +SqlBaseLexer.ALTER = 15; +SqlBaseLexer.ANALYZE = 16; +SqlBaseLexer.AND = 17; +SqlBaseLexer.ANTI = 18; +SqlBaseLexer.ANY = 19; +SqlBaseLexer.ARCHIVE = 20; +SqlBaseLexer.ARRAY = 21; +SqlBaseLexer.AS = 22; +SqlBaseLexer.ASC = 23; +SqlBaseLexer.AT = 24; +SqlBaseLexer.AUTHORIZATION = 25; +SqlBaseLexer.BETWEEN = 26; +SqlBaseLexer.BOTH = 27; +SqlBaseLexer.BUCKET = 28; +SqlBaseLexer.BUCKETS = 29; +SqlBaseLexer.BY = 30; +SqlBaseLexer.CACHE = 31; +SqlBaseLexer.CASCADE = 32; +SqlBaseLexer.CASE = 33; +SqlBaseLexer.CAST = 34; +SqlBaseLexer.CHANGE = 35; +SqlBaseLexer.CHECK = 36; +SqlBaseLexer.CLEAR = 37; +SqlBaseLexer.CLUSTER = 38; +SqlBaseLexer.CLUSTERED = 39; +SqlBaseLexer.CODEGEN = 40; +SqlBaseLexer.COLLATE = 41; +SqlBaseLexer.COLLECTION = 42; +SqlBaseLexer.COLUMN = 43; +SqlBaseLexer.COLUMNS = 44; +SqlBaseLexer.COMMENT = 45; +SqlBaseLexer.COMMIT = 46; +SqlBaseLexer.COMPACT = 47; +SqlBaseLexer.COMPACTIONS = 48; +SqlBaseLexer.COMPUTE = 49; +SqlBaseLexer.CONCATENATE = 50; +SqlBaseLexer.CONSTRAINT = 51; +SqlBaseLexer.COST = 52; +SqlBaseLexer.CREATE = 53; +SqlBaseLexer.CROSS = 54; +SqlBaseLexer.CUBE = 55; +SqlBaseLexer.CURRENT = 56; +SqlBaseLexer.CURRENT_DATE = 57; +SqlBaseLexer.CURRENT_TIME = 58; +SqlBaseLexer.CURRENT_TIMESTAMP = 59; +SqlBaseLexer.CURRENT_USER = 60; +SqlBaseLexer.DATA = 61; +SqlBaseLexer.DATABASE = 62; +SqlBaseLexer.DATABASES = 63; +SqlBaseLexer.DBPROPERTIES = 64; +SqlBaseLexer.DEFINED = 65; +SqlBaseLexer.DELETE = 66; +SqlBaseLexer.DELIMITED = 67; +SqlBaseLexer.DESC = 68; +SqlBaseLexer.DESCRIBE = 69; +SqlBaseLexer.DFS = 70; +SqlBaseLexer.DIRECTORIES = 71; +SqlBaseLexer.DIRECTORY = 72; +SqlBaseLexer.DISTINCT = 73; +SqlBaseLexer.DISTRIBUTE = 74; +SqlBaseLexer.DIV = 75; +SqlBaseLexer.DROP = 76; +SqlBaseLexer.ELSE = 77; +SqlBaseLexer.END = 78; +SqlBaseLexer.ESCAPE = 79; +SqlBaseLexer.ESCAPED = 80; +SqlBaseLexer.EXCEPT = 81; +SqlBaseLexer.EXCHANGE = 82; +SqlBaseLexer.EXISTS = 83; +SqlBaseLexer.EXPLAIN = 84; +SqlBaseLexer.EXPORT = 85; +SqlBaseLexer.EXTENDED = 86; +SqlBaseLexer.EXTERNAL = 87; +SqlBaseLexer.EXTRACT = 88; +SqlBaseLexer.FALSE = 89; +SqlBaseLexer.FETCH = 90; +SqlBaseLexer.FIELDS = 91; +SqlBaseLexer.FILTER = 92; +SqlBaseLexer.FILEFORMAT = 93; +SqlBaseLexer.FIRST = 94; +SqlBaseLexer.FOLLOWING = 95; +SqlBaseLexer.FOR = 96; +SqlBaseLexer.FOREIGN = 97; +SqlBaseLexer.FORMAT = 98; +SqlBaseLexer.FORMATTED = 99; +SqlBaseLexer.FROM = 100; +SqlBaseLexer.FULL = 101; +SqlBaseLexer.FUNCTION = 102; +SqlBaseLexer.FUNCTIONS = 103; +SqlBaseLexer.GLOBAL = 104; +SqlBaseLexer.GRANT = 105; +SqlBaseLexer.GROUP = 106; +SqlBaseLexer.GROUPING = 107; +SqlBaseLexer.HAVING = 108; +SqlBaseLexer.IF = 109; +SqlBaseLexer.IGNORE = 110; +SqlBaseLexer.IMPORT = 111; +SqlBaseLexer.IN = 112; +SqlBaseLexer.INDEX = 113; +SqlBaseLexer.INDEXES = 114; +SqlBaseLexer.INNER = 115; +SqlBaseLexer.INPATH = 116; +SqlBaseLexer.INPUTFORMAT = 117; +SqlBaseLexer.INSERT = 118; +SqlBaseLexer.INTERSECT = 119; +SqlBaseLexer.INTERVAL = 120; +SqlBaseLexer.INTO = 121; +SqlBaseLexer.IS = 122; +SqlBaseLexer.ITEMS = 123; +SqlBaseLexer.JOIN = 124; +SqlBaseLexer.KEYS = 125; +SqlBaseLexer.LAST = 126; +SqlBaseLexer.LATERAL = 127; +SqlBaseLexer.LAZY = 128; +SqlBaseLexer.LEADING = 129; +SqlBaseLexer.LEFT = 130; +SqlBaseLexer.LIKE = 131; +SqlBaseLexer.LIMIT = 132; +SqlBaseLexer.LINES = 133; +SqlBaseLexer.LIST = 134; +SqlBaseLexer.LOAD = 135; +SqlBaseLexer.LOCAL = 136; +SqlBaseLexer.LOCATION = 137; +SqlBaseLexer.LOCK = 138; +SqlBaseLexer.LOCKS = 139; +SqlBaseLexer.LOGICAL = 140; +SqlBaseLexer.MACRO = 141; +SqlBaseLexer.MAP = 142; +SqlBaseLexer.MATCHED = 143; +SqlBaseLexer.MERGE = 144; +SqlBaseLexer.MSCK = 145; +SqlBaseLexer.NAMESPACE = 146; +SqlBaseLexer.NAMESPACES = 147; +SqlBaseLexer.NATURAL = 148; +SqlBaseLexer.NO = 149; +SqlBaseLexer.NOT = 150; +SqlBaseLexer.NULL = 151; +SqlBaseLexer.NULLS = 152; +SqlBaseLexer.OF = 153; +SqlBaseLexer.ON = 154; +SqlBaseLexer.ONLY = 155; +SqlBaseLexer.OPTION = 156; +SqlBaseLexer.OPTIONS = 157; +SqlBaseLexer.OR = 158; +SqlBaseLexer.ORDER = 159; +SqlBaseLexer.OUT = 160; +SqlBaseLexer.OUTER = 161; +SqlBaseLexer.OUTPUTFORMAT = 162; +SqlBaseLexer.OVER = 163; +SqlBaseLexer.OVERLAPS = 164; +SqlBaseLexer.OVERLAY = 165; +SqlBaseLexer.OVERWRITE = 166; +SqlBaseLexer.PARTITION = 167; +SqlBaseLexer.PARTITIONED = 168; +SqlBaseLexer.PARTITIONS = 169; +SqlBaseLexer.PERCENTLIT = 170; +SqlBaseLexer.PIVOT = 171; +SqlBaseLexer.PLACING = 172; +SqlBaseLexer.POSITION = 173; +SqlBaseLexer.PRECEDING = 174; +SqlBaseLexer.PRIMARY = 175; +SqlBaseLexer.PRINCIPALS = 176; +SqlBaseLexer.PROPERTIES = 177; +SqlBaseLexer.PURGE = 178; +SqlBaseLexer.QUERY = 179; +SqlBaseLexer.RANGE = 180; +SqlBaseLexer.RECORDREADER = 181; +SqlBaseLexer.RECORDWRITER = 182; +SqlBaseLexer.RECOVER = 183; +SqlBaseLexer.REDUCE = 184; +SqlBaseLexer.REFERENCES = 185; +SqlBaseLexer.REFRESH = 186; +SqlBaseLexer.RENAME = 187; +SqlBaseLexer.REPAIR = 188; +SqlBaseLexer.REPLACE = 189; +SqlBaseLexer.RESET = 190; +SqlBaseLexer.RESTRICT = 191; +SqlBaseLexer.REVOKE = 192; +SqlBaseLexer.RIGHT = 193; +SqlBaseLexer.RLIKE = 194; +SqlBaseLexer.ROLE = 195; +SqlBaseLexer.ROLES = 196; +SqlBaseLexer.ROLLBACK = 197; +SqlBaseLexer.ROLLUP = 198; +SqlBaseLexer.ROW = 199; +SqlBaseLexer.ROWS = 200; +SqlBaseLexer.SCHEMA = 201; +SqlBaseLexer.SELECT = 202; +SqlBaseLexer.SEMI = 203; +SqlBaseLexer.SEPARATED = 204; +SqlBaseLexer.SERDE = 205; +SqlBaseLexer.SERDEPROPERTIES = 206; +SqlBaseLexer.SESSION_USER = 207; +SqlBaseLexer.SET = 208; +SqlBaseLexer.SETMINUS = 209; +SqlBaseLexer.SETS = 210; +SqlBaseLexer.SHOW = 211; +SqlBaseLexer.SKEWED = 212; +SqlBaseLexer.SOME = 213; +SqlBaseLexer.SORT = 214; +SqlBaseLexer.SORTED = 215; +SqlBaseLexer.START = 216; +SqlBaseLexer.STATISTICS = 217; +SqlBaseLexer.STORED = 218; +SqlBaseLexer.STRATIFY = 219; +SqlBaseLexer.STRUCT = 220; +SqlBaseLexer.SUBSTR = 221; +SqlBaseLexer.SUBSTRING = 222; +SqlBaseLexer.TABLE = 223; +SqlBaseLexer.TABLES = 224; +SqlBaseLexer.TABLESAMPLE = 225; +SqlBaseLexer.TBLPROPERTIES = 226; +SqlBaseLexer.TEMPORARY = 227; +SqlBaseLexer.TERMINATED = 228; +SqlBaseLexer.THEN = 229; +SqlBaseLexer.TIME = 230; +SqlBaseLexer.TO = 231; +SqlBaseLexer.TOUCH = 232; +SqlBaseLexer.TRAILING = 233; +SqlBaseLexer.TRANSACTION = 234; +SqlBaseLexer.TRANSACTIONS = 235; +SqlBaseLexer.TRANSFORM = 236; +SqlBaseLexer.TRIM = 237; +SqlBaseLexer.TRUE = 238; +SqlBaseLexer.TRUNCATE = 239; +SqlBaseLexer.TYPE = 240; +SqlBaseLexer.UNARCHIVE = 241; +SqlBaseLexer.UNBOUNDED = 242; +SqlBaseLexer.UNCACHE = 243; +SqlBaseLexer.UNION = 244; +SqlBaseLexer.UNIQUE = 245; +SqlBaseLexer.UNKNOWN = 246; +SqlBaseLexer.UNLOCK = 247; +SqlBaseLexer.UNSET = 248; +SqlBaseLexer.UPDATE = 249; +SqlBaseLexer.USE = 250; +SqlBaseLexer.USER = 251; +SqlBaseLexer.USING = 252; +SqlBaseLexer.VALUES = 253; +SqlBaseLexer.VIEW = 254; +SqlBaseLexer.VIEWS = 255; +SqlBaseLexer.WHEN = 256; +SqlBaseLexer.WHERE = 257; +SqlBaseLexer.WINDOW = 258; +SqlBaseLexer.WITH = 259; +SqlBaseLexer.ZONE = 260; +SqlBaseLexer.EQ = 261; +SqlBaseLexer.NSEQ = 262; +SqlBaseLexer.NEQ = 263; +SqlBaseLexer.NEQJ = 264; +SqlBaseLexer.LT = 265; +SqlBaseLexer.LTE = 266; +SqlBaseLexer.GT = 267; +SqlBaseLexer.GTE = 268; +SqlBaseLexer.PLUS = 269; +SqlBaseLexer.MINUS = 270; +SqlBaseLexer.ASTERISK = 271; +SqlBaseLexer.SLASH = 272; +SqlBaseLexer.PERCENT = 273; +SqlBaseLexer.TILDE = 274; +SqlBaseLexer.AMPERSAND = 275; +SqlBaseLexer.PIPE = 276; +SqlBaseLexer.CONCAT_PIPE = 277; +SqlBaseLexer.HAT = 278; +SqlBaseLexer.STRING = 279; +SqlBaseLexer.BIGINT_LITERAL = 280; +SqlBaseLexer.SMALLINT_LITERAL = 281; +SqlBaseLexer.TINYINT_LITERAL = 282; +SqlBaseLexer.INTEGER_VALUE = 283; +SqlBaseLexer.EXPONENT_VALUE = 284; +SqlBaseLexer.DECIMAL_VALUE = 285; +SqlBaseLexer.FLOAT_LITERAL = 286; +SqlBaseLexer.DOUBLE_LITERAL = 287; +SqlBaseLexer.BIGDECIMAL_LITERAL = 288; +SqlBaseLexer.IDENTIFIER = 289; +SqlBaseLexer.BACKQUOTED_IDENTIFIER = 290; +SqlBaseLexer.SIMPLE_COMMENT = 291; +SqlBaseLexer.BRACKETED_COMMENT = 292; +SqlBaseLexer.WS = 293; +SqlBaseLexer.UNRECOGNIZED = 294; + +SqlBaseLexer.prototype.channelNames = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" ]; + +SqlBaseLexer.prototype.modeNames = [ "DEFAULT_MODE" ]; + +SqlBaseLexer.prototype.literalNames = [ null, "';'", "'('", "')'", "','", + "'.'", "'/*+'", "'*/'", "'->'", + "'['", "']'", "':'", "'ADD'", "'AFTER'", + "'ALL'", "'ALTER'", "'ANALYZE'", + "'AND'", "'ANTI'", "'ANY'", "'ARCHIVE'", + "'ARRAY'", "'AS'", "'ASC'", "'AT'", + "'AUTHORIZATION'", "'BETWEEN'", + "'BOTH'", "'BUCKET'", "'BUCKETS'", + "'BY'", "'CACHE'", "'CASCADE'", + "'CASE'", "'CAST'", "'CHANGE'", + "'CHECK'", "'CLEAR'", "'CLUSTER'", + "'CLUSTERED'", "'CODEGEN'", "'COLLATE'", + "'COLLECTION'", "'COLUMN'", "'COLUMNS'", + "'COMMENT'", "'COMMIT'", "'COMPACT'", + "'COMPACTIONS'", "'COMPUTE'", "'CONCATENATE'", + "'CONSTRAINT'", "'COST'", "'CREATE'", + "'CROSS'", "'CUBE'", "'CURRENT'", + "'CURRENT_DATE'", "'CURRENT_TIME'", + "'CURRENT_TIMESTAMP'", "'CURRENT_USER'", + "'DATA'", "'DATABASE'", null, "'DBPROPERTIES'", + "'DEFINED'", "'DELETE'", "'DELIMITED'", + "'DESC'", "'DESCRIBE'", "'DFS'", + "'DIRECTORIES'", "'DIRECTORY'", + "'DISTINCT'", "'DISTRIBUTE'", "'DIV'", + "'DROP'", "'ELSE'", "'END'", "'ESCAPE'", + "'ESCAPED'", "'EXCEPT'", "'EXCHANGE'", + "'EXISTS'", "'EXPLAIN'", "'EXPORT'", + "'EXTENDED'", "'EXTERNAL'", "'EXTRACT'", + "'FALSE'", "'FETCH'", "'FIELDS'", + "'FILTER'", "'FILEFORMAT'", "'FIRST'", + "'FOLLOWING'", "'FOR'", "'FOREIGN'", + "'FORMAT'", "'FORMATTED'", "'FROM'", + "'FULL'", "'FUNCTION'", "'FUNCTIONS'", + "'GLOBAL'", "'GRANT'", "'GROUP'", + "'GROUPING'", "'HAVING'", "'IF'", + "'IGNORE'", "'IMPORT'", "'IN'", + "'INDEX'", "'INDEXES'", "'INNER'", + "'INPATH'", "'INPUTFORMAT'", "'INSERT'", + "'INTERSECT'", "'INTERVAL'", "'INTO'", + "'IS'", "'ITEMS'", "'JOIN'", "'KEYS'", + "'LAST'", "'LATERAL'", "'LAZY'", + "'LEADING'", "'LEFT'", "'LIKE'", + "'LIMIT'", "'LINES'", "'LIST'", + "'LOAD'", "'LOCAL'", "'LOCATION'", + "'LOCK'", "'LOCKS'", "'LOGICAL'", + "'MACRO'", "'MAP'", "'MATCHED'", + "'MERGE'", "'MSCK'", "'NAMESPACE'", + "'NAMESPACES'", "'NATURAL'", "'NO'", + null, "'NULL'", "'NULLS'", "'OF'", + "'ON'", "'ONLY'", "'OPTION'", "'OPTIONS'", + "'OR'", "'ORDER'", "'OUT'", "'OUTER'", + "'OUTPUTFORMAT'", "'OVER'", "'OVERLAPS'", + "'OVERLAY'", "'OVERWRITE'", "'PARTITION'", + "'PARTITIONED'", "'PARTITIONS'", + "'PERCENT'", "'PIVOT'", "'PLACING'", + "'POSITION'", "'PRECEDING'", "'PRIMARY'", + "'PRINCIPALS'", "'PROPERTIES'", + "'PURGE'", "'QUERY'", "'RANGE'", + "'RECORDREADER'", "'RECORDWRITER'", + "'RECOVER'", "'REDUCE'", "'REFERENCES'", + "'REFRESH'", "'RENAME'", "'REPAIR'", + "'REPLACE'", "'RESET'", "'RESTRICT'", + "'REVOKE'", "'RIGHT'", null, "'ROLE'", + "'ROLES'", "'ROLLBACK'", "'ROLLUP'", + "'ROW'", "'ROWS'", "'SCHEMA'", "'SELECT'", + "'SEMI'", "'SEPARATED'", "'SERDE'", + "'SERDEPROPERTIES'", "'SESSION_USER'", + "'SET'", "'MINUS'", "'SETS'", "'SHOW'", + "'SKEWED'", "'SOME'", "'SORT'", + "'SORTED'", "'START'", "'STATISTICS'", + "'STORED'", "'STRATIFY'", "'STRUCT'", + "'SUBSTR'", "'SUBSTRING'", "'TABLE'", + "'TABLES'", "'TABLESAMPLE'", "'TBLPROPERTIES'", + null, "'TERMINATED'", "'THEN'", + "'TIME'", "'TO'", "'TOUCH'", "'TRAILING'", + "'TRANSACTION'", "'TRANSACTIONS'", + "'TRANSFORM'", "'TRIM'", "'TRUE'", + "'TRUNCATE'", "'TYPE'", "'UNARCHIVE'", + "'UNBOUNDED'", "'UNCACHE'", "'UNION'", + "'UNIQUE'", "'UNKNOWN'", "'UNLOCK'", + "'UNSET'", "'UPDATE'", "'USE'", + "'USER'", "'USING'", "'VALUES'", + "'VIEW'", "'VIEWS'", "'WHEN'", "'WHERE'", + "'WINDOW'", "'WITH'", "'ZONE'", + null, "'<=>'", "'<>'", "'!='", "'<'", + null, "'>'", null, "'+'", "'-'", + "'*'", "'/'", "'%'", "'~'", "'&'", + "'|'", "'||'", "'^'" ]; + +SqlBaseLexer.prototype.symbolicNames = [ null, null, null, null, null, null, + null, null, null, null, null, null, + "ADD", "AFTER", "ALL", "ALTER", + "ANALYZE", "AND", "ANTI", "ANY", + "ARCHIVE", "ARRAY", "AS", "ASC", + "AT", "AUTHORIZATION", "BETWEEN", + "BOTH", "BUCKET", "BUCKETS", "BY", + "CACHE", "CASCADE", "CASE", "CAST", + "CHANGE", "CHECK", "CLEAR", "CLUSTER", + "CLUSTERED", "CODEGEN", "COLLATE", + "COLLECTION", "COLUMN", "COLUMNS", + "COMMENT", "COMMIT", "COMPACT", + "COMPACTIONS", "COMPUTE", "CONCATENATE", + "CONSTRAINT", "COST", "CREATE", + "CROSS", "CUBE", "CURRENT", "CURRENT_DATE", + "CURRENT_TIME", "CURRENT_TIMESTAMP", + "CURRENT_USER", "DATA", "DATABASE", + "DATABASES", "DBPROPERTIES", "DEFINED", + "DELETE", "DELIMITED", "DESC", + "DESCRIBE", "DFS", "DIRECTORIES", + "DIRECTORY", "DISTINCT", "DISTRIBUTE", + "DIV", "DROP", "ELSE", "END", "ESCAPE", + "ESCAPED", "EXCEPT", "EXCHANGE", + "EXISTS", "EXPLAIN", "EXPORT", + "EXTENDED", "EXTERNAL", "EXTRACT", + "FALSE", "FETCH", "FIELDS", "FILTER", + "FILEFORMAT", "FIRST", "FOLLOWING", + "FOR", "FOREIGN", "FORMAT", "FORMATTED", + "FROM", "FULL", "FUNCTION", "FUNCTIONS", + "GLOBAL", "GRANT", "GROUP", "GROUPING", + "HAVING", "IF", "IGNORE", "IMPORT", + "IN", "INDEX", "INDEXES", "INNER", + "INPATH", "INPUTFORMAT", "INSERT", + "INTERSECT", "INTERVAL", "INTO", + "IS", "ITEMS", "JOIN", "KEYS", + "LAST", "LATERAL", "LAZY", "LEADING", + "LEFT", "LIKE", "LIMIT", "LINES", + "LIST", "LOAD", "LOCAL", "LOCATION", + "LOCK", "LOCKS", "LOGICAL", "MACRO", + "MAP", "MATCHED", "MERGE", "MSCK", + "NAMESPACE", "NAMESPACES", "NATURAL", + "NO", "NOT", "NULL", "NULLS", "OF", + "ON", "ONLY", "OPTION", "OPTIONS", + "OR", "ORDER", "OUT", "OUTER", + "OUTPUTFORMAT", "OVER", "OVERLAPS", + "OVERLAY", "OVERWRITE", "PARTITION", + "PARTITIONED", "PARTITIONS", "PERCENTLIT", + "PIVOT", "PLACING", "POSITION", + "PRECEDING", "PRIMARY", "PRINCIPALS", + "PROPERTIES", "PURGE", "QUERY", + "RANGE", "RECORDREADER", "RECORDWRITER", + "RECOVER", "REDUCE", "REFERENCES", + "REFRESH", "RENAME", "REPAIR", + "REPLACE", "RESET", "RESTRICT", + "REVOKE", "RIGHT", "RLIKE", "ROLE", + "ROLES", "ROLLBACK", "ROLLUP", + "ROW", "ROWS", "SCHEMA", "SELECT", + "SEMI", "SEPARATED", "SERDE", "SERDEPROPERTIES", + "SESSION_USER", "SET", "SETMINUS", + "SETS", "SHOW", "SKEWED", "SOME", + "SORT", "SORTED", "START", "STATISTICS", + "STORED", "STRATIFY", "STRUCT", + "SUBSTR", "SUBSTRING", "TABLE", + "TABLES", "TABLESAMPLE", "TBLPROPERTIES", + "TEMPORARY", "TERMINATED", "THEN", + "TIME", "TO", "TOUCH", "TRAILING", + "TRANSACTION", "TRANSACTIONS", + "TRANSFORM", "TRIM", "TRUE", "TRUNCATE", + "TYPE", "UNARCHIVE", "UNBOUNDED", + "UNCACHE", "UNION", "UNIQUE", "UNKNOWN", + "UNLOCK", "UNSET", "UPDATE", "USE", + "USER", "USING", "VALUES", "VIEW", + "VIEWS", "WHEN", "WHERE", "WINDOW", + "WITH", "ZONE", "EQ", "NSEQ", "NEQ", + "NEQJ", "LT", "LTE", "GT", "GTE", + "PLUS", "MINUS", "ASTERISK", "SLASH", + "PERCENT", "TILDE", "AMPERSAND", + "PIPE", "CONCAT_PIPE", "HAT", "STRING", + "BIGINT_LITERAL", "SMALLINT_LITERAL", + "TINYINT_LITERAL", "INTEGER_VALUE", + "EXPONENT_VALUE", "DECIMAL_VALUE", + "FLOAT_LITERAL", "DOUBLE_LITERAL", + "BIGDECIMAL_LITERAL", "IDENTIFIER", + "BACKQUOTED_IDENTIFIER", "SIMPLE_COMMENT", + "BRACKETED_COMMENT", "WS", "UNRECOGNIZED" ]; + +SqlBaseLexer.prototype.ruleNames = [ "T__0", "T__1", "T__2", "T__3", "T__4", + "T__5", "T__6", "T__7", "T__8", "T__9", + "T__10", "ADD", "AFTER", "ALL", "ALTER", + "ANALYZE", "AND", "ANTI", "ANY", "ARCHIVE", + "ARRAY", "AS", "ASC", "AT", "AUTHORIZATION", + "BETWEEN", "BOTH", "BUCKET", "BUCKETS", + "BY", "CACHE", "CASCADE", "CASE", "CAST", + "CHANGE", "CHECK", "CLEAR", "CLUSTER", + "CLUSTERED", "CODEGEN", "COLLATE", + "COLLECTION", "COLUMN", "COLUMNS", + "COMMENT", "COMMIT", "COMPACT", "COMPACTIONS", + "COMPUTE", "CONCATENATE", "CONSTRAINT", + "COST", "CREATE", "CROSS", "CUBE", + "CURRENT", "CURRENT_DATE", "CURRENT_TIME", + "CURRENT_TIMESTAMP", "CURRENT_USER", + "DATA", "DATABASE", "DATABASES", "DBPROPERTIES", + "DEFINED", "DELETE", "DELIMITED", "DESC", + "DESCRIBE", "DFS", "DIRECTORIES", "DIRECTORY", + "DISTINCT", "DISTRIBUTE", "DIV", "DROP", + "ELSE", "END", "ESCAPE", "ESCAPED", + "EXCEPT", "EXCHANGE", "EXISTS", "EXPLAIN", + "EXPORT", "EXTENDED", "EXTERNAL", "EXTRACT", + "FALSE", "FETCH", "FIELDS", "FILTER", + "FILEFORMAT", "FIRST", "FOLLOWING", + "FOR", "FOREIGN", "FORMAT", "FORMATTED", + "FROM", "FULL", "FUNCTION", "FUNCTIONS", + "GLOBAL", "GRANT", "GROUP", "GROUPING", + "HAVING", "IF", "IGNORE", "IMPORT", + "IN", "INDEX", "INDEXES", "INNER", + "INPATH", "INPUTFORMAT", "INSERT", + "INTERSECT", "INTERVAL", "INTO", "IS", + "ITEMS", "JOIN", "KEYS", "LAST", "LATERAL", + "LAZY", "LEADING", "LEFT", "LIKE", + "LIMIT", "LINES", "LIST", "LOAD", "LOCAL", + "LOCATION", "LOCK", "LOCKS", "LOGICAL", + "MACRO", "MAP", "MATCHED", "MERGE", + "MSCK", "NAMESPACE", "NAMESPACES", + "NATURAL", "NO", "NOT", "NULL", "NULLS", + "OF", "ON", "ONLY", "OPTION", "OPTIONS", + "OR", "ORDER", "OUT", "OUTER", "OUTPUTFORMAT", + "OVER", "OVERLAPS", "OVERLAY", "OVERWRITE", + "PARTITION", "PARTITIONED", "PARTITIONS", + "PERCENTLIT", "PIVOT", "PLACING", "POSITION", + "PRECEDING", "PRIMARY", "PRINCIPALS", + "PROPERTIES", "PURGE", "QUERY", "RANGE", + "RECORDREADER", "RECORDWRITER", "RECOVER", + "REDUCE", "REFERENCES", "REFRESH", + "RENAME", "REPAIR", "REPLACE", "RESET", + "RESTRICT", "REVOKE", "RIGHT", "RLIKE", + "ROLE", "ROLES", "ROLLBACK", "ROLLUP", + "ROW", "ROWS", "SCHEMA", "SELECT", + "SEMI", "SEPARATED", "SERDE", "SERDEPROPERTIES", + "SESSION_USER", "SET", "SETMINUS", + "SETS", "SHOW", "SKEWED", "SOME", "SORT", + "SORTED", "START", "STATISTICS", "STORED", + "STRATIFY", "STRUCT", "SUBSTR", "SUBSTRING", + "TABLE", "TABLES", "TABLESAMPLE", "TBLPROPERTIES", + "TEMPORARY", "TERMINATED", "THEN", + "TIME", "TO", "TOUCH", "TRAILING", + "TRANSACTION", "TRANSACTIONS", "TRANSFORM", + "TRIM", "TRUE", "TRUNCATE", "TYPE", + "UNARCHIVE", "UNBOUNDED", "UNCACHE", + "UNION", "UNIQUE", "UNKNOWN", "UNLOCK", + "UNSET", "UPDATE", "USE", "USER", "USING", + "VALUES", "VIEW", "VIEWS", "WHEN", + "WHERE", "WINDOW", "WITH", "ZONE", + "EQ", "NSEQ", "NEQ", "NEQJ", "LT", + "LTE", "GT", "GTE", "PLUS", "MINUS", + "ASTERISK", "SLASH", "PERCENT", "TILDE", + "AMPERSAND", "PIPE", "CONCAT_PIPE", + "HAT", "STRING", "BIGINT_LITERAL", + "SMALLINT_LITERAL", "TINYINT_LITERAL", + "INTEGER_VALUE", "EXPONENT_VALUE", + "DECIMAL_VALUE", "FLOAT_LITERAL", "DOUBLE_LITERAL", + "BIGDECIMAL_LITERAL", "IDENTIFIER", + "BACKQUOTED_IDENTIFIER", "DECIMAL_DIGITS", + "EXPONENT", "DIGIT", "LETTER", "SIMPLE_COMMENT", + "BRACKETED_COMMENT", "WS", "UNRECOGNIZED" ]; + +SqlBaseLexer.prototype.grammarFileName = "SqlBase.g4"; + +SqlBaseLexer.prototype.sempred = function(localctx, ruleIndex, predIndex) { + switch (ruleIndex) { + case 283: + return this.EXPONENT_VALUE_sempred(localctx, predIndex); + case 284: + return this.DECIMAL_VALUE_sempred(localctx, predIndex); + case 285: + return this.FLOAT_LITERAL_sempred(localctx, predIndex); + case 286: + return this.DOUBLE_LITERAL_sempred(localctx, predIndex); + case 287: + return this.BIGDECIMAL_LITERAL_sempred(localctx, predIndex); + case 295: + return this.BRACKETED_COMMENT_sempred(localctx, predIndex); + default: + throw "No registered predicate for:" + ruleIndex; + } +}; + +SqlBaseLexer.prototype.EXPONENT_VALUE_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 0: + return isValidDecimal(); + default: + throw "No predicate with index:" + predIndex; + } +}; + +SqlBaseLexer.prototype.DECIMAL_VALUE_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 1: + return isValidDecimal(); + default: + throw "No predicate with index:" + predIndex; + } +}; + +SqlBaseLexer.prototype.FLOAT_LITERAL_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 2: + return isValidDecimal(); + default: + throw "No predicate with index:" + predIndex; + } +}; + +SqlBaseLexer.prototype.DOUBLE_LITERAL_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 3: + return isValidDecimal(); + default: + throw "No predicate with index:" + predIndex; + } +}; + +SqlBaseLexer.prototype.BIGDECIMAL_LITERAL_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 4: + return isValidDecimal(); + default: + throw "No predicate with index:" + predIndex; + } +}; + +SqlBaseLexer.prototype.BRACKETED_COMMENT_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 5: + return !isHint(); + default: + throw "No predicate with index:" + predIndex; + } +}; + + + +exports.SqlBaseLexer = SqlBaseLexer; + diff --git a/src/lib/spark/SqlBaseLexer.tokens b/src/lib/spark/SqlBaseLexer.tokens new file mode 100644 index 0000000..1ab4c5a --- /dev/null +++ b/src/lib/spark/SqlBaseLexer.tokens @@ -0,0 +1,565 @@ +T__0=1 +T__1=2 +T__2=3 +T__3=4 +T__4=5 +T__5=6 +T__6=7 +T__7=8 +T__8=9 +T__9=10 +T__10=11 +ADD=12 +AFTER=13 +ALL=14 +ALTER=15 +ANALYZE=16 +AND=17 +ANTI=18 +ANY=19 +ARCHIVE=20 +ARRAY=21 +AS=22 +ASC=23 +AT=24 +AUTHORIZATION=25 +BETWEEN=26 +BOTH=27 +BUCKET=28 +BUCKETS=29 +BY=30 +CACHE=31 +CASCADE=32 +CASE=33 +CAST=34 +CHANGE=35 +CHECK=36 +CLEAR=37 +CLUSTER=38 +CLUSTERED=39 +CODEGEN=40 +COLLATE=41 +COLLECTION=42 +COLUMN=43 +COLUMNS=44 +COMMENT=45 +COMMIT=46 +COMPACT=47 +COMPACTIONS=48 +COMPUTE=49 +CONCATENATE=50 +CONSTRAINT=51 +COST=52 +CREATE=53 +CROSS=54 +CUBE=55 +CURRENT=56 +CURRENT_DATE=57 +CURRENT_TIME=58 +CURRENT_TIMESTAMP=59 +CURRENT_USER=60 +DATA=61 +DATABASE=62 +DATABASES=63 +DBPROPERTIES=64 +DEFINED=65 +DELETE=66 +DELIMITED=67 +DESC=68 +DESCRIBE=69 +DFS=70 +DIRECTORIES=71 +DIRECTORY=72 +DISTINCT=73 +DISTRIBUTE=74 +DIV=75 +DROP=76 +ELSE=77 +END=78 +ESCAPE=79 +ESCAPED=80 +EXCEPT=81 +EXCHANGE=82 +EXISTS=83 +EXPLAIN=84 +EXPORT=85 +EXTENDED=86 +EXTERNAL=87 +EXTRACT=88 +FALSE=89 +FETCH=90 +FIELDS=91 +FILTER=92 +FILEFORMAT=93 +FIRST=94 +FOLLOWING=95 +FOR=96 +FOREIGN=97 +FORMAT=98 +FORMATTED=99 +FROM=100 +FULL=101 +FUNCTION=102 +FUNCTIONS=103 +GLOBAL=104 +GRANT=105 +GROUP=106 +GROUPING=107 +HAVING=108 +IF=109 +IGNORE=110 +IMPORT=111 +IN=112 +INDEX=113 +INDEXES=114 +INNER=115 +INPATH=116 +INPUTFORMAT=117 +INSERT=118 +INTERSECT=119 +INTERVAL=120 +INTO=121 +IS=122 +ITEMS=123 +JOIN=124 +KEYS=125 +LAST=126 +LATERAL=127 +LAZY=128 +LEADING=129 +LEFT=130 +LIKE=131 +LIMIT=132 +LINES=133 +LIST=134 +LOAD=135 +LOCAL=136 +LOCATION=137 +LOCK=138 +LOCKS=139 +LOGICAL=140 +MACRO=141 +MAP=142 +MATCHED=143 +MERGE=144 +MSCK=145 +NAMESPACE=146 +NAMESPACES=147 +NATURAL=148 +NO=149 +NOT=150 +NULL=151 +NULLS=152 +OF=153 +ON=154 +ONLY=155 +OPTION=156 +OPTIONS=157 +OR=158 +ORDER=159 +OUT=160 +OUTER=161 +OUTPUTFORMAT=162 +OVER=163 +OVERLAPS=164 +OVERLAY=165 +OVERWRITE=166 +PARTITION=167 +PARTITIONED=168 +PARTITIONS=169 +PERCENTLIT=170 +PIVOT=171 +PLACING=172 +POSITION=173 +PRECEDING=174 +PRIMARY=175 +PRINCIPALS=176 +PROPERTIES=177 +PURGE=178 +QUERY=179 +RANGE=180 +RECORDREADER=181 +RECORDWRITER=182 +RECOVER=183 +REDUCE=184 +REFERENCES=185 +REFRESH=186 +RENAME=187 +REPAIR=188 +REPLACE=189 +RESET=190 +RESTRICT=191 +REVOKE=192 +RIGHT=193 +RLIKE=194 +ROLE=195 +ROLES=196 +ROLLBACK=197 +ROLLUP=198 +ROW=199 +ROWS=200 +SCHEMA=201 +SELECT=202 +SEMI=203 +SEPARATED=204 +SERDE=205 +SERDEPROPERTIES=206 +SESSION_USER=207 +SET=208 +SETMINUS=209 +SETS=210 +SHOW=211 +SKEWED=212 +SOME=213 +SORT=214 +SORTED=215 +START=216 +STATISTICS=217 +STORED=218 +STRATIFY=219 +STRUCT=220 +SUBSTR=221 +SUBSTRING=222 +TABLE=223 +TABLES=224 +TABLESAMPLE=225 +TBLPROPERTIES=226 +TEMPORARY=227 +TERMINATED=228 +THEN=229 +TIME=230 +TO=231 +TOUCH=232 +TRAILING=233 +TRANSACTION=234 +TRANSACTIONS=235 +TRANSFORM=236 +TRIM=237 +TRUE=238 +TRUNCATE=239 +TYPE=240 +UNARCHIVE=241 +UNBOUNDED=242 +UNCACHE=243 +UNION=244 +UNIQUE=245 +UNKNOWN=246 +UNLOCK=247 +UNSET=248 +UPDATE=249 +USE=250 +USER=251 +USING=252 +VALUES=253 +VIEW=254 +VIEWS=255 +WHEN=256 +WHERE=257 +WINDOW=258 +WITH=259 +ZONE=260 +EQ=261 +NSEQ=262 +NEQ=263 +NEQJ=264 +LT=265 +LTE=266 +GT=267 +GTE=268 +PLUS=269 +MINUS=270 +ASTERISK=271 +SLASH=272 +PERCENT=273 +TILDE=274 +AMPERSAND=275 +PIPE=276 +CONCAT_PIPE=277 +HAT=278 +STRING=279 +BIGINT_LITERAL=280 +SMALLINT_LITERAL=281 +TINYINT_LITERAL=282 +INTEGER_VALUE=283 +EXPONENT_VALUE=284 +DECIMAL_VALUE=285 +FLOAT_LITERAL=286 +DOUBLE_LITERAL=287 +BIGDECIMAL_LITERAL=288 +IDENTIFIER=289 +BACKQUOTED_IDENTIFIER=290 +SIMPLE_COMMENT=291 +BRACKETED_COMMENT=292 +WS=293 +UNRECOGNIZED=294 +';'=1 +'('=2 +')'=3 +','=4 +'.'=5 +'/*+'=6 +'*/'=7 +'->'=8 +'['=9 +']'=10 +':'=11 +'ADD'=12 +'AFTER'=13 +'ALL'=14 +'ALTER'=15 +'ANALYZE'=16 +'AND'=17 +'ANTI'=18 +'ANY'=19 +'ARCHIVE'=20 +'ARRAY'=21 +'AS'=22 +'ASC'=23 +'AT'=24 +'AUTHORIZATION'=25 +'BETWEEN'=26 +'BOTH'=27 +'BUCKET'=28 +'BUCKETS'=29 +'BY'=30 +'CACHE'=31 +'CASCADE'=32 +'CASE'=33 +'CAST'=34 +'CHANGE'=35 +'CHECK'=36 +'CLEAR'=37 +'CLUSTER'=38 +'CLUSTERED'=39 +'CODEGEN'=40 +'COLLATE'=41 +'COLLECTION'=42 +'COLUMN'=43 +'COLUMNS'=44 +'COMMENT'=45 +'COMMIT'=46 +'COMPACT'=47 +'COMPACTIONS'=48 +'COMPUTE'=49 +'CONCATENATE'=50 +'CONSTRAINT'=51 +'COST'=52 +'CREATE'=53 +'CROSS'=54 +'CUBE'=55 +'CURRENT'=56 +'CURRENT_DATE'=57 +'CURRENT_TIME'=58 +'CURRENT_TIMESTAMP'=59 +'CURRENT_USER'=60 +'DATA'=61 +'DATABASE'=62 +'DBPROPERTIES'=64 +'DEFINED'=65 +'DELETE'=66 +'DELIMITED'=67 +'DESC'=68 +'DESCRIBE'=69 +'DFS'=70 +'DIRECTORIES'=71 +'DIRECTORY'=72 +'DISTINCT'=73 +'DISTRIBUTE'=74 +'DIV'=75 +'DROP'=76 +'ELSE'=77 +'END'=78 +'ESCAPE'=79 +'ESCAPED'=80 +'EXCEPT'=81 +'EXCHANGE'=82 +'EXISTS'=83 +'EXPLAIN'=84 +'EXPORT'=85 +'EXTENDED'=86 +'EXTERNAL'=87 +'EXTRACT'=88 +'FALSE'=89 +'FETCH'=90 +'FIELDS'=91 +'FILTER'=92 +'FILEFORMAT'=93 +'FIRST'=94 +'FOLLOWING'=95 +'FOR'=96 +'FOREIGN'=97 +'FORMAT'=98 +'FORMATTED'=99 +'FROM'=100 +'FULL'=101 +'FUNCTION'=102 +'FUNCTIONS'=103 +'GLOBAL'=104 +'GRANT'=105 +'GROUP'=106 +'GROUPING'=107 +'HAVING'=108 +'IF'=109 +'IGNORE'=110 +'IMPORT'=111 +'IN'=112 +'INDEX'=113 +'INDEXES'=114 +'INNER'=115 +'INPATH'=116 +'INPUTFORMAT'=117 +'INSERT'=118 +'INTERSECT'=119 +'INTERVAL'=120 +'INTO'=121 +'IS'=122 +'ITEMS'=123 +'JOIN'=124 +'KEYS'=125 +'LAST'=126 +'LATERAL'=127 +'LAZY'=128 +'LEADING'=129 +'LEFT'=130 +'LIKE'=131 +'LIMIT'=132 +'LINES'=133 +'LIST'=134 +'LOAD'=135 +'LOCAL'=136 +'LOCATION'=137 +'LOCK'=138 +'LOCKS'=139 +'LOGICAL'=140 +'MACRO'=141 +'MAP'=142 +'MATCHED'=143 +'MERGE'=144 +'MSCK'=145 +'NAMESPACE'=146 +'NAMESPACES'=147 +'NATURAL'=148 +'NO'=149 +'NULL'=151 +'NULLS'=152 +'OF'=153 +'ON'=154 +'ONLY'=155 +'OPTION'=156 +'OPTIONS'=157 +'OR'=158 +'ORDER'=159 +'OUT'=160 +'OUTER'=161 +'OUTPUTFORMAT'=162 +'OVER'=163 +'OVERLAPS'=164 +'OVERLAY'=165 +'OVERWRITE'=166 +'PARTITION'=167 +'PARTITIONED'=168 +'PARTITIONS'=169 +'PERCENT'=170 +'PIVOT'=171 +'PLACING'=172 +'POSITION'=173 +'PRECEDING'=174 +'PRIMARY'=175 +'PRINCIPALS'=176 +'PROPERTIES'=177 +'PURGE'=178 +'QUERY'=179 +'RANGE'=180 +'RECORDREADER'=181 +'RECORDWRITER'=182 +'RECOVER'=183 +'REDUCE'=184 +'REFERENCES'=185 +'REFRESH'=186 +'RENAME'=187 +'REPAIR'=188 +'REPLACE'=189 +'RESET'=190 +'RESTRICT'=191 +'REVOKE'=192 +'RIGHT'=193 +'ROLE'=195 +'ROLES'=196 +'ROLLBACK'=197 +'ROLLUP'=198 +'ROW'=199 +'ROWS'=200 +'SCHEMA'=201 +'SELECT'=202 +'SEMI'=203 +'SEPARATED'=204 +'SERDE'=205 +'SERDEPROPERTIES'=206 +'SESSION_USER'=207 +'SET'=208 +'MINUS'=209 +'SETS'=210 +'SHOW'=211 +'SKEWED'=212 +'SOME'=213 +'SORT'=214 +'SORTED'=215 +'START'=216 +'STATISTICS'=217 +'STORED'=218 +'STRATIFY'=219 +'STRUCT'=220 +'SUBSTR'=221 +'SUBSTRING'=222 +'TABLE'=223 +'TABLES'=224 +'TABLESAMPLE'=225 +'TBLPROPERTIES'=226 +'TERMINATED'=228 +'THEN'=229 +'TIME'=230 +'TO'=231 +'TOUCH'=232 +'TRAILING'=233 +'TRANSACTION'=234 +'TRANSACTIONS'=235 +'TRANSFORM'=236 +'TRIM'=237 +'TRUE'=238 +'TRUNCATE'=239 +'TYPE'=240 +'UNARCHIVE'=241 +'UNBOUNDED'=242 +'UNCACHE'=243 +'UNION'=244 +'UNIQUE'=245 +'UNKNOWN'=246 +'UNLOCK'=247 +'UNSET'=248 +'UPDATE'=249 +'USE'=250 +'USER'=251 +'USING'=252 +'VALUES'=253 +'VIEW'=254 +'VIEWS'=255 +'WHEN'=256 +'WHERE'=257 +'WINDOW'=258 +'WITH'=259 +'ZONE'=260 +'<=>'=262 +'<>'=263 +'!='=264 +'<'=265 +'>'=267 +'+'=269 +'-'=270 +'*'=271 +'/'=272 +'%'=273 +'~'=274 +'&'=275 +'|'=276 +'||'=277 +'^'=278 diff --git a/src/lib/spark/SqlBaseListener.js b/src/lib/spark/SqlBaseListener.js new file mode 100644 index 0000000..1cc870b --- /dev/null +++ b/src/lib/spark/SqlBaseListener.js @@ -0,0 +1,2445 @@ +// Generated from /Users/jinjiongxi/workspace/dt-sql-parser/src/grammar/spark/SqlBase.g4 by ANTLR 4.8 +// jshint ignore: start +var antlr4 = require('antlr4/index'); + +// This class defines a complete listener for a parse tree produced by SqlBaseParser. +function SqlBaseListener() { + antlr4.tree.ParseTreeListener.call(this); + return this; +} + +SqlBaseListener.prototype = Object.create(antlr4.tree.ParseTreeListener.prototype); +SqlBaseListener.prototype.constructor = SqlBaseListener; + +// Enter a parse tree produced by SqlBaseParser#program. +SqlBaseListener.prototype.enterProgram = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#program. +SqlBaseListener.prototype.exitProgram = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#singleStatement. +SqlBaseListener.prototype.enterSingleStatement = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#singleStatement. +SqlBaseListener.prototype.exitSingleStatement = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#singleExpression. +SqlBaseListener.prototype.enterSingleExpression = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#singleExpression. +SqlBaseListener.prototype.exitSingleExpression = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#singleTableIdentifier. +SqlBaseListener.prototype.enterSingleTableIdentifier = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#singleTableIdentifier. +SqlBaseListener.prototype.exitSingleTableIdentifier = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#singleMultipartIdentifier. +SqlBaseListener.prototype.enterSingleMultipartIdentifier = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#singleMultipartIdentifier. +SqlBaseListener.prototype.exitSingleMultipartIdentifier = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#singleDataType. +SqlBaseListener.prototype.enterSingleDataType = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#singleDataType. +SqlBaseListener.prototype.exitSingleDataType = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#singleTableSchema. +SqlBaseListener.prototype.enterSingleTableSchema = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#singleTableSchema. +SqlBaseListener.prototype.exitSingleTableSchema = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#statementDefault. +SqlBaseListener.prototype.enterStatementDefault = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#statementDefault. +SqlBaseListener.prototype.exitStatementDefault = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#dmlStatement. +SqlBaseListener.prototype.enterDmlStatement = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#dmlStatement. +SqlBaseListener.prototype.exitDmlStatement = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#use. +SqlBaseListener.prototype.enterUse = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#use. +SqlBaseListener.prototype.exitUse = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#createNamespace. +SqlBaseListener.prototype.enterCreateNamespace = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#createNamespace. +SqlBaseListener.prototype.exitCreateNamespace = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#setNamespaceProperties. +SqlBaseListener.prototype.enterSetNamespaceProperties = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#setNamespaceProperties. +SqlBaseListener.prototype.exitSetNamespaceProperties = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#setNamespaceLocation. +SqlBaseListener.prototype.enterSetNamespaceLocation = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#setNamespaceLocation. +SqlBaseListener.prototype.exitSetNamespaceLocation = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#dropNamespace. +SqlBaseListener.prototype.enterDropNamespace = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#dropNamespace. +SqlBaseListener.prototype.exitDropNamespace = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#showNamespaces. +SqlBaseListener.prototype.enterShowNamespaces = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#showNamespaces. +SqlBaseListener.prototype.exitShowNamespaces = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#createTable. +SqlBaseListener.prototype.enterCreateTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#createTable. +SqlBaseListener.prototype.exitCreateTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#createHiveTable. +SqlBaseListener.prototype.enterCreateHiveTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#createHiveTable. +SqlBaseListener.prototype.exitCreateHiveTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#createTableLike. +SqlBaseListener.prototype.enterCreateTableLike = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#createTableLike. +SqlBaseListener.prototype.exitCreateTableLike = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#replaceTable. +SqlBaseListener.prototype.enterReplaceTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#replaceTable. +SqlBaseListener.prototype.exitReplaceTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#analyze. +SqlBaseListener.prototype.enterAnalyze = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#analyze. +SqlBaseListener.prototype.exitAnalyze = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#addTableColumns. +SqlBaseListener.prototype.enterAddTableColumns = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#addTableColumns. +SqlBaseListener.prototype.exitAddTableColumns = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#renameTableColumn. +SqlBaseListener.prototype.enterRenameTableColumn = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#renameTableColumn. +SqlBaseListener.prototype.exitRenameTableColumn = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#dropTableColumns. +SqlBaseListener.prototype.enterDropTableColumns = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#dropTableColumns. +SqlBaseListener.prototype.exitDropTableColumns = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#renameTable. +SqlBaseListener.prototype.enterRenameTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#renameTable. +SqlBaseListener.prototype.exitRenameTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#setTableProperties. +SqlBaseListener.prototype.enterSetTableProperties = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#setTableProperties. +SqlBaseListener.prototype.exitSetTableProperties = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#unsetTableProperties. +SqlBaseListener.prototype.enterUnsetTableProperties = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#unsetTableProperties. +SqlBaseListener.prototype.exitUnsetTableProperties = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#alterTableAlterColumn. +SqlBaseListener.prototype.enterAlterTableAlterColumn = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#alterTableAlterColumn. +SqlBaseListener.prototype.exitAlterTableAlterColumn = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#hiveChangeColumn. +SqlBaseListener.prototype.enterHiveChangeColumn = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#hiveChangeColumn. +SqlBaseListener.prototype.exitHiveChangeColumn = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#hiveReplaceColumns. +SqlBaseListener.prototype.enterHiveReplaceColumns = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#hiveReplaceColumns. +SqlBaseListener.prototype.exitHiveReplaceColumns = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#setTableSerDe. +SqlBaseListener.prototype.enterSetTableSerDe = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#setTableSerDe. +SqlBaseListener.prototype.exitSetTableSerDe = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#addTablePartition. +SqlBaseListener.prototype.enterAddTablePartition = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#addTablePartition. +SqlBaseListener.prototype.exitAddTablePartition = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#renameTablePartition. +SqlBaseListener.prototype.enterRenameTablePartition = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#renameTablePartition. +SqlBaseListener.prototype.exitRenameTablePartition = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#dropTablePartitions. +SqlBaseListener.prototype.enterDropTablePartitions = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#dropTablePartitions. +SqlBaseListener.prototype.exitDropTablePartitions = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#setTableLocation. +SqlBaseListener.prototype.enterSetTableLocation = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#setTableLocation. +SqlBaseListener.prototype.exitSetTableLocation = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#recoverPartitions. +SqlBaseListener.prototype.enterRecoverPartitions = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#recoverPartitions. +SqlBaseListener.prototype.exitRecoverPartitions = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#dropTable. +SqlBaseListener.prototype.enterDropTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#dropTable. +SqlBaseListener.prototype.exitDropTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#dropView. +SqlBaseListener.prototype.enterDropView = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#dropView. +SqlBaseListener.prototype.exitDropView = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#createView. +SqlBaseListener.prototype.enterCreateView = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#createView. +SqlBaseListener.prototype.exitCreateView = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#createTempViewUsing. +SqlBaseListener.prototype.enterCreateTempViewUsing = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#createTempViewUsing. +SqlBaseListener.prototype.exitCreateTempViewUsing = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#alterViewQuery. +SqlBaseListener.prototype.enterAlterViewQuery = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#alterViewQuery. +SqlBaseListener.prototype.exitAlterViewQuery = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#createFunction. +SqlBaseListener.prototype.enterCreateFunction = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#createFunction. +SqlBaseListener.prototype.exitCreateFunction = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#dropFunction. +SqlBaseListener.prototype.enterDropFunction = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#dropFunction. +SqlBaseListener.prototype.exitDropFunction = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#explain. +SqlBaseListener.prototype.enterExplain = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#explain. +SqlBaseListener.prototype.exitExplain = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#showTables. +SqlBaseListener.prototype.enterShowTables = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#showTables. +SqlBaseListener.prototype.exitShowTables = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#showTable. +SqlBaseListener.prototype.enterShowTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#showTable. +SqlBaseListener.prototype.exitShowTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#showTblProperties. +SqlBaseListener.prototype.enterShowTblProperties = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#showTblProperties. +SqlBaseListener.prototype.exitShowTblProperties = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#showColumns. +SqlBaseListener.prototype.enterShowColumns = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#showColumns. +SqlBaseListener.prototype.exitShowColumns = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#showViews. +SqlBaseListener.prototype.enterShowViews = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#showViews. +SqlBaseListener.prototype.exitShowViews = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#showPartitions. +SqlBaseListener.prototype.enterShowPartitions = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#showPartitions. +SqlBaseListener.prototype.exitShowPartitions = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#showFunctions. +SqlBaseListener.prototype.enterShowFunctions = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#showFunctions. +SqlBaseListener.prototype.exitShowFunctions = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#showCreateTable. +SqlBaseListener.prototype.enterShowCreateTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#showCreateTable. +SqlBaseListener.prototype.exitShowCreateTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#showCurrentNamespace. +SqlBaseListener.prototype.enterShowCurrentNamespace = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#showCurrentNamespace. +SqlBaseListener.prototype.exitShowCurrentNamespace = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#describeFunction. +SqlBaseListener.prototype.enterDescribeFunction = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#describeFunction. +SqlBaseListener.prototype.exitDescribeFunction = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#describeNamespace. +SqlBaseListener.prototype.enterDescribeNamespace = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#describeNamespace. +SqlBaseListener.prototype.exitDescribeNamespace = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#describeRelation. +SqlBaseListener.prototype.enterDescribeRelation = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#describeRelation. +SqlBaseListener.prototype.exitDescribeRelation = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#describeQuery. +SqlBaseListener.prototype.enterDescribeQuery = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#describeQuery. +SqlBaseListener.prototype.exitDescribeQuery = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#commentNamespace. +SqlBaseListener.prototype.enterCommentNamespace = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#commentNamespace. +SqlBaseListener.prototype.exitCommentNamespace = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#commentTable. +SqlBaseListener.prototype.enterCommentTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#commentTable. +SqlBaseListener.prototype.exitCommentTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#refreshTable. +SqlBaseListener.prototype.enterRefreshTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#refreshTable. +SqlBaseListener.prototype.exitRefreshTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#refreshFunction. +SqlBaseListener.prototype.enterRefreshFunction = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#refreshFunction. +SqlBaseListener.prototype.exitRefreshFunction = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#refreshResource. +SqlBaseListener.prototype.enterRefreshResource = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#refreshResource. +SqlBaseListener.prototype.exitRefreshResource = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#cacheTable. +SqlBaseListener.prototype.enterCacheTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#cacheTable. +SqlBaseListener.prototype.exitCacheTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#uncacheTable. +SqlBaseListener.prototype.enterUncacheTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#uncacheTable. +SqlBaseListener.prototype.exitUncacheTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#clearCache. +SqlBaseListener.prototype.enterClearCache = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#clearCache. +SqlBaseListener.prototype.exitClearCache = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#loadData. +SqlBaseListener.prototype.enterLoadData = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#loadData. +SqlBaseListener.prototype.exitLoadData = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#truncateTable. +SqlBaseListener.prototype.enterTruncateTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#truncateTable. +SqlBaseListener.prototype.exitTruncateTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#repairTable. +SqlBaseListener.prototype.enterRepairTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#repairTable. +SqlBaseListener.prototype.exitRepairTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#manageResource. +SqlBaseListener.prototype.enterManageResource = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#manageResource. +SqlBaseListener.prototype.exitManageResource = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#failNativeCommand. +SqlBaseListener.prototype.enterFailNativeCommand = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#failNativeCommand. +SqlBaseListener.prototype.exitFailNativeCommand = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#setTimeZone. +SqlBaseListener.prototype.enterSetTimeZone = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#setTimeZone. +SqlBaseListener.prototype.exitSetTimeZone = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#setQuotedConfiguration. +SqlBaseListener.prototype.enterSetQuotedConfiguration = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#setQuotedConfiguration. +SqlBaseListener.prototype.exitSetQuotedConfiguration = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#setConfiguration. +SqlBaseListener.prototype.enterSetConfiguration = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#setConfiguration. +SqlBaseListener.prototype.exitSetConfiguration = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#resetQuotedConfiguration. +SqlBaseListener.prototype.enterResetQuotedConfiguration = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#resetQuotedConfiguration. +SqlBaseListener.prototype.exitResetQuotedConfiguration = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#resetConfiguration. +SqlBaseListener.prototype.enterResetConfiguration = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#resetConfiguration. +SqlBaseListener.prototype.exitResetConfiguration = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#configKey. +SqlBaseListener.prototype.enterConfigKey = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#configKey. +SqlBaseListener.prototype.exitConfigKey = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#unsupportedHiveNativeCommands. +SqlBaseListener.prototype.enterUnsupportedHiveNativeCommands = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#unsupportedHiveNativeCommands. +SqlBaseListener.prototype.exitUnsupportedHiveNativeCommands = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#createTableHeader. +SqlBaseListener.prototype.enterCreateTableHeader = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#createTableHeader. +SqlBaseListener.prototype.exitCreateTableHeader = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#replaceTableHeader. +SqlBaseListener.prototype.enterReplaceTableHeader = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#replaceTableHeader. +SqlBaseListener.prototype.exitReplaceTableHeader = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#bucketSpec. +SqlBaseListener.prototype.enterBucketSpec = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#bucketSpec. +SqlBaseListener.prototype.exitBucketSpec = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#skewSpec. +SqlBaseListener.prototype.enterSkewSpec = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#skewSpec. +SqlBaseListener.prototype.exitSkewSpec = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#locationSpec. +SqlBaseListener.prototype.enterLocationSpec = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#locationSpec. +SqlBaseListener.prototype.exitLocationSpec = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#commentSpec. +SqlBaseListener.prototype.enterCommentSpec = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#commentSpec. +SqlBaseListener.prototype.exitCommentSpec = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#query. +SqlBaseListener.prototype.enterQuery = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#query. +SqlBaseListener.prototype.exitQuery = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#insertOverwriteTable. +SqlBaseListener.prototype.enterInsertOverwriteTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#insertOverwriteTable. +SqlBaseListener.prototype.exitInsertOverwriteTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#insertIntoTable. +SqlBaseListener.prototype.enterInsertIntoTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#insertIntoTable. +SqlBaseListener.prototype.exitInsertIntoTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#insertOverwriteHiveDir. +SqlBaseListener.prototype.enterInsertOverwriteHiveDir = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#insertOverwriteHiveDir. +SqlBaseListener.prototype.exitInsertOverwriteHiveDir = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#insertOverwriteDir. +SqlBaseListener.prototype.enterInsertOverwriteDir = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#insertOverwriteDir. +SqlBaseListener.prototype.exitInsertOverwriteDir = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#partitionSpecLocation. +SqlBaseListener.prototype.enterPartitionSpecLocation = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#partitionSpecLocation. +SqlBaseListener.prototype.exitPartitionSpecLocation = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#partitionSpec. +SqlBaseListener.prototype.enterPartitionSpec = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#partitionSpec. +SqlBaseListener.prototype.exitPartitionSpec = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#partitionVal. +SqlBaseListener.prototype.enterPartitionVal = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#partitionVal. +SqlBaseListener.prototype.exitPartitionVal = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#namespace. +SqlBaseListener.prototype.enterNamespace = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#namespace. +SqlBaseListener.prototype.exitNamespace = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#describeFuncName. +SqlBaseListener.prototype.enterDescribeFuncName = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#describeFuncName. +SqlBaseListener.prototype.exitDescribeFuncName = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#describeColName. +SqlBaseListener.prototype.enterDescribeColName = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#describeColName. +SqlBaseListener.prototype.exitDescribeColName = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#ctes. +SqlBaseListener.prototype.enterCtes = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#ctes. +SqlBaseListener.prototype.exitCtes = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#namedQuery. +SqlBaseListener.prototype.enterNamedQuery = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#namedQuery. +SqlBaseListener.prototype.exitNamedQuery = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#tableProvider. +SqlBaseListener.prototype.enterTableProvider = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#tableProvider. +SqlBaseListener.prototype.exitTableProvider = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#createTableClauses. +SqlBaseListener.prototype.enterCreateTableClauses = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#createTableClauses. +SqlBaseListener.prototype.exitCreateTableClauses = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#tablePropertyList. +SqlBaseListener.prototype.enterTablePropertyList = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#tablePropertyList. +SqlBaseListener.prototype.exitTablePropertyList = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#tableProperty. +SqlBaseListener.prototype.enterTableProperty = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#tableProperty. +SqlBaseListener.prototype.exitTableProperty = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#tablePropertyKey. +SqlBaseListener.prototype.enterTablePropertyKey = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#tablePropertyKey. +SqlBaseListener.prototype.exitTablePropertyKey = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#tablePropertyValue. +SqlBaseListener.prototype.enterTablePropertyValue = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#tablePropertyValue. +SqlBaseListener.prototype.exitTablePropertyValue = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#constantList. +SqlBaseListener.prototype.enterConstantList = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#constantList. +SqlBaseListener.prototype.exitConstantList = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#nestedConstantList. +SqlBaseListener.prototype.enterNestedConstantList = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#nestedConstantList. +SqlBaseListener.prototype.exitNestedConstantList = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#createFileFormat. +SqlBaseListener.prototype.enterCreateFileFormat = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#createFileFormat. +SqlBaseListener.prototype.exitCreateFileFormat = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#tableFileFormat. +SqlBaseListener.prototype.enterTableFileFormat = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#tableFileFormat. +SqlBaseListener.prototype.exitTableFileFormat = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#genericFileFormat. +SqlBaseListener.prototype.enterGenericFileFormat = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#genericFileFormat. +SqlBaseListener.prototype.exitGenericFileFormat = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#storageHandler. +SqlBaseListener.prototype.enterStorageHandler = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#storageHandler. +SqlBaseListener.prototype.exitStorageHandler = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#resource. +SqlBaseListener.prototype.enterResource = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#resource. +SqlBaseListener.prototype.exitResource = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#singleInsertQuery. +SqlBaseListener.prototype.enterSingleInsertQuery = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#singleInsertQuery. +SqlBaseListener.prototype.exitSingleInsertQuery = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#multiInsertQuery. +SqlBaseListener.prototype.enterMultiInsertQuery = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#multiInsertQuery. +SqlBaseListener.prototype.exitMultiInsertQuery = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#deleteFromTable. +SqlBaseListener.prototype.enterDeleteFromTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#deleteFromTable. +SqlBaseListener.prototype.exitDeleteFromTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#updateTable. +SqlBaseListener.prototype.enterUpdateTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#updateTable. +SqlBaseListener.prototype.exitUpdateTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#mergeIntoTable. +SqlBaseListener.prototype.enterMergeIntoTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#mergeIntoTable. +SqlBaseListener.prototype.exitMergeIntoTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#queryOrganization. +SqlBaseListener.prototype.enterQueryOrganization = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#queryOrganization. +SqlBaseListener.prototype.exitQueryOrganization = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#multiInsertQueryBody. +SqlBaseListener.prototype.enterMultiInsertQueryBody = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#multiInsertQueryBody. +SqlBaseListener.prototype.exitMultiInsertQueryBody = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#queryTermDefault. +SqlBaseListener.prototype.enterQueryTermDefault = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#queryTermDefault. +SqlBaseListener.prototype.exitQueryTermDefault = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#setOperation. +SqlBaseListener.prototype.enterSetOperation = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#setOperation. +SqlBaseListener.prototype.exitSetOperation = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#queryPrimaryDefault. +SqlBaseListener.prototype.enterQueryPrimaryDefault = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#queryPrimaryDefault. +SqlBaseListener.prototype.exitQueryPrimaryDefault = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#fromStmt. +SqlBaseListener.prototype.enterFromStmt = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#fromStmt. +SqlBaseListener.prototype.exitFromStmt = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#table. +SqlBaseListener.prototype.enterTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#table. +SqlBaseListener.prototype.exitTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#inlineTableDefault1. +SqlBaseListener.prototype.enterInlineTableDefault1 = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#inlineTableDefault1. +SqlBaseListener.prototype.exitInlineTableDefault1 = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#subquery. +SqlBaseListener.prototype.enterSubquery = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#subquery. +SqlBaseListener.prototype.exitSubquery = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#sortItem. +SqlBaseListener.prototype.enterSortItem = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#sortItem. +SqlBaseListener.prototype.exitSortItem = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#fromStatement. +SqlBaseListener.prototype.enterFromStatement = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#fromStatement. +SqlBaseListener.prototype.exitFromStatement = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#fromStatementBody. +SqlBaseListener.prototype.enterFromStatementBody = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#fromStatementBody. +SqlBaseListener.prototype.exitFromStatementBody = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#transformQuerySpecification. +SqlBaseListener.prototype.enterTransformQuerySpecification = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#transformQuerySpecification. +SqlBaseListener.prototype.exitTransformQuerySpecification = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#regularQuerySpecification. +SqlBaseListener.prototype.enterRegularQuerySpecification = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#regularQuerySpecification. +SqlBaseListener.prototype.exitRegularQuerySpecification = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#transformClause. +SqlBaseListener.prototype.enterTransformClause = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#transformClause. +SqlBaseListener.prototype.exitTransformClause = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#selectClause. +SqlBaseListener.prototype.enterSelectClause = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#selectClause. +SqlBaseListener.prototype.exitSelectClause = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#setClause. +SqlBaseListener.prototype.enterSetClause = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#setClause. +SqlBaseListener.prototype.exitSetClause = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#matchedClause. +SqlBaseListener.prototype.enterMatchedClause = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#matchedClause. +SqlBaseListener.prototype.exitMatchedClause = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#notMatchedClause. +SqlBaseListener.prototype.enterNotMatchedClause = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#notMatchedClause. +SqlBaseListener.prototype.exitNotMatchedClause = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#matchedAction. +SqlBaseListener.prototype.enterMatchedAction = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#matchedAction. +SqlBaseListener.prototype.exitMatchedAction = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#notMatchedAction. +SqlBaseListener.prototype.enterNotMatchedAction = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#notMatchedAction. +SqlBaseListener.prototype.exitNotMatchedAction = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#assignmentList. +SqlBaseListener.prototype.enterAssignmentList = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#assignmentList. +SqlBaseListener.prototype.exitAssignmentList = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#assignment. +SqlBaseListener.prototype.enterAssignment = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#assignment. +SqlBaseListener.prototype.exitAssignment = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#whereClause. +SqlBaseListener.prototype.enterWhereClause = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#whereClause. +SqlBaseListener.prototype.exitWhereClause = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#havingClause. +SqlBaseListener.prototype.enterHavingClause = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#havingClause. +SqlBaseListener.prototype.exitHavingClause = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#hint. +SqlBaseListener.prototype.enterHint = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#hint. +SqlBaseListener.prototype.exitHint = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#hintStatement. +SqlBaseListener.prototype.enterHintStatement = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#hintStatement. +SqlBaseListener.prototype.exitHintStatement = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#fromClause. +SqlBaseListener.prototype.enterFromClause = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#fromClause. +SqlBaseListener.prototype.exitFromClause = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#aggregationClause. +SqlBaseListener.prototype.enterAggregationClause = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#aggregationClause. +SqlBaseListener.prototype.exitAggregationClause = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#groupingSet. +SqlBaseListener.prototype.enterGroupingSet = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#groupingSet. +SqlBaseListener.prototype.exitGroupingSet = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#pivotClause. +SqlBaseListener.prototype.enterPivotClause = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#pivotClause. +SqlBaseListener.prototype.exitPivotClause = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#pivotColumn. +SqlBaseListener.prototype.enterPivotColumn = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#pivotColumn. +SqlBaseListener.prototype.exitPivotColumn = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#pivotValue. +SqlBaseListener.prototype.enterPivotValue = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#pivotValue. +SqlBaseListener.prototype.exitPivotValue = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#lateralView. +SqlBaseListener.prototype.enterLateralView = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#lateralView. +SqlBaseListener.prototype.exitLateralView = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#setQuantifier. +SqlBaseListener.prototype.enterSetQuantifier = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#setQuantifier. +SqlBaseListener.prototype.exitSetQuantifier = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#relation. +SqlBaseListener.prototype.enterRelation = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#relation. +SqlBaseListener.prototype.exitRelation = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#joinRelation. +SqlBaseListener.prototype.enterJoinRelation = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#joinRelation. +SqlBaseListener.prototype.exitJoinRelation = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#joinType. +SqlBaseListener.prototype.enterJoinType = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#joinType. +SqlBaseListener.prototype.exitJoinType = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#joinCriteria. +SqlBaseListener.prototype.enterJoinCriteria = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#joinCriteria. +SqlBaseListener.prototype.exitJoinCriteria = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#sample. +SqlBaseListener.prototype.enterSample = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#sample. +SqlBaseListener.prototype.exitSample = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#sampleByPercentile. +SqlBaseListener.prototype.enterSampleByPercentile = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#sampleByPercentile. +SqlBaseListener.prototype.exitSampleByPercentile = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#sampleByRows. +SqlBaseListener.prototype.enterSampleByRows = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#sampleByRows. +SqlBaseListener.prototype.exitSampleByRows = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#sampleByBucket. +SqlBaseListener.prototype.enterSampleByBucket = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#sampleByBucket. +SqlBaseListener.prototype.exitSampleByBucket = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#sampleByBytes. +SqlBaseListener.prototype.enterSampleByBytes = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#sampleByBytes. +SqlBaseListener.prototype.exitSampleByBytes = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#identifierList. +SqlBaseListener.prototype.enterIdentifierList = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#identifierList. +SqlBaseListener.prototype.exitIdentifierList = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#identifierSeq. +SqlBaseListener.prototype.enterIdentifierSeq = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#identifierSeq. +SqlBaseListener.prototype.exitIdentifierSeq = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#orderedIdentifierList. +SqlBaseListener.prototype.enterOrderedIdentifierList = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#orderedIdentifierList. +SqlBaseListener.prototype.exitOrderedIdentifierList = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#orderedIdentifier. +SqlBaseListener.prototype.enterOrderedIdentifier = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#orderedIdentifier. +SqlBaseListener.prototype.exitOrderedIdentifier = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#identifierCommentList. +SqlBaseListener.prototype.enterIdentifierCommentList = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#identifierCommentList. +SqlBaseListener.prototype.exitIdentifierCommentList = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#identifierComment. +SqlBaseListener.prototype.enterIdentifierComment = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#identifierComment. +SqlBaseListener.prototype.exitIdentifierComment = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#tableName. +SqlBaseListener.prototype.enterTableName = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#tableName. +SqlBaseListener.prototype.exitTableName = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#aliasedQuery. +SqlBaseListener.prototype.enterAliasedQuery = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#aliasedQuery. +SqlBaseListener.prototype.exitAliasedQuery = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#aliasedRelation. +SqlBaseListener.prototype.enterAliasedRelation = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#aliasedRelation. +SqlBaseListener.prototype.exitAliasedRelation = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#inlineTableDefault2. +SqlBaseListener.prototype.enterInlineTableDefault2 = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#inlineTableDefault2. +SqlBaseListener.prototype.exitInlineTableDefault2 = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#tableValuedFunction. +SqlBaseListener.prototype.enterTableValuedFunction = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#tableValuedFunction. +SqlBaseListener.prototype.exitTableValuedFunction = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#inlineTable. +SqlBaseListener.prototype.enterInlineTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#inlineTable. +SqlBaseListener.prototype.exitInlineTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#functionTable. +SqlBaseListener.prototype.enterFunctionTable = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#functionTable. +SqlBaseListener.prototype.exitFunctionTable = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#tableAlias. +SqlBaseListener.prototype.enterTableAlias = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#tableAlias. +SqlBaseListener.prototype.exitTableAlias = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#rowFormatSerde. +SqlBaseListener.prototype.enterRowFormatSerde = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#rowFormatSerde. +SqlBaseListener.prototype.exitRowFormatSerde = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#rowFormatDelimited. +SqlBaseListener.prototype.enterRowFormatDelimited = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#rowFormatDelimited. +SqlBaseListener.prototype.exitRowFormatDelimited = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#multipartIdentifierList. +SqlBaseListener.prototype.enterMultipartIdentifierList = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#multipartIdentifierList. +SqlBaseListener.prototype.exitMultipartIdentifierList = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#multipartIdentifier. +SqlBaseListener.prototype.enterMultipartIdentifier = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#multipartIdentifier. +SqlBaseListener.prototype.exitMultipartIdentifier = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#tableIdentifier. +SqlBaseListener.prototype.enterTableIdentifier = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#tableIdentifier. +SqlBaseListener.prototype.exitTableIdentifier = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#namedExpression. +SqlBaseListener.prototype.enterNamedExpression = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#namedExpression. +SqlBaseListener.prototype.exitNamedExpression = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#namedExpressionSeq. +SqlBaseListener.prototype.enterNamedExpressionSeq = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#namedExpressionSeq. +SqlBaseListener.prototype.exitNamedExpressionSeq = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#transformList. +SqlBaseListener.prototype.enterTransformList = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#transformList. +SqlBaseListener.prototype.exitTransformList = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#identityTransform. +SqlBaseListener.prototype.enterIdentityTransform = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#identityTransform. +SqlBaseListener.prototype.exitIdentityTransform = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#applyTransform. +SqlBaseListener.prototype.enterApplyTransform = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#applyTransform. +SqlBaseListener.prototype.exitApplyTransform = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#transformArgument. +SqlBaseListener.prototype.enterTransformArgument = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#transformArgument. +SqlBaseListener.prototype.exitTransformArgument = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#expression. +SqlBaseListener.prototype.enterExpression = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#expression. +SqlBaseListener.prototype.exitExpression = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#logicalNot. +SqlBaseListener.prototype.enterLogicalNot = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#logicalNot. +SqlBaseListener.prototype.exitLogicalNot = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#predicated. +SqlBaseListener.prototype.enterPredicated = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#predicated. +SqlBaseListener.prototype.exitPredicated = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#exists. +SqlBaseListener.prototype.enterExists = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#exists. +SqlBaseListener.prototype.exitExists = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#logicalBinary. +SqlBaseListener.prototype.enterLogicalBinary = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#logicalBinary. +SqlBaseListener.prototype.exitLogicalBinary = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#predicate. +SqlBaseListener.prototype.enterPredicate = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#predicate. +SqlBaseListener.prototype.exitPredicate = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#valueExpressionDefault. +SqlBaseListener.prototype.enterValueExpressionDefault = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#valueExpressionDefault. +SqlBaseListener.prototype.exitValueExpressionDefault = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#comparison. +SqlBaseListener.prototype.enterComparison = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#comparison. +SqlBaseListener.prototype.exitComparison = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#arithmeticBinary. +SqlBaseListener.prototype.enterArithmeticBinary = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#arithmeticBinary. +SqlBaseListener.prototype.exitArithmeticBinary = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#arithmeticUnary. +SqlBaseListener.prototype.enterArithmeticUnary = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#arithmeticUnary. +SqlBaseListener.prototype.exitArithmeticUnary = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#struct. +SqlBaseListener.prototype.enterStruct = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#struct. +SqlBaseListener.prototype.exitStruct = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#dereference. +SqlBaseListener.prototype.enterDereference = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#dereference. +SqlBaseListener.prototype.exitDereference = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#simpleCase. +SqlBaseListener.prototype.enterSimpleCase = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#simpleCase. +SqlBaseListener.prototype.exitSimpleCase = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#columnReference. +SqlBaseListener.prototype.enterColumnReference = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#columnReference. +SqlBaseListener.prototype.exitColumnReference = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#rowConstructor. +SqlBaseListener.prototype.enterRowConstructor = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#rowConstructor. +SqlBaseListener.prototype.exitRowConstructor = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#last. +SqlBaseListener.prototype.enterLast = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#last. +SqlBaseListener.prototype.exitLast = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#star. +SqlBaseListener.prototype.enterStar = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#star. +SqlBaseListener.prototype.exitStar = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#overlay. +SqlBaseListener.prototype.enterOverlay = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#overlay. +SqlBaseListener.prototype.exitOverlay = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#subscript. +SqlBaseListener.prototype.enterSubscript = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#subscript. +SqlBaseListener.prototype.exitSubscript = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#subqueryExpression. +SqlBaseListener.prototype.enterSubqueryExpression = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#subqueryExpression. +SqlBaseListener.prototype.exitSubqueryExpression = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#substring. +SqlBaseListener.prototype.enterSubstring = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#substring. +SqlBaseListener.prototype.exitSubstring = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#currentDatetime. +SqlBaseListener.prototype.enterCurrentDatetime = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#currentDatetime. +SqlBaseListener.prototype.exitCurrentDatetime = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#cast. +SqlBaseListener.prototype.enterCast = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#cast. +SqlBaseListener.prototype.exitCast = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#constantDefault. +SqlBaseListener.prototype.enterConstantDefault = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#constantDefault. +SqlBaseListener.prototype.exitConstantDefault = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#lambda. +SqlBaseListener.prototype.enterLambda = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#lambda. +SqlBaseListener.prototype.exitLambda = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#parenthesizedExpression. +SqlBaseListener.prototype.enterParenthesizedExpression = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#parenthesizedExpression. +SqlBaseListener.prototype.exitParenthesizedExpression = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#extract. +SqlBaseListener.prototype.enterExtract = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#extract. +SqlBaseListener.prototype.exitExtract = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#trim. +SqlBaseListener.prototype.enterTrim = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#trim. +SqlBaseListener.prototype.exitTrim = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#functionCall. +SqlBaseListener.prototype.enterFunctionCall = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#functionCall. +SqlBaseListener.prototype.exitFunctionCall = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#searchedCase. +SqlBaseListener.prototype.enterSearchedCase = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#searchedCase. +SqlBaseListener.prototype.exitSearchedCase = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#position. +SqlBaseListener.prototype.enterPosition = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#position. +SqlBaseListener.prototype.exitPosition = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#first. +SqlBaseListener.prototype.enterFirst = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#first. +SqlBaseListener.prototype.exitFirst = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#nullLiteral. +SqlBaseListener.prototype.enterNullLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#nullLiteral. +SqlBaseListener.prototype.exitNullLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#intervalLiteral. +SqlBaseListener.prototype.enterIntervalLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#intervalLiteral. +SqlBaseListener.prototype.exitIntervalLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#typeConstructor. +SqlBaseListener.prototype.enterTypeConstructor = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#typeConstructor. +SqlBaseListener.prototype.exitTypeConstructor = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#numericLiteral. +SqlBaseListener.prototype.enterNumericLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#numericLiteral. +SqlBaseListener.prototype.exitNumericLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#booleanLiteral. +SqlBaseListener.prototype.enterBooleanLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#booleanLiteral. +SqlBaseListener.prototype.exitBooleanLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#stringLiteral. +SqlBaseListener.prototype.enterStringLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#stringLiteral. +SqlBaseListener.prototype.exitStringLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#comparisonOperator. +SqlBaseListener.prototype.enterComparisonOperator = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#comparisonOperator. +SqlBaseListener.prototype.exitComparisonOperator = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#arithmeticOperator. +SqlBaseListener.prototype.enterArithmeticOperator = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#arithmeticOperator. +SqlBaseListener.prototype.exitArithmeticOperator = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#predicateOperator. +SqlBaseListener.prototype.enterPredicateOperator = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#predicateOperator. +SqlBaseListener.prototype.exitPredicateOperator = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#booleanValue. +SqlBaseListener.prototype.enterBooleanValue = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#booleanValue. +SqlBaseListener.prototype.exitBooleanValue = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#interval. +SqlBaseListener.prototype.enterInterval = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#interval. +SqlBaseListener.prototype.exitInterval = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#errorCapturingMultiUnitsInterval. +SqlBaseListener.prototype.enterErrorCapturingMultiUnitsInterval = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#errorCapturingMultiUnitsInterval. +SqlBaseListener.prototype.exitErrorCapturingMultiUnitsInterval = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#multiUnitsInterval. +SqlBaseListener.prototype.enterMultiUnitsInterval = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#multiUnitsInterval. +SqlBaseListener.prototype.exitMultiUnitsInterval = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#errorCapturingUnitToUnitInterval. +SqlBaseListener.prototype.enterErrorCapturingUnitToUnitInterval = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#errorCapturingUnitToUnitInterval. +SqlBaseListener.prototype.exitErrorCapturingUnitToUnitInterval = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#unitToUnitInterval. +SqlBaseListener.prototype.enterUnitToUnitInterval = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#unitToUnitInterval. +SqlBaseListener.prototype.exitUnitToUnitInterval = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#intervalValue. +SqlBaseListener.prototype.enterIntervalValue = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#intervalValue. +SqlBaseListener.prototype.exitIntervalValue = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#colPosition. +SqlBaseListener.prototype.enterColPosition = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#colPosition. +SqlBaseListener.prototype.exitColPosition = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#complexDataType. +SqlBaseListener.prototype.enterComplexDataType = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#complexDataType. +SqlBaseListener.prototype.exitComplexDataType = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#primitiveDataType. +SqlBaseListener.prototype.enterPrimitiveDataType = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#primitiveDataType. +SqlBaseListener.prototype.exitPrimitiveDataType = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#qualifiedColTypeWithPositionList. +SqlBaseListener.prototype.enterQualifiedColTypeWithPositionList = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#qualifiedColTypeWithPositionList. +SqlBaseListener.prototype.exitQualifiedColTypeWithPositionList = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#qualifiedColTypeWithPosition. +SqlBaseListener.prototype.enterQualifiedColTypeWithPosition = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#qualifiedColTypeWithPosition. +SqlBaseListener.prototype.exitQualifiedColTypeWithPosition = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#colTypeList. +SqlBaseListener.prototype.enterColTypeList = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#colTypeList. +SqlBaseListener.prototype.exitColTypeList = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#colType. +SqlBaseListener.prototype.enterColType = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#colType. +SqlBaseListener.prototype.exitColType = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#complexColTypeList. +SqlBaseListener.prototype.enterComplexColTypeList = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#complexColTypeList. +SqlBaseListener.prototype.exitComplexColTypeList = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#complexColType. +SqlBaseListener.prototype.enterComplexColType = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#complexColType. +SqlBaseListener.prototype.exitComplexColType = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#whenClause. +SqlBaseListener.prototype.enterWhenClause = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#whenClause. +SqlBaseListener.prototype.exitWhenClause = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#windowClause. +SqlBaseListener.prototype.enterWindowClause = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#windowClause. +SqlBaseListener.prototype.exitWindowClause = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#namedWindow. +SqlBaseListener.prototype.enterNamedWindow = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#namedWindow. +SqlBaseListener.prototype.exitNamedWindow = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#windowRef. +SqlBaseListener.prototype.enterWindowRef = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#windowRef. +SqlBaseListener.prototype.exitWindowRef = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#windowDef. +SqlBaseListener.prototype.enterWindowDef = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#windowDef. +SqlBaseListener.prototype.exitWindowDef = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#windowFrame. +SqlBaseListener.prototype.enterWindowFrame = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#windowFrame. +SqlBaseListener.prototype.exitWindowFrame = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#frameBound. +SqlBaseListener.prototype.enterFrameBound = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#frameBound. +SqlBaseListener.prototype.exitFrameBound = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#qualifiedNameList. +SqlBaseListener.prototype.enterQualifiedNameList = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#qualifiedNameList. +SqlBaseListener.prototype.exitQualifiedNameList = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#functionName. +SqlBaseListener.prototype.enterFunctionName = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#functionName. +SqlBaseListener.prototype.exitFunctionName = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#qualifiedName. +SqlBaseListener.prototype.enterQualifiedName = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#qualifiedName. +SqlBaseListener.prototype.exitQualifiedName = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#errorCapturingIdentifier. +SqlBaseListener.prototype.enterErrorCapturingIdentifier = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#errorCapturingIdentifier. +SqlBaseListener.prototype.exitErrorCapturingIdentifier = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#errorIdent. +SqlBaseListener.prototype.enterErrorIdent = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#errorIdent. +SqlBaseListener.prototype.exitErrorIdent = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#realIdent. +SqlBaseListener.prototype.enterRealIdent = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#realIdent. +SqlBaseListener.prototype.exitRealIdent = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#identifier. +SqlBaseListener.prototype.enterIdentifier = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#identifier. +SqlBaseListener.prototype.exitIdentifier = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#unquotedIdentifier. +SqlBaseListener.prototype.enterUnquotedIdentifier = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#unquotedIdentifier. +SqlBaseListener.prototype.exitUnquotedIdentifier = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#quotedIdentifierAlternative. +SqlBaseListener.prototype.enterQuotedIdentifierAlternative = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#quotedIdentifierAlternative. +SqlBaseListener.prototype.exitQuotedIdentifierAlternative = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#quotedIdentifier. +SqlBaseListener.prototype.enterQuotedIdentifier = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#quotedIdentifier. +SqlBaseListener.prototype.exitQuotedIdentifier = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#exponentLiteral. +SqlBaseListener.prototype.enterExponentLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#exponentLiteral. +SqlBaseListener.prototype.exitExponentLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#decimalLiteral. +SqlBaseListener.prototype.enterDecimalLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#decimalLiteral. +SqlBaseListener.prototype.exitDecimalLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#legacyDecimalLiteral. +SqlBaseListener.prototype.enterLegacyDecimalLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#legacyDecimalLiteral. +SqlBaseListener.prototype.exitLegacyDecimalLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#integerLiteral. +SqlBaseListener.prototype.enterIntegerLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#integerLiteral. +SqlBaseListener.prototype.exitIntegerLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#bigIntLiteral. +SqlBaseListener.prototype.enterBigIntLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#bigIntLiteral. +SqlBaseListener.prototype.exitBigIntLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#smallIntLiteral. +SqlBaseListener.prototype.enterSmallIntLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#smallIntLiteral. +SqlBaseListener.prototype.exitSmallIntLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#tinyIntLiteral. +SqlBaseListener.prototype.enterTinyIntLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#tinyIntLiteral. +SqlBaseListener.prototype.exitTinyIntLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#doubleLiteral. +SqlBaseListener.prototype.enterDoubleLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#doubleLiteral. +SqlBaseListener.prototype.exitDoubleLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#floatLiteral. +SqlBaseListener.prototype.enterFloatLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#floatLiteral. +SqlBaseListener.prototype.exitFloatLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#bigDecimalLiteral. +SqlBaseListener.prototype.enterBigDecimalLiteral = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#bigDecimalLiteral. +SqlBaseListener.prototype.exitBigDecimalLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#alterColumnAction. +SqlBaseListener.prototype.enterAlterColumnAction = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#alterColumnAction. +SqlBaseListener.prototype.exitAlterColumnAction = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#ansiNonReserved. +SqlBaseListener.prototype.enterAnsiNonReserved = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#ansiNonReserved. +SqlBaseListener.prototype.exitAnsiNonReserved = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#strictNonReserved. +SqlBaseListener.prototype.enterStrictNonReserved = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#strictNonReserved. +SqlBaseListener.prototype.exitStrictNonReserved = function(ctx) { +}; + + +// Enter a parse tree produced by SqlBaseParser#nonReserved. +SqlBaseListener.prototype.enterNonReserved = function(ctx) { +}; + +// Exit a parse tree produced by SqlBaseParser#nonReserved. +SqlBaseListener.prototype.exitNonReserved = function(ctx) { +}; + + + +exports.SqlBaseListener = SqlBaseListener; \ No newline at end of file diff --git a/src/lib/spark/SqlBaseParser.js b/src/lib/spark/SqlBaseParser.js new file mode 100644 index 0000000..7830678 --- /dev/null +++ b/src/lib/spark/SqlBaseParser.js @@ -0,0 +1,31285 @@ +// Generated from /Users/jinjiongxi/workspace/dt-sql-parser/src/grammar/spark/SqlBase.g4 by ANTLR 4.8 +// jshint ignore: start +var antlr4 = require('antlr4/index'); +var SqlBaseListener = require('./SqlBaseListener').SqlBaseListener; +var SqlBaseVisitor = require('./SqlBaseVisitor').SqlBaseVisitor; + +var grammarFileName = "SqlBase.g4"; + + +var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", + "\u0003\u0128\u0bd4\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004\u0004", + "\t\u0004\u0004\u0005\t\u0005\u0004\u0006\t\u0006\u0004\u0007\t\u0007", + "\u0004\b\t\b\u0004\t\t\t\u0004\n\t\n\u0004\u000b\t\u000b\u0004\f\t\f", + "\u0004\r\t\r\u0004\u000e\t\u000e\u0004\u000f\t\u000f\u0004\u0010\t\u0010", + "\u0004\u0011\t\u0011\u0004\u0012\t\u0012\u0004\u0013\t\u0013\u0004\u0014", + "\t\u0014\u0004\u0015\t\u0015\u0004\u0016\t\u0016\u0004\u0017\t\u0017", + "\u0004\u0018\t\u0018\u0004\u0019\t\u0019\u0004\u001a\t\u001a\u0004\u001b", + "\t\u001b\u0004\u001c\t\u001c\u0004\u001d\t\u001d\u0004\u001e\t\u001e", + "\u0004\u001f\t\u001f\u0004 \t \u0004!\t!\u0004\"\t\"\u0004#\t#\u0004", + "$\t$\u0004%\t%\u0004&\t&\u0004\'\t\'\u0004(\t(\u0004)\t)\u0004*\t*\u0004", + "+\t+\u0004,\t,\u0004-\t-\u0004.\t.\u0004/\t/\u00040\t0\u00041\t1\u0004", + "2\t2\u00043\t3\u00044\t4\u00045\t5\u00046\t6\u00047\t7\u00048\t8\u0004", + "9\t9\u0004:\t:\u0004;\t;\u0004<\t<\u0004=\t=\u0004>\t>\u0004?\t?\u0004", + "@\t@\u0004A\tA\u0004B\tB\u0004C\tC\u0004D\tD\u0004E\tE\u0004F\tF\u0004", + "G\tG\u0004H\tH\u0004I\tI\u0004J\tJ\u0004K\tK\u0004L\tL\u0004M\tM\u0004", + "N\tN\u0004O\tO\u0004P\tP\u0004Q\tQ\u0004R\tR\u0004S\tS\u0004T\tT\u0004", + "U\tU\u0004V\tV\u0004W\tW\u0004X\tX\u0004Y\tY\u0004Z\tZ\u0004[\t[\u0004", + "\\\t\\\u0004]\t]\u0004^\t^\u0004_\t_\u0004`\t`\u0004a\ta\u0004b\tb\u0004", + "c\tc\u0004d\td\u0004e\te\u0004f\tf\u0004g\tg\u0004h\th\u0004i\ti\u0004", + "j\tj\u0004k\tk\u0004l\tl\u0004m\tm\u0004n\tn\u0004o\to\u0004p\tp\u0004", + "q\tq\u0004r\tr\u0004s\ts\u0004t\tt\u0004u\tu\u0004v\tv\u0004w\tw\u0004", + "x\tx\u0004y\ty\u0004z\tz\u0004{\t{\u0004|\t|\u0004}\t}\u0004~\t~\u0004", + "\u007f\t\u007f\u0004\u0080\t\u0080\u0004\u0081\t\u0081\u0004\u0082\t", + "\u0082\u0004\u0083\t\u0083\u0004\u0084\t\u0084\u0004\u0085\t\u0085\u0004", + "\u0086\t\u0086\u0004\u0087\t\u0087\u0004\u0088\t\u0088\u0004\u0089\t", + "\u0089\u0003\u0002\u0003\u0002\u0003\u0002\u0003\u0003\u0003\u0003\u0007", + "\u0003\u0118\n\u0003\f\u0003\u000e\u0003\u011b\u000b\u0003\u0003\u0003", + "\u0003\u0003\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0005\u0003\u0005", + "\u0003\u0005\u0003\u0006\u0003\u0006\u0003\u0006\u0003\u0007\u0003\u0007", + "\u0003\u0007\u0003\b\u0003\b\u0003\b\u0003\t\u0003\t\u0005\t\u0130\n", + "\t\u0003\t\u0003\t\u0003\t\u0005\t\u0135\n\t\u0003\t\u0003\t\u0003\t", + "\u0003\t\u0003\t\u0003\t\u0005\t\u013d\n\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0007\t\u0145\n\t\f\t\u000e\t\u0148\u000b\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u015b", + "\n\t\u0003\t\u0003\t\u0005\t\u015f\n\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0005\t\u0165\n\t\u0003\t\u0005\t\u0168\n\t\u0003\t\u0005\t\u016b", + "\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u0172\n\t\u0003", + "\t\u0003\t\u0003\t\u0005\t\u0177\n\t\u0003\t\u0005\t\u017a\n\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u0181\n\t\u0003\t\u0003\t", + "\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005", + "\t\u018d\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t", + "\u0007\t\u0196\n\t\f\t\u000e\t\u0199\u000b\t\u0003\t\u0005\t\u019c\n", + "\t\u0003\t\u0005\t\u019f\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t", + "\u0005\t\u01a6\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0007\t\u01b1\n\t\f\t\u000e\t\u01b4\u000b\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u01bb\n\t\u0003\t\u0003\t", + "\u0003\t\u0005\t\u01c0\n\t\u0003\t\u0005\t\u01c3\n\t\u0003\t\u0003\t", + "\u0003\t\u0003\t\u0005\t\u01c9\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u01d4\n\t\u0003\t\u0003\t", + "\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u0214\n\t", + "\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u021d", + "\n\t\u0003\t\u0003\t\u0005\t\u0221\n\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0005\t\u0227\n\t\u0003\t\u0003\t\u0005\t\u022b\n\t\u0003\t\u0003", + "\t\u0003\t\u0005\t\u0230\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t", + "\u0236\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0005\t\u0242\n\t\u0003\t\u0003\t\u0003\t\u0003\t", + "\u0003\t\u0003\t\u0005\t\u024a\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005", + "\t\u0250\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t", + "\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u025d\n\t\u0003\t\u0006\t\u0260", + "\n\t\r\t\u000e\t\u0261\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005", + "\t\u0272\n\t\u0003\t\u0003\t\u0003\t\u0007\t\u0277\n\t\f\t\u000e\t\u027a", + "\u000b\t\u0003\t\u0005\t\u027d\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005", + "\t\u0283\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t", + "\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u0292\n\t\u0003", + "\t\u0003\t\u0005\t\u0296\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t", + "\u029c\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u02a2\n\t\u0003\t", + "\u0005\t\u02a5\n\t\u0003\t\u0005\t\u02a8\n\t\u0003\t\u0003\t\u0003\t", + "\u0003\t\u0005\t\u02ae\n\t\u0003\t\u0003\t\u0005\t\u02b2\n\t\u0003\t", + "\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0007\t\u02ba\n\t\f\t\u000e", + "\t\u02bd\u000b\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005", + "\t\u02c5\n\t\u0003\t\u0005\t\u02c8\n\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0005\t\u02d1\n\t\u0003\t\u0003\t\u0003\t", + "\u0005\t\u02d6\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u02dc\n\t", + "\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u02e3\n\t\u0003\t\u0005", + "\t\u02e6\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u02ec\n\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0007\t\u02f5\n\t", + "\f\t\u000e\t\u02f8\u000b\t\u0005\t\u02fa\n\t\u0003\t\u0003\t\u0005\t", + "\u02fe\n\t\u0003\t\u0003\t\u0003\t\u0005\t\u0303\n\t\u0003\t\u0003\t", + "\u0003\t\u0005\t\u0308\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005", + "\t\u030f\n\t\u0003\t\u0005\t\u0312\n\t\u0003\t\u0005\t\u0315\n\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u031c\n\t\u0003\t\u0003\t", + "\u0003\t\u0005\t\u0321\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0005\t\u032a\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t", + "\u0003\t\u0005\t\u0332\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u0338", + "\n\t\u0003\t\u0005\t\u033b\n\t\u0003\t\u0005\t\u033e\n\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0005\t\u0344\n\t\u0003\t\u0003\t\u0005\t\u0348\n", + "\t\u0003\t\u0003\t\u0005\t\u034c\n\t\u0003\t\u0003\t\u0005\t\u0350\n", + "\t\u0005\t\u0352\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t", + "\u0005\t\u035a\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005", + "\t\u0362\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u0368\n\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0005\t\u036e\n\t\u0003\t\u0005\t\u0371\n", + "\t\u0003\t\u0003\t\u0005\t\u0375\n\t\u0003\t\u0005\t\u0378\n\t\u0003", + "\t\u0003\t\u0005\t\u037c\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t", + "\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0007\t\u0396\n\t\f\t\u000e\t\u0399\u000b\t\u0005\t\u039b", + "\n\t\u0003\t\u0003\t\u0005\t\u039f\n\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0005\t\u03a5\n\t\u0003\t\u0005\t\u03a8\n\t\u0003\t\u0005\t\u03ab", + "\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u03b1\n\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u03b9\n\t\u0003\t\u0003\t", + "\u0003\t\u0005\t\u03be\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u03c4", + "\n\t\u0003\t\u0003\t\u0003\t\u0003\t\u0005\t\u03ca\n\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0007\t\u03d4\n\t", + "\f\t\u000e\t\u03d7\u000b\t\u0005\t\u03d9\n\t\u0003\t\u0003\t\u0003\t", + "\u0007\t\u03de\n\t\f\t\u000e\t\u03e1\u000b\t\u0003\t\u0003\t\u0003\t", + "\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0007\t\u03ef\n\t\f\t\u000e\t\u03f2\u000b\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0007\t\u03f8\n\t\f\t\u000e\t\u03fb\u000b\t\u0005\t\u03fd", + "\n\t\u0003\t\u0003\t\u0007\t\u0401\n\t\f\t\u000e\t\u0404\u000b\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0007\t\u040a\n\t\f\t\u000e\t\u040d\u000b", + "\t\u0003\t\u0003\t\u0007\t\u0411\n\t\f\t\u000e\t\u0414\u000b\t\u0005", + "\t\u0416\n\t\u0003\n\u0003\n\u0003\u000b\u0003\u000b\u0003\u000b\u0003", + "\u000b\u0003\u000b\u0003\u000b\u0005\u000b\u0420\n\u000b\u0003\u000b", + "\u0003\u000b\u0005\u000b\u0424\n\u000b\u0003\u000b\u0003\u000b\u0003", + "\u000b\u0003\u000b\u0003\u000b\u0005\u000b\u042b\n\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0005\u000b", + "\u049f\n\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003", + "\u000b\u0003\u000b\u0005\u000b\u04a7\n\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0005\u000b\u04af\n", + "\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003", + "\u000b\u0003\u000b\u0005\u000b\u04b8\n\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0005\u000b\u04c2\n\u000b\u0003\f\u0003\f\u0005\f\u04c6\n\f\u0003\f", + "\u0005\f\u04c9\n\f\u0003\f\u0003\f\u0003\f\u0003\f\u0005\f\u04cf\n\f", + "\u0003\f\u0003\f\u0003\r\u0003\r\u0005\r\u04d5\n\r\u0003\r\u0003\r\u0003", + "\r\u0003\r\u0003\u000e\u0003\u000e\u0003\u000e\u0003\u000e\u0003\u000e", + "\u0003\u000e\u0005\u000e\u04e1\n\u000e\u0003\u000e\u0003\u000e\u0003", + "\u000e\u0003\u000e\u0003\u000f\u0003\u000f\u0003\u000f\u0003\u000f\u0003", + "\u000f\u0003\u000f\u0005\u000f\u04ed\n\u000f\u0003\u000f\u0003\u000f", + "\u0003\u000f\u0005\u000f\u04f2\n\u000f\u0003\u0010\u0003\u0010\u0003", + "\u0010\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0012\u0005\u0012\u04fb", + "\n\u0012\u0003\u0012\u0003\u0012\u0003\u0012\u0003\u0013\u0003\u0013", + "\u0003\u0013\u0005\u0013\u0503\n\u0013\u0003\u0013\u0003\u0013\u0003", + "\u0013\u0003\u0013\u0003\u0013\u0005\u0013\u050a\n\u0013\u0005\u0013", + "\u050c\n\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0005\u0013\u0511", + "\n\u0013\u0003\u0013\u0003\u0013\u0005\u0013\u0515\n\u0013\u0003\u0013", + "\u0003\u0013\u0003\u0013\u0005\u0013\u051a\n\u0013\u0003\u0013\u0003", + "\u0013\u0003\u0013\u0005\u0013\u051f\n\u0013\u0003\u0013\u0003\u0013", + "\u0003\u0013\u0005\u0013\u0524\n\u0013\u0003\u0013\u0005\u0013\u0527", + "\n\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0005\u0013\u052c\n\u0013", + "\u0003\u0013\u0003\u0013\u0005\u0013\u0530\n\u0013\u0003\u0013\u0003", + "\u0013\u0003\u0013\u0005\u0013\u0535\n\u0013\u0005\u0013\u0537\n\u0013", + "\u0003\u0014\u0003\u0014\u0005\u0014\u053b\n\u0014\u0003\u0015\u0003", + "\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0007\u0015\u0542\n\u0015", + "\f\u0015\u000e\u0015\u0545\u000b\u0015\u0003\u0015\u0003\u0015\u0003", + "\u0016\u0003\u0016\u0003\u0016\u0005\u0016\u054c\n\u0016\u0003\u0017", + "\u0003\u0017\u0003\u0018\u0003\u0018\u0003\u0018\u0003\u0018\u0003\u0018", + "\u0005\u0018\u0555\n\u0018\u0003\u0019\u0003\u0019\u0003\u0019\u0007", + "\u0019\u055a\n\u0019\f\u0019\u000e\u0019\u055d\u000b\u0019\u0003\u001a", + "\u0003\u001a\u0003\u001a\u0003\u001a\u0007\u001a\u0563\n\u001a\f\u001a", + "\u000e\u001a\u0566\u000b\u001a\u0003\u001b\u0003\u001b\u0005\u001b\u056a", + "\n\u001b\u0003\u001b\u0005\u001b\u056d\n\u001b\u0003\u001b\u0003\u001b", + "\u0003\u001b\u0003\u001b\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001d", + "\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d", + "\u0003\u001d\u0003\u001d\u0003\u001d\u0007\u001d\u0580\n\u001d\f\u001d", + "\u000e\u001d\u0583\u000b\u001d\u0003\u001e\u0003\u001e\u0003\u001e\u0003", + "\u001e\u0007\u001e\u0589\n\u001e\f\u001e\u000e\u001e\u058c\u000b\u001e", + "\u0003\u001e\u0003\u001e\u0003\u001f\u0003\u001f\u0005\u001f\u0592\n", + "\u001f\u0003\u001f\u0005\u001f\u0595\n\u001f\u0003 \u0003 \u0003 \u0007", + " \u059a\n \f \u000e \u059d\u000b \u0003 \u0005 \u05a0\n \u0003!\u0003", + "!\u0003!\u0003!\u0005!\u05a6\n!\u0003\"\u0003\"\u0003\"\u0003\"\u0007", + "\"\u05ac\n\"\f\"\u000e\"\u05af\u000b\"\u0003\"\u0003\"\u0003#\u0003", + "#\u0003#\u0003#\u0007#\u05b7\n#\f#\u000e#\u05ba\u000b#\u0003#\u0003", + "#\u0003$\u0003$\u0003$\u0003$\u0003$\u0003$\u0005$\u05c4\n$\u0003%\u0003", + "%\u0003%\u0003%\u0003%\u0005%\u05cb\n%\u0003&\u0003&\u0003&\u0003&\u0005", + "&\u05d1\n&\u0003\'\u0003\'\u0003\'\u0003(\u0003(\u0003(\u0003(\u0003", + "(\u0003(\u0006(\u05dc\n(\r(\u000e(\u05dd\u0003(\u0003(\u0003(\u0003", + "(\u0003(\u0005(\u05e5\n(\u0003(\u0003(\u0003(\u0003(\u0003(\u0005(\u05ec", + "\n(\u0003(\u0003(\u0003(\u0003(\u0003(\u0003(\u0003(\u0003(\u0003(\u0003", + "(\u0005(\u05f8\n(\u0003(\u0003(\u0003(\u0003(\u0007(\u05fe\n(\f(\u000e", + "(\u0601\u000b(\u0003(\u0007(\u0604\n(\f(\u000e(\u0607\u000b(\u0005(", + "\u0609\n(\u0003)\u0003)\u0003)\u0003)\u0003)\u0007)\u0610\n)\f)\u000e", + ")\u0613\u000b)\u0005)\u0615\n)\u0003)\u0003)\u0003)\u0003)\u0003)\u0007", + ")\u061c\n)\f)\u000e)\u061f\u000b)\u0005)\u0621\n)\u0003)\u0003)\u0003", + ")\u0003)\u0003)\u0007)\u0628\n)\f)\u000e)\u062b\u000b)\u0005)\u062d", + "\n)\u0003)\u0003)\u0003)\u0003)\u0003)\u0007)\u0634\n)\f)\u000e)\u0637", + "\u000b)\u0005)\u0639\n)\u0003)\u0005)\u063c\n)\u0003)\u0003)\u0003)", + "\u0005)\u0641\n)\u0005)\u0643\n)\u0003*\u0003*\u0003*\u0003+\u0003+", + "\u0003+\u0003+\u0003+\u0003+\u0003+\u0005+\u064f\n+\u0003+\u0003+\u0003", + "+\u0003+\u0003+\u0005+\u0656\n+\u0003+\u0003+\u0003+\u0003+\u0003+\u0005", + "+\u065d\n+\u0003+\u0007+\u0660\n+\f+\u000e+\u0663\u000b+\u0003,\u0003", + ",\u0003,\u0003,\u0003,\u0003,\u0003,\u0003,\u0003,\u0005,\u066e\n,\u0003", + "-\u0003-\u0005-\u0672\n-\u0003-\u0003-\u0005-\u0676\n-\u0003.\u0003", + ".\u0006.\u067a\n.\r.\u000e.\u067b\u0003/\u0003/\u0005/\u0680\n/\u0003", + "/\u0003/\u0003/\u0003/\u0007/\u0686\n/\f/\u000e/\u0689\u000b/\u0003", + "/\u0005/\u068c\n/\u0003/\u0005/\u068f\n/\u0003/\u0005/\u0692\n/\u0003", + "/\u0005/\u0695\n/\u0003/\u0003/\u0005/\u0699\n/\u00030\u00030\u0005", + "0\u069d\n0\u00030\u00050\u06a0\n0\u00030\u00030\u00050\u06a4\n0\u0003", + "0\u00070\u06a7\n0\f0\u000e0\u06aa\u000b0\u00030\u00050\u06ad\n0\u0003", + "0\u00050\u06b0\n0\u00030\u00050\u06b3\n0\u00030\u00050\u06b6\n0\u0005", + "0\u06b8\n0\u00031\u00031\u00031\u00031\u00031\u00031\u00031\u00031\u0003", + "1\u00031\u00051\u06c4\n1\u00031\u00051\u06c7\n1\u00031\u00031\u0005", + "1\u06cb\n1\u00031\u00031\u00031\u00031\u00031\u00031\u00031\u00031\u0005", + "1\u06d5\n1\u00031\u00031\u00051\u06d9\n1\u00051\u06db\n1\u00031\u0005", + "1\u06de\n1\u00031\u00031\u00051\u06e2\n1\u00032\u00032\u00072\u06e6", + "\n2\f2\u000e2\u06e9\u000b2\u00032\u00052\u06ec\n2\u00032\u00032\u0003", + "3\u00033\u00033\u00034\u00034\u00034\u00034\u00054\u06f7\n4\u00034\u0003", + "4\u00034\u00035\u00035\u00035\u00035\u00035\u00055\u0701\n5\u00035\u0003", + "5\u00035\u00036\u00036\u00036\u00036\u00036\u00036\u00036\u00056\u070d", + "\n6\u00037\u00037\u00037\u00037\u00037\u00037\u00037\u00037\u00037\u0003", + "7\u00037\u00077\u071a\n7\f7\u000e7\u071d\u000b7\u00037\u00037\u0005", + "7\u0721\n7\u00038\u00038\u00038\u00078\u0726\n8\f8\u000e8\u0729\u000b", + "8\u00039\u00039\u00039\u00039\u0003:\u0003:\u0003:\u0003;\u0003;\u0003", + ";\u0003<\u0003<\u0003<\u0005<\u0738\n<\u0003<\u0007<\u073b\n<\f<\u000e", + "<\u073e\u000b<\u0003<\u0003<\u0003=\u0003=\u0003=\u0003=\u0003=\u0003", + "=\u0007=\u0748\n=\f=\u000e=\u074b\u000b=\u0003=\u0003=\u0005=\u074f", + "\n=\u0003>\u0003>\u0003>\u0003>\u0007>\u0755\n>\f>\u000e>\u0758\u000b", + ">\u0003>\u0007>\u075b\n>\f>\u000e>\u075e\u000b>\u0003>\u0005>\u0761", + "\n>\u0003?\u0003?\u0003?\u0003?\u0003?\u0007?\u0768\n?\f?\u000e?\u076b", + "\u000b?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003", + "?\u0003?\u0007?\u0777\n?\f?\u000e?\u077a\u000b?\u0003?\u0003?\u0005", + "?\u077e\n?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0007", + "?\u0788\n?\f?\u000e?\u078b\u000b?\u0003?\u0003?\u0005?\u078f\n?\u0003", + "@\u0003@\u0003@\u0003@\u0007@\u0795\n@\f@\u000e@\u0798\u000b@\u0005", + "@\u079a\n@\u0003@\u0003@\u0005@\u079e\n@\u0003A\u0003A\u0003A\u0003", + "A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0007A\u07aa\nA\fA\u000e", + "A\u07ad\u000bA\u0003A\u0003A\u0003A\u0003B\u0003B\u0003B\u0003B\u0003", + "B\u0007B\u07b7\nB\fB\u000eB\u07ba\u000bB\u0003B\u0003B\u0005B\u07be", + "\nB\u0003C\u0003C\u0005C\u07c2\nC\u0003C\u0005C\u07c5\nC\u0003D\u0003", + "D\u0003D\u0005D\u07ca\nD\u0003D\u0003D\u0003D\u0003D\u0003D\u0007D\u07d1", + "\nD\fD\u000eD\u07d4\u000bD\u0005D\u07d6\nD\u0003D\u0003D\u0003D\u0005", + "D\u07db\nD\u0003D\u0003D\u0003D\u0007D\u07e0\nD\fD\u000eD\u07e3\u000b", + "D\u0005D\u07e5\nD\u0003E\u0003E\u0003F\u0003F\u0007F\u07eb\nF\fF\u000e", + "F\u07ee\u000bF\u0003G\u0003G\u0003G\u0003G\u0005G\u07f4\nG\u0003G\u0003", + "G\u0003G\u0003G\u0003G\u0005G\u07fb\nG\u0003H\u0005H\u07fe\nH\u0003", + "H\u0003H\u0003H\u0005H\u0803\nH\u0003H\u0005H\u0806\nH\u0003H\u0003", + "H\u0003H\u0005H\u080b\nH\u0003H\u0003H\u0005H\u080f\nH\u0003H\u0005", + "H\u0812\nH\u0003H\u0005H\u0815\nH\u0003I\u0003I\u0003I\u0003I\u0005", + "I\u081b\nI\u0003J\u0003J\u0003J\u0005J\u0820\nJ\u0003J\u0003J\u0003", + "K\u0005K\u0825\nK\u0003K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003", + "K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003K\u0005K\u0837", + "\nK\u0005K\u0839\nK\u0003K\u0005K\u083c\nK\u0003L\u0003L\u0003L\u0003", + "L\u0003M\u0003M\u0003M\u0007M\u0845\nM\fM\u000eM\u0848\u000bM\u0003", + "N\u0003N\u0003N\u0003N\u0007N\u084e\nN\fN\u000eN\u0851\u000bN\u0003", + "N\u0003N\u0003O\u0003O\u0005O\u0857\nO\u0003P\u0003P\u0003P\u0003P\u0007", + "P\u085d\nP\fP\u000eP\u0860\u000bP\u0003P\u0003P\u0003Q\u0003Q\u0005", + "Q\u0866\nQ\u0003R\u0003R\u0005R\u086a\nR\u0003R\u0003R\u0003R\u0003", + "R\u0003R\u0003R\u0005R\u0872\nR\u0003R\u0003R\u0003R\u0003R\u0003R\u0003", + "R\u0005R\u087a\nR\u0003R\u0003R\u0003R\u0003R\u0005R\u0880\nR\u0003", + "S\u0003S\u0003S\u0003S\u0007S\u0886\nS\fS\u000eS\u0889\u000bS\u0003", + "S\u0003S\u0003T\u0003T\u0003T\u0003T\u0003T\u0007T\u0892\nT\fT\u000e", + "T\u0895\u000bT\u0005T\u0897\nT\u0003T\u0003T\u0003T\u0003U\u0005U\u089d", + "\nU\u0003U\u0003U\u0005U\u08a1\nU\u0005U\u08a3\nU\u0003V\u0003V\u0003", + "V\u0003V\u0003V\u0003V\u0003V\u0005V\u08ac\nV\u0003V\u0003V\u0003V\u0003", + "V\u0003V\u0003V\u0003V\u0003V\u0003V\u0003V\u0005V\u08b8\nV\u0005V\u08ba", + "\nV\u0003V\u0003V\u0003V\u0003V\u0003V\u0005V\u08c1\nV\u0003V\u0003", + "V\u0003V\u0003V\u0003V\u0005V\u08c8\nV\u0003V\u0003V\u0003V\u0003V\u0005", + "V\u08ce\nV\u0003V\u0003V\u0003V\u0003V\u0005V\u08d4\nV\u0005V\u08d6", + "\nV\u0003W\u0003W\u0003W\u0007W\u08db\nW\fW\u000eW\u08de\u000bW\u0003", + "X\u0003X\u0003X\u0007X\u08e3\nX\fX\u000eX\u08e6\u000bX\u0003Y\u0003", + "Y\u0003Y\u0005Y\u08eb\nY\u0003Y\u0003Y\u0003Z\u0003Z\u0005Z\u08f1\n", + "Z\u0003Z\u0003Z\u0005Z\u08f5\nZ\u0005Z\u08f7\nZ\u0003[\u0003[\u0003", + "[\u0007[\u08fc\n[\f[\u000e[\u08ff\u000b[\u0003\\\u0003\\\u0003\\\u0003", + "\\\u0007\\\u0905\n\\\f\\\u000e\\\u0908\u000b\\\u0003\\\u0003\\\u0003", + "]\u0003]\u0003]\u0003]\u0003]\u0003]\u0007]\u0912\n]\f]\u000e]\u0915", + "\u000b]\u0003]\u0003]\u0005]\u0919\n]\u0003^\u0003^\u0005^\u091d\n^", + "\u0003_\u0003_\u0003`\u0003`\u0003`\u0003`\u0003`\u0003`\u0003`\u0003", + "`\u0003`\u0003`\u0005`\u092b\n`\u0005`\u092d\n`\u0003`\u0003`\u0003", + "`\u0003`\u0003`\u0003`\u0007`\u0935\n`\f`\u000e`\u0938\u000b`\u0003", + "a\u0005a\u093b\na\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0005a\u0943", + "\na\u0003a\u0003a\u0003a\u0003a\u0003a\u0007a\u094a\na\fa\u000ea\u094d", + "\u000ba\u0003a\u0003a\u0003a\u0005a\u0952\na\u0003a\u0003a\u0003a\u0003", + "a\u0003a\u0003a\u0005a\u095a\na\u0003a\u0003a\u0003a\u0005a\u095f\n", + "a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0007a\u0969", + "\na\fa\u000ea\u096c\u000ba\u0003a\u0003a\u0005a\u0970\na\u0003a\u0005", + "a\u0973\na\u0003a\u0003a\u0003a\u0003a\u0005a\u0979\na\u0003a\u0003", + "a\u0005a\u097d\na\u0003a\u0003a\u0003a\u0005a\u0982\na\u0003a\u0003", + "a\u0003a\u0005a\u0987\na\u0003a\u0003a\u0003a\u0005a\u098c\na\u0003", + "b\u0003b\u0003b\u0003b\u0005b\u0992\nb\u0003b\u0003b\u0003b\u0003b\u0003", + "b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003", + "b\u0003b\u0003b\u0003b\u0003b\u0007b\u09a7\nb\fb\u000eb\u09aa\u000b", + "b\u0003c\u0003c\u0003c\u0003c\u0006c\u09b0\nc\rc\u000ec\u09b1\u0003", + "c\u0003c\u0005c\u09b6\nc\u0003c\u0003c\u0003c\u0003c\u0003c\u0006c\u09bd", + "\nc\rc\u000ec\u09be\u0003c\u0003c\u0005c\u09c3\nc\u0003c\u0003c\u0003", + "c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003", + "c\u0003c\u0007c\u09d3\nc\fc\u000ec\u09d6\u000bc\u0005c\u09d8\nc\u0003", + "c\u0003c\u0003c\u0003c\u0003c\u0003c\u0005c\u09e0\nc\u0003c\u0003c\u0003", + "c\u0003c\u0003c\u0003c\u0003c\u0005c\u09e9\nc\u0003c\u0003c\u0003c\u0003", + "c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003", + "c\u0003c\u0003c\u0003c\u0003c\u0003c\u0006c\u09fe\nc\rc\u000ec\u09ff", + "\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0005", + "c\u0a0b\nc\u0003c\u0003c\u0003c\u0007c\u0a10\nc\fc\u000ec\u0a13\u000b", + "c\u0005c\u0a15\nc\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0005", + "c\u0a1e\nc\u0003c\u0003c\u0005c\u0a22\nc\u0003c\u0003c\u0003c\u0003", + "c\u0003c\u0003c\u0003c\u0003c\u0006c\u0a2c\nc\rc\u000ec\u0a2d\u0003", + "c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003", + "c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003", + "c\u0003c\u0003c\u0005c\u0a47\nc\u0003c\u0003c\u0003c\u0003c\u0003c\u0005", + "c\u0a4e\nc\u0003c\u0005c\u0a51\nc\u0003c\u0003c\u0003c\u0003c\u0003", + "c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0005c\u0a60", + "\nc\u0003c\u0003c\u0005c\u0a64\nc\u0003c\u0003c\u0003c\u0003c\u0003", + "c\u0003c\u0003c\u0003c\u0007c\u0a6e\nc\fc\u000ec\u0a71\u000bc\u0003", + "d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0006d\u0a7b\nd\r", + "d\u000ed\u0a7c\u0005d\u0a7f\nd\u0003e\u0003e\u0003f\u0003f\u0003g\u0003", + "g\u0003h\u0003h\u0003i\u0003i\u0003i\u0005i\u0a8c\ni\u0003j\u0003j\u0005", + "j\u0a90\nj\u0003k\u0003k\u0003k\u0006k\u0a95\nk\rk\u000ek\u0a96\u0003", + "l\u0003l\u0003l\u0005l\u0a9c\nl\u0003m\u0003m\u0003m\u0003m\u0003m\u0003", + "n\u0005n\u0aa4\nn\u0003n\u0003n\u0005n\u0aa8\nn\u0003o\u0003o\u0003", + "o\u0005o\u0aad\no\u0003p\u0003p\u0003p\u0003p\u0003p\u0003p\u0003p\u0003", + "p\u0003p\u0003p\u0003p\u0003p\u0003p\u0003p\u0003p\u0005p\u0abe\np\u0003", + "p\u0003p\u0005p\u0ac2\np\u0003p\u0003p\u0003p\u0003p\u0003p\u0007p\u0ac9", + "\np\fp\u000ep\u0acc\u000bp\u0003p\u0005p\u0acf\np\u0005p\u0ad1\np\u0003", + "q\u0003q\u0003q\u0007q\u0ad6\nq\fq\u000eq\u0ad9\u000bq\u0003r\u0003", + "r\u0003r\u0003r\u0005r\u0adf\nr\u0003r\u0005r\u0ae2\nr\u0003r\u0005", + "r\u0ae5\nr\u0003s\u0003s\u0003s\u0007s\u0aea\ns\fs\u000es\u0aed\u000b", + "s\u0003t\u0003t\u0003t\u0003t\u0005t\u0af3\nt\u0003t\u0005t\u0af6\n", + "t\u0003u\u0003u\u0003u\u0007u\u0afb\nu\fu\u000eu\u0afe\u000bu\u0003", + "v\u0003v\u0003v\u0003v\u0003v\u0005v\u0b05\nv\u0003v\u0005v\u0b08\n", + "v\u0003w\u0003w\u0003w\u0003w\u0003w\u0003x\u0003x\u0003x\u0003x\u0007", + "x\u0b13\nx\fx\u000ex\u0b16\u000bx\u0003y\u0003y\u0003y\u0003y\u0003", + "z\u0003z\u0003z\u0003z\u0003z\u0003z\u0003z\u0003z\u0003z\u0003z\u0003", + "z\u0007z\u0b27\nz\fz\u000ez\u0b2a\u000bz\u0003z\u0003z\u0003z\u0003", + "z\u0003z\u0007z\u0b31\nz\fz\u000ez\u0b34\u000bz\u0005z\u0b36\nz\u0003", + "z\u0003z\u0003z\u0003z\u0003z\u0007z\u0b3d\nz\fz\u000ez\u0b40\u000b", + "z\u0005z\u0b42\nz\u0005z\u0b44\nz\u0003z\u0005z\u0b47\nz\u0003z\u0005", + "z\u0b4a\nz\u0003{\u0003{\u0003{\u0003{\u0003{\u0003{\u0003{\u0003{\u0003", + "{\u0003{\u0003{\u0003{\u0003{\u0003{\u0003{\u0003{\u0005{\u0b5c\n{\u0003", + "|\u0003|\u0003|\u0003|\u0003|\u0003|\u0003|\u0005|\u0b65\n|\u0003}\u0003", + "}\u0003}\u0007}\u0b6a\n}\f}\u000e}\u0b6d\u000b}\u0003~\u0003~\u0003", + "~\u0003~\u0005~\u0b73\n~\u0003\u007f\u0003\u007f\u0003\u007f\u0007\u007f", + "\u0b78\n\u007f\f\u007f\u000e\u007f\u0b7b\u000b\u007f\u0003\u0080\u0003", + "\u0080\u0003\u0080\u0003\u0081\u0003\u0081\u0006\u0081\u0b82\n\u0081", + "\r\u0081\u000e\u0081\u0b83\u0003\u0081\u0005\u0081\u0b87\n\u0081\u0003", + "\u0082\u0003\u0082\u0003\u0082\u0005\u0082\u0b8c\n\u0082\u0003\u0083", + "\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083\u0005\u0083", + "\u0b94\n\u0083\u0003\u0084\u0003\u0084\u0003\u0085\u0003\u0085\u0005", + "\u0085\u0b9a\n\u0085\u0003\u0085\u0003\u0085\u0003\u0085\u0005\u0085", + "\u0b9f\n\u0085\u0003\u0085\u0003\u0085\u0003\u0085\u0005\u0085\u0ba4", + "\n\u0085\u0003\u0085\u0003\u0085\u0005\u0085\u0ba8\n\u0085\u0003\u0085", + "\u0003\u0085\u0005\u0085\u0bac\n\u0085\u0003\u0085\u0003\u0085\u0005", + "\u0085\u0bb0\n\u0085\u0003\u0085\u0003\u0085\u0005\u0085\u0bb4\n\u0085", + "\u0003\u0085\u0003\u0085\u0005\u0085\u0bb8\n\u0085\u0003\u0085\u0003", + "\u0085\u0005\u0085\u0bbc\n\u0085\u0003\u0085\u0003\u0085\u0005\u0085", + "\u0bc0\n\u0085\u0003\u0085\u0005\u0085\u0bc3\n\u0085\u0003\u0086\u0003", + "\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0005", + "\u0086\u0bcc\n\u0086\u0003\u0087\u0003\u0087\u0003\u0088\u0003\u0088", + "\u0003\u0089\u0003\u0089\u0003\u0089\n\u0397\u03d5\u03df\u03f0\u03f9", + "\u0402\u040b\u0412\u0006T\u00be\u00c2\u00c4\u008a\u0002\u0004\u0006", + "\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*", + ",.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086", + "\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u009e", + "\u00a0\u00a2\u00a4\u00a6\u00a8\u00aa\u00ac\u00ae\u00b0\u00b2\u00b4\u00b6", + "\u00b8\u00ba\u00bc\u00be\u00c0\u00c2\u00c4\u00c6\u00c8\u00ca\u00cc\u00ce", + "\u00d0\u00d2\u00d4\u00d6\u00d8\u00da\u00dc\u00de\u00e0\u00e2\u00e4\u00e6", + "\u00e8\u00ea\u00ec\u00ee\u00f0\u00f2\u00f4\u00f6\u00f8\u00fa\u00fc\u00fe", + "\u0100\u0102\u0104\u0106\u0108\u010a\u010c\u010e\u0110\u0002-\u0004", + "\u0002BB\u00b3\u00b3\u0004\u0002\"\"\u00c1\u00c1\u0004\u0002AA\u0095", + "\u0095\u0004\u0002ffrr\u0003\u0002-.\u0004\u0002\u00e1\u00e1\u0100\u0100", + "\u0004\u0002\u0011\u0011%%\u0007\u0002**66XXee\u008e\u008e\u0003\u0002", + "FG\u0004\u0002XXee\u0004\u0002\u0099\u0099\u0119\u0119\u0004\u0002\u000e", + "\u000e\u0088\u0088\u0004\u0002\u008a\u008a\u0119\u0119\u0005\u0002@", + "@\u0094\u0094\u00cb\u00cb\u0006\u0002SSyy\u00d3\u00d3\u00f6\u00f6\u0005", + "\u0002SS\u00d3\u00d3\u00f6\u00f6\u0004\u0002\u0019\u0019FF\u0004\u0002", + "``\u0080\u0080\u0004\u0002\u0010\u0010KK\u0004\u0002\u011d\u011d\u011f", + "\u011f\u0005\u0002\u0010\u0010\u0015\u0015\u00d7\u00d7\u0005\u0002[", + "[\u00f0\u00f0\u00f8\u00f8\u0004\u0002\u010f\u0110\u0114\u0114\u0004", + "\u0002MM\u0111\u0113\u0004\u0002\u010f\u0110\u0117\u0117\u0004\u0002", + ";;==\u0003\u0002\u00df\u00e0\u0004\u0002\u0006\u0006ff\u0004\u0002\u0006", + "\u0006bb\u0005\u0002\u001d\u001d\u0083\u0083\u00eb\u00eb\u0003\u0002", + "\u0107\u010e\u0004\u0002MM\u010f\u0118\u0006\u0002\u0013\u0013rr\u0098", + "\u0098\u00a0\u00a0\u0004\u0002[[\u00f0\u00f0\u0003\u0002\u010f\u0110", + "\u0004\u0002LL\u00a9\u00a9\u0004\u0002\u00a1\u00a1\u00d8\u00d8\u0004", + "\u0002aa\u00b0\u00b0\u0003\u0002\u011e\u011f\u0004\u0002NN\u00d2\u00d2", + "2\u0002\u000e\u000f\u0011\u0012\u0014\u0014\u0016\u0017\u0019\u001a", + "\u001c\u001c\u001e\"%%\'*,,.4669:?JLNRRTZ]]_adehjmmoqstvxzz}}\u007f", + "\u0082\u0085\u0095\u0097\u0097\u009a\u009b\u009e\u009f\u00a2\u00a2\u00a4", + "\u00a5\u00a7\u00b0\u00b2\u00ba\u00bc\u00c2\u00c4\u00cb\u00cd\u00d0\u00d2", + "\u00d6\u00d8\u00e0\u00e2\u00e6\u00ea\u00ea\u00ec\u00f5\u00f9\u00fc\u00ff", + "\u0101\u0104\u0104\u0106\u0106\u0011\u0002\u0014\u001488SSgguuyy~~\u0084", + "\u0084\u0096\u0096\u009c\u009c\u00c3\u00c3\u00cd\u00cd\u00d3\u00d3\u00f6", + "\u00f6\u00fe\u00fe\u0012\u0002\u000e\u0013\u001579RTfhtvxz}\u007f\u0083", + "\u0085\u0095\u0097\u009b\u009d\u00c2\u00c4\u00cc\u00ce\u00d2\u00d4\u00f5", + "\u00f7\u00fd\u00ff\u0106\u0002\u0dad\u0002\u0112\u0003\u0002\u0002\u0002", + "\u0004\u0115\u0003\u0002\u0002\u0002\u0006\u011e\u0003\u0002\u0002\u0002", + "\b\u0121\u0003\u0002\u0002\u0002\n\u0124\u0003\u0002\u0002\u0002\f\u0127", + "\u0003\u0002\u0002\u0002\u000e\u012a\u0003\u0002\u0002\u0002\u0010\u0415", + "\u0003\u0002\u0002\u0002\u0012\u0417\u0003\u0002\u0002\u0002\u0014\u04c1", + "\u0003\u0002\u0002\u0002\u0016\u04c3\u0003\u0002\u0002\u0002\u0018\u04d4", + "\u0003\u0002\u0002\u0002\u001a\u04da\u0003\u0002\u0002\u0002\u001c\u04e6", + "\u0003\u0002\u0002\u0002\u001e\u04f3\u0003\u0002\u0002\u0002 \u04f6", + "\u0003\u0002\u0002\u0002\"\u04fa\u0003\u0002\u0002\u0002$\u0536\u0003", + "\u0002\u0002\u0002&\u0538\u0003\u0002\u0002\u0002(\u053c\u0003\u0002", + "\u0002\u0002*\u0548\u0003\u0002\u0002\u0002,\u054d\u0003\u0002\u0002", + "\u0002.\u0554\u0003\u0002\u0002\u00020\u0556\u0003\u0002\u0002\u0002", + "2\u055e\u0003\u0002\u0002\u00024\u0567\u0003\u0002\u0002\u00026\u0572", + "\u0003\u0002\u0002\u00028\u0581\u0003\u0002\u0002\u0002:\u0584\u0003", + "\u0002\u0002\u0002<\u058f\u0003\u0002\u0002\u0002>\u059f\u0003\u0002", + "\u0002\u0002@\u05a5\u0003\u0002\u0002\u0002B\u05a7\u0003\u0002\u0002", + "\u0002D\u05b2\u0003\u0002\u0002\u0002F\u05c3\u0003\u0002\u0002\u0002", + "H\u05ca\u0003\u0002\u0002\u0002J\u05cc\u0003\u0002\u0002\u0002L\u05d2", + "\u0003\u0002\u0002\u0002N\u0608\u0003\u0002\u0002\u0002P\u0614\u0003", + "\u0002\u0002\u0002R\u0644\u0003\u0002\u0002\u0002T\u0647\u0003\u0002", + "\u0002\u0002V\u066d\u0003\u0002\u0002\u0002X\u066f\u0003\u0002\u0002", + "\u0002Z\u0677\u0003\u0002\u0002\u0002\\\u0698\u0003\u0002\u0002\u0002", + "^\u06b7\u0003\u0002\u0002\u0002`\u06c3\u0003\u0002\u0002\u0002b\u06e3", + "\u0003\u0002\u0002\u0002d\u06ef\u0003\u0002\u0002\u0002f\u06f2\u0003", + "\u0002\u0002\u0002h\u06fb\u0003\u0002\u0002\u0002j\u070c\u0003\u0002", + "\u0002\u0002l\u0720\u0003\u0002\u0002\u0002n\u0722\u0003\u0002\u0002", + "\u0002p\u072a\u0003\u0002\u0002\u0002r\u072e\u0003\u0002\u0002\u0002", + "t\u0731\u0003\u0002\u0002\u0002v\u0734\u0003\u0002\u0002\u0002x\u074e", + "\u0003\u0002\u0002\u0002z\u0750\u0003\u0002\u0002\u0002|\u078e\u0003", + "\u0002\u0002\u0002~\u079d\u0003\u0002\u0002\u0002\u0080\u079f\u0003", + "\u0002\u0002\u0002\u0082\u07bd\u0003\u0002\u0002\u0002\u0084\u07bf\u0003", + "\u0002\u0002\u0002\u0086\u07c6\u0003\u0002\u0002\u0002\u0088\u07e6\u0003", + "\u0002\u0002\u0002\u008a\u07e8\u0003\u0002\u0002\u0002\u008c\u07fa\u0003", + "\u0002\u0002\u0002\u008e\u0814\u0003\u0002\u0002\u0002\u0090\u081a\u0003", + "\u0002\u0002\u0002\u0092\u081c\u0003\u0002\u0002\u0002\u0094\u083b\u0003", + "\u0002\u0002\u0002\u0096\u083d\u0003\u0002\u0002\u0002\u0098\u0841\u0003", + "\u0002\u0002\u0002\u009a\u0849\u0003\u0002\u0002\u0002\u009c\u0854\u0003", + "\u0002\u0002\u0002\u009e\u0858\u0003\u0002\u0002\u0002\u00a0\u0863\u0003", + "\u0002\u0002\u0002\u00a2\u087f\u0003\u0002\u0002\u0002\u00a4\u0881\u0003", + "\u0002\u0002\u0002\u00a6\u088c\u0003\u0002\u0002\u0002\u00a8\u08a2\u0003", + "\u0002\u0002\u0002\u00aa\u08d5\u0003\u0002\u0002\u0002\u00ac\u08d7\u0003", + "\u0002\u0002\u0002\u00ae\u08df\u0003\u0002\u0002\u0002\u00b0\u08ea\u0003", + "\u0002\u0002\u0002\u00b2\u08ee\u0003\u0002\u0002\u0002\u00b4\u08f8\u0003", + "\u0002\u0002\u0002\u00b6\u0900\u0003\u0002\u0002\u0002\u00b8\u0918\u0003", + "\u0002\u0002\u0002\u00ba\u091c\u0003\u0002\u0002\u0002\u00bc\u091e\u0003", + "\u0002\u0002\u0002\u00be\u092c\u0003\u0002\u0002\u0002\u00c0\u098b\u0003", + "\u0002\u0002\u0002\u00c2\u0991\u0003\u0002\u0002\u0002\u00c4\u0a63\u0003", + "\u0002\u0002\u0002\u00c6\u0a7e\u0003\u0002\u0002\u0002\u00c8\u0a80\u0003", + "\u0002\u0002\u0002\u00ca\u0a82\u0003\u0002\u0002\u0002\u00cc\u0a84\u0003", + "\u0002\u0002\u0002\u00ce\u0a86\u0003\u0002\u0002\u0002\u00d0\u0a88\u0003", + "\u0002\u0002\u0002\u00d2\u0a8d\u0003\u0002\u0002\u0002\u00d4\u0a94\u0003", + "\u0002\u0002\u0002\u00d6\u0a98\u0003\u0002\u0002\u0002\u00d8\u0a9d\u0003", + "\u0002\u0002\u0002\u00da\u0aa7\u0003\u0002\u0002\u0002\u00dc\u0aac\u0003", + "\u0002\u0002\u0002\u00de\u0ad0\u0003\u0002\u0002\u0002\u00e0\u0ad2\u0003", + "\u0002\u0002\u0002\u00e2\u0ada\u0003\u0002\u0002\u0002\u00e4\u0ae6\u0003", + "\u0002\u0002\u0002\u00e6\u0aee\u0003\u0002\u0002\u0002\u00e8\u0af7\u0003", + "\u0002\u0002\u0002\u00ea\u0aff\u0003\u0002\u0002\u0002\u00ec\u0b09\u0003", + "\u0002\u0002\u0002\u00ee\u0b0e\u0003\u0002\u0002\u0002\u00f0\u0b17\u0003", + "\u0002\u0002\u0002\u00f2\u0b49\u0003\u0002\u0002\u0002\u00f4\u0b5b\u0003", + "\u0002\u0002\u0002\u00f6\u0b64\u0003\u0002\u0002\u0002\u00f8\u0b66\u0003", + "\u0002\u0002\u0002\u00fa\u0b72\u0003\u0002\u0002\u0002\u00fc\u0b74\u0003", + "\u0002\u0002\u0002\u00fe\u0b7c\u0003\u0002\u0002\u0002\u0100\u0b86\u0003", + "\u0002\u0002\u0002\u0102\u0b8b\u0003\u0002\u0002\u0002\u0104\u0b93\u0003", + "\u0002\u0002\u0002\u0106\u0b95\u0003\u0002\u0002\u0002\u0108\u0bc2\u0003", + "\u0002\u0002\u0002\u010a\u0bcb\u0003\u0002\u0002\u0002\u010c\u0bcd\u0003", + "\u0002\u0002\u0002\u010e\u0bcf\u0003\u0002\u0002\u0002\u0110\u0bd1\u0003", + "\u0002\u0002\u0002\u0112\u0113\u0005\u0004\u0003\u0002\u0113\u0114\u0007", + "\u0002\u0002\u0003\u0114\u0003\u0003\u0002\u0002\u0002\u0115\u0119\u0005", + "\u0010\t\u0002\u0116\u0118\u0007\u0003\u0002\u0002\u0117\u0116\u0003", + "\u0002\u0002\u0002\u0118\u011b\u0003\u0002\u0002\u0002\u0119\u0117\u0003", + "\u0002\u0002\u0002\u0119\u011a\u0003\u0002\u0002\u0002\u011a\u011c\u0003", + "\u0002\u0002\u0002\u011b\u0119\u0003\u0002\u0002\u0002\u011c\u011d\u0007", + "\u0002\u0002\u0003\u011d\u0005\u0003\u0002\u0002\u0002\u011e\u011f\u0005", + "\u00b2Z\u0002\u011f\u0120\u0007\u0002\u0002\u0003\u0120\u0007\u0003", + "\u0002\u0002\u0002\u0121\u0122\u0005\u00b0Y\u0002\u0122\u0123\u0007", + "\u0002\u0002\u0003\u0123\t\u0003\u0002\u0002\u0002\u0124\u0125\u0005", + "\u00aeX\u0002\u0125\u0126\u0007\u0002\u0002\u0003\u0126\u000b\u0003", + "\u0002\u0002\u0002\u0127\u0128\u0005\u00dep\u0002\u0128\u0129\u0007", + "\u0002\u0002\u0003\u0129\r\u0003\u0002\u0002\u0002\u012a\u012b\u0005", + "\u00e4s\u0002\u012b\u012c\u0007\u0002\u0002\u0003\u012c\u000f\u0003", + "\u0002\u0002\u0002\u012d\u0416\u0005\"\u0012\u0002\u012e\u0130\u0005", + "2\u001a\u0002\u012f\u012e\u0003\u0002\u0002\u0002\u012f\u0130\u0003", + "\u0002\u0002\u0002\u0130\u0131\u0003\u0002\u0002\u0002\u0131\u0416\u0005", + "N(\u0002\u0132\u0134\u0007\u00fc\u0002\u0002\u0133\u0135\u0007\u0094", + "\u0002\u0002\u0134\u0133\u0003\u0002\u0002\u0002\u0134\u0135\u0003\u0002", + "\u0002\u0002\u0135\u0136\u0003\u0002\u0002\u0002\u0136\u0416\u0005\u00ae", + "X\u0002\u0137\u0138\u00077\u0002\u0002\u0138\u013c\u0005,\u0017\u0002", + "\u0139\u013a\u0007o\u0002\u0002\u013a\u013b\u0007\u0098\u0002\u0002", + "\u013b\u013d\u0007U\u0002\u0002\u013c\u0139\u0003\u0002\u0002\u0002", + "\u013c\u013d\u0003\u0002\u0002\u0002\u013d\u013e\u0003\u0002\u0002\u0002", + "\u013e\u0146\u0005\u00aeX\u0002\u013f\u0145\u0005 \u0011\u0002\u0140", + "\u0145\u0005\u001e\u0010\u0002\u0141\u0142\u0007\u0105\u0002\u0002\u0142", + "\u0143\t\u0002\u0002\u0002\u0143\u0145\u0005:\u001e\u0002\u0144\u013f", + "\u0003\u0002\u0002\u0002\u0144\u0140\u0003\u0002\u0002\u0002\u0144\u0141", + "\u0003\u0002\u0002\u0002\u0145\u0148\u0003\u0002\u0002\u0002\u0146\u0144", + "\u0003\u0002\u0002\u0002\u0146\u0147\u0003\u0002\u0002\u0002\u0147\u0416", + "\u0003\u0002\u0002\u0002\u0148\u0146\u0003\u0002\u0002\u0002\u0149\u014a", + "\u0007\u0011\u0002\u0002\u014a\u014b\u0005,\u0017\u0002\u014b\u014c", + "\u0005\u00aeX\u0002\u014c\u014d\u0007\u00d2\u0002\u0002\u014d\u014e", + "\t\u0002\u0002\u0002\u014e\u014f\u0005:\u001e\u0002\u014f\u0416\u0003", + "\u0002\u0002\u0002\u0150\u0151\u0007\u0011\u0002\u0002\u0151\u0152\u0005", + ",\u0017\u0002\u0152\u0153\u0005\u00aeX\u0002\u0153\u0154\u0007\u00d2", + "\u0002\u0002\u0154\u0155\u0005\u001e\u0010\u0002\u0155\u0416\u0003\u0002", + "\u0002\u0002\u0156\u0157\u0007N\u0002\u0002\u0157\u015a\u0005,\u0017", + "\u0002\u0158\u0159\u0007o\u0002\u0002\u0159\u015b\u0007U\u0002\u0002", + "\u015a\u0158\u0003\u0002\u0002\u0002\u015a\u015b\u0003\u0002\u0002\u0002", + "\u015b\u015c\u0003\u0002\u0002\u0002\u015c\u015e\u0005\u00aeX\u0002", + "\u015d\u015f\t\u0003\u0002\u0002\u015e\u015d\u0003\u0002\u0002\u0002", + "\u015e\u015f\u0003\u0002\u0002\u0002\u015f\u0416\u0003\u0002\u0002\u0002", + "\u0160\u0161\u0007\u00d5\u0002\u0002\u0161\u0164\t\u0004\u0002\u0002", + "\u0162\u0163\t\u0005\u0002\u0002\u0163\u0165\u0005\u00aeX\u0002\u0164", + "\u0162\u0003\u0002\u0002\u0002\u0164\u0165\u0003\u0002\u0002\u0002\u0165", + "\u016a\u0003\u0002\u0002\u0002\u0166\u0168\u0007\u0085\u0002\u0002\u0167", + "\u0166\u0003\u0002\u0002\u0002\u0167\u0168\u0003\u0002\u0002\u0002\u0168", + "\u0169\u0003\u0002\u0002\u0002\u0169\u016b\u0007\u0119\u0002\u0002\u016a", + "\u0167\u0003\u0002\u0002\u0002\u016a\u016b\u0003\u0002\u0002\u0002\u016b", + "\u0416\u0003\u0002\u0002\u0002\u016c\u0171\u0005\u0016\f\u0002\u016d", + "\u016e\u0007\u0004\u0002\u0002\u016e\u016f\u0005\u00e4s\u0002\u016f", + "\u0170\u0007\u0005\u0002\u0002\u0170\u0172\u0003\u0002\u0002\u0002\u0171", + "\u016d\u0003\u0002\u0002\u0002\u0171\u0172\u0003\u0002\u0002\u0002\u0172", + "\u0173\u0003\u0002\u0002\u0002\u0173\u0174\u00056\u001c\u0002\u0174", + "\u0179\u00058\u001d\u0002\u0175\u0177\u0007\u0018\u0002\u0002\u0176", + "\u0175\u0003\u0002\u0002\u0002\u0176\u0177\u0003\u0002\u0002\u0002\u0177", + "\u0178\u0003\u0002\u0002\u0002\u0178\u017a\u0005\"\u0012\u0002\u0179", + "\u0176\u0003\u0002\u0002\u0002\u0179\u017a\u0003\u0002\u0002\u0002\u017a", + "\u0416\u0003\u0002\u0002\u0002\u017b\u0180\u0005\u0016\f\u0002\u017c", + "\u017d\u0007\u0004\u0002\u0002\u017d\u017e\u0005\u00e4s\u0002\u017e", + "\u017f\u0007\u0005\u0002\u0002\u017f\u0181\u0003\u0002\u0002\u0002\u0180", + "\u017c\u0003\u0002\u0002\u0002\u0180\u0181\u0003\u0002\u0002\u0002\u0181", + "\u0197\u0003\u0002\u0002\u0002\u0182\u0196\u0005 \u0011\u0002\u0183", + "\u0184\u0007\u00aa\u0002\u0002\u0184\u0185\u0007 \u0002\u0002\u0185", + "\u0186\u0007\u0004\u0002\u0002\u0186\u0187\u0005\u00e4s\u0002\u0187", + "\u0188\u0007\u0005\u0002\u0002\u0188\u018d\u0003\u0002\u0002\u0002\u0189", + "\u018a\u0007\u00aa\u0002\u0002\u018a\u018b\u0007 \u0002\u0002\u018b", + "\u018d\u0005\u0096L\u0002\u018c\u0183\u0003\u0002\u0002\u0002\u018c", + "\u0189\u0003\u0002\u0002\u0002\u018d\u0196\u0003\u0002\u0002\u0002\u018e", + "\u0196\u0005\u001a\u000e\u0002\u018f\u0196\u0005\u001c\u000f\u0002\u0190", + "\u0196\u0005\u00aaV\u0002\u0191\u0196\u0005F$\u0002\u0192\u0196\u0005", + "\u001e\u0010\u0002\u0193\u0194\u0007\u00e4\u0002\u0002\u0194\u0196\u0005", + ":\u001e\u0002\u0195\u0182\u0003\u0002\u0002\u0002\u0195\u018c\u0003", + "\u0002\u0002\u0002\u0195\u018e\u0003\u0002\u0002\u0002\u0195\u018f\u0003", + "\u0002\u0002\u0002\u0195\u0190\u0003\u0002\u0002\u0002\u0195\u0191\u0003", + "\u0002\u0002\u0002\u0195\u0192\u0003\u0002\u0002\u0002\u0195\u0193\u0003", + "\u0002\u0002\u0002\u0196\u0199\u0003\u0002\u0002\u0002\u0197\u0195\u0003", + "\u0002\u0002\u0002\u0197\u0198\u0003\u0002\u0002\u0002\u0198\u019e\u0003", + "\u0002\u0002\u0002\u0199\u0197\u0003\u0002\u0002\u0002\u019a\u019c\u0007", + "\u0018\u0002\u0002\u019b\u019a\u0003\u0002\u0002\u0002\u019b\u019c\u0003", + "\u0002\u0002\u0002\u019c\u019d\u0003\u0002\u0002\u0002\u019d\u019f\u0005", + "\"\u0012\u0002\u019e\u019b\u0003\u0002\u0002\u0002\u019e\u019f\u0003", + "\u0002\u0002\u0002\u019f\u0416\u0003\u0002\u0002\u0002\u01a0\u01a1\u0007", + "7\u0002\u0002\u01a1\u01a5\u0007\u00e1\u0002\u0002\u01a2\u01a3\u0007", + "o\u0002\u0002\u01a3\u01a4\u0007\u0098\u0002\u0002\u01a4\u01a6\u0007", + "U\u0002\u0002\u01a5\u01a2\u0003\u0002\u0002\u0002\u01a5\u01a6\u0003", + "\u0002\u0002\u0002\u01a6\u01a7\u0003\u0002\u0002\u0002\u01a7\u01a8\u0005", + "\u00b0Y\u0002\u01a8\u01a9\u0007\u0085\u0002\u0002\u01a9\u01b2\u0005", + "\u00b0Y\u0002\u01aa\u01b1\u00056\u001c\u0002\u01ab\u01b1\u0005\u00aa", + "V\u0002\u01ac\u01b1\u0005F$\u0002\u01ad\u01b1\u0005\u001e\u0010\u0002", + "\u01ae\u01af\u0007\u00e4\u0002\u0002\u01af\u01b1\u0005:\u001e\u0002", + "\u01b0\u01aa\u0003\u0002\u0002\u0002\u01b0\u01ab\u0003\u0002\u0002\u0002", + "\u01b0\u01ac\u0003\u0002\u0002\u0002\u01b0\u01ad\u0003\u0002\u0002\u0002", + "\u01b0\u01ae\u0003\u0002\u0002\u0002\u01b1\u01b4\u0003\u0002\u0002\u0002", + "\u01b2\u01b0\u0003\u0002\u0002\u0002\u01b2\u01b3\u0003\u0002\u0002\u0002", + "\u01b3\u0416\u0003\u0002\u0002\u0002\u01b4\u01b2\u0003\u0002\u0002\u0002", + "\u01b5\u01ba\u0005\u0018\r\u0002\u01b6\u01b7\u0007\u0004\u0002\u0002", + "\u01b7\u01b8\u0005\u00e4s\u0002\u01b8\u01b9\u0007\u0005\u0002\u0002", + "\u01b9\u01bb\u0003\u0002\u0002\u0002\u01ba\u01b6\u0003\u0002\u0002\u0002", + "\u01ba\u01bb\u0003\u0002\u0002\u0002\u01bb\u01bc\u0003\u0002\u0002\u0002", + "\u01bc\u01bd\u00056\u001c\u0002\u01bd\u01c2\u00058\u001d\u0002\u01be", + "\u01c0\u0007\u0018\u0002\u0002\u01bf\u01be\u0003\u0002\u0002\u0002\u01bf", + "\u01c0\u0003\u0002\u0002\u0002\u01c0\u01c1\u0003\u0002\u0002\u0002\u01c1", + "\u01c3\u0005\"\u0012\u0002\u01c2\u01bf\u0003\u0002\u0002\u0002\u01c2", + "\u01c3\u0003\u0002\u0002\u0002\u01c3\u0416\u0003\u0002\u0002\u0002\u01c4", + "\u01c5\u0007\u0012\u0002\u0002\u01c5\u01c6\u0007\u00e1\u0002\u0002\u01c6", + "\u01c8\u0005\u00aeX\u0002\u01c7\u01c9\u0005(\u0015\u0002\u01c8\u01c7", + "\u0003\u0002\u0002\u0002\u01c8\u01c9\u0003\u0002\u0002\u0002\u01c9\u01ca", + "\u0003\u0002\u0002\u0002\u01ca\u01cb\u00073\u0002\u0002\u01cb\u01d3", + "\u0007\u00db\u0002\u0002\u01cc\u01d4\u0005\u0102\u0082\u0002\u01cd\u01ce", + "\u0007b\u0002\u0002\u01ce\u01cf\u0007.\u0002\u0002\u01cf\u01d4\u0005", + "\u0098M\u0002\u01d0\u01d1\u0007b\u0002\u0002\u01d1\u01d2\u0007\u0010", + "\u0002\u0002\u01d2\u01d4\u0007.\u0002\u0002\u01d3\u01cc\u0003\u0002", + "\u0002\u0002\u01d3\u01cd\u0003\u0002\u0002\u0002\u01d3\u01d0\u0003\u0002", + "\u0002\u0002\u01d3\u01d4\u0003\u0002\u0002\u0002\u01d4\u0416\u0003\u0002", + "\u0002\u0002\u01d5\u01d6\u0007\u0011\u0002\u0002\u01d6\u01d7\u0007\u00e1", + "\u0002\u0002\u01d7\u01d8\u0005\u00aeX\u0002\u01d8\u01d9\u0007\u000e", + "\u0002\u0002\u01d9\u01da\t\u0006\u0002\u0002\u01da\u01db\u0005\u00e0", + "q\u0002\u01db\u0416\u0003\u0002\u0002\u0002\u01dc\u01dd\u0007\u0011", + "\u0002\u0002\u01dd\u01de\u0007\u00e1\u0002\u0002\u01de\u01df\u0005\u00ae", + "X\u0002\u01df\u01e0\u0007\u000e\u0002\u0002\u01e0\u01e1\t\u0006\u0002", + "\u0002\u01e1\u01e2\u0007\u0004\u0002\u0002\u01e2\u01e3\u0005\u00e0q", + "\u0002\u01e3\u01e4\u0007\u0005\u0002\u0002\u01e4\u0416\u0003\u0002\u0002", + "\u0002\u01e5\u01e6\u0007\u0011\u0002\u0002\u01e6\u01e7\u0007\u00e1\u0002", + "\u0002\u01e7\u01e8\u0005\u00aeX\u0002\u01e8\u01e9\u0007\u00bd\u0002", + "\u0002\u01e9\u01ea\u0007-\u0002\u0002\u01ea\u01eb\u0005\u00aeX\u0002", + "\u01eb\u01ec\u0007\u00e9\u0002\u0002\u01ec\u01ed\u0005\u00fe\u0080\u0002", + "\u01ed\u0416\u0003\u0002\u0002\u0002\u01ee\u01ef\u0007\u0011\u0002\u0002", + "\u01ef\u01f0\u0007\u00e1\u0002\u0002\u01f0\u01f1\u0005\u00aeX\u0002", + "\u01f1\u01f2\u0007N\u0002\u0002\u01f2\u01f3\t\u0006\u0002\u0002\u01f3", + "\u01f4\u0007\u0004\u0002\u0002\u01f4\u01f5\u0005\u00acW\u0002\u01f5", + "\u01f6\u0007\u0005\u0002\u0002\u01f6\u0416\u0003\u0002\u0002\u0002\u01f7", + "\u01f8\u0007\u0011\u0002\u0002\u01f8\u01f9\u0007\u00e1\u0002\u0002\u01f9", + "\u01fa\u0005\u00aeX\u0002\u01fa\u01fb\u0007N\u0002\u0002\u01fb\u01fc", + "\t\u0006\u0002\u0002\u01fc\u01fd\u0005\u00acW\u0002\u01fd\u0416\u0003", + "\u0002\u0002\u0002\u01fe\u01ff\u0007\u0011\u0002\u0002\u01ff\u0200\t", + "\u0007\u0002\u0002\u0200\u0201\u0005\u00aeX\u0002\u0201\u0202\u0007", + "\u00bd\u0002\u0002\u0202\u0203\u0007\u00e9\u0002\u0002\u0203\u0204\u0005", + "\u00aeX\u0002\u0204\u0416\u0003\u0002\u0002\u0002\u0205\u0206\u0007", + "\u0011\u0002\u0002\u0206\u0207\t\u0007\u0002\u0002\u0207\u0208\u0005", + "\u00aeX\u0002\u0208\u0209\u0007\u00d2\u0002\u0002\u0209\u020a\u0007", + "\u00e4\u0002\u0002\u020a\u020b\u0005:\u001e\u0002\u020b\u0416\u0003", + "\u0002\u0002\u0002\u020c\u020d\u0007\u0011\u0002\u0002\u020d\u020e\t", + "\u0007\u0002\u0002\u020e\u020f\u0005\u00aeX\u0002\u020f\u0210\u0007", + "\u00fa\u0002\u0002\u0210\u0213\u0007\u00e4\u0002\u0002\u0211\u0212\u0007", + "o\u0002\u0002\u0212\u0214\u0007U\u0002\u0002\u0213\u0211\u0003\u0002", + "\u0002\u0002\u0213\u0214\u0003\u0002\u0002\u0002\u0214\u0215\u0003\u0002", + "\u0002\u0002\u0215\u0216\u0005:\u001e\u0002\u0216\u0416\u0003\u0002", + "\u0002\u0002\u0217\u0218\u0007\u0011\u0002\u0002\u0218\u0219\u0007\u00e1", + "\u0002\u0002\u0219\u021a\u0005\u00aeX\u0002\u021a\u021c\t\b\u0002\u0002", + "\u021b\u021d\u0007-\u0002\u0002\u021c\u021b\u0003\u0002\u0002\u0002", + "\u021c\u021d\u0003\u0002\u0002\u0002\u021d\u021e\u0003\u0002\u0002\u0002", + "\u021e\u0220\u0005\u00aeX\u0002\u021f\u0221\u0005\u010a\u0086\u0002", + "\u0220\u021f\u0003\u0002\u0002\u0002\u0220\u0221\u0003\u0002\u0002\u0002", + "\u0221\u0416\u0003\u0002\u0002\u0002\u0222\u0223\u0007\u0011\u0002\u0002", + "\u0223\u0224\u0007\u00e1\u0002\u0002\u0224\u0226\u0005\u00aeX\u0002", + "\u0225\u0227\u0005(\u0015\u0002\u0226\u0225\u0003\u0002\u0002\u0002", + "\u0226\u0227\u0003\u0002\u0002\u0002\u0227\u0228\u0003\u0002\u0002\u0002", + "\u0228\u022a\u0007%\u0002\u0002\u0229\u022b\u0007-\u0002\u0002\u022a", + "\u0229\u0003\u0002\u0002\u0002\u022a\u022b\u0003\u0002\u0002\u0002\u022b", + "\u022c\u0003\u0002\u0002\u0002\u022c\u022d\u0005\u00aeX\u0002\u022d", + "\u022f\u0005\u00e6t\u0002\u022e\u0230\u0005\u00dco\u0002\u022f\u022e", + "\u0003\u0002\u0002\u0002\u022f\u0230\u0003\u0002\u0002\u0002\u0230\u0416", + "\u0003\u0002\u0002\u0002\u0231\u0232\u0007\u0011\u0002\u0002\u0232\u0233", + "\u0007\u00e1\u0002\u0002\u0233\u0235\u0005\u00aeX\u0002\u0234\u0236", + "\u0005(\u0015\u0002\u0235\u0234\u0003\u0002\u0002\u0002\u0235\u0236", + "\u0003\u0002\u0002\u0002\u0236\u0237\u0003\u0002\u0002\u0002\u0237\u0238", + "\u0007\u00bf\u0002\u0002\u0238\u0239\u0007.\u0002\u0002\u0239\u023a", + "\u0007\u0004\u0002\u0002\u023a\u023b\u0005\u00e0q\u0002\u023b\u023c", + "\u0007\u0005\u0002\u0002\u023c\u0416\u0003\u0002\u0002\u0002\u023d\u023e", + "\u0007\u0011\u0002\u0002\u023e\u023f\u0007\u00e1\u0002\u0002\u023f\u0241", + "\u0005\u00aeX\u0002\u0240\u0242\u0005(\u0015\u0002\u0241\u0240\u0003", + "\u0002\u0002\u0002\u0241\u0242\u0003\u0002\u0002\u0002\u0242\u0243\u0003", + "\u0002\u0002\u0002\u0243\u0244\u0007\u00d2\u0002\u0002\u0244\u0245\u0007", + "\u00cf\u0002\u0002\u0245\u0249\u0007\u0119\u0002\u0002\u0246\u0247\u0007", + "\u0105\u0002\u0002\u0247\u0248\u0007\u00d0\u0002\u0002\u0248\u024a\u0005", + ":\u001e\u0002\u0249\u0246\u0003\u0002\u0002\u0002\u0249\u024a\u0003", + "\u0002\u0002\u0002\u024a\u0416\u0003\u0002\u0002\u0002\u024b\u024c\u0007", + "\u0011\u0002\u0002\u024c\u024d\u0007\u00e1\u0002\u0002\u024d\u024f\u0005", + "\u00aeX\u0002\u024e\u0250\u0005(\u0015\u0002\u024f\u024e\u0003\u0002", + "\u0002\u0002\u024f\u0250\u0003\u0002\u0002\u0002\u0250\u0251\u0003\u0002", + "\u0002\u0002\u0251\u0252\u0007\u00d2\u0002\u0002\u0252\u0253\u0007\u00d0", + "\u0002\u0002\u0253\u0254\u0005:\u001e\u0002\u0254\u0416\u0003\u0002", + "\u0002\u0002\u0255\u0256\u0007\u0011\u0002\u0002\u0256\u0257\t\u0007", + "\u0002\u0002\u0257\u0258\u0005\u00aeX\u0002\u0258\u025c\u0007\u000e", + "\u0002\u0002\u0259\u025a\u0007o\u0002\u0002\u025a\u025b\u0007\u0098", + "\u0002\u0002\u025b\u025d\u0007U\u0002\u0002\u025c\u0259\u0003\u0002", + "\u0002\u0002\u025c\u025d\u0003\u0002\u0002\u0002\u025d\u025f\u0003\u0002", + "\u0002\u0002\u025e\u0260\u0005&\u0014\u0002\u025f\u025e\u0003\u0002", + "\u0002\u0002\u0260\u0261\u0003\u0002\u0002\u0002\u0261\u025f\u0003\u0002", + "\u0002\u0002\u0261\u0262\u0003\u0002\u0002\u0002\u0262\u0416\u0003\u0002", + "\u0002\u0002\u0263\u0264\u0007\u0011\u0002\u0002\u0264\u0265\u0007\u00e1", + "\u0002\u0002\u0265\u0266\u0005\u00aeX\u0002\u0266\u0267\u0005(\u0015", + "\u0002\u0267\u0268\u0007\u00bd\u0002\u0002\u0268\u0269\u0007\u00e9\u0002", + "\u0002\u0269\u026a\u0005(\u0015\u0002\u026a\u0416\u0003\u0002\u0002", + "\u0002\u026b\u026c\u0007\u0011\u0002\u0002\u026c\u026d\t\u0007\u0002", + "\u0002\u026d\u026e\u0005\u00aeX\u0002\u026e\u0271\u0007N\u0002\u0002", + "\u026f\u0270\u0007o\u0002\u0002\u0270\u0272\u0007U\u0002\u0002\u0271", + "\u026f\u0003\u0002\u0002\u0002\u0271\u0272\u0003\u0002\u0002\u0002\u0272", + "\u0273\u0003\u0002\u0002\u0002\u0273\u0278\u0005(\u0015\u0002\u0274", + "\u0275\u0007\u0006\u0002\u0002\u0275\u0277\u0005(\u0015\u0002\u0276", + "\u0274\u0003\u0002\u0002\u0002\u0277\u027a\u0003\u0002\u0002\u0002\u0278", + "\u0276\u0003\u0002\u0002\u0002\u0278\u0279\u0003\u0002\u0002\u0002\u0279", + "\u027c\u0003\u0002\u0002\u0002\u027a\u0278\u0003\u0002\u0002\u0002\u027b", + "\u027d\u0007\u00b4\u0002\u0002\u027c\u027b\u0003\u0002\u0002\u0002\u027c", + "\u027d\u0003\u0002\u0002\u0002\u027d\u0416\u0003\u0002\u0002\u0002\u027e", + "\u027f\u0007\u0011\u0002\u0002\u027f\u0280\u0007\u00e1\u0002\u0002\u0280", + "\u0282\u0005\u00aeX\u0002\u0281\u0283\u0005(\u0015\u0002\u0282\u0281", + "\u0003\u0002\u0002\u0002\u0282\u0283\u0003\u0002\u0002\u0002\u0283\u0284", + "\u0003\u0002\u0002\u0002\u0284\u0285\u0007\u00d2\u0002\u0002\u0285\u0286", + "\u0005\u001e\u0010\u0002\u0286\u0416\u0003\u0002\u0002\u0002\u0287\u0288", + "\u0007\u0011\u0002\u0002\u0288\u0289\u0007\u00e1\u0002\u0002\u0289\u028a", + "\u0005\u00aeX\u0002\u028a\u028b\u0007\u00b9\u0002\u0002\u028b\u028c", + "\u0007\u00ab\u0002\u0002\u028c\u0416\u0003\u0002\u0002\u0002\u028d\u028e", + "\u0007N\u0002\u0002\u028e\u0291\u0007\u00e1\u0002\u0002\u028f\u0290", + "\u0007o\u0002\u0002\u0290\u0292\u0007U\u0002\u0002\u0291\u028f\u0003", + "\u0002\u0002\u0002\u0291\u0292\u0003\u0002\u0002\u0002\u0292\u0293\u0003", + "\u0002\u0002\u0002\u0293\u0295\u0005\u00aeX\u0002\u0294\u0296\u0007", + "\u00b4\u0002\u0002\u0295\u0294\u0003\u0002\u0002\u0002\u0295\u0296\u0003", + "\u0002\u0002\u0002\u0296\u0416\u0003\u0002\u0002\u0002\u0297\u0298\u0007", + "N\u0002\u0002\u0298\u029b\u0007\u0100\u0002\u0002\u0299\u029a\u0007", + "o\u0002\u0002\u029a\u029c\u0007U\u0002\u0002\u029b\u0299\u0003\u0002", + "\u0002\u0002\u029b\u029c\u0003\u0002\u0002\u0002\u029c\u029d\u0003\u0002", + "\u0002\u0002\u029d\u0416\u0005\u00aeX\u0002\u029e\u02a1\u00077\u0002", + "\u0002\u029f\u02a0\u0007\u00a0\u0002\u0002\u02a0\u02a2\u0007\u00bf\u0002", + "\u0002\u02a1\u029f\u0003\u0002\u0002\u0002\u02a1\u02a2\u0003\u0002\u0002", + "\u0002\u02a2\u02a7\u0003\u0002\u0002\u0002\u02a3\u02a5\u0007j\u0002", + "\u0002\u02a4\u02a3\u0003\u0002\u0002\u0002\u02a4\u02a5\u0003\u0002\u0002", + "\u0002\u02a5\u02a6\u0003\u0002\u0002\u0002\u02a6\u02a8\u0007\u00e5\u0002", + "\u0002\u02a7\u02a4\u0003\u0002\u0002\u0002\u02a7\u02a8\u0003\u0002\u0002", + "\u0002\u02a8\u02a9\u0003\u0002\u0002\u0002\u02a9\u02ad\u0007\u0100\u0002", + "\u0002\u02aa\u02ab\u0007o\u0002\u0002\u02ab\u02ac\u0007\u0098\u0002", + "\u0002\u02ac\u02ae\u0007U\u0002\u0002\u02ad\u02aa\u0003\u0002\u0002", + "\u0002\u02ad\u02ae\u0003\u0002\u0002\u0002\u02ae\u02af\u0003\u0002\u0002", + "\u0002\u02af\u02b1\u0005\u00aeX\u0002\u02b0\u02b2\u0005\u009eP\u0002", + "\u02b1\u02b0\u0003\u0002\u0002\u0002\u02b1\u02b2\u0003\u0002\u0002\u0002", + "\u02b2\u02bb\u0003\u0002\u0002\u0002\u02b3\u02ba\u0005 \u0011\u0002", + "\u02b4\u02b5\u0007\u00aa\u0002\u0002\u02b5\u02b6\u0007\u009c\u0002\u0002", + "\u02b6\u02ba\u0005\u0096L\u0002\u02b7\u02b8\u0007\u00e4\u0002\u0002", + "\u02b8\u02ba\u0005:\u001e\u0002\u02b9\u02b3\u0003\u0002\u0002\u0002", + "\u02b9\u02b4\u0003\u0002\u0002\u0002\u02b9\u02b7\u0003\u0002\u0002\u0002", + "\u02ba\u02bd\u0003\u0002\u0002\u0002\u02bb\u02b9\u0003\u0002\u0002\u0002", + "\u02bb\u02bc\u0003\u0002\u0002\u0002\u02bc\u02be\u0003\u0002\u0002\u0002", + "\u02bd\u02bb\u0003\u0002\u0002\u0002\u02be\u02bf\u0007\u0018\u0002\u0002", + "\u02bf\u02c0\u0005\"\u0012\u0002\u02c0\u0416\u0003\u0002\u0002\u0002", + "\u02c1\u02c4\u00077\u0002\u0002\u02c2\u02c3\u0007\u00a0\u0002\u0002", + "\u02c3\u02c5\u0007\u00bf\u0002\u0002\u02c4\u02c2\u0003\u0002\u0002\u0002", + "\u02c4\u02c5\u0003\u0002\u0002\u0002\u02c5\u02c7\u0003\u0002\u0002\u0002", + "\u02c6\u02c8\u0007j\u0002\u0002\u02c7\u02c6\u0003\u0002\u0002\u0002", + "\u02c7\u02c8\u0003\u0002\u0002\u0002\u02c8\u02c9\u0003\u0002\u0002\u0002", + "\u02c9\u02ca\u0007\u00e5\u0002\u0002\u02ca\u02cb\u0007\u0100\u0002\u0002", + "\u02cb\u02d0\u0005\u00b0Y\u0002\u02cc\u02cd\u0007\u0004\u0002\u0002", + "\u02cd\u02ce\u0005\u00e4s\u0002\u02ce\u02cf\u0007\u0005\u0002\u0002", + "\u02cf\u02d1\u0003\u0002\u0002\u0002\u02d0\u02cc\u0003\u0002\u0002\u0002", + "\u02d0\u02d1\u0003\u0002\u0002\u0002\u02d1\u02d2\u0003\u0002\u0002\u0002", + "\u02d2\u02d5\u00056\u001c\u0002\u02d3\u02d4\u0007\u009f\u0002\u0002", + "\u02d4\u02d6\u0005:\u001e\u0002\u02d5\u02d3\u0003\u0002\u0002\u0002", + "\u02d5\u02d6\u0003\u0002\u0002\u0002\u02d6\u0416\u0003\u0002\u0002\u0002", + "\u02d7\u02d8\u0007\u0011\u0002\u0002\u02d8\u02d9\u0007\u0100\u0002\u0002", + "\u02d9\u02db\u0005\u00aeX\u0002\u02da\u02dc\u0007\u0018\u0002\u0002", + "\u02db\u02da\u0003\u0002\u0002\u0002\u02db\u02dc\u0003\u0002\u0002\u0002", + "\u02dc\u02dd\u0003\u0002\u0002\u0002\u02dd\u02de\u0005\"\u0012\u0002", + "\u02de\u0416\u0003\u0002\u0002\u0002\u02df\u02e2\u00077\u0002\u0002", + "\u02e0\u02e1\u0007\u00a0\u0002\u0002\u02e1\u02e3\u0007\u00bf\u0002\u0002", + "\u02e2\u02e0\u0003\u0002\u0002\u0002\u02e2\u02e3\u0003\u0002\u0002\u0002", + "\u02e3\u02e5\u0003\u0002\u0002\u0002\u02e4\u02e6\u0007\u00e5\u0002\u0002", + "\u02e5\u02e4\u0003\u0002\u0002\u0002\u02e5\u02e6\u0003\u0002\u0002\u0002", + "\u02e6\u02e7\u0003\u0002\u0002\u0002\u02e7\u02eb\u0007h\u0002\u0002", + "\u02e8\u02e9\u0007o\u0002\u0002\u02e9\u02ea\u0007\u0098\u0002\u0002", + "\u02ea\u02ec\u0007U\u0002\u0002\u02eb\u02e8\u0003\u0002\u0002\u0002", + "\u02eb\u02ec\u0003\u0002\u0002\u0002\u02ec\u02ed\u0003\u0002\u0002\u0002", + "\u02ed\u02ee\u0005\u00aeX\u0002\u02ee\u02ef\u0007\u0018\u0002\u0002", + "\u02ef\u02f9\u0007\u0119\u0002\u0002\u02f0\u02f1\u0007\u00fe\u0002\u0002", + "\u02f1\u02f6\u0005L\'\u0002\u02f2\u02f3\u0007\u0006\u0002\u0002\u02f3", + "\u02f5\u0005L\'\u0002\u02f4\u02f2\u0003\u0002\u0002\u0002\u02f5\u02f8", + "\u0003\u0002\u0002\u0002\u02f6\u02f4\u0003\u0002\u0002\u0002\u02f6\u02f7", + "\u0003\u0002\u0002\u0002\u02f7\u02fa\u0003\u0002\u0002\u0002\u02f8\u02f6", + "\u0003\u0002\u0002\u0002\u02f9\u02f0\u0003\u0002\u0002\u0002\u02f9\u02fa", + "\u0003\u0002\u0002\u0002\u02fa\u0416\u0003\u0002\u0002\u0002\u02fb\u02fd", + "\u0007N\u0002\u0002\u02fc\u02fe\u0007\u00e5\u0002\u0002\u02fd\u02fc", + "\u0003\u0002\u0002\u0002\u02fd\u02fe\u0003\u0002\u0002\u0002\u02fe\u02ff", + "\u0003\u0002\u0002\u0002\u02ff\u0302\u0007h\u0002\u0002\u0300\u0301", + "\u0007o\u0002\u0002\u0301\u0303\u0007U\u0002\u0002\u0302\u0300\u0003", + "\u0002\u0002\u0002\u0302\u0303\u0003\u0002\u0002\u0002\u0303\u0304\u0003", + "\u0002\u0002\u0002\u0304\u0416\u0005\u00aeX\u0002\u0305\u0307\u0007", + "V\u0002\u0002\u0306\u0308\t\t\u0002\u0002\u0307\u0306\u0003\u0002\u0002", + "\u0002\u0307\u0308\u0003\u0002\u0002\u0002\u0308\u0309\u0003\u0002\u0002", + "\u0002\u0309\u0416\u0005\u0010\t\u0002\u030a\u030b\u0007\u00d5\u0002", + "\u0002\u030b\u030e\u0007\u00e2\u0002\u0002\u030c\u030d\t\u0005\u0002", + "\u0002\u030d\u030f\u0005\u00aeX\u0002\u030e\u030c\u0003\u0002\u0002", + "\u0002\u030e\u030f\u0003\u0002\u0002\u0002\u030f\u0314\u0003\u0002\u0002", + "\u0002\u0310\u0312\u0007\u0085\u0002\u0002\u0311\u0310\u0003\u0002\u0002", + "\u0002\u0311\u0312\u0003\u0002\u0002\u0002\u0312\u0313\u0003\u0002\u0002", + "\u0002\u0313\u0315\u0007\u0119\u0002\u0002\u0314\u0311\u0003\u0002\u0002", + "\u0002\u0314\u0315\u0003\u0002\u0002\u0002\u0315\u0416\u0003\u0002\u0002", + "\u0002\u0316\u0317\u0007\u00d5\u0002\u0002\u0317\u0318\u0007\u00e1\u0002", + "\u0002\u0318\u031b\u0007X\u0002\u0002\u0319\u031a\t\u0005\u0002\u0002", + "\u031a\u031c\u0005\u00aeX\u0002\u031b\u0319\u0003\u0002\u0002\u0002", + "\u031b\u031c\u0003\u0002\u0002\u0002\u031c\u031d\u0003\u0002\u0002\u0002", + "\u031d\u031e\u0007\u0085\u0002\u0002\u031e\u0320\u0007\u0119\u0002\u0002", + "\u031f\u0321\u0005(\u0015\u0002\u0320\u031f\u0003\u0002\u0002\u0002", + "\u0320\u0321\u0003\u0002\u0002\u0002\u0321\u0416\u0003\u0002\u0002\u0002", + "\u0322\u0323\u0007\u00d5\u0002\u0002\u0323\u0324\u0007\u00e4\u0002\u0002", + "\u0324\u0329\u0005\u00aeX\u0002\u0325\u0326\u0007\u0004\u0002\u0002", + "\u0326\u0327\u0005> \u0002\u0327\u0328\u0007\u0005\u0002\u0002\u0328", + "\u032a\u0003\u0002\u0002\u0002\u0329\u0325\u0003\u0002\u0002\u0002\u0329", + "\u032a\u0003\u0002\u0002\u0002\u032a\u0416\u0003\u0002\u0002\u0002\u032b", + "\u032c\u0007\u00d5\u0002\u0002\u032c\u032d\u0007.\u0002\u0002\u032d", + "\u032e\t\u0005\u0002\u0002\u032e\u0331\u0005\u00aeX\u0002\u032f\u0330", + "\t\u0005\u0002\u0002\u0330\u0332\u0005\u00aeX\u0002\u0331\u032f\u0003", + "\u0002\u0002\u0002\u0331\u0332\u0003\u0002\u0002\u0002\u0332\u0416\u0003", + "\u0002\u0002\u0002\u0333\u0334\u0007\u00d5\u0002\u0002\u0334\u0337\u0007", + "\u0101\u0002\u0002\u0335\u0336\t\u0005\u0002\u0002\u0336\u0338\u0005", + "\u00aeX\u0002\u0337\u0335\u0003\u0002\u0002\u0002\u0337\u0338\u0003", + "\u0002\u0002\u0002\u0338\u033d\u0003\u0002\u0002\u0002\u0339\u033b\u0007", + "\u0085\u0002\u0002\u033a\u0339\u0003\u0002\u0002\u0002\u033a\u033b\u0003", + "\u0002\u0002\u0002\u033b\u033c\u0003\u0002\u0002\u0002\u033c\u033e\u0007", + "\u0119\u0002\u0002\u033d\u033a\u0003\u0002\u0002\u0002\u033d\u033e\u0003", + "\u0002\u0002\u0002\u033e\u0416\u0003\u0002\u0002\u0002\u033f\u0340\u0007", + "\u00d5\u0002\u0002\u0340\u0341\u0007\u00ab\u0002\u0002\u0341\u0343\u0005", + "\u00aeX\u0002\u0342\u0344\u0005(\u0015\u0002\u0343\u0342\u0003\u0002", + "\u0002\u0002\u0343\u0344\u0003\u0002\u0002\u0002\u0344\u0416\u0003\u0002", + "\u0002\u0002\u0345\u0347\u0007\u00d5\u0002\u0002\u0346\u0348\u0005\u0102", + "\u0082\u0002\u0347\u0346\u0003\u0002\u0002\u0002\u0347\u0348\u0003\u0002", + "\u0002\u0002\u0348\u0349\u0003\u0002\u0002\u0002\u0349\u0351\u0007i", + "\u0002\u0002\u034a\u034c\u0007\u0085\u0002\u0002\u034b\u034a\u0003\u0002", + "\u0002\u0002\u034b\u034c\u0003\u0002\u0002\u0002\u034c\u034f\u0003\u0002", + "\u0002\u0002\u034d\u0350\u0005\u00aeX\u0002\u034e\u0350\u0007\u0119", + "\u0002\u0002\u034f\u034d\u0003\u0002\u0002\u0002\u034f\u034e\u0003\u0002", + "\u0002\u0002\u0350\u0352\u0003\u0002\u0002\u0002\u0351\u034b\u0003\u0002", + "\u0002\u0002\u0351\u0352\u0003\u0002\u0002\u0002\u0352\u0416\u0003\u0002", + "\u0002\u0002\u0353\u0354\u0007\u00d5\u0002\u0002\u0354\u0355\u00077", + "\u0002\u0002\u0355\u0356\u0007\u00e1\u0002\u0002\u0356\u0359\u0005\u00ae", + "X\u0002\u0357\u0358\u0007\u0018\u0002\u0002\u0358\u035a\u0007\u00cf", + "\u0002\u0002\u0359\u0357\u0003\u0002\u0002\u0002\u0359\u035a\u0003\u0002", + "\u0002\u0002\u035a\u0416\u0003\u0002\u0002\u0002\u035b\u035c\u0007\u00d5", + "\u0002\u0002\u035c\u035d\u0007:\u0002\u0002\u035d\u0416\u0007\u0094", + "\u0002\u0002\u035e\u035f\t\n\u0002\u0002\u035f\u0361\u0007h\u0002\u0002", + "\u0360\u0362\u0007X\u0002\u0002\u0361\u0360\u0003\u0002\u0002\u0002", + "\u0361\u0362\u0003\u0002\u0002\u0002\u0362\u0363\u0003\u0002\u0002\u0002", + "\u0363\u0416\u0005.\u0018\u0002\u0364\u0365\t\n\u0002\u0002\u0365\u0367", + "\u0005,\u0017\u0002\u0366\u0368\u0007X\u0002\u0002\u0367\u0366\u0003", + "\u0002\u0002\u0002\u0367\u0368\u0003\u0002\u0002\u0002\u0368\u0369\u0003", + "\u0002\u0002\u0002\u0369\u036a\u0005\u00aeX\u0002\u036a\u0416\u0003", + "\u0002\u0002\u0002\u036b\u036d\t\n\u0002\u0002\u036c\u036e\u0007\u00e1", + "\u0002\u0002\u036d\u036c\u0003\u0002\u0002\u0002\u036d\u036e\u0003\u0002", + "\u0002\u0002\u036e\u0370\u0003\u0002\u0002\u0002\u036f\u0371\t\u000b", + "\u0002\u0002\u0370\u036f\u0003\u0002\u0002\u0002\u0370\u0371\u0003\u0002", + "\u0002\u0002\u0371\u0372\u0003\u0002\u0002\u0002\u0372\u0374\u0005\u00ae", + "X\u0002\u0373\u0375\u0005(\u0015\u0002\u0374\u0373\u0003\u0002\u0002", + "\u0002\u0374\u0375\u0003\u0002\u0002\u0002\u0375\u0377\u0003\u0002\u0002", + "\u0002\u0376\u0378\u00050\u0019\u0002\u0377\u0376\u0003\u0002\u0002", + "\u0002\u0377\u0378\u0003\u0002\u0002\u0002\u0378\u0416\u0003\u0002\u0002", + "\u0002\u0379\u037b\t\n\u0002\u0002\u037a\u037c\u0007\u00b5\u0002\u0002", + "\u037b\u037a\u0003\u0002\u0002\u0002\u037b\u037c\u0003\u0002\u0002\u0002", + "\u037c\u037d\u0003\u0002\u0002\u0002\u037d\u0416\u0005\"\u0012\u0002", + "\u037e\u037f\u0007/\u0002\u0002\u037f\u0380\u0007\u009c\u0002\u0002", + "\u0380\u0381\u0005,\u0017\u0002\u0381\u0382\u0005\u00aeX\u0002\u0382", + "\u0383\u0007|\u0002\u0002\u0383\u0384\t\f\u0002\u0002\u0384\u0416\u0003", + "\u0002\u0002\u0002\u0385\u0386\u0007/\u0002\u0002\u0386\u0387\u0007", + "\u009c\u0002\u0002\u0387\u0388\u0007\u00e1\u0002\u0002\u0388\u0389\u0005", + "\u00aeX\u0002\u0389\u038a\u0007|\u0002\u0002\u038a\u038b\t\f\u0002\u0002", + "\u038b\u0416\u0003\u0002\u0002\u0002\u038c\u038d\u0007\u00bc\u0002\u0002", + "\u038d\u038e\u0007\u00e1\u0002\u0002\u038e\u0416\u0005\u00aeX\u0002", + "\u038f\u0390\u0007\u00bc\u0002\u0002\u0390\u0391\u0007h\u0002\u0002", + "\u0391\u0416\u0005\u00aeX\u0002\u0392\u039a\u0007\u00bc\u0002\u0002", + "\u0393\u039b\u0007\u0119\u0002\u0002\u0394\u0396\u000b\u0002\u0002\u0002", + "\u0395\u0394\u0003\u0002\u0002\u0002\u0396\u0399\u0003\u0002\u0002\u0002", + "\u0397\u0398\u0003\u0002\u0002\u0002\u0397\u0395\u0003\u0002\u0002\u0002", + "\u0398\u039b\u0003\u0002\u0002\u0002\u0399\u0397\u0003\u0002\u0002\u0002", + "\u039a\u0393\u0003\u0002\u0002\u0002\u039a\u0397\u0003\u0002\u0002\u0002", + "\u039b\u0416\u0003\u0002\u0002\u0002\u039c\u039e\u0007!\u0002\u0002", + "\u039d\u039f\u0007\u0082\u0002\u0002\u039e\u039d\u0003\u0002\u0002\u0002", + "\u039e\u039f\u0003\u0002\u0002\u0002\u039f\u03a0\u0003\u0002\u0002\u0002", + "\u03a0\u03a1\u0007\u00e1\u0002\u0002\u03a1\u03a4\u0005\u00aeX\u0002", + "\u03a2\u03a3\u0007\u009f\u0002\u0002\u03a3\u03a5\u0005:\u001e\u0002", + "\u03a4\u03a2\u0003\u0002\u0002\u0002\u03a4\u03a5\u0003\u0002\u0002\u0002", + "\u03a5\u03aa\u0003\u0002\u0002\u0002\u03a6\u03a8\u0007\u0018\u0002\u0002", + "\u03a7\u03a6\u0003\u0002\u0002\u0002\u03a7\u03a8\u0003\u0002\u0002\u0002", + "\u03a8\u03a9\u0003\u0002\u0002\u0002\u03a9\u03ab\u0005\"\u0012\u0002", + "\u03aa\u03a7\u0003\u0002\u0002\u0002\u03aa\u03ab\u0003\u0002\u0002\u0002", + "\u03ab\u0416\u0003\u0002\u0002\u0002\u03ac\u03ad\u0007\u00f5\u0002\u0002", + "\u03ad\u03b0\u0007\u00e1\u0002\u0002\u03ae\u03af\u0007o\u0002\u0002", + "\u03af\u03b1\u0007U\u0002\u0002\u03b0\u03ae\u0003\u0002\u0002\u0002", + "\u03b0\u03b1\u0003\u0002\u0002\u0002\u03b1\u03b2\u0003\u0002\u0002\u0002", + "\u03b2\u0416\u0005\u00aeX\u0002\u03b3\u03b4\u0007\'\u0002\u0002\u03b4", + "\u0416\u0007!\u0002\u0002\u03b5\u03b6\u0007\u0089\u0002\u0002\u03b6", + "\u03b8\u0007?\u0002\u0002\u03b7\u03b9\u0007\u008a\u0002\u0002\u03b8", + "\u03b7\u0003\u0002\u0002\u0002\u03b8\u03b9\u0003\u0002\u0002\u0002\u03b9", + "\u03ba\u0003\u0002\u0002\u0002\u03ba\u03bb\u0007v\u0002\u0002\u03bb", + "\u03bd\u0007\u0119\u0002\u0002\u03bc\u03be\u0007\u00a8\u0002\u0002\u03bd", + "\u03bc\u0003\u0002\u0002\u0002\u03bd\u03be\u0003\u0002\u0002\u0002\u03be", + "\u03bf\u0003\u0002\u0002\u0002\u03bf\u03c0\u0007{\u0002\u0002\u03c0", + "\u03c1\u0007\u00e1\u0002\u0002\u03c1\u03c3\u0005\u00aeX\u0002\u03c2", + "\u03c4\u0005(\u0015\u0002\u03c3\u03c2\u0003\u0002\u0002\u0002\u03c3", + "\u03c4\u0003\u0002\u0002\u0002\u03c4\u0416\u0003\u0002\u0002\u0002\u03c5", + "\u03c6\u0007\u00f1\u0002\u0002\u03c6\u03c7\u0007\u00e1\u0002\u0002\u03c7", + "\u03c9\u0005\u00aeX\u0002\u03c8\u03ca\u0005(\u0015\u0002\u03c9\u03c8", + "\u0003\u0002\u0002\u0002\u03c9\u03ca\u0003\u0002\u0002\u0002\u03ca\u0416", + "\u0003\u0002\u0002\u0002\u03cb\u03cc\u0007\u0093\u0002\u0002\u03cc\u03cd", + "\u0007\u00be\u0002\u0002\u03cd\u03ce\u0007\u00e1\u0002\u0002\u03ce\u0416", + "\u0005\u00aeX\u0002\u03cf\u03d0\t\r\u0002\u0002\u03d0\u03d8\u0005\u0102", + "\u0082\u0002\u03d1\u03d9\u0007\u0119\u0002\u0002\u03d2\u03d4\u000b\u0002", + "\u0002\u0002\u03d3\u03d2\u0003\u0002\u0002\u0002\u03d4\u03d7\u0003\u0002", + "\u0002\u0002\u03d5\u03d6\u0003\u0002\u0002\u0002\u03d5\u03d3\u0003\u0002", + "\u0002\u0002\u03d6\u03d9\u0003\u0002\u0002\u0002\u03d7\u03d5\u0003\u0002", + "\u0002\u0002\u03d8\u03d1\u0003\u0002\u0002\u0002\u03d8\u03d5\u0003\u0002", + "\u0002\u0002\u03d9\u0416\u0003\u0002\u0002\u0002\u03da\u03db\u0007\u00d2", + "\u0002\u0002\u03db\u03df\u0007\u00c5\u0002\u0002\u03dc\u03de\u000b\u0002", + "\u0002\u0002\u03dd\u03dc\u0003\u0002\u0002\u0002\u03de\u03e1\u0003\u0002", + "\u0002\u0002\u03df\u03e0\u0003\u0002\u0002\u0002\u03df\u03dd\u0003\u0002", + "\u0002\u0002\u03e0\u0416\u0003\u0002\u0002\u0002\u03e1\u03df\u0003\u0002", + "\u0002\u0002\u03e2\u03e3\u0007\u00d2\u0002\u0002\u03e3\u03e4\u0007\u00e8", + "\u0002\u0002\u03e4\u03e5\u0007\u0106\u0002\u0002\u03e5\u0416\u0005\u00d0", + "i\u0002\u03e6\u03e7\u0007\u00d2\u0002\u0002\u03e7\u03e8\u0007\u00e8", + "\u0002\u0002\u03e8\u03e9\u0007\u0106\u0002\u0002\u03e9\u0416\t\u000e", + "\u0002\u0002\u03ea\u03eb\u0007\u00d2\u0002\u0002\u03eb\u03ec\u0007\u00e8", + "\u0002\u0002\u03ec\u03f0\u0007\u0106\u0002\u0002\u03ed\u03ef\u000b\u0002", + "\u0002\u0002\u03ee\u03ed\u0003\u0002\u0002\u0002\u03ef\u03f2\u0003\u0002", + "\u0002\u0002\u03f0\u03f1\u0003\u0002\u0002\u0002\u03f0\u03ee\u0003\u0002", + "\u0002\u0002\u03f1\u0416\u0003\u0002\u0002\u0002\u03f2\u03f0\u0003\u0002", + "\u0002\u0002\u03f3\u03f4\u0007\u00d2\u0002\u0002\u03f4\u03fc\u0005\u0012", + "\n\u0002\u03f5\u03f9\u0007\u0107\u0002\u0002\u03f6\u03f8\u000b\u0002", + "\u0002\u0002\u03f7\u03f6\u0003\u0002\u0002\u0002\u03f8\u03fb\u0003\u0002", + "\u0002\u0002\u03f9\u03fa\u0003\u0002\u0002\u0002\u03f9\u03f7\u0003\u0002", + "\u0002\u0002\u03fa\u03fd\u0003\u0002\u0002\u0002\u03fb\u03f9\u0003\u0002", + "\u0002\u0002\u03fc\u03f5\u0003\u0002\u0002\u0002\u03fc\u03fd\u0003\u0002", + "\u0002\u0002\u03fd\u0416\u0003\u0002\u0002\u0002\u03fe\u0402\u0007\u00d2", + "\u0002\u0002\u03ff\u0401\u000b\u0002\u0002\u0002\u0400\u03ff\u0003\u0002", + "\u0002\u0002\u0401\u0404\u0003\u0002\u0002\u0002\u0402\u0403\u0003\u0002", + "\u0002\u0002\u0402\u0400\u0003\u0002\u0002\u0002\u0403\u0416\u0003\u0002", + "\u0002\u0002\u0404\u0402\u0003\u0002\u0002\u0002\u0405\u0406\u0007\u00c0", + "\u0002\u0002\u0406\u0416\u0005\u0012\n\u0002\u0407\u040b\u0007\u00c0", + "\u0002\u0002\u0408\u040a\u000b\u0002\u0002\u0002\u0409\u0408\u0003\u0002", + "\u0002\u0002\u040a\u040d\u0003\u0002\u0002\u0002\u040b\u040c\u0003\u0002", + "\u0002\u0002\u040b\u0409\u0003\u0002\u0002\u0002\u040c\u0416\u0003\u0002", + "\u0002\u0002\u040d\u040b\u0003\u0002\u0002\u0002\u040e\u0412\u0005\u0014", + "\u000b\u0002\u040f\u0411\u000b\u0002\u0002\u0002\u0410\u040f\u0003\u0002", + "\u0002\u0002\u0411\u0414\u0003\u0002\u0002\u0002\u0412\u0413\u0003\u0002", + "\u0002\u0002\u0412\u0410\u0003\u0002\u0002\u0002\u0413\u0416\u0003\u0002", + "\u0002\u0002\u0414\u0412\u0003\u0002\u0002\u0002\u0415\u012d\u0003\u0002", + "\u0002\u0002\u0415\u012f\u0003\u0002\u0002\u0002\u0415\u0132\u0003\u0002", + "\u0002\u0002\u0415\u0137\u0003\u0002\u0002\u0002\u0415\u0149\u0003\u0002", + "\u0002\u0002\u0415\u0150\u0003\u0002\u0002\u0002\u0415\u0156\u0003\u0002", + "\u0002\u0002\u0415\u0160\u0003\u0002\u0002\u0002\u0415\u016c\u0003\u0002", + "\u0002\u0002\u0415\u017b\u0003\u0002\u0002\u0002\u0415\u01a0\u0003\u0002", + "\u0002\u0002\u0415\u01b5\u0003\u0002\u0002\u0002\u0415\u01c4\u0003\u0002", + "\u0002\u0002\u0415\u01d5\u0003\u0002\u0002\u0002\u0415\u01dc\u0003\u0002", + "\u0002\u0002\u0415\u01e5\u0003\u0002\u0002\u0002\u0415\u01ee\u0003\u0002", + "\u0002\u0002\u0415\u01f7\u0003\u0002\u0002\u0002\u0415\u01fe\u0003\u0002", + "\u0002\u0002\u0415\u0205\u0003\u0002\u0002\u0002\u0415\u020c\u0003\u0002", + "\u0002\u0002\u0415\u0217\u0003\u0002\u0002\u0002\u0415\u0222\u0003\u0002", + "\u0002\u0002\u0415\u0231\u0003\u0002\u0002\u0002\u0415\u023d\u0003\u0002", + "\u0002\u0002\u0415\u024b\u0003\u0002\u0002\u0002\u0415\u0255\u0003\u0002", + "\u0002\u0002\u0415\u0263\u0003\u0002\u0002\u0002\u0415\u026b\u0003\u0002", + "\u0002\u0002\u0415\u027e\u0003\u0002\u0002\u0002\u0415\u0287\u0003\u0002", + "\u0002\u0002\u0415\u028d\u0003\u0002\u0002\u0002\u0415\u0297\u0003\u0002", + "\u0002\u0002\u0415\u029e\u0003\u0002\u0002\u0002\u0415\u02c1\u0003\u0002", + "\u0002\u0002\u0415\u02d7\u0003\u0002\u0002\u0002\u0415\u02df\u0003\u0002", + "\u0002\u0002\u0415\u02fb\u0003\u0002\u0002\u0002\u0415\u0305\u0003\u0002", + "\u0002\u0002\u0415\u030a\u0003\u0002\u0002\u0002\u0415\u0316\u0003\u0002", + "\u0002\u0002\u0415\u0322\u0003\u0002\u0002\u0002\u0415\u032b\u0003\u0002", + "\u0002\u0002\u0415\u0333\u0003\u0002\u0002\u0002\u0415\u033f\u0003\u0002", + "\u0002\u0002\u0415\u0345\u0003\u0002\u0002\u0002\u0415\u0353\u0003\u0002", + "\u0002\u0002\u0415\u035b\u0003\u0002\u0002\u0002\u0415\u035e\u0003\u0002", + "\u0002\u0002\u0415\u0364\u0003\u0002\u0002\u0002\u0415\u036b\u0003\u0002", + "\u0002\u0002\u0415\u0379\u0003\u0002\u0002\u0002\u0415\u037e\u0003\u0002", + "\u0002\u0002\u0415\u0385\u0003\u0002\u0002\u0002\u0415\u038c\u0003\u0002", + "\u0002\u0002\u0415\u038f\u0003\u0002\u0002\u0002\u0415\u0392\u0003\u0002", + "\u0002\u0002\u0415\u039c\u0003\u0002\u0002\u0002\u0415\u03ac\u0003\u0002", + "\u0002\u0002\u0415\u03b3\u0003\u0002\u0002\u0002\u0415\u03b5\u0003\u0002", + "\u0002\u0002\u0415\u03c5\u0003\u0002\u0002\u0002\u0415\u03cb\u0003\u0002", + "\u0002\u0002\u0415\u03cf\u0003\u0002\u0002\u0002\u0415\u03da\u0003\u0002", + "\u0002\u0002\u0415\u03e2\u0003\u0002\u0002\u0002\u0415\u03e6\u0003\u0002", + "\u0002\u0002\u0415\u03ea\u0003\u0002\u0002\u0002\u0415\u03f3\u0003\u0002", + "\u0002\u0002\u0415\u03fe\u0003\u0002\u0002\u0002\u0415\u0405\u0003\u0002", + "\u0002\u0002\u0415\u0407\u0003\u0002\u0002\u0002\u0415\u040e\u0003\u0002", + "\u0002\u0002\u0416\u0011\u0003\u0002\u0002\u0002\u0417\u0418\u0005\u0106", + "\u0084\u0002\u0418\u0013\u0003\u0002\u0002\u0002\u0419\u041a\u00077", + "\u0002\u0002\u041a\u04c2\u0007\u00c5\u0002\u0002\u041b\u041c\u0007N", + "\u0002\u0002\u041c\u04c2\u0007\u00c5\u0002\u0002\u041d\u041f\u0007k", + "\u0002\u0002\u041e\u0420\u0007\u00c5\u0002\u0002\u041f\u041e\u0003\u0002", + "\u0002\u0002\u041f\u0420\u0003\u0002\u0002\u0002\u0420\u04c2\u0003\u0002", + "\u0002\u0002\u0421\u0423\u0007\u00c2\u0002\u0002\u0422\u0424\u0007\u00c5", + "\u0002\u0002\u0423\u0422\u0003\u0002\u0002\u0002\u0423\u0424\u0003\u0002", + "\u0002\u0002\u0424\u04c2\u0003\u0002\u0002\u0002\u0425\u0426\u0007\u00d5", + "\u0002\u0002\u0426\u04c2\u0007k\u0002\u0002\u0427\u0428\u0007\u00d5", + "\u0002\u0002\u0428\u042a\u0007\u00c5\u0002\u0002\u0429\u042b\u0007k", + "\u0002\u0002\u042a\u0429\u0003\u0002\u0002\u0002\u042a\u042b\u0003\u0002", + "\u0002\u0002\u042b\u04c2\u0003\u0002\u0002\u0002\u042c\u042d\u0007\u00d5", + "\u0002\u0002\u042d\u04c2\u0007\u00b2\u0002\u0002\u042e\u042f\u0007\u00d5", + "\u0002\u0002\u042f\u04c2\u0007\u00c6\u0002\u0002\u0430\u0431\u0007\u00d5", + "\u0002\u0002\u0431\u0432\u0007:\u0002\u0002\u0432\u04c2\u0007\u00c6", + "\u0002\u0002\u0433\u0434\u0007W\u0002\u0002\u0434\u04c2\u0007\u00e1", + "\u0002\u0002\u0435\u0436\u0007q\u0002\u0002\u0436\u04c2\u0007\u00e1", + "\u0002\u0002\u0437\u0438\u0007\u00d5\u0002\u0002\u0438\u04c2\u00072", + "\u0002\u0002\u0439\u043a\u0007\u00d5\u0002\u0002\u043a\u043b\u00077", + "\u0002\u0002\u043b\u04c2\u0007\u00e1\u0002\u0002\u043c\u043d\u0007\u00d5", + "\u0002\u0002\u043d\u04c2\u0007\u00ed\u0002\u0002\u043e\u043f\u0007\u00d5", + "\u0002\u0002\u043f\u04c2\u0007t\u0002\u0002\u0440\u0441\u0007\u00d5", + "\u0002\u0002\u0441\u04c2\u0007\u008d\u0002\u0002\u0442\u0443\u00077", + "\u0002\u0002\u0443\u04c2\u0007s\u0002\u0002\u0444\u0445\u0007N\u0002", + "\u0002\u0445\u04c2\u0007s\u0002\u0002\u0446\u0447\u0007\u0011\u0002", + "\u0002\u0447\u04c2\u0007s\u0002\u0002\u0448\u0449\u0007\u008c\u0002", + "\u0002\u0449\u04c2\u0007\u00e1\u0002\u0002\u044a\u044b\u0007\u008c\u0002", + "\u0002\u044b\u04c2\u0007@\u0002\u0002\u044c\u044d\u0007\u00f9\u0002", + "\u0002\u044d\u04c2\u0007\u00e1\u0002\u0002\u044e\u044f\u0007\u00f9\u0002", + "\u0002\u044f\u04c2\u0007@\u0002\u0002\u0450\u0451\u00077\u0002\u0002", + "\u0451\u0452\u0007\u00e5\u0002\u0002\u0452\u04c2\u0007\u008f\u0002\u0002", + "\u0453\u0454\u0007N\u0002\u0002\u0454\u0455\u0007\u00e5\u0002\u0002", + "\u0455\u04c2\u0007\u008f\u0002\u0002\u0456\u0457\u0007\u0011\u0002\u0002", + "\u0457\u0458\u0007\u00e1\u0002\u0002\u0458\u0459\u0005\u00b0Y\u0002", + "\u0459\u045a\u0007\u0098\u0002\u0002\u045a\u045b\u0007)\u0002\u0002", + "\u045b\u04c2\u0003\u0002\u0002\u0002\u045c\u045d\u0007\u0011\u0002\u0002", + "\u045d\u045e\u0007\u00e1\u0002\u0002\u045e\u045f\u0005\u00b0Y\u0002", + "\u045f\u0460\u0007)\u0002\u0002\u0460\u0461\u0007 \u0002\u0002\u0461", + "\u04c2\u0003\u0002\u0002\u0002\u0462\u0463\u0007\u0011\u0002\u0002\u0463", + "\u0464\u0007\u00e1\u0002\u0002\u0464\u0465\u0005\u00b0Y\u0002\u0465", + "\u0466\u0007\u0098\u0002\u0002\u0466\u0467\u0007\u00d9\u0002\u0002\u0467", + "\u04c2\u0003\u0002\u0002\u0002\u0468\u0469\u0007\u0011\u0002\u0002\u0469", + "\u046a\u0007\u00e1\u0002\u0002\u046a\u046b\u0005\u00b0Y\u0002\u046b", + "\u046c\u0007\u00d6\u0002\u0002\u046c\u046d\u0007 \u0002\u0002\u046d", + "\u04c2\u0003\u0002\u0002\u0002\u046e\u046f\u0007\u0011\u0002\u0002\u046f", + "\u0470\u0007\u00e1\u0002\u0002\u0470\u0471\u0005\u00b0Y\u0002\u0471", + "\u0472\u0007\u0098\u0002\u0002\u0472\u0473\u0007\u00d6\u0002\u0002\u0473", + "\u04c2\u0003\u0002\u0002\u0002\u0474\u0475\u0007\u0011\u0002\u0002\u0475", + "\u0476\u0007\u00e1\u0002\u0002\u0476\u0477\u0005\u00b0Y\u0002\u0477", + "\u0478\u0007\u0098\u0002\u0002\u0478\u0479\u0007\u00dc\u0002\u0002\u0479", + "\u047a\u0007\u0018\u0002\u0002\u047a\u047b\u0007I\u0002\u0002\u047b", + "\u04c2\u0003\u0002\u0002\u0002\u047c\u047d\u0007\u0011\u0002\u0002\u047d", + "\u047e\u0007\u00e1\u0002\u0002\u047e\u047f\u0005\u00b0Y\u0002\u047f", + "\u0480\u0007\u00d2\u0002\u0002\u0480\u0481\u0007\u00d6\u0002\u0002\u0481", + "\u0482\u0007\u008b\u0002\u0002\u0482\u04c2\u0003\u0002\u0002\u0002\u0483", + "\u0484\u0007\u0011\u0002\u0002\u0484\u0485\u0007\u00e1\u0002\u0002\u0485", + "\u0486\u0005\u00b0Y\u0002\u0486\u0487\u0007T\u0002\u0002\u0487\u0488", + "\u0007\u00a9\u0002\u0002\u0488\u04c2\u0003\u0002\u0002\u0002\u0489\u048a", + "\u0007\u0011\u0002\u0002\u048a\u048b\u0007\u00e1\u0002\u0002\u048b\u048c", + "\u0005\u00b0Y\u0002\u048c\u048d\u0007\u0016\u0002\u0002\u048d\u048e", + "\u0007\u00a9\u0002\u0002\u048e\u04c2\u0003\u0002\u0002\u0002\u048f\u0490", + "\u0007\u0011\u0002\u0002\u0490\u0491\u0007\u00e1\u0002\u0002\u0491\u0492", + "\u0005\u00b0Y\u0002\u0492\u0493\u0007\u00f3\u0002\u0002\u0493\u0494", + "\u0007\u00a9\u0002\u0002\u0494\u04c2\u0003\u0002\u0002\u0002\u0495\u0496", + "\u0007\u0011\u0002\u0002\u0496\u0497\u0007\u00e1\u0002\u0002\u0497\u0498", + "\u0005\u00b0Y\u0002\u0498\u0499\u0007\u00ea\u0002\u0002\u0499\u04c2", + "\u0003\u0002\u0002\u0002\u049a\u049b\u0007\u0011\u0002\u0002\u049b\u049c", + "\u0007\u00e1\u0002\u0002\u049c\u049e\u0005\u00b0Y\u0002\u049d\u049f", + "\u0005(\u0015\u0002\u049e\u049d\u0003\u0002\u0002\u0002\u049e\u049f", + "\u0003\u0002\u0002\u0002\u049f\u04a0\u0003\u0002\u0002\u0002\u04a0\u04a1", + "\u00071\u0002\u0002\u04a1\u04c2\u0003\u0002\u0002\u0002\u04a2\u04a3", + "\u0007\u0011\u0002\u0002\u04a3\u04a4\u0007\u00e1\u0002\u0002\u04a4\u04a6", + "\u0005\u00b0Y\u0002\u04a5\u04a7\u0005(\u0015\u0002\u04a6\u04a5\u0003", + "\u0002\u0002\u0002\u04a6\u04a7\u0003\u0002\u0002\u0002\u04a7\u04a8\u0003", + "\u0002\u0002\u0002\u04a8\u04a9\u00074\u0002\u0002\u04a9\u04c2\u0003", + "\u0002\u0002\u0002\u04aa\u04ab\u0007\u0011\u0002\u0002\u04ab\u04ac\u0007", + "\u00e1\u0002\u0002\u04ac\u04ae\u0005\u00b0Y\u0002\u04ad\u04af\u0005", + "(\u0015\u0002\u04ae\u04ad\u0003\u0002\u0002\u0002\u04ae\u04af\u0003", + "\u0002\u0002\u0002\u04af\u04b0\u0003\u0002\u0002\u0002\u04b0\u04b1\u0007", + "\u00d2\u0002\u0002\u04b1\u04b2\u0007_\u0002\u0002\u04b2\u04c2\u0003", + "\u0002\u0002\u0002\u04b3\u04b4\u0007\u0011\u0002\u0002\u04b4\u04b5\u0007", + "\u00e1\u0002\u0002\u04b5\u04b7\u0005\u00b0Y\u0002\u04b6\u04b8\u0005", + "(\u0015\u0002\u04b7\u04b6\u0003\u0002\u0002\u0002\u04b7\u04b8\u0003", + "\u0002\u0002\u0002\u04b8\u04b9\u0003\u0002\u0002\u0002\u04b9\u04ba\u0007", + "\u00bf\u0002\u0002\u04ba\u04bb\u0007.\u0002\u0002\u04bb\u04c2\u0003", + "\u0002\u0002\u0002\u04bc\u04bd\u0007\u00da\u0002\u0002\u04bd\u04c2\u0007", + "\u00ec\u0002\u0002\u04be\u04c2\u00070\u0002\u0002\u04bf\u04c2\u0007", + "\u00c7\u0002\u0002\u04c0\u04c2\u0007H\u0002\u0002\u04c1\u0419\u0003", + "\u0002\u0002\u0002\u04c1\u041b\u0003\u0002\u0002\u0002\u04c1\u041d\u0003", + "\u0002\u0002\u0002\u04c1\u0421\u0003\u0002\u0002\u0002\u04c1\u0425\u0003", + "\u0002\u0002\u0002\u04c1\u0427\u0003\u0002\u0002\u0002\u04c1\u042c\u0003", + "\u0002\u0002\u0002\u04c1\u042e\u0003\u0002\u0002\u0002\u04c1\u0430\u0003", + "\u0002\u0002\u0002\u04c1\u0433\u0003\u0002\u0002\u0002\u04c1\u0435\u0003", + "\u0002\u0002\u0002\u04c1\u0437\u0003\u0002\u0002\u0002\u04c1\u0439\u0003", + "\u0002\u0002\u0002\u04c1\u043c\u0003\u0002\u0002\u0002\u04c1\u043e\u0003", + "\u0002\u0002\u0002\u04c1\u0440\u0003\u0002\u0002\u0002\u04c1\u0442\u0003", + "\u0002\u0002\u0002\u04c1\u0444\u0003\u0002\u0002\u0002\u04c1\u0446\u0003", + "\u0002\u0002\u0002\u04c1\u0448\u0003\u0002\u0002\u0002\u04c1\u044a\u0003", + "\u0002\u0002\u0002\u04c1\u044c\u0003\u0002\u0002\u0002\u04c1\u044e\u0003", + "\u0002\u0002\u0002\u04c1\u0450\u0003\u0002\u0002\u0002\u04c1\u0453\u0003", + "\u0002\u0002\u0002\u04c1\u0456\u0003\u0002\u0002\u0002\u04c1\u045c\u0003", + "\u0002\u0002\u0002\u04c1\u0462\u0003\u0002\u0002\u0002\u04c1\u0468\u0003", + "\u0002\u0002\u0002\u04c1\u046e\u0003\u0002\u0002\u0002\u04c1\u0474\u0003", + "\u0002\u0002\u0002\u04c1\u047c\u0003\u0002\u0002\u0002\u04c1\u0483\u0003", + "\u0002\u0002\u0002\u04c1\u0489\u0003\u0002\u0002\u0002\u04c1\u048f\u0003", + "\u0002\u0002\u0002\u04c1\u0495\u0003\u0002\u0002\u0002\u04c1\u049a\u0003", + "\u0002\u0002\u0002\u04c1\u04a2\u0003\u0002\u0002\u0002\u04c1\u04aa\u0003", + "\u0002\u0002\u0002\u04c1\u04b3\u0003\u0002\u0002\u0002\u04c1\u04bc\u0003", + "\u0002\u0002\u0002\u04c1\u04be\u0003\u0002\u0002\u0002\u04c1\u04bf\u0003", + "\u0002\u0002\u0002\u04c1\u04c0\u0003\u0002\u0002\u0002\u04c2\u0015\u0003", + "\u0002\u0002\u0002\u04c3\u04c5\u00077\u0002\u0002\u04c4\u04c6\u0007", + "\u00e5\u0002\u0002\u04c5\u04c4\u0003\u0002\u0002\u0002\u04c5\u04c6\u0003", + "\u0002\u0002\u0002\u04c6\u04c8\u0003\u0002\u0002\u0002\u04c7\u04c9\u0007", + "Y\u0002\u0002\u04c8\u04c7\u0003\u0002\u0002\u0002\u04c8\u04c9\u0003", + "\u0002\u0002\u0002\u04c9\u04ca\u0003\u0002\u0002\u0002\u04ca\u04ce\u0007", + "\u00e1\u0002\u0002\u04cb\u04cc\u0007o\u0002\u0002\u04cc\u04cd\u0007", + "\u0098\u0002\u0002\u04cd\u04cf\u0007U\u0002\u0002\u04ce\u04cb\u0003", + "\u0002\u0002\u0002\u04ce\u04cf\u0003\u0002\u0002\u0002\u04cf\u04d0\u0003", + "\u0002\u0002\u0002\u04d0\u04d1\u0005\u00aeX\u0002\u04d1\u0017\u0003", + "\u0002\u0002\u0002\u04d2\u04d3\u00077\u0002\u0002\u04d3\u04d5\u0007", + "\u00a0\u0002\u0002\u04d4\u04d2\u0003\u0002\u0002\u0002\u04d4\u04d5\u0003", + "\u0002\u0002\u0002\u04d5\u04d6\u0003\u0002\u0002\u0002\u04d6\u04d7\u0007", + "\u00bf\u0002\u0002\u04d7\u04d8\u0007\u00e1\u0002\u0002\u04d8\u04d9\u0005", + "\u00aeX\u0002\u04d9\u0019\u0003\u0002\u0002\u0002\u04da\u04db\u0007", + ")\u0002\u0002\u04db\u04dc\u0007 \u0002\u0002\u04dc\u04e0\u0005\u0096", + "L\u0002\u04dd\u04de\u0007\u00d9\u0002\u0002\u04de\u04df\u0007 \u0002", + "\u0002\u04df\u04e1\u0005\u009aN\u0002\u04e0\u04dd\u0003\u0002\u0002", + "\u0002\u04e0\u04e1\u0003\u0002\u0002\u0002\u04e1\u04e2\u0003\u0002\u0002", + "\u0002\u04e2\u04e3\u0007{\u0002\u0002\u04e3\u04e4\u0007\u011d\u0002", + "\u0002\u04e4\u04e5\u0007\u001f\u0002\u0002\u04e5\u001b\u0003\u0002\u0002", + "\u0002\u04e6\u04e7\u0007\u00d6\u0002\u0002\u04e7\u04e8\u0007 \u0002", + "\u0002\u04e8\u04e9\u0005\u0096L\u0002\u04e9\u04ec\u0007\u009c\u0002", + "\u0002\u04ea\u04ed\u0005B\"\u0002\u04eb\u04ed\u0005D#\u0002\u04ec\u04ea", + "\u0003\u0002\u0002\u0002\u04ec\u04eb\u0003\u0002\u0002\u0002\u04ed\u04f1", + "\u0003\u0002\u0002\u0002\u04ee\u04ef\u0007\u00dc\u0002\u0002\u04ef\u04f0", + "\u0007\u0018\u0002\u0002\u04f0\u04f2\u0007I\u0002\u0002\u04f1\u04ee", + "\u0003\u0002\u0002\u0002\u04f1\u04f2\u0003\u0002\u0002\u0002\u04f2\u001d", + "\u0003\u0002\u0002\u0002\u04f3\u04f4\u0007\u008b\u0002\u0002\u04f4\u04f5", + "\u0007\u0119\u0002\u0002\u04f5\u001f\u0003\u0002\u0002\u0002\u04f6\u04f7", + "\u0007/\u0002\u0002\u04f7\u04f8\u0007\u0119\u0002\u0002\u04f8!\u0003", + "\u0002\u0002\u0002\u04f9\u04fb\u00052\u001a\u0002\u04fa\u04f9\u0003", + "\u0002\u0002\u0002\u04fa\u04fb\u0003\u0002\u0002\u0002\u04fb\u04fc\u0003", + "\u0002\u0002\u0002\u04fc\u04fd\u0005T+\u0002\u04fd\u04fe\u0005P)\u0002", + "\u04fe#\u0003\u0002\u0002\u0002\u04ff\u0500\u0007x\u0002\u0002\u0500", + "\u0502\u0007\u00a8\u0002\u0002\u0501\u0503\u0007\u00e1\u0002\u0002\u0502", + "\u0501\u0003\u0002\u0002\u0002\u0502\u0503\u0003\u0002\u0002\u0002\u0503", + "\u0504\u0003\u0002\u0002\u0002\u0504\u050b\u0005\u00aeX\u0002\u0505", + "\u0509\u0005(\u0015\u0002\u0506\u0507\u0007o\u0002\u0002\u0507\u0508", + "\u0007\u0098\u0002\u0002\u0508\u050a\u0007U\u0002\u0002\u0509\u0506", + "\u0003\u0002\u0002\u0002\u0509\u050a\u0003\u0002\u0002\u0002\u050a\u050c", + "\u0003\u0002\u0002\u0002\u050b\u0505\u0003\u0002\u0002\u0002\u050b\u050c", + "\u0003\u0002\u0002\u0002\u050c\u0537\u0003\u0002\u0002\u0002\u050d\u050e", + "\u0007x\u0002\u0002\u050e\u0510\u0007{\u0002\u0002\u050f\u0511\u0007", + "\u00e1\u0002\u0002\u0510\u050f\u0003\u0002\u0002\u0002\u0510\u0511\u0003", + "\u0002\u0002\u0002\u0511\u0512\u0003\u0002\u0002\u0002\u0512\u0514\u0005", + "\u00aeX\u0002\u0513\u0515\u0005(\u0015\u0002\u0514\u0513\u0003\u0002", + "\u0002\u0002\u0514\u0515\u0003\u0002\u0002\u0002\u0515\u0519\u0003\u0002", + "\u0002\u0002\u0516\u0517\u0007o\u0002\u0002\u0517\u0518\u0007\u0098", + "\u0002\u0002\u0518\u051a\u0007U\u0002\u0002\u0519\u0516\u0003\u0002", + "\u0002\u0002\u0519\u051a\u0003\u0002\u0002\u0002\u051a\u0537\u0003\u0002", + "\u0002\u0002\u051b\u051c\u0007x\u0002\u0002\u051c\u051e\u0007\u00a8", + "\u0002\u0002\u051d\u051f\u0007\u008a\u0002\u0002\u051e\u051d\u0003\u0002", + "\u0002\u0002\u051e\u051f\u0003\u0002\u0002\u0002\u051f\u0520\u0003\u0002", + "\u0002\u0002\u0520\u0521\u0007J\u0002\u0002\u0521\u0523\u0007\u0119", + "\u0002\u0002\u0522\u0524\u0005\u00aaV\u0002\u0523\u0522\u0003\u0002", + "\u0002\u0002\u0523\u0524\u0003\u0002\u0002\u0002\u0524\u0526\u0003\u0002", + "\u0002\u0002\u0525\u0527\u0005F$\u0002\u0526\u0525\u0003\u0002\u0002", + "\u0002\u0526\u0527\u0003\u0002\u0002\u0002\u0527\u0537\u0003\u0002\u0002", + "\u0002\u0528\u0529\u0007x\u0002\u0002\u0529\u052b\u0007\u00a8\u0002", + "\u0002\u052a\u052c\u0007\u008a\u0002\u0002\u052b\u052a\u0003\u0002\u0002", + "\u0002\u052b\u052c\u0003\u0002\u0002\u0002\u052c\u052d\u0003\u0002\u0002", + "\u0002\u052d\u052f\u0007J\u0002\u0002\u052e\u0530\u0007\u0119\u0002", + "\u0002\u052f\u052e\u0003\u0002\u0002\u0002\u052f\u0530\u0003\u0002\u0002", + "\u0002\u0530\u0531\u0003\u0002\u0002\u0002\u0531\u0534\u00056\u001c", + "\u0002\u0532\u0533\u0007\u009f\u0002\u0002\u0533\u0535\u0005:\u001e", + "\u0002\u0534\u0532\u0003\u0002\u0002\u0002\u0534\u0535\u0003\u0002\u0002", + "\u0002\u0535\u0537\u0003\u0002\u0002\u0002\u0536\u04ff\u0003\u0002\u0002", + "\u0002\u0536\u050d\u0003\u0002\u0002\u0002\u0536\u051b\u0003\u0002\u0002", + "\u0002\u0536\u0528\u0003\u0002\u0002\u0002\u0537%\u0003\u0002\u0002", + "\u0002\u0538\u053a\u0005(\u0015\u0002\u0539\u053b\u0005\u001e\u0010", + "\u0002\u053a\u0539\u0003\u0002\u0002\u0002\u053a\u053b\u0003\u0002\u0002", + "\u0002\u053b\'\u0003\u0002\u0002\u0002\u053c\u053d\u0007\u00a9\u0002", + "\u0002\u053d\u053e\u0007\u0004\u0002\u0002\u053e\u0543\u0005*\u0016", + "\u0002\u053f\u0540\u0007\u0006\u0002\u0002\u0540\u0542\u0005*\u0016", + "\u0002\u0541\u053f\u0003\u0002\u0002\u0002\u0542\u0545\u0003\u0002\u0002", + "\u0002\u0543\u0541\u0003\u0002\u0002\u0002\u0543\u0544\u0003\u0002\u0002", + "\u0002\u0544\u0546\u0003\u0002\u0002\u0002\u0545\u0543\u0003\u0002\u0002", + "\u0002\u0546\u0547\u0007\u0005\u0002\u0002\u0547)\u0003\u0002\u0002", + "\u0002\u0548\u054b\u0005\u0102\u0082\u0002\u0549\u054a\u0007\u0107\u0002", + "\u0002\u054a\u054c\u0005\u00c6d\u0002\u054b\u0549\u0003\u0002\u0002", + "\u0002\u054b\u054c\u0003\u0002\u0002\u0002\u054c+\u0003\u0002\u0002", + "\u0002\u054d\u054e\t\u000f\u0002\u0002\u054e-\u0003\u0002\u0002\u0002", + "\u054f\u0555\u0005\u00fc\u007f\u0002\u0550\u0555\u0007\u0119\u0002\u0002", + "\u0551\u0555\u0005\u00c8e\u0002\u0552\u0555\u0005\u00caf\u0002\u0553", + "\u0555\u0005\u00ccg\u0002\u0554\u054f\u0003\u0002\u0002\u0002\u0554", + "\u0550\u0003\u0002\u0002\u0002\u0554\u0551\u0003\u0002\u0002\u0002\u0554", + "\u0552\u0003\u0002\u0002\u0002\u0554\u0553\u0003\u0002\u0002\u0002\u0555", + "/\u0003\u0002\u0002\u0002\u0556\u055b\u0005\u0102\u0082\u0002\u0557", + "\u0558\u0007\u0007\u0002\u0002\u0558\u055a\u0005\u0102\u0082\u0002\u0559", + "\u0557\u0003\u0002\u0002\u0002\u055a\u055d\u0003\u0002\u0002\u0002\u055b", + "\u0559\u0003\u0002\u0002\u0002\u055b\u055c\u0003\u0002\u0002\u0002\u055c", + "1\u0003\u0002\u0002\u0002\u055d\u055b\u0003\u0002\u0002\u0002\u055e", + "\u055f\u0007\u0105\u0002\u0002\u055f\u0564\u00054\u001b\u0002\u0560", + "\u0561\u0007\u0006\u0002\u0002\u0561\u0563\u00054\u001b\u0002\u0562", + "\u0560\u0003\u0002\u0002\u0002\u0563\u0566\u0003\u0002\u0002\u0002\u0564", + "\u0562\u0003\u0002\u0002\u0002\u0564\u0565\u0003\u0002\u0002\u0002\u0565", + "3\u0003\u0002\u0002\u0002\u0566\u0564\u0003\u0002\u0002\u0002\u0567", + "\u0569\u0005\u00fe\u0080\u0002\u0568\u056a\u0005\u0096L\u0002\u0569", + "\u0568\u0003\u0002\u0002\u0002\u0569\u056a\u0003\u0002\u0002\u0002\u056a", + "\u056c\u0003\u0002\u0002\u0002\u056b\u056d\u0007\u0018\u0002\u0002\u056c", + "\u056b\u0003\u0002\u0002\u0002\u056c\u056d\u0003\u0002\u0002\u0002\u056d", + "\u056e\u0003\u0002\u0002\u0002\u056e\u056f\u0007\u0004\u0002\u0002\u056f", + "\u0570\u0005\"\u0012\u0002\u0570\u0571\u0007\u0005\u0002\u0002\u0571", + "5\u0003\u0002\u0002\u0002\u0572\u0573\u0007\u00fe\u0002\u0002\u0573", + "\u0574\u0005\u00aeX\u0002\u05747\u0003\u0002\u0002\u0002\u0575\u0576", + "\u0007\u009f\u0002\u0002\u0576\u0580\u0005:\u001e\u0002\u0577\u0578", + "\u0007\u00aa\u0002\u0002\u0578\u0579\u0007 \u0002\u0002\u0579\u0580", + "\u0005\u00b6\\\u0002\u057a\u0580\u0005\u001a\u000e\u0002\u057b\u0580", + "\u0005\u001e\u0010\u0002\u057c\u0580\u0005 \u0011\u0002\u057d\u057e", + "\u0007\u00e4\u0002\u0002\u057e\u0580\u0005:\u001e\u0002\u057f\u0575", + "\u0003\u0002\u0002\u0002\u057f\u0577\u0003\u0002\u0002\u0002\u057f\u057a", + "\u0003\u0002\u0002\u0002\u057f\u057b\u0003\u0002\u0002\u0002\u057f\u057c", + "\u0003\u0002\u0002\u0002\u057f\u057d\u0003\u0002\u0002\u0002\u0580\u0583", + "\u0003\u0002\u0002\u0002\u0581\u057f\u0003\u0002\u0002\u0002\u0581\u0582", + "\u0003\u0002\u0002\u0002\u05829\u0003\u0002\u0002\u0002\u0583\u0581", + "\u0003\u0002\u0002\u0002\u0584\u0585\u0007\u0004\u0002\u0002\u0585\u058a", + "\u0005<\u001f\u0002\u0586\u0587\u0007\u0006\u0002\u0002\u0587\u0589", + "\u0005<\u001f\u0002\u0588\u0586\u0003\u0002\u0002\u0002\u0589\u058c", + "\u0003\u0002\u0002\u0002\u058a\u0588\u0003\u0002\u0002\u0002\u058a\u058b", + "\u0003\u0002\u0002\u0002\u058b\u058d\u0003\u0002\u0002\u0002\u058c\u058a", + "\u0003\u0002\u0002\u0002\u058d\u058e\u0007\u0005\u0002\u0002\u058e;", + "\u0003\u0002\u0002\u0002\u058f\u0594\u0005> \u0002\u0590\u0592\u0007", + "\u0107\u0002\u0002\u0591\u0590\u0003\u0002\u0002\u0002\u0591\u0592\u0003", + "\u0002\u0002\u0002\u0592\u0593\u0003\u0002\u0002\u0002\u0593\u0595\u0005", + "@!\u0002\u0594\u0591\u0003\u0002\u0002\u0002\u0594\u0595\u0003\u0002", + "\u0002\u0002\u0595=\u0003\u0002\u0002\u0002\u0596\u059b\u0005\u0102", + "\u0082\u0002\u0597\u0598\u0007\u0007\u0002\u0002\u0598\u059a\u0005\u0102", + "\u0082\u0002\u0599\u0597\u0003\u0002\u0002\u0002\u059a\u059d\u0003\u0002", + "\u0002\u0002\u059b\u0599\u0003\u0002\u0002\u0002\u059b\u059c\u0003\u0002", + "\u0002\u0002\u059c\u05a0\u0003\u0002\u0002\u0002\u059d\u059b\u0003\u0002", + "\u0002\u0002\u059e\u05a0\u0007\u0119\u0002\u0002\u059f\u0596\u0003\u0002", + "\u0002\u0002\u059f\u059e\u0003\u0002\u0002\u0002\u05a0?\u0003\u0002", + "\u0002\u0002\u05a1\u05a6\u0007\u011d\u0002\u0002\u05a2\u05a6\u0007\u011f", + "\u0002\u0002\u05a3\u05a6\u0005\u00ceh\u0002\u05a4\u05a6\u0007\u0119", + "\u0002\u0002\u05a5\u05a1\u0003\u0002\u0002\u0002\u05a5\u05a2\u0003\u0002", + "\u0002\u0002\u05a5\u05a3\u0003\u0002\u0002\u0002\u05a5\u05a4\u0003\u0002", + "\u0002\u0002\u05a6A\u0003\u0002\u0002\u0002\u05a7\u05a8\u0007\u0004", + "\u0002\u0002\u05a8\u05ad\u0005\u00c6d\u0002\u05a9\u05aa\u0007\u0006", + "\u0002\u0002\u05aa\u05ac\u0005\u00c6d\u0002\u05ab\u05a9\u0003\u0002", + "\u0002\u0002\u05ac\u05af\u0003\u0002\u0002\u0002\u05ad\u05ab\u0003\u0002", + "\u0002\u0002\u05ad\u05ae\u0003\u0002\u0002\u0002\u05ae\u05b0\u0003\u0002", + "\u0002\u0002\u05af\u05ad\u0003\u0002\u0002\u0002\u05b0\u05b1\u0007\u0005", + "\u0002\u0002\u05b1C\u0003\u0002\u0002\u0002\u05b2\u05b3\u0007\u0004", + "\u0002\u0002\u05b3\u05b8\u0005B\"\u0002\u05b4\u05b5\u0007\u0006\u0002", + "\u0002\u05b5\u05b7\u0005B\"\u0002\u05b6\u05b4\u0003\u0002\u0002\u0002", + "\u05b7\u05ba\u0003\u0002\u0002\u0002\u05b8\u05b6\u0003\u0002\u0002\u0002", + "\u05b8\u05b9\u0003\u0002\u0002\u0002\u05b9\u05bb\u0003\u0002\u0002\u0002", + "\u05ba\u05b8\u0003\u0002\u0002\u0002\u05bb\u05bc\u0007\u0005\u0002\u0002", + "\u05bcE\u0003\u0002\u0002\u0002\u05bd\u05be\u0007\u00dc\u0002\u0002", + "\u05be\u05bf\u0007\u0018\u0002\u0002\u05bf\u05c4\u0005H%\u0002\u05c0", + "\u05c1\u0007\u00dc\u0002\u0002\u05c1\u05c2\u0007 \u0002\u0002\u05c2", + "\u05c4\u0005J&\u0002\u05c3\u05bd\u0003\u0002\u0002\u0002\u05c3\u05c0", + "\u0003\u0002\u0002\u0002\u05c4G\u0003\u0002\u0002\u0002\u05c5\u05c6", + "\u0007w\u0002\u0002\u05c6\u05c7\u0007\u0119\u0002\u0002\u05c7\u05c8", + "\u0007\u00a4\u0002\u0002\u05c8\u05cb\u0007\u0119\u0002\u0002\u05c9\u05cb", + "\u0005\u0102\u0082\u0002\u05ca\u05c5\u0003\u0002\u0002\u0002\u05ca\u05c9", + "\u0003\u0002\u0002\u0002\u05cbI\u0003\u0002\u0002\u0002\u05cc\u05d0", + "\u0007\u0119\u0002\u0002\u05cd\u05ce\u0007\u0105\u0002\u0002\u05ce\u05cf", + "\u0007\u00d0\u0002\u0002\u05cf\u05d1\u0005:\u001e\u0002\u05d0\u05cd", + "\u0003\u0002\u0002\u0002\u05d0\u05d1\u0003\u0002\u0002\u0002\u05d1K", + "\u0003\u0002\u0002\u0002\u05d2\u05d3\u0005\u0102\u0082\u0002\u05d3\u05d4", + "\u0007\u0119\u0002\u0002\u05d4M\u0003\u0002\u0002\u0002\u05d5\u05d6", + "\u0005$\u0013\u0002\u05d6\u05d7\u0005T+\u0002\u05d7\u05d8\u0005P)\u0002", + "\u05d8\u0609\u0003\u0002\u0002\u0002\u05d9\u05db\u0005z>\u0002\u05da", + "\u05dc\u0005R*\u0002\u05db\u05da\u0003\u0002\u0002\u0002\u05dc\u05dd", + "\u0003\u0002\u0002\u0002\u05dd\u05db\u0003\u0002\u0002\u0002\u05dd\u05de", + "\u0003\u0002\u0002\u0002\u05de\u0609\u0003\u0002\u0002\u0002\u05df\u05e0", + "\u0007D\u0002\u0002\u05e0\u05e1\u0007f\u0002\u0002\u05e1\u05e2\u0005", + "\u00aeX\u0002\u05e2\u05e4\u0005\u00a8U\u0002\u05e3\u05e5\u0005r:\u0002", + "\u05e4\u05e3\u0003\u0002\u0002\u0002\u05e4\u05e5\u0003\u0002\u0002\u0002", + "\u05e5\u0609\u0003\u0002\u0002\u0002\u05e6\u05e7\u0007\u00fb\u0002\u0002", + "\u05e7\u05e8\u0005\u00aeX\u0002\u05e8\u05e9\u0005\u00a8U\u0002\u05e9", + "\u05eb\u0005d3\u0002\u05ea\u05ec\u0005r:\u0002\u05eb\u05ea\u0003\u0002", + "\u0002\u0002\u05eb\u05ec\u0003\u0002\u0002\u0002\u05ec\u0609\u0003\u0002", + "\u0002\u0002\u05ed\u05ee\u0007\u0092\u0002\u0002\u05ee\u05ef\u0007{", + "\u0002\u0002\u05ef\u05f0\u0005\u00aeX\u0002\u05f0\u05f1\u0005\u00a8", + "U\u0002\u05f1\u05f7\u0007\u00fe\u0002\u0002\u05f2\u05f8\u0005\u00ae", + "X\u0002\u05f3\u05f4\u0007\u0004\u0002\u0002\u05f4\u05f5\u0005\"\u0012", + "\u0002\u05f5\u05f6\u0007\u0005\u0002\u0002\u05f6\u05f8\u0003\u0002\u0002", + "\u0002\u05f7\u05f2\u0003\u0002\u0002\u0002\u05f7\u05f3\u0003\u0002\u0002", + "\u0002\u05f8\u05f9\u0003\u0002\u0002\u0002\u05f9\u05fa\u0005\u00a8U", + "\u0002\u05fa\u05fb\u0007\u009c\u0002\u0002\u05fb\u05ff\u0005\u00be`", + "\u0002\u05fc\u05fe\u0005f4\u0002\u05fd\u05fc\u0003\u0002\u0002\u0002", + "\u05fe\u0601\u0003\u0002\u0002\u0002\u05ff\u05fd\u0003\u0002\u0002\u0002", + "\u05ff\u0600\u0003\u0002\u0002\u0002\u0600\u0605\u0003\u0002\u0002\u0002", + "\u0601\u05ff\u0003\u0002\u0002\u0002\u0602\u0604\u0005h5\u0002\u0603", + "\u0602\u0003\u0002\u0002\u0002\u0604\u0607\u0003\u0002\u0002\u0002\u0605", + "\u0603\u0003\u0002\u0002\u0002\u0605\u0606\u0003\u0002\u0002\u0002\u0606", + "\u0609\u0003\u0002\u0002\u0002\u0607\u0605\u0003\u0002\u0002\u0002\u0608", + "\u05d5\u0003\u0002\u0002\u0002\u0608\u05d9\u0003\u0002\u0002\u0002\u0608", + "\u05df\u0003\u0002\u0002\u0002\u0608\u05e6\u0003\u0002\u0002\u0002\u0608", + "\u05ed\u0003\u0002\u0002\u0002\u0609O\u0003\u0002\u0002\u0002\u060a", + "\u060b\u0007\u00a1\u0002\u0002\u060b\u060c\u0007 \u0002\u0002\u060c", + "\u0611\u0005X-\u0002\u060d\u060e\u0007\u0006\u0002\u0002\u060e\u0610", + "\u0005X-\u0002\u060f\u060d\u0003\u0002\u0002\u0002\u0610\u0613\u0003", + "\u0002\u0002\u0002\u0611\u060f\u0003\u0002\u0002\u0002\u0611\u0612\u0003", + "\u0002\u0002\u0002\u0612\u0615\u0003\u0002\u0002\u0002\u0613\u0611\u0003", + "\u0002\u0002\u0002\u0614\u060a\u0003\u0002\u0002\u0002\u0614\u0615\u0003", + "\u0002\u0002\u0002\u0615\u0620\u0003\u0002\u0002\u0002\u0616\u0617\u0007", + "(\u0002\u0002\u0617\u0618\u0007 \u0002\u0002\u0618\u061d\u0005\u00bc", + "_\u0002\u0619\u061a\u0007\u0006\u0002\u0002\u061a\u061c\u0005\u00bc", + "_\u0002\u061b\u0619\u0003\u0002\u0002\u0002\u061c\u061f\u0003\u0002", + "\u0002\u0002\u061d\u061b\u0003\u0002\u0002\u0002\u061d\u061e\u0003\u0002", + "\u0002\u0002\u061e\u0621\u0003\u0002\u0002\u0002\u061f\u061d\u0003\u0002", + "\u0002\u0002\u0620\u0616\u0003\u0002\u0002\u0002\u0620\u0621\u0003\u0002", + "\u0002\u0002\u0621\u062c\u0003\u0002\u0002\u0002\u0622\u0623\u0007L", + "\u0002\u0002\u0623\u0624\u0007 \u0002\u0002\u0624\u0629\u0005\u00bc", + "_\u0002\u0625\u0626\u0007\u0006\u0002\u0002\u0626\u0628\u0005\u00bc", + "_\u0002\u0627\u0625\u0003\u0002\u0002\u0002\u0628\u062b\u0003\u0002", + "\u0002\u0002\u0629\u0627\u0003\u0002\u0002\u0002\u0629\u062a\u0003\u0002", + "\u0002\u0002\u062a\u062d\u0003\u0002\u0002\u0002\u062b\u0629\u0003\u0002", + "\u0002\u0002\u062c\u0622\u0003\u0002\u0002\u0002\u062c\u062d\u0003\u0002", + "\u0002\u0002\u062d\u0638\u0003\u0002\u0002\u0002\u062e\u062f\u0007\u00d8", + "\u0002\u0002\u062f\u0630\u0007 \u0002\u0002\u0630\u0635\u0005X-\u0002", + "\u0631\u0632\u0007\u0006\u0002\u0002\u0632\u0634\u0005X-\u0002\u0633", + "\u0631\u0003\u0002\u0002\u0002\u0634\u0637\u0003\u0002\u0002\u0002\u0635", + "\u0633\u0003\u0002\u0002\u0002\u0635\u0636\u0003\u0002\u0002\u0002\u0636", + "\u0639\u0003\u0002\u0002\u0002\u0637\u0635\u0003\u0002\u0002\u0002\u0638", + "\u062e\u0003\u0002\u0002\u0002\u0638\u0639\u0003\u0002\u0002\u0002\u0639", + "\u063b\u0003\u0002\u0002\u0002\u063a\u063c\u0005\u00eex\u0002\u063b", + "\u063a\u0003\u0002\u0002\u0002\u063b\u063c\u0003\u0002\u0002\u0002\u063c", + "\u0642\u0003\u0002\u0002\u0002\u063d\u0640\u0007\u0086\u0002\u0002\u063e", + "\u0641\u0007\u0010\u0002\u0002\u063f\u0641\u0005\u00bc_\u0002\u0640", + "\u063e\u0003\u0002\u0002\u0002\u0640\u063f\u0003\u0002\u0002\u0002\u0641", + "\u0643\u0003\u0002\u0002\u0002\u0642\u063d\u0003\u0002\u0002\u0002\u0642", + "\u0643\u0003\u0002\u0002\u0002\u0643Q\u0003\u0002\u0002\u0002\u0644", + "\u0645\u0005$\u0013\u0002\u0645\u0646\u0005\\/\u0002\u0646S\u0003\u0002", + "\u0002\u0002\u0647\u0648\b+\u0001\u0002\u0648\u0649\u0005V,\u0002\u0649", + "\u0661\u0003\u0002\u0002\u0002\u064a\u064b\f\u0005\u0002\u0002\u064b", + "\u064c\u0006+\u0003\u0002\u064c\u064e\t\u0010\u0002\u0002\u064d\u064f", + "\u0005\u0088E\u0002\u064e\u064d\u0003\u0002\u0002\u0002\u064e\u064f", + "\u0003\u0002\u0002\u0002\u064f\u0650\u0003\u0002\u0002\u0002\u0650\u0660", + "\u0005T+\u0006\u0651\u0652\f\u0004\u0002\u0002\u0652\u0653\u0006+\u0005", + "\u0002\u0653\u0655\u0007y\u0002\u0002\u0654\u0656\u0005\u0088E\u0002", + "\u0655\u0654\u0003\u0002\u0002\u0002\u0655\u0656\u0003\u0002\u0002\u0002", + "\u0656\u0657\u0003\u0002\u0002\u0002\u0657\u0660\u0005T+\u0005\u0658", + "\u0659\f\u0003\u0002\u0002\u0659\u065a\u0006+\u0007\u0002\u065a\u065c", + "\t\u0011\u0002\u0002\u065b\u065d\u0005\u0088E\u0002\u065c\u065b\u0003", + "\u0002\u0002\u0002\u065c\u065d\u0003\u0002\u0002\u0002\u065d\u065e\u0003", + "\u0002\u0002\u0002\u065e\u0660\u0005T+\u0004\u065f\u064a\u0003\u0002", + "\u0002\u0002\u065f\u0651\u0003\u0002\u0002\u0002\u065f\u0658\u0003\u0002", + "\u0002\u0002\u0660\u0663\u0003\u0002\u0002\u0002\u0661\u065f\u0003\u0002", + "\u0002\u0002\u0661\u0662\u0003\u0002\u0002\u0002\u0662U\u0003\u0002", + "\u0002\u0002\u0663\u0661\u0003\u0002\u0002\u0002\u0664\u066e\u0005^", + "0\u0002\u0665\u066e\u0005Z.\u0002\u0666\u0667\u0007\u00e1\u0002\u0002", + "\u0667\u066e\u0005\u00aeX\u0002\u0668\u066e\u0005\u00a4S\u0002\u0669", + "\u066a\u0007\u0004\u0002\u0002\u066a\u066b\u0005\"\u0012\u0002\u066b", + "\u066c\u0007\u0005\u0002\u0002\u066c\u066e\u0003\u0002\u0002\u0002\u066d", + "\u0664\u0003\u0002\u0002\u0002\u066d\u0665\u0003\u0002\u0002\u0002\u066d", + "\u0666\u0003\u0002\u0002\u0002\u066d\u0668\u0003\u0002\u0002\u0002\u066d", + "\u0669\u0003\u0002\u0002\u0002\u066eW\u0003\u0002\u0002\u0002\u066f", + "\u0671\u0005\u00bc_\u0002\u0670\u0672\t\u0012\u0002\u0002\u0671\u0670", + "\u0003\u0002\u0002\u0002\u0671\u0672\u0003\u0002\u0002\u0002\u0672\u0675", + "\u0003\u0002\u0002\u0002\u0673\u0674\u0007\u009a\u0002\u0002\u0674\u0676", + "\t\u0013\u0002\u0002\u0675\u0673\u0003\u0002\u0002\u0002\u0675\u0676", + "\u0003\u0002\u0002\u0002\u0676Y\u0003\u0002\u0002\u0002\u0677\u0679", + "\u0005z>\u0002\u0678\u067a\u0005\\/\u0002\u0679\u0678\u0003\u0002\u0002", + "\u0002\u067a\u067b\u0003\u0002\u0002\u0002\u067b\u0679\u0003\u0002\u0002", + "\u0002\u067b\u067c\u0003\u0002\u0002\u0002\u067c[\u0003\u0002\u0002", + "\u0002\u067d\u067f\u0005`1\u0002\u067e\u0680\u0005r:\u0002\u067f\u067e", + "\u0003\u0002\u0002\u0002\u067f\u0680\u0003\u0002\u0002\u0002\u0680\u0681", + "\u0003\u0002\u0002\u0002\u0681\u0682\u0005P)\u0002\u0682\u0699\u0003", + "\u0002\u0002\u0002\u0683\u0687\u0005b2\u0002\u0684\u0686\u0005\u0086", + "D\u0002\u0685\u0684\u0003\u0002\u0002\u0002\u0686\u0689\u0003\u0002", + "\u0002\u0002\u0687\u0685\u0003\u0002\u0002\u0002\u0687\u0688\u0003\u0002", + "\u0002\u0002\u0688\u068b\u0003\u0002\u0002\u0002\u0689\u0687\u0003\u0002", + "\u0002\u0002\u068a\u068c\u0005r:\u0002\u068b\u068a\u0003\u0002\u0002", + "\u0002\u068b\u068c\u0003\u0002\u0002\u0002\u068c\u068e\u0003\u0002\u0002", + "\u0002\u068d\u068f\u0005|?\u0002\u068e\u068d\u0003\u0002\u0002\u0002", + "\u068e\u068f\u0003\u0002\u0002\u0002\u068f\u0691\u0003\u0002\u0002\u0002", + "\u0690\u0692\u0005t;\u0002\u0691\u0690\u0003\u0002\u0002\u0002\u0691", + "\u0692\u0003\u0002\u0002\u0002\u0692\u0694\u0003\u0002\u0002\u0002\u0693", + "\u0695\u0005\u00eex\u0002\u0694\u0693\u0003\u0002\u0002\u0002\u0694", + "\u0695\u0003\u0002\u0002\u0002\u0695\u0696\u0003\u0002\u0002\u0002\u0696", + "\u0697\u0005P)\u0002\u0697\u0699\u0003\u0002\u0002\u0002\u0698\u067d", + "\u0003\u0002\u0002\u0002\u0698\u0683\u0003\u0002\u0002\u0002\u0699]", + "\u0003\u0002\u0002\u0002\u069a\u069c\u0005`1\u0002\u069b\u069d\u0005", + "z>\u0002\u069c\u069b\u0003\u0002\u0002\u0002\u069c\u069d\u0003\u0002", + "\u0002\u0002\u069d\u069f\u0003\u0002\u0002\u0002\u069e\u06a0\u0005r", + ":\u0002\u069f\u069e\u0003\u0002\u0002\u0002\u069f\u06a0\u0003\u0002", + "\u0002\u0002\u06a0\u06b8\u0003\u0002\u0002\u0002\u06a1\u06a3\u0005b", + "2\u0002\u06a2\u06a4\u0005z>\u0002\u06a3\u06a2\u0003\u0002\u0002\u0002", + "\u06a3\u06a4\u0003\u0002\u0002\u0002\u06a4\u06a8\u0003\u0002\u0002\u0002", + "\u06a5\u06a7\u0005\u0086D\u0002\u06a6\u06a5\u0003\u0002\u0002\u0002", + "\u06a7\u06aa\u0003\u0002\u0002\u0002\u06a8\u06a6\u0003\u0002\u0002\u0002", + "\u06a8\u06a9\u0003\u0002\u0002\u0002\u06a9\u06ac\u0003\u0002\u0002\u0002", + "\u06aa\u06a8\u0003\u0002\u0002\u0002\u06ab\u06ad\u0005r:\u0002\u06ac", + "\u06ab\u0003\u0002\u0002\u0002\u06ac\u06ad\u0003\u0002\u0002\u0002\u06ad", + "\u06af\u0003\u0002\u0002\u0002\u06ae\u06b0\u0005|?\u0002\u06af\u06ae", + "\u0003\u0002\u0002\u0002\u06af\u06b0\u0003\u0002\u0002\u0002\u06b0\u06b2", + "\u0003\u0002\u0002\u0002\u06b1\u06b3\u0005t;\u0002\u06b2\u06b1\u0003", + "\u0002\u0002\u0002\u06b2\u06b3\u0003\u0002\u0002\u0002\u06b3\u06b5\u0003", + "\u0002\u0002\u0002\u06b4\u06b6\u0005\u00eex\u0002\u06b5\u06b4\u0003", + "\u0002\u0002\u0002\u06b5\u06b6\u0003\u0002\u0002\u0002\u06b6\u06b8\u0003", + "\u0002\u0002\u0002\u06b7\u069a\u0003\u0002\u0002\u0002\u06b7\u06a1\u0003", + "\u0002\u0002\u0002\u06b8_\u0003\u0002\u0002\u0002\u06b9\u06ba\u0007", + "\u00cc\u0002\u0002\u06ba\u06bb\u0007\u00ee\u0002\u0002\u06bb\u06bc\u0007", + "\u0004\u0002\u0002\u06bc\u06bd\u0005\u00b4[\u0002\u06bd\u06be\u0007", + "\u0005\u0002\u0002\u06be\u06c4\u0003\u0002\u0002\u0002\u06bf\u06c0\u0007", + "\u0090\u0002\u0002\u06c0\u06c4\u0005\u00b4[\u0002\u06c1\u06c2\u0007", + "\u00ba\u0002\u0002\u06c2\u06c4\u0005\u00b4[\u0002\u06c3\u06b9\u0003", + "\u0002\u0002\u0002\u06c3\u06bf\u0003\u0002\u0002\u0002\u06c3\u06c1\u0003", + "\u0002\u0002\u0002\u06c4\u06c6\u0003\u0002\u0002\u0002\u06c5\u06c7\u0005", + "\u00aaV\u0002\u06c6\u06c5\u0003\u0002\u0002\u0002\u06c6\u06c7\u0003", + "\u0002\u0002\u0002\u06c7\u06ca\u0003\u0002\u0002\u0002\u06c8\u06c9\u0007", + "\u00b8\u0002\u0002\u06c9\u06cb\u0007\u0119\u0002\u0002\u06ca\u06c8\u0003", + "\u0002\u0002\u0002\u06ca\u06cb\u0003\u0002\u0002\u0002\u06cb\u06cc\u0003", + "\u0002\u0002\u0002\u06cc\u06cd\u0007\u00fe\u0002\u0002\u06cd\u06da\u0007", + "\u0119\u0002\u0002\u06ce\u06d8\u0007\u0018\u0002\u0002\u06cf\u06d9\u0005", + "\u0098M\u0002\u06d0\u06d9\u0005\u00e4s\u0002\u06d1\u06d4\u0007\u0004", + "\u0002\u0002\u06d2\u06d5\u0005\u0098M\u0002\u06d3\u06d5\u0005\u00e4", + "s\u0002\u06d4\u06d2\u0003\u0002\u0002\u0002\u06d4\u06d3\u0003\u0002", + "\u0002\u0002\u06d5\u06d6\u0003\u0002\u0002\u0002\u06d6\u06d7\u0007\u0005", + "\u0002\u0002\u06d7\u06d9\u0003\u0002\u0002\u0002\u06d8\u06cf\u0003\u0002", + "\u0002\u0002\u06d8\u06d0\u0003\u0002\u0002\u0002\u06d8\u06d1\u0003\u0002", + "\u0002\u0002\u06d9\u06db\u0003\u0002\u0002\u0002\u06da\u06ce\u0003\u0002", + "\u0002\u0002\u06da\u06db\u0003\u0002\u0002\u0002\u06db\u06dd\u0003\u0002", + "\u0002\u0002\u06dc\u06de\u0005\u00aaV\u0002\u06dd\u06dc\u0003\u0002", + "\u0002\u0002\u06dd\u06de\u0003\u0002\u0002\u0002\u06de\u06e1\u0003\u0002", + "\u0002\u0002\u06df\u06e0\u0007\u00b7\u0002\u0002\u06e0\u06e2\u0007\u0119", + "\u0002\u0002\u06e1\u06df\u0003\u0002\u0002\u0002\u06e1\u06e2\u0003\u0002", + "\u0002\u0002\u06e2a\u0003\u0002\u0002\u0002\u06e3\u06e7\u0007\u00cc", + "\u0002\u0002\u06e4\u06e6\u0005v<\u0002\u06e5\u06e4\u0003\u0002\u0002", + "\u0002\u06e6\u06e9\u0003\u0002\u0002\u0002\u06e7\u06e5\u0003\u0002\u0002", + "\u0002\u06e7\u06e8\u0003\u0002\u0002\u0002\u06e8\u06eb\u0003\u0002\u0002", + "\u0002\u06e9\u06e7\u0003\u0002\u0002\u0002\u06ea\u06ec\u0005\u0088E", + "\u0002\u06eb\u06ea\u0003\u0002\u0002\u0002\u06eb\u06ec\u0003\u0002\u0002", + "\u0002\u06ec\u06ed\u0003\u0002\u0002\u0002\u06ed\u06ee\u0005\u00b4[", + "\u0002\u06eec\u0003\u0002\u0002\u0002\u06ef\u06f0\u0007\u00d2\u0002", + "\u0002\u06f0\u06f1\u0005n8\u0002\u06f1e\u0003\u0002\u0002\u0002\u06f2", + "\u06f3\u0007\u0102\u0002\u0002\u06f3\u06f6\u0007\u0091\u0002\u0002\u06f4", + "\u06f5\u0007\u0013\u0002\u0002\u06f5\u06f7\u0005\u00be`\u0002\u06f6", + "\u06f4\u0003\u0002\u0002\u0002\u06f6\u06f7\u0003\u0002\u0002\u0002\u06f7", + "\u06f8\u0003\u0002\u0002\u0002\u06f8\u06f9\u0007\u00e7\u0002\u0002\u06f9", + "\u06fa\u0005j6\u0002\u06fag\u0003\u0002\u0002\u0002\u06fb\u06fc\u0007", + "\u0102\u0002\u0002\u06fc\u06fd\u0007\u0098\u0002\u0002\u06fd\u0700\u0007", + "\u0091\u0002\u0002\u06fe\u06ff\u0007\u0013\u0002\u0002\u06ff\u0701\u0005", + "\u00be`\u0002\u0700\u06fe\u0003\u0002\u0002\u0002\u0700\u0701\u0003", + "\u0002\u0002\u0002\u0701\u0702\u0003\u0002\u0002\u0002\u0702\u0703\u0007", + "\u00e7\u0002\u0002\u0703\u0704\u0005l7\u0002\u0704i\u0003\u0002\u0002", + "\u0002\u0705\u070d\u0007D\u0002\u0002\u0706\u0707\u0007\u00fb\u0002", + "\u0002\u0707\u0708\u0007\u00d2\u0002\u0002\u0708\u070d\u0007\u0111\u0002", + "\u0002\u0709\u070a\u0007\u00fb\u0002\u0002\u070a\u070b\u0007\u00d2\u0002", + "\u0002\u070b\u070d\u0005n8\u0002\u070c\u0705\u0003\u0002\u0002\u0002", + "\u070c\u0706\u0003\u0002\u0002\u0002\u070c\u0709\u0003\u0002\u0002\u0002", + "\u070dk\u0003\u0002\u0002\u0002\u070e\u070f\u0007x\u0002\u0002\u070f", + "\u0721\u0007\u0111\u0002\u0002\u0710\u0711\u0007x\u0002\u0002\u0711", + "\u0712\u0007\u0004\u0002\u0002\u0712\u0713\u0005\u00acW\u0002\u0713", + "\u0714\u0007\u0005\u0002\u0002\u0714\u0715\u0007\u00ff\u0002\u0002\u0715", + "\u0716\u0007\u0004\u0002\u0002\u0716\u071b\u0005\u00bc_\u0002\u0717", + "\u0718\u0007\u0006\u0002\u0002\u0718\u071a\u0005\u00bc_\u0002\u0719", + "\u0717\u0003\u0002\u0002\u0002\u071a\u071d\u0003\u0002\u0002\u0002\u071b", + "\u0719\u0003\u0002\u0002\u0002\u071b\u071c\u0003\u0002\u0002\u0002\u071c", + "\u071e\u0003\u0002\u0002\u0002\u071d\u071b\u0003\u0002\u0002\u0002\u071e", + "\u071f\u0007\u0005\u0002\u0002\u071f\u0721\u0003\u0002\u0002\u0002\u0720", + "\u070e\u0003\u0002\u0002\u0002\u0720\u0710\u0003\u0002\u0002\u0002\u0721", + "m\u0003\u0002\u0002\u0002\u0722\u0727\u0005p9\u0002\u0723\u0724\u0007", + "\u0006\u0002\u0002\u0724\u0726\u0005p9\u0002\u0725\u0723\u0003\u0002", + "\u0002\u0002\u0726\u0729\u0003\u0002\u0002\u0002\u0727\u0725\u0003\u0002", + "\u0002\u0002\u0727\u0728\u0003\u0002\u0002\u0002\u0728o\u0003\u0002", + "\u0002\u0002\u0729\u0727\u0003\u0002\u0002\u0002\u072a\u072b\u0005\u00ae", + "X\u0002\u072b\u072c\u0007\u0107\u0002\u0002\u072c\u072d\u0005\u00bc", + "_\u0002\u072dq\u0003\u0002\u0002\u0002\u072e\u072f\u0007\u0103\u0002", + "\u0002\u072f\u0730\u0005\u00be`\u0002\u0730s\u0003\u0002\u0002\u0002", + "\u0731\u0732\u0007n\u0002\u0002\u0732\u0733\u0005\u00be`\u0002\u0733", + "u\u0003\u0002\u0002\u0002\u0734\u0735\u0007\b\u0002\u0002\u0735\u073c", + "\u0005x=\u0002\u0736\u0738\u0007\u0006\u0002\u0002\u0737\u0736\u0003", + "\u0002\u0002\u0002\u0737\u0738\u0003\u0002\u0002\u0002\u0738\u0739\u0003", + "\u0002\u0002\u0002\u0739\u073b\u0005x=\u0002\u073a\u0737\u0003\u0002", + "\u0002\u0002\u073b\u073e\u0003\u0002\u0002\u0002\u073c\u073a\u0003\u0002", + "\u0002\u0002\u073c\u073d\u0003\u0002\u0002\u0002\u073d\u073f\u0003\u0002", + "\u0002\u0002\u073e\u073c\u0003\u0002\u0002\u0002\u073f\u0740\u0007\t", + "\u0002\u0002\u0740w\u0003\u0002\u0002\u0002\u0741\u074f\u0005\u0102", + "\u0082\u0002\u0742\u0743\u0005\u0102\u0082\u0002\u0743\u0744\u0007\u0004", + "\u0002\u0002\u0744\u0749\u0005\u00c4c\u0002\u0745\u0746\u0007\u0006", + "\u0002\u0002\u0746\u0748\u0005\u00c4c\u0002\u0747\u0745\u0003\u0002", + "\u0002\u0002\u0748\u074b\u0003\u0002\u0002\u0002\u0749\u0747\u0003\u0002", + "\u0002\u0002\u0749\u074a\u0003\u0002\u0002\u0002\u074a\u074c\u0003\u0002", + "\u0002\u0002\u074b\u0749\u0003\u0002\u0002\u0002\u074c\u074d\u0007\u0005", + "\u0002\u0002\u074d\u074f\u0003\u0002\u0002\u0002\u074e\u0741\u0003\u0002", + "\u0002\u0002\u074e\u0742\u0003\u0002\u0002\u0002\u074fy\u0003\u0002", + "\u0002\u0002\u0750\u0751\u0007f\u0002\u0002\u0751\u0756\u0005\u008a", + "F\u0002\u0752\u0753\u0007\u0006\u0002\u0002\u0753\u0755\u0005\u008a", + "F\u0002\u0754\u0752\u0003\u0002\u0002\u0002\u0755\u0758\u0003\u0002", + "\u0002\u0002\u0756\u0754\u0003\u0002\u0002\u0002\u0756\u0757\u0003\u0002", + "\u0002\u0002\u0757\u075c\u0003\u0002\u0002\u0002\u0758\u0756\u0003\u0002", + "\u0002\u0002\u0759\u075b\u0005\u0086D\u0002\u075a\u0759\u0003\u0002", + "\u0002\u0002\u075b\u075e\u0003\u0002\u0002\u0002\u075c\u075a\u0003\u0002", + "\u0002\u0002\u075c\u075d\u0003\u0002\u0002\u0002\u075d\u0760\u0003\u0002", + "\u0002\u0002\u075e\u075c\u0003\u0002\u0002\u0002\u075f\u0761\u0005\u0080", + "A\u0002\u0760\u075f\u0003\u0002\u0002\u0002\u0760\u0761\u0003\u0002", + "\u0002\u0002\u0761{\u0003\u0002\u0002\u0002\u0762\u0763\u0007l\u0002", + "\u0002\u0763\u0764\u0007 \u0002\u0002\u0764\u0769\u0005\u00bc_\u0002", + "\u0765\u0766\u0007\u0006\u0002\u0002\u0766\u0768\u0005\u00bc_\u0002", + "\u0767\u0765\u0003\u0002\u0002\u0002\u0768\u076b\u0003\u0002\u0002\u0002", + "\u0769\u0767\u0003\u0002\u0002\u0002\u0769\u076a\u0003\u0002\u0002\u0002", + "\u076a\u077d\u0003\u0002\u0002\u0002\u076b\u0769\u0003\u0002\u0002\u0002", + "\u076c\u076d\u0007\u0105\u0002\u0002\u076d\u077e\u0007\u00c8\u0002\u0002", + "\u076e\u076f\u0007\u0105\u0002\u0002\u076f\u077e\u00079\u0002\u0002", + "\u0770\u0771\u0007m\u0002\u0002\u0771\u0772\u0007\u00d4\u0002\u0002", + "\u0772\u0773\u0007\u0004\u0002\u0002\u0773\u0778\u0005~@\u0002\u0774", + "\u0775\u0007\u0006\u0002\u0002\u0775\u0777\u0005~@\u0002\u0776\u0774", + "\u0003\u0002\u0002\u0002\u0777\u077a\u0003\u0002\u0002\u0002\u0778\u0776", + "\u0003\u0002\u0002\u0002\u0778\u0779\u0003\u0002\u0002\u0002\u0779\u077b", + "\u0003\u0002\u0002\u0002\u077a\u0778\u0003\u0002\u0002\u0002\u077b\u077c", + "\u0007\u0005\u0002\u0002\u077c\u077e\u0003\u0002\u0002\u0002\u077d\u076c", + "\u0003\u0002\u0002\u0002\u077d\u076e\u0003\u0002\u0002\u0002\u077d\u0770", + "\u0003\u0002\u0002\u0002\u077d\u077e\u0003\u0002\u0002\u0002\u077e\u078f", + "\u0003\u0002\u0002\u0002\u077f\u0780\u0007l\u0002\u0002\u0780\u0781", + "\u0007 \u0002\u0002\u0781\u0782\u0007m\u0002\u0002\u0782\u0783\u0007", + "\u00d4\u0002\u0002\u0783\u0784\u0007\u0004\u0002\u0002\u0784\u0789\u0005", + "~@\u0002\u0785\u0786\u0007\u0006\u0002\u0002\u0786\u0788\u0005~@\u0002", + "\u0787\u0785\u0003\u0002\u0002\u0002\u0788\u078b\u0003\u0002\u0002\u0002", + "\u0789\u0787\u0003\u0002\u0002\u0002\u0789\u078a\u0003\u0002\u0002\u0002", + "\u078a\u078c\u0003\u0002\u0002\u0002\u078b\u0789\u0003\u0002\u0002\u0002", + "\u078c\u078d\u0007\u0005\u0002\u0002\u078d\u078f\u0003\u0002\u0002\u0002", + "\u078e\u0762\u0003\u0002\u0002\u0002\u078e\u077f\u0003\u0002\u0002\u0002", + "\u078f}\u0003\u0002\u0002\u0002\u0790\u0799\u0007\u0004\u0002\u0002", + "\u0791\u0796\u0005\u00bc_\u0002\u0792\u0793\u0007\u0006\u0002\u0002", + "\u0793\u0795\u0005\u00bc_\u0002\u0794\u0792\u0003\u0002\u0002\u0002", + "\u0795\u0798\u0003\u0002\u0002\u0002\u0796\u0794\u0003\u0002\u0002\u0002", + "\u0796\u0797\u0003\u0002\u0002\u0002\u0797\u079a\u0003\u0002\u0002\u0002", + "\u0798\u0796\u0003\u0002\u0002\u0002\u0799\u0791\u0003\u0002\u0002\u0002", + "\u0799\u079a\u0003\u0002\u0002\u0002\u079a\u079b\u0003\u0002\u0002\u0002", + "\u079b\u079e\u0007\u0005\u0002\u0002\u079c\u079e\u0005\u00bc_\u0002", + "\u079d\u0790\u0003\u0002\u0002\u0002\u079d\u079c\u0003\u0002\u0002\u0002", + "\u079e\u007f\u0003\u0002\u0002\u0002\u079f\u07a0\u0007\u00ad\u0002\u0002", + "\u07a0\u07a1\u0007\u0004\u0002\u0002\u07a1\u07a2\u0005\u00b4[\u0002", + "\u07a2\u07a3\u0007b\u0002\u0002\u07a3\u07a4\u0005\u0082B\u0002\u07a4", + "\u07a5\u0007r\u0002\u0002\u07a5\u07a6\u0007\u0004\u0002\u0002\u07a6", + "\u07ab\u0005\u0084C\u0002\u07a7\u07a8\u0007\u0006\u0002\u0002\u07a8", + "\u07aa\u0005\u0084C\u0002\u07a9\u07a7\u0003\u0002\u0002\u0002\u07aa", + "\u07ad\u0003\u0002\u0002\u0002\u07ab\u07a9\u0003\u0002\u0002\u0002\u07ab", + "\u07ac\u0003\u0002\u0002\u0002\u07ac\u07ae\u0003\u0002\u0002\u0002\u07ad", + "\u07ab\u0003\u0002\u0002\u0002\u07ae\u07af\u0007\u0005\u0002\u0002\u07af", + "\u07b0\u0007\u0005\u0002\u0002\u07b0\u0081\u0003\u0002\u0002\u0002\u07b1", + "\u07be\u0005\u0102\u0082\u0002\u07b2\u07b3\u0007\u0004\u0002\u0002\u07b3", + "\u07b8\u0005\u0102\u0082\u0002\u07b4\u07b5\u0007\u0006\u0002\u0002\u07b5", + "\u07b7\u0005\u0102\u0082\u0002\u07b6\u07b4\u0003\u0002\u0002\u0002\u07b7", + "\u07ba\u0003\u0002\u0002\u0002\u07b8\u07b6\u0003\u0002\u0002\u0002\u07b8", + "\u07b9\u0003\u0002\u0002\u0002\u07b9\u07bb\u0003\u0002\u0002\u0002\u07ba", + "\u07b8\u0003\u0002\u0002\u0002\u07bb\u07bc\u0007\u0005\u0002\u0002\u07bc", + "\u07be\u0003\u0002\u0002\u0002\u07bd\u07b1\u0003\u0002\u0002\u0002\u07bd", + "\u07b2\u0003\u0002\u0002\u0002\u07be\u0083\u0003\u0002\u0002\u0002\u07bf", + "\u07c4\u0005\u00bc_\u0002\u07c0\u07c2\u0007\u0018\u0002\u0002\u07c1", + "\u07c0\u0003\u0002\u0002\u0002\u07c1\u07c2\u0003\u0002\u0002\u0002\u07c2", + "\u07c3\u0003\u0002\u0002\u0002\u07c3\u07c5\u0005\u0102\u0082\u0002\u07c4", + "\u07c1\u0003\u0002\u0002\u0002\u07c4\u07c5\u0003\u0002\u0002\u0002\u07c5", + "\u0085\u0003\u0002\u0002\u0002\u07c6\u07c7\u0007\u0081\u0002\u0002\u07c7", + "\u07c9\u0007\u0100\u0002\u0002\u07c8\u07ca\u0007\u00a3\u0002\u0002\u07c9", + "\u07c8\u0003\u0002\u0002\u0002\u07c9\u07ca\u0003\u0002\u0002\u0002\u07ca", + "\u07cb\u0003\u0002\u0002\u0002\u07cb\u07cc\u0005\u00fc\u007f\u0002\u07cc", + "\u07d5\u0007\u0004\u0002\u0002\u07cd\u07d2\u0005\u00bc_\u0002\u07ce", + "\u07cf\u0007\u0006\u0002\u0002\u07cf\u07d1\u0005\u00bc_\u0002\u07d0", + "\u07ce\u0003\u0002\u0002\u0002\u07d1\u07d4\u0003\u0002\u0002\u0002\u07d2", + "\u07d0\u0003\u0002\u0002\u0002\u07d2\u07d3\u0003\u0002\u0002\u0002\u07d3", + "\u07d6\u0003\u0002\u0002\u0002\u07d4\u07d2\u0003\u0002\u0002\u0002\u07d5", + "\u07cd\u0003\u0002\u0002\u0002\u07d5\u07d6\u0003\u0002\u0002\u0002\u07d6", + "\u07d7\u0003\u0002\u0002\u0002\u07d7\u07d8\u0007\u0005\u0002\u0002\u07d8", + "\u07e4\u0005\u0102\u0082\u0002\u07d9\u07db\u0007\u0018\u0002\u0002\u07da", + "\u07d9\u0003\u0002\u0002\u0002\u07da\u07db\u0003\u0002\u0002\u0002\u07db", + "\u07dc\u0003\u0002\u0002\u0002\u07dc\u07e1\u0005\u0102\u0082\u0002\u07dd", + "\u07de\u0007\u0006\u0002\u0002\u07de\u07e0\u0005\u0102\u0082\u0002\u07df", + "\u07dd\u0003\u0002\u0002\u0002\u07e0\u07e3\u0003\u0002\u0002\u0002\u07e1", + "\u07df\u0003\u0002\u0002\u0002\u07e1\u07e2\u0003\u0002\u0002\u0002\u07e2", + "\u07e5\u0003\u0002\u0002\u0002\u07e3\u07e1\u0003\u0002\u0002\u0002\u07e4", + "\u07da\u0003\u0002\u0002\u0002\u07e4\u07e5\u0003\u0002\u0002\u0002\u07e5", + "\u0087\u0003\u0002\u0002\u0002\u07e6\u07e7\t\u0014\u0002\u0002\u07e7", + "\u0089\u0003\u0002\u0002\u0002\u07e8\u07ec\u0005\u00a2R\u0002\u07e9", + "\u07eb\u0005\u008cG\u0002\u07ea\u07e9\u0003\u0002\u0002\u0002\u07eb", + "\u07ee\u0003\u0002\u0002\u0002\u07ec\u07ea\u0003\u0002\u0002\u0002\u07ec", + "\u07ed\u0003\u0002\u0002\u0002\u07ed\u008b\u0003\u0002\u0002\u0002\u07ee", + "\u07ec\u0003\u0002\u0002\u0002\u07ef\u07f0\u0005\u008eH\u0002\u07f0", + "\u07f1\u0007~\u0002\u0002\u07f1\u07f3\u0005\u00a2R\u0002\u07f2\u07f4", + "\u0005\u0090I\u0002\u07f3\u07f2\u0003\u0002\u0002\u0002\u07f3\u07f4", + "\u0003\u0002\u0002\u0002\u07f4\u07fb\u0003\u0002\u0002\u0002\u07f5\u07f6", + "\u0007\u0096\u0002\u0002\u07f6\u07f7\u0005\u008eH\u0002\u07f7\u07f8", + "\u0007~\u0002\u0002\u07f8\u07f9\u0005\u00a2R\u0002\u07f9\u07fb\u0003", + "\u0002\u0002\u0002\u07fa\u07ef\u0003\u0002\u0002\u0002\u07fa\u07f5\u0003", + "\u0002\u0002\u0002\u07fb\u008d\u0003\u0002\u0002\u0002\u07fc\u07fe\u0007", + "u\u0002\u0002\u07fd\u07fc\u0003\u0002\u0002\u0002\u07fd\u07fe\u0003", + "\u0002\u0002\u0002\u07fe\u0815\u0003\u0002\u0002\u0002\u07ff\u0815\u0007", + "8\u0002\u0002\u0800\u0802\u0007\u0084\u0002\u0002\u0801\u0803\u0007", + "\u00a3\u0002\u0002\u0802\u0801\u0003\u0002\u0002\u0002\u0802\u0803\u0003", + "\u0002\u0002\u0002\u0803\u0815\u0003\u0002\u0002\u0002\u0804\u0806\u0007", + "\u0084\u0002\u0002\u0805\u0804\u0003\u0002\u0002\u0002\u0805\u0806\u0003", + "\u0002\u0002\u0002\u0806\u0807\u0003\u0002\u0002\u0002\u0807\u0815\u0007", + "\u00cd\u0002\u0002\u0808\u080a\u0007\u00c3\u0002\u0002\u0809\u080b\u0007", + "\u00a3\u0002\u0002\u080a\u0809\u0003\u0002\u0002\u0002\u080a\u080b\u0003", + "\u0002\u0002\u0002\u080b\u0815\u0003\u0002\u0002\u0002\u080c\u080e\u0007", + "g\u0002\u0002\u080d\u080f\u0007\u00a3\u0002\u0002\u080e\u080d\u0003", + "\u0002\u0002\u0002\u080e\u080f\u0003\u0002\u0002\u0002\u080f\u0815\u0003", + "\u0002\u0002\u0002\u0810\u0812\u0007\u0084\u0002\u0002\u0811\u0810\u0003", + "\u0002\u0002\u0002\u0811\u0812\u0003\u0002\u0002\u0002\u0812\u0813\u0003", + "\u0002\u0002\u0002\u0813\u0815\u0007\u0014\u0002\u0002\u0814\u07fd\u0003", + "\u0002\u0002\u0002\u0814\u07ff\u0003\u0002\u0002\u0002\u0814\u0800\u0003", + "\u0002\u0002\u0002\u0814\u0805\u0003\u0002\u0002\u0002\u0814\u0808\u0003", + "\u0002\u0002\u0002\u0814\u080c\u0003\u0002\u0002\u0002\u0814\u0811\u0003", + "\u0002\u0002\u0002\u0815\u008f\u0003\u0002\u0002\u0002\u0816\u0817\u0007", + "\u009c\u0002\u0002\u0817\u081b\u0005\u00be`\u0002\u0818\u0819\u0007", + "\u00fe\u0002\u0002\u0819\u081b\u0005\u0096L\u0002\u081a\u0816\u0003", + "\u0002\u0002\u0002\u081a\u0818\u0003\u0002\u0002\u0002\u081b\u0091\u0003", + "\u0002\u0002\u0002\u081c\u081d\u0007\u00e3\u0002\u0002\u081d\u081f\u0007", + "\u0004\u0002\u0002\u081e\u0820\u0005\u0094K\u0002\u081f\u081e\u0003", + "\u0002\u0002\u0002\u081f\u0820\u0003\u0002\u0002\u0002\u0820\u0821\u0003", + "\u0002\u0002\u0002\u0821\u0822\u0007\u0005\u0002\u0002\u0822\u0093\u0003", + "\u0002\u0002\u0002\u0823\u0825\u0007\u0110\u0002\u0002\u0824\u0823\u0003", + "\u0002\u0002\u0002\u0824\u0825\u0003\u0002\u0002\u0002\u0825\u0826\u0003", + "\u0002\u0002\u0002\u0826\u0827\t\u0015\u0002\u0002\u0827\u083c\u0007", + "\u00ac\u0002\u0002\u0828\u0829\u0005\u00bc_\u0002\u0829\u082a\u0007", + "\u00ca\u0002\u0002\u082a\u083c\u0003\u0002\u0002\u0002\u082b\u082c\u0007", + "\u001e\u0002\u0002\u082c\u082d\u0007\u011d\u0002\u0002\u082d\u082e\u0007", + "\u00a2\u0002\u0002\u082e\u082f\u0007\u009b\u0002\u0002\u082f\u0838\u0007", + "\u011d\u0002\u0002\u0830\u0836\u0007\u009c\u0002\u0002\u0831\u0837\u0005", + "\u0102\u0082\u0002\u0832\u0833\u0005\u00fc\u007f\u0002\u0833\u0834\u0007", + "\u0004\u0002\u0002\u0834\u0835\u0007\u0005\u0002\u0002\u0835\u0837\u0003", + "\u0002\u0002\u0002\u0836\u0831\u0003\u0002\u0002\u0002\u0836\u0832\u0003", + "\u0002\u0002\u0002\u0837\u0839\u0003\u0002\u0002\u0002\u0838\u0830\u0003", + "\u0002\u0002\u0002\u0838\u0839\u0003\u0002\u0002\u0002\u0839\u083c\u0003", + "\u0002\u0002\u0002\u083a\u083c\u0005\u00bc_\u0002\u083b\u0824\u0003", + "\u0002\u0002\u0002\u083b\u0828\u0003\u0002\u0002\u0002\u083b\u082b\u0003", + "\u0002\u0002\u0002\u083b\u083a\u0003\u0002\u0002\u0002\u083c\u0095\u0003", + "\u0002\u0002\u0002\u083d\u083e\u0007\u0004\u0002\u0002\u083e\u083f\u0005", + "\u0098M\u0002\u083f\u0840\u0007\u0005\u0002\u0002\u0840\u0097\u0003", + "\u0002\u0002\u0002\u0841\u0846\u0005\u00fe\u0080\u0002\u0842\u0843\u0007", + "\u0006\u0002\u0002\u0843\u0845\u0005\u00fe\u0080\u0002\u0844\u0842\u0003", + "\u0002\u0002\u0002\u0845\u0848\u0003\u0002\u0002\u0002\u0846\u0844\u0003", + "\u0002\u0002\u0002\u0846\u0847\u0003\u0002\u0002\u0002\u0847\u0099\u0003", + "\u0002\u0002\u0002\u0848\u0846\u0003\u0002\u0002\u0002\u0849\u084a\u0007", + "\u0004\u0002\u0002\u084a\u084f\u0005\u009cO\u0002\u084b\u084c\u0007", + "\u0006\u0002\u0002\u084c\u084e\u0005\u009cO\u0002\u084d\u084b\u0003", + "\u0002\u0002\u0002\u084e\u0851\u0003\u0002\u0002\u0002\u084f\u084d\u0003", + "\u0002\u0002\u0002\u084f\u0850\u0003\u0002\u0002\u0002\u0850\u0852\u0003", + "\u0002\u0002\u0002\u0851\u084f\u0003\u0002\u0002\u0002\u0852\u0853\u0007", + "\u0005\u0002\u0002\u0853\u009b\u0003\u0002\u0002\u0002\u0854\u0856\u0005", + "\u00fe\u0080\u0002\u0855\u0857\t\u0012\u0002\u0002\u0856\u0855\u0003", + "\u0002\u0002\u0002\u0856\u0857\u0003\u0002\u0002\u0002\u0857\u009d\u0003", + "\u0002\u0002\u0002\u0858\u0859\u0007\u0004\u0002\u0002\u0859\u085e\u0005", + "\u00a0Q\u0002\u085a\u085b\u0007\u0006\u0002\u0002\u085b\u085d\u0005", + "\u00a0Q\u0002\u085c\u085a\u0003\u0002\u0002\u0002\u085d\u0860\u0003", + "\u0002\u0002\u0002\u085e\u085c\u0003\u0002\u0002\u0002\u085e\u085f\u0003", + "\u0002\u0002\u0002\u085f\u0861\u0003\u0002\u0002\u0002\u0860\u085e\u0003", + "\u0002\u0002\u0002\u0861\u0862\u0007\u0005\u0002\u0002\u0862\u009f\u0003", + "\u0002\u0002\u0002\u0863\u0865\u0005\u0102\u0082\u0002\u0864\u0866\u0005", + " \u0011\u0002\u0865\u0864\u0003\u0002\u0002\u0002\u0865\u0866\u0003", + "\u0002\u0002\u0002\u0866\u00a1\u0003\u0002\u0002\u0002\u0867\u0869\u0005", + "\u00aeX\u0002\u0868\u086a\u0005\u0092J\u0002\u0869\u0868\u0003\u0002", + "\u0002\u0002\u0869\u086a\u0003\u0002\u0002\u0002\u086a\u086b\u0003\u0002", + "\u0002\u0002\u086b\u086c\u0005\u00a8U\u0002\u086c\u0880\u0003\u0002", + "\u0002\u0002\u086d\u086e\u0007\u0004\u0002\u0002\u086e\u086f\u0005\"", + "\u0012\u0002\u086f\u0871\u0007\u0005\u0002\u0002\u0870\u0872\u0005\u0092", + "J\u0002\u0871\u0870\u0003\u0002\u0002\u0002\u0871\u0872\u0003\u0002", + "\u0002\u0002\u0872\u0873\u0003\u0002\u0002\u0002\u0873\u0874\u0005\u00a8", + "U\u0002\u0874\u0880\u0003\u0002\u0002\u0002\u0875\u0876\u0007\u0004", + "\u0002\u0002\u0876\u0877\u0005\u008aF\u0002\u0877\u0879\u0007\u0005", + "\u0002\u0002\u0878\u087a\u0005\u0092J\u0002\u0879\u0878\u0003\u0002", + "\u0002\u0002\u0879\u087a\u0003\u0002\u0002\u0002\u087a\u087b\u0003\u0002", + "\u0002\u0002\u087b\u087c\u0005\u00a8U\u0002\u087c\u0880\u0003\u0002", + "\u0002\u0002\u087d\u0880\u0005\u00a4S\u0002\u087e\u0880\u0005\u00a6", + "T\u0002\u087f\u0867\u0003\u0002\u0002\u0002\u087f\u086d\u0003\u0002", + "\u0002\u0002\u087f\u0875\u0003\u0002\u0002\u0002\u087f\u087d\u0003\u0002", + "\u0002\u0002\u087f\u087e\u0003\u0002\u0002\u0002\u0880\u00a3\u0003\u0002", + "\u0002\u0002\u0881\u0882\u0007\u00ff\u0002\u0002\u0882\u0887\u0005\u00bc", + "_\u0002\u0883\u0884\u0007\u0006\u0002\u0002\u0884\u0886\u0005\u00bc", + "_\u0002\u0885\u0883\u0003\u0002\u0002\u0002\u0886\u0889\u0003\u0002", + "\u0002\u0002\u0887\u0885\u0003\u0002\u0002\u0002\u0887\u0888\u0003\u0002", + "\u0002\u0002\u0888\u088a\u0003\u0002\u0002\u0002\u0889\u0887\u0003\u0002", + "\u0002\u0002\u088a\u088b\u0005\u00a8U\u0002\u088b\u00a5\u0003\u0002", + "\u0002\u0002\u088c\u088d\u0005\u00fe\u0080\u0002\u088d\u0896\u0007\u0004", + "\u0002\u0002\u088e\u0893\u0005\u00bc_\u0002\u088f\u0890\u0007\u0006", + "\u0002\u0002\u0890\u0892\u0005\u00bc_\u0002\u0891\u088f\u0003\u0002", + "\u0002\u0002\u0892\u0895\u0003\u0002\u0002\u0002\u0893\u0891\u0003\u0002", + "\u0002\u0002\u0893\u0894\u0003\u0002\u0002\u0002\u0894\u0897\u0003\u0002", + "\u0002\u0002\u0895\u0893\u0003\u0002\u0002\u0002\u0896\u088e\u0003\u0002", + "\u0002\u0002\u0896\u0897\u0003\u0002\u0002\u0002\u0897\u0898\u0003\u0002", + "\u0002\u0002\u0898\u0899\u0007\u0005\u0002\u0002\u0899\u089a\u0005\u00a8", + "U\u0002\u089a\u00a7\u0003\u0002\u0002\u0002\u089b\u089d\u0007\u0018", + "\u0002\u0002\u089c\u089b\u0003\u0002\u0002\u0002\u089c\u089d\u0003\u0002", + "\u0002\u0002\u089d\u089e\u0003\u0002\u0002\u0002\u089e\u08a0\u0005\u0104", + "\u0083\u0002\u089f\u08a1\u0005\u0096L\u0002\u08a0\u089f\u0003\u0002", + "\u0002\u0002\u08a0\u08a1\u0003\u0002\u0002\u0002\u08a1\u08a3\u0003\u0002", + "\u0002\u0002\u08a2\u089c\u0003\u0002\u0002\u0002\u08a2\u08a3\u0003\u0002", + "\u0002\u0002\u08a3\u00a9\u0003\u0002\u0002\u0002\u08a4\u08a5\u0007\u00c9", + "\u0002\u0002\u08a5\u08a6\u0007d\u0002\u0002\u08a6\u08a7\u0007\u00cf", + "\u0002\u0002\u08a7\u08ab\u0007\u0119\u0002\u0002\u08a8\u08a9\u0007\u0105", + "\u0002\u0002\u08a9\u08aa\u0007\u00d0\u0002\u0002\u08aa\u08ac\u0005:", + "\u001e\u0002\u08ab\u08a8\u0003\u0002\u0002\u0002\u08ab\u08ac\u0003\u0002", + "\u0002\u0002\u08ac\u08d6\u0003\u0002\u0002\u0002\u08ad\u08ae\u0007\u00c9", + "\u0002\u0002\u08ae\u08af\u0007d\u0002\u0002\u08af\u08b9\u0007E\u0002", + "\u0002\u08b0\u08b1\u0007]\u0002\u0002\u08b1\u08b2\u0007\u00e6\u0002", + "\u0002\u08b2\u08b3\u0007 \u0002\u0002\u08b3\u08b7\u0007\u0119\u0002", + "\u0002\u08b4\u08b5\u0007R\u0002\u0002\u08b5\u08b6\u0007 \u0002\u0002", + "\u08b6\u08b8\u0007\u0119\u0002\u0002\u08b7\u08b4\u0003\u0002\u0002\u0002", + "\u08b7\u08b8\u0003\u0002\u0002\u0002\u08b8\u08ba\u0003\u0002\u0002\u0002", + "\u08b9\u08b0\u0003\u0002\u0002\u0002\u08b9\u08ba\u0003\u0002\u0002\u0002", + "\u08ba\u08c0\u0003\u0002\u0002\u0002\u08bb\u08bc\u0007,\u0002\u0002", + "\u08bc\u08bd\u0007}\u0002\u0002\u08bd\u08be\u0007\u00e6\u0002\u0002", + "\u08be\u08bf\u0007 \u0002\u0002\u08bf\u08c1\u0007\u0119\u0002\u0002", + "\u08c0\u08bb\u0003\u0002\u0002\u0002\u08c0\u08c1\u0003\u0002\u0002\u0002", + "\u08c1\u08c7\u0003\u0002\u0002\u0002\u08c2\u08c3\u0007\u0090\u0002\u0002", + "\u08c3\u08c4\u0007\u007f\u0002\u0002\u08c4\u08c5\u0007\u00e6\u0002\u0002", + "\u08c5\u08c6\u0007 \u0002\u0002\u08c6\u08c8\u0007\u0119\u0002\u0002", + "\u08c7\u08c2\u0003\u0002\u0002\u0002\u08c7\u08c8\u0003\u0002\u0002\u0002", + "\u08c8\u08cd\u0003\u0002\u0002\u0002\u08c9\u08ca\u0007\u0087\u0002\u0002", + "\u08ca\u08cb\u0007\u00e6\u0002\u0002\u08cb\u08cc\u0007 \u0002\u0002", + "\u08cc\u08ce\u0007\u0119\u0002\u0002\u08cd\u08c9\u0003\u0002\u0002\u0002", + "\u08cd\u08ce\u0003\u0002\u0002\u0002\u08ce\u08d3\u0003\u0002\u0002\u0002", + "\u08cf\u08d0\u0007\u0099\u0002\u0002\u08d0\u08d1\u0007C\u0002\u0002", + "\u08d1\u08d2\u0007\u0018\u0002\u0002\u08d2\u08d4\u0007\u0119\u0002\u0002", + "\u08d3\u08cf\u0003\u0002\u0002\u0002\u08d3\u08d4\u0003\u0002\u0002\u0002", + "\u08d4\u08d6\u0003\u0002\u0002\u0002\u08d5\u08a4\u0003\u0002\u0002\u0002", + "\u08d5\u08ad\u0003\u0002\u0002\u0002\u08d6\u00ab\u0003\u0002\u0002\u0002", + "\u08d7\u08dc\u0005\u00aeX\u0002\u08d8\u08d9\u0007\u0006\u0002\u0002", + "\u08d9\u08db\u0005\u00aeX\u0002\u08da\u08d8\u0003\u0002\u0002\u0002", + "\u08db\u08de\u0003\u0002\u0002\u0002\u08dc\u08da\u0003\u0002\u0002\u0002", + "\u08dc\u08dd\u0003\u0002\u0002\u0002\u08dd\u00ad\u0003\u0002\u0002\u0002", + "\u08de\u08dc\u0003\u0002\u0002\u0002\u08df\u08e4\u0005\u00fe\u0080\u0002", + "\u08e0\u08e1\u0007\u0007\u0002\u0002\u08e1\u08e3\u0005\u00fe\u0080\u0002", + "\u08e2\u08e0\u0003\u0002\u0002\u0002\u08e3\u08e6\u0003\u0002\u0002\u0002", + "\u08e4\u08e2\u0003\u0002\u0002\u0002\u08e4\u08e5\u0003\u0002\u0002\u0002", + "\u08e5\u00af\u0003\u0002\u0002\u0002\u08e6\u08e4\u0003\u0002\u0002\u0002", + "\u08e7\u08e8\u0005\u00fe\u0080\u0002\u08e8\u08e9\u0007\u0007\u0002\u0002", + "\u08e9\u08eb\u0003\u0002\u0002\u0002\u08ea\u08e7\u0003\u0002\u0002\u0002", + "\u08ea\u08eb\u0003\u0002\u0002\u0002\u08eb\u08ec\u0003\u0002\u0002\u0002", + "\u08ec\u08ed\u0005\u00fe\u0080\u0002\u08ed\u00b1\u0003\u0002\u0002\u0002", + "\u08ee\u08f6\u0005\u00bc_\u0002\u08ef\u08f1\u0007\u0018\u0002\u0002", + "\u08f0\u08ef\u0003\u0002\u0002\u0002\u08f0\u08f1\u0003\u0002\u0002\u0002", + "\u08f1\u08f4\u0003\u0002\u0002\u0002\u08f2\u08f5\u0005\u00fe\u0080\u0002", + "\u08f3\u08f5\u0005\u0096L\u0002\u08f4\u08f2\u0003\u0002\u0002\u0002", + "\u08f4\u08f3\u0003\u0002\u0002\u0002\u08f5\u08f7\u0003\u0002\u0002\u0002", + "\u08f6\u08f0\u0003\u0002\u0002\u0002\u08f6\u08f7\u0003\u0002\u0002\u0002", + "\u08f7\u00b3\u0003\u0002\u0002\u0002\u08f8\u08fd\u0005\u00b2Z\u0002", + "\u08f9\u08fa\u0007\u0006\u0002\u0002\u08fa\u08fc\u0005\u00b2Z\u0002", + "\u08fb\u08f9\u0003\u0002\u0002\u0002\u08fc\u08ff\u0003\u0002\u0002\u0002", + "\u08fd\u08fb\u0003\u0002\u0002\u0002\u08fd\u08fe\u0003\u0002\u0002\u0002", + "\u08fe\u00b5\u0003\u0002\u0002\u0002\u08ff\u08fd\u0003\u0002\u0002\u0002", + "\u0900\u0901\u0007\u0004\u0002\u0002\u0901\u0906\u0005\u00b8]\u0002", + "\u0902\u0903\u0007\u0006\u0002\u0002\u0903\u0905\u0005\u00b8]\u0002", + "\u0904\u0902\u0003\u0002\u0002\u0002\u0905\u0908\u0003\u0002\u0002\u0002", + "\u0906\u0904\u0003\u0002\u0002\u0002\u0906\u0907\u0003\u0002\u0002\u0002", + "\u0907\u0909\u0003\u0002\u0002\u0002\u0908\u0906\u0003\u0002\u0002\u0002", + "\u0909\u090a\u0007\u0005\u0002\u0002\u090a\u00b7\u0003\u0002\u0002\u0002", + "\u090b\u0919\u0005\u00fc\u007f\u0002\u090c\u090d\u0005\u0102\u0082\u0002", + "\u090d\u090e\u0007\u0004\u0002\u0002\u090e\u0913\u0005\u00ba^\u0002", + "\u090f\u0910\u0007\u0006\u0002\u0002\u0910\u0912\u0005\u00ba^\u0002", + "\u0911\u090f\u0003\u0002\u0002\u0002\u0912\u0915\u0003\u0002\u0002\u0002", + "\u0913\u0911\u0003\u0002\u0002\u0002\u0913\u0914\u0003\u0002\u0002\u0002", + "\u0914\u0916\u0003\u0002\u0002\u0002\u0915\u0913\u0003\u0002\u0002\u0002", + "\u0916\u0917\u0007\u0005\u0002\u0002\u0917\u0919\u0003\u0002\u0002\u0002", + "\u0918\u090b\u0003\u0002\u0002\u0002\u0918\u090c\u0003\u0002\u0002\u0002", + "\u0919\u00b9\u0003\u0002\u0002\u0002\u091a\u091d\u0005\u00fc\u007f\u0002", + "\u091b\u091d\u0005\u00c6d\u0002\u091c\u091a\u0003\u0002\u0002\u0002", + "\u091c\u091b\u0003\u0002\u0002\u0002\u091d\u00bb\u0003\u0002\u0002\u0002", + "\u091e\u091f\u0005\u00be`\u0002\u091f\u00bd\u0003\u0002\u0002\u0002", + "\u0920\u0921\b`\u0001\u0002\u0921\u0922\u0007\u0098\u0002\u0002\u0922", + "\u092d\u0005\u00be`\u0007\u0923\u0924\u0007U\u0002\u0002\u0924\u0925", + "\u0007\u0004\u0002\u0002\u0925\u0926\u0005\"\u0012\u0002\u0926\u0927", + "\u0007\u0005\u0002\u0002\u0927\u092d\u0003\u0002\u0002\u0002\u0928\u092a", + "\u0005\u00c2b\u0002\u0929\u092b\u0005\u00c0a\u0002\u092a\u0929\u0003", + "\u0002\u0002\u0002\u092a\u092b\u0003\u0002\u0002\u0002\u092b\u092d\u0003", + "\u0002\u0002\u0002\u092c\u0920\u0003\u0002\u0002\u0002\u092c\u0923\u0003", + "\u0002\u0002\u0002\u092c\u0928\u0003\u0002\u0002\u0002\u092d\u0936\u0003", + "\u0002\u0002\u0002\u092e\u092f\f\u0004\u0002\u0002\u092f\u0930\u0007", + "\u0013\u0002\u0002\u0930\u0935\u0005\u00be`\u0005\u0931\u0932\f\u0003", + "\u0002\u0002\u0932\u0933\u0007\u00a0\u0002\u0002\u0933\u0935\u0005\u00be", + "`\u0004\u0934\u092e\u0003\u0002\u0002\u0002\u0934\u0931\u0003\u0002", + "\u0002\u0002\u0935\u0938\u0003\u0002\u0002\u0002\u0936\u0934\u0003\u0002", + "\u0002\u0002\u0936\u0937\u0003\u0002\u0002\u0002\u0937\u00bf\u0003\u0002", + "\u0002\u0002\u0938\u0936\u0003\u0002\u0002\u0002\u0939\u093b\u0007\u0098", + "\u0002\u0002\u093a\u0939\u0003\u0002\u0002\u0002\u093a\u093b\u0003\u0002", + "\u0002\u0002\u093b\u093c\u0003\u0002\u0002\u0002\u093c\u093d\u0007\u001c", + "\u0002\u0002\u093d\u093e\u0005\u00c2b\u0002\u093e\u093f\u0007\u0013", + "\u0002\u0002\u093f\u0940\u0005\u00c2b\u0002\u0940\u098c\u0003\u0002", + "\u0002\u0002\u0941\u0943\u0007\u0098\u0002\u0002\u0942\u0941\u0003\u0002", + "\u0002\u0002\u0942\u0943\u0003\u0002\u0002\u0002\u0943\u0944\u0003\u0002", + "\u0002\u0002\u0944\u0945\u0007r\u0002\u0002\u0945\u0946\u0007\u0004", + "\u0002\u0002\u0946\u094b\u0005\u00bc_\u0002\u0947\u0948\u0007\u0006", + "\u0002\u0002\u0948\u094a\u0005\u00bc_\u0002\u0949\u0947\u0003\u0002", + "\u0002\u0002\u094a\u094d\u0003\u0002\u0002\u0002\u094b\u0949\u0003\u0002", + "\u0002\u0002\u094b\u094c\u0003\u0002\u0002\u0002\u094c\u094e\u0003\u0002", + "\u0002\u0002\u094d\u094b\u0003\u0002\u0002\u0002\u094e\u094f\u0007\u0005", + "\u0002\u0002\u094f\u098c\u0003\u0002\u0002\u0002\u0950\u0952\u0007\u0098", + "\u0002\u0002\u0951\u0950\u0003\u0002\u0002\u0002\u0951\u0952\u0003\u0002", + "\u0002\u0002\u0952\u0953\u0003\u0002\u0002\u0002\u0953\u0954\u0007r", + "\u0002\u0002\u0954\u0955\u0007\u0004\u0002\u0002\u0955\u0956\u0005\"", + "\u0012\u0002\u0956\u0957\u0007\u0005\u0002\u0002\u0957\u098c\u0003\u0002", + "\u0002\u0002\u0958\u095a\u0007\u0098\u0002\u0002\u0959\u0958\u0003\u0002", + "\u0002\u0002\u0959\u095a\u0003\u0002\u0002\u0002\u095a\u095b\u0003\u0002", + "\u0002\u0002\u095b\u095c\u0007\u00c4\u0002\u0002\u095c\u098c\u0005\u00c2", + "b\u0002\u095d\u095f\u0007\u0098\u0002\u0002\u095e\u095d\u0003\u0002", + "\u0002\u0002\u095e\u095f\u0003\u0002\u0002\u0002\u095f\u0960\u0003\u0002", + "\u0002\u0002\u0960\u0961\u0007\u0085\u0002\u0002\u0961\u096f\t\u0016", + "\u0002\u0002\u0962\u0963\u0007\u0004\u0002\u0002\u0963\u0970\u0007\u0005", + "\u0002\u0002\u0964\u0965\u0007\u0004\u0002\u0002\u0965\u096a\u0005\u00bc", + "_\u0002\u0966\u0967\u0007\u0006\u0002\u0002\u0967\u0969\u0005\u00bc", + "_\u0002\u0968\u0966\u0003\u0002\u0002\u0002\u0969\u096c\u0003\u0002", + "\u0002\u0002\u096a\u0968\u0003\u0002\u0002\u0002\u096a\u096b\u0003\u0002", + "\u0002\u0002\u096b\u096d\u0003\u0002\u0002\u0002\u096c\u096a\u0003\u0002", + "\u0002\u0002\u096d\u096e\u0007\u0005\u0002\u0002\u096e\u0970\u0003\u0002", + "\u0002\u0002\u096f\u0962\u0003\u0002\u0002\u0002\u096f\u0964\u0003\u0002", + "\u0002\u0002\u0970\u098c\u0003\u0002\u0002\u0002\u0971\u0973\u0007\u0098", + "\u0002\u0002\u0972\u0971\u0003\u0002\u0002\u0002\u0972\u0973\u0003\u0002", + "\u0002\u0002\u0973\u0974\u0003\u0002\u0002\u0002\u0974\u0975\u0007\u0085", + "\u0002\u0002\u0975\u0978\u0005\u00c2b\u0002\u0976\u0977\u0007Q\u0002", + "\u0002\u0977\u0979\u0007\u0119\u0002\u0002\u0978\u0976\u0003\u0002\u0002", + "\u0002\u0978\u0979\u0003\u0002\u0002\u0002\u0979\u098c\u0003\u0002\u0002", + "\u0002\u097a\u097c\u0007|\u0002\u0002\u097b\u097d\u0007\u0098\u0002", + "\u0002\u097c\u097b\u0003\u0002\u0002\u0002\u097c\u097d\u0003\u0002\u0002", + "\u0002\u097d\u097e\u0003\u0002\u0002\u0002\u097e\u098c\u0007\u0099\u0002", + "\u0002\u097f\u0981\u0007|\u0002\u0002\u0980\u0982\u0007\u0098\u0002", + "\u0002\u0981\u0980\u0003\u0002\u0002\u0002\u0981\u0982\u0003\u0002\u0002", + "\u0002\u0982\u0983\u0003\u0002\u0002\u0002\u0983\u098c\t\u0017\u0002", + "\u0002\u0984\u0986\u0007|\u0002\u0002\u0985\u0987\u0007\u0098\u0002", + "\u0002\u0986\u0985\u0003\u0002\u0002\u0002\u0986\u0987\u0003\u0002\u0002", + "\u0002\u0987\u0988\u0003\u0002\u0002\u0002\u0988\u0989\u0007K\u0002", + "\u0002\u0989\u098a\u0007f\u0002\u0002\u098a\u098c\u0005\u00c2b\u0002", + "\u098b\u093a\u0003\u0002\u0002\u0002\u098b\u0942\u0003\u0002\u0002\u0002", + "\u098b\u0951\u0003\u0002\u0002\u0002\u098b\u0959\u0003\u0002\u0002\u0002", + "\u098b\u095e\u0003\u0002\u0002\u0002\u098b\u0972\u0003\u0002\u0002\u0002", + "\u098b\u097a\u0003\u0002\u0002\u0002\u098b\u097f\u0003\u0002\u0002\u0002", + "\u098b\u0984\u0003\u0002\u0002\u0002\u098c\u00c1\u0003\u0002\u0002\u0002", + "\u098d\u098e\bb\u0001\u0002\u098e\u0992\u0005\u00c4c\u0002\u098f\u0990", + "\t\u0018\u0002\u0002\u0990\u0992\u0005\u00c2b\t\u0991\u098d\u0003\u0002", + "\u0002\u0002\u0991\u098f\u0003\u0002\u0002\u0002\u0992\u09a8\u0003\u0002", + "\u0002\u0002\u0993\u0994\f\b\u0002\u0002\u0994\u0995\t\u0019\u0002\u0002", + "\u0995\u09a7\u0005\u00c2b\t\u0996\u0997\f\u0007\u0002\u0002\u0997\u0998", + "\t\u001a\u0002\u0002\u0998\u09a7\u0005\u00c2b\b\u0999\u099a\f\u0006", + "\u0002\u0002\u099a\u099b\u0007\u0115\u0002\u0002\u099b\u09a7\u0005\u00c2", + "b\u0007\u099c\u099d\f\u0005\u0002\u0002\u099d\u099e\u0007\u0118\u0002", + "\u0002\u099e\u09a7\u0005\u00c2b\u0006\u099f\u09a0\f\u0004\u0002\u0002", + "\u09a0\u09a1\u0007\u0116\u0002\u0002\u09a1\u09a7\u0005\u00c2b\u0005", + "\u09a2\u09a3\f\u0003\u0002\u0002\u09a3\u09a4\u0005\u00c8e\u0002\u09a4", + "\u09a5\u0005\u00c2b\u0004\u09a5\u09a7\u0003\u0002\u0002\u0002\u09a6", + "\u0993\u0003\u0002\u0002\u0002\u09a6\u0996\u0003\u0002\u0002\u0002\u09a6", + "\u0999\u0003\u0002\u0002\u0002\u09a6\u099c\u0003\u0002\u0002\u0002\u09a6", + "\u099f\u0003\u0002\u0002\u0002\u09a6\u09a2\u0003\u0002\u0002\u0002\u09a7", + "\u09aa\u0003\u0002\u0002\u0002\u09a8\u09a6\u0003\u0002\u0002\u0002\u09a8", + "\u09a9\u0003\u0002\u0002\u0002\u09a9\u00c3\u0003\u0002\u0002\u0002\u09aa", + "\u09a8\u0003\u0002\u0002\u0002\u09ab\u09ac\bc\u0001\u0002\u09ac\u0a64", + "\t\u001b\u0002\u0002\u09ad\u09af\u0007#\u0002\u0002\u09ae\u09b0\u0005", + "\u00ecw\u0002\u09af\u09ae\u0003\u0002\u0002\u0002\u09b0\u09b1\u0003", + "\u0002\u0002\u0002\u09b1\u09af\u0003\u0002\u0002\u0002\u09b1\u09b2\u0003", + "\u0002\u0002\u0002\u09b2\u09b5\u0003\u0002\u0002\u0002\u09b3\u09b4\u0007", + "O\u0002\u0002\u09b4\u09b6\u0005\u00bc_\u0002\u09b5\u09b3\u0003\u0002", + "\u0002\u0002\u09b5\u09b6\u0003\u0002\u0002\u0002\u09b6\u09b7\u0003\u0002", + "\u0002\u0002\u09b7\u09b8\u0007P\u0002\u0002\u09b8\u0a64\u0003\u0002", + "\u0002\u0002\u09b9\u09ba\u0007#\u0002\u0002\u09ba\u09bc\u0005\u00bc", + "_\u0002\u09bb\u09bd\u0005\u00ecw\u0002\u09bc\u09bb\u0003\u0002\u0002", + "\u0002\u09bd\u09be\u0003\u0002\u0002\u0002\u09be\u09bc\u0003\u0002\u0002", + "\u0002\u09be\u09bf\u0003\u0002\u0002\u0002\u09bf\u09c2\u0003\u0002\u0002", + "\u0002\u09c0\u09c1\u0007O\u0002\u0002\u09c1\u09c3\u0005\u00bc_\u0002", + "\u09c2\u09c0\u0003\u0002\u0002\u0002\u09c2\u09c3\u0003\u0002\u0002\u0002", + "\u09c3\u09c4\u0003\u0002\u0002\u0002\u09c4\u09c5\u0007P\u0002\u0002", + "\u09c5\u0a64\u0003\u0002\u0002\u0002\u09c6\u09c7\u0007$\u0002\u0002", + "\u09c7\u09c8\u0007\u0004\u0002\u0002\u09c8\u09c9\u0005\u00bc_\u0002", + "\u09c9\u09ca\u0007\u0018\u0002\u0002\u09ca\u09cb\u0005\u00dep\u0002", + "\u09cb\u09cc\u0007\u0005\u0002\u0002\u09cc\u0a64\u0003\u0002\u0002\u0002", + "\u09cd\u09ce\u0007\u00de\u0002\u0002\u09ce\u09d7\u0007\u0004\u0002\u0002", + "\u09cf\u09d4\u0005\u00b2Z\u0002\u09d0\u09d1\u0007\u0006\u0002\u0002", + "\u09d1\u09d3\u0005\u00b2Z\u0002\u09d2\u09d0\u0003\u0002\u0002\u0002", + "\u09d3\u09d6\u0003\u0002\u0002\u0002\u09d4\u09d2\u0003\u0002\u0002\u0002", + "\u09d4\u09d5\u0003\u0002\u0002\u0002\u09d5\u09d8\u0003\u0002\u0002\u0002", + "\u09d6\u09d4\u0003\u0002\u0002\u0002\u09d7\u09cf\u0003\u0002\u0002\u0002", + "\u09d7\u09d8\u0003\u0002\u0002\u0002\u09d8\u09d9\u0003\u0002\u0002\u0002", + "\u09d9\u0a64\u0007\u0005\u0002\u0002\u09da\u09db\u0007`\u0002\u0002", + "\u09db\u09dc\u0007\u0004\u0002\u0002\u09dc\u09df\u0005\u00bc_\u0002", + "\u09dd\u09de\u0007p\u0002\u0002\u09de\u09e0\u0007\u009a\u0002\u0002", + "\u09df\u09dd\u0003\u0002\u0002\u0002\u09df\u09e0\u0003\u0002\u0002\u0002", + "\u09e0\u09e1\u0003\u0002\u0002\u0002\u09e1\u09e2\u0007\u0005\u0002\u0002", + "\u09e2\u0a64\u0003\u0002\u0002\u0002\u09e3\u09e4\u0007\u0080\u0002\u0002", + "\u09e4\u09e5\u0007\u0004\u0002\u0002\u09e5\u09e8\u0005\u00bc_\u0002", + "\u09e6\u09e7\u0007p\u0002\u0002\u09e7\u09e9\u0007\u009a\u0002\u0002", + "\u09e8\u09e6\u0003\u0002\u0002\u0002\u09e8\u09e9\u0003\u0002\u0002\u0002", + "\u09e9\u09ea\u0003\u0002\u0002\u0002\u09ea\u09eb\u0007\u0005\u0002\u0002", + "\u09eb\u0a64\u0003\u0002\u0002\u0002\u09ec\u09ed\u0007\u00af\u0002\u0002", + "\u09ed\u09ee\u0007\u0004\u0002\u0002\u09ee\u09ef\u0005\u00c2b\u0002", + "\u09ef\u09f0\u0007r\u0002\u0002\u09f0\u09f1\u0005\u00c2b\u0002\u09f1", + "\u09f2\u0007\u0005\u0002\u0002\u09f2\u0a64\u0003\u0002\u0002\u0002\u09f3", + "\u0a64\u0005\u00c6d\u0002\u09f4\u0a64\u0007\u0111\u0002\u0002\u09f5", + "\u09f6\u0005\u00fc\u007f\u0002\u09f6\u09f7\u0007\u0007\u0002\u0002\u09f7", + "\u09f8\u0007\u0111\u0002\u0002\u09f8\u0a64\u0003\u0002\u0002\u0002\u09f9", + "\u09fa\u0007\u0004\u0002\u0002\u09fa\u09fd\u0005\u00b2Z\u0002\u09fb", + "\u09fc\u0007\u0006\u0002\u0002\u09fc\u09fe\u0005\u00b2Z\u0002\u09fd", + "\u09fb\u0003\u0002\u0002\u0002\u09fe\u09ff\u0003\u0002\u0002\u0002\u09ff", + "\u09fd\u0003\u0002\u0002\u0002\u09ff\u0a00\u0003\u0002\u0002\u0002\u0a00", + "\u0a01\u0003\u0002\u0002\u0002\u0a01\u0a02\u0007\u0005\u0002\u0002\u0a02", + "\u0a64\u0003\u0002\u0002\u0002\u0a03\u0a04\u0007\u0004\u0002\u0002\u0a04", + "\u0a05\u0005\"\u0012\u0002\u0a05\u0a06\u0007\u0005\u0002\u0002\u0a06", + "\u0a64\u0003\u0002\u0002\u0002\u0a07\u0a08\u0005\u00fa~\u0002\u0a08", + "\u0a14\u0007\u0004\u0002\u0002\u0a09\u0a0b\u0005\u0088E\u0002\u0a0a", + "\u0a09\u0003\u0002\u0002\u0002\u0a0a\u0a0b\u0003\u0002\u0002\u0002\u0a0b", + "\u0a0c\u0003\u0002\u0002\u0002\u0a0c\u0a11\u0005\u00bc_\u0002\u0a0d", + "\u0a0e\u0007\u0006\u0002\u0002\u0a0e\u0a10\u0005\u00bc_\u0002\u0a0f", + "\u0a0d\u0003\u0002\u0002\u0002\u0a10\u0a13\u0003\u0002\u0002\u0002\u0a11", + "\u0a0f\u0003\u0002\u0002\u0002\u0a11\u0a12\u0003\u0002\u0002\u0002\u0a12", + "\u0a15\u0003\u0002\u0002\u0002\u0a13\u0a11\u0003\u0002\u0002\u0002\u0a14", + "\u0a0a\u0003\u0002\u0002\u0002\u0a14\u0a15\u0003\u0002\u0002\u0002\u0a15", + "\u0a16\u0003\u0002\u0002\u0002\u0a16\u0a1d\u0007\u0005\u0002\u0002\u0a17", + "\u0a18\u0007^\u0002\u0002\u0a18\u0a19\u0007\u0004\u0002\u0002\u0a19", + "\u0a1a\u0007\u0103\u0002\u0002\u0a1a\u0a1b\u0005\u00be`\u0002\u0a1b", + "\u0a1c\u0007\u0005\u0002\u0002\u0a1c\u0a1e\u0003\u0002\u0002\u0002\u0a1d", + "\u0a17\u0003\u0002\u0002\u0002\u0a1d\u0a1e\u0003\u0002\u0002\u0002\u0a1e", + "\u0a21\u0003\u0002\u0002\u0002\u0a1f\u0a20\u0007\u00a5\u0002\u0002\u0a20", + "\u0a22\u0005\u00f2z\u0002\u0a21\u0a1f\u0003\u0002\u0002\u0002\u0a21", + "\u0a22\u0003\u0002\u0002\u0002\u0a22\u0a64\u0003\u0002\u0002\u0002\u0a23", + "\u0a24\u0005\u0102\u0082\u0002\u0a24\u0a25\u0007\n\u0002\u0002\u0a25", + "\u0a26\u0005\u00bc_\u0002\u0a26\u0a64\u0003\u0002\u0002\u0002\u0a27", + "\u0a28\u0007\u0004\u0002\u0002\u0a28\u0a2b\u0005\u0102\u0082\u0002\u0a29", + "\u0a2a\u0007\u0006\u0002\u0002\u0a2a\u0a2c\u0005\u0102\u0082\u0002\u0a2b", + "\u0a29\u0003\u0002\u0002\u0002\u0a2c\u0a2d\u0003\u0002\u0002\u0002\u0a2d", + "\u0a2b\u0003\u0002\u0002\u0002\u0a2d\u0a2e\u0003\u0002\u0002\u0002\u0a2e", + "\u0a2f\u0003\u0002\u0002\u0002\u0a2f\u0a30\u0007\u0005\u0002\u0002\u0a30", + "\u0a31\u0007\n\u0002\u0002\u0a31\u0a32\u0005\u00bc_\u0002\u0a32\u0a64", + "\u0003\u0002\u0002\u0002\u0a33\u0a64\u0005\u0102\u0082\u0002\u0a34\u0a35", + "\u0007\u0004\u0002\u0002\u0a35\u0a36\u0005\u00bc_\u0002\u0a36\u0a37", + "\u0007\u0005\u0002\u0002\u0a37\u0a64\u0003\u0002\u0002\u0002\u0a38\u0a39", + "\u0007Z\u0002\u0002\u0a39\u0a3a\u0007\u0004\u0002\u0002\u0a3a\u0a3b", + "\u0005\u0102\u0082\u0002\u0a3b\u0a3c\u0007f\u0002\u0002\u0a3c\u0a3d", + "\u0005\u00c2b\u0002\u0a3d\u0a3e\u0007\u0005\u0002\u0002\u0a3e\u0a64", + "\u0003\u0002\u0002\u0002\u0a3f\u0a40\t\u001c\u0002\u0002\u0a40\u0a41", + "\u0007\u0004\u0002\u0002\u0a41\u0a42\u0005\u00c2b\u0002\u0a42\u0a43", + "\t\u001d\u0002\u0002\u0a43\u0a46\u0005\u00c2b\u0002\u0a44\u0a45\t\u001e", + "\u0002\u0002\u0a45\u0a47\u0005\u00c2b\u0002\u0a46\u0a44\u0003\u0002", + "\u0002\u0002\u0a46\u0a47\u0003\u0002\u0002\u0002\u0a47\u0a48\u0003\u0002", + "\u0002\u0002\u0a48\u0a49\u0007\u0005\u0002\u0002\u0a49\u0a64\u0003\u0002", + "\u0002\u0002\u0a4a\u0a4b\u0007\u00ef\u0002\u0002\u0a4b\u0a4d\u0007\u0004", + "\u0002\u0002\u0a4c\u0a4e\t\u001f\u0002\u0002\u0a4d\u0a4c\u0003\u0002", + "\u0002\u0002\u0a4d\u0a4e\u0003\u0002\u0002\u0002\u0a4e\u0a50\u0003\u0002", + "\u0002\u0002\u0a4f\u0a51\u0005\u00c2b\u0002\u0a50\u0a4f\u0003\u0002", + "\u0002\u0002\u0a50\u0a51\u0003\u0002\u0002\u0002\u0a51\u0a52\u0003\u0002", + "\u0002\u0002\u0a52\u0a53\u0007f\u0002\u0002\u0a53\u0a54\u0005\u00c2", + "b\u0002\u0a54\u0a55\u0007\u0005\u0002\u0002\u0a55\u0a64\u0003\u0002", + "\u0002\u0002\u0a56\u0a57\u0007\u00a7\u0002\u0002\u0a57\u0a58\u0007\u0004", + "\u0002\u0002\u0a58\u0a59\u0005\u00c2b\u0002\u0a59\u0a5a\u0007\u00ae", + "\u0002\u0002\u0a5a\u0a5b\u0005\u00c2b\u0002\u0a5b\u0a5c\u0007f\u0002", + "\u0002\u0a5c\u0a5f\u0005\u00c2b\u0002\u0a5d\u0a5e\u0007b\u0002\u0002", + "\u0a5e\u0a60\u0005\u00c2b\u0002\u0a5f\u0a5d\u0003\u0002\u0002\u0002", + "\u0a5f\u0a60\u0003\u0002\u0002\u0002\u0a60\u0a61\u0003\u0002\u0002\u0002", + "\u0a61\u0a62\u0007\u0005\u0002\u0002\u0a62\u0a64\u0003\u0002\u0002\u0002", + "\u0a63\u09ab\u0003\u0002\u0002\u0002\u0a63\u09ad\u0003\u0002\u0002\u0002", + "\u0a63\u09b9\u0003\u0002\u0002\u0002\u0a63\u09c6\u0003\u0002\u0002\u0002", + "\u0a63\u09cd\u0003\u0002\u0002\u0002\u0a63\u09da\u0003\u0002\u0002\u0002", + "\u0a63\u09e3\u0003\u0002\u0002\u0002\u0a63\u09ec\u0003\u0002\u0002\u0002", + "\u0a63\u09f3\u0003\u0002\u0002\u0002\u0a63\u09f4\u0003\u0002\u0002\u0002", + "\u0a63\u09f5\u0003\u0002\u0002\u0002\u0a63\u09f9\u0003\u0002\u0002\u0002", + "\u0a63\u0a03\u0003\u0002\u0002\u0002\u0a63\u0a07\u0003\u0002\u0002\u0002", + "\u0a63\u0a23\u0003\u0002\u0002\u0002\u0a63\u0a27\u0003\u0002\u0002\u0002", + "\u0a63\u0a33\u0003\u0002\u0002\u0002\u0a63\u0a34\u0003\u0002\u0002\u0002", + "\u0a63\u0a38\u0003\u0002\u0002\u0002\u0a63\u0a3f\u0003\u0002\u0002\u0002", + "\u0a63\u0a4a\u0003\u0002\u0002\u0002\u0a63\u0a56\u0003\u0002\u0002\u0002", + "\u0a64\u0a6f\u0003\u0002\u0002\u0002\u0a65\u0a66\f\n\u0002\u0002\u0a66", + "\u0a67\u0007\u000b\u0002\u0002\u0a67\u0a68\u0005\u00c2b\u0002\u0a68", + "\u0a69\u0007\f\u0002\u0002\u0a69\u0a6e\u0003\u0002\u0002\u0002\u0a6a", + "\u0a6b\f\b\u0002\u0002\u0a6b\u0a6c\u0007\u0007\u0002\u0002\u0a6c\u0a6e", + "\u0005\u0102\u0082\u0002\u0a6d\u0a65\u0003\u0002\u0002\u0002\u0a6d\u0a6a", + "\u0003\u0002\u0002\u0002\u0a6e\u0a71\u0003\u0002\u0002\u0002\u0a6f\u0a6d", + "\u0003\u0002\u0002\u0002\u0a6f\u0a70\u0003\u0002\u0002\u0002\u0a70\u00c5", + "\u0003\u0002\u0002\u0002\u0a71\u0a6f\u0003\u0002\u0002\u0002\u0a72\u0a7f", + "\u0007\u0099\u0002\u0002\u0a73\u0a7f\u0005\u00d0i\u0002\u0a74\u0a75", + "\u0005\u0102\u0082\u0002\u0a75\u0a76\u0007\u0119\u0002\u0002\u0a76\u0a7f", + "\u0003\u0002\u0002\u0002\u0a77\u0a7f\u0005\u0108\u0085\u0002\u0a78\u0a7f", + "\u0005\u00ceh\u0002\u0a79\u0a7b\u0007\u0119\u0002\u0002\u0a7a\u0a79", + "\u0003\u0002\u0002\u0002\u0a7b\u0a7c\u0003\u0002\u0002\u0002\u0a7c\u0a7a", + "\u0003\u0002\u0002\u0002\u0a7c\u0a7d\u0003\u0002\u0002\u0002\u0a7d\u0a7f", + "\u0003\u0002\u0002\u0002\u0a7e\u0a72\u0003\u0002\u0002\u0002\u0a7e\u0a73", + "\u0003\u0002\u0002\u0002\u0a7e\u0a74\u0003\u0002\u0002\u0002\u0a7e\u0a77", + "\u0003\u0002\u0002\u0002\u0a7e\u0a78\u0003\u0002\u0002\u0002\u0a7e\u0a7a", + "\u0003\u0002\u0002\u0002\u0a7f\u00c7\u0003\u0002\u0002\u0002\u0a80\u0a81", + "\t \u0002\u0002\u0a81\u00c9\u0003\u0002\u0002\u0002\u0a82\u0a83\t!\u0002", + "\u0002\u0a83\u00cb\u0003\u0002\u0002\u0002\u0a84\u0a85\t\"\u0002\u0002", + "\u0a85\u00cd\u0003\u0002\u0002\u0002\u0a86\u0a87\t#\u0002\u0002\u0a87", + "\u00cf\u0003\u0002\u0002\u0002\u0a88\u0a8b\u0007z\u0002\u0002\u0a89", + "\u0a8c\u0005\u00d2j\u0002\u0a8a\u0a8c\u0005\u00d6l\u0002\u0a8b\u0a89", + "\u0003\u0002\u0002\u0002\u0a8b\u0a8a\u0003\u0002\u0002\u0002\u0a8b\u0a8c", + "\u0003\u0002\u0002\u0002\u0a8c\u00d1\u0003\u0002\u0002\u0002\u0a8d\u0a8f", + "\u0005\u00d4k\u0002\u0a8e\u0a90\u0005\u00d8m\u0002\u0a8f\u0a8e\u0003", + "\u0002\u0002\u0002\u0a8f\u0a90\u0003\u0002\u0002\u0002\u0a90\u00d3\u0003", + "\u0002\u0002\u0002\u0a91\u0a92\u0005\u00dan\u0002\u0a92\u0a93\u0005", + "\u0102\u0082\u0002\u0a93\u0a95\u0003\u0002\u0002\u0002\u0a94\u0a91\u0003", + "\u0002\u0002\u0002\u0a95\u0a96\u0003\u0002\u0002\u0002\u0a96\u0a94\u0003", + "\u0002\u0002\u0002\u0a96\u0a97\u0003\u0002\u0002\u0002\u0a97\u00d5\u0003", + "\u0002\u0002\u0002\u0a98\u0a9b\u0005\u00d8m\u0002\u0a99\u0a9c\u0005", + "\u00d4k\u0002\u0a9a\u0a9c\u0005\u00d8m\u0002\u0a9b\u0a99\u0003\u0002", + "\u0002\u0002\u0a9b\u0a9a\u0003\u0002\u0002\u0002\u0a9b\u0a9c\u0003\u0002", + "\u0002\u0002\u0a9c\u00d7\u0003\u0002\u0002\u0002\u0a9d\u0a9e\u0005\u00da", + "n\u0002\u0a9e\u0a9f\u0005\u0102\u0082\u0002\u0a9f\u0aa0\u0007\u00e9", + "\u0002\u0002\u0aa0\u0aa1\u0005\u0102\u0082\u0002\u0aa1\u00d9\u0003\u0002", + "\u0002\u0002\u0aa2\u0aa4\t$\u0002\u0002\u0aa3\u0aa2\u0003\u0002\u0002", + "\u0002\u0aa3\u0aa4\u0003\u0002\u0002\u0002\u0aa4\u0aa5\u0003\u0002\u0002", + "\u0002\u0aa5\u0aa8\t\u0015\u0002\u0002\u0aa6\u0aa8\u0007\u0119\u0002", + "\u0002\u0aa7\u0aa3\u0003\u0002\u0002\u0002\u0aa7\u0aa6\u0003\u0002\u0002", + "\u0002\u0aa8\u00db\u0003\u0002\u0002\u0002\u0aa9\u0aad\u0007`\u0002", + "\u0002\u0aaa\u0aab\u0007\u000f\u0002\u0002\u0aab\u0aad\u0005\u00fe\u0080", + "\u0002\u0aac\u0aa9\u0003\u0002\u0002\u0002\u0aac\u0aaa\u0003\u0002\u0002", + "\u0002\u0aad\u00dd\u0003\u0002\u0002\u0002\u0aae\u0aaf\u0007\u0017\u0002", + "\u0002\u0aaf\u0ab0\u0007\u010b\u0002\u0002\u0ab0\u0ab1\u0005\u00dep", + "\u0002\u0ab1\u0ab2\u0007\u010d\u0002\u0002\u0ab2\u0ad1\u0003\u0002\u0002", + "\u0002\u0ab3\u0ab4\u0007\u0090\u0002\u0002\u0ab4\u0ab5\u0007\u010b\u0002", + "\u0002\u0ab5\u0ab6\u0005\u00dep\u0002\u0ab6\u0ab7\u0007\u0006\u0002", + "\u0002\u0ab7\u0ab8\u0005\u00dep\u0002\u0ab8\u0ab9\u0007\u010d\u0002", + "\u0002\u0ab9\u0ad1\u0003\u0002\u0002\u0002\u0aba\u0ac1\u0007\u00de\u0002", + "\u0002\u0abb\u0abd\u0007\u010b\u0002\u0002\u0abc\u0abe\u0005\u00e8u", + "\u0002\u0abd\u0abc\u0003\u0002\u0002\u0002\u0abd\u0abe\u0003\u0002\u0002", + "\u0002\u0abe\u0abf\u0003\u0002\u0002\u0002\u0abf\u0ac2\u0007\u010d\u0002", + "\u0002\u0ac0\u0ac2\u0007\u0109\u0002\u0002\u0ac1\u0abb\u0003\u0002\u0002", + "\u0002\u0ac1\u0ac0\u0003\u0002\u0002\u0002\u0ac2\u0ad1\u0003\u0002\u0002", + "\u0002\u0ac3\u0ace\u0005\u0102\u0082\u0002\u0ac4\u0ac5\u0007\u0004\u0002", + "\u0002\u0ac5\u0aca\u0007\u011d\u0002\u0002\u0ac6\u0ac7\u0007\u0006\u0002", + "\u0002\u0ac7\u0ac9\u0007\u011d\u0002\u0002\u0ac8\u0ac6\u0003\u0002\u0002", + "\u0002\u0ac9\u0acc\u0003\u0002\u0002\u0002\u0aca\u0ac8\u0003\u0002\u0002", + "\u0002\u0aca\u0acb\u0003\u0002\u0002\u0002\u0acb\u0acd\u0003\u0002\u0002", + "\u0002\u0acc\u0aca\u0003\u0002\u0002\u0002\u0acd\u0acf\u0007\u0005\u0002", + "\u0002\u0ace\u0ac4\u0003\u0002\u0002\u0002\u0ace\u0acf\u0003\u0002\u0002", + "\u0002\u0acf\u0ad1\u0003\u0002\u0002\u0002\u0ad0\u0aae\u0003\u0002\u0002", + "\u0002\u0ad0\u0ab3\u0003\u0002\u0002\u0002\u0ad0\u0aba\u0003\u0002\u0002", + "\u0002\u0ad0\u0ac3\u0003\u0002\u0002\u0002\u0ad1\u00df\u0003\u0002\u0002", + "\u0002\u0ad2\u0ad7\u0005\u00e2r\u0002\u0ad3\u0ad4\u0007\u0006\u0002", + "\u0002\u0ad4\u0ad6\u0005\u00e2r\u0002\u0ad5\u0ad3\u0003\u0002\u0002", + "\u0002\u0ad6\u0ad9\u0003\u0002\u0002\u0002\u0ad7\u0ad5\u0003\u0002\u0002", + "\u0002\u0ad7\u0ad8\u0003\u0002\u0002\u0002\u0ad8\u00e1\u0003\u0002\u0002", + "\u0002\u0ad9\u0ad7\u0003\u0002\u0002\u0002\u0ada\u0adb\u0005\u00aeX", + "\u0002\u0adb\u0ade\u0005\u00dep\u0002\u0adc\u0add\u0007\u0098\u0002", + "\u0002\u0add\u0adf\u0007\u0099\u0002\u0002\u0ade\u0adc\u0003\u0002\u0002", + "\u0002\u0ade\u0adf\u0003\u0002\u0002\u0002\u0adf\u0ae1\u0003\u0002\u0002", + "\u0002\u0ae0\u0ae2\u0005 \u0011\u0002\u0ae1\u0ae0\u0003\u0002\u0002", + "\u0002\u0ae1\u0ae2\u0003\u0002\u0002\u0002\u0ae2\u0ae4\u0003\u0002\u0002", + "\u0002\u0ae3\u0ae5\u0005\u00dco\u0002\u0ae4\u0ae3\u0003\u0002\u0002", + "\u0002\u0ae4\u0ae5\u0003\u0002\u0002\u0002\u0ae5\u00e3\u0003\u0002\u0002", + "\u0002\u0ae6\u0aeb\u0005\u00e6t\u0002\u0ae7\u0ae8\u0007\u0006\u0002", + "\u0002\u0ae8\u0aea\u0005\u00e6t\u0002\u0ae9\u0ae7\u0003\u0002\u0002", + "\u0002\u0aea\u0aed\u0003\u0002\u0002\u0002\u0aeb\u0ae9\u0003\u0002\u0002", + "\u0002\u0aeb\u0aec\u0003\u0002\u0002\u0002\u0aec\u00e5\u0003\u0002\u0002", + "\u0002\u0aed\u0aeb\u0003\u0002\u0002\u0002\u0aee\u0aef\u0005\u00fe\u0080", + "\u0002\u0aef\u0af2\u0005\u00dep\u0002\u0af0\u0af1\u0007\u0098\u0002", + "\u0002\u0af1\u0af3\u0007\u0099\u0002\u0002\u0af2\u0af0\u0003\u0002\u0002", + "\u0002\u0af2\u0af3\u0003\u0002\u0002\u0002\u0af3\u0af5\u0003\u0002\u0002", + "\u0002\u0af4\u0af6\u0005 \u0011\u0002\u0af5\u0af4\u0003\u0002\u0002", + "\u0002\u0af5\u0af6\u0003\u0002\u0002\u0002\u0af6\u00e7\u0003\u0002\u0002", + "\u0002\u0af7\u0afc\u0005\u00eav\u0002\u0af8\u0af9\u0007\u0006\u0002", + "\u0002\u0af9\u0afb\u0005\u00eav\u0002\u0afa\u0af8\u0003\u0002\u0002", + "\u0002\u0afb\u0afe\u0003\u0002\u0002\u0002\u0afc\u0afa\u0003\u0002\u0002", + "\u0002\u0afc\u0afd\u0003\u0002\u0002\u0002\u0afd\u00e9\u0003\u0002\u0002", + "\u0002\u0afe\u0afc\u0003\u0002\u0002\u0002\u0aff\u0b00\u0005\u0102\u0082", + "\u0002\u0b00\u0b01\u0007\r\u0002\u0002\u0b01\u0b04\u0005\u00dep\u0002", + "\u0b02\u0b03\u0007\u0098\u0002\u0002\u0b03\u0b05\u0007\u0099\u0002\u0002", + "\u0b04\u0b02\u0003\u0002\u0002\u0002\u0b04\u0b05\u0003\u0002\u0002\u0002", + "\u0b05\u0b07\u0003\u0002\u0002\u0002\u0b06\u0b08\u0005 \u0011\u0002", + "\u0b07\u0b06\u0003\u0002\u0002\u0002\u0b07\u0b08\u0003\u0002\u0002\u0002", + "\u0b08\u00eb\u0003\u0002\u0002\u0002\u0b09\u0b0a\u0007\u0102\u0002\u0002", + "\u0b0a\u0b0b\u0005\u00bc_\u0002\u0b0b\u0b0c\u0007\u00e7\u0002\u0002", + "\u0b0c\u0b0d\u0005\u00bc_\u0002\u0b0d\u00ed\u0003\u0002\u0002\u0002", + "\u0b0e\u0b0f\u0007\u0104\u0002\u0002\u0b0f\u0b14\u0005\u00f0y\u0002", + "\u0b10\u0b11\u0007\u0006\u0002\u0002\u0b11\u0b13\u0005\u00f0y\u0002", + "\u0b12\u0b10\u0003\u0002\u0002\u0002\u0b13\u0b16\u0003\u0002\u0002\u0002", + "\u0b14\u0b12\u0003\u0002\u0002\u0002\u0b14\u0b15\u0003\u0002\u0002\u0002", + "\u0b15\u00ef\u0003\u0002\u0002\u0002\u0b16\u0b14\u0003\u0002\u0002\u0002", + "\u0b17\u0b18\u0005\u00fe\u0080\u0002\u0b18\u0b19\u0007\u0018\u0002\u0002", + "\u0b19\u0b1a\u0005\u00f2z\u0002\u0b1a\u00f1\u0003\u0002\u0002\u0002", + "\u0b1b\u0b4a\u0005\u00fe\u0080\u0002\u0b1c\u0b1d\u0007\u0004\u0002\u0002", + "\u0b1d\u0b1e\u0005\u00fe\u0080\u0002\u0b1e\u0b1f\u0007\u0005\u0002\u0002", + "\u0b1f\u0b4a\u0003\u0002\u0002\u0002\u0b20\u0b43\u0007\u0004\u0002\u0002", + "\u0b21\u0b22\u0007(\u0002\u0002\u0b22\u0b23\u0007 \u0002\u0002\u0b23", + "\u0b28\u0005\u00bc_\u0002\u0b24\u0b25\u0007\u0006\u0002\u0002\u0b25", + "\u0b27\u0005\u00bc_\u0002\u0b26\u0b24\u0003\u0002\u0002\u0002\u0b27", + "\u0b2a\u0003\u0002\u0002\u0002\u0b28\u0b26\u0003\u0002\u0002\u0002\u0b28", + "\u0b29\u0003\u0002\u0002\u0002\u0b29\u0b44\u0003\u0002\u0002\u0002\u0b2a", + "\u0b28\u0003\u0002\u0002\u0002\u0b2b\u0b2c\t%\u0002\u0002\u0b2c\u0b2d", + "\u0007 \u0002\u0002\u0b2d\u0b32\u0005\u00bc_\u0002\u0b2e\u0b2f\u0007", + "\u0006\u0002\u0002\u0b2f\u0b31\u0005\u00bc_\u0002\u0b30\u0b2e\u0003", + "\u0002\u0002\u0002\u0b31\u0b34\u0003\u0002\u0002\u0002\u0b32\u0b30\u0003", + "\u0002\u0002\u0002\u0b32\u0b33\u0003\u0002\u0002\u0002\u0b33\u0b36\u0003", + "\u0002\u0002\u0002\u0b34\u0b32\u0003\u0002\u0002\u0002\u0b35\u0b2b\u0003", + "\u0002\u0002\u0002\u0b35\u0b36\u0003\u0002\u0002\u0002\u0b36\u0b41\u0003", + "\u0002\u0002\u0002\u0b37\u0b38\t&\u0002\u0002\u0b38\u0b39\u0007 \u0002", + "\u0002\u0b39\u0b3e\u0005X-\u0002\u0b3a\u0b3b\u0007\u0006\u0002\u0002", + "\u0b3b\u0b3d\u0005X-\u0002\u0b3c\u0b3a\u0003\u0002\u0002\u0002\u0b3d", + "\u0b40\u0003\u0002\u0002\u0002\u0b3e\u0b3c\u0003\u0002\u0002\u0002\u0b3e", + "\u0b3f\u0003\u0002\u0002\u0002\u0b3f\u0b42\u0003\u0002\u0002\u0002\u0b40", + "\u0b3e\u0003\u0002\u0002\u0002\u0b41\u0b37\u0003\u0002\u0002\u0002\u0b41", + "\u0b42\u0003\u0002\u0002\u0002\u0b42\u0b44\u0003\u0002\u0002\u0002\u0b43", + "\u0b21\u0003\u0002\u0002\u0002\u0b43\u0b35\u0003\u0002\u0002\u0002\u0b44", + "\u0b46\u0003\u0002\u0002\u0002\u0b45\u0b47\u0005\u00f4{\u0002\u0b46", + "\u0b45\u0003\u0002\u0002\u0002\u0b46\u0b47\u0003\u0002\u0002\u0002\u0b47", + "\u0b48\u0003\u0002\u0002\u0002\u0b48\u0b4a\u0007\u0005\u0002\u0002\u0b49", + "\u0b1b\u0003\u0002\u0002\u0002\u0b49\u0b1c\u0003\u0002\u0002\u0002\u0b49", + "\u0b20\u0003\u0002\u0002\u0002\u0b4a\u00f3\u0003\u0002\u0002\u0002\u0b4b", + "\u0b4c\u0007\u00b6\u0002\u0002\u0b4c\u0b5c\u0005\u00f6|\u0002\u0b4d", + "\u0b4e\u0007\u00ca\u0002\u0002\u0b4e\u0b5c\u0005\u00f6|\u0002\u0b4f", + "\u0b50\u0007\u00b6\u0002\u0002\u0b50\u0b51\u0007\u001c\u0002\u0002\u0b51", + "\u0b52\u0005\u00f6|\u0002\u0b52\u0b53\u0007\u0013\u0002\u0002\u0b53", + "\u0b54\u0005\u00f6|\u0002\u0b54\u0b5c\u0003\u0002\u0002\u0002\u0b55", + "\u0b56\u0007\u00ca\u0002\u0002\u0b56\u0b57\u0007\u001c\u0002\u0002\u0b57", + "\u0b58\u0005\u00f6|\u0002\u0b58\u0b59\u0007\u0013\u0002\u0002\u0b59", + "\u0b5a\u0005\u00f6|\u0002\u0b5a\u0b5c\u0003\u0002\u0002\u0002\u0b5b", + "\u0b4b\u0003\u0002\u0002\u0002\u0b5b\u0b4d\u0003\u0002\u0002\u0002\u0b5b", + "\u0b4f\u0003\u0002\u0002\u0002\u0b5b\u0b55\u0003\u0002\u0002\u0002\u0b5c", + "\u00f5\u0003\u0002\u0002\u0002\u0b5d\u0b5e\u0007\u00f4\u0002\u0002\u0b5e", + "\u0b65\t\'\u0002\u0002\u0b5f\u0b60\u0007:\u0002\u0002\u0b60\u0b65\u0007", + "\u00c9\u0002\u0002\u0b61\u0b62\u0005\u00bc_\u0002\u0b62\u0b63\t\'\u0002", + "\u0002\u0b63\u0b65\u0003\u0002\u0002\u0002\u0b64\u0b5d\u0003\u0002\u0002", + "\u0002\u0b64\u0b5f\u0003\u0002\u0002\u0002\u0b64\u0b61\u0003\u0002\u0002", + "\u0002\u0b65\u00f7\u0003\u0002\u0002\u0002\u0b66\u0b6b\u0005\u00fc\u007f", + "\u0002\u0b67\u0b68\u0007\u0006\u0002\u0002\u0b68\u0b6a\u0005\u00fc\u007f", + "\u0002\u0b69\u0b67\u0003\u0002\u0002\u0002\u0b6a\u0b6d\u0003\u0002\u0002", + "\u0002\u0b6b\u0b69\u0003\u0002\u0002\u0002\u0b6b\u0b6c\u0003\u0002\u0002", + "\u0002\u0b6c\u00f9\u0003\u0002\u0002\u0002\u0b6d\u0b6b\u0003\u0002\u0002", + "\u0002\u0b6e\u0b73\u0005\u00fc\u007f\u0002\u0b6f\u0b73\u0007^\u0002", + "\u0002\u0b70\u0b73\u0007\u0084\u0002\u0002\u0b71\u0b73\u0007\u00c3\u0002", + "\u0002\u0b72\u0b6e\u0003\u0002\u0002\u0002\u0b72\u0b6f\u0003\u0002\u0002", + "\u0002\u0b72\u0b70\u0003\u0002\u0002\u0002\u0b72\u0b71\u0003\u0002\u0002", + "\u0002\u0b73\u00fb\u0003\u0002\u0002\u0002\u0b74\u0b79\u0005\u0102\u0082", + "\u0002\u0b75\u0b76\u0007\u0007\u0002\u0002\u0b76\u0b78\u0005\u0102\u0082", + "\u0002\u0b77\u0b75\u0003\u0002\u0002\u0002\u0b78\u0b7b\u0003\u0002\u0002", + "\u0002\u0b79\u0b77\u0003\u0002\u0002\u0002\u0b79\u0b7a\u0003\u0002\u0002", + "\u0002\u0b7a\u00fd\u0003\u0002\u0002\u0002\u0b7b\u0b79\u0003\u0002\u0002", + "\u0002\u0b7c\u0b7d\u0005\u0102\u0082\u0002\u0b7d\u0b7e\u0005\u0100\u0081", + "\u0002\u0b7e\u00ff\u0003\u0002\u0002\u0002\u0b7f\u0b80\u0007\u0110\u0002", + "\u0002\u0b80\u0b82\u0005\u0102\u0082\u0002\u0b81\u0b7f\u0003\u0002\u0002", + "\u0002\u0b82\u0b83\u0003\u0002\u0002\u0002\u0b83\u0b81\u0003\u0002\u0002", + "\u0002\u0b83\u0b84\u0003\u0002\u0002\u0002\u0b84\u0b87\u0003\u0002\u0002", + "\u0002\u0b85\u0b87\u0003\u0002\u0002\u0002\u0b86\u0b81\u0003\u0002\u0002", + "\u0002\u0b86\u0b85\u0003\u0002\u0002\u0002\u0b87\u0101\u0003\u0002\u0002", + "\u0002\u0b88\u0b8c\u0005\u0104\u0083\u0002\u0b89\u0b8a\u0006\u0082\u0012", + "\u0002\u0b8a\u0b8c\u0005\u010e\u0088\u0002\u0b8b\u0b88\u0003\u0002\u0002", + "\u0002\u0b8b\u0b89\u0003\u0002\u0002\u0002\u0b8c\u0103\u0003\u0002\u0002", + "\u0002\u0b8d\u0b94\u0007\u0123\u0002\u0002\u0b8e\u0b94\u0005\u0106\u0084", + "\u0002\u0b8f\u0b90\u0006\u0083\u0013\u0002\u0b90\u0b94\u0005\u010c\u0087", + "\u0002\u0b91\u0b92\u0006\u0083\u0014\u0002\u0b92\u0b94\u0005\u0110\u0089", + "\u0002\u0b93\u0b8d\u0003\u0002\u0002\u0002\u0b93\u0b8e\u0003\u0002\u0002", + "\u0002\u0b93\u0b8f\u0003\u0002\u0002\u0002\u0b93\u0b91\u0003\u0002\u0002", + "\u0002\u0b94\u0105\u0003\u0002\u0002\u0002\u0b95\u0b96\u0007\u0124\u0002", + "\u0002\u0b96\u0107\u0003\u0002\u0002\u0002\u0b97\u0b99\u0006\u0085\u0015", + "\u0002\u0b98\u0b9a\u0007\u0110\u0002\u0002\u0b99\u0b98\u0003\u0002\u0002", + "\u0002\u0b99\u0b9a\u0003\u0002\u0002\u0002\u0b9a\u0b9b\u0003\u0002\u0002", + "\u0002\u0b9b\u0bc3\u0007\u011e\u0002\u0002\u0b9c\u0b9e\u0006\u0085\u0016", + "\u0002\u0b9d\u0b9f\u0007\u0110\u0002\u0002\u0b9e\u0b9d\u0003\u0002\u0002", + "\u0002\u0b9e\u0b9f\u0003\u0002\u0002\u0002\u0b9f\u0ba0\u0003\u0002\u0002", + "\u0002\u0ba0\u0bc3\u0007\u011f\u0002\u0002\u0ba1\u0ba3\u0006\u0085\u0017", + "\u0002\u0ba2\u0ba4\u0007\u0110\u0002\u0002\u0ba3\u0ba2\u0003\u0002\u0002", + "\u0002\u0ba3\u0ba4\u0003\u0002\u0002\u0002\u0ba4\u0ba5\u0003\u0002\u0002", + "\u0002\u0ba5\u0bc3\t(\u0002\u0002\u0ba6\u0ba8\u0007\u0110\u0002\u0002", + "\u0ba7\u0ba6\u0003\u0002\u0002\u0002\u0ba7\u0ba8\u0003\u0002\u0002\u0002", + "\u0ba8\u0ba9\u0003\u0002\u0002\u0002\u0ba9\u0bc3\u0007\u011d\u0002\u0002", + "\u0baa\u0bac\u0007\u0110\u0002\u0002\u0bab\u0baa\u0003\u0002\u0002\u0002", + "\u0bab\u0bac\u0003\u0002\u0002\u0002\u0bac\u0bad\u0003\u0002\u0002\u0002", + "\u0bad\u0bc3\u0007\u011a\u0002\u0002\u0bae\u0bb0\u0007\u0110\u0002\u0002", + "\u0baf\u0bae\u0003\u0002\u0002\u0002\u0baf\u0bb0\u0003\u0002\u0002\u0002", + "\u0bb0\u0bb1\u0003\u0002\u0002\u0002\u0bb1\u0bc3\u0007\u011b\u0002\u0002", + "\u0bb2\u0bb4\u0007\u0110\u0002\u0002\u0bb3\u0bb2\u0003\u0002\u0002\u0002", + "\u0bb3\u0bb4\u0003\u0002\u0002\u0002\u0bb4\u0bb5\u0003\u0002\u0002\u0002", + "\u0bb5\u0bc3\u0007\u011c\u0002\u0002\u0bb6\u0bb8\u0007\u0110\u0002\u0002", + "\u0bb7\u0bb6\u0003\u0002\u0002\u0002\u0bb7\u0bb8\u0003\u0002\u0002\u0002", + "\u0bb8\u0bb9\u0003\u0002\u0002\u0002\u0bb9\u0bc3\u0007\u0121\u0002\u0002", + "\u0bba\u0bbc\u0007\u0110\u0002\u0002\u0bbb\u0bba\u0003\u0002\u0002\u0002", + "\u0bbb\u0bbc\u0003\u0002\u0002\u0002\u0bbc\u0bbd\u0003\u0002\u0002\u0002", + "\u0bbd\u0bc3\u0007\u0120\u0002\u0002\u0bbe\u0bc0\u0007\u0110\u0002\u0002", + "\u0bbf\u0bbe\u0003\u0002\u0002\u0002\u0bbf\u0bc0\u0003\u0002\u0002\u0002", + "\u0bc0\u0bc1\u0003\u0002\u0002\u0002\u0bc1\u0bc3\u0007\u0122\u0002\u0002", + "\u0bc2\u0b97\u0003\u0002\u0002\u0002\u0bc2\u0b9c\u0003\u0002\u0002\u0002", + "\u0bc2\u0ba1\u0003\u0002\u0002\u0002\u0bc2\u0ba7\u0003\u0002\u0002\u0002", + "\u0bc2\u0bab\u0003\u0002\u0002\u0002\u0bc2\u0baf\u0003\u0002\u0002\u0002", + "\u0bc2\u0bb3\u0003\u0002\u0002\u0002\u0bc2\u0bb7\u0003\u0002\u0002\u0002", + "\u0bc2\u0bbb\u0003\u0002\u0002\u0002\u0bc2\u0bbf\u0003\u0002\u0002\u0002", + "\u0bc3\u0109\u0003\u0002\u0002\u0002\u0bc4\u0bc5\u0007\u00f2\u0002\u0002", + "\u0bc5\u0bcc\u0005\u00dep\u0002\u0bc6\u0bcc\u0005 \u0011\u0002\u0bc7", + "\u0bcc\u0005\u00dco\u0002\u0bc8\u0bc9\t)\u0002\u0002\u0bc9\u0bca\u0007", + "\u0098\u0002\u0002\u0bca\u0bcc\u0007\u0099\u0002\u0002\u0bcb\u0bc4\u0003", + "\u0002\u0002\u0002\u0bcb\u0bc6\u0003\u0002\u0002\u0002\u0bcb\u0bc7\u0003", + "\u0002\u0002\u0002\u0bcb\u0bc8\u0003\u0002\u0002\u0002\u0bcc\u010b\u0003", + "\u0002\u0002\u0002\u0bcd\u0bce\t*\u0002\u0002\u0bce\u010d\u0003\u0002", + "\u0002\u0002\u0bcf\u0bd0\t+\u0002\u0002\u0bd0\u010f\u0003\u0002\u0002", + "\u0002\u0bd1\u0bd2\t,\u0002\u0002\u0bd2\u0111\u0003\u0002\u0002\u0002", + "\u018b\u0119\u012f\u0134\u013c\u0144\u0146\u015a\u015e\u0164\u0167\u016a", + "\u0171\u0176\u0179\u0180\u018c\u0195\u0197\u019b\u019e\u01a5\u01b0\u01b2", + "\u01ba\u01bf\u01c2\u01c8\u01d3\u0213\u021c\u0220\u0226\u022a\u022f\u0235", + "\u0241\u0249\u024f\u025c\u0261\u0271\u0278\u027c\u0282\u0291\u0295\u029b", + "\u02a1\u02a4\u02a7\u02ad\u02b1\u02b9\u02bb\u02c4\u02c7\u02d0\u02d5\u02db", + "\u02e2\u02e5\u02eb\u02f6\u02f9\u02fd\u0302\u0307\u030e\u0311\u0314\u031b", + "\u0320\u0329\u0331\u0337\u033a\u033d\u0343\u0347\u034b\u034f\u0351\u0359", + "\u0361\u0367\u036d\u0370\u0374\u0377\u037b\u0397\u039a\u039e\u03a4\u03a7", + "\u03aa\u03b0\u03b8\u03bd\u03c3\u03c9\u03d5\u03d8\u03df\u03f0\u03f9\u03fc", + "\u0402\u040b\u0412\u0415\u041f\u0423\u042a\u049e\u04a6\u04ae\u04b7\u04c1", + "\u04c5\u04c8\u04ce\u04d4\u04e0\u04ec\u04f1\u04fa\u0502\u0509\u050b\u0510", + "\u0514\u0519\u051e\u0523\u0526\u052b\u052f\u0534\u0536\u053a\u0543\u054b", + "\u0554\u055b\u0564\u0569\u056c\u057f\u0581\u058a\u0591\u0594\u059b\u059f", + "\u05a5\u05ad\u05b8\u05c3\u05ca\u05d0\u05dd\u05e4\u05eb\u05f7\u05ff\u0605", + "\u0608\u0611\u0614\u061d\u0620\u0629\u062c\u0635\u0638\u063b\u0640\u0642", + "\u064e\u0655\u065c\u065f\u0661\u066d\u0671\u0675\u067b\u067f\u0687\u068b", + "\u068e\u0691\u0694\u0698\u069c\u069f\u06a3\u06a8\u06ac\u06af\u06b2\u06b5", + "\u06b7\u06c3\u06c6\u06ca\u06d4\u06d8\u06da\u06dd\u06e1\u06e7\u06eb\u06f6", + "\u0700\u070c\u071b\u0720\u0727\u0737\u073c\u0749\u074e\u0756\u075c\u0760", + "\u0769\u0778\u077d\u0789\u078e\u0796\u0799\u079d\u07ab\u07b8\u07bd\u07c1", + "\u07c4\u07c9\u07d2\u07d5\u07da\u07e1\u07e4\u07ec\u07f3\u07fa\u07fd\u0802", + "\u0805\u080a\u080e\u0811\u0814\u081a\u081f\u0824\u0836\u0838\u083b\u0846", + "\u084f\u0856\u085e\u0865\u0869\u0871\u0879\u087f\u0887\u0893\u0896\u089c", + "\u08a0\u08a2\u08ab\u08b7\u08b9\u08c0\u08c7\u08cd\u08d3\u08d5\u08dc\u08e4", + "\u08ea\u08f0\u08f4\u08f6\u08fd\u0906\u0913\u0918\u091c\u092a\u092c\u0934", + "\u0936\u093a\u0942\u094b\u0951\u0959\u095e\u096a\u096f\u0972\u0978\u097c", + "\u0981\u0986\u098b\u0991\u09a6\u09a8\u09b1\u09b5\u09be\u09c2\u09d4\u09d7", + "\u09df\u09e8\u09ff\u0a0a\u0a11\u0a14\u0a1d\u0a21\u0a2d\u0a46\u0a4d\u0a50", + "\u0a5f\u0a63\u0a6d\u0a6f\u0a7c\u0a7e\u0a8b\u0a8f\u0a96\u0a9b\u0aa3\u0aa7", + "\u0aac\u0abd\u0ac1\u0aca\u0ace\u0ad0\u0ad7\u0ade\u0ae1\u0ae4\u0aeb\u0af2", + "\u0af5\u0afc\u0b04\u0b07\u0b14\u0b28\u0b32\u0b35\u0b3e\u0b41\u0b43\u0b46", + "\u0b49\u0b5b\u0b64\u0b6b\u0b72\u0b79\u0b83\u0b86\u0b8b\u0b93\u0b99\u0b9e", + "\u0ba3\u0ba7\u0bab\u0baf\u0bb3\u0bb7\u0bbb\u0bbf\u0bc2\u0bcb"].join(""); + + +var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); + +var decisionsToDFA = atn.decisionToState.map( function(ds, index) { return new antlr4.dfa.DFA(ds, index); }); + +var sharedContextCache = new antlr4.PredictionContextCache(); + +var literalNames = [ null, "';'", "'('", "')'", "','", "'.'", "'/*+'", "'*/'", + "'->'", "'['", "']'", "':'", "'ADD'", "'AFTER'", "'ALL'", + "'ALTER'", "'ANALYZE'", "'AND'", "'ANTI'", "'ANY'", + "'ARCHIVE'", "'ARRAY'", "'AS'", "'ASC'", "'AT'", "'AUTHORIZATION'", + "'BETWEEN'", "'BOTH'", "'BUCKET'", "'BUCKETS'", "'BY'", + "'CACHE'", "'CASCADE'", "'CASE'", "'CAST'", "'CHANGE'", + "'CHECK'", "'CLEAR'", "'CLUSTER'", "'CLUSTERED'", "'CODEGEN'", + "'COLLATE'", "'COLLECTION'", "'COLUMN'", "'COLUMNS'", + "'COMMENT'", "'COMMIT'", "'COMPACT'", "'COMPACTIONS'", + "'COMPUTE'", "'CONCATENATE'", "'CONSTRAINT'", "'COST'", + "'CREATE'", "'CROSS'", "'CUBE'", "'CURRENT'", "'CURRENT_DATE'", + "'CURRENT_TIME'", "'CURRENT_TIMESTAMP'", "'CURRENT_USER'", + "'DATA'", "'DATABASE'", null, "'DBPROPERTIES'", "'DEFINED'", + "'DELETE'", "'DELIMITED'", "'DESC'", "'DESCRIBE'", + "'DFS'", "'DIRECTORIES'", "'DIRECTORY'", "'DISTINCT'", + "'DISTRIBUTE'", "'DIV'", "'DROP'", "'ELSE'", "'END'", + "'ESCAPE'", "'ESCAPED'", "'EXCEPT'", "'EXCHANGE'", + "'EXISTS'", "'EXPLAIN'", "'EXPORT'", "'EXTENDED'", + "'EXTERNAL'", "'EXTRACT'", "'FALSE'", "'FETCH'", "'FIELDS'", + "'FILTER'", "'FILEFORMAT'", "'FIRST'", "'FOLLOWING'", + "'FOR'", "'FOREIGN'", "'FORMAT'", "'FORMATTED'", "'FROM'", + "'FULL'", "'FUNCTION'", "'FUNCTIONS'", "'GLOBAL'", + "'GRANT'", "'GROUP'", "'GROUPING'", "'HAVING'", "'IF'", + "'IGNORE'", "'IMPORT'", "'IN'", "'INDEX'", "'INDEXES'", + "'INNER'", "'INPATH'", "'INPUTFORMAT'", "'INSERT'", + "'INTERSECT'", "'INTERVAL'", "'INTO'", "'IS'", "'ITEMS'", + "'JOIN'", "'KEYS'", "'LAST'", "'LATERAL'", "'LAZY'", + "'LEADING'", "'LEFT'", "'LIKE'", "'LIMIT'", "'LINES'", + "'LIST'", "'LOAD'", "'LOCAL'", "'LOCATION'", "'LOCK'", + "'LOCKS'", "'LOGICAL'", "'MACRO'", "'MAP'", "'MATCHED'", + "'MERGE'", "'MSCK'", "'NAMESPACE'", "'NAMESPACES'", + "'NATURAL'", "'NO'", null, "'NULL'", "'NULLS'", "'OF'", + "'ON'", "'ONLY'", "'OPTION'", "'OPTIONS'", "'OR'", + "'ORDER'", "'OUT'", "'OUTER'", "'OUTPUTFORMAT'", "'OVER'", + "'OVERLAPS'", "'OVERLAY'", "'OVERWRITE'", "'PARTITION'", + "'PARTITIONED'", "'PARTITIONS'", "'PERCENT'", "'PIVOT'", + "'PLACING'", "'POSITION'", "'PRECEDING'", "'PRIMARY'", + "'PRINCIPALS'", "'PROPERTIES'", "'PURGE'", "'QUERY'", + "'RANGE'", "'RECORDREADER'", "'RECORDWRITER'", "'RECOVER'", + "'REDUCE'", "'REFERENCES'", "'REFRESH'", "'RENAME'", + "'REPAIR'", "'REPLACE'", "'RESET'", "'RESTRICT'", "'REVOKE'", + "'RIGHT'", null, "'ROLE'", "'ROLES'", "'ROLLBACK'", + "'ROLLUP'", "'ROW'", "'ROWS'", "'SCHEMA'", "'SELECT'", + "'SEMI'", "'SEPARATED'", "'SERDE'", "'SERDEPROPERTIES'", + "'SESSION_USER'", "'SET'", "'MINUS'", "'SETS'", "'SHOW'", + "'SKEWED'", "'SOME'", "'SORT'", "'SORTED'", "'START'", + "'STATISTICS'", "'STORED'", "'STRATIFY'", "'STRUCT'", + "'SUBSTR'", "'SUBSTRING'", "'TABLE'", "'TABLES'", "'TABLESAMPLE'", + "'TBLPROPERTIES'", null, "'TERMINATED'", "'THEN'", + "'TIME'", "'TO'", "'TOUCH'", "'TRAILING'", "'TRANSACTION'", + "'TRANSACTIONS'", "'TRANSFORM'", "'TRIM'", "'TRUE'", + "'TRUNCATE'", "'TYPE'", "'UNARCHIVE'", "'UNBOUNDED'", + "'UNCACHE'", "'UNION'", "'UNIQUE'", "'UNKNOWN'", "'UNLOCK'", + "'UNSET'", "'UPDATE'", "'USE'", "'USER'", "'USING'", + "'VALUES'", "'VIEW'", "'VIEWS'", "'WHEN'", "'WHERE'", + "'WINDOW'", "'WITH'", "'ZONE'", null, "'<=>'", "'<>'", + "'!='", "'<'", null, "'>'", null, "'+'", "'-'", "'*'", + "'/'", "'%'", "'~'", "'&'", "'|'", "'||'", "'^'" ]; + +var symbolicNames = [ null, null, null, null, null, null, null, null, null, + null, null, null, "ADD", "AFTER", "ALL", "ALTER", + "ANALYZE", "AND", "ANTI", "ANY", "ARCHIVE", "ARRAY", + "AS", "ASC", "AT", "AUTHORIZATION", "BETWEEN", "BOTH", + "BUCKET", "BUCKETS", "BY", "CACHE", "CASCADE", "CASE", + "CAST", "CHANGE", "CHECK", "CLEAR", "CLUSTER", "CLUSTERED", + "CODEGEN", "COLLATE", "COLLECTION", "COLUMN", "COLUMNS", + "COMMENT", "COMMIT", "COMPACT", "COMPACTIONS", "COMPUTE", + "CONCATENATE", "CONSTRAINT", "COST", "CREATE", "CROSS", + "CUBE", "CURRENT", "CURRENT_DATE", "CURRENT_TIME", + "CURRENT_TIMESTAMP", "CURRENT_USER", "DATA", "DATABASE", + "DATABASES", "DBPROPERTIES", "DEFINED", "DELETE", + "DELIMITED", "DESC", "DESCRIBE", "DFS", "DIRECTORIES", + "DIRECTORY", "DISTINCT", "DISTRIBUTE", "DIV", "DROP", + "ELSE", "END", "ESCAPE", "ESCAPED", "EXCEPT", "EXCHANGE", + "EXISTS", "EXPLAIN", "EXPORT", "EXTENDED", "EXTERNAL", + "EXTRACT", "FALSE", "FETCH", "FIELDS", "FILTER", "FILEFORMAT", + "FIRST", "FOLLOWING", "FOR", "FOREIGN", "FORMAT", + "FORMATTED", "FROM", "FULL", "FUNCTION", "FUNCTIONS", + "GLOBAL", "GRANT", "GROUP", "GROUPING", "HAVING", + "IF", "IGNORE", "IMPORT", "IN", "INDEX", "INDEXES", + "INNER", "INPATH", "INPUTFORMAT", "INSERT", "INTERSECT", + "INTERVAL", "INTO", "IS", "ITEMS", "JOIN", "KEYS", + "LAST", "LATERAL", "LAZY", "LEADING", "LEFT", "LIKE", + "LIMIT", "LINES", "LIST", "LOAD", "LOCAL", "LOCATION", + "LOCK", "LOCKS", "LOGICAL", "MACRO", "MAP", "MATCHED", + "MERGE", "MSCK", "NAMESPACE", "NAMESPACES", "NATURAL", + "NO", "NOT", "NULL", "NULLS", "OF", "ON", "ONLY", + "OPTION", "OPTIONS", "OR", "ORDER", "OUT", "OUTER", + "OUTPUTFORMAT", "OVER", "OVERLAPS", "OVERLAY", "OVERWRITE", + "PARTITION", "PARTITIONED", "PARTITIONS", "PERCENTLIT", + "PIVOT", "PLACING", "POSITION", "PRECEDING", "PRIMARY", + "PRINCIPALS", "PROPERTIES", "PURGE", "QUERY", "RANGE", + "RECORDREADER", "RECORDWRITER", "RECOVER", "REDUCE", + "REFERENCES", "REFRESH", "RENAME", "REPAIR", "REPLACE", + "RESET", "RESTRICT", "REVOKE", "RIGHT", "RLIKE", "ROLE", + "ROLES", "ROLLBACK", "ROLLUP", "ROW", "ROWS", "SCHEMA", + "SELECT", "SEMI", "SEPARATED", "SERDE", "SERDEPROPERTIES", + "SESSION_USER", "SET", "SETMINUS", "SETS", "SHOW", + "SKEWED", "SOME", "SORT", "SORTED", "START", "STATISTICS", + "STORED", "STRATIFY", "STRUCT", "SUBSTR", "SUBSTRING", + "TABLE", "TABLES", "TABLESAMPLE", "TBLPROPERTIES", + "TEMPORARY", "TERMINATED", "THEN", "TIME", "TO", "TOUCH", + "TRAILING", "TRANSACTION", "TRANSACTIONS", "TRANSFORM", + "TRIM", "TRUE", "TRUNCATE", "TYPE", "UNARCHIVE", "UNBOUNDED", + "UNCACHE", "UNION", "UNIQUE", "UNKNOWN", "UNLOCK", + "UNSET", "UPDATE", "USE", "USER", "USING", "VALUES", + "VIEW", "VIEWS", "WHEN", "WHERE", "WINDOW", "WITH", + "ZONE", "EQ", "NSEQ", "NEQ", "NEQJ", "LT", "LTE", + "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", + "PERCENT", "TILDE", "AMPERSAND", "PIPE", "CONCAT_PIPE", + "HAT", "STRING", "BIGINT_LITERAL", "SMALLINT_LITERAL", + "TINYINT_LITERAL", "INTEGER_VALUE", "EXPONENT_VALUE", + "DECIMAL_VALUE", "FLOAT_LITERAL", "DOUBLE_LITERAL", + "BIGDECIMAL_LITERAL", "IDENTIFIER", "BACKQUOTED_IDENTIFIER", + "SIMPLE_COMMENT", "BRACKETED_COMMENT", "WS", "UNRECOGNIZED" ]; + +var ruleNames = [ "program", "singleStatement", "singleExpression", "singleTableIdentifier", + "singleMultipartIdentifier", "singleDataType", "singleTableSchema", + "statement", "configKey", "unsupportedHiveNativeCommands", + "createTableHeader", "replaceTableHeader", "bucketSpec", + "skewSpec", "locationSpec", "commentSpec", "query", "insertInto", + "partitionSpecLocation", "partitionSpec", "partitionVal", + "namespace", "describeFuncName", "describeColName", "ctes", + "namedQuery", "tableProvider", "createTableClauses", + "tablePropertyList", "tableProperty", "tablePropertyKey", + "tablePropertyValue", "constantList", "nestedConstantList", + "createFileFormat", "fileFormat", "storageHandler", "resource", + "dmlStatementNoWith", "queryOrganization", "multiInsertQueryBody", + "queryTerm", "queryPrimary", "sortItem", "fromStatement", + "fromStatementBody", "querySpecification", "transformClause", + "selectClause", "setClause", "matchedClause", "notMatchedClause", + "matchedAction", "notMatchedAction", "assignmentList", + "assignment", "whereClause", "havingClause", "hint", + "hintStatement", "fromClause", "aggregationClause", "groupingSet", + "pivotClause", "pivotColumn", "pivotValue", "lateralView", + "setQuantifier", "relation", "joinRelation", "joinType", + "joinCriteria", "sample", "sampleMethod", "identifierList", + "identifierSeq", "orderedIdentifierList", "orderedIdentifier", + "identifierCommentList", "identifierComment", "relationPrimary", + "inlineTable", "functionTable", "tableAlias", "rowFormat", + "multipartIdentifierList", "multipartIdentifier", "tableIdentifier", + "namedExpression", "namedExpressionSeq", "transformList", + "transform", "transformArgument", "expression", "booleanExpression", + "predicate", "valueExpression", "primaryExpression", + "constant", "comparisonOperator", "arithmeticOperator", + "predicateOperator", "booleanValue", "interval", "errorCapturingMultiUnitsInterval", + "multiUnitsInterval", "errorCapturingUnitToUnitInterval", + "unitToUnitInterval", "intervalValue", "colPosition", + "dataType", "qualifiedColTypeWithPositionList", "qualifiedColTypeWithPosition", + "colTypeList", "colType", "complexColTypeList", "complexColType", + "whenClause", "windowClause", "namedWindow", "windowSpec", + "windowFrame", "frameBound", "qualifiedNameList", "functionName", + "qualifiedName", "errorCapturingIdentifier", "errorCapturingIdentifierExtra", + "identifier", "strictIdentifier", "quotedIdentifier", + "number", "alterColumnAction", "ansiNonReserved", "strictNonReserved", + "nonReserved" ]; + +function SqlBaseParser (input) { + antlr4.Parser.call(this, input); + this._interp = new antlr4.atn.ParserATNSimulator(this, atn, decisionsToDFA, sharedContextCache); + this.ruleNames = ruleNames; + this.literalNames = literalNames; + this.symbolicNames = symbolicNames; + + /** + * When false, INTERSECT is given the greater precedence over the other set + * operations (UNION, EXCEPT and MINUS) as per the SQL standard. + */ + // public boolean legacy_setops_precedence_enbled = false; + /** + * When false, a literal with an exponent would be converted into + * double type rather than decimal type. + */ + // public boolean legacy_exponent_literal_as_decimal_enabled = false; + global.legacy_exponent_literal_as_decimal_enabled = false; + /** + * When true, the behavior of keywords follows ANSI SQL standard. + */ + // public boolean SQL_standard_keyword_behavior = false; + + global.legacy_setops_precedence_enbled = false; + global.legacy_exponent_literal_as_decimal_enabled = false; + global.SQL_standard_keyword_behavior = false; + + return this; +} + +SqlBaseParser.prototype = Object.create(antlr4.Parser.prototype); +SqlBaseParser.prototype.constructor = SqlBaseParser; + +Object.defineProperty(SqlBaseParser.prototype, "atn", { + get : function() { + return atn; + } +}); + +SqlBaseParser.EOF = antlr4.Token.EOF; +SqlBaseParser.T__0 = 1; +SqlBaseParser.T__1 = 2; +SqlBaseParser.T__2 = 3; +SqlBaseParser.T__3 = 4; +SqlBaseParser.T__4 = 5; +SqlBaseParser.T__5 = 6; +SqlBaseParser.T__6 = 7; +SqlBaseParser.T__7 = 8; +SqlBaseParser.T__8 = 9; +SqlBaseParser.T__9 = 10; +SqlBaseParser.T__10 = 11; +SqlBaseParser.ADD = 12; +SqlBaseParser.AFTER = 13; +SqlBaseParser.ALL = 14; +SqlBaseParser.ALTER = 15; +SqlBaseParser.ANALYZE = 16; +SqlBaseParser.AND = 17; +SqlBaseParser.ANTI = 18; +SqlBaseParser.ANY = 19; +SqlBaseParser.ARCHIVE = 20; +SqlBaseParser.ARRAY = 21; +SqlBaseParser.AS = 22; +SqlBaseParser.ASC = 23; +SqlBaseParser.AT = 24; +SqlBaseParser.AUTHORIZATION = 25; +SqlBaseParser.BETWEEN = 26; +SqlBaseParser.BOTH = 27; +SqlBaseParser.BUCKET = 28; +SqlBaseParser.BUCKETS = 29; +SqlBaseParser.BY = 30; +SqlBaseParser.CACHE = 31; +SqlBaseParser.CASCADE = 32; +SqlBaseParser.CASE = 33; +SqlBaseParser.CAST = 34; +SqlBaseParser.CHANGE = 35; +SqlBaseParser.CHECK = 36; +SqlBaseParser.CLEAR = 37; +SqlBaseParser.CLUSTER = 38; +SqlBaseParser.CLUSTERED = 39; +SqlBaseParser.CODEGEN = 40; +SqlBaseParser.COLLATE = 41; +SqlBaseParser.COLLECTION = 42; +SqlBaseParser.COLUMN = 43; +SqlBaseParser.COLUMNS = 44; +SqlBaseParser.COMMENT = 45; +SqlBaseParser.COMMIT = 46; +SqlBaseParser.COMPACT = 47; +SqlBaseParser.COMPACTIONS = 48; +SqlBaseParser.COMPUTE = 49; +SqlBaseParser.CONCATENATE = 50; +SqlBaseParser.CONSTRAINT = 51; +SqlBaseParser.COST = 52; +SqlBaseParser.CREATE = 53; +SqlBaseParser.CROSS = 54; +SqlBaseParser.CUBE = 55; +SqlBaseParser.CURRENT = 56; +SqlBaseParser.CURRENT_DATE = 57; +SqlBaseParser.CURRENT_TIME = 58; +SqlBaseParser.CURRENT_TIMESTAMP = 59; +SqlBaseParser.CURRENT_USER = 60; +SqlBaseParser.DATA = 61; +SqlBaseParser.DATABASE = 62; +SqlBaseParser.DATABASES = 63; +SqlBaseParser.DBPROPERTIES = 64; +SqlBaseParser.DEFINED = 65; +SqlBaseParser.DELETE = 66; +SqlBaseParser.DELIMITED = 67; +SqlBaseParser.DESC = 68; +SqlBaseParser.DESCRIBE = 69; +SqlBaseParser.DFS = 70; +SqlBaseParser.DIRECTORIES = 71; +SqlBaseParser.DIRECTORY = 72; +SqlBaseParser.DISTINCT = 73; +SqlBaseParser.DISTRIBUTE = 74; +SqlBaseParser.DIV = 75; +SqlBaseParser.DROP = 76; +SqlBaseParser.ELSE = 77; +SqlBaseParser.END = 78; +SqlBaseParser.ESCAPE = 79; +SqlBaseParser.ESCAPED = 80; +SqlBaseParser.EXCEPT = 81; +SqlBaseParser.EXCHANGE = 82; +SqlBaseParser.EXISTS = 83; +SqlBaseParser.EXPLAIN = 84; +SqlBaseParser.EXPORT = 85; +SqlBaseParser.EXTENDED = 86; +SqlBaseParser.EXTERNAL = 87; +SqlBaseParser.EXTRACT = 88; +SqlBaseParser.FALSE = 89; +SqlBaseParser.FETCH = 90; +SqlBaseParser.FIELDS = 91; +SqlBaseParser.FILTER = 92; +SqlBaseParser.FILEFORMAT = 93; +SqlBaseParser.FIRST = 94; +SqlBaseParser.FOLLOWING = 95; +SqlBaseParser.FOR = 96; +SqlBaseParser.FOREIGN = 97; +SqlBaseParser.FORMAT = 98; +SqlBaseParser.FORMATTED = 99; +SqlBaseParser.FROM = 100; +SqlBaseParser.FULL = 101; +SqlBaseParser.FUNCTION = 102; +SqlBaseParser.FUNCTIONS = 103; +SqlBaseParser.GLOBAL = 104; +SqlBaseParser.GRANT = 105; +SqlBaseParser.GROUP = 106; +SqlBaseParser.GROUPING = 107; +SqlBaseParser.HAVING = 108; +SqlBaseParser.IF = 109; +SqlBaseParser.IGNORE = 110; +SqlBaseParser.IMPORT = 111; +SqlBaseParser.IN = 112; +SqlBaseParser.INDEX = 113; +SqlBaseParser.INDEXES = 114; +SqlBaseParser.INNER = 115; +SqlBaseParser.INPATH = 116; +SqlBaseParser.INPUTFORMAT = 117; +SqlBaseParser.INSERT = 118; +SqlBaseParser.INTERSECT = 119; +SqlBaseParser.INTERVAL = 120; +SqlBaseParser.INTO = 121; +SqlBaseParser.IS = 122; +SqlBaseParser.ITEMS = 123; +SqlBaseParser.JOIN = 124; +SqlBaseParser.KEYS = 125; +SqlBaseParser.LAST = 126; +SqlBaseParser.LATERAL = 127; +SqlBaseParser.LAZY = 128; +SqlBaseParser.LEADING = 129; +SqlBaseParser.LEFT = 130; +SqlBaseParser.LIKE = 131; +SqlBaseParser.LIMIT = 132; +SqlBaseParser.LINES = 133; +SqlBaseParser.LIST = 134; +SqlBaseParser.LOAD = 135; +SqlBaseParser.LOCAL = 136; +SqlBaseParser.LOCATION = 137; +SqlBaseParser.LOCK = 138; +SqlBaseParser.LOCKS = 139; +SqlBaseParser.LOGICAL = 140; +SqlBaseParser.MACRO = 141; +SqlBaseParser.MAP = 142; +SqlBaseParser.MATCHED = 143; +SqlBaseParser.MERGE = 144; +SqlBaseParser.MSCK = 145; +SqlBaseParser.NAMESPACE = 146; +SqlBaseParser.NAMESPACES = 147; +SqlBaseParser.NATURAL = 148; +SqlBaseParser.NO = 149; +SqlBaseParser.NOT = 150; +SqlBaseParser.NULL = 151; +SqlBaseParser.NULLS = 152; +SqlBaseParser.OF = 153; +SqlBaseParser.ON = 154; +SqlBaseParser.ONLY = 155; +SqlBaseParser.OPTION = 156; +SqlBaseParser.OPTIONS = 157; +SqlBaseParser.OR = 158; +SqlBaseParser.ORDER = 159; +SqlBaseParser.OUT = 160; +SqlBaseParser.OUTER = 161; +SqlBaseParser.OUTPUTFORMAT = 162; +SqlBaseParser.OVER = 163; +SqlBaseParser.OVERLAPS = 164; +SqlBaseParser.OVERLAY = 165; +SqlBaseParser.OVERWRITE = 166; +SqlBaseParser.PARTITION = 167; +SqlBaseParser.PARTITIONED = 168; +SqlBaseParser.PARTITIONS = 169; +SqlBaseParser.PERCENTLIT = 170; +SqlBaseParser.PIVOT = 171; +SqlBaseParser.PLACING = 172; +SqlBaseParser.POSITION = 173; +SqlBaseParser.PRECEDING = 174; +SqlBaseParser.PRIMARY = 175; +SqlBaseParser.PRINCIPALS = 176; +SqlBaseParser.PROPERTIES = 177; +SqlBaseParser.PURGE = 178; +SqlBaseParser.QUERY = 179; +SqlBaseParser.RANGE = 180; +SqlBaseParser.RECORDREADER = 181; +SqlBaseParser.RECORDWRITER = 182; +SqlBaseParser.RECOVER = 183; +SqlBaseParser.REDUCE = 184; +SqlBaseParser.REFERENCES = 185; +SqlBaseParser.REFRESH = 186; +SqlBaseParser.RENAME = 187; +SqlBaseParser.REPAIR = 188; +SqlBaseParser.REPLACE = 189; +SqlBaseParser.RESET = 190; +SqlBaseParser.RESTRICT = 191; +SqlBaseParser.REVOKE = 192; +SqlBaseParser.RIGHT = 193; +SqlBaseParser.RLIKE = 194; +SqlBaseParser.ROLE = 195; +SqlBaseParser.ROLES = 196; +SqlBaseParser.ROLLBACK = 197; +SqlBaseParser.ROLLUP = 198; +SqlBaseParser.ROW = 199; +SqlBaseParser.ROWS = 200; +SqlBaseParser.SCHEMA = 201; +SqlBaseParser.SELECT = 202; +SqlBaseParser.SEMI = 203; +SqlBaseParser.SEPARATED = 204; +SqlBaseParser.SERDE = 205; +SqlBaseParser.SERDEPROPERTIES = 206; +SqlBaseParser.SESSION_USER = 207; +SqlBaseParser.SET = 208; +SqlBaseParser.SETMINUS = 209; +SqlBaseParser.SETS = 210; +SqlBaseParser.SHOW = 211; +SqlBaseParser.SKEWED = 212; +SqlBaseParser.SOME = 213; +SqlBaseParser.SORT = 214; +SqlBaseParser.SORTED = 215; +SqlBaseParser.START = 216; +SqlBaseParser.STATISTICS = 217; +SqlBaseParser.STORED = 218; +SqlBaseParser.STRATIFY = 219; +SqlBaseParser.STRUCT = 220; +SqlBaseParser.SUBSTR = 221; +SqlBaseParser.SUBSTRING = 222; +SqlBaseParser.TABLE = 223; +SqlBaseParser.TABLES = 224; +SqlBaseParser.TABLESAMPLE = 225; +SqlBaseParser.TBLPROPERTIES = 226; +SqlBaseParser.TEMPORARY = 227; +SqlBaseParser.TERMINATED = 228; +SqlBaseParser.THEN = 229; +SqlBaseParser.TIME = 230; +SqlBaseParser.TO = 231; +SqlBaseParser.TOUCH = 232; +SqlBaseParser.TRAILING = 233; +SqlBaseParser.TRANSACTION = 234; +SqlBaseParser.TRANSACTIONS = 235; +SqlBaseParser.TRANSFORM = 236; +SqlBaseParser.TRIM = 237; +SqlBaseParser.TRUE = 238; +SqlBaseParser.TRUNCATE = 239; +SqlBaseParser.TYPE = 240; +SqlBaseParser.UNARCHIVE = 241; +SqlBaseParser.UNBOUNDED = 242; +SqlBaseParser.UNCACHE = 243; +SqlBaseParser.UNION = 244; +SqlBaseParser.UNIQUE = 245; +SqlBaseParser.UNKNOWN = 246; +SqlBaseParser.UNLOCK = 247; +SqlBaseParser.UNSET = 248; +SqlBaseParser.UPDATE = 249; +SqlBaseParser.USE = 250; +SqlBaseParser.USER = 251; +SqlBaseParser.USING = 252; +SqlBaseParser.VALUES = 253; +SqlBaseParser.VIEW = 254; +SqlBaseParser.VIEWS = 255; +SqlBaseParser.WHEN = 256; +SqlBaseParser.WHERE = 257; +SqlBaseParser.WINDOW = 258; +SqlBaseParser.WITH = 259; +SqlBaseParser.ZONE = 260; +SqlBaseParser.EQ = 261; +SqlBaseParser.NSEQ = 262; +SqlBaseParser.NEQ = 263; +SqlBaseParser.NEQJ = 264; +SqlBaseParser.LT = 265; +SqlBaseParser.LTE = 266; +SqlBaseParser.GT = 267; +SqlBaseParser.GTE = 268; +SqlBaseParser.PLUS = 269; +SqlBaseParser.MINUS = 270; +SqlBaseParser.ASTERISK = 271; +SqlBaseParser.SLASH = 272; +SqlBaseParser.PERCENT = 273; +SqlBaseParser.TILDE = 274; +SqlBaseParser.AMPERSAND = 275; +SqlBaseParser.PIPE = 276; +SqlBaseParser.CONCAT_PIPE = 277; +SqlBaseParser.HAT = 278; +SqlBaseParser.STRING = 279; +SqlBaseParser.BIGINT_LITERAL = 280; +SqlBaseParser.SMALLINT_LITERAL = 281; +SqlBaseParser.TINYINT_LITERAL = 282; +SqlBaseParser.INTEGER_VALUE = 283; +SqlBaseParser.EXPONENT_VALUE = 284; +SqlBaseParser.DECIMAL_VALUE = 285; +SqlBaseParser.FLOAT_LITERAL = 286; +SqlBaseParser.DOUBLE_LITERAL = 287; +SqlBaseParser.BIGDECIMAL_LITERAL = 288; +SqlBaseParser.IDENTIFIER = 289; +SqlBaseParser.BACKQUOTED_IDENTIFIER = 290; +SqlBaseParser.SIMPLE_COMMENT = 291; +SqlBaseParser.BRACKETED_COMMENT = 292; +SqlBaseParser.WS = 293; +SqlBaseParser.UNRECOGNIZED = 294; + +SqlBaseParser.RULE_program = 0; +SqlBaseParser.RULE_singleStatement = 1; +SqlBaseParser.RULE_singleExpression = 2; +SqlBaseParser.RULE_singleTableIdentifier = 3; +SqlBaseParser.RULE_singleMultipartIdentifier = 4; +SqlBaseParser.RULE_singleDataType = 5; +SqlBaseParser.RULE_singleTableSchema = 6; +SqlBaseParser.RULE_statement = 7; +SqlBaseParser.RULE_configKey = 8; +SqlBaseParser.RULE_unsupportedHiveNativeCommands = 9; +SqlBaseParser.RULE_createTableHeader = 10; +SqlBaseParser.RULE_replaceTableHeader = 11; +SqlBaseParser.RULE_bucketSpec = 12; +SqlBaseParser.RULE_skewSpec = 13; +SqlBaseParser.RULE_locationSpec = 14; +SqlBaseParser.RULE_commentSpec = 15; +SqlBaseParser.RULE_query = 16; +SqlBaseParser.RULE_insertInto = 17; +SqlBaseParser.RULE_partitionSpecLocation = 18; +SqlBaseParser.RULE_partitionSpec = 19; +SqlBaseParser.RULE_partitionVal = 20; +SqlBaseParser.RULE_namespace = 21; +SqlBaseParser.RULE_describeFuncName = 22; +SqlBaseParser.RULE_describeColName = 23; +SqlBaseParser.RULE_ctes = 24; +SqlBaseParser.RULE_namedQuery = 25; +SqlBaseParser.RULE_tableProvider = 26; +SqlBaseParser.RULE_createTableClauses = 27; +SqlBaseParser.RULE_tablePropertyList = 28; +SqlBaseParser.RULE_tableProperty = 29; +SqlBaseParser.RULE_tablePropertyKey = 30; +SqlBaseParser.RULE_tablePropertyValue = 31; +SqlBaseParser.RULE_constantList = 32; +SqlBaseParser.RULE_nestedConstantList = 33; +SqlBaseParser.RULE_createFileFormat = 34; +SqlBaseParser.RULE_fileFormat = 35; +SqlBaseParser.RULE_storageHandler = 36; +SqlBaseParser.RULE_resource = 37; +SqlBaseParser.RULE_dmlStatementNoWith = 38; +SqlBaseParser.RULE_queryOrganization = 39; +SqlBaseParser.RULE_multiInsertQueryBody = 40; +SqlBaseParser.RULE_queryTerm = 41; +SqlBaseParser.RULE_queryPrimary = 42; +SqlBaseParser.RULE_sortItem = 43; +SqlBaseParser.RULE_fromStatement = 44; +SqlBaseParser.RULE_fromStatementBody = 45; +SqlBaseParser.RULE_querySpecification = 46; +SqlBaseParser.RULE_transformClause = 47; +SqlBaseParser.RULE_selectClause = 48; +SqlBaseParser.RULE_setClause = 49; +SqlBaseParser.RULE_matchedClause = 50; +SqlBaseParser.RULE_notMatchedClause = 51; +SqlBaseParser.RULE_matchedAction = 52; +SqlBaseParser.RULE_notMatchedAction = 53; +SqlBaseParser.RULE_assignmentList = 54; +SqlBaseParser.RULE_assignment = 55; +SqlBaseParser.RULE_whereClause = 56; +SqlBaseParser.RULE_havingClause = 57; +SqlBaseParser.RULE_hint = 58; +SqlBaseParser.RULE_hintStatement = 59; +SqlBaseParser.RULE_fromClause = 60; +SqlBaseParser.RULE_aggregationClause = 61; +SqlBaseParser.RULE_groupingSet = 62; +SqlBaseParser.RULE_pivotClause = 63; +SqlBaseParser.RULE_pivotColumn = 64; +SqlBaseParser.RULE_pivotValue = 65; +SqlBaseParser.RULE_lateralView = 66; +SqlBaseParser.RULE_setQuantifier = 67; +SqlBaseParser.RULE_relation = 68; +SqlBaseParser.RULE_joinRelation = 69; +SqlBaseParser.RULE_joinType = 70; +SqlBaseParser.RULE_joinCriteria = 71; +SqlBaseParser.RULE_sample = 72; +SqlBaseParser.RULE_sampleMethod = 73; +SqlBaseParser.RULE_identifierList = 74; +SqlBaseParser.RULE_identifierSeq = 75; +SqlBaseParser.RULE_orderedIdentifierList = 76; +SqlBaseParser.RULE_orderedIdentifier = 77; +SqlBaseParser.RULE_identifierCommentList = 78; +SqlBaseParser.RULE_identifierComment = 79; +SqlBaseParser.RULE_relationPrimary = 80; +SqlBaseParser.RULE_inlineTable = 81; +SqlBaseParser.RULE_functionTable = 82; +SqlBaseParser.RULE_tableAlias = 83; +SqlBaseParser.RULE_rowFormat = 84; +SqlBaseParser.RULE_multipartIdentifierList = 85; +SqlBaseParser.RULE_multipartIdentifier = 86; +SqlBaseParser.RULE_tableIdentifier = 87; +SqlBaseParser.RULE_namedExpression = 88; +SqlBaseParser.RULE_namedExpressionSeq = 89; +SqlBaseParser.RULE_transformList = 90; +SqlBaseParser.RULE_transform = 91; +SqlBaseParser.RULE_transformArgument = 92; +SqlBaseParser.RULE_expression = 93; +SqlBaseParser.RULE_booleanExpression = 94; +SqlBaseParser.RULE_predicate = 95; +SqlBaseParser.RULE_valueExpression = 96; +SqlBaseParser.RULE_primaryExpression = 97; +SqlBaseParser.RULE_constant = 98; +SqlBaseParser.RULE_comparisonOperator = 99; +SqlBaseParser.RULE_arithmeticOperator = 100; +SqlBaseParser.RULE_predicateOperator = 101; +SqlBaseParser.RULE_booleanValue = 102; +SqlBaseParser.RULE_interval = 103; +SqlBaseParser.RULE_errorCapturingMultiUnitsInterval = 104; +SqlBaseParser.RULE_multiUnitsInterval = 105; +SqlBaseParser.RULE_errorCapturingUnitToUnitInterval = 106; +SqlBaseParser.RULE_unitToUnitInterval = 107; +SqlBaseParser.RULE_intervalValue = 108; +SqlBaseParser.RULE_colPosition = 109; +SqlBaseParser.RULE_dataType = 110; +SqlBaseParser.RULE_qualifiedColTypeWithPositionList = 111; +SqlBaseParser.RULE_qualifiedColTypeWithPosition = 112; +SqlBaseParser.RULE_colTypeList = 113; +SqlBaseParser.RULE_colType = 114; +SqlBaseParser.RULE_complexColTypeList = 115; +SqlBaseParser.RULE_complexColType = 116; +SqlBaseParser.RULE_whenClause = 117; +SqlBaseParser.RULE_windowClause = 118; +SqlBaseParser.RULE_namedWindow = 119; +SqlBaseParser.RULE_windowSpec = 120; +SqlBaseParser.RULE_windowFrame = 121; +SqlBaseParser.RULE_frameBound = 122; +SqlBaseParser.RULE_qualifiedNameList = 123; +SqlBaseParser.RULE_functionName = 124; +SqlBaseParser.RULE_qualifiedName = 125; +SqlBaseParser.RULE_errorCapturingIdentifier = 126; +SqlBaseParser.RULE_errorCapturingIdentifierExtra = 127; +SqlBaseParser.RULE_identifier = 128; +SqlBaseParser.RULE_strictIdentifier = 129; +SqlBaseParser.RULE_quotedIdentifier = 130; +SqlBaseParser.RULE_number = 131; +SqlBaseParser.RULE_alterColumnAction = 132; +SqlBaseParser.RULE_ansiNonReserved = 133; +SqlBaseParser.RULE_strictNonReserved = 134; +SqlBaseParser.RULE_nonReserved = 135; + + +function ProgramContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_program; + return this; +} + +ProgramContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ProgramContext.prototype.constructor = ProgramContext; + +ProgramContext.prototype.singleStatement = function() { + return this.getTypedRuleContext(SingleStatementContext,0); +}; + +ProgramContext.prototype.EOF = function() { + return this.getToken(SqlBaseParser.EOF, 0); +}; + +ProgramContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterProgram(this); + } +}; + +ProgramContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitProgram(this); + } +}; + +ProgramContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitProgram(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ProgramContext = ProgramContext; + +SqlBaseParser.prototype.program = function() { + + var localctx = new ProgramContext(this, this._ctx, this.state); + this.enterRule(localctx, 0, SqlBaseParser.RULE_program); + try { + this.enterOuterAlt(localctx, 1); + this.state = 272; + this.singleStatement(); + this.state = 273; + this.match(SqlBaseParser.EOF); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SingleStatementContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_singleStatement; + return this; +} + +SingleStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SingleStatementContext.prototype.constructor = SingleStatementContext; + +SingleStatementContext.prototype.statement = function() { + return this.getTypedRuleContext(StatementContext,0); +}; + +SingleStatementContext.prototype.EOF = function() { + return this.getToken(SqlBaseParser.EOF, 0); +}; + +SingleStatementContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSingleStatement(this); + } +}; + +SingleStatementContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSingleStatement(this); + } +}; + +SingleStatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSingleStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.SingleStatementContext = SingleStatementContext; + +SqlBaseParser.prototype.singleStatement = function() { + + var localctx = new SingleStatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 2, SqlBaseParser.RULE_singleStatement); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 275; + this.statement(); + this.state = 279; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__0) { + this.state = 276; + this.match(SqlBaseParser.T__0); + this.state = 281; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 282; + this.match(SqlBaseParser.EOF); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SingleExpressionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_singleExpression; + return this; +} + +SingleExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SingleExpressionContext.prototype.constructor = SingleExpressionContext; + +SingleExpressionContext.prototype.namedExpression = function() { + return this.getTypedRuleContext(NamedExpressionContext,0); +}; + +SingleExpressionContext.prototype.EOF = function() { + return this.getToken(SqlBaseParser.EOF, 0); +}; + +SingleExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSingleExpression(this); + } +}; + +SingleExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSingleExpression(this); + } +}; + +SingleExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSingleExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.SingleExpressionContext = SingleExpressionContext; + +SqlBaseParser.prototype.singleExpression = function() { + + var localctx = new SingleExpressionContext(this, this._ctx, this.state); + this.enterRule(localctx, 4, SqlBaseParser.RULE_singleExpression); + try { + this.enterOuterAlt(localctx, 1); + this.state = 284; + this.namedExpression(); + this.state = 285; + this.match(SqlBaseParser.EOF); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SingleTableIdentifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_singleTableIdentifier; + return this; +} + +SingleTableIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SingleTableIdentifierContext.prototype.constructor = SingleTableIdentifierContext; + +SingleTableIdentifierContext.prototype.tableIdentifier = function() { + return this.getTypedRuleContext(TableIdentifierContext,0); +}; + +SingleTableIdentifierContext.prototype.EOF = function() { + return this.getToken(SqlBaseParser.EOF, 0); +}; + +SingleTableIdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSingleTableIdentifier(this); + } +}; + +SingleTableIdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSingleTableIdentifier(this); + } +}; + +SingleTableIdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSingleTableIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.SingleTableIdentifierContext = SingleTableIdentifierContext; + +SqlBaseParser.prototype.singleTableIdentifier = function() { + + var localctx = new SingleTableIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 6, SqlBaseParser.RULE_singleTableIdentifier); + try { + this.enterOuterAlt(localctx, 1); + this.state = 287; + this.tableIdentifier(); + this.state = 288; + this.match(SqlBaseParser.EOF); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SingleMultipartIdentifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_singleMultipartIdentifier; + return this; +} + +SingleMultipartIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SingleMultipartIdentifierContext.prototype.constructor = SingleMultipartIdentifierContext; + +SingleMultipartIdentifierContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +SingleMultipartIdentifierContext.prototype.EOF = function() { + return this.getToken(SqlBaseParser.EOF, 0); +}; + +SingleMultipartIdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSingleMultipartIdentifier(this); + } +}; + +SingleMultipartIdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSingleMultipartIdentifier(this); + } +}; + +SingleMultipartIdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSingleMultipartIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.SingleMultipartIdentifierContext = SingleMultipartIdentifierContext; + +SqlBaseParser.prototype.singleMultipartIdentifier = function() { + + var localctx = new SingleMultipartIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 8, SqlBaseParser.RULE_singleMultipartIdentifier); + try { + this.enterOuterAlt(localctx, 1); + this.state = 290; + this.multipartIdentifier(); + this.state = 291; + this.match(SqlBaseParser.EOF); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SingleDataTypeContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_singleDataType; + return this; +} + +SingleDataTypeContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SingleDataTypeContext.prototype.constructor = SingleDataTypeContext; + +SingleDataTypeContext.prototype.dataType = function() { + return this.getTypedRuleContext(DataTypeContext,0); +}; + +SingleDataTypeContext.prototype.EOF = function() { + return this.getToken(SqlBaseParser.EOF, 0); +}; + +SingleDataTypeContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSingleDataType(this); + } +}; + +SingleDataTypeContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSingleDataType(this); + } +}; + +SingleDataTypeContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSingleDataType(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.SingleDataTypeContext = SingleDataTypeContext; + +SqlBaseParser.prototype.singleDataType = function() { + + var localctx = new SingleDataTypeContext(this, this._ctx, this.state); + this.enterRule(localctx, 10, SqlBaseParser.RULE_singleDataType); + try { + this.enterOuterAlt(localctx, 1); + this.state = 293; + this.dataType(); + this.state = 294; + this.match(SqlBaseParser.EOF); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SingleTableSchemaContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_singleTableSchema; + return this; +} + +SingleTableSchemaContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SingleTableSchemaContext.prototype.constructor = SingleTableSchemaContext; + +SingleTableSchemaContext.prototype.colTypeList = function() { + return this.getTypedRuleContext(ColTypeListContext,0); +}; + +SingleTableSchemaContext.prototype.EOF = function() { + return this.getToken(SqlBaseParser.EOF, 0); +}; + +SingleTableSchemaContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSingleTableSchema(this); + } +}; + +SingleTableSchemaContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSingleTableSchema(this); + } +}; + +SingleTableSchemaContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSingleTableSchema(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.SingleTableSchemaContext = SingleTableSchemaContext; + +SqlBaseParser.prototype.singleTableSchema = function() { + + var localctx = new SingleTableSchemaContext(this, this._ctx, this.state); + this.enterRule(localctx, 12, SqlBaseParser.RULE_singleTableSchema); + try { + this.enterOuterAlt(localctx, 1); + this.state = 296; + this.colTypeList(); + this.state = 297; + this.match(SqlBaseParser.EOF); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function StatementContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_statement; + return this; +} + +StatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +StatementContext.prototype.constructor = StatementContext; + + + +StatementContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function ExplainContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ExplainContext.prototype = Object.create(StatementContext.prototype); +ExplainContext.prototype.constructor = ExplainContext; + +SqlBaseParser.ExplainContext = ExplainContext; + +ExplainContext.prototype.EXPLAIN = function() { + return this.getToken(SqlBaseParser.EXPLAIN, 0); +}; + +ExplainContext.prototype.statement = function() { + return this.getTypedRuleContext(StatementContext,0); +}; + +ExplainContext.prototype.LOGICAL = function() { + return this.getToken(SqlBaseParser.LOGICAL, 0); +}; + +ExplainContext.prototype.FORMATTED = function() { + return this.getToken(SqlBaseParser.FORMATTED, 0); +}; + +ExplainContext.prototype.EXTENDED = function() { + return this.getToken(SqlBaseParser.EXTENDED, 0); +}; + +ExplainContext.prototype.CODEGEN = function() { + return this.getToken(SqlBaseParser.CODEGEN, 0); +}; + +ExplainContext.prototype.COST = function() { + return this.getToken(SqlBaseParser.COST, 0); +}; +ExplainContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterExplain(this); + } +}; + +ExplainContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitExplain(this); + } +}; + +ExplainContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitExplain(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ResetConfigurationContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ResetConfigurationContext.prototype = Object.create(StatementContext.prototype); +ResetConfigurationContext.prototype.constructor = ResetConfigurationContext; + +SqlBaseParser.ResetConfigurationContext = ResetConfigurationContext; + +ResetConfigurationContext.prototype.RESET = function() { + return this.getToken(SqlBaseParser.RESET, 0); +}; +ResetConfigurationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterResetConfiguration(this); + } +}; + +ResetConfigurationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitResetConfiguration(this); + } +}; + +ResetConfigurationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitResetConfiguration(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function AlterViewQueryContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +AlterViewQueryContext.prototype = Object.create(StatementContext.prototype); +AlterViewQueryContext.prototype.constructor = AlterViewQueryContext; + +SqlBaseParser.AlterViewQueryContext = AlterViewQueryContext; + +AlterViewQueryContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +AlterViewQueryContext.prototype.VIEW = function() { + return this.getToken(SqlBaseParser.VIEW, 0); +}; + +AlterViewQueryContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +AlterViewQueryContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; + +AlterViewQueryContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; +AlterViewQueryContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterAlterViewQuery(this); + } +}; + +AlterViewQueryContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitAlterViewQuery(this); + } +}; + +AlterViewQueryContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitAlterViewQuery(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function UseContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +UseContext.prototype = Object.create(StatementContext.prototype); +UseContext.prototype.constructor = UseContext; + +SqlBaseParser.UseContext = UseContext; + +UseContext.prototype.USE = function() { + return this.getToken(SqlBaseParser.USE, 0); +}; + +UseContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +UseContext.prototype.NAMESPACE = function() { + return this.getToken(SqlBaseParser.NAMESPACE, 0); +}; +UseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterUse(this); + } +}; + +UseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitUse(this); + } +}; + +UseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitUse(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function DropNamespaceContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DropNamespaceContext.prototype = Object.create(StatementContext.prototype); +DropNamespaceContext.prototype.constructor = DropNamespaceContext; + +SqlBaseParser.DropNamespaceContext = DropNamespaceContext; + +DropNamespaceContext.prototype.DROP = function() { + return this.getToken(SqlBaseParser.DROP, 0); +}; + +DropNamespaceContext.prototype.namespace = function() { + return this.getTypedRuleContext(NamespaceContext,0); +}; + +DropNamespaceContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +DropNamespaceContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +DropNamespaceContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; + +DropNamespaceContext.prototype.RESTRICT = function() { + return this.getToken(SqlBaseParser.RESTRICT, 0); +}; + +DropNamespaceContext.prototype.CASCADE = function() { + return this.getToken(SqlBaseParser.CASCADE, 0); +}; +DropNamespaceContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDropNamespace(this); + } +}; + +DropNamespaceContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDropNamespace(this); + } +}; + +DropNamespaceContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDropNamespace(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function CreateTempViewUsingContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +CreateTempViewUsingContext.prototype = Object.create(StatementContext.prototype); +CreateTempViewUsingContext.prototype.constructor = CreateTempViewUsingContext; + +SqlBaseParser.CreateTempViewUsingContext = CreateTempViewUsingContext; + +CreateTempViewUsingContext.prototype.CREATE = function() { + return this.getToken(SqlBaseParser.CREATE, 0); +}; + +CreateTempViewUsingContext.prototype.TEMPORARY = function() { + return this.getToken(SqlBaseParser.TEMPORARY, 0); +}; + +CreateTempViewUsingContext.prototype.VIEW = function() { + return this.getToken(SqlBaseParser.VIEW, 0); +}; + +CreateTempViewUsingContext.prototype.tableIdentifier = function() { + return this.getTypedRuleContext(TableIdentifierContext,0); +}; + +CreateTempViewUsingContext.prototype.tableProvider = function() { + return this.getTypedRuleContext(TableProviderContext,0); +}; + +CreateTempViewUsingContext.prototype.OR = function() { + return this.getToken(SqlBaseParser.OR, 0); +}; + +CreateTempViewUsingContext.prototype.REPLACE = function() { + return this.getToken(SqlBaseParser.REPLACE, 0); +}; + +CreateTempViewUsingContext.prototype.GLOBAL = function() { + return this.getToken(SqlBaseParser.GLOBAL, 0); +}; + +CreateTempViewUsingContext.prototype.colTypeList = function() { + return this.getTypedRuleContext(ColTypeListContext,0); +}; + +CreateTempViewUsingContext.prototype.OPTIONS = function() { + return this.getToken(SqlBaseParser.OPTIONS, 0); +}; + +CreateTempViewUsingContext.prototype.tablePropertyList = function() { + return this.getTypedRuleContext(TablePropertyListContext,0); +}; +CreateTempViewUsingContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCreateTempViewUsing(this); + } +}; + +CreateTempViewUsingContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCreateTempViewUsing(this); + } +}; + +CreateTempViewUsingContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCreateTempViewUsing(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function RenameTableContext(parser, ctx) { + StatementContext.call(this, parser); + this.from = null; // MultipartIdentifierContext; + this.to = null; // MultipartIdentifierContext; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +RenameTableContext.prototype = Object.create(StatementContext.prototype); +RenameTableContext.prototype.constructor = RenameTableContext; + +SqlBaseParser.RenameTableContext = RenameTableContext; + +RenameTableContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +RenameTableContext.prototype.RENAME = function() { + return this.getToken(SqlBaseParser.RENAME, 0); +}; + +RenameTableContext.prototype.TO = function() { + return this.getToken(SqlBaseParser.TO, 0); +}; + +RenameTableContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +RenameTableContext.prototype.VIEW = function() { + return this.getToken(SqlBaseParser.VIEW, 0); +}; + +RenameTableContext.prototype.multipartIdentifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(MultipartIdentifierContext); + } else { + return this.getTypedRuleContext(MultipartIdentifierContext,i); + } +}; +RenameTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterRenameTable(this); + } +}; + +RenameTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitRenameTable(this); + } +}; + +RenameTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitRenameTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function FailNativeCommandContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +FailNativeCommandContext.prototype = Object.create(StatementContext.prototype); +FailNativeCommandContext.prototype.constructor = FailNativeCommandContext; + +SqlBaseParser.FailNativeCommandContext = FailNativeCommandContext; + +FailNativeCommandContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; + +FailNativeCommandContext.prototype.ROLE = function() { + return this.getToken(SqlBaseParser.ROLE, 0); +}; + +FailNativeCommandContext.prototype.unsupportedHiveNativeCommands = function() { + return this.getTypedRuleContext(UnsupportedHiveNativeCommandsContext,0); +}; +FailNativeCommandContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterFailNativeCommand(this); + } +}; + +FailNativeCommandContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitFailNativeCommand(this); + } +}; + +FailNativeCommandContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitFailNativeCommand(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ClearCacheContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ClearCacheContext.prototype = Object.create(StatementContext.prototype); +ClearCacheContext.prototype.constructor = ClearCacheContext; + +SqlBaseParser.ClearCacheContext = ClearCacheContext; + +ClearCacheContext.prototype.CLEAR = function() { + return this.getToken(SqlBaseParser.CLEAR, 0); +}; + +ClearCacheContext.prototype.CACHE = function() { + return this.getToken(SqlBaseParser.CACHE, 0); +}; +ClearCacheContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterClearCache(this); + } +}; + +ClearCacheContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitClearCache(this); + } +}; + +ClearCacheContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitClearCache(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function DropViewContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DropViewContext.prototype = Object.create(StatementContext.prototype); +DropViewContext.prototype.constructor = DropViewContext; + +SqlBaseParser.DropViewContext = DropViewContext; + +DropViewContext.prototype.DROP = function() { + return this.getToken(SqlBaseParser.DROP, 0); +}; + +DropViewContext.prototype.VIEW = function() { + return this.getToken(SqlBaseParser.VIEW, 0); +}; + +DropViewContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +DropViewContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +DropViewContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; +DropViewContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDropView(this); + } +}; + +DropViewContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDropView(this); + } +}; + +DropViewContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDropView(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ShowTablesContext(parser, ctx) { + StatementContext.call(this, parser); + this.pattern = null; // Token; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ShowTablesContext.prototype = Object.create(StatementContext.prototype); +ShowTablesContext.prototype.constructor = ShowTablesContext; + +SqlBaseParser.ShowTablesContext = ShowTablesContext; + +ShowTablesContext.prototype.SHOW = function() { + return this.getToken(SqlBaseParser.SHOW, 0); +}; + +ShowTablesContext.prototype.TABLES = function() { + return this.getToken(SqlBaseParser.TABLES, 0); +}; + +ShowTablesContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +ShowTablesContext.prototype.FROM = function() { + return this.getToken(SqlBaseParser.FROM, 0); +}; + +ShowTablesContext.prototype.IN = function() { + return this.getToken(SqlBaseParser.IN, 0); +}; + +ShowTablesContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +ShowTablesContext.prototype.LIKE = function() { + return this.getToken(SqlBaseParser.LIKE, 0); +}; +ShowTablesContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterShowTables(this); + } +}; + +ShowTablesContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitShowTables(this); + } +}; + +ShowTablesContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitShowTables(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function RecoverPartitionsContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +RecoverPartitionsContext.prototype = Object.create(StatementContext.prototype); +RecoverPartitionsContext.prototype.constructor = RecoverPartitionsContext; + +SqlBaseParser.RecoverPartitionsContext = RecoverPartitionsContext; + +RecoverPartitionsContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +RecoverPartitionsContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +RecoverPartitionsContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +RecoverPartitionsContext.prototype.RECOVER = function() { + return this.getToken(SqlBaseParser.RECOVER, 0); +}; + +RecoverPartitionsContext.prototype.PARTITIONS = function() { + return this.getToken(SqlBaseParser.PARTITIONS, 0); +}; +RecoverPartitionsContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterRecoverPartitions(this); + } +}; + +RecoverPartitionsContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitRecoverPartitions(this); + } +}; + +RecoverPartitionsContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitRecoverPartitions(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ShowCurrentNamespaceContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ShowCurrentNamespaceContext.prototype = Object.create(StatementContext.prototype); +ShowCurrentNamespaceContext.prototype.constructor = ShowCurrentNamespaceContext; + +SqlBaseParser.ShowCurrentNamespaceContext = ShowCurrentNamespaceContext; + +ShowCurrentNamespaceContext.prototype.SHOW = function() { + return this.getToken(SqlBaseParser.SHOW, 0); +}; + +ShowCurrentNamespaceContext.prototype.CURRENT = function() { + return this.getToken(SqlBaseParser.CURRENT, 0); +}; + +ShowCurrentNamespaceContext.prototype.NAMESPACE = function() { + return this.getToken(SqlBaseParser.NAMESPACE, 0); +}; +ShowCurrentNamespaceContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterShowCurrentNamespace(this); + } +}; + +ShowCurrentNamespaceContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitShowCurrentNamespace(this); + } +}; + +ShowCurrentNamespaceContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitShowCurrentNamespace(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function RenameTablePartitionContext(parser, ctx) { + StatementContext.call(this, parser); + this.from = null; // PartitionSpecContext; + this.to = null; // PartitionSpecContext; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +RenameTablePartitionContext.prototype = Object.create(StatementContext.prototype); +RenameTablePartitionContext.prototype.constructor = RenameTablePartitionContext; + +SqlBaseParser.RenameTablePartitionContext = RenameTablePartitionContext; + +RenameTablePartitionContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +RenameTablePartitionContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +RenameTablePartitionContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +RenameTablePartitionContext.prototype.RENAME = function() { + return this.getToken(SqlBaseParser.RENAME, 0); +}; + +RenameTablePartitionContext.prototype.TO = function() { + return this.getToken(SqlBaseParser.TO, 0); +}; + +RenameTablePartitionContext.prototype.partitionSpec = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(PartitionSpecContext); + } else { + return this.getTypedRuleContext(PartitionSpecContext,i); + } +}; +RenameTablePartitionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterRenameTablePartition(this); + } +}; + +RenameTablePartitionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitRenameTablePartition(this); + } +}; + +RenameTablePartitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitRenameTablePartition(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function RepairTableContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +RepairTableContext.prototype = Object.create(StatementContext.prototype); +RepairTableContext.prototype.constructor = RepairTableContext; + +SqlBaseParser.RepairTableContext = RepairTableContext; + +RepairTableContext.prototype.MSCK = function() { + return this.getToken(SqlBaseParser.MSCK, 0); +}; + +RepairTableContext.prototype.REPAIR = function() { + return this.getToken(SqlBaseParser.REPAIR, 0); +}; + +RepairTableContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +RepairTableContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; +RepairTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterRepairTable(this); + } +}; + +RepairTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitRepairTable(this); + } +}; + +RepairTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitRepairTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function RefreshResourceContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +RefreshResourceContext.prototype = Object.create(StatementContext.prototype); +RefreshResourceContext.prototype.constructor = RefreshResourceContext; + +SqlBaseParser.RefreshResourceContext = RefreshResourceContext; + +RefreshResourceContext.prototype.REFRESH = function() { + return this.getToken(SqlBaseParser.REFRESH, 0); +}; + +RefreshResourceContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; +RefreshResourceContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterRefreshResource(this); + } +}; + +RefreshResourceContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitRefreshResource(this); + } +}; + +RefreshResourceContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitRefreshResource(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ShowCreateTableContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ShowCreateTableContext.prototype = Object.create(StatementContext.prototype); +ShowCreateTableContext.prototype.constructor = ShowCreateTableContext; + +SqlBaseParser.ShowCreateTableContext = ShowCreateTableContext; + +ShowCreateTableContext.prototype.SHOW = function() { + return this.getToken(SqlBaseParser.SHOW, 0); +}; + +ShowCreateTableContext.prototype.CREATE = function() { + return this.getToken(SqlBaseParser.CREATE, 0); +}; + +ShowCreateTableContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +ShowCreateTableContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +ShowCreateTableContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +ShowCreateTableContext.prototype.SERDE = function() { + return this.getToken(SqlBaseParser.SERDE, 0); +}; +ShowCreateTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterShowCreateTable(this); + } +}; + +ShowCreateTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitShowCreateTable(this); + } +}; + +ShowCreateTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitShowCreateTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ShowNamespacesContext(parser, ctx) { + StatementContext.call(this, parser); + this.pattern = null; // Token; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ShowNamespacesContext.prototype = Object.create(StatementContext.prototype); +ShowNamespacesContext.prototype.constructor = ShowNamespacesContext; + +SqlBaseParser.ShowNamespacesContext = ShowNamespacesContext; + +ShowNamespacesContext.prototype.SHOW = function() { + return this.getToken(SqlBaseParser.SHOW, 0); +}; + +ShowNamespacesContext.prototype.DATABASES = function() { + return this.getToken(SqlBaseParser.DATABASES, 0); +}; + +ShowNamespacesContext.prototype.NAMESPACES = function() { + return this.getToken(SqlBaseParser.NAMESPACES, 0); +}; + +ShowNamespacesContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +ShowNamespacesContext.prototype.FROM = function() { + return this.getToken(SqlBaseParser.FROM, 0); +}; + +ShowNamespacesContext.prototype.IN = function() { + return this.getToken(SqlBaseParser.IN, 0); +}; + +ShowNamespacesContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +ShowNamespacesContext.prototype.LIKE = function() { + return this.getToken(SqlBaseParser.LIKE, 0); +}; +ShowNamespacesContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterShowNamespaces(this); + } +}; + +ShowNamespacesContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitShowNamespaces(this); + } +}; + +ShowNamespacesContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitShowNamespaces(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ShowColumnsContext(parser, ctx) { + StatementContext.call(this, parser); + this.table = null; // MultipartIdentifierContext; + this.ns = null; // MultipartIdentifierContext; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ShowColumnsContext.prototype = Object.create(StatementContext.prototype); +ShowColumnsContext.prototype.constructor = ShowColumnsContext; + +SqlBaseParser.ShowColumnsContext = ShowColumnsContext; + +ShowColumnsContext.prototype.SHOW = function() { + return this.getToken(SqlBaseParser.SHOW, 0); +}; + +ShowColumnsContext.prototype.COLUMNS = function() { + return this.getToken(SqlBaseParser.COLUMNS, 0); +}; + +ShowColumnsContext.prototype.FROM = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.FROM); + } else { + return this.getToken(SqlBaseParser.FROM, i); + } +}; + + +ShowColumnsContext.prototype.IN = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.IN); + } else { + return this.getToken(SqlBaseParser.IN, i); + } +}; + + +ShowColumnsContext.prototype.multipartIdentifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(MultipartIdentifierContext); + } else { + return this.getTypedRuleContext(MultipartIdentifierContext,i); + } +}; +ShowColumnsContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterShowColumns(this); + } +}; + +ShowColumnsContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitShowColumns(this); + } +}; + +ShowColumnsContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitShowColumns(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ReplaceTableContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ReplaceTableContext.prototype = Object.create(StatementContext.prototype); +ReplaceTableContext.prototype.constructor = ReplaceTableContext; + +SqlBaseParser.ReplaceTableContext = ReplaceTableContext; + +ReplaceTableContext.prototype.replaceTableHeader = function() { + return this.getTypedRuleContext(ReplaceTableHeaderContext,0); +}; + +ReplaceTableContext.prototype.tableProvider = function() { + return this.getTypedRuleContext(TableProviderContext,0); +}; + +ReplaceTableContext.prototype.createTableClauses = function() { + return this.getTypedRuleContext(CreateTableClausesContext,0); +}; + +ReplaceTableContext.prototype.colTypeList = function() { + return this.getTypedRuleContext(ColTypeListContext,0); +}; + +ReplaceTableContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; + +ReplaceTableContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; +ReplaceTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterReplaceTable(this); + } +}; + +ReplaceTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitReplaceTable(this); + } +}; + +ReplaceTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitReplaceTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function AddTablePartitionContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +AddTablePartitionContext.prototype = Object.create(StatementContext.prototype); +AddTablePartitionContext.prototype.constructor = AddTablePartitionContext; + +SqlBaseParser.AddTablePartitionContext = AddTablePartitionContext; + +AddTablePartitionContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +AddTablePartitionContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +AddTablePartitionContext.prototype.ADD = function() { + return this.getToken(SqlBaseParser.ADD, 0); +}; + +AddTablePartitionContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +AddTablePartitionContext.prototype.VIEW = function() { + return this.getToken(SqlBaseParser.VIEW, 0); +}; + +AddTablePartitionContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +AddTablePartitionContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +AddTablePartitionContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; + +AddTablePartitionContext.prototype.partitionSpecLocation = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(PartitionSpecLocationContext); + } else { + return this.getTypedRuleContext(PartitionSpecLocationContext,i); + } +}; +AddTablePartitionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterAddTablePartition(this); + } +}; + +AddTablePartitionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitAddTablePartition(this); + } +}; + +AddTablePartitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitAddTablePartition(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SetNamespaceLocationContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SetNamespaceLocationContext.prototype = Object.create(StatementContext.prototype); +SetNamespaceLocationContext.prototype.constructor = SetNamespaceLocationContext; + +SqlBaseParser.SetNamespaceLocationContext = SetNamespaceLocationContext; + +SetNamespaceLocationContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +SetNamespaceLocationContext.prototype.namespace = function() { + return this.getTypedRuleContext(NamespaceContext,0); +}; + +SetNamespaceLocationContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +SetNamespaceLocationContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; + +SetNamespaceLocationContext.prototype.locationSpec = function() { + return this.getTypedRuleContext(LocationSpecContext,0); +}; +SetNamespaceLocationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSetNamespaceLocation(this); + } +}; + +SetNamespaceLocationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSetNamespaceLocation(this); + } +}; + +SetNamespaceLocationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSetNamespaceLocation(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function RefreshTableContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +RefreshTableContext.prototype = Object.create(StatementContext.prototype); +RefreshTableContext.prototype.constructor = RefreshTableContext; + +SqlBaseParser.RefreshTableContext = RefreshTableContext; + +RefreshTableContext.prototype.REFRESH = function() { + return this.getToken(SqlBaseParser.REFRESH, 0); +}; + +RefreshTableContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +RefreshTableContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; +RefreshTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterRefreshTable(this); + } +}; + +RefreshTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitRefreshTable(this); + } +}; + +RefreshTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitRefreshTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SetNamespacePropertiesContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SetNamespacePropertiesContext.prototype = Object.create(StatementContext.prototype); +SetNamespacePropertiesContext.prototype.constructor = SetNamespacePropertiesContext; + +SqlBaseParser.SetNamespacePropertiesContext = SetNamespacePropertiesContext; + +SetNamespacePropertiesContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +SetNamespacePropertiesContext.prototype.namespace = function() { + return this.getTypedRuleContext(NamespaceContext,0); +}; + +SetNamespacePropertiesContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +SetNamespacePropertiesContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; + +SetNamespacePropertiesContext.prototype.tablePropertyList = function() { + return this.getTypedRuleContext(TablePropertyListContext,0); +}; + +SetNamespacePropertiesContext.prototype.DBPROPERTIES = function() { + return this.getToken(SqlBaseParser.DBPROPERTIES, 0); +}; + +SetNamespacePropertiesContext.prototype.PROPERTIES = function() { + return this.getToken(SqlBaseParser.PROPERTIES, 0); +}; +SetNamespacePropertiesContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSetNamespaceProperties(this); + } +}; + +SetNamespacePropertiesContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSetNamespaceProperties(this); + } +}; + +SetNamespacePropertiesContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSetNamespaceProperties(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ManageResourceContext(parser, ctx) { + StatementContext.call(this, parser); + this.op = null; // Token; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ManageResourceContext.prototype = Object.create(StatementContext.prototype); +ManageResourceContext.prototype.constructor = ManageResourceContext; + +SqlBaseParser.ManageResourceContext = ManageResourceContext; + +ManageResourceContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +ManageResourceContext.prototype.ADD = function() { + return this.getToken(SqlBaseParser.ADD, 0); +}; + +ManageResourceContext.prototype.LIST = function() { + return this.getToken(SqlBaseParser.LIST, 0); +}; + +ManageResourceContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; +ManageResourceContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterManageResource(this); + } +}; + +ManageResourceContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitManageResource(this); + } +}; + +ManageResourceContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitManageResource(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SetQuotedConfigurationContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SetQuotedConfigurationContext.prototype = Object.create(StatementContext.prototype); +SetQuotedConfigurationContext.prototype.constructor = SetQuotedConfigurationContext; + +SqlBaseParser.SetQuotedConfigurationContext = SetQuotedConfigurationContext; + +SetQuotedConfigurationContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; + +SetQuotedConfigurationContext.prototype.configKey = function() { + return this.getTypedRuleContext(ConfigKeyContext,0); +}; + +SetQuotedConfigurationContext.prototype.EQ = function() { + return this.getToken(SqlBaseParser.EQ, 0); +}; +SetQuotedConfigurationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSetQuotedConfiguration(this); + } +}; + +SetQuotedConfigurationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSetQuotedConfiguration(this); + } +}; + +SetQuotedConfigurationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSetQuotedConfiguration(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function AnalyzeContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +AnalyzeContext.prototype = Object.create(StatementContext.prototype); +AnalyzeContext.prototype.constructor = AnalyzeContext; + +SqlBaseParser.AnalyzeContext = AnalyzeContext; + +AnalyzeContext.prototype.ANALYZE = function() { + return this.getToken(SqlBaseParser.ANALYZE, 0); +}; + +AnalyzeContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +AnalyzeContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +AnalyzeContext.prototype.COMPUTE = function() { + return this.getToken(SqlBaseParser.COMPUTE, 0); +}; + +AnalyzeContext.prototype.STATISTICS = function() { + return this.getToken(SqlBaseParser.STATISTICS, 0); +}; + +AnalyzeContext.prototype.partitionSpec = function() { + return this.getTypedRuleContext(PartitionSpecContext,0); +}; + +AnalyzeContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +AnalyzeContext.prototype.FOR = function() { + return this.getToken(SqlBaseParser.FOR, 0); +}; + +AnalyzeContext.prototype.COLUMNS = function() { + return this.getToken(SqlBaseParser.COLUMNS, 0); +}; + +AnalyzeContext.prototype.identifierSeq = function() { + return this.getTypedRuleContext(IdentifierSeqContext,0); +}; + +AnalyzeContext.prototype.ALL = function() { + return this.getToken(SqlBaseParser.ALL, 0); +}; +AnalyzeContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterAnalyze(this); + } +}; + +AnalyzeContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitAnalyze(this); + } +}; + +AnalyzeContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitAnalyze(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function CreateHiveTableContext(parser, ctx) { + StatementContext.call(this, parser); + this.columns = null; // ColTypeListContext; + this.partitionColumns = null; // ColTypeListContext; + this.partitionColumnNames = null; // IdentifierListContext; + this.tableProps = null; // TablePropertyListContext; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +CreateHiveTableContext.prototype = Object.create(StatementContext.prototype); +CreateHiveTableContext.prototype.constructor = CreateHiveTableContext; + +SqlBaseParser.CreateHiveTableContext = CreateHiveTableContext; + +CreateHiveTableContext.prototype.createTableHeader = function() { + return this.getTypedRuleContext(CreateTableHeaderContext,0); +}; + +CreateHiveTableContext.prototype.commentSpec = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(CommentSpecContext); + } else { + return this.getTypedRuleContext(CommentSpecContext,i); + } +}; + +CreateHiveTableContext.prototype.bucketSpec = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(BucketSpecContext); + } else { + return this.getTypedRuleContext(BucketSpecContext,i); + } +}; + +CreateHiveTableContext.prototype.skewSpec = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(SkewSpecContext); + } else { + return this.getTypedRuleContext(SkewSpecContext,i); + } +}; + +CreateHiveTableContext.prototype.rowFormat = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(RowFormatContext); + } else { + return this.getTypedRuleContext(RowFormatContext,i); + } +}; + +CreateHiveTableContext.prototype.createFileFormat = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(CreateFileFormatContext); + } else { + return this.getTypedRuleContext(CreateFileFormatContext,i); + } +}; + +CreateHiveTableContext.prototype.locationSpec = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(LocationSpecContext); + } else { + return this.getTypedRuleContext(LocationSpecContext,i); + } +}; + +CreateHiveTableContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; + +CreateHiveTableContext.prototype.colTypeList = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ColTypeListContext); + } else { + return this.getTypedRuleContext(ColTypeListContext,i); + } +}; + +CreateHiveTableContext.prototype.PARTITIONED = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.PARTITIONED); + } else { + return this.getToken(SqlBaseParser.PARTITIONED, i); + } +}; + + +CreateHiveTableContext.prototype.BY = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.BY); + } else { + return this.getToken(SqlBaseParser.BY, i); + } +}; + + +CreateHiveTableContext.prototype.TBLPROPERTIES = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.TBLPROPERTIES); + } else { + return this.getToken(SqlBaseParser.TBLPROPERTIES, i); + } +}; + + +CreateHiveTableContext.prototype.identifierList = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierListContext); + } else { + return this.getTypedRuleContext(IdentifierListContext,i); + } +}; + +CreateHiveTableContext.prototype.tablePropertyList = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TablePropertyListContext); + } else { + return this.getTypedRuleContext(TablePropertyListContext,i); + } +}; + +CreateHiveTableContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; +CreateHiveTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCreateHiveTable(this); + } +}; + +CreateHiveTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCreateHiveTable(this); + } +}; + +CreateHiveTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCreateHiveTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function CreateFunctionContext(parser, ctx) { + StatementContext.call(this, parser); + this.className = null; // Token; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +CreateFunctionContext.prototype = Object.create(StatementContext.prototype); +CreateFunctionContext.prototype.constructor = CreateFunctionContext; + +SqlBaseParser.CreateFunctionContext = CreateFunctionContext; + +CreateFunctionContext.prototype.CREATE = function() { + return this.getToken(SqlBaseParser.CREATE, 0); +}; + +CreateFunctionContext.prototype.FUNCTION = function() { + return this.getToken(SqlBaseParser.FUNCTION, 0); +}; + +CreateFunctionContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +CreateFunctionContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +CreateFunctionContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +CreateFunctionContext.prototype.OR = function() { + return this.getToken(SqlBaseParser.OR, 0); +}; + +CreateFunctionContext.prototype.REPLACE = function() { + return this.getToken(SqlBaseParser.REPLACE, 0); +}; + +CreateFunctionContext.prototype.TEMPORARY = function() { + return this.getToken(SqlBaseParser.TEMPORARY, 0); +}; + +CreateFunctionContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +CreateFunctionContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +CreateFunctionContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; + +CreateFunctionContext.prototype.USING = function() { + return this.getToken(SqlBaseParser.USING, 0); +}; + +CreateFunctionContext.prototype.resource = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ResourceContext); + } else { + return this.getTypedRuleContext(ResourceContext,i); + } +}; +CreateFunctionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCreateFunction(this); + } +}; + +CreateFunctionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCreateFunction(this); + } +}; + +CreateFunctionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCreateFunction(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ShowTableContext(parser, ctx) { + StatementContext.call(this, parser); + this.ns = null; // MultipartIdentifierContext; + this.pattern = null; // Token; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ShowTableContext.prototype = Object.create(StatementContext.prototype); +ShowTableContext.prototype.constructor = ShowTableContext; + +SqlBaseParser.ShowTableContext = ShowTableContext; + +ShowTableContext.prototype.SHOW = function() { + return this.getToken(SqlBaseParser.SHOW, 0); +}; + +ShowTableContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +ShowTableContext.prototype.EXTENDED = function() { + return this.getToken(SqlBaseParser.EXTENDED, 0); +}; + +ShowTableContext.prototype.LIKE = function() { + return this.getToken(SqlBaseParser.LIKE, 0); +}; + +ShowTableContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +ShowTableContext.prototype.partitionSpec = function() { + return this.getTypedRuleContext(PartitionSpecContext,0); +}; + +ShowTableContext.prototype.FROM = function() { + return this.getToken(SqlBaseParser.FROM, 0); +}; + +ShowTableContext.prototype.IN = function() { + return this.getToken(SqlBaseParser.IN, 0); +}; + +ShowTableContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; +ShowTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterShowTable(this); + } +}; + +ShowTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitShowTable(this); + } +}; + +ShowTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitShowTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function HiveReplaceColumnsContext(parser, ctx) { + StatementContext.call(this, parser); + this.table = null; // MultipartIdentifierContext; + this.columns = null; // QualifiedColTypeWithPositionListContext; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +HiveReplaceColumnsContext.prototype = Object.create(StatementContext.prototype); +HiveReplaceColumnsContext.prototype.constructor = HiveReplaceColumnsContext; + +SqlBaseParser.HiveReplaceColumnsContext = HiveReplaceColumnsContext; + +HiveReplaceColumnsContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +HiveReplaceColumnsContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +HiveReplaceColumnsContext.prototype.REPLACE = function() { + return this.getToken(SqlBaseParser.REPLACE, 0); +}; + +HiveReplaceColumnsContext.prototype.COLUMNS = function() { + return this.getToken(SqlBaseParser.COLUMNS, 0); +}; + +HiveReplaceColumnsContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +HiveReplaceColumnsContext.prototype.qualifiedColTypeWithPositionList = function() { + return this.getTypedRuleContext(QualifiedColTypeWithPositionListContext,0); +}; + +HiveReplaceColumnsContext.prototype.partitionSpec = function() { + return this.getTypedRuleContext(PartitionSpecContext,0); +}; +HiveReplaceColumnsContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterHiveReplaceColumns(this); + } +}; + +HiveReplaceColumnsContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitHiveReplaceColumns(this); + } +}; + +HiveReplaceColumnsContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitHiveReplaceColumns(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function CommentNamespaceContext(parser, ctx) { + StatementContext.call(this, parser); + this.comment = null; // Token; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +CommentNamespaceContext.prototype = Object.create(StatementContext.prototype); +CommentNamespaceContext.prototype.constructor = CommentNamespaceContext; + +SqlBaseParser.CommentNamespaceContext = CommentNamespaceContext; + +CommentNamespaceContext.prototype.COMMENT = function() { + return this.getToken(SqlBaseParser.COMMENT, 0); +}; + +CommentNamespaceContext.prototype.ON = function() { + return this.getToken(SqlBaseParser.ON, 0); +}; + +CommentNamespaceContext.prototype.namespace = function() { + return this.getTypedRuleContext(NamespaceContext,0); +}; + +CommentNamespaceContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +CommentNamespaceContext.prototype.IS = function() { + return this.getToken(SqlBaseParser.IS, 0); +}; + +CommentNamespaceContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +CommentNamespaceContext.prototype.NULL = function() { + return this.getToken(SqlBaseParser.NULL, 0); +}; +CommentNamespaceContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCommentNamespace(this); + } +}; + +CommentNamespaceContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCommentNamespace(this); + } +}; + +CommentNamespaceContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCommentNamespace(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ResetQuotedConfigurationContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ResetQuotedConfigurationContext.prototype = Object.create(StatementContext.prototype); +ResetQuotedConfigurationContext.prototype.constructor = ResetQuotedConfigurationContext; + +SqlBaseParser.ResetQuotedConfigurationContext = ResetQuotedConfigurationContext; + +ResetQuotedConfigurationContext.prototype.RESET = function() { + return this.getToken(SqlBaseParser.RESET, 0); +}; + +ResetQuotedConfigurationContext.prototype.configKey = function() { + return this.getTypedRuleContext(ConfigKeyContext,0); +}; +ResetQuotedConfigurationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterResetQuotedConfiguration(this); + } +}; + +ResetQuotedConfigurationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitResetQuotedConfiguration(this); + } +}; + +ResetQuotedConfigurationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitResetQuotedConfiguration(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function CreateTableContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +CreateTableContext.prototype = Object.create(StatementContext.prototype); +CreateTableContext.prototype.constructor = CreateTableContext; + +SqlBaseParser.CreateTableContext = CreateTableContext; + +CreateTableContext.prototype.createTableHeader = function() { + return this.getTypedRuleContext(CreateTableHeaderContext,0); +}; + +CreateTableContext.prototype.tableProvider = function() { + return this.getTypedRuleContext(TableProviderContext,0); +}; + +CreateTableContext.prototype.createTableClauses = function() { + return this.getTypedRuleContext(CreateTableClausesContext,0); +}; + +CreateTableContext.prototype.colTypeList = function() { + return this.getTypedRuleContext(ColTypeListContext,0); +}; + +CreateTableContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; + +CreateTableContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; +CreateTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCreateTable(this); + } +}; + +CreateTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCreateTable(this); + } +}; + +CreateTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCreateTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function DmlStatementContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DmlStatementContext.prototype = Object.create(StatementContext.prototype); +DmlStatementContext.prototype.constructor = DmlStatementContext; + +SqlBaseParser.DmlStatementContext = DmlStatementContext; + +DmlStatementContext.prototype.dmlStatementNoWith = function() { + return this.getTypedRuleContext(DmlStatementNoWithContext,0); +}; + +DmlStatementContext.prototype.ctes = function() { + return this.getTypedRuleContext(CtesContext,0); +}; +DmlStatementContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDmlStatement(this); + } +}; + +DmlStatementContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDmlStatement(this); + } +}; + +DmlStatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDmlStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function CreateTableLikeContext(parser, ctx) { + StatementContext.call(this, parser); + this.target = null; // TableIdentifierContext; + this.source = null; // TableIdentifierContext; + this.tableProps = null; // TablePropertyListContext; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +CreateTableLikeContext.prototype = Object.create(StatementContext.prototype); +CreateTableLikeContext.prototype.constructor = CreateTableLikeContext; + +SqlBaseParser.CreateTableLikeContext = CreateTableLikeContext; + +CreateTableLikeContext.prototype.CREATE = function() { + return this.getToken(SqlBaseParser.CREATE, 0); +}; + +CreateTableLikeContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +CreateTableLikeContext.prototype.LIKE = function() { + return this.getToken(SqlBaseParser.LIKE, 0); +}; + +CreateTableLikeContext.prototype.tableIdentifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TableIdentifierContext); + } else { + return this.getTypedRuleContext(TableIdentifierContext,i); + } +}; + +CreateTableLikeContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +CreateTableLikeContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +CreateTableLikeContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; + +CreateTableLikeContext.prototype.tableProvider = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TableProviderContext); + } else { + return this.getTypedRuleContext(TableProviderContext,i); + } +}; + +CreateTableLikeContext.prototype.rowFormat = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(RowFormatContext); + } else { + return this.getTypedRuleContext(RowFormatContext,i); + } +}; + +CreateTableLikeContext.prototype.createFileFormat = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(CreateFileFormatContext); + } else { + return this.getTypedRuleContext(CreateFileFormatContext,i); + } +}; + +CreateTableLikeContext.prototype.locationSpec = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(LocationSpecContext); + } else { + return this.getTypedRuleContext(LocationSpecContext,i); + } +}; + +CreateTableLikeContext.prototype.TBLPROPERTIES = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.TBLPROPERTIES); + } else { + return this.getToken(SqlBaseParser.TBLPROPERTIES, i); + } +}; + + +CreateTableLikeContext.prototype.tablePropertyList = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TablePropertyListContext); + } else { + return this.getTypedRuleContext(TablePropertyListContext,i); + } +}; +CreateTableLikeContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCreateTableLike(this); + } +}; + +CreateTableLikeContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCreateTableLike(this); + } +}; + +CreateTableLikeContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCreateTableLike(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function UncacheTableContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +UncacheTableContext.prototype = Object.create(StatementContext.prototype); +UncacheTableContext.prototype.constructor = UncacheTableContext; + +SqlBaseParser.UncacheTableContext = UncacheTableContext; + +UncacheTableContext.prototype.UNCACHE = function() { + return this.getToken(SqlBaseParser.UNCACHE, 0); +}; + +UncacheTableContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +UncacheTableContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +UncacheTableContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +UncacheTableContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; +UncacheTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterUncacheTable(this); + } +}; + +UncacheTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitUncacheTable(this); + } +}; + +UncacheTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitUncacheTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function DropFunctionContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DropFunctionContext.prototype = Object.create(StatementContext.prototype); +DropFunctionContext.prototype.constructor = DropFunctionContext; + +SqlBaseParser.DropFunctionContext = DropFunctionContext; + +DropFunctionContext.prototype.DROP = function() { + return this.getToken(SqlBaseParser.DROP, 0); +}; + +DropFunctionContext.prototype.FUNCTION = function() { + return this.getToken(SqlBaseParser.FUNCTION, 0); +}; + +DropFunctionContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +DropFunctionContext.prototype.TEMPORARY = function() { + return this.getToken(SqlBaseParser.TEMPORARY, 0); +}; + +DropFunctionContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +DropFunctionContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; +DropFunctionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDropFunction(this); + } +}; + +DropFunctionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDropFunction(this); + } +}; + +DropFunctionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDropFunction(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function DescribeRelationContext(parser, ctx) { + StatementContext.call(this, parser); + this.option = null; // Token; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DescribeRelationContext.prototype = Object.create(StatementContext.prototype); +DescribeRelationContext.prototype.constructor = DescribeRelationContext; + +SqlBaseParser.DescribeRelationContext = DescribeRelationContext; + +DescribeRelationContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +DescribeRelationContext.prototype.DESC = function() { + return this.getToken(SqlBaseParser.DESC, 0); +}; + +DescribeRelationContext.prototype.DESCRIBE = function() { + return this.getToken(SqlBaseParser.DESCRIBE, 0); +}; + +DescribeRelationContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +DescribeRelationContext.prototype.partitionSpec = function() { + return this.getTypedRuleContext(PartitionSpecContext,0); +}; + +DescribeRelationContext.prototype.describeColName = function() { + return this.getTypedRuleContext(DescribeColNameContext,0); +}; + +DescribeRelationContext.prototype.EXTENDED = function() { + return this.getToken(SqlBaseParser.EXTENDED, 0); +}; + +DescribeRelationContext.prototype.FORMATTED = function() { + return this.getToken(SqlBaseParser.FORMATTED, 0); +}; +DescribeRelationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDescribeRelation(this); + } +}; + +DescribeRelationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDescribeRelation(this); + } +}; + +DescribeRelationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDescribeRelation(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function LoadDataContext(parser, ctx) { + StatementContext.call(this, parser); + this.path = null; // Token; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LoadDataContext.prototype = Object.create(StatementContext.prototype); +LoadDataContext.prototype.constructor = LoadDataContext; + +SqlBaseParser.LoadDataContext = LoadDataContext; + +LoadDataContext.prototype.LOAD = function() { + return this.getToken(SqlBaseParser.LOAD, 0); +}; + +LoadDataContext.prototype.DATA = function() { + return this.getToken(SqlBaseParser.DATA, 0); +}; + +LoadDataContext.prototype.INPATH = function() { + return this.getToken(SqlBaseParser.INPATH, 0); +}; + +LoadDataContext.prototype.INTO = function() { + return this.getToken(SqlBaseParser.INTO, 0); +}; + +LoadDataContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +LoadDataContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +LoadDataContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +LoadDataContext.prototype.LOCAL = function() { + return this.getToken(SqlBaseParser.LOCAL, 0); +}; + +LoadDataContext.prototype.OVERWRITE = function() { + return this.getToken(SqlBaseParser.OVERWRITE, 0); +}; + +LoadDataContext.prototype.partitionSpec = function() { + return this.getTypedRuleContext(PartitionSpecContext,0); +}; +LoadDataContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterLoadData(this); + } +}; + +LoadDataContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitLoadData(this); + } +}; + +LoadDataContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitLoadData(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ShowPartitionsContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ShowPartitionsContext.prototype = Object.create(StatementContext.prototype); +ShowPartitionsContext.prototype.constructor = ShowPartitionsContext; + +SqlBaseParser.ShowPartitionsContext = ShowPartitionsContext; + +ShowPartitionsContext.prototype.SHOW = function() { + return this.getToken(SqlBaseParser.SHOW, 0); +}; + +ShowPartitionsContext.prototype.PARTITIONS = function() { + return this.getToken(SqlBaseParser.PARTITIONS, 0); +}; + +ShowPartitionsContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +ShowPartitionsContext.prototype.partitionSpec = function() { + return this.getTypedRuleContext(PartitionSpecContext,0); +}; +ShowPartitionsContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterShowPartitions(this); + } +}; + +ShowPartitionsContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitShowPartitions(this); + } +}; + +ShowPartitionsContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitShowPartitions(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function DescribeFunctionContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DescribeFunctionContext.prototype = Object.create(StatementContext.prototype); +DescribeFunctionContext.prototype.constructor = DescribeFunctionContext; + +SqlBaseParser.DescribeFunctionContext = DescribeFunctionContext; + +DescribeFunctionContext.prototype.FUNCTION = function() { + return this.getToken(SqlBaseParser.FUNCTION, 0); +}; + +DescribeFunctionContext.prototype.describeFuncName = function() { + return this.getTypedRuleContext(DescribeFuncNameContext,0); +}; + +DescribeFunctionContext.prototype.DESC = function() { + return this.getToken(SqlBaseParser.DESC, 0); +}; + +DescribeFunctionContext.prototype.DESCRIBE = function() { + return this.getToken(SqlBaseParser.DESCRIBE, 0); +}; + +DescribeFunctionContext.prototype.EXTENDED = function() { + return this.getToken(SqlBaseParser.EXTENDED, 0); +}; +DescribeFunctionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDescribeFunction(this); + } +}; + +DescribeFunctionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDescribeFunction(this); + } +}; + +DescribeFunctionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDescribeFunction(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function RenameTableColumnContext(parser, ctx) { + StatementContext.call(this, parser); + this.table = null; // MultipartIdentifierContext; + this.from = null; // MultipartIdentifierContext; + this.to = null; // ErrorCapturingIdentifierContext; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +RenameTableColumnContext.prototype = Object.create(StatementContext.prototype); +RenameTableColumnContext.prototype.constructor = RenameTableColumnContext; + +SqlBaseParser.RenameTableColumnContext = RenameTableColumnContext; + +RenameTableColumnContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +RenameTableColumnContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +RenameTableColumnContext.prototype.RENAME = function() { + return this.getToken(SqlBaseParser.RENAME, 0); +}; + +RenameTableColumnContext.prototype.COLUMN = function() { + return this.getToken(SqlBaseParser.COLUMN, 0); +}; + +RenameTableColumnContext.prototype.TO = function() { + return this.getToken(SqlBaseParser.TO, 0); +}; + +RenameTableColumnContext.prototype.multipartIdentifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(MultipartIdentifierContext); + } else { + return this.getTypedRuleContext(MultipartIdentifierContext,i); + } +}; + +RenameTableColumnContext.prototype.errorCapturingIdentifier = function() { + return this.getTypedRuleContext(ErrorCapturingIdentifierContext,0); +}; +RenameTableColumnContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterRenameTableColumn(this); + } +}; + +RenameTableColumnContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitRenameTableColumn(this); + } +}; + +RenameTableColumnContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitRenameTableColumn(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function StatementDefaultContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +StatementDefaultContext.prototype = Object.create(StatementContext.prototype); +StatementDefaultContext.prototype.constructor = StatementDefaultContext; + +SqlBaseParser.StatementDefaultContext = StatementDefaultContext; + +StatementDefaultContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; +StatementDefaultContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterStatementDefault(this); + } +}; + +StatementDefaultContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitStatementDefault(this); + } +}; + +StatementDefaultContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitStatementDefault(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function HiveChangeColumnContext(parser, ctx) { + StatementContext.call(this, parser); + this.table = null; // MultipartIdentifierContext; + this.colName = null; // MultipartIdentifierContext; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +HiveChangeColumnContext.prototype = Object.create(StatementContext.prototype); +HiveChangeColumnContext.prototype.constructor = HiveChangeColumnContext; + +SqlBaseParser.HiveChangeColumnContext = HiveChangeColumnContext; + +HiveChangeColumnContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +HiveChangeColumnContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +HiveChangeColumnContext.prototype.CHANGE = function() { + return this.getToken(SqlBaseParser.CHANGE, 0); +}; + +HiveChangeColumnContext.prototype.colType = function() { + return this.getTypedRuleContext(ColTypeContext,0); +}; + +HiveChangeColumnContext.prototype.multipartIdentifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(MultipartIdentifierContext); + } else { + return this.getTypedRuleContext(MultipartIdentifierContext,i); + } +}; + +HiveChangeColumnContext.prototype.partitionSpec = function() { + return this.getTypedRuleContext(PartitionSpecContext,0); +}; + +HiveChangeColumnContext.prototype.COLUMN = function() { + return this.getToken(SqlBaseParser.COLUMN, 0); +}; + +HiveChangeColumnContext.prototype.colPosition = function() { + return this.getTypedRuleContext(ColPositionContext,0); +}; +HiveChangeColumnContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterHiveChangeColumn(this); + } +}; + +HiveChangeColumnContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitHiveChangeColumn(this); + } +}; + +HiveChangeColumnContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitHiveChangeColumn(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SetTimeZoneContext(parser, ctx) { + StatementContext.call(this, parser); + this.timezone = null; // Token; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SetTimeZoneContext.prototype = Object.create(StatementContext.prototype); +SetTimeZoneContext.prototype.constructor = SetTimeZoneContext; + +SqlBaseParser.SetTimeZoneContext = SetTimeZoneContext; + +SetTimeZoneContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; + +SetTimeZoneContext.prototype.TIME = function() { + return this.getToken(SqlBaseParser.TIME, 0); +}; + +SetTimeZoneContext.prototype.ZONE = function() { + return this.getToken(SqlBaseParser.ZONE, 0); +}; + +SetTimeZoneContext.prototype.interval = function() { + return this.getTypedRuleContext(IntervalContext,0); +}; + +SetTimeZoneContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +SetTimeZoneContext.prototype.LOCAL = function() { + return this.getToken(SqlBaseParser.LOCAL, 0); +}; +SetTimeZoneContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSetTimeZone(this); + } +}; + +SetTimeZoneContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSetTimeZone(this); + } +}; + +SetTimeZoneContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSetTimeZone(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function DescribeQueryContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DescribeQueryContext.prototype = Object.create(StatementContext.prototype); +DescribeQueryContext.prototype.constructor = DescribeQueryContext; + +SqlBaseParser.DescribeQueryContext = DescribeQueryContext; + +DescribeQueryContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; + +DescribeQueryContext.prototype.DESC = function() { + return this.getToken(SqlBaseParser.DESC, 0); +}; + +DescribeQueryContext.prototype.DESCRIBE = function() { + return this.getToken(SqlBaseParser.DESCRIBE, 0); +}; + +DescribeQueryContext.prototype.QUERY = function() { + return this.getToken(SqlBaseParser.QUERY, 0); +}; +DescribeQueryContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDescribeQuery(this); + } +}; + +DescribeQueryContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDescribeQuery(this); + } +}; + +DescribeQueryContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDescribeQuery(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function TruncateTableContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +TruncateTableContext.prototype = Object.create(StatementContext.prototype); +TruncateTableContext.prototype.constructor = TruncateTableContext; + +SqlBaseParser.TruncateTableContext = TruncateTableContext; + +TruncateTableContext.prototype.TRUNCATE = function() { + return this.getToken(SqlBaseParser.TRUNCATE, 0); +}; + +TruncateTableContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +TruncateTableContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +TruncateTableContext.prototype.partitionSpec = function() { + return this.getTypedRuleContext(PartitionSpecContext,0); +}; +TruncateTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTruncateTable(this); + } +}; + +TruncateTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTruncateTable(this); + } +}; + +TruncateTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTruncateTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SetTableSerDeContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SetTableSerDeContext.prototype = Object.create(StatementContext.prototype); +SetTableSerDeContext.prototype.constructor = SetTableSerDeContext; + +SqlBaseParser.SetTableSerDeContext = SetTableSerDeContext; + +SetTableSerDeContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +SetTableSerDeContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +SetTableSerDeContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +SetTableSerDeContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; + +SetTableSerDeContext.prototype.SERDE = function() { + return this.getToken(SqlBaseParser.SERDE, 0); +}; + +SetTableSerDeContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +SetTableSerDeContext.prototype.partitionSpec = function() { + return this.getTypedRuleContext(PartitionSpecContext,0); +}; + +SetTableSerDeContext.prototype.WITH = function() { + return this.getToken(SqlBaseParser.WITH, 0); +}; + +SetTableSerDeContext.prototype.SERDEPROPERTIES = function() { + return this.getToken(SqlBaseParser.SERDEPROPERTIES, 0); +}; + +SetTableSerDeContext.prototype.tablePropertyList = function() { + return this.getTypedRuleContext(TablePropertyListContext,0); +}; +SetTableSerDeContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSetTableSerDe(this); + } +}; + +SetTableSerDeContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSetTableSerDe(this); + } +}; + +SetTableSerDeContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSetTableSerDe(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function CreateViewContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +CreateViewContext.prototype = Object.create(StatementContext.prototype); +CreateViewContext.prototype.constructor = CreateViewContext; + +SqlBaseParser.CreateViewContext = CreateViewContext; + +CreateViewContext.prototype.CREATE = function() { + return this.getToken(SqlBaseParser.CREATE, 0); +}; + +CreateViewContext.prototype.VIEW = function() { + return this.getToken(SqlBaseParser.VIEW, 0); +}; + +CreateViewContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +CreateViewContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +CreateViewContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; + +CreateViewContext.prototype.OR = function() { + return this.getToken(SqlBaseParser.OR, 0); +}; + +CreateViewContext.prototype.REPLACE = function() { + return this.getToken(SqlBaseParser.REPLACE, 0); +}; + +CreateViewContext.prototype.TEMPORARY = function() { + return this.getToken(SqlBaseParser.TEMPORARY, 0); +}; + +CreateViewContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +CreateViewContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +CreateViewContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; + +CreateViewContext.prototype.identifierCommentList = function() { + return this.getTypedRuleContext(IdentifierCommentListContext,0); +}; + +CreateViewContext.prototype.commentSpec = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(CommentSpecContext); + } else { + return this.getTypedRuleContext(CommentSpecContext,i); + } +}; + +CreateViewContext.prototype.PARTITIONED = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.PARTITIONED); + } else { + return this.getToken(SqlBaseParser.PARTITIONED, i); + } +}; + + +CreateViewContext.prototype.ON = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.ON); + } else { + return this.getToken(SqlBaseParser.ON, i); + } +}; + + +CreateViewContext.prototype.identifierList = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierListContext); + } else { + return this.getTypedRuleContext(IdentifierListContext,i); + } +}; + +CreateViewContext.prototype.TBLPROPERTIES = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.TBLPROPERTIES); + } else { + return this.getToken(SqlBaseParser.TBLPROPERTIES, i); + } +}; + + +CreateViewContext.prototype.tablePropertyList = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TablePropertyListContext); + } else { + return this.getTypedRuleContext(TablePropertyListContext,i); + } +}; + +CreateViewContext.prototype.GLOBAL = function() { + return this.getToken(SqlBaseParser.GLOBAL, 0); +}; +CreateViewContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCreateView(this); + } +}; + +CreateViewContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCreateView(this); + } +}; + +CreateViewContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCreateView(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function DropTablePartitionsContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DropTablePartitionsContext.prototype = Object.create(StatementContext.prototype); +DropTablePartitionsContext.prototype.constructor = DropTablePartitionsContext; + +SqlBaseParser.DropTablePartitionsContext = DropTablePartitionsContext; + +DropTablePartitionsContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +DropTablePartitionsContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +DropTablePartitionsContext.prototype.DROP = function() { + return this.getToken(SqlBaseParser.DROP, 0); +}; + +DropTablePartitionsContext.prototype.partitionSpec = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(PartitionSpecContext); + } else { + return this.getTypedRuleContext(PartitionSpecContext,i); + } +}; + +DropTablePartitionsContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +DropTablePartitionsContext.prototype.VIEW = function() { + return this.getToken(SqlBaseParser.VIEW, 0); +}; + +DropTablePartitionsContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +DropTablePartitionsContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; + +DropTablePartitionsContext.prototype.PURGE = function() { + return this.getToken(SqlBaseParser.PURGE, 0); +}; +DropTablePartitionsContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDropTablePartitions(this); + } +}; + +DropTablePartitionsContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDropTablePartitions(this); + } +}; + +DropTablePartitionsContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDropTablePartitions(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SetConfigurationContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SetConfigurationContext.prototype = Object.create(StatementContext.prototype); +SetConfigurationContext.prototype.constructor = SetConfigurationContext; + +SqlBaseParser.SetConfigurationContext = SetConfigurationContext; + +SetConfigurationContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; +SetConfigurationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSetConfiguration(this); + } +}; + +SetConfigurationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSetConfiguration(this); + } +}; + +SetConfigurationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSetConfiguration(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function DropTableContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DropTableContext.prototype = Object.create(StatementContext.prototype); +DropTableContext.prototype.constructor = DropTableContext; + +SqlBaseParser.DropTableContext = DropTableContext; + +DropTableContext.prototype.DROP = function() { + return this.getToken(SqlBaseParser.DROP, 0); +}; + +DropTableContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +DropTableContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +DropTableContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +DropTableContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; + +DropTableContext.prototype.PURGE = function() { + return this.getToken(SqlBaseParser.PURGE, 0); +}; +DropTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDropTable(this); + } +}; + +DropTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDropTable(this); + } +}; + +DropTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDropTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function DescribeNamespaceContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DescribeNamespaceContext.prototype = Object.create(StatementContext.prototype); +DescribeNamespaceContext.prototype.constructor = DescribeNamespaceContext; + +SqlBaseParser.DescribeNamespaceContext = DescribeNamespaceContext; + +DescribeNamespaceContext.prototype.namespace = function() { + return this.getTypedRuleContext(NamespaceContext,0); +}; + +DescribeNamespaceContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +DescribeNamespaceContext.prototype.DESC = function() { + return this.getToken(SqlBaseParser.DESC, 0); +}; + +DescribeNamespaceContext.prototype.DESCRIBE = function() { + return this.getToken(SqlBaseParser.DESCRIBE, 0); +}; + +DescribeNamespaceContext.prototype.EXTENDED = function() { + return this.getToken(SqlBaseParser.EXTENDED, 0); +}; +DescribeNamespaceContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDescribeNamespace(this); + } +}; + +DescribeNamespaceContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDescribeNamespace(this); + } +}; + +DescribeNamespaceContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDescribeNamespace(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function AlterTableAlterColumnContext(parser, ctx) { + StatementContext.call(this, parser); + this.table = null; // MultipartIdentifierContext; + this.column = null; // MultipartIdentifierContext; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +AlterTableAlterColumnContext.prototype = Object.create(StatementContext.prototype); +AlterTableAlterColumnContext.prototype.constructor = AlterTableAlterColumnContext; + +SqlBaseParser.AlterTableAlterColumnContext = AlterTableAlterColumnContext; + +AlterTableAlterColumnContext.prototype.ALTER = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.ALTER); + } else { + return this.getToken(SqlBaseParser.ALTER, i); + } +}; + + +AlterTableAlterColumnContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +AlterTableAlterColumnContext.prototype.multipartIdentifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(MultipartIdentifierContext); + } else { + return this.getTypedRuleContext(MultipartIdentifierContext,i); + } +}; + +AlterTableAlterColumnContext.prototype.CHANGE = function() { + return this.getToken(SqlBaseParser.CHANGE, 0); +}; + +AlterTableAlterColumnContext.prototype.COLUMN = function() { + return this.getToken(SqlBaseParser.COLUMN, 0); +}; + +AlterTableAlterColumnContext.prototype.alterColumnAction = function() { + return this.getTypedRuleContext(AlterColumnActionContext,0); +}; +AlterTableAlterColumnContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterAlterTableAlterColumn(this); + } +}; + +AlterTableAlterColumnContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitAlterTableAlterColumn(this); + } +}; + +AlterTableAlterColumnContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitAlterTableAlterColumn(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function RefreshFunctionContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +RefreshFunctionContext.prototype = Object.create(StatementContext.prototype); +RefreshFunctionContext.prototype.constructor = RefreshFunctionContext; + +SqlBaseParser.RefreshFunctionContext = RefreshFunctionContext; + +RefreshFunctionContext.prototype.REFRESH = function() { + return this.getToken(SqlBaseParser.REFRESH, 0); +}; + +RefreshFunctionContext.prototype.FUNCTION = function() { + return this.getToken(SqlBaseParser.FUNCTION, 0); +}; + +RefreshFunctionContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; +RefreshFunctionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterRefreshFunction(this); + } +}; + +RefreshFunctionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitRefreshFunction(this); + } +}; + +RefreshFunctionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitRefreshFunction(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function CommentTableContext(parser, ctx) { + StatementContext.call(this, parser); + this.comment = null; // Token; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +CommentTableContext.prototype = Object.create(StatementContext.prototype); +CommentTableContext.prototype.constructor = CommentTableContext; + +SqlBaseParser.CommentTableContext = CommentTableContext; + +CommentTableContext.prototype.COMMENT = function() { + return this.getToken(SqlBaseParser.COMMENT, 0); +}; + +CommentTableContext.prototype.ON = function() { + return this.getToken(SqlBaseParser.ON, 0); +}; + +CommentTableContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +CommentTableContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +CommentTableContext.prototype.IS = function() { + return this.getToken(SqlBaseParser.IS, 0); +}; + +CommentTableContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +CommentTableContext.prototype.NULL = function() { + return this.getToken(SqlBaseParser.NULL, 0); +}; +CommentTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCommentTable(this); + } +}; + +CommentTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCommentTable(this); + } +}; + +CommentTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCommentTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function CreateNamespaceContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +CreateNamespaceContext.prototype = Object.create(StatementContext.prototype); +CreateNamespaceContext.prototype.constructor = CreateNamespaceContext; + +SqlBaseParser.CreateNamespaceContext = CreateNamespaceContext; + +CreateNamespaceContext.prototype.CREATE = function() { + return this.getToken(SqlBaseParser.CREATE, 0); +}; + +CreateNamespaceContext.prototype.namespace = function() { + return this.getTypedRuleContext(NamespaceContext,0); +}; + +CreateNamespaceContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +CreateNamespaceContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +CreateNamespaceContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +CreateNamespaceContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; + +CreateNamespaceContext.prototype.commentSpec = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(CommentSpecContext); + } else { + return this.getTypedRuleContext(CommentSpecContext,i); + } +}; + +CreateNamespaceContext.prototype.locationSpec = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(LocationSpecContext); + } else { + return this.getTypedRuleContext(LocationSpecContext,i); + } +}; + +CreateNamespaceContext.prototype.WITH = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.WITH); + } else { + return this.getToken(SqlBaseParser.WITH, i); + } +}; + + +CreateNamespaceContext.prototype.tablePropertyList = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TablePropertyListContext); + } else { + return this.getTypedRuleContext(TablePropertyListContext,i); + } +}; + +CreateNamespaceContext.prototype.DBPROPERTIES = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.DBPROPERTIES); + } else { + return this.getToken(SqlBaseParser.DBPROPERTIES, i); + } +}; + + +CreateNamespaceContext.prototype.PROPERTIES = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.PROPERTIES); + } else { + return this.getToken(SqlBaseParser.PROPERTIES, i); + } +}; + +CreateNamespaceContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCreateNamespace(this); + } +}; + +CreateNamespaceContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCreateNamespace(this); + } +}; + +CreateNamespaceContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCreateNamespace(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ShowTblPropertiesContext(parser, ctx) { + StatementContext.call(this, parser); + this.table = null; // MultipartIdentifierContext; + this.key = null; // TablePropertyKeyContext; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ShowTblPropertiesContext.prototype = Object.create(StatementContext.prototype); +ShowTblPropertiesContext.prototype.constructor = ShowTblPropertiesContext; + +SqlBaseParser.ShowTblPropertiesContext = ShowTblPropertiesContext; + +ShowTblPropertiesContext.prototype.SHOW = function() { + return this.getToken(SqlBaseParser.SHOW, 0); +}; + +ShowTblPropertiesContext.prototype.TBLPROPERTIES = function() { + return this.getToken(SqlBaseParser.TBLPROPERTIES, 0); +}; + +ShowTblPropertiesContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +ShowTblPropertiesContext.prototype.tablePropertyKey = function() { + return this.getTypedRuleContext(TablePropertyKeyContext,0); +}; +ShowTblPropertiesContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterShowTblProperties(this); + } +}; + +ShowTblPropertiesContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitShowTblProperties(this); + } +}; + +ShowTblPropertiesContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitShowTblProperties(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function UnsetTablePropertiesContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +UnsetTablePropertiesContext.prototype = Object.create(StatementContext.prototype); +UnsetTablePropertiesContext.prototype.constructor = UnsetTablePropertiesContext; + +SqlBaseParser.UnsetTablePropertiesContext = UnsetTablePropertiesContext; + +UnsetTablePropertiesContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +UnsetTablePropertiesContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +UnsetTablePropertiesContext.prototype.UNSET = function() { + return this.getToken(SqlBaseParser.UNSET, 0); +}; + +UnsetTablePropertiesContext.prototype.TBLPROPERTIES = function() { + return this.getToken(SqlBaseParser.TBLPROPERTIES, 0); +}; + +UnsetTablePropertiesContext.prototype.tablePropertyList = function() { + return this.getTypedRuleContext(TablePropertyListContext,0); +}; + +UnsetTablePropertiesContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +UnsetTablePropertiesContext.prototype.VIEW = function() { + return this.getToken(SqlBaseParser.VIEW, 0); +}; + +UnsetTablePropertiesContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +UnsetTablePropertiesContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; +UnsetTablePropertiesContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterUnsetTableProperties(this); + } +}; + +UnsetTablePropertiesContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitUnsetTableProperties(this); + } +}; + +UnsetTablePropertiesContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitUnsetTableProperties(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SetTableLocationContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SetTableLocationContext.prototype = Object.create(StatementContext.prototype); +SetTableLocationContext.prototype.constructor = SetTableLocationContext; + +SqlBaseParser.SetTableLocationContext = SetTableLocationContext; + +SetTableLocationContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +SetTableLocationContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +SetTableLocationContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +SetTableLocationContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; + +SetTableLocationContext.prototype.locationSpec = function() { + return this.getTypedRuleContext(LocationSpecContext,0); +}; + +SetTableLocationContext.prototype.partitionSpec = function() { + return this.getTypedRuleContext(PartitionSpecContext,0); +}; +SetTableLocationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSetTableLocation(this); + } +}; + +SetTableLocationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSetTableLocation(this); + } +}; + +SetTableLocationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSetTableLocation(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function DropTableColumnsContext(parser, ctx) { + StatementContext.call(this, parser); + this.columns = null; // MultipartIdentifierListContext; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DropTableColumnsContext.prototype = Object.create(StatementContext.prototype); +DropTableColumnsContext.prototype.constructor = DropTableColumnsContext; + +SqlBaseParser.DropTableColumnsContext = DropTableColumnsContext; + +DropTableColumnsContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +DropTableColumnsContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +DropTableColumnsContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +DropTableColumnsContext.prototype.DROP = function() { + return this.getToken(SqlBaseParser.DROP, 0); +}; + +DropTableColumnsContext.prototype.COLUMN = function() { + return this.getToken(SqlBaseParser.COLUMN, 0); +}; + +DropTableColumnsContext.prototype.COLUMNS = function() { + return this.getToken(SqlBaseParser.COLUMNS, 0); +}; + +DropTableColumnsContext.prototype.multipartIdentifierList = function() { + return this.getTypedRuleContext(MultipartIdentifierListContext,0); +}; +DropTableColumnsContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDropTableColumns(this); + } +}; + +DropTableColumnsContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDropTableColumns(this); + } +}; + +DropTableColumnsContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDropTableColumns(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ShowViewsContext(parser, ctx) { + StatementContext.call(this, parser); + this.pattern = null; // Token; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ShowViewsContext.prototype = Object.create(StatementContext.prototype); +ShowViewsContext.prototype.constructor = ShowViewsContext; + +SqlBaseParser.ShowViewsContext = ShowViewsContext; + +ShowViewsContext.prototype.SHOW = function() { + return this.getToken(SqlBaseParser.SHOW, 0); +}; + +ShowViewsContext.prototype.VIEWS = function() { + return this.getToken(SqlBaseParser.VIEWS, 0); +}; + +ShowViewsContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +ShowViewsContext.prototype.FROM = function() { + return this.getToken(SqlBaseParser.FROM, 0); +}; + +ShowViewsContext.prototype.IN = function() { + return this.getToken(SqlBaseParser.IN, 0); +}; + +ShowViewsContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +ShowViewsContext.prototype.LIKE = function() { + return this.getToken(SqlBaseParser.LIKE, 0); +}; +ShowViewsContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterShowViews(this); + } +}; + +ShowViewsContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitShowViews(this); + } +}; + +ShowViewsContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitShowViews(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ShowFunctionsContext(parser, ctx) { + StatementContext.call(this, parser); + this.pattern = null; // Token; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ShowFunctionsContext.prototype = Object.create(StatementContext.prototype); +ShowFunctionsContext.prototype.constructor = ShowFunctionsContext; + +SqlBaseParser.ShowFunctionsContext = ShowFunctionsContext; + +ShowFunctionsContext.prototype.SHOW = function() { + return this.getToken(SqlBaseParser.SHOW, 0); +}; + +ShowFunctionsContext.prototype.FUNCTIONS = function() { + return this.getToken(SqlBaseParser.FUNCTIONS, 0); +}; + +ShowFunctionsContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +ShowFunctionsContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +ShowFunctionsContext.prototype.LIKE = function() { + return this.getToken(SqlBaseParser.LIKE, 0); +}; + +ShowFunctionsContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; +ShowFunctionsContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterShowFunctions(this); + } +}; + +ShowFunctionsContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitShowFunctions(this); + } +}; + +ShowFunctionsContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitShowFunctions(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function CacheTableContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +CacheTableContext.prototype = Object.create(StatementContext.prototype); +CacheTableContext.prototype.constructor = CacheTableContext; + +SqlBaseParser.CacheTableContext = CacheTableContext; + +CacheTableContext.prototype.CACHE = function() { + return this.getToken(SqlBaseParser.CACHE, 0); +}; + +CacheTableContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +CacheTableContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +CacheTableContext.prototype.LAZY = function() { + return this.getToken(SqlBaseParser.LAZY, 0); +}; + +CacheTableContext.prototype.OPTIONS = function() { + return this.getToken(SqlBaseParser.OPTIONS, 0); +}; + +CacheTableContext.prototype.tablePropertyList = function() { + return this.getTypedRuleContext(TablePropertyListContext,0); +}; + +CacheTableContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; + +CacheTableContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; +CacheTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCacheTable(this); + } +}; + +CacheTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCacheTable(this); + } +}; + +CacheTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCacheTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function AddTableColumnsContext(parser, ctx) { + StatementContext.call(this, parser); + this.columns = null; // QualifiedColTypeWithPositionListContext; + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +AddTableColumnsContext.prototype = Object.create(StatementContext.prototype); +AddTableColumnsContext.prototype.constructor = AddTableColumnsContext; + +SqlBaseParser.AddTableColumnsContext = AddTableColumnsContext; + +AddTableColumnsContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +AddTableColumnsContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +AddTableColumnsContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +AddTableColumnsContext.prototype.ADD = function() { + return this.getToken(SqlBaseParser.ADD, 0); +}; + +AddTableColumnsContext.prototype.COLUMN = function() { + return this.getToken(SqlBaseParser.COLUMN, 0); +}; + +AddTableColumnsContext.prototype.COLUMNS = function() { + return this.getToken(SqlBaseParser.COLUMNS, 0); +}; + +AddTableColumnsContext.prototype.qualifiedColTypeWithPositionList = function() { + return this.getTypedRuleContext(QualifiedColTypeWithPositionListContext,0); +}; +AddTableColumnsContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterAddTableColumns(this); + } +}; + +AddTableColumnsContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitAddTableColumns(this); + } +}; + +AddTableColumnsContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitAddTableColumns(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SetTablePropertiesContext(parser, ctx) { + StatementContext.call(this, parser); + StatementContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SetTablePropertiesContext.prototype = Object.create(StatementContext.prototype); +SetTablePropertiesContext.prototype.constructor = SetTablePropertiesContext; + +SqlBaseParser.SetTablePropertiesContext = SetTablePropertiesContext; + +SetTablePropertiesContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +SetTablePropertiesContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +SetTablePropertiesContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; + +SetTablePropertiesContext.prototype.TBLPROPERTIES = function() { + return this.getToken(SqlBaseParser.TBLPROPERTIES, 0); +}; + +SetTablePropertiesContext.prototype.tablePropertyList = function() { + return this.getTypedRuleContext(TablePropertyListContext,0); +}; + +SetTablePropertiesContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +SetTablePropertiesContext.prototype.VIEW = function() { + return this.getToken(SqlBaseParser.VIEW, 0); +}; +SetTablePropertiesContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSetTableProperties(this); + } +}; + +SetTablePropertiesContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSetTableProperties(this); + } +}; + +SetTablePropertiesContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSetTableProperties(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.StatementContext = StatementContext; + +SqlBaseParser.prototype.statement = function() { + + var localctx = new StatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 14, SqlBaseParser.RULE_statement); + var _la = 0; // Token type + try { + this.state = 1043; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,110,this._ctx); + switch(la_) { + case 1: + localctx = new StatementDefaultContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 299; + this.query(); + break; + + case 2: + localctx = new DmlStatementContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 301; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.WITH) { + this.state = 300; + this.ctes(); + } + + this.state = 303; + this.dmlStatementNoWith(); + break; + + case 3: + localctx = new UseContext(this, localctx); + this.enterOuterAlt(localctx, 3); + this.state = 304; + this.match(SqlBaseParser.USE); + this.state = 306; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,2,this._ctx); + if(la_===1) { + this.state = 305; + this.match(SqlBaseParser.NAMESPACE); + + } + this.state = 308; + this.multipartIdentifier(); + break; + + case 4: + localctx = new CreateNamespaceContext(this, localctx); + this.enterOuterAlt(localctx, 4); + this.state = 309; + this.match(SqlBaseParser.CREATE); + this.state = 310; + this.namespace(); + this.state = 314; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,3,this._ctx); + if(la_===1) { + this.state = 311; + this.match(SqlBaseParser.IF); + this.state = 312; + this.match(SqlBaseParser.NOT); + this.state = 313; + this.match(SqlBaseParser.EXISTS); + + } + this.state = 316; + this.multipartIdentifier(); + this.state = 324; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.COMMENT || _la===SqlBaseParser.LOCATION || _la===SqlBaseParser.WITH) { + this.state = 322; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.COMMENT: + this.state = 317; + this.commentSpec(); + break; + case SqlBaseParser.LOCATION: + this.state = 318; + this.locationSpec(); + break; + case SqlBaseParser.WITH: + this.state = 319; + this.match(SqlBaseParser.WITH); + this.state = 320; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.DBPROPERTIES || _la===SqlBaseParser.PROPERTIES)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 321; + this.tablePropertyList(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 326; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + break; + + case 5: + localctx = new SetNamespacePropertiesContext(this, localctx); + this.enterOuterAlt(localctx, 5); + this.state = 327; + this.match(SqlBaseParser.ALTER); + this.state = 328; + this.namespace(); + this.state = 329; + this.multipartIdentifier(); + this.state = 330; + this.match(SqlBaseParser.SET); + this.state = 331; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.DBPROPERTIES || _la===SqlBaseParser.PROPERTIES)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 332; + this.tablePropertyList(); + break; + + case 6: + localctx = new SetNamespaceLocationContext(this, localctx); + this.enterOuterAlt(localctx, 6); + this.state = 334; + this.match(SqlBaseParser.ALTER); + this.state = 335; + this.namespace(); + this.state = 336; + this.multipartIdentifier(); + this.state = 337; + this.match(SqlBaseParser.SET); + this.state = 338; + this.locationSpec(); + break; + + case 7: + localctx = new DropNamespaceContext(this, localctx); + this.enterOuterAlt(localctx, 7); + this.state = 340; + this.match(SqlBaseParser.DROP); + this.state = 341; + this.namespace(); + this.state = 344; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,6,this._ctx); + if(la_===1) { + this.state = 342; + this.match(SqlBaseParser.IF); + this.state = 343; + this.match(SqlBaseParser.EXISTS); + + } + this.state = 346; + this.multipartIdentifier(); + this.state = 348; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.CASCADE || _la===SqlBaseParser.RESTRICT) { + this.state = 347; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.CASCADE || _la===SqlBaseParser.RESTRICT)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + + break; + + case 8: + localctx = new ShowNamespacesContext(this, localctx); + this.enterOuterAlt(localctx, 8); + this.state = 350; + this.match(SqlBaseParser.SHOW); + this.state = 351; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.DATABASES || _la===SqlBaseParser.NAMESPACES)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 354; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.FROM || _la===SqlBaseParser.IN) { + this.state = 352; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.FROM || _la===SqlBaseParser.IN)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 353; + this.multipartIdentifier(); + } + + this.state = 360; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.LIKE || _la===SqlBaseParser.STRING) { + this.state = 357; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.LIKE) { + this.state = 356; + this.match(SqlBaseParser.LIKE); + } + + this.state = 359; + localctx.pattern = this.match(SqlBaseParser.STRING); + } + + break; + + case 9: + localctx = new CreateTableContext(this, localctx); + this.enterOuterAlt(localctx, 9); + this.state = 362; + this.createTableHeader(); + this.state = 367; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.T__1) { + this.state = 363; + this.match(SqlBaseParser.T__1); + this.state = 364; + this.colTypeList(); + this.state = 365; + this.match(SqlBaseParser.T__2); + } + + this.state = 369; + this.tableProvider(); + this.state = 370; + this.createTableClauses(); + this.state = 375; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.T__1 || _la===SqlBaseParser.AS || _la===SqlBaseParser.FROM || _la===SqlBaseParser.MAP || _la===SqlBaseParser.REDUCE || _la===SqlBaseParser.SELECT || _la===SqlBaseParser.TABLE || _la===SqlBaseParser.VALUES || _la===SqlBaseParser.WITH) { + this.state = 372; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.AS) { + this.state = 371; + this.match(SqlBaseParser.AS); + } + + this.state = 374; + this.query(); + } + + break; + + case 10: + localctx = new CreateHiveTableContext(this, localctx); + this.enterOuterAlt(localctx, 10); + this.state = 377; + this.createTableHeader(); + this.state = 382; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,14,this._ctx); + if(la_===1) { + this.state = 378; + this.match(SqlBaseParser.T__1); + this.state = 379; + localctx.columns = this.colTypeList(); + this.state = 380; + this.match(SqlBaseParser.T__2); + + } + this.state = 405; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.CLUSTERED || _la===SqlBaseParser.COMMENT || _la===SqlBaseParser.LOCATION || _la===SqlBaseParser.PARTITIONED || ((((_la - 199)) & ~0x1f) == 0 && ((1 << (_la - 199)) & ((1 << (SqlBaseParser.ROW - 199)) | (1 << (SqlBaseParser.SKEWED - 199)) | (1 << (SqlBaseParser.STORED - 199)) | (1 << (SqlBaseParser.TBLPROPERTIES - 199)))) !== 0)) { + this.state = 403; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.COMMENT: + this.state = 384; + this.commentSpec(); + break; + case SqlBaseParser.PARTITIONED: + this.state = 394; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,15,this._ctx); + switch(la_) { + case 1: + this.state = 385; + this.match(SqlBaseParser.PARTITIONED); + this.state = 386; + this.match(SqlBaseParser.BY); + this.state = 387; + this.match(SqlBaseParser.T__1); + this.state = 388; + localctx.partitionColumns = this.colTypeList(); + this.state = 389; + this.match(SqlBaseParser.T__2); + break; + + case 2: + this.state = 391; + this.match(SqlBaseParser.PARTITIONED); + this.state = 392; + this.match(SqlBaseParser.BY); + this.state = 393; + localctx.partitionColumnNames = this.identifierList(); + break; + + } + break; + case SqlBaseParser.CLUSTERED: + this.state = 396; + this.bucketSpec(); + break; + case SqlBaseParser.SKEWED: + this.state = 397; + this.skewSpec(); + break; + case SqlBaseParser.ROW: + this.state = 398; + this.rowFormat(); + break; + case SqlBaseParser.STORED: + this.state = 399; + this.createFileFormat(); + break; + case SqlBaseParser.LOCATION: + this.state = 400; + this.locationSpec(); + break; + case SqlBaseParser.TBLPROPERTIES: + this.state = 401; + this.match(SqlBaseParser.TBLPROPERTIES); + this.state = 402; + localctx.tableProps = this.tablePropertyList(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 407; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 412; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.T__1 || _la===SqlBaseParser.AS || _la===SqlBaseParser.FROM || _la===SqlBaseParser.MAP || _la===SqlBaseParser.REDUCE || _la===SqlBaseParser.SELECT || _la===SqlBaseParser.TABLE || _la===SqlBaseParser.VALUES || _la===SqlBaseParser.WITH) { + this.state = 409; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.AS) { + this.state = 408; + this.match(SqlBaseParser.AS); + } + + this.state = 411; + this.query(); + } + + break; + + case 11: + localctx = new CreateTableLikeContext(this, localctx); + this.enterOuterAlt(localctx, 11); + this.state = 414; + this.match(SqlBaseParser.CREATE); + this.state = 415; + this.match(SqlBaseParser.TABLE); + this.state = 419; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,20,this._ctx); + if(la_===1) { + this.state = 416; + this.match(SqlBaseParser.IF); + this.state = 417; + this.match(SqlBaseParser.NOT); + this.state = 418; + this.match(SqlBaseParser.EXISTS); + + } + this.state = 421; + localctx.target = this.tableIdentifier(); + this.state = 422; + this.match(SqlBaseParser.LIKE); + this.state = 423; + localctx.source = this.tableIdentifier(); + this.state = 432; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.LOCATION || ((((_la - 199)) & ~0x1f) == 0 && ((1 << (_la - 199)) & ((1 << (SqlBaseParser.ROW - 199)) | (1 << (SqlBaseParser.STORED - 199)) | (1 << (SqlBaseParser.TBLPROPERTIES - 199)))) !== 0) || _la===SqlBaseParser.USING) { + this.state = 430; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.USING: + this.state = 424; + this.tableProvider(); + break; + case SqlBaseParser.ROW: + this.state = 425; + this.rowFormat(); + break; + case SqlBaseParser.STORED: + this.state = 426; + this.createFileFormat(); + break; + case SqlBaseParser.LOCATION: + this.state = 427; + this.locationSpec(); + break; + case SqlBaseParser.TBLPROPERTIES: + this.state = 428; + this.match(SqlBaseParser.TBLPROPERTIES); + this.state = 429; + localctx.tableProps = this.tablePropertyList(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 434; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + break; + + case 12: + localctx = new ReplaceTableContext(this, localctx); + this.enterOuterAlt(localctx, 12); + this.state = 435; + this.replaceTableHeader(); + this.state = 440; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.T__1) { + this.state = 436; + this.match(SqlBaseParser.T__1); + this.state = 437; + this.colTypeList(); + this.state = 438; + this.match(SqlBaseParser.T__2); + } + + this.state = 442; + this.tableProvider(); + this.state = 443; + this.createTableClauses(); + this.state = 448; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.T__1 || _la===SqlBaseParser.AS || _la===SqlBaseParser.FROM || _la===SqlBaseParser.MAP || _la===SqlBaseParser.REDUCE || _la===SqlBaseParser.SELECT || _la===SqlBaseParser.TABLE || _la===SqlBaseParser.VALUES || _la===SqlBaseParser.WITH) { + this.state = 445; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.AS) { + this.state = 444; + this.match(SqlBaseParser.AS); + } + + this.state = 447; + this.query(); + } + + break; + + case 13: + localctx = new AnalyzeContext(this, localctx); + this.enterOuterAlt(localctx, 13); + this.state = 450; + this.match(SqlBaseParser.ANALYZE); + this.state = 451; + this.match(SqlBaseParser.TABLE); + this.state = 452; + this.multipartIdentifier(); + this.state = 454; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 453; + this.partitionSpec(); + } + + this.state = 456; + this.match(SqlBaseParser.COMPUTE); + this.state = 457; + this.match(SqlBaseParser.STATISTICS); + this.state = 465; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,27,this._ctx); + if(la_===1) { + this.state = 458; + this.identifier(); + + } else if(la_===2) { + this.state = 459; + this.match(SqlBaseParser.FOR); + this.state = 460; + this.match(SqlBaseParser.COLUMNS); + this.state = 461; + this.identifierSeq(); + + } else if(la_===3) { + this.state = 462; + this.match(SqlBaseParser.FOR); + this.state = 463; + this.match(SqlBaseParser.ALL); + this.state = 464; + this.match(SqlBaseParser.COLUMNS); + + } + break; + + case 14: + localctx = new AddTableColumnsContext(this, localctx); + this.enterOuterAlt(localctx, 14); + this.state = 467; + this.match(SqlBaseParser.ALTER); + this.state = 468; + this.match(SqlBaseParser.TABLE); + this.state = 469; + this.multipartIdentifier(); + this.state = 470; + this.match(SqlBaseParser.ADD); + this.state = 471; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.COLUMN || _la===SqlBaseParser.COLUMNS)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 472; + localctx.columns = this.qualifiedColTypeWithPositionList(); + break; + + case 15: + localctx = new AddTableColumnsContext(this, localctx); + this.enterOuterAlt(localctx, 15); + this.state = 474; + this.match(SqlBaseParser.ALTER); + this.state = 475; + this.match(SqlBaseParser.TABLE); + this.state = 476; + this.multipartIdentifier(); + this.state = 477; + this.match(SqlBaseParser.ADD); + this.state = 478; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.COLUMN || _la===SqlBaseParser.COLUMNS)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 479; + this.match(SqlBaseParser.T__1); + this.state = 480; + localctx.columns = this.qualifiedColTypeWithPositionList(); + this.state = 481; + this.match(SqlBaseParser.T__2); + break; + + case 16: + localctx = new RenameTableColumnContext(this, localctx); + this.enterOuterAlt(localctx, 16); + this.state = 483; + this.match(SqlBaseParser.ALTER); + this.state = 484; + this.match(SqlBaseParser.TABLE); + this.state = 485; + localctx.table = this.multipartIdentifier(); + this.state = 486; + this.match(SqlBaseParser.RENAME); + this.state = 487; + this.match(SqlBaseParser.COLUMN); + this.state = 488; + localctx.from = this.multipartIdentifier(); + this.state = 489; + this.match(SqlBaseParser.TO); + this.state = 490; + localctx.to = this.errorCapturingIdentifier(); + break; + + case 17: + localctx = new DropTableColumnsContext(this, localctx); + this.enterOuterAlt(localctx, 17); + this.state = 492; + this.match(SqlBaseParser.ALTER); + this.state = 493; + this.match(SqlBaseParser.TABLE); + this.state = 494; + this.multipartIdentifier(); + this.state = 495; + this.match(SqlBaseParser.DROP); + this.state = 496; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.COLUMN || _la===SqlBaseParser.COLUMNS)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 497; + this.match(SqlBaseParser.T__1); + this.state = 498; + localctx.columns = this.multipartIdentifierList(); + this.state = 499; + this.match(SqlBaseParser.T__2); + break; + + case 18: + localctx = new DropTableColumnsContext(this, localctx); + this.enterOuterAlt(localctx, 18); + this.state = 501; + this.match(SqlBaseParser.ALTER); + this.state = 502; + this.match(SqlBaseParser.TABLE); + this.state = 503; + this.multipartIdentifier(); + this.state = 504; + this.match(SqlBaseParser.DROP); + this.state = 505; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.COLUMN || _la===SqlBaseParser.COLUMNS)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 506; + localctx.columns = this.multipartIdentifierList(); + break; + + case 19: + localctx = new RenameTableContext(this, localctx); + this.enterOuterAlt(localctx, 19); + this.state = 508; + this.match(SqlBaseParser.ALTER); + this.state = 509; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.TABLE || _la===SqlBaseParser.VIEW)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 510; + localctx.from = this.multipartIdentifier(); + this.state = 511; + this.match(SqlBaseParser.RENAME); + this.state = 512; + this.match(SqlBaseParser.TO); + this.state = 513; + localctx.to = this.multipartIdentifier(); + break; + + case 20: + localctx = new SetTablePropertiesContext(this, localctx); + this.enterOuterAlt(localctx, 20); + this.state = 515; + this.match(SqlBaseParser.ALTER); + this.state = 516; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.TABLE || _la===SqlBaseParser.VIEW)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 517; + this.multipartIdentifier(); + this.state = 518; + this.match(SqlBaseParser.SET); + this.state = 519; + this.match(SqlBaseParser.TBLPROPERTIES); + this.state = 520; + this.tablePropertyList(); + break; + + case 21: + localctx = new UnsetTablePropertiesContext(this, localctx); + this.enterOuterAlt(localctx, 21); + this.state = 522; + this.match(SqlBaseParser.ALTER); + this.state = 523; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.TABLE || _la===SqlBaseParser.VIEW)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 524; + this.multipartIdentifier(); + this.state = 525; + this.match(SqlBaseParser.UNSET); + this.state = 526; + this.match(SqlBaseParser.TBLPROPERTIES); + this.state = 529; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.IF) { + this.state = 527; + this.match(SqlBaseParser.IF); + this.state = 528; + this.match(SqlBaseParser.EXISTS); + } + + this.state = 531; + this.tablePropertyList(); + break; + + case 22: + localctx = new AlterTableAlterColumnContext(this, localctx); + this.enterOuterAlt(localctx, 22); + this.state = 533; + this.match(SqlBaseParser.ALTER); + this.state = 534; + this.match(SqlBaseParser.TABLE); + this.state = 535; + localctx.table = this.multipartIdentifier(); + this.state = 536; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.ALTER || _la===SqlBaseParser.CHANGE)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 538; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,29,this._ctx); + if(la_===1) { + this.state = 537; + this.match(SqlBaseParser.COLUMN); + + } + this.state = 540; + localctx.column = this.multipartIdentifier(); + this.state = 542; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.AFTER || _la===SqlBaseParser.COMMENT || _la===SqlBaseParser.DROP || _la===SqlBaseParser.FIRST || _la===SqlBaseParser.SET || _la===SqlBaseParser.TYPE) { + this.state = 541; + this.alterColumnAction(); + } + + break; + + case 23: + localctx = new HiveChangeColumnContext(this, localctx); + this.enterOuterAlt(localctx, 23); + this.state = 544; + this.match(SqlBaseParser.ALTER); + this.state = 545; + this.match(SqlBaseParser.TABLE); + this.state = 546; + localctx.table = this.multipartIdentifier(); + this.state = 548; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 547; + this.partitionSpec(); + } + + this.state = 550; + this.match(SqlBaseParser.CHANGE); + this.state = 552; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,32,this._ctx); + if(la_===1) { + this.state = 551; + this.match(SqlBaseParser.COLUMN); + + } + this.state = 554; + localctx.colName = this.multipartIdentifier(); + this.state = 555; + this.colType(); + this.state = 557; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.AFTER || _la===SqlBaseParser.FIRST) { + this.state = 556; + this.colPosition(); + } + + break; + + case 24: + localctx = new HiveReplaceColumnsContext(this, localctx); + this.enterOuterAlt(localctx, 24); + this.state = 559; + this.match(SqlBaseParser.ALTER); + this.state = 560; + this.match(SqlBaseParser.TABLE); + this.state = 561; + localctx.table = this.multipartIdentifier(); + this.state = 563; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 562; + this.partitionSpec(); + } + + this.state = 565; + this.match(SqlBaseParser.REPLACE); + this.state = 566; + this.match(SqlBaseParser.COLUMNS); + this.state = 567; + this.match(SqlBaseParser.T__1); + this.state = 568; + localctx.columns = this.qualifiedColTypeWithPositionList(); + this.state = 569; + this.match(SqlBaseParser.T__2); + break; + + case 25: + localctx = new SetTableSerDeContext(this, localctx); + this.enterOuterAlt(localctx, 25); + this.state = 571; + this.match(SqlBaseParser.ALTER); + this.state = 572; + this.match(SqlBaseParser.TABLE); + this.state = 573; + this.multipartIdentifier(); + this.state = 575; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 574; + this.partitionSpec(); + } + + this.state = 577; + this.match(SqlBaseParser.SET); + this.state = 578; + this.match(SqlBaseParser.SERDE); + this.state = 579; + this.match(SqlBaseParser.STRING); + this.state = 583; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.WITH) { + this.state = 580; + this.match(SqlBaseParser.WITH); + this.state = 581; + this.match(SqlBaseParser.SERDEPROPERTIES); + this.state = 582; + this.tablePropertyList(); + } + + break; + + case 26: + localctx = new SetTableSerDeContext(this, localctx); + this.enterOuterAlt(localctx, 26); + this.state = 585; + this.match(SqlBaseParser.ALTER); + this.state = 586; + this.match(SqlBaseParser.TABLE); + this.state = 587; + this.multipartIdentifier(); + this.state = 589; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 588; + this.partitionSpec(); + } + + this.state = 591; + this.match(SqlBaseParser.SET); + this.state = 592; + this.match(SqlBaseParser.SERDEPROPERTIES); + this.state = 593; + this.tablePropertyList(); + break; + + case 27: + localctx = new AddTablePartitionContext(this, localctx); + this.enterOuterAlt(localctx, 27); + this.state = 595; + this.match(SqlBaseParser.ALTER); + this.state = 596; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.TABLE || _la===SqlBaseParser.VIEW)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 597; + this.multipartIdentifier(); + this.state = 598; + this.match(SqlBaseParser.ADD); + this.state = 602; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.IF) { + this.state = 599; + this.match(SqlBaseParser.IF); + this.state = 600; + this.match(SqlBaseParser.NOT); + this.state = 601; + this.match(SqlBaseParser.EXISTS); + } + + this.state = 605; + this._errHandler.sync(this); + _la = this._input.LA(1); + do { + this.state = 604; + this.partitionSpecLocation(); + this.state = 607; + this._errHandler.sync(this); + _la = this._input.LA(1); + } while(_la===SqlBaseParser.PARTITION); + break; + + case 28: + localctx = new RenameTablePartitionContext(this, localctx); + this.enterOuterAlt(localctx, 28); + this.state = 609; + this.match(SqlBaseParser.ALTER); + this.state = 610; + this.match(SqlBaseParser.TABLE); + this.state = 611; + this.multipartIdentifier(); + this.state = 612; + localctx.from = this.partitionSpec(); + this.state = 613; + this.match(SqlBaseParser.RENAME); + this.state = 614; + this.match(SqlBaseParser.TO); + this.state = 615; + localctx.to = this.partitionSpec(); + break; + + case 29: + localctx = new DropTablePartitionsContext(this, localctx); + this.enterOuterAlt(localctx, 29); + this.state = 617; + this.match(SqlBaseParser.ALTER); + this.state = 618; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.TABLE || _la===SqlBaseParser.VIEW)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 619; + this.multipartIdentifier(); + this.state = 620; + this.match(SqlBaseParser.DROP); + this.state = 623; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.IF) { + this.state = 621; + this.match(SqlBaseParser.IF); + this.state = 622; + this.match(SqlBaseParser.EXISTS); + } + + this.state = 625; + this.partitionSpec(); + this.state = 630; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 626; + this.match(SqlBaseParser.T__3); + this.state = 627; + this.partitionSpec(); + this.state = 632; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 634; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PURGE) { + this.state = 633; + this.match(SqlBaseParser.PURGE); + } + + break; + + case 30: + localctx = new SetTableLocationContext(this, localctx); + this.enterOuterAlt(localctx, 30); + this.state = 636; + this.match(SqlBaseParser.ALTER); + this.state = 637; + this.match(SqlBaseParser.TABLE); + this.state = 638; + this.multipartIdentifier(); + this.state = 640; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 639; + this.partitionSpec(); + } + + this.state = 642; + this.match(SqlBaseParser.SET); + this.state = 643; + this.locationSpec(); + break; + + case 31: + localctx = new RecoverPartitionsContext(this, localctx); + this.enterOuterAlt(localctx, 31); + this.state = 645; + this.match(SqlBaseParser.ALTER); + this.state = 646; + this.match(SqlBaseParser.TABLE); + this.state = 647; + this.multipartIdentifier(); + this.state = 648; + this.match(SqlBaseParser.RECOVER); + this.state = 649; + this.match(SqlBaseParser.PARTITIONS); + break; + + case 32: + localctx = new DropTableContext(this, localctx); + this.enterOuterAlt(localctx, 32); + this.state = 651; + this.match(SqlBaseParser.DROP); + this.state = 652; + this.match(SqlBaseParser.TABLE); + this.state = 655; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,44,this._ctx); + if(la_===1) { + this.state = 653; + this.match(SqlBaseParser.IF); + this.state = 654; + this.match(SqlBaseParser.EXISTS); + + } + this.state = 657; + this.multipartIdentifier(); + this.state = 659; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PURGE) { + this.state = 658; + this.match(SqlBaseParser.PURGE); + } + + break; + + case 33: + localctx = new DropViewContext(this, localctx); + this.enterOuterAlt(localctx, 33); + this.state = 661; + this.match(SqlBaseParser.DROP); + this.state = 662; + this.match(SqlBaseParser.VIEW); + this.state = 665; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,46,this._ctx); + if(la_===1) { + this.state = 663; + this.match(SqlBaseParser.IF); + this.state = 664; + this.match(SqlBaseParser.EXISTS); + + } + this.state = 667; + this.multipartIdentifier(); + break; + + case 34: + localctx = new CreateViewContext(this, localctx); + this.enterOuterAlt(localctx, 34); + this.state = 668; + this.match(SqlBaseParser.CREATE); + this.state = 671; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.OR) { + this.state = 669; + this.match(SqlBaseParser.OR); + this.state = 670; + this.match(SqlBaseParser.REPLACE); + } + + this.state = 677; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.GLOBAL || _la===SqlBaseParser.TEMPORARY) { + this.state = 674; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.GLOBAL) { + this.state = 673; + this.match(SqlBaseParser.GLOBAL); + } + + this.state = 676; + this.match(SqlBaseParser.TEMPORARY); + } + + this.state = 679; + this.match(SqlBaseParser.VIEW); + this.state = 683; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,50,this._ctx); + if(la_===1) { + this.state = 680; + this.match(SqlBaseParser.IF); + this.state = 681; + this.match(SqlBaseParser.NOT); + this.state = 682; + this.match(SqlBaseParser.EXISTS); + + } + this.state = 685; + this.multipartIdentifier(); + this.state = 687; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.T__1) { + this.state = 686; + this.identifierCommentList(); + } + + this.state = 697; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.COMMENT || _la===SqlBaseParser.PARTITIONED || _la===SqlBaseParser.TBLPROPERTIES) { + this.state = 695; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.COMMENT: + this.state = 689; + this.commentSpec(); + break; + case SqlBaseParser.PARTITIONED: + this.state = 690; + this.match(SqlBaseParser.PARTITIONED); + this.state = 691; + this.match(SqlBaseParser.ON); + this.state = 692; + this.identifierList(); + break; + case SqlBaseParser.TBLPROPERTIES: + this.state = 693; + this.match(SqlBaseParser.TBLPROPERTIES); + this.state = 694; + this.tablePropertyList(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 699; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 700; + this.match(SqlBaseParser.AS); + this.state = 701; + this.query(); + break; + + case 35: + localctx = new CreateTempViewUsingContext(this, localctx); + this.enterOuterAlt(localctx, 35); + this.state = 703; + this.match(SqlBaseParser.CREATE); + this.state = 706; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.OR) { + this.state = 704; + this.match(SqlBaseParser.OR); + this.state = 705; + this.match(SqlBaseParser.REPLACE); + } + + this.state = 709; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.GLOBAL) { + this.state = 708; + this.match(SqlBaseParser.GLOBAL); + } + + this.state = 711; + this.match(SqlBaseParser.TEMPORARY); + this.state = 712; + this.match(SqlBaseParser.VIEW); + this.state = 713; + this.tableIdentifier(); + this.state = 718; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.T__1) { + this.state = 714; + this.match(SqlBaseParser.T__1); + this.state = 715; + this.colTypeList(); + this.state = 716; + this.match(SqlBaseParser.T__2); + } + + this.state = 720; + this.tableProvider(); + this.state = 723; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.OPTIONS) { + this.state = 721; + this.match(SqlBaseParser.OPTIONS); + this.state = 722; + this.tablePropertyList(); + } + + break; + + case 36: + localctx = new AlterViewQueryContext(this, localctx); + this.enterOuterAlt(localctx, 36); + this.state = 725; + this.match(SqlBaseParser.ALTER); + this.state = 726; + this.match(SqlBaseParser.VIEW); + this.state = 727; + this.multipartIdentifier(); + this.state = 729; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.AS) { + this.state = 728; + this.match(SqlBaseParser.AS); + } + + this.state = 731; + this.query(); + break; + + case 37: + localctx = new CreateFunctionContext(this, localctx); + this.enterOuterAlt(localctx, 37); + this.state = 733; + this.match(SqlBaseParser.CREATE); + this.state = 736; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.OR) { + this.state = 734; + this.match(SqlBaseParser.OR); + this.state = 735; + this.match(SqlBaseParser.REPLACE); + } + + this.state = 739; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.TEMPORARY) { + this.state = 738; + this.match(SqlBaseParser.TEMPORARY); + } + + this.state = 741; + this.match(SqlBaseParser.FUNCTION); + this.state = 745; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,61,this._ctx); + if(la_===1) { + this.state = 742; + this.match(SqlBaseParser.IF); + this.state = 743; + this.match(SqlBaseParser.NOT); + this.state = 744; + this.match(SqlBaseParser.EXISTS); + + } + this.state = 747; + this.multipartIdentifier(); + this.state = 748; + this.match(SqlBaseParser.AS); + this.state = 749; + localctx.className = this.match(SqlBaseParser.STRING); + this.state = 759; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.USING) { + this.state = 750; + this.match(SqlBaseParser.USING); + this.state = 751; + this.resource(); + this.state = 756; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 752; + this.match(SqlBaseParser.T__3); + this.state = 753; + this.resource(); + this.state = 758; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + + break; + + case 38: + localctx = new DropFunctionContext(this, localctx); + this.enterOuterAlt(localctx, 38); + this.state = 761; + this.match(SqlBaseParser.DROP); + this.state = 763; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.TEMPORARY) { + this.state = 762; + this.match(SqlBaseParser.TEMPORARY); + } + + this.state = 765; + this.match(SqlBaseParser.FUNCTION); + this.state = 768; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,65,this._ctx); + if(la_===1) { + this.state = 766; + this.match(SqlBaseParser.IF); + this.state = 767; + this.match(SqlBaseParser.EXISTS); + + } + this.state = 770; + this.multipartIdentifier(); + break; + + case 39: + localctx = new ExplainContext(this, localctx); + this.enterOuterAlt(localctx, 39); + this.state = 771; + this.match(SqlBaseParser.EXPLAIN); + this.state = 773; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.CODEGEN || _la===SqlBaseParser.COST || _la===SqlBaseParser.EXTENDED || _la===SqlBaseParser.FORMATTED || _la===SqlBaseParser.LOGICAL) { + this.state = 772; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.CODEGEN || _la===SqlBaseParser.COST || _la===SqlBaseParser.EXTENDED || _la===SqlBaseParser.FORMATTED || _la===SqlBaseParser.LOGICAL)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + + this.state = 775; + this.statement(); + break; + + case 40: + localctx = new ShowTablesContext(this, localctx); + this.enterOuterAlt(localctx, 40); + this.state = 776; + this.match(SqlBaseParser.SHOW); + this.state = 777; + this.match(SqlBaseParser.TABLES); + this.state = 780; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.FROM || _la===SqlBaseParser.IN) { + this.state = 778; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.FROM || _la===SqlBaseParser.IN)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 779; + this.multipartIdentifier(); + } + + this.state = 786; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.LIKE || _la===SqlBaseParser.STRING) { + this.state = 783; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.LIKE) { + this.state = 782; + this.match(SqlBaseParser.LIKE); + } + + this.state = 785; + localctx.pattern = this.match(SqlBaseParser.STRING); + } + + break; + + case 41: + localctx = new ShowTableContext(this, localctx); + this.enterOuterAlt(localctx, 41); + this.state = 788; + this.match(SqlBaseParser.SHOW); + this.state = 789; + this.match(SqlBaseParser.TABLE); + this.state = 790; + this.match(SqlBaseParser.EXTENDED); + this.state = 793; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.FROM || _la===SqlBaseParser.IN) { + this.state = 791; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.FROM || _la===SqlBaseParser.IN)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 792; + localctx.ns = this.multipartIdentifier(); + } + + this.state = 795; + this.match(SqlBaseParser.LIKE); + this.state = 796; + localctx.pattern = this.match(SqlBaseParser.STRING); + this.state = 798; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 797; + this.partitionSpec(); + } + + break; + + case 42: + localctx = new ShowTblPropertiesContext(this, localctx); + this.enterOuterAlt(localctx, 42); + this.state = 800; + this.match(SqlBaseParser.SHOW); + this.state = 801; + this.match(SqlBaseParser.TBLPROPERTIES); + this.state = 802; + localctx.table = this.multipartIdentifier(); + this.state = 807; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.T__1) { + this.state = 803; + this.match(SqlBaseParser.T__1); + this.state = 804; + localctx.key = this.tablePropertyKey(); + this.state = 805; + this.match(SqlBaseParser.T__2); + } + + break; + + case 43: + localctx = new ShowColumnsContext(this, localctx); + this.enterOuterAlt(localctx, 43); + this.state = 809; + this.match(SqlBaseParser.SHOW); + this.state = 810; + this.match(SqlBaseParser.COLUMNS); + this.state = 811; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.FROM || _la===SqlBaseParser.IN)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 812; + localctx.table = this.multipartIdentifier(); + this.state = 815; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.FROM || _la===SqlBaseParser.IN) { + this.state = 813; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.FROM || _la===SqlBaseParser.IN)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 814; + localctx.ns = this.multipartIdentifier(); + } + + break; + + case 44: + localctx = new ShowViewsContext(this, localctx); + this.enterOuterAlt(localctx, 44); + this.state = 817; + this.match(SqlBaseParser.SHOW); + this.state = 818; + this.match(SqlBaseParser.VIEWS); + this.state = 821; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.FROM || _la===SqlBaseParser.IN) { + this.state = 819; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.FROM || _la===SqlBaseParser.IN)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 820; + this.multipartIdentifier(); + } + + this.state = 827; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.LIKE || _la===SqlBaseParser.STRING) { + this.state = 824; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.LIKE) { + this.state = 823; + this.match(SqlBaseParser.LIKE); + } + + this.state = 826; + localctx.pattern = this.match(SqlBaseParser.STRING); + } + + break; + + case 45: + localctx = new ShowPartitionsContext(this, localctx); + this.enterOuterAlt(localctx, 45); + this.state = 829; + this.match(SqlBaseParser.SHOW); + this.state = 830; + this.match(SqlBaseParser.PARTITIONS); + this.state = 831; + this.multipartIdentifier(); + this.state = 833; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 832; + this.partitionSpec(); + } + + break; + + case 46: + localctx = new ShowFunctionsContext(this, localctx); + this.enterOuterAlt(localctx, 46); + this.state = 835; + this.match(SqlBaseParser.SHOW); + this.state = 837; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,78,this._ctx); + if(la_===1) { + this.state = 836; + this.identifier(); + + } + this.state = 839; + this.match(SqlBaseParser.FUNCTIONS); + this.state = 847; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,81,this._ctx); + if(la_===1) { + this.state = 841; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,79,this._ctx); + if(la_===1) { + this.state = 840; + this.match(SqlBaseParser.LIKE); + + } + this.state = 845; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,80,this._ctx); + switch(la_) { + case 1: + this.state = 843; + this.multipartIdentifier(); + break; + + case 2: + this.state = 844; + localctx.pattern = this.match(SqlBaseParser.STRING); + break; + + } + + } + break; + + case 47: + localctx = new ShowCreateTableContext(this, localctx); + this.enterOuterAlt(localctx, 47); + this.state = 849; + this.match(SqlBaseParser.SHOW); + this.state = 850; + this.match(SqlBaseParser.CREATE); + this.state = 851; + this.match(SqlBaseParser.TABLE); + this.state = 852; + this.multipartIdentifier(); + this.state = 855; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.AS) { + this.state = 853; + this.match(SqlBaseParser.AS); + this.state = 854; + this.match(SqlBaseParser.SERDE); + } + + break; + + case 48: + localctx = new ShowCurrentNamespaceContext(this, localctx); + this.enterOuterAlt(localctx, 48); + this.state = 857; + this.match(SqlBaseParser.SHOW); + this.state = 858; + this.match(SqlBaseParser.CURRENT); + this.state = 859; + this.match(SqlBaseParser.NAMESPACE); + break; + + case 49: + localctx = new DescribeFunctionContext(this, localctx); + this.enterOuterAlt(localctx, 49); + this.state = 860; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.DESC || _la===SqlBaseParser.DESCRIBE)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 861; + this.match(SqlBaseParser.FUNCTION); + this.state = 863; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,83,this._ctx); + if(la_===1) { + this.state = 862; + this.match(SqlBaseParser.EXTENDED); + + } + this.state = 865; + this.describeFuncName(); + break; + + case 50: + localctx = new DescribeNamespaceContext(this, localctx); + this.enterOuterAlt(localctx, 50); + this.state = 866; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.DESC || _la===SqlBaseParser.DESCRIBE)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 867; + this.namespace(); + this.state = 869; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,84,this._ctx); + if(la_===1) { + this.state = 868; + this.match(SqlBaseParser.EXTENDED); + + } + this.state = 871; + this.multipartIdentifier(); + break; + + case 51: + localctx = new DescribeRelationContext(this, localctx); + this.enterOuterAlt(localctx, 51); + this.state = 873; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.DESC || _la===SqlBaseParser.DESCRIBE)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 875; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,85,this._ctx); + if(la_===1) { + this.state = 874; + this.match(SqlBaseParser.TABLE); + + } + this.state = 878; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,86,this._ctx); + if(la_===1) { + this.state = 877; + localctx.option = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.EXTENDED || _la===SqlBaseParser.FORMATTED)) { + localctx.option = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + + } + this.state = 880; + this.multipartIdentifier(); + this.state = 882; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,87,this._ctx); + if(la_===1) { + this.state = 881; + this.partitionSpec(); + + } + this.state = 885; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,88,this._ctx); + if(la_===1) { + this.state = 884; + this.describeColName(); + + } + break; + + case 52: + localctx = new DescribeQueryContext(this, localctx); + this.enterOuterAlt(localctx, 52); + this.state = 887; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.DESC || _la===SqlBaseParser.DESCRIBE)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 889; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.QUERY) { + this.state = 888; + this.match(SqlBaseParser.QUERY); + } + + this.state = 891; + this.query(); + break; + + case 53: + localctx = new CommentNamespaceContext(this, localctx); + this.enterOuterAlt(localctx, 53); + this.state = 892; + this.match(SqlBaseParser.COMMENT); + this.state = 893; + this.match(SqlBaseParser.ON); + this.state = 894; + this.namespace(); + this.state = 895; + this.multipartIdentifier(); + this.state = 896; + this.match(SqlBaseParser.IS); + this.state = 897; + localctx.comment = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.NULL || _la===SqlBaseParser.STRING)) { + localctx.comment = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + + case 54: + localctx = new CommentTableContext(this, localctx); + this.enterOuterAlt(localctx, 54); + this.state = 899; + this.match(SqlBaseParser.COMMENT); + this.state = 900; + this.match(SqlBaseParser.ON); + this.state = 901; + this.match(SqlBaseParser.TABLE); + this.state = 902; + this.multipartIdentifier(); + this.state = 903; + this.match(SqlBaseParser.IS); + this.state = 904; + localctx.comment = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.NULL || _la===SqlBaseParser.STRING)) { + localctx.comment = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + + case 55: + localctx = new RefreshTableContext(this, localctx); + this.enterOuterAlt(localctx, 55); + this.state = 906; + this.match(SqlBaseParser.REFRESH); + this.state = 907; + this.match(SqlBaseParser.TABLE); + this.state = 908; + this.multipartIdentifier(); + break; + + case 56: + localctx = new RefreshFunctionContext(this, localctx); + this.enterOuterAlt(localctx, 56); + this.state = 909; + this.match(SqlBaseParser.REFRESH); + this.state = 910; + this.match(SqlBaseParser.FUNCTION); + this.state = 911; + this.multipartIdentifier(); + break; + + case 57: + localctx = new RefreshResourceContext(this, localctx); + this.enterOuterAlt(localctx, 57); + this.state = 912; + this.match(SqlBaseParser.REFRESH); + this.state = 920; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,91,this._ctx); + switch(la_) { + case 1: + this.state = 913; + this.match(SqlBaseParser.STRING); + break; + + case 2: + this.state = 917; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,90,this._ctx) + while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1+1) { + this.state = 914; + this.matchWildcard(); + } + this.state = 919; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,90,this._ctx); + } + + break; + + } + break; + + case 58: + localctx = new CacheTableContext(this, localctx); + this.enterOuterAlt(localctx, 58); + this.state = 922; + this.match(SqlBaseParser.CACHE); + this.state = 924; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.LAZY) { + this.state = 923; + this.match(SqlBaseParser.LAZY); + } + + this.state = 926; + this.match(SqlBaseParser.TABLE); + this.state = 927; + this.multipartIdentifier(); + this.state = 930; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.OPTIONS) { + this.state = 928; + this.match(SqlBaseParser.OPTIONS); + this.state = 929; + this.tablePropertyList(); + } + + this.state = 936; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.T__1 || _la===SqlBaseParser.AS || _la===SqlBaseParser.FROM || _la===SqlBaseParser.MAP || _la===SqlBaseParser.REDUCE || _la===SqlBaseParser.SELECT || _la===SqlBaseParser.TABLE || _la===SqlBaseParser.VALUES || _la===SqlBaseParser.WITH) { + this.state = 933; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.AS) { + this.state = 932; + this.match(SqlBaseParser.AS); + } + + this.state = 935; + this.query(); + } + + break; + + case 59: + localctx = new UncacheTableContext(this, localctx); + this.enterOuterAlt(localctx, 59); + this.state = 938; + this.match(SqlBaseParser.UNCACHE); + this.state = 939; + this.match(SqlBaseParser.TABLE); + this.state = 942; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,96,this._ctx); + if(la_===1) { + this.state = 940; + this.match(SqlBaseParser.IF); + this.state = 941; + this.match(SqlBaseParser.EXISTS); + + } + this.state = 944; + this.multipartIdentifier(); + break; + + case 60: + localctx = new ClearCacheContext(this, localctx); + this.enterOuterAlt(localctx, 60); + this.state = 945; + this.match(SqlBaseParser.CLEAR); + this.state = 946; + this.match(SqlBaseParser.CACHE); + break; + + case 61: + localctx = new LoadDataContext(this, localctx); + this.enterOuterAlt(localctx, 61); + this.state = 947; + this.match(SqlBaseParser.LOAD); + this.state = 948; + this.match(SqlBaseParser.DATA); + this.state = 950; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.LOCAL) { + this.state = 949; + this.match(SqlBaseParser.LOCAL); + } + + this.state = 952; + this.match(SqlBaseParser.INPATH); + this.state = 953; + localctx.path = this.match(SqlBaseParser.STRING); + this.state = 955; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.OVERWRITE) { + this.state = 954; + this.match(SqlBaseParser.OVERWRITE); + } + + this.state = 957; + this.match(SqlBaseParser.INTO); + this.state = 958; + this.match(SqlBaseParser.TABLE); + this.state = 959; + this.multipartIdentifier(); + this.state = 961; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 960; + this.partitionSpec(); + } + + break; + + case 62: + localctx = new TruncateTableContext(this, localctx); + this.enterOuterAlt(localctx, 62); + this.state = 963; + this.match(SqlBaseParser.TRUNCATE); + this.state = 964; + this.match(SqlBaseParser.TABLE); + this.state = 965; + this.multipartIdentifier(); + this.state = 967; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 966; + this.partitionSpec(); + } + + break; + + case 63: + localctx = new RepairTableContext(this, localctx); + this.enterOuterAlt(localctx, 63); + this.state = 969; + this.match(SqlBaseParser.MSCK); + this.state = 970; + this.match(SqlBaseParser.REPAIR); + this.state = 971; + this.match(SqlBaseParser.TABLE); + this.state = 972; + this.multipartIdentifier(); + break; + + case 64: + localctx = new ManageResourceContext(this, localctx); + this.enterOuterAlt(localctx, 64); + this.state = 973; + localctx.op = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.ADD || _la===SqlBaseParser.LIST)) { + localctx.op = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 974; + this.identifier(); + this.state = 982; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,102,this._ctx); + switch(la_) { + case 1: + this.state = 975; + this.match(SqlBaseParser.STRING); + break; + + case 2: + this.state = 979; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,101,this._ctx) + while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1+1) { + this.state = 976; + this.matchWildcard(); + } + this.state = 981; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,101,this._ctx); + } + + break; + + } + break; + + case 65: + localctx = new FailNativeCommandContext(this, localctx); + this.enterOuterAlt(localctx, 65); + this.state = 984; + this.match(SqlBaseParser.SET); + this.state = 985; + this.match(SqlBaseParser.ROLE); + this.state = 989; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,103,this._ctx) + while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1+1) { + this.state = 986; + this.matchWildcard(); + } + this.state = 991; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,103,this._ctx); + } + + break; + + case 66: + localctx = new SetTimeZoneContext(this, localctx); + this.enterOuterAlt(localctx, 66); + this.state = 992; + this.match(SqlBaseParser.SET); + this.state = 993; + this.match(SqlBaseParser.TIME); + this.state = 994; + this.match(SqlBaseParser.ZONE); + this.state = 995; + this.interval(); + break; + + case 67: + localctx = new SetTimeZoneContext(this, localctx); + this.enterOuterAlt(localctx, 67); + this.state = 996; + this.match(SqlBaseParser.SET); + this.state = 997; + this.match(SqlBaseParser.TIME); + this.state = 998; + this.match(SqlBaseParser.ZONE); + this.state = 999; + localctx.timezone = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.LOCAL || _la===SqlBaseParser.STRING)) { + localctx.timezone = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + + case 68: + localctx = new SetTimeZoneContext(this, localctx); + this.enterOuterAlt(localctx, 68); + this.state = 1000; + this.match(SqlBaseParser.SET); + this.state = 1001; + this.match(SqlBaseParser.TIME); + this.state = 1002; + this.match(SqlBaseParser.ZONE); + this.state = 1006; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,104,this._ctx) + while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1+1) { + this.state = 1003; + this.matchWildcard(); + } + this.state = 1008; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,104,this._ctx); + } + + break; + + case 69: + localctx = new SetQuotedConfigurationContext(this, localctx); + this.enterOuterAlt(localctx, 69); + this.state = 1009; + this.match(SqlBaseParser.SET); + this.state = 1010; + this.configKey(); + this.state = 1018; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.EQ) { + this.state = 1011; + this.match(SqlBaseParser.EQ); + this.state = 1015; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,105,this._ctx) + while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1+1) { + this.state = 1012; + this.matchWildcard(); + } + this.state = 1017; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,105,this._ctx); + } + + } + + break; + + case 70: + localctx = new SetConfigurationContext(this, localctx); + this.enterOuterAlt(localctx, 70); + this.state = 1020; + this.match(SqlBaseParser.SET); + this.state = 1024; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,107,this._ctx) + while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1+1) { + this.state = 1021; + this.matchWildcard(); + } + this.state = 1026; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,107,this._ctx); + } + + break; + + case 71: + localctx = new ResetQuotedConfigurationContext(this, localctx); + this.enterOuterAlt(localctx, 71); + this.state = 1027; + this.match(SqlBaseParser.RESET); + this.state = 1028; + this.configKey(); + break; + + case 72: + localctx = new ResetConfigurationContext(this, localctx); + this.enterOuterAlt(localctx, 72); + this.state = 1029; + this.match(SqlBaseParser.RESET); + this.state = 1033; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,108,this._ctx) + while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1+1) { + this.state = 1030; + this.matchWildcard(); + } + this.state = 1035; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,108,this._ctx); + } + + break; + + case 73: + localctx = new FailNativeCommandContext(this, localctx); + this.enterOuterAlt(localctx, 73); + this.state = 1036; + this.unsupportedHiveNativeCommands(); + this.state = 1040; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,109,this._ctx) + while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1+1) { + this.state = 1037; + this.matchWildcard(); + } + this.state = 1042; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,109,this._ctx); + } + + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ConfigKeyContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_configKey; + return this; +} + +ConfigKeyContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ConfigKeyContext.prototype.constructor = ConfigKeyContext; + +ConfigKeyContext.prototype.quotedIdentifier = function() { + return this.getTypedRuleContext(QuotedIdentifierContext,0); +}; + +ConfigKeyContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterConfigKey(this); + } +}; + +ConfigKeyContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitConfigKey(this); + } +}; + +ConfigKeyContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitConfigKey(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ConfigKeyContext = ConfigKeyContext; + +SqlBaseParser.prototype.configKey = function() { + + var localctx = new ConfigKeyContext(this, this._ctx, this.state); + this.enterRule(localctx, 16, SqlBaseParser.RULE_configKey); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1045; + this.quotedIdentifier(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function UnsupportedHiveNativeCommandsContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_unsupportedHiveNativeCommands; + this.kw1 = null; // Token + this.kw2 = null; // Token + this.kw3 = null; // Token + this.kw4 = null; // Token + this.kw5 = null; // Token + this.kw6 = null; // Token + return this; +} + +UnsupportedHiveNativeCommandsContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +UnsupportedHiveNativeCommandsContext.prototype.constructor = UnsupportedHiveNativeCommandsContext; + +UnsupportedHiveNativeCommandsContext.prototype.CREATE = function() { + return this.getToken(SqlBaseParser.CREATE, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.ROLE = function() { + return this.getToken(SqlBaseParser.ROLE, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.DROP = function() { + return this.getToken(SqlBaseParser.DROP, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.GRANT = function() { + return this.getToken(SqlBaseParser.GRANT, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.REVOKE = function() { + return this.getToken(SqlBaseParser.REVOKE, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.SHOW = function() { + return this.getToken(SqlBaseParser.SHOW, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.PRINCIPALS = function() { + return this.getToken(SqlBaseParser.PRINCIPALS, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.ROLES = function() { + return this.getToken(SqlBaseParser.ROLES, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.CURRENT = function() { + return this.getToken(SqlBaseParser.CURRENT, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.EXPORT = function() { + return this.getToken(SqlBaseParser.EXPORT, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.IMPORT = function() { + return this.getToken(SqlBaseParser.IMPORT, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.COMPACTIONS = function() { + return this.getToken(SqlBaseParser.COMPACTIONS, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.TRANSACTIONS = function() { + return this.getToken(SqlBaseParser.TRANSACTIONS, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.INDEXES = function() { + return this.getToken(SqlBaseParser.INDEXES, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.LOCKS = function() { + return this.getToken(SqlBaseParser.LOCKS, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.INDEX = function() { + return this.getToken(SqlBaseParser.INDEX, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.LOCK = function() { + return this.getToken(SqlBaseParser.LOCK, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.DATABASE = function() { + return this.getToken(SqlBaseParser.DATABASE, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.UNLOCK = function() { + return this.getToken(SqlBaseParser.UNLOCK, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.TEMPORARY = function() { + return this.getToken(SqlBaseParser.TEMPORARY, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.MACRO = function() { + return this.getToken(SqlBaseParser.MACRO, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.tableIdentifier = function() { + return this.getTypedRuleContext(TableIdentifierContext,0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.CLUSTERED = function() { + return this.getToken(SqlBaseParser.CLUSTERED, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.BY = function() { + return this.getToken(SqlBaseParser.BY, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.SORTED = function() { + return this.getToken(SqlBaseParser.SORTED, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.SKEWED = function() { + return this.getToken(SqlBaseParser.SKEWED, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.STORED = function() { + return this.getToken(SqlBaseParser.STORED, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.DIRECTORIES = function() { + return this.getToken(SqlBaseParser.DIRECTORIES, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.LOCATION = function() { + return this.getToken(SqlBaseParser.LOCATION, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.EXCHANGE = function() { + return this.getToken(SqlBaseParser.EXCHANGE, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.PARTITION = function() { + return this.getToken(SqlBaseParser.PARTITION, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.ARCHIVE = function() { + return this.getToken(SqlBaseParser.ARCHIVE, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.UNARCHIVE = function() { + return this.getToken(SqlBaseParser.UNARCHIVE, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.TOUCH = function() { + return this.getToken(SqlBaseParser.TOUCH, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.COMPACT = function() { + return this.getToken(SqlBaseParser.COMPACT, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.partitionSpec = function() { + return this.getTypedRuleContext(PartitionSpecContext,0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.CONCATENATE = function() { + return this.getToken(SqlBaseParser.CONCATENATE, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.FILEFORMAT = function() { + return this.getToken(SqlBaseParser.FILEFORMAT, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.REPLACE = function() { + return this.getToken(SqlBaseParser.REPLACE, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.COLUMNS = function() { + return this.getToken(SqlBaseParser.COLUMNS, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.START = function() { + return this.getToken(SqlBaseParser.START, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.TRANSACTION = function() { + return this.getToken(SqlBaseParser.TRANSACTION, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.COMMIT = function() { + return this.getToken(SqlBaseParser.COMMIT, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.ROLLBACK = function() { + return this.getToken(SqlBaseParser.ROLLBACK, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.DFS = function() { + return this.getToken(SqlBaseParser.DFS, 0); +}; + +UnsupportedHiveNativeCommandsContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterUnsupportedHiveNativeCommands(this); + } +}; + +UnsupportedHiveNativeCommandsContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitUnsupportedHiveNativeCommands(this); + } +}; + +UnsupportedHiveNativeCommandsContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitUnsupportedHiveNativeCommands(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.UnsupportedHiveNativeCommandsContext = UnsupportedHiveNativeCommandsContext; + +SqlBaseParser.prototype.unsupportedHiveNativeCommands = function() { + + var localctx = new UnsupportedHiveNativeCommandsContext(this, this._ctx, this.state); + this.enterRule(localctx, 18, SqlBaseParser.RULE_unsupportedHiveNativeCommands); + var _la = 0; // Token type + try { + this.state = 1215; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,118,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 1047; + localctx.kw1 = this.match(SqlBaseParser.CREATE); + this.state = 1048; + localctx.kw2 = this.match(SqlBaseParser.ROLE); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 1049; + localctx.kw1 = this.match(SqlBaseParser.DROP); + this.state = 1050; + localctx.kw2 = this.match(SqlBaseParser.ROLE); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 1051; + localctx.kw1 = this.match(SqlBaseParser.GRANT); + this.state = 1053; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,111,this._ctx); + if(la_===1) { + this.state = 1052; + localctx.kw2 = this.match(SqlBaseParser.ROLE); + + } + break; + + case 4: + this.enterOuterAlt(localctx, 4); + this.state = 1055; + localctx.kw1 = this.match(SqlBaseParser.REVOKE); + this.state = 1057; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,112,this._ctx); + if(la_===1) { + this.state = 1056; + localctx.kw2 = this.match(SqlBaseParser.ROLE); + + } + break; + + case 5: + this.enterOuterAlt(localctx, 5); + this.state = 1059; + localctx.kw1 = this.match(SqlBaseParser.SHOW); + this.state = 1060; + localctx.kw2 = this.match(SqlBaseParser.GRANT); + break; + + case 6: + this.enterOuterAlt(localctx, 6); + this.state = 1061; + localctx.kw1 = this.match(SqlBaseParser.SHOW); + this.state = 1062; + localctx.kw2 = this.match(SqlBaseParser.ROLE); + this.state = 1064; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,113,this._ctx); + if(la_===1) { + this.state = 1063; + localctx.kw3 = this.match(SqlBaseParser.GRANT); + + } + break; + + case 7: + this.enterOuterAlt(localctx, 7); + this.state = 1066; + localctx.kw1 = this.match(SqlBaseParser.SHOW); + this.state = 1067; + localctx.kw2 = this.match(SqlBaseParser.PRINCIPALS); + break; + + case 8: + this.enterOuterAlt(localctx, 8); + this.state = 1068; + localctx.kw1 = this.match(SqlBaseParser.SHOW); + this.state = 1069; + localctx.kw2 = this.match(SqlBaseParser.ROLES); + break; + + case 9: + this.enterOuterAlt(localctx, 9); + this.state = 1070; + localctx.kw1 = this.match(SqlBaseParser.SHOW); + this.state = 1071; + localctx.kw2 = this.match(SqlBaseParser.CURRENT); + this.state = 1072; + localctx.kw3 = this.match(SqlBaseParser.ROLES); + break; + + case 10: + this.enterOuterAlt(localctx, 10); + this.state = 1073; + localctx.kw1 = this.match(SqlBaseParser.EXPORT); + this.state = 1074; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + break; + + case 11: + this.enterOuterAlt(localctx, 11); + this.state = 1075; + localctx.kw1 = this.match(SqlBaseParser.IMPORT); + this.state = 1076; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + break; + + case 12: + this.enterOuterAlt(localctx, 12); + this.state = 1077; + localctx.kw1 = this.match(SqlBaseParser.SHOW); + this.state = 1078; + localctx.kw2 = this.match(SqlBaseParser.COMPACTIONS); + break; + + case 13: + this.enterOuterAlt(localctx, 13); + this.state = 1079; + localctx.kw1 = this.match(SqlBaseParser.SHOW); + this.state = 1080; + localctx.kw2 = this.match(SqlBaseParser.CREATE); + this.state = 1081; + localctx.kw3 = this.match(SqlBaseParser.TABLE); + break; + + case 14: + this.enterOuterAlt(localctx, 14); + this.state = 1082; + localctx.kw1 = this.match(SqlBaseParser.SHOW); + this.state = 1083; + localctx.kw2 = this.match(SqlBaseParser.TRANSACTIONS); + break; + + case 15: + this.enterOuterAlt(localctx, 15); + this.state = 1084; + localctx.kw1 = this.match(SqlBaseParser.SHOW); + this.state = 1085; + localctx.kw2 = this.match(SqlBaseParser.INDEXES); + break; + + case 16: + this.enterOuterAlt(localctx, 16); + this.state = 1086; + localctx.kw1 = this.match(SqlBaseParser.SHOW); + this.state = 1087; + localctx.kw2 = this.match(SqlBaseParser.LOCKS); + break; + + case 17: + this.enterOuterAlt(localctx, 17); + this.state = 1088; + localctx.kw1 = this.match(SqlBaseParser.CREATE); + this.state = 1089; + localctx.kw2 = this.match(SqlBaseParser.INDEX); + break; + + case 18: + this.enterOuterAlt(localctx, 18); + this.state = 1090; + localctx.kw1 = this.match(SqlBaseParser.DROP); + this.state = 1091; + localctx.kw2 = this.match(SqlBaseParser.INDEX); + break; + + case 19: + this.enterOuterAlt(localctx, 19); + this.state = 1092; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1093; + localctx.kw2 = this.match(SqlBaseParser.INDEX); + break; + + case 20: + this.enterOuterAlt(localctx, 20); + this.state = 1094; + localctx.kw1 = this.match(SqlBaseParser.LOCK); + this.state = 1095; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + break; + + case 21: + this.enterOuterAlt(localctx, 21); + this.state = 1096; + localctx.kw1 = this.match(SqlBaseParser.LOCK); + this.state = 1097; + localctx.kw2 = this.match(SqlBaseParser.DATABASE); + break; + + case 22: + this.enterOuterAlt(localctx, 22); + this.state = 1098; + localctx.kw1 = this.match(SqlBaseParser.UNLOCK); + this.state = 1099; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + break; + + case 23: + this.enterOuterAlt(localctx, 23); + this.state = 1100; + localctx.kw1 = this.match(SqlBaseParser.UNLOCK); + this.state = 1101; + localctx.kw2 = this.match(SqlBaseParser.DATABASE); + break; + + case 24: + this.enterOuterAlt(localctx, 24); + this.state = 1102; + localctx.kw1 = this.match(SqlBaseParser.CREATE); + this.state = 1103; + localctx.kw2 = this.match(SqlBaseParser.TEMPORARY); + this.state = 1104; + localctx.kw3 = this.match(SqlBaseParser.MACRO); + break; + + case 25: + this.enterOuterAlt(localctx, 25); + this.state = 1105; + localctx.kw1 = this.match(SqlBaseParser.DROP); + this.state = 1106; + localctx.kw2 = this.match(SqlBaseParser.TEMPORARY); + this.state = 1107; + localctx.kw3 = this.match(SqlBaseParser.MACRO); + break; + + case 26: + this.enterOuterAlt(localctx, 26); + this.state = 1108; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1109; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1110; + this.tableIdentifier(); + this.state = 1111; + localctx.kw3 = this.match(SqlBaseParser.NOT); + this.state = 1112; + localctx.kw4 = this.match(SqlBaseParser.CLUSTERED); + break; + + case 27: + this.enterOuterAlt(localctx, 27); + this.state = 1114; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1115; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1116; + this.tableIdentifier(); + this.state = 1117; + localctx.kw3 = this.match(SqlBaseParser.CLUSTERED); + this.state = 1118; + localctx.kw4 = this.match(SqlBaseParser.BY); + break; + + case 28: + this.enterOuterAlt(localctx, 28); + this.state = 1120; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1121; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1122; + this.tableIdentifier(); + this.state = 1123; + localctx.kw3 = this.match(SqlBaseParser.NOT); + this.state = 1124; + localctx.kw4 = this.match(SqlBaseParser.SORTED); + break; + + case 29: + this.enterOuterAlt(localctx, 29); + this.state = 1126; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1127; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1128; + this.tableIdentifier(); + this.state = 1129; + localctx.kw3 = this.match(SqlBaseParser.SKEWED); + this.state = 1130; + localctx.kw4 = this.match(SqlBaseParser.BY); + break; + + case 30: + this.enterOuterAlt(localctx, 30); + this.state = 1132; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1133; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1134; + this.tableIdentifier(); + this.state = 1135; + localctx.kw3 = this.match(SqlBaseParser.NOT); + this.state = 1136; + localctx.kw4 = this.match(SqlBaseParser.SKEWED); + break; + + case 31: + this.enterOuterAlt(localctx, 31); + this.state = 1138; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1139; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1140; + this.tableIdentifier(); + this.state = 1141; + localctx.kw3 = this.match(SqlBaseParser.NOT); + this.state = 1142; + localctx.kw4 = this.match(SqlBaseParser.STORED); + this.state = 1143; + localctx.kw5 = this.match(SqlBaseParser.AS); + this.state = 1144; + localctx.kw6 = this.match(SqlBaseParser.DIRECTORIES); + break; + + case 32: + this.enterOuterAlt(localctx, 32); + this.state = 1146; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1147; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1148; + this.tableIdentifier(); + this.state = 1149; + localctx.kw3 = this.match(SqlBaseParser.SET); + this.state = 1150; + localctx.kw4 = this.match(SqlBaseParser.SKEWED); + this.state = 1151; + localctx.kw5 = this.match(SqlBaseParser.LOCATION); + break; + + case 33: + this.enterOuterAlt(localctx, 33); + this.state = 1153; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1154; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1155; + this.tableIdentifier(); + this.state = 1156; + localctx.kw3 = this.match(SqlBaseParser.EXCHANGE); + this.state = 1157; + localctx.kw4 = this.match(SqlBaseParser.PARTITION); + break; + + case 34: + this.enterOuterAlt(localctx, 34); + this.state = 1159; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1160; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1161; + this.tableIdentifier(); + this.state = 1162; + localctx.kw3 = this.match(SqlBaseParser.ARCHIVE); + this.state = 1163; + localctx.kw4 = this.match(SqlBaseParser.PARTITION); + break; + + case 35: + this.enterOuterAlt(localctx, 35); + this.state = 1165; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1166; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1167; + this.tableIdentifier(); + this.state = 1168; + localctx.kw3 = this.match(SqlBaseParser.UNARCHIVE); + this.state = 1169; + localctx.kw4 = this.match(SqlBaseParser.PARTITION); + break; + + case 36: + this.enterOuterAlt(localctx, 36); + this.state = 1171; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1172; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1173; + this.tableIdentifier(); + this.state = 1174; + localctx.kw3 = this.match(SqlBaseParser.TOUCH); + break; + + case 37: + this.enterOuterAlt(localctx, 37); + this.state = 1176; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1177; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1178; + this.tableIdentifier(); + this.state = 1180; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 1179; + this.partitionSpec(); + } + + this.state = 1182; + localctx.kw3 = this.match(SqlBaseParser.COMPACT); + break; + + case 38: + this.enterOuterAlt(localctx, 38); + this.state = 1184; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1185; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1186; + this.tableIdentifier(); + this.state = 1188; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 1187; + this.partitionSpec(); + } + + this.state = 1190; + localctx.kw3 = this.match(SqlBaseParser.CONCATENATE); + break; + + case 39: + this.enterOuterAlt(localctx, 39); + this.state = 1192; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1193; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1194; + this.tableIdentifier(); + this.state = 1196; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 1195; + this.partitionSpec(); + } + + this.state = 1198; + localctx.kw3 = this.match(SqlBaseParser.SET); + this.state = 1199; + localctx.kw4 = this.match(SqlBaseParser.FILEFORMAT); + break; + + case 40: + this.enterOuterAlt(localctx, 40); + this.state = 1201; + localctx.kw1 = this.match(SqlBaseParser.ALTER); + this.state = 1202; + localctx.kw2 = this.match(SqlBaseParser.TABLE); + this.state = 1203; + this.tableIdentifier(); + this.state = 1205; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 1204; + this.partitionSpec(); + } + + this.state = 1207; + localctx.kw3 = this.match(SqlBaseParser.REPLACE); + this.state = 1208; + localctx.kw4 = this.match(SqlBaseParser.COLUMNS); + break; + + case 41: + this.enterOuterAlt(localctx, 41); + this.state = 1210; + localctx.kw1 = this.match(SqlBaseParser.START); + this.state = 1211; + localctx.kw2 = this.match(SqlBaseParser.TRANSACTION); + break; + + case 42: + this.enterOuterAlt(localctx, 42); + this.state = 1212; + localctx.kw1 = this.match(SqlBaseParser.COMMIT); + break; + + case 43: + this.enterOuterAlt(localctx, 43); + this.state = 1213; + localctx.kw1 = this.match(SqlBaseParser.ROLLBACK); + break; + + case 44: + this.enterOuterAlt(localctx, 44); + this.state = 1214; + localctx.kw1 = this.match(SqlBaseParser.DFS); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function CreateTableHeaderContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_createTableHeader; + return this; +} + +CreateTableHeaderContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +CreateTableHeaderContext.prototype.constructor = CreateTableHeaderContext; + +CreateTableHeaderContext.prototype.CREATE = function() { + return this.getToken(SqlBaseParser.CREATE, 0); +}; + +CreateTableHeaderContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +CreateTableHeaderContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +CreateTableHeaderContext.prototype.TEMPORARY = function() { + return this.getToken(SqlBaseParser.TEMPORARY, 0); +}; + +CreateTableHeaderContext.prototype.EXTERNAL = function() { + return this.getToken(SqlBaseParser.EXTERNAL, 0); +}; + +CreateTableHeaderContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +CreateTableHeaderContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +CreateTableHeaderContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; + +CreateTableHeaderContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCreateTableHeader(this); + } +}; + +CreateTableHeaderContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCreateTableHeader(this); + } +}; + +CreateTableHeaderContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCreateTableHeader(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.CreateTableHeaderContext = CreateTableHeaderContext; + +SqlBaseParser.prototype.createTableHeader = function() { + + var localctx = new CreateTableHeaderContext(this, this._ctx, this.state); + this.enterRule(localctx, 20, SqlBaseParser.RULE_createTableHeader); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1217; + this.match(SqlBaseParser.CREATE); + this.state = 1219; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.TEMPORARY) { + this.state = 1218; + this.match(SqlBaseParser.TEMPORARY); + } + + this.state = 1222; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.EXTERNAL) { + this.state = 1221; + this.match(SqlBaseParser.EXTERNAL); + } + + this.state = 1224; + this.match(SqlBaseParser.TABLE); + this.state = 1228; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,121,this._ctx); + if(la_===1) { + this.state = 1225; + this.match(SqlBaseParser.IF); + this.state = 1226; + this.match(SqlBaseParser.NOT); + this.state = 1227; + this.match(SqlBaseParser.EXISTS); + + } + this.state = 1230; + this.multipartIdentifier(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ReplaceTableHeaderContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_replaceTableHeader; + return this; +} + +ReplaceTableHeaderContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ReplaceTableHeaderContext.prototype.constructor = ReplaceTableHeaderContext; + +ReplaceTableHeaderContext.prototype.REPLACE = function() { + return this.getToken(SqlBaseParser.REPLACE, 0); +}; + +ReplaceTableHeaderContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +ReplaceTableHeaderContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +ReplaceTableHeaderContext.prototype.CREATE = function() { + return this.getToken(SqlBaseParser.CREATE, 0); +}; + +ReplaceTableHeaderContext.prototype.OR = function() { + return this.getToken(SqlBaseParser.OR, 0); +}; + +ReplaceTableHeaderContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterReplaceTableHeader(this); + } +}; + +ReplaceTableHeaderContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitReplaceTableHeader(this); + } +}; + +ReplaceTableHeaderContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitReplaceTableHeader(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ReplaceTableHeaderContext = ReplaceTableHeaderContext; + +SqlBaseParser.prototype.replaceTableHeader = function() { + + var localctx = new ReplaceTableHeaderContext(this, this._ctx, this.state); + this.enterRule(localctx, 22, SqlBaseParser.RULE_replaceTableHeader); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1234; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.CREATE) { + this.state = 1232; + this.match(SqlBaseParser.CREATE); + this.state = 1233; + this.match(SqlBaseParser.OR); + } + + this.state = 1236; + this.match(SqlBaseParser.REPLACE); + this.state = 1237; + this.match(SqlBaseParser.TABLE); + this.state = 1238; + this.multipartIdentifier(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function BucketSpecContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_bucketSpec; + return this; +} + +BucketSpecContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +BucketSpecContext.prototype.constructor = BucketSpecContext; + +BucketSpecContext.prototype.CLUSTERED = function() { + return this.getToken(SqlBaseParser.CLUSTERED, 0); +}; + +BucketSpecContext.prototype.BY = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.BY); + } else { + return this.getToken(SqlBaseParser.BY, i); + } +}; + + +BucketSpecContext.prototype.identifierList = function() { + return this.getTypedRuleContext(IdentifierListContext,0); +}; + +BucketSpecContext.prototype.INTO = function() { + return this.getToken(SqlBaseParser.INTO, 0); +}; + +BucketSpecContext.prototype.INTEGER_VALUE = function() { + return this.getToken(SqlBaseParser.INTEGER_VALUE, 0); +}; + +BucketSpecContext.prototype.BUCKETS = function() { + return this.getToken(SqlBaseParser.BUCKETS, 0); +}; + +BucketSpecContext.prototype.SORTED = function() { + return this.getToken(SqlBaseParser.SORTED, 0); +}; + +BucketSpecContext.prototype.orderedIdentifierList = function() { + return this.getTypedRuleContext(OrderedIdentifierListContext,0); +}; + +BucketSpecContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterBucketSpec(this); + } +}; + +BucketSpecContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitBucketSpec(this); + } +}; + +BucketSpecContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitBucketSpec(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.BucketSpecContext = BucketSpecContext; + +SqlBaseParser.prototype.bucketSpec = function() { + + var localctx = new BucketSpecContext(this, this._ctx, this.state); + this.enterRule(localctx, 24, SqlBaseParser.RULE_bucketSpec); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1240; + this.match(SqlBaseParser.CLUSTERED); + this.state = 1241; + this.match(SqlBaseParser.BY); + this.state = 1242; + this.identifierList(); + this.state = 1246; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.SORTED) { + this.state = 1243; + this.match(SqlBaseParser.SORTED); + this.state = 1244; + this.match(SqlBaseParser.BY); + this.state = 1245; + this.orderedIdentifierList(); + } + + this.state = 1248; + this.match(SqlBaseParser.INTO); + this.state = 1249; + this.match(SqlBaseParser.INTEGER_VALUE); + this.state = 1250; + this.match(SqlBaseParser.BUCKETS); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SkewSpecContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_skewSpec; + return this; +} + +SkewSpecContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SkewSpecContext.prototype.constructor = SkewSpecContext; + +SkewSpecContext.prototype.SKEWED = function() { + return this.getToken(SqlBaseParser.SKEWED, 0); +}; + +SkewSpecContext.prototype.BY = function() { + return this.getToken(SqlBaseParser.BY, 0); +}; + +SkewSpecContext.prototype.identifierList = function() { + return this.getTypedRuleContext(IdentifierListContext,0); +}; + +SkewSpecContext.prototype.ON = function() { + return this.getToken(SqlBaseParser.ON, 0); +}; + +SkewSpecContext.prototype.constantList = function() { + return this.getTypedRuleContext(ConstantListContext,0); +}; + +SkewSpecContext.prototype.nestedConstantList = function() { + return this.getTypedRuleContext(NestedConstantListContext,0); +}; + +SkewSpecContext.prototype.STORED = function() { + return this.getToken(SqlBaseParser.STORED, 0); +}; + +SkewSpecContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +SkewSpecContext.prototype.DIRECTORIES = function() { + return this.getToken(SqlBaseParser.DIRECTORIES, 0); +}; + +SkewSpecContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSkewSpec(this); + } +}; + +SkewSpecContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSkewSpec(this); + } +}; + +SkewSpecContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSkewSpec(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.SkewSpecContext = SkewSpecContext; + +SqlBaseParser.prototype.skewSpec = function() { + + var localctx = new SkewSpecContext(this, this._ctx, this.state); + this.enterRule(localctx, 26, SqlBaseParser.RULE_skewSpec); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1252; + this.match(SqlBaseParser.SKEWED); + this.state = 1253; + this.match(SqlBaseParser.BY); + this.state = 1254; + this.identifierList(); + this.state = 1255; + this.match(SqlBaseParser.ON); + this.state = 1258; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,124,this._ctx); + switch(la_) { + case 1: + this.state = 1256; + this.constantList(); + break; + + case 2: + this.state = 1257; + this.nestedConstantList(); + break; + + } + this.state = 1263; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,125,this._ctx); + if(la_===1) { + this.state = 1260; + this.match(SqlBaseParser.STORED); + this.state = 1261; + this.match(SqlBaseParser.AS); + this.state = 1262; + this.match(SqlBaseParser.DIRECTORIES); + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function LocationSpecContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_locationSpec; + return this; +} + +LocationSpecContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +LocationSpecContext.prototype.constructor = LocationSpecContext; + +LocationSpecContext.prototype.LOCATION = function() { + return this.getToken(SqlBaseParser.LOCATION, 0); +}; + +LocationSpecContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +LocationSpecContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterLocationSpec(this); + } +}; + +LocationSpecContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitLocationSpec(this); + } +}; + +LocationSpecContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitLocationSpec(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.LocationSpecContext = LocationSpecContext; + +SqlBaseParser.prototype.locationSpec = function() { + + var localctx = new LocationSpecContext(this, this._ctx, this.state); + this.enterRule(localctx, 28, SqlBaseParser.RULE_locationSpec); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1265; + this.match(SqlBaseParser.LOCATION); + this.state = 1266; + this.match(SqlBaseParser.STRING); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function CommentSpecContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_commentSpec; + return this; +} + +CommentSpecContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +CommentSpecContext.prototype.constructor = CommentSpecContext; + +CommentSpecContext.prototype.COMMENT = function() { + return this.getToken(SqlBaseParser.COMMENT, 0); +}; + +CommentSpecContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +CommentSpecContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCommentSpec(this); + } +}; + +CommentSpecContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCommentSpec(this); + } +}; + +CommentSpecContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCommentSpec(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.CommentSpecContext = CommentSpecContext; + +SqlBaseParser.prototype.commentSpec = function() { + + var localctx = new CommentSpecContext(this, this._ctx, this.state); + this.enterRule(localctx, 30, SqlBaseParser.RULE_commentSpec); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1268; + this.match(SqlBaseParser.COMMENT); + this.state = 1269; + this.match(SqlBaseParser.STRING); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function QueryContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_query; + return this; +} + +QueryContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QueryContext.prototype.constructor = QueryContext; + +QueryContext.prototype.queryTerm = function() { + return this.getTypedRuleContext(QueryTermContext,0); +}; + +QueryContext.prototype.queryOrganization = function() { + return this.getTypedRuleContext(QueryOrganizationContext,0); +}; + +QueryContext.prototype.ctes = function() { + return this.getTypedRuleContext(CtesContext,0); +}; + +QueryContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterQuery(this); + } +}; + +QueryContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitQuery(this); + } +}; + +QueryContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitQuery(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.QueryContext = QueryContext; + +SqlBaseParser.prototype.query = function() { + + var localctx = new QueryContext(this, this._ctx, this.state); + this.enterRule(localctx, 32, SqlBaseParser.RULE_query); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1272; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.WITH) { + this.state = 1271; + this.ctes(); + } + + this.state = 1274; + this.queryTerm(0); + this.state = 1275; + this.queryOrganization(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function InsertIntoContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_insertInto; + return this; +} + +InsertIntoContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +InsertIntoContext.prototype.constructor = InsertIntoContext; + + + +InsertIntoContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function InsertOverwriteHiveDirContext(parser, ctx) { + InsertIntoContext.call(this, parser); + this.path = null; // Token; + InsertIntoContext.prototype.copyFrom.call(this, ctx); + return this; +} + +InsertOverwriteHiveDirContext.prototype = Object.create(InsertIntoContext.prototype); +InsertOverwriteHiveDirContext.prototype.constructor = InsertOverwriteHiveDirContext; + +SqlBaseParser.InsertOverwriteHiveDirContext = InsertOverwriteHiveDirContext; + +InsertOverwriteHiveDirContext.prototype.INSERT = function() { + return this.getToken(SqlBaseParser.INSERT, 0); +}; + +InsertOverwriteHiveDirContext.prototype.OVERWRITE = function() { + return this.getToken(SqlBaseParser.OVERWRITE, 0); +}; + +InsertOverwriteHiveDirContext.prototype.DIRECTORY = function() { + return this.getToken(SqlBaseParser.DIRECTORY, 0); +}; + +InsertOverwriteHiveDirContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +InsertOverwriteHiveDirContext.prototype.LOCAL = function() { + return this.getToken(SqlBaseParser.LOCAL, 0); +}; + +InsertOverwriteHiveDirContext.prototype.rowFormat = function() { + return this.getTypedRuleContext(RowFormatContext,0); +}; + +InsertOverwriteHiveDirContext.prototype.createFileFormat = function() { + return this.getTypedRuleContext(CreateFileFormatContext,0); +}; +InsertOverwriteHiveDirContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterInsertOverwriteHiveDir(this); + } +}; + +InsertOverwriteHiveDirContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitInsertOverwriteHiveDir(this); + } +}; + +InsertOverwriteHiveDirContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitInsertOverwriteHiveDir(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function InsertOverwriteDirContext(parser, ctx) { + InsertIntoContext.call(this, parser); + this.path = null; // Token; + InsertIntoContext.prototype.copyFrom.call(this, ctx); + return this; +} + +InsertOverwriteDirContext.prototype = Object.create(InsertIntoContext.prototype); +InsertOverwriteDirContext.prototype.constructor = InsertOverwriteDirContext; + +SqlBaseParser.InsertOverwriteDirContext = InsertOverwriteDirContext; + +InsertOverwriteDirContext.prototype.INSERT = function() { + return this.getToken(SqlBaseParser.INSERT, 0); +}; + +InsertOverwriteDirContext.prototype.OVERWRITE = function() { + return this.getToken(SqlBaseParser.OVERWRITE, 0); +}; + +InsertOverwriteDirContext.prototype.DIRECTORY = function() { + return this.getToken(SqlBaseParser.DIRECTORY, 0); +}; + +InsertOverwriteDirContext.prototype.tableProvider = function() { + return this.getTypedRuleContext(TableProviderContext,0); +}; + +InsertOverwriteDirContext.prototype.LOCAL = function() { + return this.getToken(SqlBaseParser.LOCAL, 0); +}; + +InsertOverwriteDirContext.prototype.OPTIONS = function() { + return this.getToken(SqlBaseParser.OPTIONS, 0); +}; + +InsertOverwriteDirContext.prototype.tablePropertyList = function() { + return this.getTypedRuleContext(TablePropertyListContext,0); +}; + +InsertOverwriteDirContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; +InsertOverwriteDirContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterInsertOverwriteDir(this); + } +}; + +InsertOverwriteDirContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitInsertOverwriteDir(this); + } +}; + +InsertOverwriteDirContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitInsertOverwriteDir(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function InsertOverwriteTableContext(parser, ctx) { + InsertIntoContext.call(this, parser); + InsertIntoContext.prototype.copyFrom.call(this, ctx); + return this; +} + +InsertOverwriteTableContext.prototype = Object.create(InsertIntoContext.prototype); +InsertOverwriteTableContext.prototype.constructor = InsertOverwriteTableContext; + +SqlBaseParser.InsertOverwriteTableContext = InsertOverwriteTableContext; + +InsertOverwriteTableContext.prototype.INSERT = function() { + return this.getToken(SqlBaseParser.INSERT, 0); +}; + +InsertOverwriteTableContext.prototype.OVERWRITE = function() { + return this.getToken(SqlBaseParser.OVERWRITE, 0); +}; + +InsertOverwriteTableContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +InsertOverwriteTableContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +InsertOverwriteTableContext.prototype.partitionSpec = function() { + return this.getTypedRuleContext(PartitionSpecContext,0); +}; + +InsertOverwriteTableContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +InsertOverwriteTableContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +InsertOverwriteTableContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; +InsertOverwriteTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterInsertOverwriteTable(this); + } +}; + +InsertOverwriteTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitInsertOverwriteTable(this); + } +}; + +InsertOverwriteTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitInsertOverwriteTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function InsertIntoTableContext(parser, ctx) { + InsertIntoContext.call(this, parser); + InsertIntoContext.prototype.copyFrom.call(this, ctx); + return this; +} + +InsertIntoTableContext.prototype = Object.create(InsertIntoContext.prototype); +InsertIntoTableContext.prototype.constructor = InsertIntoTableContext; + +SqlBaseParser.InsertIntoTableContext = InsertIntoTableContext; + +InsertIntoTableContext.prototype.INSERT = function() { + return this.getToken(SqlBaseParser.INSERT, 0); +}; + +InsertIntoTableContext.prototype.INTO = function() { + return this.getToken(SqlBaseParser.INTO, 0); +}; + +InsertIntoTableContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +InsertIntoTableContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +InsertIntoTableContext.prototype.partitionSpec = function() { + return this.getTypedRuleContext(PartitionSpecContext,0); +}; + +InsertIntoTableContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +InsertIntoTableContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +InsertIntoTableContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; +InsertIntoTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterInsertIntoTable(this); + } +}; + +InsertIntoTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitInsertIntoTable(this); + } +}; + +InsertIntoTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitInsertIntoTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.InsertIntoContext = InsertIntoContext; + +SqlBaseParser.prototype.insertInto = function() { + + var localctx = new InsertIntoContext(this, this._ctx, this.state); + this.enterRule(localctx, 34, SqlBaseParser.RULE_insertInto); + var _la = 0; // Token type + try { + this.state = 1332; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,139,this._ctx); + switch(la_) { + case 1: + localctx = new InsertOverwriteTableContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 1277; + this.match(SqlBaseParser.INSERT); + this.state = 1278; + this.match(SqlBaseParser.OVERWRITE); + this.state = 1280; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,127,this._ctx); + if(la_===1) { + this.state = 1279; + this.match(SqlBaseParser.TABLE); + + } + this.state = 1282; + this.multipartIdentifier(); + this.state = 1289; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 1283; + this.partitionSpec(); + this.state = 1287; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.IF) { + this.state = 1284; + this.match(SqlBaseParser.IF); + this.state = 1285; + this.match(SqlBaseParser.NOT); + this.state = 1286; + this.match(SqlBaseParser.EXISTS); + } + + } + + break; + + case 2: + localctx = new InsertIntoTableContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 1291; + this.match(SqlBaseParser.INSERT); + this.state = 1292; + this.match(SqlBaseParser.INTO); + this.state = 1294; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,130,this._ctx); + if(la_===1) { + this.state = 1293; + this.match(SqlBaseParser.TABLE); + + } + this.state = 1296; + this.multipartIdentifier(); + this.state = 1298; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PARTITION) { + this.state = 1297; + this.partitionSpec(); + } + + this.state = 1303; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.IF) { + this.state = 1300; + this.match(SqlBaseParser.IF); + this.state = 1301; + this.match(SqlBaseParser.NOT); + this.state = 1302; + this.match(SqlBaseParser.EXISTS); + } + + break; + + case 3: + localctx = new InsertOverwriteHiveDirContext(this, localctx); + this.enterOuterAlt(localctx, 3); + this.state = 1305; + this.match(SqlBaseParser.INSERT); + this.state = 1306; + this.match(SqlBaseParser.OVERWRITE); + this.state = 1308; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.LOCAL) { + this.state = 1307; + this.match(SqlBaseParser.LOCAL); + } + + this.state = 1310; + this.match(SqlBaseParser.DIRECTORY); + this.state = 1311; + localctx.path = this.match(SqlBaseParser.STRING); + this.state = 1313; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.ROW) { + this.state = 1312; + this.rowFormat(); + } + + this.state = 1316; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.STORED) { + this.state = 1315; + this.createFileFormat(); + } + + break; + + case 4: + localctx = new InsertOverwriteDirContext(this, localctx); + this.enterOuterAlt(localctx, 4); + this.state = 1318; + this.match(SqlBaseParser.INSERT); + this.state = 1319; + this.match(SqlBaseParser.OVERWRITE); + this.state = 1321; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.LOCAL) { + this.state = 1320; + this.match(SqlBaseParser.LOCAL); + } + + this.state = 1323; + this.match(SqlBaseParser.DIRECTORY); + this.state = 1325; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.STRING) { + this.state = 1324; + localctx.path = this.match(SqlBaseParser.STRING); + } + + this.state = 1327; + this.tableProvider(); + this.state = 1330; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.OPTIONS) { + this.state = 1328; + this.match(SqlBaseParser.OPTIONS); + this.state = 1329; + this.tablePropertyList(); + } + + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function PartitionSpecLocationContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_partitionSpecLocation; + return this; +} + +PartitionSpecLocationContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PartitionSpecLocationContext.prototype.constructor = PartitionSpecLocationContext; + +PartitionSpecLocationContext.prototype.partitionSpec = function() { + return this.getTypedRuleContext(PartitionSpecContext,0); +}; + +PartitionSpecLocationContext.prototype.locationSpec = function() { + return this.getTypedRuleContext(LocationSpecContext,0); +}; + +PartitionSpecLocationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterPartitionSpecLocation(this); + } +}; + +PartitionSpecLocationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitPartitionSpecLocation(this); + } +}; + +PartitionSpecLocationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitPartitionSpecLocation(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.PartitionSpecLocationContext = PartitionSpecLocationContext; + +SqlBaseParser.prototype.partitionSpecLocation = function() { + + var localctx = new PartitionSpecLocationContext(this, this._ctx, this.state); + this.enterRule(localctx, 36, SqlBaseParser.RULE_partitionSpecLocation); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1334; + this.partitionSpec(); + this.state = 1336; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.LOCATION) { + this.state = 1335; + this.locationSpec(); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function PartitionSpecContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_partitionSpec; + return this; +} + +PartitionSpecContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PartitionSpecContext.prototype.constructor = PartitionSpecContext; + +PartitionSpecContext.prototype.PARTITION = function() { + return this.getToken(SqlBaseParser.PARTITION, 0); +}; + +PartitionSpecContext.prototype.partitionVal = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(PartitionValContext); + } else { + return this.getTypedRuleContext(PartitionValContext,i); + } +}; + +PartitionSpecContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterPartitionSpec(this); + } +}; + +PartitionSpecContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitPartitionSpec(this); + } +}; + +PartitionSpecContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitPartitionSpec(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.PartitionSpecContext = PartitionSpecContext; + +SqlBaseParser.prototype.partitionSpec = function() { + + var localctx = new PartitionSpecContext(this, this._ctx, this.state); + this.enterRule(localctx, 38, SqlBaseParser.RULE_partitionSpec); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1338; + this.match(SqlBaseParser.PARTITION); + this.state = 1339; + this.match(SqlBaseParser.T__1); + this.state = 1340; + this.partitionVal(); + this.state = 1345; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 1341; + this.match(SqlBaseParser.T__3); + this.state = 1342; + this.partitionVal(); + this.state = 1347; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 1348; + this.match(SqlBaseParser.T__2); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function PartitionValContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_partitionVal; + return this; +} + +PartitionValContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PartitionValContext.prototype.constructor = PartitionValContext; + +PartitionValContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +PartitionValContext.prototype.EQ = function() { + return this.getToken(SqlBaseParser.EQ, 0); +}; + +PartitionValContext.prototype.constant = function() { + return this.getTypedRuleContext(ConstantContext,0); +}; + +PartitionValContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterPartitionVal(this); + } +}; + +PartitionValContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitPartitionVal(this); + } +}; + +PartitionValContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitPartitionVal(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.PartitionValContext = PartitionValContext; + +SqlBaseParser.prototype.partitionVal = function() { + + var localctx = new PartitionValContext(this, this._ctx, this.state); + this.enterRule(localctx, 40, SqlBaseParser.RULE_partitionVal); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1350; + this.identifier(); + this.state = 1353; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.EQ) { + this.state = 1351; + this.match(SqlBaseParser.EQ); + this.state = 1352; + this.constant(); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function NamespaceContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_namespace; + return this; +} + +NamespaceContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +NamespaceContext.prototype.constructor = NamespaceContext; + +NamespaceContext.prototype.NAMESPACE = function() { + return this.getToken(SqlBaseParser.NAMESPACE, 0); +}; + +NamespaceContext.prototype.DATABASE = function() { + return this.getToken(SqlBaseParser.DATABASE, 0); +}; + +NamespaceContext.prototype.SCHEMA = function() { + return this.getToken(SqlBaseParser.SCHEMA, 0); +}; + +NamespaceContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterNamespace(this); + } +}; + +NamespaceContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitNamespace(this); + } +}; + +NamespaceContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitNamespace(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.NamespaceContext = NamespaceContext; + +SqlBaseParser.prototype.namespace = function() { + + var localctx = new NamespaceContext(this, this._ctx, this.state); + this.enterRule(localctx, 42, SqlBaseParser.RULE_namespace); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1355; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.DATABASE || _la===SqlBaseParser.NAMESPACE || _la===SqlBaseParser.SCHEMA)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function DescribeFuncNameContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_describeFuncName; + return this; +} + +DescribeFuncNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DescribeFuncNameContext.prototype.constructor = DescribeFuncNameContext; + +DescribeFuncNameContext.prototype.qualifiedName = function() { + return this.getTypedRuleContext(QualifiedNameContext,0); +}; + +DescribeFuncNameContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +DescribeFuncNameContext.prototype.comparisonOperator = function() { + return this.getTypedRuleContext(ComparisonOperatorContext,0); +}; + +DescribeFuncNameContext.prototype.arithmeticOperator = function() { + return this.getTypedRuleContext(ArithmeticOperatorContext,0); +}; + +DescribeFuncNameContext.prototype.predicateOperator = function() { + return this.getTypedRuleContext(PredicateOperatorContext,0); +}; + +DescribeFuncNameContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDescribeFuncName(this); + } +}; + +DescribeFuncNameContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDescribeFuncName(this); + } +}; + +DescribeFuncNameContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDescribeFuncName(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.DescribeFuncNameContext = DescribeFuncNameContext; + +SqlBaseParser.prototype.describeFuncName = function() { + + var localctx = new DescribeFuncNameContext(this, this._ctx, this.state); + this.enterRule(localctx, 44, SqlBaseParser.RULE_describeFuncName); + try { + this.state = 1362; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,143,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 1357; + this.qualifiedName(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 1358; + this.match(SqlBaseParser.STRING); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 1359; + this.comparisonOperator(); + break; + + case 4: + this.enterOuterAlt(localctx, 4); + this.state = 1360; + this.arithmeticOperator(); + break; + + case 5: + this.enterOuterAlt(localctx, 5); + this.state = 1361; + this.predicateOperator(); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function DescribeColNameContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_describeColName; + this._identifier = null; // IdentifierContext + this.nameParts = []; // of IdentifierContexts + return this; +} + +DescribeColNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DescribeColNameContext.prototype.constructor = DescribeColNameContext; + +DescribeColNameContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +DescribeColNameContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDescribeColName(this); + } +}; + +DescribeColNameContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDescribeColName(this); + } +}; + +DescribeColNameContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDescribeColName(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.DescribeColNameContext = DescribeColNameContext; + +SqlBaseParser.prototype.describeColName = function() { + + var localctx = new DescribeColNameContext(this, this._ctx, this.state); + this.enterRule(localctx, 46, SqlBaseParser.RULE_describeColName); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1364; + localctx._identifier = this.identifier(); + localctx.nameParts.push(localctx._identifier); + this.state = 1369; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__4) { + this.state = 1365; + this.match(SqlBaseParser.T__4); + this.state = 1366; + localctx._identifier = this.identifier(); + localctx.nameParts.push(localctx._identifier); + this.state = 1371; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function CtesContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_ctes; + return this; +} + +CtesContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +CtesContext.prototype.constructor = CtesContext; + +CtesContext.prototype.WITH = function() { + return this.getToken(SqlBaseParser.WITH, 0); +}; + +CtesContext.prototype.namedQuery = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(NamedQueryContext); + } else { + return this.getTypedRuleContext(NamedQueryContext,i); + } +}; + +CtesContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCtes(this); + } +}; + +CtesContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCtes(this); + } +}; + +CtesContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCtes(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.CtesContext = CtesContext; + +SqlBaseParser.prototype.ctes = function() { + + var localctx = new CtesContext(this, this._ctx, this.state); + this.enterRule(localctx, 48, SqlBaseParser.RULE_ctes); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1372; + this.match(SqlBaseParser.WITH); + this.state = 1373; + this.namedQuery(); + this.state = 1378; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 1374; + this.match(SqlBaseParser.T__3); + this.state = 1375; + this.namedQuery(); + this.state = 1380; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function NamedQueryContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_namedQuery; + this.name = null; // ErrorCapturingIdentifierContext + this.columnAliases = null; // IdentifierListContext + return this; +} + +NamedQueryContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +NamedQueryContext.prototype.constructor = NamedQueryContext; + +NamedQueryContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; + +NamedQueryContext.prototype.errorCapturingIdentifier = function() { + return this.getTypedRuleContext(ErrorCapturingIdentifierContext,0); +}; + +NamedQueryContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +NamedQueryContext.prototype.identifierList = function() { + return this.getTypedRuleContext(IdentifierListContext,0); +}; + +NamedQueryContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterNamedQuery(this); + } +}; + +NamedQueryContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitNamedQuery(this); + } +}; + +NamedQueryContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitNamedQuery(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.NamedQueryContext = NamedQueryContext; + +SqlBaseParser.prototype.namedQuery = function() { + + var localctx = new NamedQueryContext(this, this._ctx, this.state); + this.enterRule(localctx, 50, SqlBaseParser.RULE_namedQuery); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1381; + localctx.name = this.errorCapturingIdentifier(); + this.state = 1383; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,146,this._ctx); + if(la_===1) { + this.state = 1382; + localctx.columnAliases = this.identifierList(); + + } + this.state = 1386; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.AS) { + this.state = 1385; + this.match(SqlBaseParser.AS); + } + + this.state = 1388; + this.match(SqlBaseParser.T__1); + this.state = 1389; + this.query(); + this.state = 1390; + this.match(SqlBaseParser.T__2); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TableProviderContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_tableProvider; + return this; +} + +TableProviderContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TableProviderContext.prototype.constructor = TableProviderContext; + +TableProviderContext.prototype.USING = function() { + return this.getToken(SqlBaseParser.USING, 0); +}; + +TableProviderContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +TableProviderContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTableProvider(this); + } +}; + +TableProviderContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTableProvider(this); + } +}; + +TableProviderContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTableProvider(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.TableProviderContext = TableProviderContext; + +SqlBaseParser.prototype.tableProvider = function() { + + var localctx = new TableProviderContext(this, this._ctx, this.state); + this.enterRule(localctx, 52, SqlBaseParser.RULE_tableProvider); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1392; + this.match(SqlBaseParser.USING); + this.state = 1393; + this.multipartIdentifier(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function CreateTableClausesContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_createTableClauses; + this.partitioning = null; // TransformListContext + this.tableProps = null; // TablePropertyListContext + return this; +} + +CreateTableClausesContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +CreateTableClausesContext.prototype.constructor = CreateTableClausesContext; + +CreateTableClausesContext.prototype.bucketSpec = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(BucketSpecContext); + } else { + return this.getTypedRuleContext(BucketSpecContext,i); + } +}; + +CreateTableClausesContext.prototype.locationSpec = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(LocationSpecContext); + } else { + return this.getTypedRuleContext(LocationSpecContext,i); + } +}; + +CreateTableClausesContext.prototype.commentSpec = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(CommentSpecContext); + } else { + return this.getTypedRuleContext(CommentSpecContext,i); + } +}; + +CreateTableClausesContext.prototype.OPTIONS = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.OPTIONS); + } else { + return this.getToken(SqlBaseParser.OPTIONS, i); + } +}; + + +CreateTableClausesContext.prototype.tablePropertyList = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TablePropertyListContext); + } else { + return this.getTypedRuleContext(TablePropertyListContext,i); + } +}; + +CreateTableClausesContext.prototype.PARTITIONED = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.PARTITIONED); + } else { + return this.getToken(SqlBaseParser.PARTITIONED, i); + } +}; + + +CreateTableClausesContext.prototype.BY = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.BY); + } else { + return this.getToken(SqlBaseParser.BY, i); + } +}; + + +CreateTableClausesContext.prototype.TBLPROPERTIES = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.TBLPROPERTIES); + } else { + return this.getToken(SqlBaseParser.TBLPROPERTIES, i); + } +}; + + +CreateTableClausesContext.prototype.transformList = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TransformListContext); + } else { + return this.getTypedRuleContext(TransformListContext,i); + } +}; + +CreateTableClausesContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCreateTableClauses(this); + } +}; + +CreateTableClausesContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCreateTableClauses(this); + } +}; + +CreateTableClausesContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCreateTableClauses(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.CreateTableClausesContext = CreateTableClausesContext; + +SqlBaseParser.prototype.createTableClauses = function() { + + var localctx = new CreateTableClausesContext(this, this._ctx, this.state); + this.enterRule(localctx, 54, SqlBaseParser.RULE_createTableClauses); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1407; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.CLUSTERED || _la===SqlBaseParser.COMMENT || ((((_la - 137)) & ~0x1f) == 0 && ((1 << (_la - 137)) & ((1 << (SqlBaseParser.LOCATION - 137)) | (1 << (SqlBaseParser.OPTIONS - 137)) | (1 << (SqlBaseParser.PARTITIONED - 137)))) !== 0) || _la===SqlBaseParser.TBLPROPERTIES) { + this.state = 1405; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.OPTIONS: + this.state = 1395; + this.match(SqlBaseParser.OPTIONS); + this.state = 1396; + this.tablePropertyList(); + break; + case SqlBaseParser.PARTITIONED: + this.state = 1397; + this.match(SqlBaseParser.PARTITIONED); + this.state = 1398; + this.match(SqlBaseParser.BY); + this.state = 1399; + localctx.partitioning = this.transformList(); + break; + case SqlBaseParser.CLUSTERED: + this.state = 1400; + this.bucketSpec(); + break; + case SqlBaseParser.LOCATION: + this.state = 1401; + this.locationSpec(); + break; + case SqlBaseParser.COMMENT: + this.state = 1402; + this.commentSpec(); + break; + case SqlBaseParser.TBLPROPERTIES: + this.state = 1403; + this.match(SqlBaseParser.TBLPROPERTIES); + this.state = 1404; + localctx.tableProps = this.tablePropertyList(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 1409; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TablePropertyListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_tablePropertyList; + return this; +} + +TablePropertyListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TablePropertyListContext.prototype.constructor = TablePropertyListContext; + +TablePropertyListContext.prototype.tableProperty = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TablePropertyContext); + } else { + return this.getTypedRuleContext(TablePropertyContext,i); + } +}; + +TablePropertyListContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTablePropertyList(this); + } +}; + +TablePropertyListContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTablePropertyList(this); + } +}; + +TablePropertyListContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTablePropertyList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.TablePropertyListContext = TablePropertyListContext; + +SqlBaseParser.prototype.tablePropertyList = function() { + + var localctx = new TablePropertyListContext(this, this._ctx, this.state); + this.enterRule(localctx, 56, SqlBaseParser.RULE_tablePropertyList); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1410; + this.match(SqlBaseParser.T__1); + this.state = 1411; + this.tableProperty(); + this.state = 1416; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 1412; + this.match(SqlBaseParser.T__3); + this.state = 1413; + this.tableProperty(); + this.state = 1418; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 1419; + this.match(SqlBaseParser.T__2); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TablePropertyContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_tableProperty; + this.key = null; // TablePropertyKeyContext + this.value = null; // TablePropertyValueContext + return this; +} + +TablePropertyContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TablePropertyContext.prototype.constructor = TablePropertyContext; + +TablePropertyContext.prototype.tablePropertyKey = function() { + return this.getTypedRuleContext(TablePropertyKeyContext,0); +}; + +TablePropertyContext.prototype.tablePropertyValue = function() { + return this.getTypedRuleContext(TablePropertyValueContext,0); +}; + +TablePropertyContext.prototype.EQ = function() { + return this.getToken(SqlBaseParser.EQ, 0); +}; + +TablePropertyContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTableProperty(this); + } +}; + +TablePropertyContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTableProperty(this); + } +}; + +TablePropertyContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTableProperty(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.TablePropertyContext = TablePropertyContext; + +SqlBaseParser.prototype.tableProperty = function() { + + var localctx = new TablePropertyContext(this, this._ctx, this.state); + this.enterRule(localctx, 58, SqlBaseParser.RULE_tableProperty); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1421; + localctx.key = this.tablePropertyKey(); + this.state = 1426; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.FALSE || _la===SqlBaseParser.TRUE || _la===SqlBaseParser.EQ || ((((_la - 279)) & ~0x1f) == 0 && ((1 << (_la - 279)) & ((1 << (SqlBaseParser.STRING - 279)) | (1 << (SqlBaseParser.INTEGER_VALUE - 279)) | (1 << (SqlBaseParser.DECIMAL_VALUE - 279)))) !== 0)) { + this.state = 1423; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.EQ) { + this.state = 1422; + this.match(SqlBaseParser.EQ); + } + + this.state = 1425; + localctx.value = this.tablePropertyValue(); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TablePropertyKeyContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_tablePropertyKey; + return this; +} + +TablePropertyKeyContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TablePropertyKeyContext.prototype.constructor = TablePropertyKeyContext; + +TablePropertyKeyContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +TablePropertyKeyContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +TablePropertyKeyContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTablePropertyKey(this); + } +}; + +TablePropertyKeyContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTablePropertyKey(this); + } +}; + +TablePropertyKeyContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTablePropertyKey(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.TablePropertyKeyContext = TablePropertyKeyContext; + +SqlBaseParser.prototype.tablePropertyKey = function() { + + var localctx = new TablePropertyKeyContext(this, this._ctx, this.state); + this.enterRule(localctx, 60, SqlBaseParser.RULE_tablePropertyKey); + var _la = 0; // Token type + try { + this.state = 1437; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,154,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 1428; + this.identifier(); + this.state = 1433; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__4) { + this.state = 1429; + this.match(SqlBaseParser.T__4); + this.state = 1430; + this.identifier(); + this.state = 1435; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 1436; + this.match(SqlBaseParser.STRING); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TablePropertyValueContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_tablePropertyValue; + return this; +} + +TablePropertyValueContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TablePropertyValueContext.prototype.constructor = TablePropertyValueContext; + +TablePropertyValueContext.prototype.INTEGER_VALUE = function() { + return this.getToken(SqlBaseParser.INTEGER_VALUE, 0); +}; + +TablePropertyValueContext.prototype.DECIMAL_VALUE = function() { + return this.getToken(SqlBaseParser.DECIMAL_VALUE, 0); +}; + +TablePropertyValueContext.prototype.booleanValue = function() { + return this.getTypedRuleContext(BooleanValueContext,0); +}; + +TablePropertyValueContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +TablePropertyValueContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTablePropertyValue(this); + } +}; + +TablePropertyValueContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTablePropertyValue(this); + } +}; + +TablePropertyValueContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTablePropertyValue(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.TablePropertyValueContext = TablePropertyValueContext; + +SqlBaseParser.prototype.tablePropertyValue = function() { + + var localctx = new TablePropertyValueContext(this, this._ctx, this.state); + this.enterRule(localctx, 62, SqlBaseParser.RULE_tablePropertyValue); + try { + this.state = 1443; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.INTEGER_VALUE: + this.enterOuterAlt(localctx, 1); + this.state = 1439; + this.match(SqlBaseParser.INTEGER_VALUE); + break; + case SqlBaseParser.DECIMAL_VALUE: + this.enterOuterAlt(localctx, 2); + this.state = 1440; + this.match(SqlBaseParser.DECIMAL_VALUE); + break; + case SqlBaseParser.FALSE: + case SqlBaseParser.TRUE: + this.enterOuterAlt(localctx, 3); + this.state = 1441; + this.booleanValue(); + break; + case SqlBaseParser.STRING: + this.enterOuterAlt(localctx, 4); + this.state = 1442; + this.match(SqlBaseParser.STRING); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ConstantListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_constantList; + return this; +} + +ConstantListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ConstantListContext.prototype.constructor = ConstantListContext; + +ConstantListContext.prototype.constant = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ConstantContext); + } else { + return this.getTypedRuleContext(ConstantContext,i); + } +}; + +ConstantListContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterConstantList(this); + } +}; + +ConstantListContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitConstantList(this); + } +}; + +ConstantListContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitConstantList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ConstantListContext = ConstantListContext; + +SqlBaseParser.prototype.constantList = function() { + + var localctx = new ConstantListContext(this, this._ctx, this.state); + this.enterRule(localctx, 64, SqlBaseParser.RULE_constantList); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1445; + this.match(SqlBaseParser.T__1); + this.state = 1446; + this.constant(); + this.state = 1451; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 1447; + this.match(SqlBaseParser.T__3); + this.state = 1448; + this.constant(); + this.state = 1453; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 1454; + this.match(SqlBaseParser.T__2); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function NestedConstantListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_nestedConstantList; + return this; +} + +NestedConstantListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +NestedConstantListContext.prototype.constructor = NestedConstantListContext; + +NestedConstantListContext.prototype.constantList = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ConstantListContext); + } else { + return this.getTypedRuleContext(ConstantListContext,i); + } +}; + +NestedConstantListContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterNestedConstantList(this); + } +}; + +NestedConstantListContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitNestedConstantList(this); + } +}; + +NestedConstantListContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitNestedConstantList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.NestedConstantListContext = NestedConstantListContext; + +SqlBaseParser.prototype.nestedConstantList = function() { + + var localctx = new NestedConstantListContext(this, this._ctx, this.state); + this.enterRule(localctx, 66, SqlBaseParser.RULE_nestedConstantList); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1456; + this.match(SqlBaseParser.T__1); + this.state = 1457; + this.constantList(); + this.state = 1462; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 1458; + this.match(SqlBaseParser.T__3); + this.state = 1459; + this.constantList(); + this.state = 1464; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 1465; + this.match(SqlBaseParser.T__2); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function CreateFileFormatContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_createFileFormat; + return this; +} + +CreateFileFormatContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +CreateFileFormatContext.prototype.constructor = CreateFileFormatContext; + +CreateFileFormatContext.prototype.STORED = function() { + return this.getToken(SqlBaseParser.STORED, 0); +}; + +CreateFileFormatContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +CreateFileFormatContext.prototype.fileFormat = function() { + return this.getTypedRuleContext(FileFormatContext,0); +}; + +CreateFileFormatContext.prototype.BY = function() { + return this.getToken(SqlBaseParser.BY, 0); +}; + +CreateFileFormatContext.prototype.storageHandler = function() { + return this.getTypedRuleContext(StorageHandlerContext,0); +}; + +CreateFileFormatContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCreateFileFormat(this); + } +}; + +CreateFileFormatContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCreateFileFormat(this); + } +}; + +CreateFileFormatContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCreateFileFormat(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.CreateFileFormatContext = CreateFileFormatContext; + +SqlBaseParser.prototype.createFileFormat = function() { + + var localctx = new CreateFileFormatContext(this, this._ctx, this.state); + this.enterRule(localctx, 68, SqlBaseParser.RULE_createFileFormat); + try { + this.state = 1473; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,158,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 1467; + this.match(SqlBaseParser.STORED); + this.state = 1468; + this.match(SqlBaseParser.AS); + this.state = 1469; + this.fileFormat(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 1470; + this.match(SqlBaseParser.STORED); + this.state = 1471; + this.match(SqlBaseParser.BY); + this.state = 1472; + this.storageHandler(); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function FileFormatContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_fileFormat; + return this; +} + +FileFormatContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +FileFormatContext.prototype.constructor = FileFormatContext; + + + +FileFormatContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function TableFileFormatContext(parser, ctx) { + FileFormatContext.call(this, parser); + this.inFmt = null; // Token; + this.outFmt = null; // Token; + FileFormatContext.prototype.copyFrom.call(this, ctx); + return this; +} + +TableFileFormatContext.prototype = Object.create(FileFormatContext.prototype); +TableFileFormatContext.prototype.constructor = TableFileFormatContext; + +SqlBaseParser.TableFileFormatContext = TableFileFormatContext; + +TableFileFormatContext.prototype.INPUTFORMAT = function() { + return this.getToken(SqlBaseParser.INPUTFORMAT, 0); +}; + +TableFileFormatContext.prototype.OUTPUTFORMAT = function() { + return this.getToken(SqlBaseParser.OUTPUTFORMAT, 0); +}; + +TableFileFormatContext.prototype.STRING = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.STRING); + } else { + return this.getToken(SqlBaseParser.STRING, i); + } +}; + +TableFileFormatContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTableFileFormat(this); + } +}; + +TableFileFormatContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTableFileFormat(this); + } +}; + +TableFileFormatContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTableFileFormat(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function GenericFileFormatContext(parser, ctx) { + FileFormatContext.call(this, parser); + FileFormatContext.prototype.copyFrom.call(this, ctx); + return this; +} + +GenericFileFormatContext.prototype = Object.create(FileFormatContext.prototype); +GenericFileFormatContext.prototype.constructor = GenericFileFormatContext; + +SqlBaseParser.GenericFileFormatContext = GenericFileFormatContext; + +GenericFileFormatContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; +GenericFileFormatContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterGenericFileFormat(this); + } +}; + +GenericFileFormatContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitGenericFileFormat(this); + } +}; + +GenericFileFormatContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitGenericFileFormat(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.FileFormatContext = FileFormatContext; + +SqlBaseParser.prototype.fileFormat = function() { + + var localctx = new FileFormatContext(this, this._ctx, this.state); + this.enterRule(localctx, 70, SqlBaseParser.RULE_fileFormat); + try { + this.state = 1480; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,159,this._ctx); + switch(la_) { + case 1: + localctx = new TableFileFormatContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 1475; + this.match(SqlBaseParser.INPUTFORMAT); + this.state = 1476; + localctx.inFmt = this.match(SqlBaseParser.STRING); + this.state = 1477; + this.match(SqlBaseParser.OUTPUTFORMAT); + this.state = 1478; + localctx.outFmt = this.match(SqlBaseParser.STRING); + break; + + case 2: + localctx = new GenericFileFormatContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 1479; + this.identifier(); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function StorageHandlerContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_storageHandler; + return this; +} + +StorageHandlerContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +StorageHandlerContext.prototype.constructor = StorageHandlerContext; + +StorageHandlerContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +StorageHandlerContext.prototype.WITH = function() { + return this.getToken(SqlBaseParser.WITH, 0); +}; + +StorageHandlerContext.prototype.SERDEPROPERTIES = function() { + return this.getToken(SqlBaseParser.SERDEPROPERTIES, 0); +}; + +StorageHandlerContext.prototype.tablePropertyList = function() { + return this.getTypedRuleContext(TablePropertyListContext,0); +}; + +StorageHandlerContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterStorageHandler(this); + } +}; + +StorageHandlerContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitStorageHandler(this); + } +}; + +StorageHandlerContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitStorageHandler(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.StorageHandlerContext = StorageHandlerContext; + +SqlBaseParser.prototype.storageHandler = function() { + + var localctx = new StorageHandlerContext(this, this._ctx, this.state); + this.enterRule(localctx, 72, SqlBaseParser.RULE_storageHandler); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1482; + this.match(SqlBaseParser.STRING); + this.state = 1486; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,160,this._ctx); + if(la_===1) { + this.state = 1483; + this.match(SqlBaseParser.WITH); + this.state = 1484; + this.match(SqlBaseParser.SERDEPROPERTIES); + this.state = 1485; + this.tablePropertyList(); + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ResourceContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_resource; + return this; +} + +ResourceContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ResourceContext.prototype.constructor = ResourceContext; + +ResourceContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +ResourceContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +ResourceContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterResource(this); + } +}; + +ResourceContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitResource(this); + } +}; + +ResourceContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitResource(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ResourceContext = ResourceContext; + +SqlBaseParser.prototype.resource = function() { + + var localctx = new ResourceContext(this, this._ctx, this.state); + this.enterRule(localctx, 74, SqlBaseParser.RULE_resource); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1488; + this.identifier(); + this.state = 1489; + this.match(SqlBaseParser.STRING); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function DmlStatementNoWithContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_dmlStatementNoWith; + return this; +} + +DmlStatementNoWithContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DmlStatementNoWithContext.prototype.constructor = DmlStatementNoWithContext; + + + +DmlStatementNoWithContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function DeleteFromTableContext(parser, ctx) { + DmlStatementNoWithContext.call(this, parser); + DmlStatementNoWithContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DeleteFromTableContext.prototype = Object.create(DmlStatementNoWithContext.prototype); +DeleteFromTableContext.prototype.constructor = DeleteFromTableContext; + +SqlBaseParser.DeleteFromTableContext = DeleteFromTableContext; + +DeleteFromTableContext.prototype.DELETE = function() { + return this.getToken(SqlBaseParser.DELETE, 0); +}; + +DeleteFromTableContext.prototype.FROM = function() { + return this.getToken(SqlBaseParser.FROM, 0); +}; + +DeleteFromTableContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +DeleteFromTableContext.prototype.tableAlias = function() { + return this.getTypedRuleContext(TableAliasContext,0); +}; + +DeleteFromTableContext.prototype.whereClause = function() { + return this.getTypedRuleContext(WhereClauseContext,0); +}; +DeleteFromTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDeleteFromTable(this); + } +}; + +DeleteFromTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDeleteFromTable(this); + } +}; + +DeleteFromTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDeleteFromTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SingleInsertQueryContext(parser, ctx) { + DmlStatementNoWithContext.call(this, parser); + DmlStatementNoWithContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SingleInsertQueryContext.prototype = Object.create(DmlStatementNoWithContext.prototype); +SingleInsertQueryContext.prototype.constructor = SingleInsertQueryContext; + +SqlBaseParser.SingleInsertQueryContext = SingleInsertQueryContext; + +SingleInsertQueryContext.prototype.insertInto = function() { + return this.getTypedRuleContext(InsertIntoContext,0); +}; + +SingleInsertQueryContext.prototype.queryTerm = function() { + return this.getTypedRuleContext(QueryTermContext,0); +}; + +SingleInsertQueryContext.prototype.queryOrganization = function() { + return this.getTypedRuleContext(QueryOrganizationContext,0); +}; +SingleInsertQueryContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSingleInsertQuery(this); + } +}; + +SingleInsertQueryContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSingleInsertQuery(this); + } +}; + +SingleInsertQueryContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSingleInsertQuery(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function MultiInsertQueryContext(parser, ctx) { + DmlStatementNoWithContext.call(this, parser); + DmlStatementNoWithContext.prototype.copyFrom.call(this, ctx); + return this; +} + +MultiInsertQueryContext.prototype = Object.create(DmlStatementNoWithContext.prototype); +MultiInsertQueryContext.prototype.constructor = MultiInsertQueryContext; + +SqlBaseParser.MultiInsertQueryContext = MultiInsertQueryContext; + +MultiInsertQueryContext.prototype.fromClause = function() { + return this.getTypedRuleContext(FromClauseContext,0); +}; + +MultiInsertQueryContext.prototype.multiInsertQueryBody = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(MultiInsertQueryBodyContext); + } else { + return this.getTypedRuleContext(MultiInsertQueryBodyContext,i); + } +}; +MultiInsertQueryContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterMultiInsertQuery(this); + } +}; + +MultiInsertQueryContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitMultiInsertQuery(this); + } +}; + +MultiInsertQueryContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitMultiInsertQuery(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function UpdateTableContext(parser, ctx) { + DmlStatementNoWithContext.call(this, parser); + DmlStatementNoWithContext.prototype.copyFrom.call(this, ctx); + return this; +} + +UpdateTableContext.prototype = Object.create(DmlStatementNoWithContext.prototype); +UpdateTableContext.prototype.constructor = UpdateTableContext; + +SqlBaseParser.UpdateTableContext = UpdateTableContext; + +UpdateTableContext.prototype.UPDATE = function() { + return this.getToken(SqlBaseParser.UPDATE, 0); +}; + +UpdateTableContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +UpdateTableContext.prototype.tableAlias = function() { + return this.getTypedRuleContext(TableAliasContext,0); +}; + +UpdateTableContext.prototype.setClause = function() { + return this.getTypedRuleContext(SetClauseContext,0); +}; + +UpdateTableContext.prototype.whereClause = function() { + return this.getTypedRuleContext(WhereClauseContext,0); +}; +UpdateTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterUpdateTable(this); + } +}; + +UpdateTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitUpdateTable(this); + } +}; + +UpdateTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitUpdateTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function MergeIntoTableContext(parser, ctx) { + DmlStatementNoWithContext.call(this, parser); + this.target = null; // MultipartIdentifierContext; + this.targetAlias = null; // TableAliasContext; + this.source = null; // MultipartIdentifierContext; + this.sourceQuery = null; // QueryContext; + this.sourceAlias = null; // TableAliasContext; + this.mergeCondition = null; // BooleanExpressionContext; + DmlStatementNoWithContext.prototype.copyFrom.call(this, ctx); + return this; +} + +MergeIntoTableContext.prototype = Object.create(DmlStatementNoWithContext.prototype); +MergeIntoTableContext.prototype.constructor = MergeIntoTableContext; + +SqlBaseParser.MergeIntoTableContext = MergeIntoTableContext; + +MergeIntoTableContext.prototype.MERGE = function() { + return this.getToken(SqlBaseParser.MERGE, 0); +}; + +MergeIntoTableContext.prototype.INTO = function() { + return this.getToken(SqlBaseParser.INTO, 0); +}; + +MergeIntoTableContext.prototype.USING = function() { + return this.getToken(SqlBaseParser.USING, 0); +}; + +MergeIntoTableContext.prototype.ON = function() { + return this.getToken(SqlBaseParser.ON, 0); +}; + +MergeIntoTableContext.prototype.multipartIdentifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(MultipartIdentifierContext); + } else { + return this.getTypedRuleContext(MultipartIdentifierContext,i); + } +}; + +MergeIntoTableContext.prototype.tableAlias = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TableAliasContext); + } else { + return this.getTypedRuleContext(TableAliasContext,i); + } +}; + +MergeIntoTableContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; + +MergeIntoTableContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; + +MergeIntoTableContext.prototype.matchedClause = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(MatchedClauseContext); + } else { + return this.getTypedRuleContext(MatchedClauseContext,i); + } +}; + +MergeIntoTableContext.prototype.notMatchedClause = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(NotMatchedClauseContext); + } else { + return this.getTypedRuleContext(NotMatchedClauseContext,i); + } +}; +MergeIntoTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterMergeIntoTable(this); + } +}; + +MergeIntoTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitMergeIntoTable(this); + } +}; + +MergeIntoTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitMergeIntoTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.DmlStatementNoWithContext = DmlStatementNoWithContext; + +SqlBaseParser.prototype.dmlStatementNoWith = function() { + + var localctx = new DmlStatementNoWithContext(this, this._ctx, this.state); + this.enterRule(localctx, 76, SqlBaseParser.RULE_dmlStatementNoWith); + var _la = 0; // Token type + try { + this.state = 1542; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.INSERT: + localctx = new SingleInsertQueryContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 1491; + this.insertInto(); + this.state = 1492; + this.queryTerm(0); + this.state = 1493; + this.queryOrganization(); + break; + case SqlBaseParser.FROM: + localctx = new MultiInsertQueryContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 1495; + this.fromClause(); + this.state = 1497; + this._errHandler.sync(this); + _la = this._input.LA(1); + do { + this.state = 1496; + this.multiInsertQueryBody(); + this.state = 1499; + this._errHandler.sync(this); + _la = this._input.LA(1); + } while(_la===SqlBaseParser.INSERT); + break; + case SqlBaseParser.DELETE: + localctx = new DeleteFromTableContext(this, localctx); + this.enterOuterAlt(localctx, 3); + this.state = 1501; + this.match(SqlBaseParser.DELETE); + this.state = 1502; + this.match(SqlBaseParser.FROM); + this.state = 1503; + this.multipartIdentifier(); + this.state = 1504; + this.tableAlias(); + this.state = 1506; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.WHERE) { + this.state = 1505; + this.whereClause(); + } + + break; + case SqlBaseParser.UPDATE: + localctx = new UpdateTableContext(this, localctx); + this.enterOuterAlt(localctx, 4); + this.state = 1508; + this.match(SqlBaseParser.UPDATE); + this.state = 1509; + this.multipartIdentifier(); + this.state = 1510; + this.tableAlias(); + this.state = 1511; + this.setClause(); + this.state = 1513; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.WHERE) { + this.state = 1512; + this.whereClause(); + } + + break; + case SqlBaseParser.MERGE: + localctx = new MergeIntoTableContext(this, localctx); + this.enterOuterAlt(localctx, 5); + this.state = 1515; + this.match(SqlBaseParser.MERGE); + this.state = 1516; + this.match(SqlBaseParser.INTO); + this.state = 1517; + localctx.target = this.multipartIdentifier(); + this.state = 1518; + localctx.targetAlias = this.tableAlias(); + this.state = 1519; + this.match(SqlBaseParser.USING); + this.state = 1525; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,164,this._ctx); + switch(la_) { + case 1: + this.state = 1520; + localctx.source = this.multipartIdentifier(); + break; + + case 2: + this.state = 1521; + this.match(SqlBaseParser.T__1); + this.state = 1522; + localctx.sourceQuery = this.query(); + this.state = 1523; + this.match(SqlBaseParser.T__2); + break; + + } + this.state = 1527; + localctx.sourceAlias = this.tableAlias(); + this.state = 1528; + this.match(SqlBaseParser.ON); + this.state = 1529; + localctx.mergeCondition = this.booleanExpression(0); + this.state = 1533; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,165,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 1530; + this.matchedClause(); + } + this.state = 1535; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,165,this._ctx); + } + + this.state = 1539; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.WHEN) { + this.state = 1536; + this.notMatchedClause(); + this.state = 1541; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function QueryOrganizationContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_queryOrganization; + this._sortItem = null; // SortItemContext + this.order = []; // of SortItemContexts + this._expression = null; // ExpressionContext + this.clusterBy = []; // of ExpressionContexts + this.distributeBy = []; // of ExpressionContexts + this.sort = []; // of SortItemContexts + this.limit = null; // ExpressionContext + return this; +} + +QueryOrganizationContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QueryOrganizationContext.prototype.constructor = QueryOrganizationContext; + +QueryOrganizationContext.prototype.ORDER = function() { + return this.getToken(SqlBaseParser.ORDER, 0); +}; + +QueryOrganizationContext.prototype.BY = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.BY); + } else { + return this.getToken(SqlBaseParser.BY, i); + } +}; + + +QueryOrganizationContext.prototype.CLUSTER = function() { + return this.getToken(SqlBaseParser.CLUSTER, 0); +}; + +QueryOrganizationContext.prototype.DISTRIBUTE = function() { + return this.getToken(SqlBaseParser.DISTRIBUTE, 0); +}; + +QueryOrganizationContext.prototype.SORT = function() { + return this.getToken(SqlBaseParser.SORT, 0); +}; + +QueryOrganizationContext.prototype.windowClause = function() { + return this.getTypedRuleContext(WindowClauseContext,0); +}; + +QueryOrganizationContext.prototype.LIMIT = function() { + return this.getToken(SqlBaseParser.LIMIT, 0); +}; + +QueryOrganizationContext.prototype.sortItem = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(SortItemContext); + } else { + return this.getTypedRuleContext(SortItemContext,i); + } +}; + +QueryOrganizationContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +QueryOrganizationContext.prototype.ALL = function() { + return this.getToken(SqlBaseParser.ALL, 0); +}; + +QueryOrganizationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterQueryOrganization(this); + } +}; + +QueryOrganizationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitQueryOrganization(this); + } +}; + +QueryOrganizationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitQueryOrganization(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.QueryOrganizationContext = QueryOrganizationContext; + +SqlBaseParser.prototype.queryOrganization = function() { + + var localctx = new QueryOrganizationContext(this, this._ctx, this.state); + this.enterRule(localctx, 78, SqlBaseParser.RULE_queryOrganization); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1554; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,169,this._ctx); + if(la_===1) { + this.state = 1544; + this.match(SqlBaseParser.ORDER); + this.state = 1545; + this.match(SqlBaseParser.BY); + this.state = 1546; + localctx._sortItem = this.sortItem(); + localctx.order.push(localctx._sortItem); + this.state = 1551; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,168,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 1547; + this.match(SqlBaseParser.T__3); + this.state = 1548; + localctx._sortItem = this.sortItem(); + localctx.order.push(localctx._sortItem); + } + this.state = 1553; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,168,this._ctx); + } + + + } + this.state = 1566; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,171,this._ctx); + if(la_===1) { + this.state = 1556; + this.match(SqlBaseParser.CLUSTER); + this.state = 1557; + this.match(SqlBaseParser.BY); + this.state = 1558; + localctx._expression = this.expression(); + localctx.clusterBy.push(localctx._expression); + this.state = 1563; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,170,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 1559; + this.match(SqlBaseParser.T__3); + this.state = 1560; + localctx._expression = this.expression(); + localctx.clusterBy.push(localctx._expression); + } + this.state = 1565; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,170,this._ctx); + } + + + } + this.state = 1578; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,173,this._ctx); + if(la_===1) { + this.state = 1568; + this.match(SqlBaseParser.DISTRIBUTE); + this.state = 1569; + this.match(SqlBaseParser.BY); + this.state = 1570; + localctx._expression = this.expression(); + localctx.distributeBy.push(localctx._expression); + this.state = 1575; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,172,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 1571; + this.match(SqlBaseParser.T__3); + this.state = 1572; + localctx._expression = this.expression(); + localctx.distributeBy.push(localctx._expression); + } + this.state = 1577; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,172,this._ctx); + } + + + } + this.state = 1590; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,175,this._ctx); + if(la_===1) { + this.state = 1580; + this.match(SqlBaseParser.SORT); + this.state = 1581; + this.match(SqlBaseParser.BY); + this.state = 1582; + localctx._sortItem = this.sortItem(); + localctx.sort.push(localctx._sortItem); + this.state = 1587; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,174,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 1583; + this.match(SqlBaseParser.T__3); + this.state = 1584; + localctx._sortItem = this.sortItem(); + localctx.sort.push(localctx._sortItem); + } + this.state = 1589; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,174,this._ctx); + } + + + } + this.state = 1593; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,176,this._ctx); + if(la_===1) { + this.state = 1592; + this.windowClause(); + + } + this.state = 1600; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,178,this._ctx); + if(la_===1) { + this.state = 1595; + this.match(SqlBaseParser.LIMIT); + this.state = 1598; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,177,this._ctx); + switch(la_) { + case 1: + this.state = 1596; + this.match(SqlBaseParser.ALL); + break; + + case 2: + this.state = 1597; + localctx.limit = this.expression(); + break; + + } + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function MultiInsertQueryBodyContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_multiInsertQueryBody; + return this; +} + +MultiInsertQueryBodyContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +MultiInsertQueryBodyContext.prototype.constructor = MultiInsertQueryBodyContext; + +MultiInsertQueryBodyContext.prototype.insertInto = function() { + return this.getTypedRuleContext(InsertIntoContext,0); +}; + +MultiInsertQueryBodyContext.prototype.fromStatementBody = function() { + return this.getTypedRuleContext(FromStatementBodyContext,0); +}; + +MultiInsertQueryBodyContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterMultiInsertQueryBody(this); + } +}; + +MultiInsertQueryBodyContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitMultiInsertQueryBody(this); + } +}; + +MultiInsertQueryBodyContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitMultiInsertQueryBody(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.MultiInsertQueryBodyContext = MultiInsertQueryBodyContext; + +SqlBaseParser.prototype.multiInsertQueryBody = function() { + + var localctx = new MultiInsertQueryBodyContext(this, this._ctx, this.state); + this.enterRule(localctx, 80, SqlBaseParser.RULE_multiInsertQueryBody); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1602; + this.insertInto(); + this.state = 1603; + this.fromStatementBody(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function QueryTermContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_queryTerm; + return this; +} + +QueryTermContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QueryTermContext.prototype.constructor = QueryTermContext; + + + +QueryTermContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + +function QueryTermDefaultContext(parser, ctx) { + QueryTermContext.call(this, parser); + QueryTermContext.prototype.copyFrom.call(this, ctx); + return this; +} + +QueryTermDefaultContext.prototype = Object.create(QueryTermContext.prototype); +QueryTermDefaultContext.prototype.constructor = QueryTermDefaultContext; + +SqlBaseParser.QueryTermDefaultContext = QueryTermDefaultContext; + +QueryTermDefaultContext.prototype.queryPrimary = function() { + return this.getTypedRuleContext(QueryPrimaryContext,0); +}; +QueryTermDefaultContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterQueryTermDefault(this); + } +}; + +QueryTermDefaultContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitQueryTermDefault(this); + } +}; + +QueryTermDefaultContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitQueryTermDefault(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SetOperationContext(parser, ctx) { + QueryTermContext.call(this, parser); + this.left = null; // QueryTermContext; + this.operator = null; // Token; + this.right = null; // QueryTermContext; + QueryTermContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SetOperationContext.prototype = Object.create(QueryTermContext.prototype); +SetOperationContext.prototype.constructor = SetOperationContext; + +SqlBaseParser.SetOperationContext = SetOperationContext; + +SetOperationContext.prototype.queryTerm = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(QueryTermContext); + } else { + return this.getTypedRuleContext(QueryTermContext,i); + } +}; + +SetOperationContext.prototype.INTERSECT = function() { + return this.getToken(SqlBaseParser.INTERSECT, 0); +}; + +SetOperationContext.prototype.UNION = function() { + return this.getToken(SqlBaseParser.UNION, 0); +}; + +SetOperationContext.prototype.EXCEPT = function() { + return this.getToken(SqlBaseParser.EXCEPT, 0); +}; + +SetOperationContext.prototype.SETMINUS = function() { + return this.getToken(SqlBaseParser.SETMINUS, 0); +}; + +SetOperationContext.prototype.setQuantifier = function() { + return this.getTypedRuleContext(SetQuantifierContext,0); +}; +SetOperationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSetOperation(this); + } +}; + +SetOperationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSetOperation(this); + } +}; + +SetOperationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSetOperation(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.prototype.queryTerm = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new QueryTermContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 82; + this.enterRecursionRule(localctx, 82, SqlBaseParser.RULE_queryTerm, _p); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + localctx = new QueryTermDefaultContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + + this.state = 1606; + this.queryPrimary(); + this._ctx.stop = this._input.LT(-1); + this.state = 1631; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,183,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + if(this._parseListeners!==null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + this.state = 1629; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,182,this._ctx); + switch(la_) { + case 1: + localctx = new SetOperationContext(this, new QueryTermContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, SqlBaseParser.RULE_queryTerm); + this.state = 1608; + if (!( this.precpred(this._ctx, 3))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 3)"); + } + this.state = 1609; + if (!( legacy_setops_precedence_enbled)) { + throw new antlr4.error.FailedPredicateException(this, "legacy_setops_precedence_enbled"); + } + this.state = 1610; + localctx.operator = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.EXCEPT || _la===SqlBaseParser.INTERSECT || _la===SqlBaseParser.SETMINUS || _la===SqlBaseParser.UNION)) { + localctx.operator = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 1612; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.ALL || _la===SqlBaseParser.DISTINCT) { + this.state = 1611; + this.setQuantifier(); + } + + this.state = 1614; + localctx.right = this.queryTerm(4); + break; + + case 2: + localctx = new SetOperationContext(this, new QueryTermContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, SqlBaseParser.RULE_queryTerm); + this.state = 1615; + if (!( this.precpred(this._ctx, 2))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); + } + this.state = 1616; + if (!( !legacy_setops_precedence_enbled)) { + throw new antlr4.error.FailedPredicateException(this, "!legacy_setops_precedence_enbled"); + } + this.state = 1617; + localctx.operator = this.match(SqlBaseParser.INTERSECT); + this.state = 1619; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.ALL || _la===SqlBaseParser.DISTINCT) { + this.state = 1618; + this.setQuantifier(); + } + + this.state = 1621; + localctx.right = this.queryTerm(3); + break; + + case 3: + localctx = new SetOperationContext(this, new QueryTermContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, SqlBaseParser.RULE_queryTerm); + this.state = 1622; + if (!( this.precpred(this._ctx, 1))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); + } + this.state = 1623; + if (!( !legacy_setops_precedence_enbled)) { + throw new antlr4.error.FailedPredicateException(this, "!legacy_setops_precedence_enbled"); + } + this.state = 1624; + localctx.operator = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.EXCEPT || _la===SqlBaseParser.SETMINUS || _la===SqlBaseParser.UNION)) { + localctx.operator = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 1626; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.ALL || _la===SqlBaseParser.DISTINCT) { + this.state = 1625; + this.setQuantifier(); + } + + this.state = 1628; + localctx.right = this.queryTerm(2); + break; + + } + } + this.state = 1633; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,183,this._ctx); + } + + } catch( error) { + if(error instanceof antlr4.error.RecognitionException) { + localctx.exception = error; + this._errHandler.reportError(this, error); + this._errHandler.recover(this, error); + } else { + throw error; + } + } finally { + this.unrollRecursionContexts(_parentctx) + } + return localctx; +}; + + +function QueryPrimaryContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_queryPrimary; + return this; +} + +QueryPrimaryContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QueryPrimaryContext.prototype.constructor = QueryPrimaryContext; + + + +QueryPrimaryContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function SubqueryContext(parser, ctx) { + QueryPrimaryContext.call(this, parser); + QueryPrimaryContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SubqueryContext.prototype = Object.create(QueryPrimaryContext.prototype); +SubqueryContext.prototype.constructor = SubqueryContext; + +SqlBaseParser.SubqueryContext = SubqueryContext; + +SubqueryContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; +SubqueryContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSubquery(this); + } +}; + +SubqueryContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSubquery(this); + } +}; + +SubqueryContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSubquery(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function QueryPrimaryDefaultContext(parser, ctx) { + QueryPrimaryContext.call(this, parser); + QueryPrimaryContext.prototype.copyFrom.call(this, ctx); + return this; +} + +QueryPrimaryDefaultContext.prototype = Object.create(QueryPrimaryContext.prototype); +QueryPrimaryDefaultContext.prototype.constructor = QueryPrimaryDefaultContext; + +SqlBaseParser.QueryPrimaryDefaultContext = QueryPrimaryDefaultContext; + +QueryPrimaryDefaultContext.prototype.querySpecification = function() { + return this.getTypedRuleContext(QuerySpecificationContext,0); +}; +QueryPrimaryDefaultContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterQueryPrimaryDefault(this); + } +}; + +QueryPrimaryDefaultContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitQueryPrimaryDefault(this); + } +}; + +QueryPrimaryDefaultContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitQueryPrimaryDefault(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function InlineTableDefault1Context(parser, ctx) { + QueryPrimaryContext.call(this, parser); + QueryPrimaryContext.prototype.copyFrom.call(this, ctx); + return this; +} + +InlineTableDefault1Context.prototype = Object.create(QueryPrimaryContext.prototype); +InlineTableDefault1Context.prototype.constructor = InlineTableDefault1Context; + +SqlBaseParser.InlineTableDefault1Context = InlineTableDefault1Context; + +InlineTableDefault1Context.prototype.inlineTable = function() { + return this.getTypedRuleContext(InlineTableContext,0); +}; +InlineTableDefault1Context.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterInlineTableDefault1(this); + } +}; + +InlineTableDefault1Context.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitInlineTableDefault1(this); + } +}; + +InlineTableDefault1Context.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitInlineTableDefault1(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function FromStmtContext(parser, ctx) { + QueryPrimaryContext.call(this, parser); + QueryPrimaryContext.prototype.copyFrom.call(this, ctx); + return this; +} + +FromStmtContext.prototype = Object.create(QueryPrimaryContext.prototype); +FromStmtContext.prototype.constructor = FromStmtContext; + +SqlBaseParser.FromStmtContext = FromStmtContext; + +FromStmtContext.prototype.fromStatement = function() { + return this.getTypedRuleContext(FromStatementContext,0); +}; +FromStmtContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterFromStmt(this); + } +}; + +FromStmtContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitFromStmt(this); + } +}; + +FromStmtContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitFromStmt(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function TableContext(parser, ctx) { + QueryPrimaryContext.call(this, parser); + QueryPrimaryContext.prototype.copyFrom.call(this, ctx); + return this; +} + +TableContext.prototype = Object.create(QueryPrimaryContext.prototype); +TableContext.prototype.constructor = TableContext; + +SqlBaseParser.TableContext = TableContext; + +TableContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +TableContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; +TableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTable(this); + } +}; + +TableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTable(this); + } +}; + +TableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.QueryPrimaryContext = QueryPrimaryContext; + +SqlBaseParser.prototype.queryPrimary = function() { + + var localctx = new QueryPrimaryContext(this, this._ctx, this.state); + this.enterRule(localctx, 84, SqlBaseParser.RULE_queryPrimary); + try { + this.state = 1643; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.MAP: + case SqlBaseParser.REDUCE: + case SqlBaseParser.SELECT: + localctx = new QueryPrimaryDefaultContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 1634; + this.querySpecification(); + break; + case SqlBaseParser.FROM: + localctx = new FromStmtContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 1635; + this.fromStatement(); + break; + case SqlBaseParser.TABLE: + localctx = new TableContext(this, localctx); + this.enterOuterAlt(localctx, 3); + this.state = 1636; + this.match(SqlBaseParser.TABLE); + this.state = 1637; + this.multipartIdentifier(); + break; + case SqlBaseParser.VALUES: + localctx = new InlineTableDefault1Context(this, localctx); + this.enterOuterAlt(localctx, 4); + this.state = 1638; + this.inlineTable(); + break; + case SqlBaseParser.T__1: + localctx = new SubqueryContext(this, localctx); + this.enterOuterAlt(localctx, 5); + this.state = 1639; + this.match(SqlBaseParser.T__1); + this.state = 1640; + this.query(); + this.state = 1641; + this.match(SqlBaseParser.T__2); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SortItemContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_sortItem; + this.ordering = null; // Token + this.nullOrder = null; // Token + return this; +} + +SortItemContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SortItemContext.prototype.constructor = SortItemContext; + +SortItemContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +SortItemContext.prototype.NULLS = function() { + return this.getToken(SqlBaseParser.NULLS, 0); +}; + +SortItemContext.prototype.ASC = function() { + return this.getToken(SqlBaseParser.ASC, 0); +}; + +SortItemContext.prototype.DESC = function() { + return this.getToken(SqlBaseParser.DESC, 0); +}; + +SortItemContext.prototype.LAST = function() { + return this.getToken(SqlBaseParser.LAST, 0); +}; + +SortItemContext.prototype.FIRST = function() { + return this.getToken(SqlBaseParser.FIRST, 0); +}; + +SortItemContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSortItem(this); + } +}; + +SortItemContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSortItem(this); + } +}; + +SortItemContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSortItem(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.SortItemContext = SortItemContext; + +SqlBaseParser.prototype.sortItem = function() { + + var localctx = new SortItemContext(this, this._ctx, this.state); + this.enterRule(localctx, 86, SqlBaseParser.RULE_sortItem); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1645; + this.expression(); + this.state = 1647; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,185,this._ctx); + if(la_===1) { + this.state = 1646; + localctx.ordering = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.ASC || _la===SqlBaseParser.DESC)) { + localctx.ordering = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + + } + this.state = 1651; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,186,this._ctx); + if(la_===1) { + this.state = 1649; + this.match(SqlBaseParser.NULLS); + this.state = 1650; + localctx.nullOrder = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.FIRST || _la===SqlBaseParser.LAST)) { + localctx.nullOrder = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function FromStatementContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_fromStatement; + return this; +} + +FromStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +FromStatementContext.prototype.constructor = FromStatementContext; + +FromStatementContext.prototype.fromClause = function() { + return this.getTypedRuleContext(FromClauseContext,0); +}; + +FromStatementContext.prototype.fromStatementBody = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(FromStatementBodyContext); + } else { + return this.getTypedRuleContext(FromStatementBodyContext,i); + } +}; + +FromStatementContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterFromStatement(this); + } +}; + +FromStatementContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitFromStatement(this); + } +}; + +FromStatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitFromStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.FromStatementContext = FromStatementContext; + +SqlBaseParser.prototype.fromStatement = function() { + + var localctx = new FromStatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 88, SqlBaseParser.RULE_fromStatement); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1653; + this.fromClause(); + this.state = 1655; + this._errHandler.sync(this); + var _alt = 1; + do { + switch (_alt) { + case 1: + this.state = 1654; + this.fromStatementBody(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 1657; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,187, this._ctx); + } while ( _alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER ); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function FromStatementBodyContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_fromStatementBody; + return this; +} + +FromStatementBodyContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +FromStatementBodyContext.prototype.constructor = FromStatementBodyContext; + +FromStatementBodyContext.prototype.transformClause = function() { + return this.getTypedRuleContext(TransformClauseContext,0); +}; + +FromStatementBodyContext.prototype.queryOrganization = function() { + return this.getTypedRuleContext(QueryOrganizationContext,0); +}; + +FromStatementBodyContext.prototype.whereClause = function() { + return this.getTypedRuleContext(WhereClauseContext,0); +}; + +FromStatementBodyContext.prototype.selectClause = function() { + return this.getTypedRuleContext(SelectClauseContext,0); +}; + +FromStatementBodyContext.prototype.lateralView = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(LateralViewContext); + } else { + return this.getTypedRuleContext(LateralViewContext,i); + } +}; + +FromStatementBodyContext.prototype.aggregationClause = function() { + return this.getTypedRuleContext(AggregationClauseContext,0); +}; + +FromStatementBodyContext.prototype.havingClause = function() { + return this.getTypedRuleContext(HavingClauseContext,0); +}; + +FromStatementBodyContext.prototype.windowClause = function() { + return this.getTypedRuleContext(WindowClauseContext,0); +}; + +FromStatementBodyContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterFromStatementBody(this); + } +}; + +FromStatementBodyContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitFromStatementBody(this); + } +}; + +FromStatementBodyContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitFromStatementBody(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.FromStatementBodyContext = FromStatementBodyContext; + +SqlBaseParser.prototype.fromStatementBody = function() { + + var localctx = new FromStatementBodyContext(this, this._ctx, this.state); + this.enterRule(localctx, 90, SqlBaseParser.RULE_fromStatementBody); + try { + this.state = 1686; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,194,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 1659; + this.transformClause(); + this.state = 1661; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,188,this._ctx); + if(la_===1) { + this.state = 1660; + this.whereClause(); + + } + this.state = 1663; + this.queryOrganization(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 1665; + this.selectClause(); + this.state = 1669; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,189,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 1666; + this.lateralView(); + } + this.state = 1671; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,189,this._ctx); + } + + this.state = 1673; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,190,this._ctx); + if(la_===1) { + this.state = 1672; + this.whereClause(); + + } + this.state = 1676; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,191,this._ctx); + if(la_===1) { + this.state = 1675; + this.aggregationClause(); + + } + this.state = 1679; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,192,this._ctx); + if(la_===1) { + this.state = 1678; + this.havingClause(); + + } + this.state = 1682; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,193,this._ctx); + if(la_===1) { + this.state = 1681; + this.windowClause(); + + } + this.state = 1684; + this.queryOrganization(); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function QuerySpecificationContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_querySpecification; + return this; +} + +QuerySpecificationContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QuerySpecificationContext.prototype.constructor = QuerySpecificationContext; + + + +QuerySpecificationContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function RegularQuerySpecificationContext(parser, ctx) { + QuerySpecificationContext.call(this, parser); + QuerySpecificationContext.prototype.copyFrom.call(this, ctx); + return this; +} + +RegularQuerySpecificationContext.prototype = Object.create(QuerySpecificationContext.prototype); +RegularQuerySpecificationContext.prototype.constructor = RegularQuerySpecificationContext; + +SqlBaseParser.RegularQuerySpecificationContext = RegularQuerySpecificationContext; + +RegularQuerySpecificationContext.prototype.selectClause = function() { + return this.getTypedRuleContext(SelectClauseContext,0); +}; + +RegularQuerySpecificationContext.prototype.fromClause = function() { + return this.getTypedRuleContext(FromClauseContext,0); +}; + +RegularQuerySpecificationContext.prototype.lateralView = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(LateralViewContext); + } else { + return this.getTypedRuleContext(LateralViewContext,i); + } +}; + +RegularQuerySpecificationContext.prototype.whereClause = function() { + return this.getTypedRuleContext(WhereClauseContext,0); +}; + +RegularQuerySpecificationContext.prototype.aggregationClause = function() { + return this.getTypedRuleContext(AggregationClauseContext,0); +}; + +RegularQuerySpecificationContext.prototype.havingClause = function() { + return this.getTypedRuleContext(HavingClauseContext,0); +}; + +RegularQuerySpecificationContext.prototype.windowClause = function() { + return this.getTypedRuleContext(WindowClauseContext,0); +}; +RegularQuerySpecificationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterRegularQuerySpecification(this); + } +}; + +RegularQuerySpecificationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitRegularQuerySpecification(this); + } +}; + +RegularQuerySpecificationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitRegularQuerySpecification(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function TransformQuerySpecificationContext(parser, ctx) { + QuerySpecificationContext.call(this, parser); + QuerySpecificationContext.prototype.copyFrom.call(this, ctx); + return this; +} + +TransformQuerySpecificationContext.prototype = Object.create(QuerySpecificationContext.prototype); +TransformQuerySpecificationContext.prototype.constructor = TransformQuerySpecificationContext; + +SqlBaseParser.TransformQuerySpecificationContext = TransformQuerySpecificationContext; + +TransformQuerySpecificationContext.prototype.transformClause = function() { + return this.getTypedRuleContext(TransformClauseContext,0); +}; + +TransformQuerySpecificationContext.prototype.fromClause = function() { + return this.getTypedRuleContext(FromClauseContext,0); +}; + +TransformQuerySpecificationContext.prototype.whereClause = function() { + return this.getTypedRuleContext(WhereClauseContext,0); +}; +TransformQuerySpecificationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTransformQuerySpecification(this); + } +}; + +TransformQuerySpecificationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTransformQuerySpecification(this); + } +}; + +TransformQuerySpecificationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTransformQuerySpecification(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.QuerySpecificationContext = QuerySpecificationContext; + +SqlBaseParser.prototype.querySpecification = function() { + + var localctx = new QuerySpecificationContext(this, this._ctx, this.state); + this.enterRule(localctx, 92, SqlBaseParser.RULE_querySpecification); + try { + this.state = 1717; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,203,this._ctx); + switch(la_) { + case 1: + localctx = new TransformQuerySpecificationContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 1688; + this.transformClause(); + this.state = 1690; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,195,this._ctx); + if(la_===1) { + this.state = 1689; + this.fromClause(); + + } + this.state = 1693; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,196,this._ctx); + if(la_===1) { + this.state = 1692; + this.whereClause(); + + } + break; + + case 2: + localctx = new RegularQuerySpecificationContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 1695; + this.selectClause(); + this.state = 1697; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,197,this._ctx); + if(la_===1) { + this.state = 1696; + this.fromClause(); + + } + this.state = 1702; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,198,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 1699; + this.lateralView(); + } + this.state = 1704; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,198,this._ctx); + } + + this.state = 1706; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,199,this._ctx); + if(la_===1) { + this.state = 1705; + this.whereClause(); + + } + this.state = 1709; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,200,this._ctx); + if(la_===1) { + this.state = 1708; + this.aggregationClause(); + + } + this.state = 1712; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,201,this._ctx); + if(la_===1) { + this.state = 1711; + this.havingClause(); + + } + this.state = 1715; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,202,this._ctx); + if(la_===1) { + this.state = 1714; + this.windowClause(); + + } + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TransformClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_transformClause; + this.kind = null; // Token + this.inRowFormat = null; // RowFormatContext + this.recordWriter = null; // Token + this.script = null; // Token + this.outRowFormat = null; // RowFormatContext + this.recordReader = null; // Token + return this; +} + +TransformClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TransformClauseContext.prototype.constructor = TransformClauseContext; + +TransformClauseContext.prototype.USING = function() { + return this.getToken(SqlBaseParser.USING, 0); +}; + +TransformClauseContext.prototype.STRING = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.STRING); + } else { + return this.getToken(SqlBaseParser.STRING, i); + } +}; + + +TransformClauseContext.prototype.SELECT = function() { + return this.getToken(SqlBaseParser.SELECT, 0); +}; + +TransformClauseContext.prototype.namedExpressionSeq = function() { + return this.getTypedRuleContext(NamedExpressionSeqContext,0); +}; + +TransformClauseContext.prototype.TRANSFORM = function() { + return this.getToken(SqlBaseParser.TRANSFORM, 0); +}; + +TransformClauseContext.prototype.MAP = function() { + return this.getToken(SqlBaseParser.MAP, 0); +}; + +TransformClauseContext.prototype.REDUCE = function() { + return this.getToken(SqlBaseParser.REDUCE, 0); +}; + +TransformClauseContext.prototype.RECORDWRITER = function() { + return this.getToken(SqlBaseParser.RECORDWRITER, 0); +}; + +TransformClauseContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +TransformClauseContext.prototype.RECORDREADER = function() { + return this.getToken(SqlBaseParser.RECORDREADER, 0); +}; + +TransformClauseContext.prototype.rowFormat = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(RowFormatContext); + } else { + return this.getTypedRuleContext(RowFormatContext,i); + } +}; + +TransformClauseContext.prototype.identifierSeq = function() { + return this.getTypedRuleContext(IdentifierSeqContext,0); +}; + +TransformClauseContext.prototype.colTypeList = function() { + return this.getTypedRuleContext(ColTypeListContext,0); +}; + +TransformClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTransformClause(this); + } +}; + +TransformClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTransformClause(this); + } +}; + +TransformClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTransformClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.TransformClauseContext = TransformClauseContext; + +SqlBaseParser.prototype.transformClause = function() { + + var localctx = new TransformClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 94, SqlBaseParser.RULE_transformClause); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1729; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.SELECT: + this.state = 1719; + this.match(SqlBaseParser.SELECT); + this.state = 1720; + localctx.kind = this.match(SqlBaseParser.TRANSFORM); + this.state = 1721; + this.match(SqlBaseParser.T__1); + this.state = 1722; + this.namedExpressionSeq(); + this.state = 1723; + this.match(SqlBaseParser.T__2); + break; + case SqlBaseParser.MAP: + this.state = 1725; + localctx.kind = this.match(SqlBaseParser.MAP); + this.state = 1726; + this.namedExpressionSeq(); + break; + case SqlBaseParser.REDUCE: + this.state = 1727; + localctx.kind = this.match(SqlBaseParser.REDUCE); + this.state = 1728; + this.namedExpressionSeq(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 1732; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.ROW) { + this.state = 1731; + localctx.inRowFormat = this.rowFormat(); + } + + this.state = 1736; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.RECORDWRITER) { + this.state = 1734; + this.match(SqlBaseParser.RECORDWRITER); + this.state = 1735; + localctx.recordWriter = this.match(SqlBaseParser.STRING); + } + + this.state = 1738; + this.match(SqlBaseParser.USING); + this.state = 1739; + localctx.script = this.match(SqlBaseParser.STRING); + this.state = 1752; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,209,this._ctx); + if(la_===1) { + this.state = 1740; + this.match(SqlBaseParser.AS); + this.state = 1750; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,208,this._ctx); + switch(la_) { + case 1: + this.state = 1741; + this.identifierSeq(); + break; + + case 2: + this.state = 1742; + this.colTypeList(); + break; + + case 3: + this.state = 1743; + this.match(SqlBaseParser.T__1); + this.state = 1746; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,207,this._ctx); + switch(la_) { + case 1: + this.state = 1744; + this.identifierSeq(); + break; + + case 2: + this.state = 1745; + this.colTypeList(); + break; + + } + this.state = 1748; + this.match(SqlBaseParser.T__2); + break; + + } + + } + this.state = 1755; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,210,this._ctx); + if(la_===1) { + this.state = 1754; + localctx.outRowFormat = this.rowFormat(); + + } + this.state = 1759; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,211,this._ctx); + if(la_===1) { + this.state = 1757; + this.match(SqlBaseParser.RECORDREADER); + this.state = 1758; + localctx.recordReader = this.match(SqlBaseParser.STRING); + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SelectClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_selectClause; + this._hint = null; // HintContext + this.hints = []; // of HintContexts + return this; +} + +SelectClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SelectClauseContext.prototype.constructor = SelectClauseContext; + +SelectClauseContext.prototype.SELECT = function() { + return this.getToken(SqlBaseParser.SELECT, 0); +}; + +SelectClauseContext.prototype.namedExpressionSeq = function() { + return this.getTypedRuleContext(NamedExpressionSeqContext,0); +}; + +SelectClauseContext.prototype.setQuantifier = function() { + return this.getTypedRuleContext(SetQuantifierContext,0); +}; + +SelectClauseContext.prototype.hint = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(HintContext); + } else { + return this.getTypedRuleContext(HintContext,i); + } +}; + +SelectClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSelectClause(this); + } +}; + +SelectClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSelectClause(this); + } +}; + +SelectClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSelectClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.SelectClauseContext = SelectClauseContext; + +SqlBaseParser.prototype.selectClause = function() { + + var localctx = new SelectClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 96, SqlBaseParser.RULE_selectClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1761; + this.match(SqlBaseParser.SELECT); + this.state = 1765; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,212,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 1762; + localctx._hint = this.hint(); + localctx.hints.push(localctx._hint); + } + this.state = 1767; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,212,this._ctx); + } + + this.state = 1769; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,213,this._ctx); + if(la_===1) { + this.state = 1768; + this.setQuantifier(); + + } + this.state = 1771; + this.namedExpressionSeq(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SetClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_setClause; + return this; +} + +SetClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SetClauseContext.prototype.constructor = SetClauseContext; + +SetClauseContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; + +SetClauseContext.prototype.assignmentList = function() { + return this.getTypedRuleContext(AssignmentListContext,0); +}; + +SetClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSetClause(this); + } +}; + +SetClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSetClause(this); + } +}; + +SetClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSetClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.SetClauseContext = SetClauseContext; + +SqlBaseParser.prototype.setClause = function() { + + var localctx = new SetClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 98, SqlBaseParser.RULE_setClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1773; + this.match(SqlBaseParser.SET); + this.state = 1774; + this.assignmentList(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function MatchedClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_matchedClause; + this.matchedCond = null; // BooleanExpressionContext + return this; +} + +MatchedClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +MatchedClauseContext.prototype.constructor = MatchedClauseContext; + +MatchedClauseContext.prototype.WHEN = function() { + return this.getToken(SqlBaseParser.WHEN, 0); +}; + +MatchedClauseContext.prototype.MATCHED = function() { + return this.getToken(SqlBaseParser.MATCHED, 0); +}; + +MatchedClauseContext.prototype.THEN = function() { + return this.getToken(SqlBaseParser.THEN, 0); +}; + +MatchedClauseContext.prototype.matchedAction = function() { + return this.getTypedRuleContext(MatchedActionContext,0); +}; + +MatchedClauseContext.prototype.AND = function() { + return this.getToken(SqlBaseParser.AND, 0); +}; + +MatchedClauseContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; + +MatchedClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterMatchedClause(this); + } +}; + +MatchedClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitMatchedClause(this); + } +}; + +MatchedClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitMatchedClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.MatchedClauseContext = MatchedClauseContext; + +SqlBaseParser.prototype.matchedClause = function() { + + var localctx = new MatchedClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 100, SqlBaseParser.RULE_matchedClause); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1776; + this.match(SqlBaseParser.WHEN); + this.state = 1777; + this.match(SqlBaseParser.MATCHED); + this.state = 1780; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.AND) { + this.state = 1778; + this.match(SqlBaseParser.AND); + this.state = 1779; + localctx.matchedCond = this.booleanExpression(0); + } + + this.state = 1782; + this.match(SqlBaseParser.THEN); + this.state = 1783; + this.matchedAction(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function NotMatchedClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_notMatchedClause; + this.notMatchedCond = null; // BooleanExpressionContext + return this; +} + +NotMatchedClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +NotMatchedClauseContext.prototype.constructor = NotMatchedClauseContext; + +NotMatchedClauseContext.prototype.WHEN = function() { + return this.getToken(SqlBaseParser.WHEN, 0); +}; + +NotMatchedClauseContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +NotMatchedClauseContext.prototype.MATCHED = function() { + return this.getToken(SqlBaseParser.MATCHED, 0); +}; + +NotMatchedClauseContext.prototype.THEN = function() { + return this.getToken(SqlBaseParser.THEN, 0); +}; + +NotMatchedClauseContext.prototype.notMatchedAction = function() { + return this.getTypedRuleContext(NotMatchedActionContext,0); +}; + +NotMatchedClauseContext.prototype.AND = function() { + return this.getToken(SqlBaseParser.AND, 0); +}; + +NotMatchedClauseContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; + +NotMatchedClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterNotMatchedClause(this); + } +}; + +NotMatchedClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitNotMatchedClause(this); + } +}; + +NotMatchedClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitNotMatchedClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.NotMatchedClauseContext = NotMatchedClauseContext; + +SqlBaseParser.prototype.notMatchedClause = function() { + + var localctx = new NotMatchedClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 102, SqlBaseParser.RULE_notMatchedClause); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1785; + this.match(SqlBaseParser.WHEN); + this.state = 1786; + this.match(SqlBaseParser.NOT); + this.state = 1787; + this.match(SqlBaseParser.MATCHED); + this.state = 1790; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.AND) { + this.state = 1788; + this.match(SqlBaseParser.AND); + this.state = 1789; + localctx.notMatchedCond = this.booleanExpression(0); + } + + this.state = 1792; + this.match(SqlBaseParser.THEN); + this.state = 1793; + this.notMatchedAction(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function MatchedActionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_matchedAction; + return this; +} + +MatchedActionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +MatchedActionContext.prototype.constructor = MatchedActionContext; + +MatchedActionContext.prototype.DELETE = function() { + return this.getToken(SqlBaseParser.DELETE, 0); +}; + +MatchedActionContext.prototype.UPDATE = function() { + return this.getToken(SqlBaseParser.UPDATE, 0); +}; + +MatchedActionContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; + +MatchedActionContext.prototype.ASTERISK = function() { + return this.getToken(SqlBaseParser.ASTERISK, 0); +}; + +MatchedActionContext.prototype.assignmentList = function() { + return this.getTypedRuleContext(AssignmentListContext,0); +}; + +MatchedActionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterMatchedAction(this); + } +}; + +MatchedActionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitMatchedAction(this); + } +}; + +MatchedActionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitMatchedAction(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.MatchedActionContext = MatchedActionContext; + +SqlBaseParser.prototype.matchedAction = function() { + + var localctx = new MatchedActionContext(this, this._ctx, this.state); + this.enterRule(localctx, 104, SqlBaseParser.RULE_matchedAction); + try { + this.state = 1802; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,216,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 1795; + this.match(SqlBaseParser.DELETE); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 1796; + this.match(SqlBaseParser.UPDATE); + this.state = 1797; + this.match(SqlBaseParser.SET); + this.state = 1798; + this.match(SqlBaseParser.ASTERISK); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 1799; + this.match(SqlBaseParser.UPDATE); + this.state = 1800; + this.match(SqlBaseParser.SET); + this.state = 1801; + this.assignmentList(); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function NotMatchedActionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_notMatchedAction; + this.columns = null; // MultipartIdentifierListContext + return this; +} + +NotMatchedActionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +NotMatchedActionContext.prototype.constructor = NotMatchedActionContext; + +NotMatchedActionContext.prototype.INSERT = function() { + return this.getToken(SqlBaseParser.INSERT, 0); +}; + +NotMatchedActionContext.prototype.ASTERISK = function() { + return this.getToken(SqlBaseParser.ASTERISK, 0); +}; + +NotMatchedActionContext.prototype.VALUES = function() { + return this.getToken(SqlBaseParser.VALUES, 0); +}; + +NotMatchedActionContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +NotMatchedActionContext.prototype.multipartIdentifierList = function() { + return this.getTypedRuleContext(MultipartIdentifierListContext,0); +}; + +NotMatchedActionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterNotMatchedAction(this); + } +}; + +NotMatchedActionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitNotMatchedAction(this); + } +}; + +NotMatchedActionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitNotMatchedAction(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.NotMatchedActionContext = NotMatchedActionContext; + +SqlBaseParser.prototype.notMatchedAction = function() { + + var localctx = new NotMatchedActionContext(this, this._ctx, this.state); + this.enterRule(localctx, 106, SqlBaseParser.RULE_notMatchedAction); + var _la = 0; // Token type + try { + this.state = 1822; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,218,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 1804; + this.match(SqlBaseParser.INSERT); + this.state = 1805; + this.match(SqlBaseParser.ASTERISK); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 1806; + this.match(SqlBaseParser.INSERT); + this.state = 1807; + this.match(SqlBaseParser.T__1); + this.state = 1808; + localctx.columns = this.multipartIdentifierList(); + this.state = 1809; + this.match(SqlBaseParser.T__2); + this.state = 1810; + this.match(SqlBaseParser.VALUES); + this.state = 1811; + this.match(SqlBaseParser.T__1); + this.state = 1812; + this.expression(); + this.state = 1817; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 1813; + this.match(SqlBaseParser.T__3); + this.state = 1814; + this.expression(); + this.state = 1819; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 1820; + this.match(SqlBaseParser.T__2); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function AssignmentListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_assignmentList; + return this; +} + +AssignmentListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +AssignmentListContext.prototype.constructor = AssignmentListContext; + +AssignmentListContext.prototype.assignment = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(AssignmentContext); + } else { + return this.getTypedRuleContext(AssignmentContext,i); + } +}; + +AssignmentListContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterAssignmentList(this); + } +}; + +AssignmentListContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitAssignmentList(this); + } +}; + +AssignmentListContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitAssignmentList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.AssignmentListContext = AssignmentListContext; + +SqlBaseParser.prototype.assignmentList = function() { + + var localctx = new AssignmentListContext(this, this._ctx, this.state); + this.enterRule(localctx, 108, SqlBaseParser.RULE_assignmentList); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1824; + this.assignment(); + this.state = 1829; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 1825; + this.match(SqlBaseParser.T__3); + this.state = 1826; + this.assignment(); + this.state = 1831; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function AssignmentContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_assignment; + this.key = null; // MultipartIdentifierContext + this.value = null; // ExpressionContext + return this; +} + +AssignmentContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +AssignmentContext.prototype.constructor = AssignmentContext; + +AssignmentContext.prototype.EQ = function() { + return this.getToken(SqlBaseParser.EQ, 0); +}; + +AssignmentContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +AssignmentContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +AssignmentContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterAssignment(this); + } +}; + +AssignmentContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitAssignment(this); + } +}; + +AssignmentContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitAssignment(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.AssignmentContext = AssignmentContext; + +SqlBaseParser.prototype.assignment = function() { + + var localctx = new AssignmentContext(this, this._ctx, this.state); + this.enterRule(localctx, 110, SqlBaseParser.RULE_assignment); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1832; + localctx.key = this.multipartIdentifier(); + this.state = 1833; + this.match(SqlBaseParser.EQ); + this.state = 1834; + localctx.value = this.expression(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function WhereClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_whereClause; + return this; +} + +WhereClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +WhereClauseContext.prototype.constructor = WhereClauseContext; + +WhereClauseContext.prototype.WHERE = function() { + return this.getToken(SqlBaseParser.WHERE, 0); +}; + +WhereClauseContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; + +WhereClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterWhereClause(this); + } +}; + +WhereClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitWhereClause(this); + } +}; + +WhereClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitWhereClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.WhereClauseContext = WhereClauseContext; + +SqlBaseParser.prototype.whereClause = function() { + + var localctx = new WhereClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 112, SqlBaseParser.RULE_whereClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1836; + this.match(SqlBaseParser.WHERE); + this.state = 1837; + this.booleanExpression(0); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function HavingClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_havingClause; + return this; +} + +HavingClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +HavingClauseContext.prototype.constructor = HavingClauseContext; + +HavingClauseContext.prototype.HAVING = function() { + return this.getToken(SqlBaseParser.HAVING, 0); +}; + +HavingClauseContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; + +HavingClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterHavingClause(this); + } +}; + +HavingClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitHavingClause(this); + } +}; + +HavingClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitHavingClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.HavingClauseContext = HavingClauseContext; + +SqlBaseParser.prototype.havingClause = function() { + + var localctx = new HavingClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 114, SqlBaseParser.RULE_havingClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1839; + this.match(SqlBaseParser.HAVING); + this.state = 1840; + this.booleanExpression(0); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function HintContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_hint; + this._hintStatement = null; // HintStatementContext + this.hintStatements = []; // of HintStatementContexts + return this; +} + +HintContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +HintContext.prototype.constructor = HintContext; + +HintContext.prototype.hintStatement = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(HintStatementContext); + } else { + return this.getTypedRuleContext(HintStatementContext,i); + } +}; + +HintContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterHint(this); + } +}; + +HintContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitHint(this); + } +}; + +HintContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitHint(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.HintContext = HintContext; + +SqlBaseParser.prototype.hint = function() { + + var localctx = new HintContext(this, this._ctx, this.state); + this.enterRule(localctx, 116, SqlBaseParser.RULE_hint); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1842; + this.match(SqlBaseParser.T__5); + this.state = 1843; + localctx._hintStatement = this.hintStatement(); + localctx.hintStatements.push(localctx._hintStatement); + this.state = 1850; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,221,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 1845; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,220,this._ctx); + if(la_===1) { + this.state = 1844; + this.match(SqlBaseParser.T__3); + + } + this.state = 1847; + localctx._hintStatement = this.hintStatement(); + localctx.hintStatements.push(localctx._hintStatement); + } + this.state = 1852; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,221,this._ctx); + } + + this.state = 1853; + this.match(SqlBaseParser.T__6); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function HintStatementContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_hintStatement; + this.hintName = null; // IdentifierContext + this._primaryExpression = null; // PrimaryExpressionContext + this.parameters = []; // of PrimaryExpressionContexts + return this; +} + +HintStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +HintStatementContext.prototype.constructor = HintStatementContext; + +HintStatementContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +HintStatementContext.prototype.primaryExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(PrimaryExpressionContext); + } else { + return this.getTypedRuleContext(PrimaryExpressionContext,i); + } +}; + +HintStatementContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterHintStatement(this); + } +}; + +HintStatementContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitHintStatement(this); + } +}; + +HintStatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitHintStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.HintStatementContext = HintStatementContext; + +SqlBaseParser.prototype.hintStatement = function() { + + var localctx = new HintStatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 118, SqlBaseParser.RULE_hintStatement); + var _la = 0; // Token type + try { + this.state = 1868; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,223,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 1855; + localctx.hintName = this.identifier(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 1856; + localctx.hintName = this.identifier(); + this.state = 1857; + this.match(SqlBaseParser.T__1); + this.state = 1858; + localctx._primaryExpression = this.primaryExpression(0); + localctx.parameters.push(localctx._primaryExpression); + this.state = 1863; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 1859; + this.match(SqlBaseParser.T__3); + this.state = 1860; + localctx._primaryExpression = this.primaryExpression(0); + localctx.parameters.push(localctx._primaryExpression); + this.state = 1865; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 1866; + this.match(SqlBaseParser.T__2); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function FromClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_fromClause; + return this; +} + +FromClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +FromClauseContext.prototype.constructor = FromClauseContext; + +FromClauseContext.prototype.FROM = function() { + return this.getToken(SqlBaseParser.FROM, 0); +}; + +FromClauseContext.prototype.relation = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(RelationContext); + } else { + return this.getTypedRuleContext(RelationContext,i); + } +}; + +FromClauseContext.prototype.lateralView = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(LateralViewContext); + } else { + return this.getTypedRuleContext(LateralViewContext,i); + } +}; + +FromClauseContext.prototype.pivotClause = function() { + return this.getTypedRuleContext(PivotClauseContext,0); +}; + +FromClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterFromClause(this); + } +}; + +FromClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitFromClause(this); + } +}; + +FromClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitFromClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.FromClauseContext = FromClauseContext; + +SqlBaseParser.prototype.fromClause = function() { + + var localctx = new FromClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 120, SqlBaseParser.RULE_fromClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1870; + this.match(SqlBaseParser.FROM); + this.state = 1871; + this.relation(); + this.state = 1876; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,224,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 1872; + this.match(SqlBaseParser.T__3); + this.state = 1873; + this.relation(); + } + this.state = 1878; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,224,this._ctx); + } + + this.state = 1882; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,225,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 1879; + this.lateralView(); + } + this.state = 1884; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,225,this._ctx); + } + + this.state = 1886; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,226,this._ctx); + if(la_===1) { + this.state = 1885; + this.pivotClause(); + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function AggregationClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_aggregationClause; + this._expression = null; // ExpressionContext + this.groupingExpressions = []; // of ExpressionContexts + this.kind = null; // Token + return this; +} + +AggregationClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +AggregationClauseContext.prototype.constructor = AggregationClauseContext; + +AggregationClauseContext.prototype.GROUP = function() { + return this.getToken(SqlBaseParser.GROUP, 0); +}; + +AggregationClauseContext.prototype.BY = function() { + return this.getToken(SqlBaseParser.BY, 0); +}; + +AggregationClauseContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +AggregationClauseContext.prototype.WITH = function() { + return this.getToken(SqlBaseParser.WITH, 0); +}; + +AggregationClauseContext.prototype.SETS = function() { + return this.getToken(SqlBaseParser.SETS, 0); +}; + +AggregationClauseContext.prototype.groupingSet = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(GroupingSetContext); + } else { + return this.getTypedRuleContext(GroupingSetContext,i); + } +}; + +AggregationClauseContext.prototype.ROLLUP = function() { + return this.getToken(SqlBaseParser.ROLLUP, 0); +}; + +AggregationClauseContext.prototype.CUBE = function() { + return this.getToken(SqlBaseParser.CUBE, 0); +}; + +AggregationClauseContext.prototype.GROUPING = function() { + return this.getToken(SqlBaseParser.GROUPING, 0); +}; + +AggregationClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterAggregationClause(this); + } +}; + +AggregationClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitAggregationClause(this); + } +}; + +AggregationClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitAggregationClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.AggregationClauseContext = AggregationClauseContext; + +SqlBaseParser.prototype.aggregationClause = function() { + + var localctx = new AggregationClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 122, SqlBaseParser.RULE_aggregationClause); + var _la = 0; // Token type + try { + this.state = 1932; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,231,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 1888; + this.match(SqlBaseParser.GROUP); + this.state = 1889; + this.match(SqlBaseParser.BY); + this.state = 1890; + localctx._expression = this.expression(); + localctx.groupingExpressions.push(localctx._expression); + this.state = 1895; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,227,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 1891; + this.match(SqlBaseParser.T__3); + this.state = 1892; + localctx._expression = this.expression(); + localctx.groupingExpressions.push(localctx._expression); + } + this.state = 1897; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,227,this._ctx); + } + + this.state = 1915; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,229,this._ctx); + if(la_===1) { + this.state = 1898; + this.match(SqlBaseParser.WITH); + this.state = 1899; + localctx.kind = this.match(SqlBaseParser.ROLLUP); + + } else if(la_===2) { + this.state = 1900; + this.match(SqlBaseParser.WITH); + this.state = 1901; + localctx.kind = this.match(SqlBaseParser.CUBE); + + } else if(la_===3) { + this.state = 1902; + localctx.kind = this.match(SqlBaseParser.GROUPING); + this.state = 1903; + this.match(SqlBaseParser.SETS); + this.state = 1904; + this.match(SqlBaseParser.T__1); + this.state = 1905; + this.groupingSet(); + this.state = 1910; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 1906; + this.match(SqlBaseParser.T__3); + this.state = 1907; + this.groupingSet(); + this.state = 1912; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 1913; + this.match(SqlBaseParser.T__2); + + } + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 1917; + this.match(SqlBaseParser.GROUP); + this.state = 1918; + this.match(SqlBaseParser.BY); + this.state = 1919; + localctx.kind = this.match(SqlBaseParser.GROUPING); + this.state = 1920; + this.match(SqlBaseParser.SETS); + this.state = 1921; + this.match(SqlBaseParser.T__1); + this.state = 1922; + this.groupingSet(); + this.state = 1927; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 1923; + this.match(SqlBaseParser.T__3); + this.state = 1924; + this.groupingSet(); + this.state = 1929; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 1930; + this.match(SqlBaseParser.T__2); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function GroupingSetContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_groupingSet; + return this; +} + +GroupingSetContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +GroupingSetContext.prototype.constructor = GroupingSetContext; + +GroupingSetContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +GroupingSetContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterGroupingSet(this); + } +}; + +GroupingSetContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitGroupingSet(this); + } +}; + +GroupingSetContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitGroupingSet(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.GroupingSetContext = GroupingSetContext; + +SqlBaseParser.prototype.groupingSet = function() { + + var localctx = new GroupingSetContext(this, this._ctx, this.state); + this.enterRule(localctx, 124, SqlBaseParser.RULE_groupingSet); + var _la = 0; // Token type + try { + this.state = 1947; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,234,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 1934; + this.match(SqlBaseParser.T__1); + this.state = 1943; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,233,this._ctx); + if(la_===1) { + this.state = 1935; + this.expression(); + this.state = 1940; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 1936; + this.match(SqlBaseParser.T__3); + this.state = 1937; + this.expression(); + this.state = 1942; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + + } + this.state = 1945; + this.match(SqlBaseParser.T__2); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 1946; + this.expression(); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function PivotClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_pivotClause; + this.aggregates = null; // NamedExpressionSeqContext + this._pivotValue = null; // PivotValueContext + this.pivotValues = []; // of PivotValueContexts + return this; +} + +PivotClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PivotClauseContext.prototype.constructor = PivotClauseContext; + +PivotClauseContext.prototype.PIVOT = function() { + return this.getToken(SqlBaseParser.PIVOT, 0); +}; + +PivotClauseContext.prototype.FOR = function() { + return this.getToken(SqlBaseParser.FOR, 0); +}; + +PivotClauseContext.prototype.pivotColumn = function() { + return this.getTypedRuleContext(PivotColumnContext,0); +}; + +PivotClauseContext.prototype.IN = function() { + return this.getToken(SqlBaseParser.IN, 0); +}; + +PivotClauseContext.prototype.namedExpressionSeq = function() { + return this.getTypedRuleContext(NamedExpressionSeqContext,0); +}; + +PivotClauseContext.prototype.pivotValue = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(PivotValueContext); + } else { + return this.getTypedRuleContext(PivotValueContext,i); + } +}; + +PivotClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterPivotClause(this); + } +}; + +PivotClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitPivotClause(this); + } +}; + +PivotClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitPivotClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.PivotClauseContext = PivotClauseContext; + +SqlBaseParser.prototype.pivotClause = function() { + + var localctx = new PivotClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 126, SqlBaseParser.RULE_pivotClause); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1949; + this.match(SqlBaseParser.PIVOT); + this.state = 1950; + this.match(SqlBaseParser.T__1); + this.state = 1951; + localctx.aggregates = this.namedExpressionSeq(); + this.state = 1952; + this.match(SqlBaseParser.FOR); + this.state = 1953; + this.pivotColumn(); + this.state = 1954; + this.match(SqlBaseParser.IN); + this.state = 1955; + this.match(SqlBaseParser.T__1); + this.state = 1956; + localctx._pivotValue = this.pivotValue(); + localctx.pivotValues.push(localctx._pivotValue); + this.state = 1961; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 1957; + this.match(SqlBaseParser.T__3); + this.state = 1958; + localctx._pivotValue = this.pivotValue(); + localctx.pivotValues.push(localctx._pivotValue); + this.state = 1963; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 1964; + this.match(SqlBaseParser.T__2); + this.state = 1965; + this.match(SqlBaseParser.T__2); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function PivotColumnContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_pivotColumn; + this._identifier = null; // IdentifierContext + this.identifiers = []; // of IdentifierContexts + return this; +} + +PivotColumnContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PivotColumnContext.prototype.constructor = PivotColumnContext; + +PivotColumnContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +PivotColumnContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterPivotColumn(this); + } +}; + +PivotColumnContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitPivotColumn(this); + } +}; + +PivotColumnContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitPivotColumn(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.PivotColumnContext = PivotColumnContext; + +SqlBaseParser.prototype.pivotColumn = function() { + + var localctx = new PivotColumnContext(this, this._ctx, this.state); + this.enterRule(localctx, 128, SqlBaseParser.RULE_pivotColumn); + var _la = 0; // Token type + try { + this.state = 1979; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,237,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 1967; + localctx._identifier = this.identifier(); + localctx.identifiers.push(localctx._identifier); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 1968; + this.match(SqlBaseParser.T__1); + this.state = 1969; + localctx._identifier = this.identifier(); + localctx.identifiers.push(localctx._identifier); + this.state = 1974; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 1970; + this.match(SqlBaseParser.T__3); + this.state = 1971; + localctx._identifier = this.identifier(); + localctx.identifiers.push(localctx._identifier); + this.state = 1976; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 1977; + this.match(SqlBaseParser.T__2); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function PivotValueContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_pivotValue; + return this; +} + +PivotValueContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PivotValueContext.prototype.constructor = PivotValueContext; + +PivotValueContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +PivotValueContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +PivotValueContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +PivotValueContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterPivotValue(this); + } +}; + +PivotValueContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitPivotValue(this); + } +}; + +PivotValueContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitPivotValue(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.PivotValueContext = PivotValueContext; + +SqlBaseParser.prototype.pivotValue = function() { + + var localctx = new PivotValueContext(this, this._ctx, this.state); + this.enterRule(localctx, 130, SqlBaseParser.RULE_pivotValue); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1981; + this.expression(); + this.state = 1986; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,239,this._ctx); + if(la_===1) { + this.state = 1983; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,238,this._ctx); + if(la_===1) { + this.state = 1982; + this.match(SqlBaseParser.AS); + + } + this.state = 1985; + this.identifier(); + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function LateralViewContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_lateralView; + this.tblName = null; // IdentifierContext + this._identifier = null; // IdentifierContext + this.colName = []; // of IdentifierContexts + return this; +} + +LateralViewContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +LateralViewContext.prototype.constructor = LateralViewContext; + +LateralViewContext.prototype.LATERAL = function() { + return this.getToken(SqlBaseParser.LATERAL, 0); +}; + +LateralViewContext.prototype.VIEW = function() { + return this.getToken(SqlBaseParser.VIEW, 0); +}; + +LateralViewContext.prototype.qualifiedName = function() { + return this.getTypedRuleContext(QualifiedNameContext,0); +}; + +LateralViewContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +LateralViewContext.prototype.OUTER = function() { + return this.getToken(SqlBaseParser.OUTER, 0); +}; + +LateralViewContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +LateralViewContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +LateralViewContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterLateralView(this); + } +}; + +LateralViewContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitLateralView(this); + } +}; + +LateralViewContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitLateralView(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.LateralViewContext = LateralViewContext; + +SqlBaseParser.prototype.lateralView = function() { + + var localctx = new LateralViewContext(this, this._ctx, this.state); + this.enterRule(localctx, 132, SqlBaseParser.RULE_lateralView); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1988; + this.match(SqlBaseParser.LATERAL); + this.state = 1989; + this.match(SqlBaseParser.VIEW); + this.state = 1991; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,240,this._ctx); + if(la_===1) { + this.state = 1990; + this.match(SqlBaseParser.OUTER); + + } + this.state = 1993; + this.qualifiedName(); + this.state = 1994; + this.match(SqlBaseParser.T__1); + this.state = 2003; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,242,this._ctx); + if(la_===1) { + this.state = 1995; + this.expression(); + this.state = 2000; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 1996; + this.match(SqlBaseParser.T__3); + this.state = 1997; + this.expression(); + this.state = 2002; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + + } + this.state = 2005; + this.match(SqlBaseParser.T__2); + this.state = 2006; + localctx.tblName = this.identifier(); + this.state = 2018; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,245,this._ctx); + if(la_===1) { + this.state = 2008; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,243,this._ctx); + if(la_===1) { + this.state = 2007; + this.match(SqlBaseParser.AS); + + } + this.state = 2010; + localctx._identifier = this.identifier(); + localctx.colName.push(localctx._identifier); + this.state = 2015; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,244,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 2011; + this.match(SqlBaseParser.T__3); + this.state = 2012; + localctx._identifier = this.identifier(); + localctx.colName.push(localctx._identifier); + } + this.state = 2017; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,244,this._ctx); + } + + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SetQuantifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_setQuantifier; + return this; +} + +SetQuantifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SetQuantifierContext.prototype.constructor = SetQuantifierContext; + +SetQuantifierContext.prototype.DISTINCT = function() { + return this.getToken(SqlBaseParser.DISTINCT, 0); +}; + +SetQuantifierContext.prototype.ALL = function() { + return this.getToken(SqlBaseParser.ALL, 0); +}; + +SetQuantifierContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSetQuantifier(this); + } +}; + +SetQuantifierContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSetQuantifier(this); + } +}; + +SetQuantifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSetQuantifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.SetQuantifierContext = SetQuantifierContext; + +SqlBaseParser.prototype.setQuantifier = function() { + + var localctx = new SetQuantifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 134, SqlBaseParser.RULE_setQuantifier); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2020; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.ALL || _la===SqlBaseParser.DISTINCT)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function RelationContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_relation; + return this; +} + +RelationContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +RelationContext.prototype.constructor = RelationContext; + +RelationContext.prototype.relationPrimary = function() { + return this.getTypedRuleContext(RelationPrimaryContext,0); +}; + +RelationContext.prototype.joinRelation = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(JoinRelationContext); + } else { + return this.getTypedRuleContext(JoinRelationContext,i); + } +}; + +RelationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterRelation(this); + } +}; + +RelationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitRelation(this); + } +}; + +RelationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitRelation(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.RelationContext = RelationContext; + +SqlBaseParser.prototype.relation = function() { + + var localctx = new RelationContext(this, this._ctx, this.state); + this.enterRule(localctx, 136, SqlBaseParser.RULE_relation); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2022; + this.relationPrimary(); + this.state = 2026; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,246,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 2023; + this.joinRelation(); + } + this.state = 2028; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,246,this._ctx); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function JoinRelationContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_joinRelation; + this.right = null; // RelationPrimaryContext + return this; +} + +JoinRelationContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +JoinRelationContext.prototype.constructor = JoinRelationContext; + +JoinRelationContext.prototype.JOIN = function() { + return this.getToken(SqlBaseParser.JOIN, 0); +}; + +JoinRelationContext.prototype.relationPrimary = function() { + return this.getTypedRuleContext(RelationPrimaryContext,0); +}; + +JoinRelationContext.prototype.joinType = function() { + return this.getTypedRuleContext(JoinTypeContext,0); +}; + +JoinRelationContext.prototype.joinCriteria = function() { + return this.getTypedRuleContext(JoinCriteriaContext,0); +}; + +JoinRelationContext.prototype.NATURAL = function() { + return this.getToken(SqlBaseParser.NATURAL, 0); +}; + +JoinRelationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterJoinRelation(this); + } +}; + +JoinRelationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitJoinRelation(this); + } +}; + +JoinRelationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitJoinRelation(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.JoinRelationContext = JoinRelationContext; + +SqlBaseParser.prototype.joinRelation = function() { + + var localctx = new JoinRelationContext(this, this._ctx, this.state); + this.enterRule(localctx, 138, SqlBaseParser.RULE_joinRelation); + try { + this.state = 2040; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.ANTI: + case SqlBaseParser.CROSS: + case SqlBaseParser.FULL: + case SqlBaseParser.INNER: + case SqlBaseParser.JOIN: + case SqlBaseParser.LEFT: + case SqlBaseParser.RIGHT: + case SqlBaseParser.SEMI: + this.enterOuterAlt(localctx, 1); + this.state = 2029; + this.joinType(); + this.state = 2030; + this.match(SqlBaseParser.JOIN); + this.state = 2031; + localctx.right = this.relationPrimary(); + this.state = 2033; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,247,this._ctx); + if(la_===1) { + this.state = 2032; + this.joinCriteria(); + + } + break; + case SqlBaseParser.NATURAL: + this.enterOuterAlt(localctx, 2); + this.state = 2035; + this.match(SqlBaseParser.NATURAL); + this.state = 2036; + this.joinType(); + this.state = 2037; + this.match(SqlBaseParser.JOIN); + this.state = 2038; + localctx.right = this.relationPrimary(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function JoinTypeContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_joinType; + return this; +} + +JoinTypeContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +JoinTypeContext.prototype.constructor = JoinTypeContext; + +JoinTypeContext.prototype.INNER = function() { + return this.getToken(SqlBaseParser.INNER, 0); +}; + +JoinTypeContext.prototype.CROSS = function() { + return this.getToken(SqlBaseParser.CROSS, 0); +}; + +JoinTypeContext.prototype.LEFT = function() { + return this.getToken(SqlBaseParser.LEFT, 0); +}; + +JoinTypeContext.prototype.OUTER = function() { + return this.getToken(SqlBaseParser.OUTER, 0); +}; + +JoinTypeContext.prototype.SEMI = function() { + return this.getToken(SqlBaseParser.SEMI, 0); +}; + +JoinTypeContext.prototype.RIGHT = function() { + return this.getToken(SqlBaseParser.RIGHT, 0); +}; + +JoinTypeContext.prototype.FULL = function() { + return this.getToken(SqlBaseParser.FULL, 0); +}; + +JoinTypeContext.prototype.ANTI = function() { + return this.getToken(SqlBaseParser.ANTI, 0); +}; + +JoinTypeContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterJoinType(this); + } +}; + +JoinTypeContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitJoinType(this); + } +}; + +JoinTypeContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitJoinType(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.JoinTypeContext = JoinTypeContext; + +SqlBaseParser.prototype.joinType = function() { + + var localctx = new JoinTypeContext(this, this._ctx, this.state); + this.enterRule(localctx, 140, SqlBaseParser.RULE_joinType); + var _la = 0; // Token type + try { + this.state = 2066; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,255,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 2043; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.INNER) { + this.state = 2042; + this.match(SqlBaseParser.INNER); + } + + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 2045; + this.match(SqlBaseParser.CROSS); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 2046; + this.match(SqlBaseParser.LEFT); + this.state = 2048; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.OUTER) { + this.state = 2047; + this.match(SqlBaseParser.OUTER); + } + + break; + + case 4: + this.enterOuterAlt(localctx, 4); + this.state = 2051; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.LEFT) { + this.state = 2050; + this.match(SqlBaseParser.LEFT); + } + + this.state = 2053; + this.match(SqlBaseParser.SEMI); + break; + + case 5: + this.enterOuterAlt(localctx, 5); + this.state = 2054; + this.match(SqlBaseParser.RIGHT); + this.state = 2056; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.OUTER) { + this.state = 2055; + this.match(SqlBaseParser.OUTER); + } + + break; + + case 6: + this.enterOuterAlt(localctx, 6); + this.state = 2058; + this.match(SqlBaseParser.FULL); + this.state = 2060; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.OUTER) { + this.state = 2059; + this.match(SqlBaseParser.OUTER); + } + + break; + + case 7: + this.enterOuterAlt(localctx, 7); + this.state = 2063; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.LEFT) { + this.state = 2062; + this.match(SqlBaseParser.LEFT); + } + + this.state = 2065; + this.match(SqlBaseParser.ANTI); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function JoinCriteriaContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_joinCriteria; + return this; +} + +JoinCriteriaContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +JoinCriteriaContext.prototype.constructor = JoinCriteriaContext; + +JoinCriteriaContext.prototype.ON = function() { + return this.getToken(SqlBaseParser.ON, 0); +}; + +JoinCriteriaContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; + +JoinCriteriaContext.prototype.USING = function() { + return this.getToken(SqlBaseParser.USING, 0); +}; + +JoinCriteriaContext.prototype.identifierList = function() { + return this.getTypedRuleContext(IdentifierListContext,0); +}; + +JoinCriteriaContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterJoinCriteria(this); + } +}; + +JoinCriteriaContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitJoinCriteria(this); + } +}; + +JoinCriteriaContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitJoinCriteria(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.JoinCriteriaContext = JoinCriteriaContext; + +SqlBaseParser.prototype.joinCriteria = function() { + + var localctx = new JoinCriteriaContext(this, this._ctx, this.state); + this.enterRule(localctx, 142, SqlBaseParser.RULE_joinCriteria); + try { + this.state = 2072; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.ON: + this.enterOuterAlt(localctx, 1); + this.state = 2068; + this.match(SqlBaseParser.ON); + this.state = 2069; + this.booleanExpression(0); + break; + case SqlBaseParser.USING: + this.enterOuterAlt(localctx, 2); + this.state = 2070; + this.match(SqlBaseParser.USING); + this.state = 2071; + this.identifierList(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SampleContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_sample; + return this; +} + +SampleContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SampleContext.prototype.constructor = SampleContext; + +SampleContext.prototype.TABLESAMPLE = function() { + return this.getToken(SqlBaseParser.TABLESAMPLE, 0); +}; + +SampleContext.prototype.sampleMethod = function() { + return this.getTypedRuleContext(SampleMethodContext,0); +}; + +SampleContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSample(this); + } +}; + +SampleContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSample(this); + } +}; + +SampleContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSample(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.SampleContext = SampleContext; + +SqlBaseParser.prototype.sample = function() { + + var localctx = new SampleContext(this, this._ctx, this.state); + this.enterRule(localctx, 144, SqlBaseParser.RULE_sample); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2074; + this.match(SqlBaseParser.TABLESAMPLE); + this.state = 2075; + this.match(SqlBaseParser.T__1); + this.state = 2077; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,257,this._ctx); + if(la_===1) { + this.state = 2076; + this.sampleMethod(); + + } + this.state = 2079; + this.match(SqlBaseParser.T__2); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SampleMethodContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_sampleMethod; + return this; +} + +SampleMethodContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SampleMethodContext.prototype.constructor = SampleMethodContext; + + + +SampleMethodContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function SampleByRowsContext(parser, ctx) { + SampleMethodContext.call(this, parser); + SampleMethodContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SampleByRowsContext.prototype = Object.create(SampleMethodContext.prototype); +SampleByRowsContext.prototype.constructor = SampleByRowsContext; + +SqlBaseParser.SampleByRowsContext = SampleByRowsContext; + +SampleByRowsContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +SampleByRowsContext.prototype.ROWS = function() { + return this.getToken(SqlBaseParser.ROWS, 0); +}; +SampleByRowsContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSampleByRows(this); + } +}; + +SampleByRowsContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSampleByRows(this); + } +}; + +SampleByRowsContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSampleByRows(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SampleByPercentileContext(parser, ctx) { + SampleMethodContext.call(this, parser); + this.negativeSign = null; // Token; + this.percentage = null; // Token; + SampleMethodContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SampleByPercentileContext.prototype = Object.create(SampleMethodContext.prototype); +SampleByPercentileContext.prototype.constructor = SampleByPercentileContext; + +SqlBaseParser.SampleByPercentileContext = SampleByPercentileContext; + +SampleByPercentileContext.prototype.PERCENTLIT = function() { + return this.getToken(SqlBaseParser.PERCENTLIT, 0); +}; + +SampleByPercentileContext.prototype.INTEGER_VALUE = function() { + return this.getToken(SqlBaseParser.INTEGER_VALUE, 0); +}; + +SampleByPercentileContext.prototype.DECIMAL_VALUE = function() { + return this.getToken(SqlBaseParser.DECIMAL_VALUE, 0); +}; + +SampleByPercentileContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; +SampleByPercentileContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSampleByPercentile(this); + } +}; + +SampleByPercentileContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSampleByPercentile(this); + } +}; + +SampleByPercentileContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSampleByPercentile(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SampleByBucketContext(parser, ctx) { + SampleMethodContext.call(this, parser); + this.sampleType = null; // Token; + this.numerator = null; // Token; + this.denominator = null; // Token; + SampleMethodContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SampleByBucketContext.prototype = Object.create(SampleMethodContext.prototype); +SampleByBucketContext.prototype.constructor = SampleByBucketContext; + +SqlBaseParser.SampleByBucketContext = SampleByBucketContext; + +SampleByBucketContext.prototype.OUT = function() { + return this.getToken(SqlBaseParser.OUT, 0); +}; + +SampleByBucketContext.prototype.OF = function() { + return this.getToken(SqlBaseParser.OF, 0); +}; + +SampleByBucketContext.prototype.BUCKET = function() { + return this.getToken(SqlBaseParser.BUCKET, 0); +}; + +SampleByBucketContext.prototype.INTEGER_VALUE = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.INTEGER_VALUE); + } else { + return this.getToken(SqlBaseParser.INTEGER_VALUE, i); + } +}; + + +SampleByBucketContext.prototype.ON = function() { + return this.getToken(SqlBaseParser.ON, 0); +}; + +SampleByBucketContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +SampleByBucketContext.prototype.qualifiedName = function() { + return this.getTypedRuleContext(QualifiedNameContext,0); +}; +SampleByBucketContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSampleByBucket(this); + } +}; + +SampleByBucketContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSampleByBucket(this); + } +}; + +SampleByBucketContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSampleByBucket(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SampleByBytesContext(parser, ctx) { + SampleMethodContext.call(this, parser); + this.bytes = null; // ExpressionContext; + SampleMethodContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SampleByBytesContext.prototype = Object.create(SampleMethodContext.prototype); +SampleByBytesContext.prototype.constructor = SampleByBytesContext; + +SqlBaseParser.SampleByBytesContext = SampleByBytesContext; + +SampleByBytesContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; +SampleByBytesContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSampleByBytes(this); + } +}; + +SampleByBytesContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSampleByBytes(this); + } +}; + +SampleByBytesContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSampleByBytes(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.SampleMethodContext = SampleMethodContext; + +SqlBaseParser.prototype.sampleMethod = function() { + + var localctx = new SampleMethodContext(this, this._ctx, this.state); + this.enterRule(localctx, 146, SqlBaseParser.RULE_sampleMethod); + var _la = 0; // Token type + try { + this.state = 2105; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,261,this._ctx); + switch(la_) { + case 1: + localctx = new SampleByPercentileContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 2082; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.MINUS) { + this.state = 2081; + localctx.negativeSign = this.match(SqlBaseParser.MINUS); + } + + this.state = 2084; + localctx.percentage = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.INTEGER_VALUE || _la===SqlBaseParser.DECIMAL_VALUE)) { + localctx.percentage = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 2085; + this.match(SqlBaseParser.PERCENTLIT); + break; + + case 2: + localctx = new SampleByRowsContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 2086; + this.expression(); + this.state = 2087; + this.match(SqlBaseParser.ROWS); + break; + + case 3: + localctx = new SampleByBucketContext(this, localctx); + this.enterOuterAlt(localctx, 3); + this.state = 2089; + localctx.sampleType = this.match(SqlBaseParser.BUCKET); + this.state = 2090; + localctx.numerator = this.match(SqlBaseParser.INTEGER_VALUE); + this.state = 2091; + this.match(SqlBaseParser.OUT); + this.state = 2092; + this.match(SqlBaseParser.OF); + this.state = 2093; + localctx.denominator = this.match(SqlBaseParser.INTEGER_VALUE); + this.state = 2102; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.ON) { + this.state = 2094; + this.match(SqlBaseParser.ON); + this.state = 2100; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,259,this._ctx); + switch(la_) { + case 1: + this.state = 2095; + this.identifier(); + break; + + case 2: + this.state = 2096; + this.qualifiedName(); + this.state = 2097; + this.match(SqlBaseParser.T__1); + this.state = 2098; + this.match(SqlBaseParser.T__2); + break; + + } + } + + break; + + case 4: + localctx = new SampleByBytesContext(this, localctx); + this.enterOuterAlt(localctx, 4); + this.state = 2104; + localctx.bytes = this.expression(); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function IdentifierListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_identifierList; + return this; +} + +IdentifierListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IdentifierListContext.prototype.constructor = IdentifierListContext; + +IdentifierListContext.prototype.identifierSeq = function() { + return this.getTypedRuleContext(IdentifierSeqContext,0); +}; + +IdentifierListContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterIdentifierList(this); + } +}; + +IdentifierListContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitIdentifierList(this); + } +}; + +IdentifierListContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitIdentifierList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.IdentifierListContext = IdentifierListContext; + +SqlBaseParser.prototype.identifierList = function() { + + var localctx = new IdentifierListContext(this, this._ctx, this.state); + this.enterRule(localctx, 148, SqlBaseParser.RULE_identifierList); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2107; + this.match(SqlBaseParser.T__1); + this.state = 2108; + this.identifierSeq(); + this.state = 2109; + this.match(SqlBaseParser.T__2); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function IdentifierSeqContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_identifierSeq; + this._errorCapturingIdentifier = null; // ErrorCapturingIdentifierContext + this.ident = []; // of ErrorCapturingIdentifierContexts + return this; +} + +IdentifierSeqContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IdentifierSeqContext.prototype.constructor = IdentifierSeqContext; + +IdentifierSeqContext.prototype.errorCapturingIdentifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ErrorCapturingIdentifierContext); + } else { + return this.getTypedRuleContext(ErrorCapturingIdentifierContext,i); + } +}; + +IdentifierSeqContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterIdentifierSeq(this); + } +}; + +IdentifierSeqContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitIdentifierSeq(this); + } +}; + +IdentifierSeqContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitIdentifierSeq(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.IdentifierSeqContext = IdentifierSeqContext; + +SqlBaseParser.prototype.identifierSeq = function() { + + var localctx = new IdentifierSeqContext(this, this._ctx, this.state); + this.enterRule(localctx, 150, SqlBaseParser.RULE_identifierSeq); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2111; + localctx._errorCapturingIdentifier = this.errorCapturingIdentifier(); + localctx.ident.push(localctx._errorCapturingIdentifier); + this.state = 2116; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,262,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 2112; + this.match(SqlBaseParser.T__3); + this.state = 2113; + localctx._errorCapturingIdentifier = this.errorCapturingIdentifier(); + localctx.ident.push(localctx._errorCapturingIdentifier); + } + this.state = 2118; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,262,this._ctx); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function OrderedIdentifierListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_orderedIdentifierList; + return this; +} + +OrderedIdentifierListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +OrderedIdentifierListContext.prototype.constructor = OrderedIdentifierListContext; + +OrderedIdentifierListContext.prototype.orderedIdentifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(OrderedIdentifierContext); + } else { + return this.getTypedRuleContext(OrderedIdentifierContext,i); + } +}; + +OrderedIdentifierListContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterOrderedIdentifierList(this); + } +}; + +OrderedIdentifierListContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitOrderedIdentifierList(this); + } +}; + +OrderedIdentifierListContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitOrderedIdentifierList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.OrderedIdentifierListContext = OrderedIdentifierListContext; + +SqlBaseParser.prototype.orderedIdentifierList = function() { + + var localctx = new OrderedIdentifierListContext(this, this._ctx, this.state); + this.enterRule(localctx, 152, SqlBaseParser.RULE_orderedIdentifierList); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2119; + this.match(SqlBaseParser.T__1); + this.state = 2120; + this.orderedIdentifier(); + this.state = 2125; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2121; + this.match(SqlBaseParser.T__3); + this.state = 2122; + this.orderedIdentifier(); + this.state = 2127; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 2128; + this.match(SqlBaseParser.T__2); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function OrderedIdentifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_orderedIdentifier; + this.ident = null; // ErrorCapturingIdentifierContext + this.ordering = null; // Token + return this; +} + +OrderedIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +OrderedIdentifierContext.prototype.constructor = OrderedIdentifierContext; + +OrderedIdentifierContext.prototype.errorCapturingIdentifier = function() { + return this.getTypedRuleContext(ErrorCapturingIdentifierContext,0); +}; + +OrderedIdentifierContext.prototype.ASC = function() { + return this.getToken(SqlBaseParser.ASC, 0); +}; + +OrderedIdentifierContext.prototype.DESC = function() { + return this.getToken(SqlBaseParser.DESC, 0); +}; + +OrderedIdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterOrderedIdentifier(this); + } +}; + +OrderedIdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitOrderedIdentifier(this); + } +}; + +OrderedIdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitOrderedIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.OrderedIdentifierContext = OrderedIdentifierContext; + +SqlBaseParser.prototype.orderedIdentifier = function() { + + var localctx = new OrderedIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 154, SqlBaseParser.RULE_orderedIdentifier); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2130; + localctx.ident = this.errorCapturingIdentifier(); + this.state = 2132; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.ASC || _la===SqlBaseParser.DESC) { + this.state = 2131; + localctx.ordering = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.ASC || _la===SqlBaseParser.DESC)) { + localctx.ordering = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function IdentifierCommentListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_identifierCommentList; + return this; +} + +IdentifierCommentListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IdentifierCommentListContext.prototype.constructor = IdentifierCommentListContext; + +IdentifierCommentListContext.prototype.identifierComment = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierCommentContext); + } else { + return this.getTypedRuleContext(IdentifierCommentContext,i); + } +}; + +IdentifierCommentListContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterIdentifierCommentList(this); + } +}; + +IdentifierCommentListContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitIdentifierCommentList(this); + } +}; + +IdentifierCommentListContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitIdentifierCommentList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.IdentifierCommentListContext = IdentifierCommentListContext; + +SqlBaseParser.prototype.identifierCommentList = function() { + + var localctx = new IdentifierCommentListContext(this, this._ctx, this.state); + this.enterRule(localctx, 156, SqlBaseParser.RULE_identifierCommentList); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2134; + this.match(SqlBaseParser.T__1); + this.state = 2135; + this.identifierComment(); + this.state = 2140; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2136; + this.match(SqlBaseParser.T__3); + this.state = 2137; + this.identifierComment(); + this.state = 2142; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 2143; + this.match(SqlBaseParser.T__2); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function IdentifierCommentContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_identifierComment; + return this; +} + +IdentifierCommentContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IdentifierCommentContext.prototype.constructor = IdentifierCommentContext; + +IdentifierCommentContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +IdentifierCommentContext.prototype.commentSpec = function() { + return this.getTypedRuleContext(CommentSpecContext,0); +}; + +IdentifierCommentContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterIdentifierComment(this); + } +}; + +IdentifierCommentContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitIdentifierComment(this); + } +}; + +IdentifierCommentContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitIdentifierComment(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.IdentifierCommentContext = IdentifierCommentContext; + +SqlBaseParser.prototype.identifierComment = function() { + + var localctx = new IdentifierCommentContext(this, this._ctx, this.state); + this.enterRule(localctx, 158, SqlBaseParser.RULE_identifierComment); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2145; + this.identifier(); + this.state = 2147; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.COMMENT) { + this.state = 2146; + this.commentSpec(); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function RelationPrimaryContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_relationPrimary; + return this; +} + +RelationPrimaryContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +RelationPrimaryContext.prototype.constructor = RelationPrimaryContext; + + + +RelationPrimaryContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function TableValuedFunctionContext(parser, ctx) { + RelationPrimaryContext.call(this, parser); + RelationPrimaryContext.prototype.copyFrom.call(this, ctx); + return this; +} + +TableValuedFunctionContext.prototype = Object.create(RelationPrimaryContext.prototype); +TableValuedFunctionContext.prototype.constructor = TableValuedFunctionContext; + +SqlBaseParser.TableValuedFunctionContext = TableValuedFunctionContext; + +TableValuedFunctionContext.prototype.functionTable = function() { + return this.getTypedRuleContext(FunctionTableContext,0); +}; +TableValuedFunctionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTableValuedFunction(this); + } +}; + +TableValuedFunctionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTableValuedFunction(this); + } +}; + +TableValuedFunctionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTableValuedFunction(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function InlineTableDefault2Context(parser, ctx) { + RelationPrimaryContext.call(this, parser); + RelationPrimaryContext.prototype.copyFrom.call(this, ctx); + return this; +} + +InlineTableDefault2Context.prototype = Object.create(RelationPrimaryContext.prototype); +InlineTableDefault2Context.prototype.constructor = InlineTableDefault2Context; + +SqlBaseParser.InlineTableDefault2Context = InlineTableDefault2Context; + +InlineTableDefault2Context.prototype.inlineTable = function() { + return this.getTypedRuleContext(InlineTableContext,0); +}; +InlineTableDefault2Context.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterInlineTableDefault2(this); + } +}; + +InlineTableDefault2Context.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitInlineTableDefault2(this); + } +}; + +InlineTableDefault2Context.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitInlineTableDefault2(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function AliasedRelationContext(parser, ctx) { + RelationPrimaryContext.call(this, parser); + RelationPrimaryContext.prototype.copyFrom.call(this, ctx); + return this; +} + +AliasedRelationContext.prototype = Object.create(RelationPrimaryContext.prototype); +AliasedRelationContext.prototype.constructor = AliasedRelationContext; + +SqlBaseParser.AliasedRelationContext = AliasedRelationContext; + +AliasedRelationContext.prototype.relation = function() { + return this.getTypedRuleContext(RelationContext,0); +}; + +AliasedRelationContext.prototype.tableAlias = function() { + return this.getTypedRuleContext(TableAliasContext,0); +}; + +AliasedRelationContext.prototype.sample = function() { + return this.getTypedRuleContext(SampleContext,0); +}; +AliasedRelationContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterAliasedRelation(this); + } +}; + +AliasedRelationContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitAliasedRelation(this); + } +}; + +AliasedRelationContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitAliasedRelation(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function AliasedQueryContext(parser, ctx) { + RelationPrimaryContext.call(this, parser); + RelationPrimaryContext.prototype.copyFrom.call(this, ctx); + return this; +} + +AliasedQueryContext.prototype = Object.create(RelationPrimaryContext.prototype); +AliasedQueryContext.prototype.constructor = AliasedQueryContext; + +SqlBaseParser.AliasedQueryContext = AliasedQueryContext; + +AliasedQueryContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; + +AliasedQueryContext.prototype.tableAlias = function() { + return this.getTypedRuleContext(TableAliasContext,0); +}; + +AliasedQueryContext.prototype.sample = function() { + return this.getTypedRuleContext(SampleContext,0); +}; +AliasedQueryContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterAliasedQuery(this); + } +}; + +AliasedQueryContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitAliasedQuery(this); + } +}; + +AliasedQueryContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitAliasedQuery(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function TableNameContext(parser, ctx) { + RelationPrimaryContext.call(this, parser); + RelationPrimaryContext.prototype.copyFrom.call(this, ctx); + return this; +} + +TableNameContext.prototype = Object.create(RelationPrimaryContext.prototype); +TableNameContext.prototype.constructor = TableNameContext; + +SqlBaseParser.TableNameContext = TableNameContext; + +TableNameContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +TableNameContext.prototype.tableAlias = function() { + return this.getTypedRuleContext(TableAliasContext,0); +}; + +TableNameContext.prototype.sample = function() { + return this.getTypedRuleContext(SampleContext,0); +}; +TableNameContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTableName(this); + } +}; + +TableNameContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTableName(this); + } +}; + +TableNameContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTableName(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.RelationPrimaryContext = RelationPrimaryContext; + +SqlBaseParser.prototype.relationPrimary = function() { + + var localctx = new RelationPrimaryContext(this, this._ctx, this.state); + this.enterRule(localctx, 160, SqlBaseParser.RULE_relationPrimary); + try { + this.state = 2173; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,270,this._ctx); + switch(la_) { + case 1: + localctx = new TableNameContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 2149; + this.multipartIdentifier(); + this.state = 2151; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,267,this._ctx); + if(la_===1) { + this.state = 2150; + this.sample(); + + } + this.state = 2153; + this.tableAlias(); + break; + + case 2: + localctx = new AliasedQueryContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 2155; + this.match(SqlBaseParser.T__1); + this.state = 2156; + this.query(); + this.state = 2157; + this.match(SqlBaseParser.T__2); + this.state = 2159; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,268,this._ctx); + if(la_===1) { + this.state = 2158; + this.sample(); + + } + this.state = 2161; + this.tableAlias(); + break; + + case 3: + localctx = new AliasedRelationContext(this, localctx); + this.enterOuterAlt(localctx, 3); + this.state = 2163; + this.match(SqlBaseParser.T__1); + this.state = 2164; + this.relation(); + this.state = 2165; + this.match(SqlBaseParser.T__2); + this.state = 2167; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,269,this._ctx); + if(la_===1) { + this.state = 2166; + this.sample(); + + } + this.state = 2169; + this.tableAlias(); + break; + + case 4: + localctx = new InlineTableDefault2Context(this, localctx); + this.enterOuterAlt(localctx, 4); + this.state = 2171; + this.inlineTable(); + break; + + case 5: + localctx = new TableValuedFunctionContext(this, localctx); + this.enterOuterAlt(localctx, 5); + this.state = 2172; + this.functionTable(); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function InlineTableContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_inlineTable; + return this; +} + +InlineTableContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +InlineTableContext.prototype.constructor = InlineTableContext; + +InlineTableContext.prototype.VALUES = function() { + return this.getToken(SqlBaseParser.VALUES, 0); +}; + +InlineTableContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +InlineTableContext.prototype.tableAlias = function() { + return this.getTypedRuleContext(TableAliasContext,0); +}; + +InlineTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterInlineTable(this); + } +}; + +InlineTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitInlineTable(this); + } +}; + +InlineTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitInlineTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.InlineTableContext = InlineTableContext; + +SqlBaseParser.prototype.inlineTable = function() { + + var localctx = new InlineTableContext(this, this._ctx, this.state); + this.enterRule(localctx, 162, SqlBaseParser.RULE_inlineTable); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2175; + this.match(SqlBaseParser.VALUES); + this.state = 2176; + this.expression(); + this.state = 2181; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,271,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 2177; + this.match(SqlBaseParser.T__3); + this.state = 2178; + this.expression(); + } + this.state = 2183; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,271,this._ctx); + } + + this.state = 2184; + this.tableAlias(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function FunctionTableContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_functionTable; + this.funcName = null; // ErrorCapturingIdentifierContext + return this; +} + +FunctionTableContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +FunctionTableContext.prototype.constructor = FunctionTableContext; + +FunctionTableContext.prototype.tableAlias = function() { + return this.getTypedRuleContext(TableAliasContext,0); +}; + +FunctionTableContext.prototype.errorCapturingIdentifier = function() { + return this.getTypedRuleContext(ErrorCapturingIdentifierContext,0); +}; + +FunctionTableContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +FunctionTableContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterFunctionTable(this); + } +}; + +FunctionTableContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitFunctionTable(this); + } +}; + +FunctionTableContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitFunctionTable(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.FunctionTableContext = FunctionTableContext; + +SqlBaseParser.prototype.functionTable = function() { + + var localctx = new FunctionTableContext(this, this._ctx, this.state); + this.enterRule(localctx, 164, SqlBaseParser.RULE_functionTable); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2186; + localctx.funcName = this.errorCapturingIdentifier(); + this.state = 2187; + this.match(SqlBaseParser.T__1); + this.state = 2196; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,273,this._ctx); + if(la_===1) { + this.state = 2188; + this.expression(); + this.state = 2193; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2189; + this.match(SqlBaseParser.T__3); + this.state = 2190; + this.expression(); + this.state = 2195; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + + } + this.state = 2198; + this.match(SqlBaseParser.T__2); + this.state = 2199; + this.tableAlias(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TableAliasContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_tableAlias; + return this; +} + +TableAliasContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TableAliasContext.prototype.constructor = TableAliasContext; + +TableAliasContext.prototype.strictIdentifier = function() { + return this.getTypedRuleContext(StrictIdentifierContext,0); +}; + +TableAliasContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +TableAliasContext.prototype.identifierList = function() { + return this.getTypedRuleContext(IdentifierListContext,0); +}; + +TableAliasContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTableAlias(this); + } +}; + +TableAliasContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTableAlias(this); + } +}; + +TableAliasContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTableAlias(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.TableAliasContext = TableAliasContext; + +SqlBaseParser.prototype.tableAlias = function() { + + var localctx = new TableAliasContext(this, this._ctx, this.state); + this.enterRule(localctx, 166, SqlBaseParser.RULE_tableAlias); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2208; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,276,this._ctx); + if(la_===1) { + this.state = 2202; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,274,this._ctx); + if(la_===1) { + this.state = 2201; + this.match(SqlBaseParser.AS); + + } + this.state = 2204; + this.strictIdentifier(); + this.state = 2206; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,275,this._ctx); + if(la_===1) { + this.state = 2205; + this.identifierList(); + + } + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function RowFormatContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_rowFormat; + return this; +} + +RowFormatContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +RowFormatContext.prototype.constructor = RowFormatContext; + + + +RowFormatContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function RowFormatSerdeContext(parser, ctx) { + RowFormatContext.call(this, parser); + this.name = null; // Token; + this.props = null; // TablePropertyListContext; + RowFormatContext.prototype.copyFrom.call(this, ctx); + return this; +} + +RowFormatSerdeContext.prototype = Object.create(RowFormatContext.prototype); +RowFormatSerdeContext.prototype.constructor = RowFormatSerdeContext; + +SqlBaseParser.RowFormatSerdeContext = RowFormatSerdeContext; + +RowFormatSerdeContext.prototype.ROW = function() { + return this.getToken(SqlBaseParser.ROW, 0); +}; + +RowFormatSerdeContext.prototype.FORMAT = function() { + return this.getToken(SqlBaseParser.FORMAT, 0); +}; + +RowFormatSerdeContext.prototype.SERDE = function() { + return this.getToken(SqlBaseParser.SERDE, 0); +}; + +RowFormatSerdeContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +RowFormatSerdeContext.prototype.WITH = function() { + return this.getToken(SqlBaseParser.WITH, 0); +}; + +RowFormatSerdeContext.prototype.SERDEPROPERTIES = function() { + return this.getToken(SqlBaseParser.SERDEPROPERTIES, 0); +}; + +RowFormatSerdeContext.prototype.tablePropertyList = function() { + return this.getTypedRuleContext(TablePropertyListContext,0); +}; +RowFormatSerdeContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterRowFormatSerde(this); + } +}; + +RowFormatSerdeContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitRowFormatSerde(this); + } +}; + +RowFormatSerdeContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitRowFormatSerde(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function RowFormatDelimitedContext(parser, ctx) { + RowFormatContext.call(this, parser); + this.fieldsTerminatedBy = null; // Token; + this.escapedBy = null; // Token; + this.collectionItemsTerminatedBy = null; // Token; + this.keysTerminatedBy = null; // Token; + this.linesSeparatedBy = null; // Token; + this.nullDefinedAs = null; // Token; + RowFormatContext.prototype.copyFrom.call(this, ctx); + return this; +} + +RowFormatDelimitedContext.prototype = Object.create(RowFormatContext.prototype); +RowFormatDelimitedContext.prototype.constructor = RowFormatDelimitedContext; + +SqlBaseParser.RowFormatDelimitedContext = RowFormatDelimitedContext; + +RowFormatDelimitedContext.prototype.ROW = function() { + return this.getToken(SqlBaseParser.ROW, 0); +}; + +RowFormatDelimitedContext.prototype.FORMAT = function() { + return this.getToken(SqlBaseParser.FORMAT, 0); +}; + +RowFormatDelimitedContext.prototype.DELIMITED = function() { + return this.getToken(SqlBaseParser.DELIMITED, 0); +}; + +RowFormatDelimitedContext.prototype.FIELDS = function() { + return this.getToken(SqlBaseParser.FIELDS, 0); +}; + +RowFormatDelimitedContext.prototype.TERMINATED = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.TERMINATED); + } else { + return this.getToken(SqlBaseParser.TERMINATED, i); + } +}; + + +RowFormatDelimitedContext.prototype.BY = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.BY); + } else { + return this.getToken(SqlBaseParser.BY, i); + } +}; + + +RowFormatDelimitedContext.prototype.COLLECTION = function() { + return this.getToken(SqlBaseParser.COLLECTION, 0); +}; + +RowFormatDelimitedContext.prototype.ITEMS = function() { + return this.getToken(SqlBaseParser.ITEMS, 0); +}; + +RowFormatDelimitedContext.prototype.MAP = function() { + return this.getToken(SqlBaseParser.MAP, 0); +}; + +RowFormatDelimitedContext.prototype.KEYS = function() { + return this.getToken(SqlBaseParser.KEYS, 0); +}; + +RowFormatDelimitedContext.prototype.LINES = function() { + return this.getToken(SqlBaseParser.LINES, 0); +}; + +RowFormatDelimitedContext.prototype.NULL = function() { + return this.getToken(SqlBaseParser.NULL, 0); +}; + +RowFormatDelimitedContext.prototype.DEFINED = function() { + return this.getToken(SqlBaseParser.DEFINED, 0); +}; + +RowFormatDelimitedContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +RowFormatDelimitedContext.prototype.STRING = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.STRING); + } else { + return this.getToken(SqlBaseParser.STRING, i); + } +}; + + +RowFormatDelimitedContext.prototype.ESCAPED = function() { + return this.getToken(SqlBaseParser.ESCAPED, 0); +}; +RowFormatDelimitedContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterRowFormatDelimited(this); + } +}; + +RowFormatDelimitedContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitRowFormatDelimited(this); + } +}; + +RowFormatDelimitedContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitRowFormatDelimited(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.RowFormatContext = RowFormatContext; + +SqlBaseParser.prototype.rowFormat = function() { + + var localctx = new RowFormatContext(this, this._ctx, this.state); + this.enterRule(localctx, 168, SqlBaseParser.RULE_rowFormat); + try { + this.state = 2259; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,284,this._ctx); + switch(la_) { + case 1: + localctx = new RowFormatSerdeContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 2210; + this.match(SqlBaseParser.ROW); + this.state = 2211; + this.match(SqlBaseParser.FORMAT); + this.state = 2212; + this.match(SqlBaseParser.SERDE); + this.state = 2213; + localctx.name = this.match(SqlBaseParser.STRING); + this.state = 2217; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,277,this._ctx); + if(la_===1) { + this.state = 2214; + this.match(SqlBaseParser.WITH); + this.state = 2215; + this.match(SqlBaseParser.SERDEPROPERTIES); + this.state = 2216; + localctx.props = this.tablePropertyList(); + + } + break; + + case 2: + localctx = new RowFormatDelimitedContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 2219; + this.match(SqlBaseParser.ROW); + this.state = 2220; + this.match(SqlBaseParser.FORMAT); + this.state = 2221; + this.match(SqlBaseParser.DELIMITED); + this.state = 2231; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,279,this._ctx); + if(la_===1) { + this.state = 2222; + this.match(SqlBaseParser.FIELDS); + this.state = 2223; + this.match(SqlBaseParser.TERMINATED); + this.state = 2224; + this.match(SqlBaseParser.BY); + this.state = 2225; + localctx.fieldsTerminatedBy = this.match(SqlBaseParser.STRING); + this.state = 2229; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,278,this._ctx); + if(la_===1) { + this.state = 2226; + this.match(SqlBaseParser.ESCAPED); + this.state = 2227; + this.match(SqlBaseParser.BY); + this.state = 2228; + localctx.escapedBy = this.match(SqlBaseParser.STRING); + + } + + } + this.state = 2238; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,280,this._ctx); + if(la_===1) { + this.state = 2233; + this.match(SqlBaseParser.COLLECTION); + this.state = 2234; + this.match(SqlBaseParser.ITEMS); + this.state = 2235; + this.match(SqlBaseParser.TERMINATED); + this.state = 2236; + this.match(SqlBaseParser.BY); + this.state = 2237; + localctx.collectionItemsTerminatedBy = this.match(SqlBaseParser.STRING); + + } + this.state = 2245; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,281,this._ctx); + if(la_===1) { + this.state = 2240; + this.match(SqlBaseParser.MAP); + this.state = 2241; + this.match(SqlBaseParser.KEYS); + this.state = 2242; + this.match(SqlBaseParser.TERMINATED); + this.state = 2243; + this.match(SqlBaseParser.BY); + this.state = 2244; + localctx.keysTerminatedBy = this.match(SqlBaseParser.STRING); + + } + this.state = 2251; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,282,this._ctx); + if(la_===1) { + this.state = 2247; + this.match(SqlBaseParser.LINES); + this.state = 2248; + this.match(SqlBaseParser.TERMINATED); + this.state = 2249; + this.match(SqlBaseParser.BY); + this.state = 2250; + localctx.linesSeparatedBy = this.match(SqlBaseParser.STRING); + + } + this.state = 2257; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,283,this._ctx); + if(la_===1) { + this.state = 2253; + this.match(SqlBaseParser.NULL); + this.state = 2254; + this.match(SqlBaseParser.DEFINED); + this.state = 2255; + this.match(SqlBaseParser.AS); + this.state = 2256; + localctx.nullDefinedAs = this.match(SqlBaseParser.STRING); + + } + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function MultipartIdentifierListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_multipartIdentifierList; + return this; +} + +MultipartIdentifierListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +MultipartIdentifierListContext.prototype.constructor = MultipartIdentifierListContext; + +MultipartIdentifierListContext.prototype.multipartIdentifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(MultipartIdentifierContext); + } else { + return this.getTypedRuleContext(MultipartIdentifierContext,i); + } +}; + +MultipartIdentifierListContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterMultipartIdentifierList(this); + } +}; + +MultipartIdentifierListContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitMultipartIdentifierList(this); + } +}; + +MultipartIdentifierListContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitMultipartIdentifierList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.MultipartIdentifierListContext = MultipartIdentifierListContext; + +SqlBaseParser.prototype.multipartIdentifierList = function() { + + var localctx = new MultipartIdentifierListContext(this, this._ctx, this.state); + this.enterRule(localctx, 170, SqlBaseParser.RULE_multipartIdentifierList); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2261; + this.multipartIdentifier(); + this.state = 2266; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2262; + this.match(SqlBaseParser.T__3); + this.state = 2263; + this.multipartIdentifier(); + this.state = 2268; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function MultipartIdentifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_multipartIdentifier; + this._errorCapturingIdentifier = null; // ErrorCapturingIdentifierContext + this.parts = []; // of ErrorCapturingIdentifierContexts + return this; +} + +MultipartIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +MultipartIdentifierContext.prototype.constructor = MultipartIdentifierContext; + +MultipartIdentifierContext.prototype.errorCapturingIdentifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ErrorCapturingIdentifierContext); + } else { + return this.getTypedRuleContext(ErrorCapturingIdentifierContext,i); + } +}; + +MultipartIdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterMultipartIdentifier(this); + } +}; + +MultipartIdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitMultipartIdentifier(this); + } +}; + +MultipartIdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitMultipartIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.MultipartIdentifierContext = MultipartIdentifierContext; + +SqlBaseParser.prototype.multipartIdentifier = function() { + + var localctx = new MultipartIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 172, SqlBaseParser.RULE_multipartIdentifier); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2269; + localctx._errorCapturingIdentifier = this.errorCapturingIdentifier(); + localctx.parts.push(localctx._errorCapturingIdentifier); + this.state = 2274; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,286,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 2270; + this.match(SqlBaseParser.T__4); + this.state = 2271; + localctx._errorCapturingIdentifier = this.errorCapturingIdentifier(); + localctx.parts.push(localctx._errorCapturingIdentifier); + } + this.state = 2276; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,286,this._ctx); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TableIdentifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_tableIdentifier; + this.db = null; // ErrorCapturingIdentifierContext + this.table = null; // ErrorCapturingIdentifierContext + return this; +} + +TableIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TableIdentifierContext.prototype.constructor = TableIdentifierContext; + +TableIdentifierContext.prototype.errorCapturingIdentifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ErrorCapturingIdentifierContext); + } else { + return this.getTypedRuleContext(ErrorCapturingIdentifierContext,i); + } +}; + +TableIdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTableIdentifier(this); + } +}; + +TableIdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTableIdentifier(this); + } +}; + +TableIdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTableIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.TableIdentifierContext = TableIdentifierContext; + +SqlBaseParser.prototype.tableIdentifier = function() { + + var localctx = new TableIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 174, SqlBaseParser.RULE_tableIdentifier); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2280; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,287,this._ctx); + if(la_===1) { + this.state = 2277; + localctx.db = this.errorCapturingIdentifier(); + this.state = 2278; + this.match(SqlBaseParser.T__4); + + } + this.state = 2282; + localctx.table = this.errorCapturingIdentifier(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function NamedExpressionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_namedExpression; + this.name = null; // ErrorCapturingIdentifierContext + return this; +} + +NamedExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +NamedExpressionContext.prototype.constructor = NamedExpressionContext; + +NamedExpressionContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +NamedExpressionContext.prototype.identifierList = function() { + return this.getTypedRuleContext(IdentifierListContext,0); +}; + +NamedExpressionContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +NamedExpressionContext.prototype.errorCapturingIdentifier = function() { + return this.getTypedRuleContext(ErrorCapturingIdentifierContext,0); +}; + +NamedExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterNamedExpression(this); + } +}; + +NamedExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitNamedExpression(this); + } +}; + +NamedExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitNamedExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.NamedExpressionContext = NamedExpressionContext; + +SqlBaseParser.prototype.namedExpression = function() { + + var localctx = new NamedExpressionContext(this, this._ctx, this.state); + this.enterRule(localctx, 176, SqlBaseParser.RULE_namedExpression); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2284; + this.expression(); + this.state = 2292; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,290,this._ctx); + if(la_===1) { + this.state = 2286; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,288,this._ctx); + if(la_===1) { + this.state = 2285; + this.match(SqlBaseParser.AS); + + } + this.state = 2290; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,289,this._ctx); + switch(la_) { + case 1: + this.state = 2288; + localctx.name = this.errorCapturingIdentifier(); + break; + + case 2: + this.state = 2289; + this.identifierList(); + break; + + } + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function NamedExpressionSeqContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_namedExpressionSeq; + return this; +} + +NamedExpressionSeqContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +NamedExpressionSeqContext.prototype.constructor = NamedExpressionSeqContext; + +NamedExpressionSeqContext.prototype.namedExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(NamedExpressionContext); + } else { + return this.getTypedRuleContext(NamedExpressionContext,i); + } +}; + +NamedExpressionSeqContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterNamedExpressionSeq(this); + } +}; + +NamedExpressionSeqContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitNamedExpressionSeq(this); + } +}; + +NamedExpressionSeqContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitNamedExpressionSeq(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.NamedExpressionSeqContext = NamedExpressionSeqContext; + +SqlBaseParser.prototype.namedExpressionSeq = function() { + + var localctx = new NamedExpressionSeqContext(this, this._ctx, this.state); + this.enterRule(localctx, 178, SqlBaseParser.RULE_namedExpressionSeq); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2294; + this.namedExpression(); + this.state = 2299; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,291,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 2295; + this.match(SqlBaseParser.T__3); + this.state = 2296; + this.namedExpression(); + } + this.state = 2301; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,291,this._ctx); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TransformListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_transformList; + this._transform = null; // TransformContext + this.transforms = []; // of TransformContexts + return this; +} + +TransformListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TransformListContext.prototype.constructor = TransformListContext; + +TransformListContext.prototype.transform = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TransformContext); + } else { + return this.getTypedRuleContext(TransformContext,i); + } +}; + +TransformListContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTransformList(this); + } +}; + +TransformListContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTransformList(this); + } +}; + +TransformListContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTransformList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.TransformListContext = TransformListContext; + +SqlBaseParser.prototype.transformList = function() { + + var localctx = new TransformListContext(this, this._ctx, this.state); + this.enterRule(localctx, 180, SqlBaseParser.RULE_transformList); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2302; + this.match(SqlBaseParser.T__1); + this.state = 2303; + localctx._transform = this.transform(); + localctx.transforms.push(localctx._transform); + this.state = 2308; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2304; + this.match(SqlBaseParser.T__3); + this.state = 2305; + localctx._transform = this.transform(); + localctx.transforms.push(localctx._transform); + this.state = 2310; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 2311; + this.match(SqlBaseParser.T__2); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TransformContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_transform; + return this; +} + +TransformContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TransformContext.prototype.constructor = TransformContext; + + + +TransformContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function IdentityTransformContext(parser, ctx) { + TransformContext.call(this, parser); + TransformContext.prototype.copyFrom.call(this, ctx); + return this; +} + +IdentityTransformContext.prototype = Object.create(TransformContext.prototype); +IdentityTransformContext.prototype.constructor = IdentityTransformContext; + +SqlBaseParser.IdentityTransformContext = IdentityTransformContext; + +IdentityTransformContext.prototype.qualifiedName = function() { + return this.getTypedRuleContext(QualifiedNameContext,0); +}; +IdentityTransformContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterIdentityTransform(this); + } +}; + +IdentityTransformContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitIdentityTransform(this); + } +}; + +IdentityTransformContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitIdentityTransform(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ApplyTransformContext(parser, ctx) { + TransformContext.call(this, parser); + this.transformName = null; // IdentifierContext; + this._transformArgument = null; // TransformArgumentContext; + this.argument = []; // of TransformArgumentContexts; + TransformContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ApplyTransformContext.prototype = Object.create(TransformContext.prototype); +ApplyTransformContext.prototype.constructor = ApplyTransformContext; + +SqlBaseParser.ApplyTransformContext = ApplyTransformContext; + +ApplyTransformContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +ApplyTransformContext.prototype.transformArgument = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TransformArgumentContext); + } else { + return this.getTypedRuleContext(TransformArgumentContext,i); + } +}; +ApplyTransformContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterApplyTransform(this); + } +}; + +ApplyTransformContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitApplyTransform(this); + } +}; + +ApplyTransformContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitApplyTransform(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.TransformContext = TransformContext; + +SqlBaseParser.prototype.transform = function() { + + var localctx = new TransformContext(this, this._ctx, this.state); + this.enterRule(localctx, 182, SqlBaseParser.RULE_transform); + var _la = 0; // Token type + try { + this.state = 2326; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,294,this._ctx); + switch(la_) { + case 1: + localctx = new IdentityTransformContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 2313; + this.qualifiedName(); + break; + + case 2: + localctx = new ApplyTransformContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 2314; + localctx.transformName = this.identifier(); + this.state = 2315; + this.match(SqlBaseParser.T__1); + this.state = 2316; + localctx._transformArgument = this.transformArgument(); + localctx.argument.push(localctx._transformArgument); + this.state = 2321; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2317; + this.match(SqlBaseParser.T__3); + this.state = 2318; + localctx._transformArgument = this.transformArgument(); + localctx.argument.push(localctx._transformArgument); + this.state = 2323; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 2324; + this.match(SqlBaseParser.T__2); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TransformArgumentContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_transformArgument; + return this; +} + +TransformArgumentContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TransformArgumentContext.prototype.constructor = TransformArgumentContext; + +TransformArgumentContext.prototype.qualifiedName = function() { + return this.getTypedRuleContext(QualifiedNameContext,0); +}; + +TransformArgumentContext.prototype.constant = function() { + return this.getTypedRuleContext(ConstantContext,0); +}; + +TransformArgumentContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTransformArgument(this); + } +}; + +TransformArgumentContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTransformArgument(this); + } +}; + +TransformArgumentContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTransformArgument(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.TransformArgumentContext = TransformArgumentContext; + +SqlBaseParser.prototype.transformArgument = function() { + + var localctx = new TransformArgumentContext(this, this._ctx, this.state); + this.enterRule(localctx, 184, SqlBaseParser.RULE_transformArgument); + try { + this.state = 2330; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,295,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 2328; + this.qualifiedName(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 2329; + this.constant(); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ExpressionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_expression; + return this; +} + +ExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ExpressionContext.prototype.constructor = ExpressionContext; + +ExpressionContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; + +ExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterExpression(this); + } +}; + +ExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitExpression(this); + } +}; + +ExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ExpressionContext = ExpressionContext; + +SqlBaseParser.prototype.expression = function() { + + var localctx = new ExpressionContext(this, this._ctx, this.state); + this.enterRule(localctx, 186, SqlBaseParser.RULE_expression); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2332; + this.booleanExpression(0); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function BooleanExpressionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_booleanExpression; + return this; +} + +BooleanExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +BooleanExpressionContext.prototype.constructor = BooleanExpressionContext; + + + +BooleanExpressionContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + +function LogicalNotContext(parser, ctx) { + BooleanExpressionContext.call(this, parser); + BooleanExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LogicalNotContext.prototype = Object.create(BooleanExpressionContext.prototype); +LogicalNotContext.prototype.constructor = LogicalNotContext; + +SqlBaseParser.LogicalNotContext = LogicalNotContext; + +LogicalNotContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +LogicalNotContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; +LogicalNotContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterLogicalNot(this); + } +}; + +LogicalNotContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitLogicalNot(this); + } +}; + +LogicalNotContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitLogicalNot(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function PredicatedContext(parser, ctx) { + BooleanExpressionContext.call(this, parser); + BooleanExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +PredicatedContext.prototype = Object.create(BooleanExpressionContext.prototype); +PredicatedContext.prototype.constructor = PredicatedContext; + +SqlBaseParser.PredicatedContext = PredicatedContext; + +PredicatedContext.prototype.valueExpression = function() { + return this.getTypedRuleContext(ValueExpressionContext,0); +}; + +PredicatedContext.prototype.predicate = function() { + return this.getTypedRuleContext(PredicateContext,0); +}; +PredicatedContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterPredicated(this); + } +}; + +PredicatedContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitPredicated(this); + } +}; + +PredicatedContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitPredicated(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ExistsContext(parser, ctx) { + BooleanExpressionContext.call(this, parser); + BooleanExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ExistsContext.prototype = Object.create(BooleanExpressionContext.prototype); +ExistsContext.prototype.constructor = ExistsContext; + +SqlBaseParser.ExistsContext = ExistsContext; + +ExistsContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; + +ExistsContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; +ExistsContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterExists(this); + } +}; + +ExistsContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitExists(this); + } +}; + +ExistsContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitExists(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function LogicalBinaryContext(parser, ctx) { + BooleanExpressionContext.call(this, parser); + this.left = null; // BooleanExpressionContext; + this.operator = null; // Token; + this.right = null; // BooleanExpressionContext; + BooleanExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LogicalBinaryContext.prototype = Object.create(BooleanExpressionContext.prototype); +LogicalBinaryContext.prototype.constructor = LogicalBinaryContext; + +SqlBaseParser.LogicalBinaryContext = LogicalBinaryContext; + +LogicalBinaryContext.prototype.booleanExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(BooleanExpressionContext); + } else { + return this.getTypedRuleContext(BooleanExpressionContext,i); + } +}; + +LogicalBinaryContext.prototype.AND = function() { + return this.getToken(SqlBaseParser.AND, 0); +}; + +LogicalBinaryContext.prototype.OR = function() { + return this.getToken(SqlBaseParser.OR, 0); +}; +LogicalBinaryContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterLogicalBinary(this); + } +}; + +LogicalBinaryContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitLogicalBinary(this); + } +}; + +LogicalBinaryContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitLogicalBinary(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.prototype.booleanExpression = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new BooleanExpressionContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 188; + this.enterRecursionRule(localctx, 188, SqlBaseParser.RULE_booleanExpression, _p); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2346; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,297,this._ctx); + switch(la_) { + case 1: + localctx = new LogicalNotContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + + this.state = 2335; + this.match(SqlBaseParser.NOT); + this.state = 2336; + this.booleanExpression(5); + break; + + case 2: + localctx = new ExistsContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2337; + this.match(SqlBaseParser.EXISTS); + this.state = 2338; + this.match(SqlBaseParser.T__1); + this.state = 2339; + this.query(); + this.state = 2340; + this.match(SqlBaseParser.T__2); + break; + + case 3: + localctx = new PredicatedContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2342; + this.valueExpression(0); + this.state = 2344; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,296,this._ctx); + if(la_===1) { + this.state = 2343; + this.predicate(); + + } + break; + + } + this._ctx.stop = this._input.LT(-1); + this.state = 2356; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,299,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + if(this._parseListeners!==null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + this.state = 2354; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,298,this._ctx); + switch(la_) { + case 1: + localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, SqlBaseParser.RULE_booleanExpression); + this.state = 2348; + if (!( this.precpred(this._ctx, 2))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); + } + this.state = 2349; + localctx.operator = this.match(SqlBaseParser.AND); + this.state = 2350; + localctx.right = this.booleanExpression(3); + break; + + case 2: + localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, SqlBaseParser.RULE_booleanExpression); + this.state = 2351; + if (!( this.precpred(this._ctx, 1))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); + } + this.state = 2352; + localctx.operator = this.match(SqlBaseParser.OR); + this.state = 2353; + localctx.right = this.booleanExpression(2); + break; + + } + } + this.state = 2358; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,299,this._ctx); + } + + } catch( error) { + if(error instanceof antlr4.error.RecognitionException) { + localctx.exception = error; + this._errHandler.reportError(this, error); + this._errHandler.recover(this, error); + } else { + throw error; + } + } finally { + this.unrollRecursionContexts(_parentctx) + } + return localctx; +}; + + +function PredicateContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_predicate; + this.kind = null; // Token + this.lower = null; // ValueExpressionContext + this.upper = null; // ValueExpressionContext + this.pattern = null; // ValueExpressionContext + this.quantifier = null; // Token + this.escapeChar = null; // Token + this.right = null; // ValueExpressionContext + return this; +} + +PredicateContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PredicateContext.prototype.constructor = PredicateContext; + +PredicateContext.prototype.AND = function() { + return this.getToken(SqlBaseParser.AND, 0); +}; + +PredicateContext.prototype.BETWEEN = function() { + return this.getToken(SqlBaseParser.BETWEEN, 0); +}; + +PredicateContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; + +PredicateContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +PredicateContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +PredicateContext.prototype.IN = function() { + return this.getToken(SqlBaseParser.IN, 0); +}; + +PredicateContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; + +PredicateContext.prototype.RLIKE = function() { + return this.getToken(SqlBaseParser.RLIKE, 0); +}; + +PredicateContext.prototype.LIKE = function() { + return this.getToken(SqlBaseParser.LIKE, 0); +}; + +PredicateContext.prototype.ANY = function() { + return this.getToken(SqlBaseParser.ANY, 0); +}; + +PredicateContext.prototype.SOME = function() { + return this.getToken(SqlBaseParser.SOME, 0); +}; + +PredicateContext.prototype.ALL = function() { + return this.getToken(SqlBaseParser.ALL, 0); +}; + +PredicateContext.prototype.ESCAPE = function() { + return this.getToken(SqlBaseParser.ESCAPE, 0); +}; + +PredicateContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +PredicateContext.prototype.IS = function() { + return this.getToken(SqlBaseParser.IS, 0); +}; + +PredicateContext.prototype.NULL = function() { + return this.getToken(SqlBaseParser.NULL, 0); +}; + +PredicateContext.prototype.TRUE = function() { + return this.getToken(SqlBaseParser.TRUE, 0); +}; + +PredicateContext.prototype.FALSE = function() { + return this.getToken(SqlBaseParser.FALSE, 0); +}; + +PredicateContext.prototype.UNKNOWN = function() { + return this.getToken(SqlBaseParser.UNKNOWN, 0); +}; + +PredicateContext.prototype.FROM = function() { + return this.getToken(SqlBaseParser.FROM, 0); +}; + +PredicateContext.prototype.DISTINCT = function() { + return this.getToken(SqlBaseParser.DISTINCT, 0); +}; + +PredicateContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterPredicate(this); + } +}; + +PredicateContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitPredicate(this); + } +}; + +PredicateContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitPredicate(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.PredicateContext = PredicateContext; + +SqlBaseParser.prototype.predicate = function() { + + var localctx = new PredicateContext(this, this._ctx, this.state); + this.enterRule(localctx, 190, SqlBaseParser.RULE_predicate); + var _la = 0; // Token type + try { + this.state = 2441; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,313,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 2360; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.NOT) { + this.state = 2359; + this.match(SqlBaseParser.NOT); + } + + this.state = 2362; + localctx.kind = this.match(SqlBaseParser.BETWEEN); + this.state = 2363; + localctx.lower = this.valueExpression(0); + this.state = 2364; + this.match(SqlBaseParser.AND); + this.state = 2365; + localctx.upper = this.valueExpression(0); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 2368; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.NOT) { + this.state = 2367; + this.match(SqlBaseParser.NOT); + } + + this.state = 2370; + localctx.kind = this.match(SqlBaseParser.IN); + this.state = 2371; + this.match(SqlBaseParser.T__1); + this.state = 2372; + this.expression(); + this.state = 2377; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2373; + this.match(SqlBaseParser.T__3); + this.state = 2374; + this.expression(); + this.state = 2379; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 2380; + this.match(SqlBaseParser.T__2); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 2383; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.NOT) { + this.state = 2382; + this.match(SqlBaseParser.NOT); + } + + this.state = 2385; + localctx.kind = this.match(SqlBaseParser.IN); + this.state = 2386; + this.match(SqlBaseParser.T__1); + this.state = 2387; + this.query(); + this.state = 2388; + this.match(SqlBaseParser.T__2); + break; + + case 4: + this.enterOuterAlt(localctx, 4); + this.state = 2391; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.NOT) { + this.state = 2390; + this.match(SqlBaseParser.NOT); + } + + this.state = 2393; + localctx.kind = this.match(SqlBaseParser.RLIKE); + this.state = 2394; + localctx.pattern = this.valueExpression(0); + break; + + case 5: + this.enterOuterAlt(localctx, 5); + this.state = 2396; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.NOT) { + this.state = 2395; + this.match(SqlBaseParser.NOT); + } + + this.state = 2398; + localctx.kind = this.match(SqlBaseParser.LIKE); + this.state = 2399; + localctx.quantifier = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.ALL || _la===SqlBaseParser.ANY || _la===SqlBaseParser.SOME)) { + localctx.quantifier = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 2413; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,307,this._ctx); + switch(la_) { + case 1: + this.state = 2400; + this.match(SqlBaseParser.T__1); + this.state = 2401; + this.match(SqlBaseParser.T__2); + break; + + case 2: + this.state = 2402; + this.match(SqlBaseParser.T__1); + this.state = 2403; + this.expression(); + this.state = 2408; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2404; + this.match(SqlBaseParser.T__3); + this.state = 2405; + this.expression(); + this.state = 2410; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 2411; + this.match(SqlBaseParser.T__2); + break; + + } + break; + + case 6: + this.enterOuterAlt(localctx, 6); + this.state = 2416; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.NOT) { + this.state = 2415; + this.match(SqlBaseParser.NOT); + } + + this.state = 2418; + localctx.kind = this.match(SqlBaseParser.LIKE); + this.state = 2419; + localctx.pattern = this.valueExpression(0); + this.state = 2422; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,309,this._ctx); + if(la_===1) { + this.state = 2420; + this.match(SqlBaseParser.ESCAPE); + this.state = 2421; + localctx.escapeChar = this.match(SqlBaseParser.STRING); + + } + break; + + case 7: + this.enterOuterAlt(localctx, 7); + this.state = 2424; + this.match(SqlBaseParser.IS); + this.state = 2426; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.NOT) { + this.state = 2425; + this.match(SqlBaseParser.NOT); + } + + this.state = 2428; + localctx.kind = this.match(SqlBaseParser.NULL); + break; + + case 8: + this.enterOuterAlt(localctx, 8); + this.state = 2429; + this.match(SqlBaseParser.IS); + this.state = 2431; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.NOT) { + this.state = 2430; + this.match(SqlBaseParser.NOT); + } + + this.state = 2433; + localctx.kind = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.FALSE || _la===SqlBaseParser.TRUE || _la===SqlBaseParser.UNKNOWN)) { + localctx.kind = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + + case 9: + this.enterOuterAlt(localctx, 9); + this.state = 2434; + this.match(SqlBaseParser.IS); + this.state = 2436; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.NOT) { + this.state = 2435; + this.match(SqlBaseParser.NOT); + } + + this.state = 2438; + localctx.kind = this.match(SqlBaseParser.DISTINCT); + this.state = 2439; + this.match(SqlBaseParser.FROM); + this.state = 2440; + localctx.right = this.valueExpression(0); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ValueExpressionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_valueExpression; + return this; +} + +ValueExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ValueExpressionContext.prototype.constructor = ValueExpressionContext; + + + +ValueExpressionContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + +function ValueExpressionDefaultContext(parser, ctx) { + ValueExpressionContext.call(this, parser); + ValueExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ValueExpressionDefaultContext.prototype = Object.create(ValueExpressionContext.prototype); +ValueExpressionDefaultContext.prototype.constructor = ValueExpressionDefaultContext; + +SqlBaseParser.ValueExpressionDefaultContext = ValueExpressionDefaultContext; + +ValueExpressionDefaultContext.prototype.primaryExpression = function() { + return this.getTypedRuleContext(PrimaryExpressionContext,0); +}; +ValueExpressionDefaultContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterValueExpressionDefault(this); + } +}; + +ValueExpressionDefaultContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitValueExpressionDefault(this); + } +}; + +ValueExpressionDefaultContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitValueExpressionDefault(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ComparisonContext(parser, ctx) { + ValueExpressionContext.call(this, parser); + this.left = null; // ValueExpressionContext; + this.right = null; // ValueExpressionContext; + ValueExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ComparisonContext.prototype = Object.create(ValueExpressionContext.prototype); +ComparisonContext.prototype.constructor = ComparisonContext; + +SqlBaseParser.ComparisonContext = ComparisonContext; + +ComparisonContext.prototype.comparisonOperator = function() { + return this.getTypedRuleContext(ComparisonOperatorContext,0); +}; + +ComparisonContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; +ComparisonContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterComparison(this); + } +}; + +ComparisonContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitComparison(this); + } +}; + +ComparisonContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitComparison(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ArithmeticBinaryContext(parser, ctx) { + ValueExpressionContext.call(this, parser); + this.left = null; // ValueExpressionContext; + this.operator = null; // Token; + this.right = null; // ValueExpressionContext; + ValueExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ArithmeticBinaryContext.prototype = Object.create(ValueExpressionContext.prototype); +ArithmeticBinaryContext.prototype.constructor = ArithmeticBinaryContext; + +SqlBaseParser.ArithmeticBinaryContext = ArithmeticBinaryContext; + +ArithmeticBinaryContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; + +ArithmeticBinaryContext.prototype.ASTERISK = function() { + return this.getToken(SqlBaseParser.ASTERISK, 0); +}; + +ArithmeticBinaryContext.prototype.SLASH = function() { + return this.getToken(SqlBaseParser.SLASH, 0); +}; + +ArithmeticBinaryContext.prototype.PERCENT = function() { + return this.getToken(SqlBaseParser.PERCENT, 0); +}; + +ArithmeticBinaryContext.prototype.DIV = function() { + return this.getToken(SqlBaseParser.DIV, 0); +}; + +ArithmeticBinaryContext.prototype.PLUS = function() { + return this.getToken(SqlBaseParser.PLUS, 0); +}; + +ArithmeticBinaryContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; + +ArithmeticBinaryContext.prototype.CONCAT_PIPE = function() { + return this.getToken(SqlBaseParser.CONCAT_PIPE, 0); +}; + +ArithmeticBinaryContext.prototype.AMPERSAND = function() { + return this.getToken(SqlBaseParser.AMPERSAND, 0); +}; + +ArithmeticBinaryContext.prototype.HAT = function() { + return this.getToken(SqlBaseParser.HAT, 0); +}; + +ArithmeticBinaryContext.prototype.PIPE = function() { + return this.getToken(SqlBaseParser.PIPE, 0); +}; +ArithmeticBinaryContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterArithmeticBinary(this); + } +}; + +ArithmeticBinaryContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitArithmeticBinary(this); + } +}; + +ArithmeticBinaryContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitArithmeticBinary(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ArithmeticUnaryContext(parser, ctx) { + ValueExpressionContext.call(this, parser); + this.operator = null; // Token; + ValueExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ArithmeticUnaryContext.prototype = Object.create(ValueExpressionContext.prototype); +ArithmeticUnaryContext.prototype.constructor = ArithmeticUnaryContext; + +SqlBaseParser.ArithmeticUnaryContext = ArithmeticUnaryContext; + +ArithmeticUnaryContext.prototype.valueExpression = function() { + return this.getTypedRuleContext(ValueExpressionContext,0); +}; + +ArithmeticUnaryContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; + +ArithmeticUnaryContext.prototype.PLUS = function() { + return this.getToken(SqlBaseParser.PLUS, 0); +}; + +ArithmeticUnaryContext.prototype.TILDE = function() { + return this.getToken(SqlBaseParser.TILDE, 0); +}; +ArithmeticUnaryContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterArithmeticUnary(this); + } +}; + +ArithmeticUnaryContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitArithmeticUnary(this); + } +}; + +ArithmeticUnaryContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitArithmeticUnary(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.prototype.valueExpression = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new ValueExpressionContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 192; + this.enterRecursionRule(localctx, 192, SqlBaseParser.RULE_valueExpression, _p); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2447; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,314,this._ctx); + switch(la_) { + case 1: + localctx = new ValueExpressionDefaultContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + + this.state = 2444; + this.primaryExpression(0); + break; + + case 2: + localctx = new ArithmeticUnaryContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2445; + localctx.operator = this._input.LT(1); + _la = this._input.LA(1); + if(!(((((_la - 269)) & ~0x1f) == 0 && ((1 << (_la - 269)) & ((1 << (SqlBaseParser.PLUS - 269)) | (1 << (SqlBaseParser.MINUS - 269)) | (1 << (SqlBaseParser.TILDE - 269)))) !== 0))) { + localctx.operator = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 2446; + this.valueExpression(7); + break; + + } + this._ctx.stop = this._input.LT(-1); + this.state = 2470; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,316,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + if(this._parseListeners!==null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + this.state = 2468; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,315,this._ctx); + switch(la_) { + case 1: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, SqlBaseParser.RULE_valueExpression); + this.state = 2449; + if (!( this.precpred(this._ctx, 6))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 6)"); + } + this.state = 2450; + localctx.operator = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.DIV || ((((_la - 271)) & ~0x1f) == 0 && ((1 << (_la - 271)) & ((1 << (SqlBaseParser.ASTERISK - 271)) | (1 << (SqlBaseParser.SLASH - 271)) | (1 << (SqlBaseParser.PERCENT - 271)))) !== 0))) { + localctx.operator = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 2451; + localctx.right = this.valueExpression(7); + break; + + case 2: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, SqlBaseParser.RULE_valueExpression); + this.state = 2452; + if (!( this.precpred(this._ctx, 5))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 5)"); + } + this.state = 2453; + localctx.operator = this._input.LT(1); + _la = this._input.LA(1); + if(!(((((_la - 269)) & ~0x1f) == 0 && ((1 << (_la - 269)) & ((1 << (SqlBaseParser.PLUS - 269)) | (1 << (SqlBaseParser.MINUS - 269)) | (1 << (SqlBaseParser.CONCAT_PIPE - 269)))) !== 0))) { + localctx.operator = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 2454; + localctx.right = this.valueExpression(6); + break; + + case 3: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, SqlBaseParser.RULE_valueExpression); + this.state = 2455; + if (!( this.precpred(this._ctx, 4))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 4)"); + } + this.state = 2456; + localctx.operator = this.match(SqlBaseParser.AMPERSAND); + this.state = 2457; + localctx.right = this.valueExpression(5); + break; + + case 4: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, SqlBaseParser.RULE_valueExpression); + this.state = 2458; + if (!( this.precpred(this._ctx, 3))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 3)"); + } + this.state = 2459; + localctx.operator = this.match(SqlBaseParser.HAT); + this.state = 2460; + localctx.right = this.valueExpression(4); + break; + + case 5: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, SqlBaseParser.RULE_valueExpression); + this.state = 2461; + if (!( this.precpred(this._ctx, 2))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); + } + this.state = 2462; + localctx.operator = this.match(SqlBaseParser.PIPE); + this.state = 2463; + localctx.right = this.valueExpression(3); + break; + + case 6: + localctx = new ComparisonContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, SqlBaseParser.RULE_valueExpression); + this.state = 2464; + if (!( this.precpred(this._ctx, 1))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); + } + this.state = 2465; + this.comparisonOperator(); + this.state = 2466; + localctx.right = this.valueExpression(2); + break; + + } + } + this.state = 2472; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,316,this._ctx); + } + + } catch( error) { + if(error instanceof antlr4.error.RecognitionException) { + localctx.exception = error; + this._errHandler.reportError(this, error); + this._errHandler.recover(this, error); + } else { + throw error; + } + } finally { + this.unrollRecursionContexts(_parentctx) + } + return localctx; +}; + + +function PrimaryExpressionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_primaryExpression; + return this; +} + +PrimaryExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PrimaryExpressionContext.prototype.constructor = PrimaryExpressionContext; + + + +PrimaryExpressionContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + +function StructContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this._namedExpression = null; // NamedExpressionContext; + this.argument = []; // of NamedExpressionContexts; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +StructContext.prototype = Object.create(PrimaryExpressionContext.prototype); +StructContext.prototype.constructor = StructContext; + +SqlBaseParser.StructContext = StructContext; + +StructContext.prototype.STRUCT = function() { + return this.getToken(SqlBaseParser.STRUCT, 0); +}; + +StructContext.prototype.namedExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(NamedExpressionContext); + } else { + return this.getTypedRuleContext(NamedExpressionContext,i); + } +}; +StructContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterStruct(this); + } +}; + +StructContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitStruct(this); + } +}; + +StructContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitStruct(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function DereferenceContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.base = null; // PrimaryExpressionContext; + this.fieldName = null; // IdentifierContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DereferenceContext.prototype = Object.create(PrimaryExpressionContext.prototype); +DereferenceContext.prototype.constructor = DereferenceContext; + +SqlBaseParser.DereferenceContext = DereferenceContext; + +DereferenceContext.prototype.primaryExpression = function() { + return this.getTypedRuleContext(PrimaryExpressionContext,0); +}; + +DereferenceContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; +DereferenceContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDereference(this); + } +}; + +DereferenceContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDereference(this); + } +}; + +DereferenceContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDereference(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SimpleCaseContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.value = null; // ExpressionContext; + this.elseExpression = null; // ExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SimpleCaseContext.prototype = Object.create(PrimaryExpressionContext.prototype); +SimpleCaseContext.prototype.constructor = SimpleCaseContext; + +SqlBaseParser.SimpleCaseContext = SimpleCaseContext; + +SimpleCaseContext.prototype.CASE = function() { + return this.getToken(SqlBaseParser.CASE, 0); +}; + +SimpleCaseContext.prototype.END = function() { + return this.getToken(SqlBaseParser.END, 0); +}; + +SimpleCaseContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +SimpleCaseContext.prototype.whenClause = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(WhenClauseContext); + } else { + return this.getTypedRuleContext(WhenClauseContext,i); + } +}; + +SimpleCaseContext.prototype.ELSE = function() { + return this.getToken(SqlBaseParser.ELSE, 0); +}; +SimpleCaseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSimpleCase(this); + } +}; + +SimpleCaseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSimpleCase(this); + } +}; + +SimpleCaseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSimpleCase(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ColumnReferenceContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ColumnReferenceContext.prototype = Object.create(PrimaryExpressionContext.prototype); +ColumnReferenceContext.prototype.constructor = ColumnReferenceContext; + +SqlBaseParser.ColumnReferenceContext = ColumnReferenceContext; + +ColumnReferenceContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; +ColumnReferenceContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterColumnReference(this); + } +}; + +ColumnReferenceContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitColumnReference(this); + } +}; + +ColumnReferenceContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitColumnReference(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function RowConstructorContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +RowConstructorContext.prototype = Object.create(PrimaryExpressionContext.prototype); +RowConstructorContext.prototype.constructor = RowConstructorContext; + +SqlBaseParser.RowConstructorContext = RowConstructorContext; + +RowConstructorContext.prototype.namedExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(NamedExpressionContext); + } else { + return this.getTypedRuleContext(NamedExpressionContext,i); + } +}; +RowConstructorContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterRowConstructor(this); + } +}; + +RowConstructorContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitRowConstructor(this); + } +}; + +RowConstructorContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitRowConstructor(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function LastContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LastContext.prototype = Object.create(PrimaryExpressionContext.prototype); +LastContext.prototype.constructor = LastContext; + +SqlBaseParser.LastContext = LastContext; + +LastContext.prototype.LAST = function() { + return this.getToken(SqlBaseParser.LAST, 0); +}; + +LastContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +LastContext.prototype.IGNORE = function() { + return this.getToken(SqlBaseParser.IGNORE, 0); +}; + +LastContext.prototype.NULLS = function() { + return this.getToken(SqlBaseParser.NULLS, 0); +}; +LastContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterLast(this); + } +}; + +LastContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitLast(this); + } +}; + +LastContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitLast(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function StarContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +StarContext.prototype = Object.create(PrimaryExpressionContext.prototype); +StarContext.prototype.constructor = StarContext; + +SqlBaseParser.StarContext = StarContext; + +StarContext.prototype.ASTERISK = function() { + return this.getToken(SqlBaseParser.ASTERISK, 0); +}; + +StarContext.prototype.qualifiedName = function() { + return this.getTypedRuleContext(QualifiedNameContext,0); +}; +StarContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterStar(this); + } +}; + +StarContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitStar(this); + } +}; + +StarContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitStar(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function OverlayContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.input = null; // ValueExpressionContext; + this.replace = null; // ValueExpressionContext; + this.position = null; // ValueExpressionContext; + this.length = null; // ValueExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +OverlayContext.prototype = Object.create(PrimaryExpressionContext.prototype); +OverlayContext.prototype.constructor = OverlayContext; + +SqlBaseParser.OverlayContext = OverlayContext; + +OverlayContext.prototype.OVERLAY = function() { + return this.getToken(SqlBaseParser.OVERLAY, 0); +}; + +OverlayContext.prototype.PLACING = function() { + return this.getToken(SqlBaseParser.PLACING, 0); +}; + +OverlayContext.prototype.FROM = function() { + return this.getToken(SqlBaseParser.FROM, 0); +}; + +OverlayContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; + +OverlayContext.prototype.FOR = function() { + return this.getToken(SqlBaseParser.FOR, 0); +}; +OverlayContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterOverlay(this); + } +}; + +OverlayContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitOverlay(this); + } +}; + +OverlayContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitOverlay(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SubscriptContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.value = null; // PrimaryExpressionContext; + this.index = null; // ValueExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SubscriptContext.prototype = Object.create(PrimaryExpressionContext.prototype); +SubscriptContext.prototype.constructor = SubscriptContext; + +SqlBaseParser.SubscriptContext = SubscriptContext; + +SubscriptContext.prototype.primaryExpression = function() { + return this.getTypedRuleContext(PrimaryExpressionContext,0); +}; + +SubscriptContext.prototype.valueExpression = function() { + return this.getTypedRuleContext(ValueExpressionContext,0); +}; +SubscriptContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSubscript(this); + } +}; + +SubscriptContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSubscript(this); + } +}; + +SubscriptContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSubscript(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SubqueryExpressionContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SubqueryExpressionContext.prototype = Object.create(PrimaryExpressionContext.prototype); +SubqueryExpressionContext.prototype.constructor = SubqueryExpressionContext; + +SqlBaseParser.SubqueryExpressionContext = SubqueryExpressionContext; + +SubqueryExpressionContext.prototype.query = function() { + return this.getTypedRuleContext(QueryContext,0); +}; +SubqueryExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSubqueryExpression(this); + } +}; + +SubqueryExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSubqueryExpression(this); + } +}; + +SubqueryExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSubqueryExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SubstringContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.str = null; // ValueExpressionContext; + this.pos = null; // ValueExpressionContext; + this.len = null; // ValueExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SubstringContext.prototype = Object.create(PrimaryExpressionContext.prototype); +SubstringContext.prototype.constructor = SubstringContext; + +SqlBaseParser.SubstringContext = SubstringContext; + +SubstringContext.prototype.SUBSTR = function() { + return this.getToken(SqlBaseParser.SUBSTR, 0); +}; + +SubstringContext.prototype.SUBSTRING = function() { + return this.getToken(SqlBaseParser.SUBSTRING, 0); +}; + +SubstringContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; + +SubstringContext.prototype.FROM = function() { + return this.getToken(SqlBaseParser.FROM, 0); +}; + +SubstringContext.prototype.FOR = function() { + return this.getToken(SqlBaseParser.FOR, 0); +}; +SubstringContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSubstring(this); + } +}; + +SubstringContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSubstring(this); + } +}; + +SubstringContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSubstring(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function CurrentDatetimeContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.name = null; // Token; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +CurrentDatetimeContext.prototype = Object.create(PrimaryExpressionContext.prototype); +CurrentDatetimeContext.prototype.constructor = CurrentDatetimeContext; + +SqlBaseParser.CurrentDatetimeContext = CurrentDatetimeContext; + +CurrentDatetimeContext.prototype.CURRENT_DATE = function() { + return this.getToken(SqlBaseParser.CURRENT_DATE, 0); +}; + +CurrentDatetimeContext.prototype.CURRENT_TIMESTAMP = function() { + return this.getToken(SqlBaseParser.CURRENT_TIMESTAMP, 0); +}; +CurrentDatetimeContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCurrentDatetime(this); + } +}; + +CurrentDatetimeContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCurrentDatetime(this); + } +}; + +CurrentDatetimeContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCurrentDatetime(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function CastContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +CastContext.prototype = Object.create(PrimaryExpressionContext.prototype); +CastContext.prototype.constructor = CastContext; + +SqlBaseParser.CastContext = CastContext; + +CastContext.prototype.CAST = function() { + return this.getToken(SqlBaseParser.CAST, 0); +}; + +CastContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +CastContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +CastContext.prototype.dataType = function() { + return this.getTypedRuleContext(DataTypeContext,0); +}; +CastContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterCast(this); + } +}; + +CastContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitCast(this); + } +}; + +CastContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitCast(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ConstantDefaultContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ConstantDefaultContext.prototype = Object.create(PrimaryExpressionContext.prototype); +ConstantDefaultContext.prototype.constructor = ConstantDefaultContext; + +SqlBaseParser.ConstantDefaultContext = ConstantDefaultContext; + +ConstantDefaultContext.prototype.constant = function() { + return this.getTypedRuleContext(ConstantContext,0); +}; +ConstantDefaultContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterConstantDefault(this); + } +}; + +ConstantDefaultContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitConstantDefault(this); + } +}; + +ConstantDefaultContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitConstantDefault(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function LambdaContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LambdaContext.prototype = Object.create(PrimaryExpressionContext.prototype); +LambdaContext.prototype.constructor = LambdaContext; + +SqlBaseParser.LambdaContext = LambdaContext; + +LambdaContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +LambdaContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; +LambdaContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterLambda(this); + } +}; + +LambdaContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitLambda(this); + } +}; + +LambdaContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitLambda(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ParenthesizedExpressionContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ParenthesizedExpressionContext.prototype = Object.create(PrimaryExpressionContext.prototype); +ParenthesizedExpressionContext.prototype.constructor = ParenthesizedExpressionContext; + +SqlBaseParser.ParenthesizedExpressionContext = ParenthesizedExpressionContext; + +ParenthesizedExpressionContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; +ParenthesizedExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterParenthesizedExpression(this); + } +}; + +ParenthesizedExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitParenthesizedExpression(this); + } +}; + +ParenthesizedExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitParenthesizedExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ExtractContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.field = null; // IdentifierContext; + this.source = null; // ValueExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ExtractContext.prototype = Object.create(PrimaryExpressionContext.prototype); +ExtractContext.prototype.constructor = ExtractContext; + +SqlBaseParser.ExtractContext = ExtractContext; + +ExtractContext.prototype.EXTRACT = function() { + return this.getToken(SqlBaseParser.EXTRACT, 0); +}; + +ExtractContext.prototype.FROM = function() { + return this.getToken(SqlBaseParser.FROM, 0); +}; + +ExtractContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +ExtractContext.prototype.valueExpression = function() { + return this.getTypedRuleContext(ValueExpressionContext,0); +}; +ExtractContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterExtract(this); + } +}; + +ExtractContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitExtract(this); + } +}; + +ExtractContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitExtract(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function TrimContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.trimOption = null; // Token; + this.trimStr = null; // ValueExpressionContext; + this.srcStr = null; // ValueExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +TrimContext.prototype = Object.create(PrimaryExpressionContext.prototype); +TrimContext.prototype.constructor = TrimContext; + +SqlBaseParser.TrimContext = TrimContext; + +TrimContext.prototype.TRIM = function() { + return this.getToken(SqlBaseParser.TRIM, 0); +}; + +TrimContext.prototype.FROM = function() { + return this.getToken(SqlBaseParser.FROM, 0); +}; + +TrimContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; + +TrimContext.prototype.BOTH = function() { + return this.getToken(SqlBaseParser.BOTH, 0); +}; + +TrimContext.prototype.LEADING = function() { + return this.getToken(SqlBaseParser.LEADING, 0); +}; + +TrimContext.prototype.TRAILING = function() { + return this.getToken(SqlBaseParser.TRAILING, 0); +}; +TrimContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTrim(this); + } +}; + +TrimContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTrim(this); + } +}; + +TrimContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTrim(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function FunctionCallContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this._expression = null; // ExpressionContext; + this.argument = []; // of ExpressionContexts; + this.where = null; // BooleanExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +FunctionCallContext.prototype = Object.create(PrimaryExpressionContext.prototype); +FunctionCallContext.prototype.constructor = FunctionCallContext; + +SqlBaseParser.FunctionCallContext = FunctionCallContext; + +FunctionCallContext.prototype.functionName = function() { + return this.getTypedRuleContext(FunctionNameContext,0); +}; + +FunctionCallContext.prototype.FILTER = function() { + return this.getToken(SqlBaseParser.FILTER, 0); +}; + +FunctionCallContext.prototype.WHERE = function() { + return this.getToken(SqlBaseParser.WHERE, 0); +}; + +FunctionCallContext.prototype.OVER = function() { + return this.getToken(SqlBaseParser.OVER, 0); +}; + +FunctionCallContext.prototype.windowSpec = function() { + return this.getTypedRuleContext(WindowSpecContext,0); +}; + +FunctionCallContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +FunctionCallContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; + +FunctionCallContext.prototype.setQuantifier = function() { + return this.getTypedRuleContext(SetQuantifierContext,0); +}; +FunctionCallContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterFunctionCall(this); + } +}; + +FunctionCallContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitFunctionCall(this); + } +}; + +FunctionCallContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitFunctionCall(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SearchedCaseContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.elseExpression = null; // ExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SearchedCaseContext.prototype = Object.create(PrimaryExpressionContext.prototype); +SearchedCaseContext.prototype.constructor = SearchedCaseContext; + +SqlBaseParser.SearchedCaseContext = SearchedCaseContext; + +SearchedCaseContext.prototype.CASE = function() { + return this.getToken(SqlBaseParser.CASE, 0); +}; + +SearchedCaseContext.prototype.END = function() { + return this.getToken(SqlBaseParser.END, 0); +}; + +SearchedCaseContext.prototype.whenClause = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(WhenClauseContext); + } else { + return this.getTypedRuleContext(WhenClauseContext,i); + } +}; + +SearchedCaseContext.prototype.ELSE = function() { + return this.getToken(SqlBaseParser.ELSE, 0); +}; + +SearchedCaseContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; +SearchedCaseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSearchedCase(this); + } +}; + +SearchedCaseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSearchedCase(this); + } +}; + +SearchedCaseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSearchedCase(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function PositionContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.substr = null; // ValueExpressionContext; + this.str = null; // ValueExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +PositionContext.prototype = Object.create(PrimaryExpressionContext.prototype); +PositionContext.prototype.constructor = PositionContext; + +SqlBaseParser.PositionContext = PositionContext; + +PositionContext.prototype.POSITION = function() { + return this.getToken(SqlBaseParser.POSITION, 0); +}; + +PositionContext.prototype.IN = function() { + return this.getToken(SqlBaseParser.IN, 0); +}; + +PositionContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; +PositionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterPosition(this); + } +}; + +PositionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitPosition(this); + } +}; + +PositionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitPosition(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function FirstContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +FirstContext.prototype = Object.create(PrimaryExpressionContext.prototype); +FirstContext.prototype.constructor = FirstContext; + +SqlBaseParser.FirstContext = FirstContext; + +FirstContext.prototype.FIRST = function() { + return this.getToken(SqlBaseParser.FIRST, 0); +}; + +FirstContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +FirstContext.prototype.IGNORE = function() { + return this.getToken(SqlBaseParser.IGNORE, 0); +}; + +FirstContext.prototype.NULLS = function() { + return this.getToken(SqlBaseParser.NULLS, 0); +}; +FirstContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterFirst(this); + } +}; + +FirstContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitFirst(this); + } +}; + +FirstContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitFirst(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.prototype.primaryExpression = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new PrimaryExpressionContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 194; + this.enterRecursionRule(localctx, 194, SqlBaseParser.RULE_primaryExpression, _p); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2657; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,336,this._ctx); + switch(la_) { + case 1: + localctx = new CurrentDatetimeContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + + this.state = 2474; + localctx.name = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.CURRENT_DATE || _la===SqlBaseParser.CURRENT_TIMESTAMP)) { + localctx.name = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + + case 2: + localctx = new SearchedCaseContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2475; + this.match(SqlBaseParser.CASE); + this.state = 2477; + this._errHandler.sync(this); + _la = this._input.LA(1); + do { + this.state = 2476; + this.whenClause(); + this.state = 2479; + this._errHandler.sync(this); + _la = this._input.LA(1); + } while(_la===SqlBaseParser.WHEN); + this.state = 2483; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.ELSE) { + this.state = 2481; + this.match(SqlBaseParser.ELSE); + this.state = 2482; + localctx.elseExpression = this.expression(); + } + + this.state = 2485; + this.match(SqlBaseParser.END); + break; + + case 3: + localctx = new SimpleCaseContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2487; + this.match(SqlBaseParser.CASE); + this.state = 2488; + localctx.value = this.expression(); + this.state = 2490; + this._errHandler.sync(this); + _la = this._input.LA(1); + do { + this.state = 2489; + this.whenClause(); + this.state = 2492; + this._errHandler.sync(this); + _la = this._input.LA(1); + } while(_la===SqlBaseParser.WHEN); + this.state = 2496; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.ELSE) { + this.state = 2494; + this.match(SqlBaseParser.ELSE); + this.state = 2495; + localctx.elseExpression = this.expression(); + } + + this.state = 2498; + this.match(SqlBaseParser.END); + break; + + case 4: + localctx = new CastContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2500; + this.match(SqlBaseParser.CAST); + this.state = 2501; + this.match(SqlBaseParser.T__1); + this.state = 2502; + this.expression(); + this.state = 2503; + this.match(SqlBaseParser.AS); + this.state = 2504; + this.dataType(); + this.state = 2505; + this.match(SqlBaseParser.T__2); + break; + + case 5: + localctx = new StructContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2507; + this.match(SqlBaseParser.STRUCT); + this.state = 2508; + this.match(SqlBaseParser.T__1); + this.state = 2517; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,322,this._ctx); + if(la_===1) { + this.state = 2509; + localctx._namedExpression = this.namedExpression(); + localctx.argument.push(localctx._namedExpression); + this.state = 2514; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2510; + this.match(SqlBaseParser.T__3); + this.state = 2511; + localctx._namedExpression = this.namedExpression(); + localctx.argument.push(localctx._namedExpression); + this.state = 2516; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + + } + this.state = 2519; + this.match(SqlBaseParser.T__2); + break; + + case 6: + localctx = new FirstContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2520; + this.match(SqlBaseParser.FIRST); + this.state = 2521; + this.match(SqlBaseParser.T__1); + this.state = 2522; + this.expression(); + this.state = 2525; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.IGNORE) { + this.state = 2523; + this.match(SqlBaseParser.IGNORE); + this.state = 2524; + this.match(SqlBaseParser.NULLS); + } + + this.state = 2527; + this.match(SqlBaseParser.T__2); + break; + + case 7: + localctx = new LastContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2529; + this.match(SqlBaseParser.LAST); + this.state = 2530; + this.match(SqlBaseParser.T__1); + this.state = 2531; + this.expression(); + this.state = 2534; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.IGNORE) { + this.state = 2532; + this.match(SqlBaseParser.IGNORE); + this.state = 2533; + this.match(SqlBaseParser.NULLS); + } + + this.state = 2536; + this.match(SqlBaseParser.T__2); + break; + + case 8: + localctx = new PositionContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2538; + this.match(SqlBaseParser.POSITION); + this.state = 2539; + this.match(SqlBaseParser.T__1); + this.state = 2540; + localctx.substr = this.valueExpression(0); + this.state = 2541; + this.match(SqlBaseParser.IN); + this.state = 2542; + localctx.str = this.valueExpression(0); + this.state = 2543; + this.match(SqlBaseParser.T__2); + break; + + case 9: + localctx = new ConstantDefaultContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2545; + this.constant(); + break; + + case 10: + localctx = new StarContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2546; + this.match(SqlBaseParser.ASTERISK); + break; + + case 11: + localctx = new StarContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2547; + this.qualifiedName(); + this.state = 2548; + this.match(SqlBaseParser.T__4); + this.state = 2549; + this.match(SqlBaseParser.ASTERISK); + break; + + case 12: + localctx = new RowConstructorContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2551; + this.match(SqlBaseParser.T__1); + this.state = 2552; + this.namedExpression(); + this.state = 2555; + this._errHandler.sync(this); + _la = this._input.LA(1); + do { + this.state = 2553; + this.match(SqlBaseParser.T__3); + this.state = 2554; + this.namedExpression(); + this.state = 2557; + this._errHandler.sync(this); + _la = this._input.LA(1); + } while(_la===SqlBaseParser.T__3); + this.state = 2559; + this.match(SqlBaseParser.T__2); + break; + + case 13: + localctx = new SubqueryExpressionContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2561; + this.match(SqlBaseParser.T__1); + this.state = 2562; + this.query(); + this.state = 2563; + this.match(SqlBaseParser.T__2); + break; + + case 14: + localctx = new FunctionCallContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2565; + this.functionName(); + this.state = 2566; + this.match(SqlBaseParser.T__1); + this.state = 2578; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,328,this._ctx); + if(la_===1) { + this.state = 2568; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,326,this._ctx); + if(la_===1) { + this.state = 2567; + this.setQuantifier(); + + } + this.state = 2570; + localctx._expression = this.expression(); + localctx.argument.push(localctx._expression); + this.state = 2575; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2571; + this.match(SqlBaseParser.T__3); + this.state = 2572; + localctx._expression = this.expression(); + localctx.argument.push(localctx._expression); + this.state = 2577; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + + } + this.state = 2580; + this.match(SqlBaseParser.T__2); + this.state = 2587; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,329,this._ctx); + if(la_===1) { + this.state = 2581; + this.match(SqlBaseParser.FILTER); + this.state = 2582; + this.match(SqlBaseParser.T__1); + this.state = 2583; + this.match(SqlBaseParser.WHERE); + this.state = 2584; + localctx.where = this.booleanExpression(0); + this.state = 2585; + this.match(SqlBaseParser.T__2); + + } + this.state = 2591; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,330,this._ctx); + if(la_===1) { + this.state = 2589; + this.match(SqlBaseParser.OVER); + this.state = 2590; + this.windowSpec(); + + } + break; + + case 15: + localctx = new LambdaContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2593; + this.identifier(); + this.state = 2594; + this.match(SqlBaseParser.T__7); + this.state = 2595; + this.expression(); + break; + + case 16: + localctx = new LambdaContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2597; + this.match(SqlBaseParser.T__1); + this.state = 2598; + this.identifier(); + this.state = 2601; + this._errHandler.sync(this); + _la = this._input.LA(1); + do { + this.state = 2599; + this.match(SqlBaseParser.T__3); + this.state = 2600; + this.identifier(); + this.state = 2603; + this._errHandler.sync(this); + _la = this._input.LA(1); + } while(_la===SqlBaseParser.T__3); + this.state = 2605; + this.match(SqlBaseParser.T__2); + this.state = 2606; + this.match(SqlBaseParser.T__7); + this.state = 2607; + this.expression(); + break; + + case 17: + localctx = new ColumnReferenceContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2609; + this.identifier(); + break; + + case 18: + localctx = new ParenthesizedExpressionContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2610; + this.match(SqlBaseParser.T__1); + this.state = 2611; + this.expression(); + this.state = 2612; + this.match(SqlBaseParser.T__2); + break; + + case 19: + localctx = new ExtractContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2614; + this.match(SqlBaseParser.EXTRACT); + this.state = 2615; + this.match(SqlBaseParser.T__1); + this.state = 2616; + localctx.field = this.identifier(); + this.state = 2617; + this.match(SqlBaseParser.FROM); + this.state = 2618; + localctx.source = this.valueExpression(0); + this.state = 2619; + this.match(SqlBaseParser.T__2); + break; + + case 20: + localctx = new SubstringContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2621; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.SUBSTR || _la===SqlBaseParser.SUBSTRING)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 2622; + this.match(SqlBaseParser.T__1); + this.state = 2623; + localctx.str = this.valueExpression(0); + this.state = 2624; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.T__3 || _la===SqlBaseParser.FROM)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 2625; + localctx.pos = this.valueExpression(0); + this.state = 2628; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.T__3 || _la===SqlBaseParser.FOR) { + this.state = 2626; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.T__3 || _la===SqlBaseParser.FOR)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 2627; + localctx.len = this.valueExpression(0); + } + + this.state = 2630; + this.match(SqlBaseParser.T__2); + break; + + case 21: + localctx = new TrimContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2632; + this.match(SqlBaseParser.TRIM); + this.state = 2633; + this.match(SqlBaseParser.T__1); + this.state = 2635; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,333,this._ctx); + if(la_===1) { + this.state = 2634; + localctx.trimOption = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.BOTH || _la===SqlBaseParser.LEADING || _la===SqlBaseParser.TRAILING)) { + localctx.trimOption = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + + } + this.state = 2638; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,334,this._ctx); + if(la_===1) { + this.state = 2637; + localctx.trimStr = this.valueExpression(0); + + } + this.state = 2640; + this.match(SqlBaseParser.FROM); + this.state = 2641; + localctx.srcStr = this.valueExpression(0); + this.state = 2642; + this.match(SqlBaseParser.T__2); + break; + + case 22: + localctx = new OverlayContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 2644; + this.match(SqlBaseParser.OVERLAY); + this.state = 2645; + this.match(SqlBaseParser.T__1); + this.state = 2646; + localctx.input = this.valueExpression(0); + this.state = 2647; + this.match(SqlBaseParser.PLACING); + this.state = 2648; + localctx.replace = this.valueExpression(0); + this.state = 2649; + this.match(SqlBaseParser.FROM); + this.state = 2650; + localctx.position = this.valueExpression(0); + this.state = 2653; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.FOR) { + this.state = 2651; + this.match(SqlBaseParser.FOR); + this.state = 2652; + localctx.length = this.valueExpression(0); + } + + this.state = 2655; + this.match(SqlBaseParser.T__2); + break; + + } + this._ctx.stop = this._input.LT(-1); + this.state = 2669; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,338,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + if(this._parseListeners!==null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + this.state = 2667; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,337,this._ctx); + switch(la_) { + case 1: + localctx = new SubscriptContext(this, new PrimaryExpressionContext(this, _parentctx, _parentState)); + localctx.value = _prevctx; + this.pushNewRecursionContext(localctx, _startState, SqlBaseParser.RULE_primaryExpression); + this.state = 2659; + if (!( this.precpred(this._ctx, 8))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 8)"); + } + this.state = 2660; + this.match(SqlBaseParser.T__8); + this.state = 2661; + localctx.index = this.valueExpression(0); + this.state = 2662; + this.match(SqlBaseParser.T__9); + break; + + case 2: + localctx = new DereferenceContext(this, new PrimaryExpressionContext(this, _parentctx, _parentState)); + localctx.base = _prevctx; + this.pushNewRecursionContext(localctx, _startState, SqlBaseParser.RULE_primaryExpression); + this.state = 2664; + if (!( this.precpred(this._ctx, 6))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 6)"); + } + this.state = 2665; + this.match(SqlBaseParser.T__4); + this.state = 2666; + localctx.fieldName = this.identifier(); + break; + + } + } + this.state = 2671; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,338,this._ctx); + } + + } catch( error) { + if(error instanceof antlr4.error.RecognitionException) { + localctx.exception = error; + this._errHandler.reportError(this, error); + this._errHandler.recover(this, error); + } else { + throw error; + } + } finally { + this.unrollRecursionContexts(_parentctx) + } + return localctx; +}; + + +function ConstantContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_constant; + return this; +} + +ConstantContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ConstantContext.prototype.constructor = ConstantContext; + + + +ConstantContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function NullLiteralContext(parser, ctx) { + ConstantContext.call(this, parser); + ConstantContext.prototype.copyFrom.call(this, ctx); + return this; +} + +NullLiteralContext.prototype = Object.create(ConstantContext.prototype); +NullLiteralContext.prototype.constructor = NullLiteralContext; + +SqlBaseParser.NullLiteralContext = NullLiteralContext; + +NullLiteralContext.prototype.NULL = function() { + return this.getToken(SqlBaseParser.NULL, 0); +}; +NullLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterNullLiteral(this); + } +}; + +NullLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitNullLiteral(this); + } +}; + +NullLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitNullLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function StringLiteralContext(parser, ctx) { + ConstantContext.call(this, parser); + ConstantContext.prototype.copyFrom.call(this, ctx); + return this; +} + +StringLiteralContext.prototype = Object.create(ConstantContext.prototype); +StringLiteralContext.prototype.constructor = StringLiteralContext; + +SqlBaseParser.StringLiteralContext = StringLiteralContext; + +StringLiteralContext.prototype.STRING = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.STRING); + } else { + return this.getToken(SqlBaseParser.STRING, i); + } +}; + +StringLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterStringLiteral(this); + } +}; + +StringLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitStringLiteral(this); + } +}; + +StringLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitStringLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function TypeConstructorContext(parser, ctx) { + ConstantContext.call(this, parser); + ConstantContext.prototype.copyFrom.call(this, ctx); + return this; +} + +TypeConstructorContext.prototype = Object.create(ConstantContext.prototype); +TypeConstructorContext.prototype.constructor = TypeConstructorContext; + +SqlBaseParser.TypeConstructorContext = TypeConstructorContext; + +TypeConstructorContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +TypeConstructorContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; +TypeConstructorContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTypeConstructor(this); + } +}; + +TypeConstructorContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTypeConstructor(this); + } +}; + +TypeConstructorContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTypeConstructor(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function IntervalLiteralContext(parser, ctx) { + ConstantContext.call(this, parser); + ConstantContext.prototype.copyFrom.call(this, ctx); + return this; +} + +IntervalLiteralContext.prototype = Object.create(ConstantContext.prototype); +IntervalLiteralContext.prototype.constructor = IntervalLiteralContext; + +SqlBaseParser.IntervalLiteralContext = IntervalLiteralContext; + +IntervalLiteralContext.prototype.interval = function() { + return this.getTypedRuleContext(IntervalContext,0); +}; +IntervalLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterIntervalLiteral(this); + } +}; + +IntervalLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitIntervalLiteral(this); + } +}; + +IntervalLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitIntervalLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function NumericLiteralContext(parser, ctx) { + ConstantContext.call(this, parser); + ConstantContext.prototype.copyFrom.call(this, ctx); + return this; +} + +NumericLiteralContext.prototype = Object.create(ConstantContext.prototype); +NumericLiteralContext.prototype.constructor = NumericLiteralContext; + +SqlBaseParser.NumericLiteralContext = NumericLiteralContext; + +NumericLiteralContext.prototype.number = function() { + return this.getTypedRuleContext(NumberContext,0); +}; +NumericLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterNumericLiteral(this); + } +}; + +NumericLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitNumericLiteral(this); + } +}; + +NumericLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitNumericLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function BooleanLiteralContext(parser, ctx) { + ConstantContext.call(this, parser); + ConstantContext.prototype.copyFrom.call(this, ctx); + return this; +} + +BooleanLiteralContext.prototype = Object.create(ConstantContext.prototype); +BooleanLiteralContext.prototype.constructor = BooleanLiteralContext; + +SqlBaseParser.BooleanLiteralContext = BooleanLiteralContext; + +BooleanLiteralContext.prototype.booleanValue = function() { + return this.getTypedRuleContext(BooleanValueContext,0); +}; +BooleanLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterBooleanLiteral(this); + } +}; + +BooleanLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitBooleanLiteral(this); + } +}; + +BooleanLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitBooleanLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.ConstantContext = ConstantContext; + +SqlBaseParser.prototype.constant = function() { + + var localctx = new ConstantContext(this, this._ctx, this.state); + this.enterRule(localctx, 196, SqlBaseParser.RULE_constant); + try { + this.state = 2684; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,340,this._ctx); + switch(la_) { + case 1: + localctx = new NullLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 2672; + this.match(SqlBaseParser.NULL); + break; + + case 2: + localctx = new IntervalLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 2673; + this.interval(); + break; + + case 3: + localctx = new TypeConstructorContext(this, localctx); + this.enterOuterAlt(localctx, 3); + this.state = 2674; + this.identifier(); + this.state = 2675; + this.match(SqlBaseParser.STRING); + break; + + case 4: + localctx = new NumericLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 4); + this.state = 2677; + this.number(); + break; + + case 5: + localctx = new BooleanLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 5); + this.state = 2678; + this.booleanValue(); + break; + + case 6: + localctx = new StringLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 6); + this.state = 2680; + this._errHandler.sync(this); + var _alt = 1; + do { + switch (_alt) { + case 1: + this.state = 2679; + this.match(SqlBaseParser.STRING); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 2682; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,339, this._ctx); + } while ( _alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER ); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ComparisonOperatorContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_comparisonOperator; + return this; +} + +ComparisonOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ComparisonOperatorContext.prototype.constructor = ComparisonOperatorContext; + +ComparisonOperatorContext.prototype.EQ = function() { + return this.getToken(SqlBaseParser.EQ, 0); +}; + +ComparisonOperatorContext.prototype.NEQ = function() { + return this.getToken(SqlBaseParser.NEQ, 0); +}; + +ComparisonOperatorContext.prototype.NEQJ = function() { + return this.getToken(SqlBaseParser.NEQJ, 0); +}; + +ComparisonOperatorContext.prototype.LT = function() { + return this.getToken(SqlBaseParser.LT, 0); +}; + +ComparisonOperatorContext.prototype.LTE = function() { + return this.getToken(SqlBaseParser.LTE, 0); +}; + +ComparisonOperatorContext.prototype.GT = function() { + return this.getToken(SqlBaseParser.GT, 0); +}; + +ComparisonOperatorContext.prototype.GTE = function() { + return this.getToken(SqlBaseParser.GTE, 0); +}; + +ComparisonOperatorContext.prototype.NSEQ = function() { + return this.getToken(SqlBaseParser.NSEQ, 0); +}; + +ComparisonOperatorContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterComparisonOperator(this); + } +}; + +ComparisonOperatorContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitComparisonOperator(this); + } +}; + +ComparisonOperatorContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitComparisonOperator(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ComparisonOperatorContext = ComparisonOperatorContext; + +SqlBaseParser.prototype.comparisonOperator = function() { + + var localctx = new ComparisonOperatorContext(this, this._ctx, this.state); + this.enterRule(localctx, 198, SqlBaseParser.RULE_comparisonOperator); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2686; + _la = this._input.LA(1); + if(!(((((_la - 261)) & ~0x1f) == 0 && ((1 << (_la - 261)) & ((1 << (SqlBaseParser.EQ - 261)) | (1 << (SqlBaseParser.NSEQ - 261)) | (1 << (SqlBaseParser.NEQ - 261)) | (1 << (SqlBaseParser.NEQJ - 261)) | (1 << (SqlBaseParser.LT - 261)) | (1 << (SqlBaseParser.LTE - 261)) | (1 << (SqlBaseParser.GT - 261)) | (1 << (SqlBaseParser.GTE - 261)))) !== 0))) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ArithmeticOperatorContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_arithmeticOperator; + return this; +} + +ArithmeticOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ArithmeticOperatorContext.prototype.constructor = ArithmeticOperatorContext; + +ArithmeticOperatorContext.prototype.PLUS = function() { + return this.getToken(SqlBaseParser.PLUS, 0); +}; + +ArithmeticOperatorContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; + +ArithmeticOperatorContext.prototype.ASTERISK = function() { + return this.getToken(SqlBaseParser.ASTERISK, 0); +}; + +ArithmeticOperatorContext.prototype.SLASH = function() { + return this.getToken(SqlBaseParser.SLASH, 0); +}; + +ArithmeticOperatorContext.prototype.PERCENT = function() { + return this.getToken(SqlBaseParser.PERCENT, 0); +}; + +ArithmeticOperatorContext.prototype.DIV = function() { + return this.getToken(SqlBaseParser.DIV, 0); +}; + +ArithmeticOperatorContext.prototype.TILDE = function() { + return this.getToken(SqlBaseParser.TILDE, 0); +}; + +ArithmeticOperatorContext.prototype.AMPERSAND = function() { + return this.getToken(SqlBaseParser.AMPERSAND, 0); +}; + +ArithmeticOperatorContext.prototype.PIPE = function() { + return this.getToken(SqlBaseParser.PIPE, 0); +}; + +ArithmeticOperatorContext.prototype.CONCAT_PIPE = function() { + return this.getToken(SqlBaseParser.CONCAT_PIPE, 0); +}; + +ArithmeticOperatorContext.prototype.HAT = function() { + return this.getToken(SqlBaseParser.HAT, 0); +}; + +ArithmeticOperatorContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterArithmeticOperator(this); + } +}; + +ArithmeticOperatorContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitArithmeticOperator(this); + } +}; + +ArithmeticOperatorContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitArithmeticOperator(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ArithmeticOperatorContext = ArithmeticOperatorContext; + +SqlBaseParser.prototype.arithmeticOperator = function() { + + var localctx = new ArithmeticOperatorContext(this, this._ctx, this.state); + this.enterRule(localctx, 200, SqlBaseParser.RULE_arithmeticOperator); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2688; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.DIV || ((((_la - 269)) & ~0x1f) == 0 && ((1 << (_la - 269)) & ((1 << (SqlBaseParser.PLUS - 269)) | (1 << (SqlBaseParser.MINUS - 269)) | (1 << (SqlBaseParser.ASTERISK - 269)) | (1 << (SqlBaseParser.SLASH - 269)) | (1 << (SqlBaseParser.PERCENT - 269)) | (1 << (SqlBaseParser.TILDE - 269)) | (1 << (SqlBaseParser.AMPERSAND - 269)) | (1 << (SqlBaseParser.PIPE - 269)) | (1 << (SqlBaseParser.CONCAT_PIPE - 269)) | (1 << (SqlBaseParser.HAT - 269)))) !== 0))) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function PredicateOperatorContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_predicateOperator; + return this; +} + +PredicateOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PredicateOperatorContext.prototype.constructor = PredicateOperatorContext; + +PredicateOperatorContext.prototype.OR = function() { + return this.getToken(SqlBaseParser.OR, 0); +}; + +PredicateOperatorContext.prototype.AND = function() { + return this.getToken(SqlBaseParser.AND, 0); +}; + +PredicateOperatorContext.prototype.IN = function() { + return this.getToken(SqlBaseParser.IN, 0); +}; + +PredicateOperatorContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +PredicateOperatorContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterPredicateOperator(this); + } +}; + +PredicateOperatorContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitPredicateOperator(this); + } +}; + +PredicateOperatorContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitPredicateOperator(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.PredicateOperatorContext = PredicateOperatorContext; + +SqlBaseParser.prototype.predicateOperator = function() { + + var localctx = new PredicateOperatorContext(this, this._ctx, this.state); + this.enterRule(localctx, 202, SqlBaseParser.RULE_predicateOperator); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2690; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.AND || _la===SqlBaseParser.IN || _la===SqlBaseParser.NOT || _la===SqlBaseParser.OR)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function BooleanValueContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_booleanValue; + return this; +} + +BooleanValueContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +BooleanValueContext.prototype.constructor = BooleanValueContext; + +BooleanValueContext.prototype.TRUE = function() { + return this.getToken(SqlBaseParser.TRUE, 0); +}; + +BooleanValueContext.prototype.FALSE = function() { + return this.getToken(SqlBaseParser.FALSE, 0); +}; + +BooleanValueContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterBooleanValue(this); + } +}; + +BooleanValueContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitBooleanValue(this); + } +}; + +BooleanValueContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitBooleanValue(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.BooleanValueContext = BooleanValueContext; + +SqlBaseParser.prototype.booleanValue = function() { + + var localctx = new BooleanValueContext(this, this._ctx, this.state); + this.enterRule(localctx, 204, SqlBaseParser.RULE_booleanValue); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2692; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.FALSE || _la===SqlBaseParser.TRUE)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function IntervalContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_interval; + return this; +} + +IntervalContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IntervalContext.prototype.constructor = IntervalContext; + +IntervalContext.prototype.INTERVAL = function() { + return this.getToken(SqlBaseParser.INTERVAL, 0); +}; + +IntervalContext.prototype.errorCapturingMultiUnitsInterval = function() { + return this.getTypedRuleContext(ErrorCapturingMultiUnitsIntervalContext,0); +}; + +IntervalContext.prototype.errorCapturingUnitToUnitInterval = function() { + return this.getTypedRuleContext(ErrorCapturingUnitToUnitIntervalContext,0); +}; + +IntervalContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterInterval(this); + } +}; + +IntervalContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitInterval(this); + } +}; + +IntervalContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitInterval(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.IntervalContext = IntervalContext; + +SqlBaseParser.prototype.interval = function() { + + var localctx = new IntervalContext(this, this._ctx, this.state); + this.enterRule(localctx, 206, SqlBaseParser.RULE_interval); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2694; + this.match(SqlBaseParser.INTERVAL); + this.state = 2697; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,341,this._ctx); + if(la_===1) { + this.state = 2695; + this.errorCapturingMultiUnitsInterval(); + + } else if(la_===2) { + this.state = 2696; + this.errorCapturingUnitToUnitInterval(); + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ErrorCapturingMultiUnitsIntervalContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_errorCapturingMultiUnitsInterval; + return this; +} + +ErrorCapturingMultiUnitsIntervalContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ErrorCapturingMultiUnitsIntervalContext.prototype.constructor = ErrorCapturingMultiUnitsIntervalContext; + +ErrorCapturingMultiUnitsIntervalContext.prototype.multiUnitsInterval = function() { + return this.getTypedRuleContext(MultiUnitsIntervalContext,0); +}; + +ErrorCapturingMultiUnitsIntervalContext.prototype.unitToUnitInterval = function() { + return this.getTypedRuleContext(UnitToUnitIntervalContext,0); +}; + +ErrorCapturingMultiUnitsIntervalContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterErrorCapturingMultiUnitsInterval(this); + } +}; + +ErrorCapturingMultiUnitsIntervalContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitErrorCapturingMultiUnitsInterval(this); + } +}; + +ErrorCapturingMultiUnitsIntervalContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitErrorCapturingMultiUnitsInterval(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ErrorCapturingMultiUnitsIntervalContext = ErrorCapturingMultiUnitsIntervalContext; + +SqlBaseParser.prototype.errorCapturingMultiUnitsInterval = function() { + + var localctx = new ErrorCapturingMultiUnitsIntervalContext(this, this._ctx, this.state); + this.enterRule(localctx, 208, SqlBaseParser.RULE_errorCapturingMultiUnitsInterval); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2699; + this.multiUnitsInterval(); + this.state = 2701; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,342,this._ctx); + if(la_===1) { + this.state = 2700; + this.unitToUnitInterval(); + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function MultiUnitsIntervalContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_multiUnitsInterval; + this._identifier = null; // IdentifierContext + this.unit = []; // of IdentifierContexts + return this; +} + +MultiUnitsIntervalContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +MultiUnitsIntervalContext.prototype.constructor = MultiUnitsIntervalContext; + +MultiUnitsIntervalContext.prototype.intervalValue = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IntervalValueContext); + } else { + return this.getTypedRuleContext(IntervalValueContext,i); + } +}; + +MultiUnitsIntervalContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +MultiUnitsIntervalContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterMultiUnitsInterval(this); + } +}; + +MultiUnitsIntervalContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitMultiUnitsInterval(this); + } +}; + +MultiUnitsIntervalContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitMultiUnitsInterval(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.MultiUnitsIntervalContext = MultiUnitsIntervalContext; + +SqlBaseParser.prototype.multiUnitsInterval = function() { + + var localctx = new MultiUnitsIntervalContext(this, this._ctx, this.state); + this.enterRule(localctx, 210, SqlBaseParser.RULE_multiUnitsInterval); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2706; + this._errHandler.sync(this); + var _alt = 1; + do { + switch (_alt) { + case 1: + this.state = 2703; + this.intervalValue(); + this.state = 2704; + localctx._identifier = this.identifier(); + localctx.unit.push(localctx._identifier); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 2708; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,343, this._ctx); + } while ( _alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER ); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ErrorCapturingUnitToUnitIntervalContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_errorCapturingUnitToUnitInterval; + this.body = null; // UnitToUnitIntervalContext + this.error1 = null; // MultiUnitsIntervalContext + this.error2 = null; // UnitToUnitIntervalContext + return this; +} + +ErrorCapturingUnitToUnitIntervalContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ErrorCapturingUnitToUnitIntervalContext.prototype.constructor = ErrorCapturingUnitToUnitIntervalContext; + +ErrorCapturingUnitToUnitIntervalContext.prototype.unitToUnitInterval = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(UnitToUnitIntervalContext); + } else { + return this.getTypedRuleContext(UnitToUnitIntervalContext,i); + } +}; + +ErrorCapturingUnitToUnitIntervalContext.prototype.multiUnitsInterval = function() { + return this.getTypedRuleContext(MultiUnitsIntervalContext,0); +}; + +ErrorCapturingUnitToUnitIntervalContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterErrorCapturingUnitToUnitInterval(this); + } +}; + +ErrorCapturingUnitToUnitIntervalContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitErrorCapturingUnitToUnitInterval(this); + } +}; + +ErrorCapturingUnitToUnitIntervalContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitErrorCapturingUnitToUnitInterval(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ErrorCapturingUnitToUnitIntervalContext = ErrorCapturingUnitToUnitIntervalContext; + +SqlBaseParser.prototype.errorCapturingUnitToUnitInterval = function() { + + var localctx = new ErrorCapturingUnitToUnitIntervalContext(this, this._ctx, this.state); + this.enterRule(localctx, 212, SqlBaseParser.RULE_errorCapturingUnitToUnitInterval); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2710; + localctx.body = this.unitToUnitInterval(); + this.state = 2713; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,344,this._ctx); + if(la_===1) { + this.state = 2711; + localctx.error1 = this.multiUnitsInterval(); + + } else if(la_===2) { + this.state = 2712; + localctx.error2 = this.unitToUnitInterval(); + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function UnitToUnitIntervalContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_unitToUnitInterval; + this.value = null; // IntervalValueContext + this.from = null; // IdentifierContext + this.to = null; // IdentifierContext + return this; +} + +UnitToUnitIntervalContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +UnitToUnitIntervalContext.prototype.constructor = UnitToUnitIntervalContext; + +UnitToUnitIntervalContext.prototype.TO = function() { + return this.getToken(SqlBaseParser.TO, 0); +}; + +UnitToUnitIntervalContext.prototype.intervalValue = function() { + return this.getTypedRuleContext(IntervalValueContext,0); +}; + +UnitToUnitIntervalContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +UnitToUnitIntervalContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterUnitToUnitInterval(this); + } +}; + +UnitToUnitIntervalContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitUnitToUnitInterval(this); + } +}; + +UnitToUnitIntervalContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitUnitToUnitInterval(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.UnitToUnitIntervalContext = UnitToUnitIntervalContext; + +SqlBaseParser.prototype.unitToUnitInterval = function() { + + var localctx = new UnitToUnitIntervalContext(this, this._ctx, this.state); + this.enterRule(localctx, 214, SqlBaseParser.RULE_unitToUnitInterval); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2715; + localctx.value = this.intervalValue(); + this.state = 2716; + localctx.from = this.identifier(); + this.state = 2717; + this.match(SqlBaseParser.TO); + this.state = 2718; + localctx.to = this.identifier(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function IntervalValueContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_intervalValue; + return this; +} + +IntervalValueContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IntervalValueContext.prototype.constructor = IntervalValueContext; + +IntervalValueContext.prototype.INTEGER_VALUE = function() { + return this.getToken(SqlBaseParser.INTEGER_VALUE, 0); +}; + +IntervalValueContext.prototype.DECIMAL_VALUE = function() { + return this.getToken(SqlBaseParser.DECIMAL_VALUE, 0); +}; + +IntervalValueContext.prototype.PLUS = function() { + return this.getToken(SqlBaseParser.PLUS, 0); +}; + +IntervalValueContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; + +IntervalValueContext.prototype.STRING = function() { + return this.getToken(SqlBaseParser.STRING, 0); +}; + +IntervalValueContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterIntervalValue(this); + } +}; + +IntervalValueContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitIntervalValue(this); + } +}; + +IntervalValueContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitIntervalValue(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.IntervalValueContext = IntervalValueContext; + +SqlBaseParser.prototype.intervalValue = function() { + + var localctx = new IntervalValueContext(this, this._ctx, this.state); + this.enterRule(localctx, 216, SqlBaseParser.RULE_intervalValue); + var _la = 0; // Token type + try { + this.state = 2725; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.PLUS: + case SqlBaseParser.MINUS: + case SqlBaseParser.INTEGER_VALUE: + case SqlBaseParser.DECIMAL_VALUE: + this.enterOuterAlt(localctx, 1); + this.state = 2721; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.PLUS || _la===SqlBaseParser.MINUS) { + this.state = 2720; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.PLUS || _la===SqlBaseParser.MINUS)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + + this.state = 2723; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.INTEGER_VALUE || _la===SqlBaseParser.DECIMAL_VALUE)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + case SqlBaseParser.STRING: + this.enterOuterAlt(localctx, 2); + this.state = 2724; + this.match(SqlBaseParser.STRING); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ColPositionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_colPosition; + this.position = null; // Token + this.afterCol = null; // ErrorCapturingIdentifierContext + return this; +} + +ColPositionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ColPositionContext.prototype.constructor = ColPositionContext; + +ColPositionContext.prototype.FIRST = function() { + return this.getToken(SqlBaseParser.FIRST, 0); +}; + +ColPositionContext.prototype.AFTER = function() { + return this.getToken(SqlBaseParser.AFTER, 0); +}; + +ColPositionContext.prototype.errorCapturingIdentifier = function() { + return this.getTypedRuleContext(ErrorCapturingIdentifierContext,0); +}; + +ColPositionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterColPosition(this); + } +}; + +ColPositionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitColPosition(this); + } +}; + +ColPositionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitColPosition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ColPositionContext = ColPositionContext; + +SqlBaseParser.prototype.colPosition = function() { + + var localctx = new ColPositionContext(this, this._ctx, this.state); + this.enterRule(localctx, 218, SqlBaseParser.RULE_colPosition); + try { + this.state = 2730; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.FIRST: + this.enterOuterAlt(localctx, 1); + this.state = 2727; + localctx.position = this.match(SqlBaseParser.FIRST); + break; + case SqlBaseParser.AFTER: + this.enterOuterAlt(localctx, 2); + this.state = 2728; + localctx.position = this.match(SqlBaseParser.AFTER); + this.state = 2729; + localctx.afterCol = this.errorCapturingIdentifier(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function DataTypeContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_dataType; + return this; +} + +DataTypeContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DataTypeContext.prototype.constructor = DataTypeContext; + + + +DataTypeContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function ComplexDataTypeContext(parser, ctx) { + DataTypeContext.call(this, parser); + this.complex = null; // Token; + DataTypeContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ComplexDataTypeContext.prototype = Object.create(DataTypeContext.prototype); +ComplexDataTypeContext.prototype.constructor = ComplexDataTypeContext; + +SqlBaseParser.ComplexDataTypeContext = ComplexDataTypeContext; + +ComplexDataTypeContext.prototype.LT = function() { + return this.getToken(SqlBaseParser.LT, 0); +}; + +ComplexDataTypeContext.prototype.dataType = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(DataTypeContext); + } else { + return this.getTypedRuleContext(DataTypeContext,i); + } +}; + +ComplexDataTypeContext.prototype.GT = function() { + return this.getToken(SqlBaseParser.GT, 0); +}; + +ComplexDataTypeContext.prototype.ARRAY = function() { + return this.getToken(SqlBaseParser.ARRAY, 0); +}; + +ComplexDataTypeContext.prototype.MAP = function() { + return this.getToken(SqlBaseParser.MAP, 0); +}; + +ComplexDataTypeContext.prototype.STRUCT = function() { + return this.getToken(SqlBaseParser.STRUCT, 0); +}; + +ComplexDataTypeContext.prototype.NEQ = function() { + return this.getToken(SqlBaseParser.NEQ, 0); +}; + +ComplexDataTypeContext.prototype.complexColTypeList = function() { + return this.getTypedRuleContext(ComplexColTypeListContext,0); +}; +ComplexDataTypeContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterComplexDataType(this); + } +}; + +ComplexDataTypeContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitComplexDataType(this); + } +}; + +ComplexDataTypeContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitComplexDataType(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function PrimitiveDataTypeContext(parser, ctx) { + DataTypeContext.call(this, parser); + DataTypeContext.prototype.copyFrom.call(this, ctx); + return this; +} + +PrimitiveDataTypeContext.prototype = Object.create(DataTypeContext.prototype); +PrimitiveDataTypeContext.prototype.constructor = PrimitiveDataTypeContext; + +SqlBaseParser.PrimitiveDataTypeContext = PrimitiveDataTypeContext; + +PrimitiveDataTypeContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +PrimitiveDataTypeContext.prototype.INTEGER_VALUE = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.INTEGER_VALUE); + } else { + return this.getToken(SqlBaseParser.INTEGER_VALUE, i); + } +}; + +PrimitiveDataTypeContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterPrimitiveDataType(this); + } +}; + +PrimitiveDataTypeContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitPrimitiveDataType(this); + } +}; + +PrimitiveDataTypeContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitPrimitiveDataType(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.DataTypeContext = DataTypeContext; + +SqlBaseParser.prototype.dataType = function() { + + var localctx = new DataTypeContext(this, this._ctx, this.state); + this.enterRule(localctx, 220, SqlBaseParser.RULE_dataType); + var _la = 0; // Token type + try { + this.state = 2766; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,352,this._ctx); + switch(la_) { + case 1: + localctx = new ComplexDataTypeContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 2732; + localctx.complex = this.match(SqlBaseParser.ARRAY); + this.state = 2733; + this.match(SqlBaseParser.LT); + this.state = 2734; + this.dataType(); + this.state = 2735; + this.match(SqlBaseParser.GT); + break; + + case 2: + localctx = new ComplexDataTypeContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 2737; + localctx.complex = this.match(SqlBaseParser.MAP); + this.state = 2738; + this.match(SqlBaseParser.LT); + this.state = 2739; + this.dataType(); + this.state = 2740; + this.match(SqlBaseParser.T__3); + this.state = 2741; + this.dataType(); + this.state = 2742; + this.match(SqlBaseParser.GT); + break; + + case 3: + localctx = new ComplexDataTypeContext(this, localctx); + this.enterOuterAlt(localctx, 3); + this.state = 2744; + localctx.complex = this.match(SqlBaseParser.STRUCT); + this.state = 2751; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.LT: + this.state = 2745; + this.match(SqlBaseParser.LT); + this.state = 2747; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,348,this._ctx); + if(la_===1) { + this.state = 2746; + this.complexColTypeList(); + + } + this.state = 2749; + this.match(SqlBaseParser.GT); + break; + case SqlBaseParser.NEQ: + this.state = 2750; + this.match(SqlBaseParser.NEQ); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + break; + + case 4: + localctx = new PrimitiveDataTypeContext(this, localctx); + this.enterOuterAlt(localctx, 4); + this.state = 2753; + this.identifier(); + this.state = 2764; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,351,this._ctx); + if(la_===1) { + this.state = 2754; + this.match(SqlBaseParser.T__1); + this.state = 2755; + this.match(SqlBaseParser.INTEGER_VALUE); + this.state = 2760; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2756; + this.match(SqlBaseParser.T__3); + this.state = 2757; + this.match(SqlBaseParser.INTEGER_VALUE); + this.state = 2762; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 2763; + this.match(SqlBaseParser.T__2); + + } + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function QualifiedColTypeWithPositionListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_qualifiedColTypeWithPositionList; + return this; +} + +QualifiedColTypeWithPositionListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QualifiedColTypeWithPositionListContext.prototype.constructor = QualifiedColTypeWithPositionListContext; + +QualifiedColTypeWithPositionListContext.prototype.qualifiedColTypeWithPosition = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(QualifiedColTypeWithPositionContext); + } else { + return this.getTypedRuleContext(QualifiedColTypeWithPositionContext,i); + } +}; + +QualifiedColTypeWithPositionListContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterQualifiedColTypeWithPositionList(this); + } +}; + +QualifiedColTypeWithPositionListContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitQualifiedColTypeWithPositionList(this); + } +}; + +QualifiedColTypeWithPositionListContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitQualifiedColTypeWithPositionList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.QualifiedColTypeWithPositionListContext = QualifiedColTypeWithPositionListContext; + +SqlBaseParser.prototype.qualifiedColTypeWithPositionList = function() { + + var localctx = new QualifiedColTypeWithPositionListContext(this, this._ctx, this.state); + this.enterRule(localctx, 222, SqlBaseParser.RULE_qualifiedColTypeWithPositionList); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2768; + this.qualifiedColTypeWithPosition(); + this.state = 2773; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2769; + this.match(SqlBaseParser.T__3); + this.state = 2770; + this.qualifiedColTypeWithPosition(); + this.state = 2775; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function QualifiedColTypeWithPositionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_qualifiedColTypeWithPosition; + this.name = null; // MultipartIdentifierContext + return this; +} + +QualifiedColTypeWithPositionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QualifiedColTypeWithPositionContext.prototype.constructor = QualifiedColTypeWithPositionContext; + +QualifiedColTypeWithPositionContext.prototype.dataType = function() { + return this.getTypedRuleContext(DataTypeContext,0); +}; + +QualifiedColTypeWithPositionContext.prototype.multipartIdentifier = function() { + return this.getTypedRuleContext(MultipartIdentifierContext,0); +}; + +QualifiedColTypeWithPositionContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +QualifiedColTypeWithPositionContext.prototype.NULL = function() { + return this.getToken(SqlBaseParser.NULL, 0); +}; + +QualifiedColTypeWithPositionContext.prototype.commentSpec = function() { + return this.getTypedRuleContext(CommentSpecContext,0); +}; + +QualifiedColTypeWithPositionContext.prototype.colPosition = function() { + return this.getTypedRuleContext(ColPositionContext,0); +}; + +QualifiedColTypeWithPositionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterQualifiedColTypeWithPosition(this); + } +}; + +QualifiedColTypeWithPositionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitQualifiedColTypeWithPosition(this); + } +}; + +QualifiedColTypeWithPositionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitQualifiedColTypeWithPosition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.QualifiedColTypeWithPositionContext = QualifiedColTypeWithPositionContext; + +SqlBaseParser.prototype.qualifiedColTypeWithPosition = function() { + + var localctx = new QualifiedColTypeWithPositionContext(this, this._ctx, this.state); + this.enterRule(localctx, 224, SqlBaseParser.RULE_qualifiedColTypeWithPosition); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2776; + localctx.name = this.multipartIdentifier(); + this.state = 2777; + this.dataType(); + this.state = 2780; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.NOT) { + this.state = 2778; + this.match(SqlBaseParser.NOT); + this.state = 2779; + this.match(SqlBaseParser.NULL); + } + + this.state = 2783; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.COMMENT) { + this.state = 2782; + this.commentSpec(); + } + + this.state = 2786; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.AFTER || _la===SqlBaseParser.FIRST) { + this.state = 2785; + this.colPosition(); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ColTypeListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_colTypeList; + return this; +} + +ColTypeListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ColTypeListContext.prototype.constructor = ColTypeListContext; + +ColTypeListContext.prototype.colType = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ColTypeContext); + } else { + return this.getTypedRuleContext(ColTypeContext,i); + } +}; + +ColTypeListContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterColTypeList(this); + } +}; + +ColTypeListContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitColTypeList(this); + } +}; + +ColTypeListContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitColTypeList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ColTypeListContext = ColTypeListContext; + +SqlBaseParser.prototype.colTypeList = function() { + + var localctx = new ColTypeListContext(this, this._ctx, this.state); + this.enterRule(localctx, 226, SqlBaseParser.RULE_colTypeList); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2788; + this.colType(); + this.state = 2793; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,357,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 2789; + this.match(SqlBaseParser.T__3); + this.state = 2790; + this.colType(); + } + this.state = 2795; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,357,this._ctx); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ColTypeContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_colType; + this.colName = null; // ErrorCapturingIdentifierContext + return this; +} + +ColTypeContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ColTypeContext.prototype.constructor = ColTypeContext; + +ColTypeContext.prototype.dataType = function() { + return this.getTypedRuleContext(DataTypeContext,0); +}; + +ColTypeContext.prototype.errorCapturingIdentifier = function() { + return this.getTypedRuleContext(ErrorCapturingIdentifierContext,0); +}; + +ColTypeContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +ColTypeContext.prototype.NULL = function() { + return this.getToken(SqlBaseParser.NULL, 0); +}; + +ColTypeContext.prototype.commentSpec = function() { + return this.getTypedRuleContext(CommentSpecContext,0); +}; + +ColTypeContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterColType(this); + } +}; + +ColTypeContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitColType(this); + } +}; + +ColTypeContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitColType(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ColTypeContext = ColTypeContext; + +SqlBaseParser.prototype.colType = function() { + + var localctx = new ColTypeContext(this, this._ctx, this.state); + this.enterRule(localctx, 228, SqlBaseParser.RULE_colType); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2796; + localctx.colName = this.errorCapturingIdentifier(); + this.state = 2797; + this.dataType(); + this.state = 2800; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,358,this._ctx); + if(la_===1) { + this.state = 2798; + this.match(SqlBaseParser.NOT); + this.state = 2799; + this.match(SqlBaseParser.NULL); + + } + this.state = 2803; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,359,this._ctx); + if(la_===1) { + this.state = 2802; + this.commentSpec(); + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ComplexColTypeListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_complexColTypeList; + return this; +} + +ComplexColTypeListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ComplexColTypeListContext.prototype.constructor = ComplexColTypeListContext; + +ComplexColTypeListContext.prototype.complexColType = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ComplexColTypeContext); + } else { + return this.getTypedRuleContext(ComplexColTypeContext,i); + } +}; + +ComplexColTypeListContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterComplexColTypeList(this); + } +}; + +ComplexColTypeListContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitComplexColTypeList(this); + } +}; + +ComplexColTypeListContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitComplexColTypeList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ComplexColTypeListContext = ComplexColTypeListContext; + +SqlBaseParser.prototype.complexColTypeList = function() { + + var localctx = new ComplexColTypeListContext(this, this._ctx, this.state); + this.enterRule(localctx, 230, SqlBaseParser.RULE_complexColTypeList); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2805; + this.complexColType(); + this.state = 2810; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2806; + this.match(SqlBaseParser.T__3); + this.state = 2807; + this.complexColType(); + this.state = 2812; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ComplexColTypeContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_complexColType; + return this; +} + +ComplexColTypeContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ComplexColTypeContext.prototype.constructor = ComplexColTypeContext; + +ComplexColTypeContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +ComplexColTypeContext.prototype.dataType = function() { + return this.getTypedRuleContext(DataTypeContext,0); +}; + +ComplexColTypeContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +ComplexColTypeContext.prototype.NULL = function() { + return this.getToken(SqlBaseParser.NULL, 0); +}; + +ComplexColTypeContext.prototype.commentSpec = function() { + return this.getTypedRuleContext(CommentSpecContext,0); +}; + +ComplexColTypeContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterComplexColType(this); + } +}; + +ComplexColTypeContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitComplexColType(this); + } +}; + +ComplexColTypeContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitComplexColType(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ComplexColTypeContext = ComplexColTypeContext; + +SqlBaseParser.prototype.complexColType = function() { + + var localctx = new ComplexColTypeContext(this, this._ctx, this.state); + this.enterRule(localctx, 232, SqlBaseParser.RULE_complexColType); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2813; + this.identifier(); + this.state = 2814; + this.match(SqlBaseParser.T__10); + this.state = 2815; + this.dataType(); + this.state = 2818; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.NOT) { + this.state = 2816; + this.match(SqlBaseParser.NOT); + this.state = 2817; + this.match(SqlBaseParser.NULL); + } + + this.state = 2821; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.COMMENT) { + this.state = 2820; + this.commentSpec(); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function WhenClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_whenClause; + this.condition = null; // ExpressionContext + this.result = null; // ExpressionContext + return this; +} + +WhenClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +WhenClauseContext.prototype.constructor = WhenClauseContext; + +WhenClauseContext.prototype.WHEN = function() { + return this.getToken(SqlBaseParser.WHEN, 0); +}; + +WhenClauseContext.prototype.THEN = function() { + return this.getToken(SqlBaseParser.THEN, 0); +}; + +WhenClauseContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +WhenClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterWhenClause(this); + } +}; + +WhenClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitWhenClause(this); + } +}; + +WhenClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitWhenClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.WhenClauseContext = WhenClauseContext; + +SqlBaseParser.prototype.whenClause = function() { + + var localctx = new WhenClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 234, SqlBaseParser.RULE_whenClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2823; + this.match(SqlBaseParser.WHEN); + this.state = 2824; + localctx.condition = this.expression(); + this.state = 2825; + this.match(SqlBaseParser.THEN); + this.state = 2826; + localctx.result = this.expression(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function WindowClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_windowClause; + return this; +} + +WindowClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +WindowClauseContext.prototype.constructor = WindowClauseContext; + +WindowClauseContext.prototype.WINDOW = function() { + return this.getToken(SqlBaseParser.WINDOW, 0); +}; + +WindowClauseContext.prototype.namedWindow = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(NamedWindowContext); + } else { + return this.getTypedRuleContext(NamedWindowContext,i); + } +}; + +WindowClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterWindowClause(this); + } +}; + +WindowClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitWindowClause(this); + } +}; + +WindowClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitWindowClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.WindowClauseContext = WindowClauseContext; + +SqlBaseParser.prototype.windowClause = function() { + + var localctx = new WindowClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 236, SqlBaseParser.RULE_windowClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2828; + this.match(SqlBaseParser.WINDOW); + this.state = 2829; + this.namedWindow(); + this.state = 2834; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,363,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 2830; + this.match(SqlBaseParser.T__3); + this.state = 2831; + this.namedWindow(); + } + this.state = 2836; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,363,this._ctx); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function NamedWindowContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_namedWindow; + this.name = null; // ErrorCapturingIdentifierContext + return this; +} + +NamedWindowContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +NamedWindowContext.prototype.constructor = NamedWindowContext; + +NamedWindowContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +NamedWindowContext.prototype.windowSpec = function() { + return this.getTypedRuleContext(WindowSpecContext,0); +}; + +NamedWindowContext.prototype.errorCapturingIdentifier = function() { + return this.getTypedRuleContext(ErrorCapturingIdentifierContext,0); +}; + +NamedWindowContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterNamedWindow(this); + } +}; + +NamedWindowContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitNamedWindow(this); + } +}; + +NamedWindowContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitNamedWindow(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.NamedWindowContext = NamedWindowContext; + +SqlBaseParser.prototype.namedWindow = function() { + + var localctx = new NamedWindowContext(this, this._ctx, this.state); + this.enterRule(localctx, 238, SqlBaseParser.RULE_namedWindow); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2837; + localctx.name = this.errorCapturingIdentifier(); + this.state = 2838; + this.match(SqlBaseParser.AS); + this.state = 2839; + this.windowSpec(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function WindowSpecContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_windowSpec; + return this; +} + +WindowSpecContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +WindowSpecContext.prototype.constructor = WindowSpecContext; + + + +WindowSpecContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function WindowRefContext(parser, ctx) { + WindowSpecContext.call(this, parser); + this.name = null; // ErrorCapturingIdentifierContext; + WindowSpecContext.prototype.copyFrom.call(this, ctx); + return this; +} + +WindowRefContext.prototype = Object.create(WindowSpecContext.prototype); +WindowRefContext.prototype.constructor = WindowRefContext; + +SqlBaseParser.WindowRefContext = WindowRefContext; + +WindowRefContext.prototype.errorCapturingIdentifier = function() { + return this.getTypedRuleContext(ErrorCapturingIdentifierContext,0); +}; +WindowRefContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterWindowRef(this); + } +}; + +WindowRefContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitWindowRef(this); + } +}; + +WindowRefContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitWindowRef(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function WindowDefContext(parser, ctx) { + WindowSpecContext.call(this, parser); + this._expression = null; // ExpressionContext; + this.partition = []; // of ExpressionContexts; + WindowSpecContext.prototype.copyFrom.call(this, ctx); + return this; +} + +WindowDefContext.prototype = Object.create(WindowSpecContext.prototype); +WindowDefContext.prototype.constructor = WindowDefContext; + +SqlBaseParser.WindowDefContext = WindowDefContext; + +WindowDefContext.prototype.CLUSTER = function() { + return this.getToken(SqlBaseParser.CLUSTER, 0); +}; + +WindowDefContext.prototype.BY = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.BY); + } else { + return this.getToken(SqlBaseParser.BY, i); + } +}; + + +WindowDefContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +WindowDefContext.prototype.windowFrame = function() { + return this.getTypedRuleContext(WindowFrameContext,0); +}; + +WindowDefContext.prototype.sortItem = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(SortItemContext); + } else { + return this.getTypedRuleContext(SortItemContext,i); + } +}; + +WindowDefContext.prototype.PARTITION = function() { + return this.getToken(SqlBaseParser.PARTITION, 0); +}; + +WindowDefContext.prototype.DISTRIBUTE = function() { + return this.getToken(SqlBaseParser.DISTRIBUTE, 0); +}; + +WindowDefContext.prototype.ORDER = function() { + return this.getToken(SqlBaseParser.ORDER, 0); +}; + +WindowDefContext.prototype.SORT = function() { + return this.getToken(SqlBaseParser.SORT, 0); +}; +WindowDefContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterWindowDef(this); + } +}; + +WindowDefContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitWindowDef(this); + } +}; + +WindowDefContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitWindowDef(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.WindowSpecContext = WindowSpecContext; + +SqlBaseParser.prototype.windowSpec = function() { + + var localctx = new WindowSpecContext(this, this._ctx, this.state); + this.enterRule(localctx, 240, SqlBaseParser.RULE_windowSpec); + var _la = 0; // Token type + try { + this.state = 2887; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,371,this._ctx); + switch(la_) { + case 1: + localctx = new WindowRefContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 2841; + localctx.name = this.errorCapturingIdentifier(); + break; + + case 2: + localctx = new WindowRefContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 2842; + this.match(SqlBaseParser.T__1); + this.state = 2843; + localctx.name = this.errorCapturingIdentifier(); + this.state = 2844; + this.match(SqlBaseParser.T__2); + break; + + case 3: + localctx = new WindowDefContext(this, localctx); + this.enterOuterAlt(localctx, 3); + this.state = 2846; + this.match(SqlBaseParser.T__1); + this.state = 2881; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.CLUSTER: + this.state = 2847; + this.match(SqlBaseParser.CLUSTER); + this.state = 2848; + this.match(SqlBaseParser.BY); + this.state = 2849; + localctx._expression = this.expression(); + localctx.partition.push(localctx._expression); + this.state = 2854; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2850; + this.match(SqlBaseParser.T__3); + this.state = 2851; + localctx._expression = this.expression(); + localctx.partition.push(localctx._expression); + this.state = 2856; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + break; + case SqlBaseParser.T__2: + case SqlBaseParser.DISTRIBUTE: + case SqlBaseParser.ORDER: + case SqlBaseParser.PARTITION: + case SqlBaseParser.RANGE: + case SqlBaseParser.ROWS: + case SqlBaseParser.SORT: + this.state = 2867; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.DISTRIBUTE || _la===SqlBaseParser.PARTITION) { + this.state = 2857; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.DISTRIBUTE || _la===SqlBaseParser.PARTITION)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 2858; + this.match(SqlBaseParser.BY); + this.state = 2859; + localctx._expression = this.expression(); + localctx.partition.push(localctx._expression); + this.state = 2864; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2860; + this.match(SqlBaseParser.T__3); + this.state = 2861; + localctx._expression = this.expression(); + localctx.partition.push(localctx._expression); + this.state = 2866; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + + this.state = 2879; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.ORDER || _la===SqlBaseParser.SORT) { + this.state = 2869; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.ORDER || _la===SqlBaseParser.SORT)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 2870; + this.match(SqlBaseParser.BY); + this.state = 2871; + this.sortItem(); + this.state = 2876; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2872; + this.match(SqlBaseParser.T__3); + this.state = 2873; + this.sortItem(); + this.state = 2878; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 2884; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.RANGE || _la===SqlBaseParser.ROWS) { + this.state = 2883; + this.windowFrame(); + } + + this.state = 2886; + this.match(SqlBaseParser.T__2); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function WindowFrameContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_windowFrame; + this.frameType = null; // Token + this.start = null; // FrameBoundContext + this.end = null; // FrameBoundContext + return this; +} + +WindowFrameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +WindowFrameContext.prototype.constructor = WindowFrameContext; + +WindowFrameContext.prototype.RANGE = function() { + return this.getToken(SqlBaseParser.RANGE, 0); +}; + +WindowFrameContext.prototype.frameBound = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(FrameBoundContext); + } else { + return this.getTypedRuleContext(FrameBoundContext,i); + } +}; + +WindowFrameContext.prototype.ROWS = function() { + return this.getToken(SqlBaseParser.ROWS, 0); +}; + +WindowFrameContext.prototype.BETWEEN = function() { + return this.getToken(SqlBaseParser.BETWEEN, 0); +}; + +WindowFrameContext.prototype.AND = function() { + return this.getToken(SqlBaseParser.AND, 0); +}; + +WindowFrameContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterWindowFrame(this); + } +}; + +WindowFrameContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitWindowFrame(this); + } +}; + +WindowFrameContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitWindowFrame(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.WindowFrameContext = WindowFrameContext; + +SqlBaseParser.prototype.windowFrame = function() { + + var localctx = new WindowFrameContext(this, this._ctx, this.state); + this.enterRule(localctx, 242, SqlBaseParser.RULE_windowFrame); + try { + this.state = 2905; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,372,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 2889; + localctx.frameType = this.match(SqlBaseParser.RANGE); + this.state = 2890; + localctx.start = this.frameBound(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 2891; + localctx.frameType = this.match(SqlBaseParser.ROWS); + this.state = 2892; + localctx.start = this.frameBound(); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 2893; + localctx.frameType = this.match(SqlBaseParser.RANGE); + this.state = 2894; + this.match(SqlBaseParser.BETWEEN); + this.state = 2895; + localctx.start = this.frameBound(); + this.state = 2896; + this.match(SqlBaseParser.AND); + this.state = 2897; + localctx.end = this.frameBound(); + break; + + case 4: + this.enterOuterAlt(localctx, 4); + this.state = 2899; + localctx.frameType = this.match(SqlBaseParser.ROWS); + this.state = 2900; + this.match(SqlBaseParser.BETWEEN); + this.state = 2901; + localctx.start = this.frameBound(); + this.state = 2902; + this.match(SqlBaseParser.AND); + this.state = 2903; + localctx.end = this.frameBound(); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function FrameBoundContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_frameBound; + this.boundType = null; // Token + return this; +} + +FrameBoundContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +FrameBoundContext.prototype.constructor = FrameBoundContext; + +FrameBoundContext.prototype.UNBOUNDED = function() { + return this.getToken(SqlBaseParser.UNBOUNDED, 0); +}; + +FrameBoundContext.prototype.PRECEDING = function() { + return this.getToken(SqlBaseParser.PRECEDING, 0); +}; + +FrameBoundContext.prototype.FOLLOWING = function() { + return this.getToken(SqlBaseParser.FOLLOWING, 0); +}; + +FrameBoundContext.prototype.ROW = function() { + return this.getToken(SqlBaseParser.ROW, 0); +}; + +FrameBoundContext.prototype.CURRENT = function() { + return this.getToken(SqlBaseParser.CURRENT, 0); +}; + +FrameBoundContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +FrameBoundContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterFrameBound(this); + } +}; + +FrameBoundContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitFrameBound(this); + } +}; + +FrameBoundContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitFrameBound(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.FrameBoundContext = FrameBoundContext; + +SqlBaseParser.prototype.frameBound = function() { + + var localctx = new FrameBoundContext(this, this._ctx, this.state); + this.enterRule(localctx, 244, SqlBaseParser.RULE_frameBound); + var _la = 0; // Token type + try { + this.state = 2914; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,373,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 2907; + this.match(SqlBaseParser.UNBOUNDED); + this.state = 2908; + localctx.boundType = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.FOLLOWING || _la===SqlBaseParser.PRECEDING)) { + localctx.boundType = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 2909; + localctx.boundType = this.match(SqlBaseParser.CURRENT); + this.state = 2910; + this.match(SqlBaseParser.ROW); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 2911; + this.expression(); + this.state = 2912; + localctx.boundType = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.FOLLOWING || _la===SqlBaseParser.PRECEDING)) { + localctx.boundType = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function QualifiedNameListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_qualifiedNameList; + return this; +} + +QualifiedNameListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QualifiedNameListContext.prototype.constructor = QualifiedNameListContext; + +QualifiedNameListContext.prototype.qualifiedName = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(QualifiedNameContext); + } else { + return this.getTypedRuleContext(QualifiedNameContext,i); + } +}; + +QualifiedNameListContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterQualifiedNameList(this); + } +}; + +QualifiedNameListContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitQualifiedNameList(this); + } +}; + +QualifiedNameListContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitQualifiedNameList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.QualifiedNameListContext = QualifiedNameListContext; + +SqlBaseParser.prototype.qualifiedNameList = function() { + + var localctx = new QualifiedNameListContext(this, this._ctx, this.state); + this.enterRule(localctx, 246, SqlBaseParser.RULE_qualifiedNameList); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 2916; + this.qualifiedName(); + this.state = 2921; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===SqlBaseParser.T__3) { + this.state = 2917; + this.match(SqlBaseParser.T__3); + this.state = 2918; + this.qualifiedName(); + this.state = 2923; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function FunctionNameContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_functionName; + return this; +} + +FunctionNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +FunctionNameContext.prototype.constructor = FunctionNameContext; + +FunctionNameContext.prototype.qualifiedName = function() { + return this.getTypedRuleContext(QualifiedNameContext,0); +}; + +FunctionNameContext.prototype.FILTER = function() { + return this.getToken(SqlBaseParser.FILTER, 0); +}; + +FunctionNameContext.prototype.LEFT = function() { + return this.getToken(SqlBaseParser.LEFT, 0); +}; + +FunctionNameContext.prototype.RIGHT = function() { + return this.getToken(SqlBaseParser.RIGHT, 0); +}; + +FunctionNameContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterFunctionName(this); + } +}; + +FunctionNameContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitFunctionName(this); + } +}; + +FunctionNameContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitFunctionName(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.FunctionNameContext = FunctionNameContext; + +SqlBaseParser.prototype.functionName = function() { + + var localctx = new FunctionNameContext(this, this._ctx, this.state); + this.enterRule(localctx, 248, SqlBaseParser.RULE_functionName); + try { + this.state = 2928; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,375,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 2924; + this.qualifiedName(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 2925; + this.match(SqlBaseParser.FILTER); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 2926; + this.match(SqlBaseParser.LEFT); + break; + + case 4: + this.enterOuterAlt(localctx, 4); + this.state = 2927; + this.match(SqlBaseParser.RIGHT); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function QualifiedNameContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_qualifiedName; + return this; +} + +QualifiedNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QualifiedNameContext.prototype.constructor = QualifiedNameContext; + +QualifiedNameContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +QualifiedNameContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterQualifiedName(this); + } +}; + +QualifiedNameContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitQualifiedName(this); + } +}; + +QualifiedNameContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitQualifiedName(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.QualifiedNameContext = QualifiedNameContext; + +SqlBaseParser.prototype.qualifiedName = function() { + + var localctx = new QualifiedNameContext(this, this._ctx, this.state); + this.enterRule(localctx, 250, SqlBaseParser.RULE_qualifiedName); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2930; + this.identifier(); + this.state = 2935; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,376,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 2931; + this.match(SqlBaseParser.T__4); + this.state = 2932; + this.identifier(); + } + this.state = 2937; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,376,this._ctx); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ErrorCapturingIdentifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_errorCapturingIdentifier; + return this; +} + +ErrorCapturingIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ErrorCapturingIdentifierContext.prototype.constructor = ErrorCapturingIdentifierContext; + +ErrorCapturingIdentifierContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +ErrorCapturingIdentifierContext.prototype.errorCapturingIdentifierExtra = function() { + return this.getTypedRuleContext(ErrorCapturingIdentifierExtraContext,0); +}; + +ErrorCapturingIdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterErrorCapturingIdentifier(this); + } +}; + +ErrorCapturingIdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitErrorCapturingIdentifier(this); + } +}; + +ErrorCapturingIdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitErrorCapturingIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.ErrorCapturingIdentifierContext = ErrorCapturingIdentifierContext; + +SqlBaseParser.prototype.errorCapturingIdentifier = function() { + + var localctx = new ErrorCapturingIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 252, SqlBaseParser.RULE_errorCapturingIdentifier); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2938; + this.identifier(); + this.state = 2939; + this.errorCapturingIdentifierExtra(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ErrorCapturingIdentifierExtraContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_errorCapturingIdentifierExtra; + return this; +} + +ErrorCapturingIdentifierExtraContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ErrorCapturingIdentifierExtraContext.prototype.constructor = ErrorCapturingIdentifierExtraContext; + + + +ErrorCapturingIdentifierExtraContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function ErrorIdentContext(parser, ctx) { + ErrorCapturingIdentifierExtraContext.call(this, parser); + ErrorCapturingIdentifierExtraContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ErrorIdentContext.prototype = Object.create(ErrorCapturingIdentifierExtraContext.prototype); +ErrorIdentContext.prototype.constructor = ErrorIdentContext; + +SqlBaseParser.ErrorIdentContext = ErrorIdentContext; + +ErrorIdentContext.prototype.MINUS = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(SqlBaseParser.MINUS); + } else { + return this.getToken(SqlBaseParser.MINUS, i); + } +}; + + +ErrorIdentContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; +ErrorIdentContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterErrorIdent(this); + } +}; + +ErrorIdentContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitErrorIdent(this); + } +}; + +ErrorIdentContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitErrorIdent(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function RealIdentContext(parser, ctx) { + ErrorCapturingIdentifierExtraContext.call(this, parser); + ErrorCapturingIdentifierExtraContext.prototype.copyFrom.call(this, ctx); + return this; +} + +RealIdentContext.prototype = Object.create(ErrorCapturingIdentifierExtraContext.prototype); +RealIdentContext.prototype.constructor = RealIdentContext; + +SqlBaseParser.RealIdentContext = RealIdentContext; + +RealIdentContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterRealIdent(this); + } +}; + +RealIdentContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitRealIdent(this); + } +}; + +RealIdentContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitRealIdent(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.ErrorCapturingIdentifierExtraContext = ErrorCapturingIdentifierExtraContext; + +SqlBaseParser.prototype.errorCapturingIdentifierExtra = function() { + + var localctx = new ErrorCapturingIdentifierExtraContext(this, this._ctx, this.state); + this.enterRule(localctx, 254, SqlBaseParser.RULE_errorCapturingIdentifierExtra); + try { + this.state = 2948; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,378,this._ctx); + switch(la_) { + case 1: + localctx = new ErrorIdentContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 2943; + this._errHandler.sync(this); + var _alt = 1; + do { + switch (_alt) { + case 1: + this.state = 2941; + this.match(SqlBaseParser.MINUS); + this.state = 2942; + this.identifier(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 2945; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,377, this._ctx); + } while ( _alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER ); + break; + + case 2: + localctx = new RealIdentContext(this, localctx); + this.enterOuterAlt(localctx, 2); + + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function IdentifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_identifier; + return this; +} + +IdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IdentifierContext.prototype.constructor = IdentifierContext; + +IdentifierContext.prototype.strictIdentifier = function() { + return this.getTypedRuleContext(StrictIdentifierContext,0); +}; + +IdentifierContext.prototype.strictNonReserved = function() { + return this.getTypedRuleContext(StrictNonReservedContext,0); +}; + +IdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterIdentifier(this); + } +}; + +IdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitIdentifier(this); + } +}; + +IdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.IdentifierContext = IdentifierContext; + +SqlBaseParser.prototype.identifier = function() { + + var localctx = new IdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 256, SqlBaseParser.RULE_identifier); + try { + this.state = 2953; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,379,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 2950; + this.strictIdentifier(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 2951; + if (!( !SQL_standard_keyword_behavior)) { + throw new antlr4.error.FailedPredicateException(this, "!SQL_standard_keyword_behavior"); + } + this.state = 2952; + this.strictNonReserved(); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function StrictIdentifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_strictIdentifier; + return this; +} + +StrictIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +StrictIdentifierContext.prototype.constructor = StrictIdentifierContext; + + + +StrictIdentifierContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function QuotedIdentifierAlternativeContext(parser, ctx) { + StrictIdentifierContext.call(this, parser); + StrictIdentifierContext.prototype.copyFrom.call(this, ctx); + return this; +} + +QuotedIdentifierAlternativeContext.prototype = Object.create(StrictIdentifierContext.prototype); +QuotedIdentifierAlternativeContext.prototype.constructor = QuotedIdentifierAlternativeContext; + +SqlBaseParser.QuotedIdentifierAlternativeContext = QuotedIdentifierAlternativeContext; + +QuotedIdentifierAlternativeContext.prototype.quotedIdentifier = function() { + return this.getTypedRuleContext(QuotedIdentifierContext,0); +}; +QuotedIdentifierAlternativeContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterQuotedIdentifierAlternative(this); + } +}; + +QuotedIdentifierAlternativeContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitQuotedIdentifierAlternative(this); + } +}; + +QuotedIdentifierAlternativeContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitQuotedIdentifierAlternative(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function UnquotedIdentifierContext(parser, ctx) { + StrictIdentifierContext.call(this, parser); + StrictIdentifierContext.prototype.copyFrom.call(this, ctx); + return this; +} + +UnquotedIdentifierContext.prototype = Object.create(StrictIdentifierContext.prototype); +UnquotedIdentifierContext.prototype.constructor = UnquotedIdentifierContext; + +SqlBaseParser.UnquotedIdentifierContext = UnquotedIdentifierContext; + +UnquotedIdentifierContext.prototype.IDENTIFIER = function() { + return this.getToken(SqlBaseParser.IDENTIFIER, 0); +}; + +UnquotedIdentifierContext.prototype.ansiNonReserved = function() { + return this.getTypedRuleContext(AnsiNonReservedContext,0); +}; + +UnquotedIdentifierContext.prototype.nonReserved = function() { + return this.getTypedRuleContext(NonReservedContext,0); +}; +UnquotedIdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterUnquotedIdentifier(this); + } +}; + +UnquotedIdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitUnquotedIdentifier(this); + } +}; + +UnquotedIdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitUnquotedIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.StrictIdentifierContext = StrictIdentifierContext; + +SqlBaseParser.prototype.strictIdentifier = function() { + + var localctx = new StrictIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 258, SqlBaseParser.RULE_strictIdentifier); + try { + this.state = 2961; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,380,this._ctx); + switch(la_) { + case 1: + localctx = new UnquotedIdentifierContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 2955; + this.match(SqlBaseParser.IDENTIFIER); + break; + + case 2: + localctx = new QuotedIdentifierAlternativeContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 2956; + this.quotedIdentifier(); + break; + + case 3: + localctx = new UnquotedIdentifierContext(this, localctx); + this.enterOuterAlt(localctx, 3); + this.state = 2957; + if (!( SQL_standard_keyword_behavior)) { + throw new antlr4.error.FailedPredicateException(this, "SQL_standard_keyword_behavior"); + } + this.state = 2958; + this.ansiNonReserved(); + break; + + case 4: + localctx = new UnquotedIdentifierContext(this, localctx); + this.enterOuterAlt(localctx, 4); + this.state = 2959; + if (!( !SQL_standard_keyword_behavior)) { + throw new antlr4.error.FailedPredicateException(this, "!SQL_standard_keyword_behavior"); + } + this.state = 2960; + this.nonReserved(); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function QuotedIdentifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_quotedIdentifier; + return this; +} + +QuotedIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QuotedIdentifierContext.prototype.constructor = QuotedIdentifierContext; + +QuotedIdentifierContext.prototype.BACKQUOTED_IDENTIFIER = function() { + return this.getToken(SqlBaseParser.BACKQUOTED_IDENTIFIER, 0); +}; + +QuotedIdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterQuotedIdentifier(this); + } +}; + +QuotedIdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitQuotedIdentifier(this); + } +}; + +QuotedIdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitQuotedIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.QuotedIdentifierContext = QuotedIdentifierContext; + +SqlBaseParser.prototype.quotedIdentifier = function() { + + var localctx = new QuotedIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 260, SqlBaseParser.RULE_quotedIdentifier); + try { + this.enterOuterAlt(localctx, 1); + this.state = 2963; + this.match(SqlBaseParser.BACKQUOTED_IDENTIFIER); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function NumberContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_number; + return this; +} + +NumberContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +NumberContext.prototype.constructor = NumberContext; + + + +NumberContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function DecimalLiteralContext(parser, ctx) { + NumberContext.call(this, parser); + NumberContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DecimalLiteralContext.prototype = Object.create(NumberContext.prototype); +DecimalLiteralContext.prototype.constructor = DecimalLiteralContext; + +SqlBaseParser.DecimalLiteralContext = DecimalLiteralContext; + +DecimalLiteralContext.prototype.DECIMAL_VALUE = function() { + return this.getToken(SqlBaseParser.DECIMAL_VALUE, 0); +}; + +DecimalLiteralContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; +DecimalLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDecimalLiteral(this); + } +}; + +DecimalLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDecimalLiteral(this); + } +}; + +DecimalLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDecimalLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function BigIntLiteralContext(parser, ctx) { + NumberContext.call(this, parser); + NumberContext.prototype.copyFrom.call(this, ctx); + return this; +} + +BigIntLiteralContext.prototype = Object.create(NumberContext.prototype); +BigIntLiteralContext.prototype.constructor = BigIntLiteralContext; + +SqlBaseParser.BigIntLiteralContext = BigIntLiteralContext; + +BigIntLiteralContext.prototype.BIGINT_LITERAL = function() { + return this.getToken(SqlBaseParser.BIGINT_LITERAL, 0); +}; + +BigIntLiteralContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; +BigIntLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterBigIntLiteral(this); + } +}; + +BigIntLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitBigIntLiteral(this); + } +}; + +BigIntLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitBigIntLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function TinyIntLiteralContext(parser, ctx) { + NumberContext.call(this, parser); + NumberContext.prototype.copyFrom.call(this, ctx); + return this; +} + +TinyIntLiteralContext.prototype = Object.create(NumberContext.prototype); +TinyIntLiteralContext.prototype.constructor = TinyIntLiteralContext; + +SqlBaseParser.TinyIntLiteralContext = TinyIntLiteralContext; + +TinyIntLiteralContext.prototype.TINYINT_LITERAL = function() { + return this.getToken(SqlBaseParser.TINYINT_LITERAL, 0); +}; + +TinyIntLiteralContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; +TinyIntLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterTinyIntLiteral(this); + } +}; + +TinyIntLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitTinyIntLiteral(this); + } +}; + +TinyIntLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitTinyIntLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function LegacyDecimalLiteralContext(parser, ctx) { + NumberContext.call(this, parser); + NumberContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LegacyDecimalLiteralContext.prototype = Object.create(NumberContext.prototype); +LegacyDecimalLiteralContext.prototype.constructor = LegacyDecimalLiteralContext; + +SqlBaseParser.LegacyDecimalLiteralContext = LegacyDecimalLiteralContext; + +LegacyDecimalLiteralContext.prototype.EXPONENT_VALUE = function() { + return this.getToken(SqlBaseParser.EXPONENT_VALUE, 0); +}; + +LegacyDecimalLiteralContext.prototype.DECIMAL_VALUE = function() { + return this.getToken(SqlBaseParser.DECIMAL_VALUE, 0); +}; + +LegacyDecimalLiteralContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; +LegacyDecimalLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterLegacyDecimalLiteral(this); + } +}; + +LegacyDecimalLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitLegacyDecimalLiteral(this); + } +}; + +LegacyDecimalLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitLegacyDecimalLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function BigDecimalLiteralContext(parser, ctx) { + NumberContext.call(this, parser); + NumberContext.prototype.copyFrom.call(this, ctx); + return this; +} + +BigDecimalLiteralContext.prototype = Object.create(NumberContext.prototype); +BigDecimalLiteralContext.prototype.constructor = BigDecimalLiteralContext; + +SqlBaseParser.BigDecimalLiteralContext = BigDecimalLiteralContext; + +BigDecimalLiteralContext.prototype.BIGDECIMAL_LITERAL = function() { + return this.getToken(SqlBaseParser.BIGDECIMAL_LITERAL, 0); +}; + +BigDecimalLiteralContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; +BigDecimalLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterBigDecimalLiteral(this); + } +}; + +BigDecimalLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitBigDecimalLiteral(this); + } +}; + +BigDecimalLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitBigDecimalLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ExponentLiteralContext(parser, ctx) { + NumberContext.call(this, parser); + NumberContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ExponentLiteralContext.prototype = Object.create(NumberContext.prototype); +ExponentLiteralContext.prototype.constructor = ExponentLiteralContext; + +SqlBaseParser.ExponentLiteralContext = ExponentLiteralContext; + +ExponentLiteralContext.prototype.EXPONENT_VALUE = function() { + return this.getToken(SqlBaseParser.EXPONENT_VALUE, 0); +}; + +ExponentLiteralContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; +ExponentLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterExponentLiteral(this); + } +}; + +ExponentLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitExponentLiteral(this); + } +}; + +ExponentLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitExponentLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function DoubleLiteralContext(parser, ctx) { + NumberContext.call(this, parser); + NumberContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DoubleLiteralContext.prototype = Object.create(NumberContext.prototype); +DoubleLiteralContext.prototype.constructor = DoubleLiteralContext; + +SqlBaseParser.DoubleLiteralContext = DoubleLiteralContext; + +DoubleLiteralContext.prototype.DOUBLE_LITERAL = function() { + return this.getToken(SqlBaseParser.DOUBLE_LITERAL, 0); +}; + +DoubleLiteralContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; +DoubleLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterDoubleLiteral(this); + } +}; + +DoubleLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitDoubleLiteral(this); + } +}; + +DoubleLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitDoubleLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function IntegerLiteralContext(parser, ctx) { + NumberContext.call(this, parser); + NumberContext.prototype.copyFrom.call(this, ctx); + return this; +} + +IntegerLiteralContext.prototype = Object.create(NumberContext.prototype); +IntegerLiteralContext.prototype.constructor = IntegerLiteralContext; + +SqlBaseParser.IntegerLiteralContext = IntegerLiteralContext; + +IntegerLiteralContext.prototype.INTEGER_VALUE = function() { + return this.getToken(SqlBaseParser.INTEGER_VALUE, 0); +}; + +IntegerLiteralContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; +IntegerLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterIntegerLiteral(this); + } +}; + +IntegerLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitIntegerLiteral(this); + } +}; + +IntegerLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitIntegerLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function FloatLiteralContext(parser, ctx) { + NumberContext.call(this, parser); + NumberContext.prototype.copyFrom.call(this, ctx); + return this; +} + +FloatLiteralContext.prototype = Object.create(NumberContext.prototype); +FloatLiteralContext.prototype.constructor = FloatLiteralContext; + +SqlBaseParser.FloatLiteralContext = FloatLiteralContext; + +FloatLiteralContext.prototype.FLOAT_LITERAL = function() { + return this.getToken(SqlBaseParser.FLOAT_LITERAL, 0); +}; + +FloatLiteralContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; +FloatLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterFloatLiteral(this); + } +}; + +FloatLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitFloatLiteral(this); + } +}; + +FloatLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitFloatLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SmallIntLiteralContext(parser, ctx) { + NumberContext.call(this, parser); + NumberContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SmallIntLiteralContext.prototype = Object.create(NumberContext.prototype); +SmallIntLiteralContext.prototype.constructor = SmallIntLiteralContext; + +SqlBaseParser.SmallIntLiteralContext = SmallIntLiteralContext; + +SmallIntLiteralContext.prototype.SMALLINT_LITERAL = function() { + return this.getToken(SqlBaseParser.SMALLINT_LITERAL, 0); +}; + +SmallIntLiteralContext.prototype.MINUS = function() { + return this.getToken(SqlBaseParser.MINUS, 0); +}; +SmallIntLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterSmallIntLiteral(this); + } +}; + +SmallIntLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitSmallIntLiteral(this); + } +}; + +SmallIntLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitSmallIntLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +SqlBaseParser.NumberContext = NumberContext; + +SqlBaseParser.prototype.number = function() { + + var localctx = new NumberContext(this, this._ctx, this.state); + this.enterRule(localctx, 262, SqlBaseParser.RULE_number); + var _la = 0; // Token type + try { + this.state = 3008; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,391,this._ctx); + switch(la_) { + case 1: + localctx = new ExponentLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 2965; + if (!( !legacy_exponent_literal_as_decimal_enabled)) { + throw new antlr4.error.FailedPredicateException(this, "!legacy_exponent_literal_as_decimal_enabled"); + } + this.state = 2967; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.MINUS) { + this.state = 2966; + this.match(SqlBaseParser.MINUS); + } + + this.state = 2969; + this.match(SqlBaseParser.EXPONENT_VALUE); + break; + + case 2: + localctx = new DecimalLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 2970; + if (!( !legacy_exponent_literal_as_decimal_enabled)) { + throw new antlr4.error.FailedPredicateException(this, "!legacy_exponent_literal_as_decimal_enabled"); + } + this.state = 2972; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.MINUS) { + this.state = 2971; + this.match(SqlBaseParser.MINUS); + } + + this.state = 2974; + this.match(SqlBaseParser.DECIMAL_VALUE); + break; + + case 3: + localctx = new LegacyDecimalLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 3); + this.state = 2975; + if (!( legacy_exponent_literal_as_decimal_enabled)) { + throw new antlr4.error.FailedPredicateException(this, "legacy_exponent_literal_as_decimal_enabled"); + } + this.state = 2977; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.MINUS) { + this.state = 2976; + this.match(SqlBaseParser.MINUS); + } + + this.state = 2979; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.EXPONENT_VALUE || _la===SqlBaseParser.DECIMAL_VALUE)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + + case 4: + localctx = new IntegerLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 4); + this.state = 2981; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.MINUS) { + this.state = 2980; + this.match(SqlBaseParser.MINUS); + } + + this.state = 2983; + this.match(SqlBaseParser.INTEGER_VALUE); + break; + + case 5: + localctx = new BigIntLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 5); + this.state = 2985; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.MINUS) { + this.state = 2984; + this.match(SqlBaseParser.MINUS); + } + + this.state = 2987; + this.match(SqlBaseParser.BIGINT_LITERAL); + break; + + case 6: + localctx = new SmallIntLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 6); + this.state = 2989; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.MINUS) { + this.state = 2988; + this.match(SqlBaseParser.MINUS); + } + + this.state = 2991; + this.match(SqlBaseParser.SMALLINT_LITERAL); + break; + + case 7: + localctx = new TinyIntLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 7); + this.state = 2993; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.MINUS) { + this.state = 2992; + this.match(SqlBaseParser.MINUS); + } + + this.state = 2995; + this.match(SqlBaseParser.TINYINT_LITERAL); + break; + + case 8: + localctx = new DoubleLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 8); + this.state = 2997; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.MINUS) { + this.state = 2996; + this.match(SqlBaseParser.MINUS); + } + + this.state = 2999; + this.match(SqlBaseParser.DOUBLE_LITERAL); + break; + + case 9: + localctx = new FloatLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 9); + this.state = 3001; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.MINUS) { + this.state = 3000; + this.match(SqlBaseParser.MINUS); + } + + this.state = 3003; + this.match(SqlBaseParser.FLOAT_LITERAL); + break; + + case 10: + localctx = new BigDecimalLiteralContext(this, localctx); + this.enterOuterAlt(localctx, 10); + this.state = 3005; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===SqlBaseParser.MINUS) { + this.state = 3004; + this.match(SqlBaseParser.MINUS); + } + + this.state = 3007; + this.match(SqlBaseParser.BIGDECIMAL_LITERAL); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function AlterColumnActionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_alterColumnAction; + this.setOrDrop = null; // Token + return this; +} + +AlterColumnActionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +AlterColumnActionContext.prototype.constructor = AlterColumnActionContext; + +AlterColumnActionContext.prototype.TYPE = function() { + return this.getToken(SqlBaseParser.TYPE, 0); +}; + +AlterColumnActionContext.prototype.dataType = function() { + return this.getTypedRuleContext(DataTypeContext,0); +}; + +AlterColumnActionContext.prototype.commentSpec = function() { + return this.getTypedRuleContext(CommentSpecContext,0); +}; + +AlterColumnActionContext.prototype.colPosition = function() { + return this.getTypedRuleContext(ColPositionContext,0); +}; + +AlterColumnActionContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +AlterColumnActionContext.prototype.NULL = function() { + return this.getToken(SqlBaseParser.NULL, 0); +}; + +AlterColumnActionContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; + +AlterColumnActionContext.prototype.DROP = function() { + return this.getToken(SqlBaseParser.DROP, 0); +}; + +AlterColumnActionContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterAlterColumnAction(this); + } +}; + +AlterColumnActionContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitAlterColumnAction(this); + } +}; + +AlterColumnActionContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitAlterColumnAction(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.AlterColumnActionContext = AlterColumnActionContext; + +SqlBaseParser.prototype.alterColumnAction = function() { + + var localctx = new AlterColumnActionContext(this, this._ctx, this.state); + this.enterRule(localctx, 264, SqlBaseParser.RULE_alterColumnAction); + var _la = 0; // Token type + try { + this.state = 3017; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case SqlBaseParser.TYPE: + this.enterOuterAlt(localctx, 1); + this.state = 3010; + this.match(SqlBaseParser.TYPE); + this.state = 3011; + this.dataType(); + break; + case SqlBaseParser.COMMENT: + this.enterOuterAlt(localctx, 2); + this.state = 3012; + this.commentSpec(); + break; + case SqlBaseParser.AFTER: + case SqlBaseParser.FIRST: + this.enterOuterAlt(localctx, 3); + this.state = 3013; + this.colPosition(); + break; + case SqlBaseParser.DROP: + case SqlBaseParser.SET: + this.enterOuterAlt(localctx, 4); + this.state = 3014; + localctx.setOrDrop = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.DROP || _la===SqlBaseParser.SET)) { + localctx.setOrDrop = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 3015; + this.match(SqlBaseParser.NOT); + this.state = 3016; + this.match(SqlBaseParser.NULL); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function AnsiNonReservedContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_ansiNonReserved; + return this; +} + +AnsiNonReservedContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +AnsiNonReservedContext.prototype.constructor = AnsiNonReservedContext; + +AnsiNonReservedContext.prototype.ADD = function() { + return this.getToken(SqlBaseParser.ADD, 0); +}; + +AnsiNonReservedContext.prototype.AFTER = function() { + return this.getToken(SqlBaseParser.AFTER, 0); +}; + +AnsiNonReservedContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +AnsiNonReservedContext.prototype.ANALYZE = function() { + return this.getToken(SqlBaseParser.ANALYZE, 0); +}; + +AnsiNonReservedContext.prototype.ANTI = function() { + return this.getToken(SqlBaseParser.ANTI, 0); +}; + +AnsiNonReservedContext.prototype.ARCHIVE = function() { + return this.getToken(SqlBaseParser.ARCHIVE, 0); +}; + +AnsiNonReservedContext.prototype.ARRAY = function() { + return this.getToken(SqlBaseParser.ARRAY, 0); +}; + +AnsiNonReservedContext.prototype.ASC = function() { + return this.getToken(SqlBaseParser.ASC, 0); +}; + +AnsiNonReservedContext.prototype.AT = function() { + return this.getToken(SqlBaseParser.AT, 0); +}; + +AnsiNonReservedContext.prototype.BETWEEN = function() { + return this.getToken(SqlBaseParser.BETWEEN, 0); +}; + +AnsiNonReservedContext.prototype.BUCKET = function() { + return this.getToken(SqlBaseParser.BUCKET, 0); +}; + +AnsiNonReservedContext.prototype.BUCKETS = function() { + return this.getToken(SqlBaseParser.BUCKETS, 0); +}; + +AnsiNonReservedContext.prototype.BY = function() { + return this.getToken(SqlBaseParser.BY, 0); +}; + +AnsiNonReservedContext.prototype.CACHE = function() { + return this.getToken(SqlBaseParser.CACHE, 0); +}; + +AnsiNonReservedContext.prototype.CASCADE = function() { + return this.getToken(SqlBaseParser.CASCADE, 0); +}; + +AnsiNonReservedContext.prototype.CHANGE = function() { + return this.getToken(SqlBaseParser.CHANGE, 0); +}; + +AnsiNonReservedContext.prototype.CLEAR = function() { + return this.getToken(SqlBaseParser.CLEAR, 0); +}; + +AnsiNonReservedContext.prototype.CLUSTER = function() { + return this.getToken(SqlBaseParser.CLUSTER, 0); +}; + +AnsiNonReservedContext.prototype.CLUSTERED = function() { + return this.getToken(SqlBaseParser.CLUSTERED, 0); +}; + +AnsiNonReservedContext.prototype.CODEGEN = function() { + return this.getToken(SqlBaseParser.CODEGEN, 0); +}; + +AnsiNonReservedContext.prototype.COLLECTION = function() { + return this.getToken(SqlBaseParser.COLLECTION, 0); +}; + +AnsiNonReservedContext.prototype.COLUMNS = function() { + return this.getToken(SqlBaseParser.COLUMNS, 0); +}; + +AnsiNonReservedContext.prototype.COMMENT = function() { + return this.getToken(SqlBaseParser.COMMENT, 0); +}; + +AnsiNonReservedContext.prototype.COMMIT = function() { + return this.getToken(SqlBaseParser.COMMIT, 0); +}; + +AnsiNonReservedContext.prototype.COMPACT = function() { + return this.getToken(SqlBaseParser.COMPACT, 0); +}; + +AnsiNonReservedContext.prototype.COMPACTIONS = function() { + return this.getToken(SqlBaseParser.COMPACTIONS, 0); +}; + +AnsiNonReservedContext.prototype.COMPUTE = function() { + return this.getToken(SqlBaseParser.COMPUTE, 0); +}; + +AnsiNonReservedContext.prototype.CONCATENATE = function() { + return this.getToken(SqlBaseParser.CONCATENATE, 0); +}; + +AnsiNonReservedContext.prototype.COST = function() { + return this.getToken(SqlBaseParser.COST, 0); +}; + +AnsiNonReservedContext.prototype.CUBE = function() { + return this.getToken(SqlBaseParser.CUBE, 0); +}; + +AnsiNonReservedContext.prototype.CURRENT = function() { + return this.getToken(SqlBaseParser.CURRENT, 0); +}; + +AnsiNonReservedContext.prototype.DATA = function() { + return this.getToken(SqlBaseParser.DATA, 0); +}; + +AnsiNonReservedContext.prototype.DATABASE = function() { + return this.getToken(SqlBaseParser.DATABASE, 0); +}; + +AnsiNonReservedContext.prototype.DATABASES = function() { + return this.getToken(SqlBaseParser.DATABASES, 0); +}; + +AnsiNonReservedContext.prototype.DBPROPERTIES = function() { + return this.getToken(SqlBaseParser.DBPROPERTIES, 0); +}; + +AnsiNonReservedContext.prototype.DEFINED = function() { + return this.getToken(SqlBaseParser.DEFINED, 0); +}; + +AnsiNonReservedContext.prototype.DELETE = function() { + return this.getToken(SqlBaseParser.DELETE, 0); +}; + +AnsiNonReservedContext.prototype.DELIMITED = function() { + return this.getToken(SqlBaseParser.DELIMITED, 0); +}; + +AnsiNonReservedContext.prototype.DESC = function() { + return this.getToken(SqlBaseParser.DESC, 0); +}; + +AnsiNonReservedContext.prototype.DESCRIBE = function() { + return this.getToken(SqlBaseParser.DESCRIBE, 0); +}; + +AnsiNonReservedContext.prototype.DFS = function() { + return this.getToken(SqlBaseParser.DFS, 0); +}; + +AnsiNonReservedContext.prototype.DIRECTORIES = function() { + return this.getToken(SqlBaseParser.DIRECTORIES, 0); +}; + +AnsiNonReservedContext.prototype.DIRECTORY = function() { + return this.getToken(SqlBaseParser.DIRECTORY, 0); +}; + +AnsiNonReservedContext.prototype.DISTRIBUTE = function() { + return this.getToken(SqlBaseParser.DISTRIBUTE, 0); +}; + +AnsiNonReservedContext.prototype.DIV = function() { + return this.getToken(SqlBaseParser.DIV, 0); +}; + +AnsiNonReservedContext.prototype.DROP = function() { + return this.getToken(SqlBaseParser.DROP, 0); +}; + +AnsiNonReservedContext.prototype.ESCAPED = function() { + return this.getToken(SqlBaseParser.ESCAPED, 0); +}; + +AnsiNonReservedContext.prototype.EXCHANGE = function() { + return this.getToken(SqlBaseParser.EXCHANGE, 0); +}; + +AnsiNonReservedContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; + +AnsiNonReservedContext.prototype.EXPLAIN = function() { + return this.getToken(SqlBaseParser.EXPLAIN, 0); +}; + +AnsiNonReservedContext.prototype.EXPORT = function() { + return this.getToken(SqlBaseParser.EXPORT, 0); +}; + +AnsiNonReservedContext.prototype.EXTENDED = function() { + return this.getToken(SqlBaseParser.EXTENDED, 0); +}; + +AnsiNonReservedContext.prototype.EXTERNAL = function() { + return this.getToken(SqlBaseParser.EXTERNAL, 0); +}; + +AnsiNonReservedContext.prototype.EXTRACT = function() { + return this.getToken(SqlBaseParser.EXTRACT, 0); +}; + +AnsiNonReservedContext.prototype.FIELDS = function() { + return this.getToken(SqlBaseParser.FIELDS, 0); +}; + +AnsiNonReservedContext.prototype.FILEFORMAT = function() { + return this.getToken(SqlBaseParser.FILEFORMAT, 0); +}; + +AnsiNonReservedContext.prototype.FIRST = function() { + return this.getToken(SqlBaseParser.FIRST, 0); +}; + +AnsiNonReservedContext.prototype.FOLLOWING = function() { + return this.getToken(SqlBaseParser.FOLLOWING, 0); +}; + +AnsiNonReservedContext.prototype.FORMAT = function() { + return this.getToken(SqlBaseParser.FORMAT, 0); +}; + +AnsiNonReservedContext.prototype.FORMATTED = function() { + return this.getToken(SqlBaseParser.FORMATTED, 0); +}; + +AnsiNonReservedContext.prototype.FUNCTION = function() { + return this.getToken(SqlBaseParser.FUNCTION, 0); +}; + +AnsiNonReservedContext.prototype.FUNCTIONS = function() { + return this.getToken(SqlBaseParser.FUNCTIONS, 0); +}; + +AnsiNonReservedContext.prototype.GLOBAL = function() { + return this.getToken(SqlBaseParser.GLOBAL, 0); +}; + +AnsiNonReservedContext.prototype.GROUPING = function() { + return this.getToken(SqlBaseParser.GROUPING, 0); +}; + +AnsiNonReservedContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +AnsiNonReservedContext.prototype.IGNORE = function() { + return this.getToken(SqlBaseParser.IGNORE, 0); +}; + +AnsiNonReservedContext.prototype.IMPORT = function() { + return this.getToken(SqlBaseParser.IMPORT, 0); +}; + +AnsiNonReservedContext.prototype.INDEX = function() { + return this.getToken(SqlBaseParser.INDEX, 0); +}; + +AnsiNonReservedContext.prototype.INDEXES = function() { + return this.getToken(SqlBaseParser.INDEXES, 0); +}; + +AnsiNonReservedContext.prototype.INPATH = function() { + return this.getToken(SqlBaseParser.INPATH, 0); +}; + +AnsiNonReservedContext.prototype.INPUTFORMAT = function() { + return this.getToken(SqlBaseParser.INPUTFORMAT, 0); +}; + +AnsiNonReservedContext.prototype.INSERT = function() { + return this.getToken(SqlBaseParser.INSERT, 0); +}; + +AnsiNonReservedContext.prototype.INTERVAL = function() { + return this.getToken(SqlBaseParser.INTERVAL, 0); +}; + +AnsiNonReservedContext.prototype.ITEMS = function() { + return this.getToken(SqlBaseParser.ITEMS, 0); +}; + +AnsiNonReservedContext.prototype.KEYS = function() { + return this.getToken(SqlBaseParser.KEYS, 0); +}; + +AnsiNonReservedContext.prototype.LAST = function() { + return this.getToken(SqlBaseParser.LAST, 0); +}; + +AnsiNonReservedContext.prototype.LATERAL = function() { + return this.getToken(SqlBaseParser.LATERAL, 0); +}; + +AnsiNonReservedContext.prototype.LAZY = function() { + return this.getToken(SqlBaseParser.LAZY, 0); +}; + +AnsiNonReservedContext.prototype.LIKE = function() { + return this.getToken(SqlBaseParser.LIKE, 0); +}; + +AnsiNonReservedContext.prototype.LIMIT = function() { + return this.getToken(SqlBaseParser.LIMIT, 0); +}; + +AnsiNonReservedContext.prototype.LINES = function() { + return this.getToken(SqlBaseParser.LINES, 0); +}; + +AnsiNonReservedContext.prototype.LIST = function() { + return this.getToken(SqlBaseParser.LIST, 0); +}; + +AnsiNonReservedContext.prototype.LOAD = function() { + return this.getToken(SqlBaseParser.LOAD, 0); +}; + +AnsiNonReservedContext.prototype.LOCAL = function() { + return this.getToken(SqlBaseParser.LOCAL, 0); +}; + +AnsiNonReservedContext.prototype.LOCATION = function() { + return this.getToken(SqlBaseParser.LOCATION, 0); +}; + +AnsiNonReservedContext.prototype.LOCK = function() { + return this.getToken(SqlBaseParser.LOCK, 0); +}; + +AnsiNonReservedContext.prototype.LOCKS = function() { + return this.getToken(SqlBaseParser.LOCKS, 0); +}; + +AnsiNonReservedContext.prototype.LOGICAL = function() { + return this.getToken(SqlBaseParser.LOGICAL, 0); +}; + +AnsiNonReservedContext.prototype.MACRO = function() { + return this.getToken(SqlBaseParser.MACRO, 0); +}; + +AnsiNonReservedContext.prototype.MAP = function() { + return this.getToken(SqlBaseParser.MAP, 0); +}; + +AnsiNonReservedContext.prototype.MATCHED = function() { + return this.getToken(SqlBaseParser.MATCHED, 0); +}; + +AnsiNonReservedContext.prototype.MERGE = function() { + return this.getToken(SqlBaseParser.MERGE, 0); +}; + +AnsiNonReservedContext.prototype.MSCK = function() { + return this.getToken(SqlBaseParser.MSCK, 0); +}; + +AnsiNonReservedContext.prototype.NAMESPACE = function() { + return this.getToken(SqlBaseParser.NAMESPACE, 0); +}; + +AnsiNonReservedContext.prototype.NAMESPACES = function() { + return this.getToken(SqlBaseParser.NAMESPACES, 0); +}; + +AnsiNonReservedContext.prototype.NO = function() { + return this.getToken(SqlBaseParser.NO, 0); +}; + +AnsiNonReservedContext.prototype.NULLS = function() { + return this.getToken(SqlBaseParser.NULLS, 0); +}; + +AnsiNonReservedContext.prototype.OF = function() { + return this.getToken(SqlBaseParser.OF, 0); +}; + +AnsiNonReservedContext.prototype.OPTION = function() { + return this.getToken(SqlBaseParser.OPTION, 0); +}; + +AnsiNonReservedContext.prototype.OPTIONS = function() { + return this.getToken(SqlBaseParser.OPTIONS, 0); +}; + +AnsiNonReservedContext.prototype.OUT = function() { + return this.getToken(SqlBaseParser.OUT, 0); +}; + +AnsiNonReservedContext.prototype.OUTPUTFORMAT = function() { + return this.getToken(SqlBaseParser.OUTPUTFORMAT, 0); +}; + +AnsiNonReservedContext.prototype.OVER = function() { + return this.getToken(SqlBaseParser.OVER, 0); +}; + +AnsiNonReservedContext.prototype.OVERLAY = function() { + return this.getToken(SqlBaseParser.OVERLAY, 0); +}; + +AnsiNonReservedContext.prototype.OVERWRITE = function() { + return this.getToken(SqlBaseParser.OVERWRITE, 0); +}; + +AnsiNonReservedContext.prototype.PARTITION = function() { + return this.getToken(SqlBaseParser.PARTITION, 0); +}; + +AnsiNonReservedContext.prototype.PARTITIONED = function() { + return this.getToken(SqlBaseParser.PARTITIONED, 0); +}; + +AnsiNonReservedContext.prototype.PARTITIONS = function() { + return this.getToken(SqlBaseParser.PARTITIONS, 0); +}; + +AnsiNonReservedContext.prototype.PERCENTLIT = function() { + return this.getToken(SqlBaseParser.PERCENTLIT, 0); +}; + +AnsiNonReservedContext.prototype.PIVOT = function() { + return this.getToken(SqlBaseParser.PIVOT, 0); +}; + +AnsiNonReservedContext.prototype.PLACING = function() { + return this.getToken(SqlBaseParser.PLACING, 0); +}; + +AnsiNonReservedContext.prototype.POSITION = function() { + return this.getToken(SqlBaseParser.POSITION, 0); +}; + +AnsiNonReservedContext.prototype.PRECEDING = function() { + return this.getToken(SqlBaseParser.PRECEDING, 0); +}; + +AnsiNonReservedContext.prototype.PRINCIPALS = function() { + return this.getToken(SqlBaseParser.PRINCIPALS, 0); +}; + +AnsiNonReservedContext.prototype.PROPERTIES = function() { + return this.getToken(SqlBaseParser.PROPERTIES, 0); +}; + +AnsiNonReservedContext.prototype.PURGE = function() { + return this.getToken(SqlBaseParser.PURGE, 0); +}; + +AnsiNonReservedContext.prototype.QUERY = function() { + return this.getToken(SqlBaseParser.QUERY, 0); +}; + +AnsiNonReservedContext.prototype.RANGE = function() { + return this.getToken(SqlBaseParser.RANGE, 0); +}; + +AnsiNonReservedContext.prototype.RECORDREADER = function() { + return this.getToken(SqlBaseParser.RECORDREADER, 0); +}; + +AnsiNonReservedContext.prototype.RECORDWRITER = function() { + return this.getToken(SqlBaseParser.RECORDWRITER, 0); +}; + +AnsiNonReservedContext.prototype.RECOVER = function() { + return this.getToken(SqlBaseParser.RECOVER, 0); +}; + +AnsiNonReservedContext.prototype.REDUCE = function() { + return this.getToken(SqlBaseParser.REDUCE, 0); +}; + +AnsiNonReservedContext.prototype.REFRESH = function() { + return this.getToken(SqlBaseParser.REFRESH, 0); +}; + +AnsiNonReservedContext.prototype.RENAME = function() { + return this.getToken(SqlBaseParser.RENAME, 0); +}; + +AnsiNonReservedContext.prototype.REPAIR = function() { + return this.getToken(SqlBaseParser.REPAIR, 0); +}; + +AnsiNonReservedContext.prototype.REPLACE = function() { + return this.getToken(SqlBaseParser.REPLACE, 0); +}; + +AnsiNonReservedContext.prototype.RESET = function() { + return this.getToken(SqlBaseParser.RESET, 0); +}; + +AnsiNonReservedContext.prototype.RESTRICT = function() { + return this.getToken(SqlBaseParser.RESTRICT, 0); +}; + +AnsiNonReservedContext.prototype.REVOKE = function() { + return this.getToken(SqlBaseParser.REVOKE, 0); +}; + +AnsiNonReservedContext.prototype.RLIKE = function() { + return this.getToken(SqlBaseParser.RLIKE, 0); +}; + +AnsiNonReservedContext.prototype.ROLE = function() { + return this.getToken(SqlBaseParser.ROLE, 0); +}; + +AnsiNonReservedContext.prototype.ROLES = function() { + return this.getToken(SqlBaseParser.ROLES, 0); +}; + +AnsiNonReservedContext.prototype.ROLLBACK = function() { + return this.getToken(SqlBaseParser.ROLLBACK, 0); +}; + +AnsiNonReservedContext.prototype.ROLLUP = function() { + return this.getToken(SqlBaseParser.ROLLUP, 0); +}; + +AnsiNonReservedContext.prototype.ROW = function() { + return this.getToken(SqlBaseParser.ROW, 0); +}; + +AnsiNonReservedContext.prototype.ROWS = function() { + return this.getToken(SqlBaseParser.ROWS, 0); +}; + +AnsiNonReservedContext.prototype.SCHEMA = function() { + return this.getToken(SqlBaseParser.SCHEMA, 0); +}; + +AnsiNonReservedContext.prototype.SEMI = function() { + return this.getToken(SqlBaseParser.SEMI, 0); +}; + +AnsiNonReservedContext.prototype.SEPARATED = function() { + return this.getToken(SqlBaseParser.SEPARATED, 0); +}; + +AnsiNonReservedContext.prototype.SERDE = function() { + return this.getToken(SqlBaseParser.SERDE, 0); +}; + +AnsiNonReservedContext.prototype.SERDEPROPERTIES = function() { + return this.getToken(SqlBaseParser.SERDEPROPERTIES, 0); +}; + +AnsiNonReservedContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; + +AnsiNonReservedContext.prototype.SETMINUS = function() { + return this.getToken(SqlBaseParser.SETMINUS, 0); +}; + +AnsiNonReservedContext.prototype.SETS = function() { + return this.getToken(SqlBaseParser.SETS, 0); +}; + +AnsiNonReservedContext.prototype.SHOW = function() { + return this.getToken(SqlBaseParser.SHOW, 0); +}; + +AnsiNonReservedContext.prototype.SKEWED = function() { + return this.getToken(SqlBaseParser.SKEWED, 0); +}; + +AnsiNonReservedContext.prototype.SORT = function() { + return this.getToken(SqlBaseParser.SORT, 0); +}; + +AnsiNonReservedContext.prototype.SORTED = function() { + return this.getToken(SqlBaseParser.SORTED, 0); +}; + +AnsiNonReservedContext.prototype.START = function() { + return this.getToken(SqlBaseParser.START, 0); +}; + +AnsiNonReservedContext.prototype.STATISTICS = function() { + return this.getToken(SqlBaseParser.STATISTICS, 0); +}; + +AnsiNonReservedContext.prototype.STORED = function() { + return this.getToken(SqlBaseParser.STORED, 0); +}; + +AnsiNonReservedContext.prototype.STRATIFY = function() { + return this.getToken(SqlBaseParser.STRATIFY, 0); +}; + +AnsiNonReservedContext.prototype.STRUCT = function() { + return this.getToken(SqlBaseParser.STRUCT, 0); +}; + +AnsiNonReservedContext.prototype.SUBSTR = function() { + return this.getToken(SqlBaseParser.SUBSTR, 0); +}; + +AnsiNonReservedContext.prototype.SUBSTRING = function() { + return this.getToken(SqlBaseParser.SUBSTRING, 0); +}; + +AnsiNonReservedContext.prototype.TABLES = function() { + return this.getToken(SqlBaseParser.TABLES, 0); +}; + +AnsiNonReservedContext.prototype.TABLESAMPLE = function() { + return this.getToken(SqlBaseParser.TABLESAMPLE, 0); +}; + +AnsiNonReservedContext.prototype.TBLPROPERTIES = function() { + return this.getToken(SqlBaseParser.TBLPROPERTIES, 0); +}; + +AnsiNonReservedContext.prototype.TEMPORARY = function() { + return this.getToken(SqlBaseParser.TEMPORARY, 0); +}; + +AnsiNonReservedContext.prototype.TERMINATED = function() { + return this.getToken(SqlBaseParser.TERMINATED, 0); +}; + +AnsiNonReservedContext.prototype.TOUCH = function() { + return this.getToken(SqlBaseParser.TOUCH, 0); +}; + +AnsiNonReservedContext.prototype.TRANSACTION = function() { + return this.getToken(SqlBaseParser.TRANSACTION, 0); +}; + +AnsiNonReservedContext.prototype.TRANSACTIONS = function() { + return this.getToken(SqlBaseParser.TRANSACTIONS, 0); +}; + +AnsiNonReservedContext.prototype.TRANSFORM = function() { + return this.getToken(SqlBaseParser.TRANSFORM, 0); +}; + +AnsiNonReservedContext.prototype.TRIM = function() { + return this.getToken(SqlBaseParser.TRIM, 0); +}; + +AnsiNonReservedContext.prototype.TRUE = function() { + return this.getToken(SqlBaseParser.TRUE, 0); +}; + +AnsiNonReservedContext.prototype.TRUNCATE = function() { + return this.getToken(SqlBaseParser.TRUNCATE, 0); +}; + +AnsiNonReservedContext.prototype.TYPE = function() { + return this.getToken(SqlBaseParser.TYPE, 0); +}; + +AnsiNonReservedContext.prototype.UNARCHIVE = function() { + return this.getToken(SqlBaseParser.UNARCHIVE, 0); +}; + +AnsiNonReservedContext.prototype.UNBOUNDED = function() { + return this.getToken(SqlBaseParser.UNBOUNDED, 0); +}; + +AnsiNonReservedContext.prototype.UNCACHE = function() { + return this.getToken(SqlBaseParser.UNCACHE, 0); +}; + +AnsiNonReservedContext.prototype.UNLOCK = function() { + return this.getToken(SqlBaseParser.UNLOCK, 0); +}; + +AnsiNonReservedContext.prototype.UNSET = function() { + return this.getToken(SqlBaseParser.UNSET, 0); +}; + +AnsiNonReservedContext.prototype.UPDATE = function() { + return this.getToken(SqlBaseParser.UPDATE, 0); +}; + +AnsiNonReservedContext.prototype.USE = function() { + return this.getToken(SqlBaseParser.USE, 0); +}; + +AnsiNonReservedContext.prototype.VALUES = function() { + return this.getToken(SqlBaseParser.VALUES, 0); +}; + +AnsiNonReservedContext.prototype.VIEW = function() { + return this.getToken(SqlBaseParser.VIEW, 0); +}; + +AnsiNonReservedContext.prototype.VIEWS = function() { + return this.getToken(SqlBaseParser.VIEWS, 0); +}; + +AnsiNonReservedContext.prototype.WINDOW = function() { + return this.getToken(SqlBaseParser.WINDOW, 0); +}; + +AnsiNonReservedContext.prototype.ZONE = function() { + return this.getToken(SqlBaseParser.ZONE, 0); +}; + +AnsiNonReservedContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterAnsiNonReserved(this); + } +}; + +AnsiNonReservedContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitAnsiNonReserved(this); + } +}; + +AnsiNonReservedContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitAnsiNonReserved(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.AnsiNonReservedContext = AnsiNonReservedContext; + +SqlBaseParser.prototype.ansiNonReserved = function() { + + var localctx = new AnsiNonReservedContext(this, this._ctx, this.state); + this.enterRule(localctx, 266, SqlBaseParser.RULE_ansiNonReserved); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 3019; + _la = this._input.LA(1); + if(!(((((_la - 12)) & ~0x1f) == 0 && ((1 << (_la - 12)) & ((1 << (SqlBaseParser.ADD - 12)) | (1 << (SqlBaseParser.AFTER - 12)) | (1 << (SqlBaseParser.ALTER - 12)) | (1 << (SqlBaseParser.ANALYZE - 12)) | (1 << (SqlBaseParser.ANTI - 12)) | (1 << (SqlBaseParser.ARCHIVE - 12)) | (1 << (SqlBaseParser.ARRAY - 12)) | (1 << (SqlBaseParser.ASC - 12)) | (1 << (SqlBaseParser.AT - 12)) | (1 << (SqlBaseParser.BETWEEN - 12)) | (1 << (SqlBaseParser.BUCKET - 12)) | (1 << (SqlBaseParser.BUCKETS - 12)) | (1 << (SqlBaseParser.BY - 12)) | (1 << (SqlBaseParser.CACHE - 12)) | (1 << (SqlBaseParser.CASCADE - 12)) | (1 << (SqlBaseParser.CHANGE - 12)) | (1 << (SqlBaseParser.CLEAR - 12)) | (1 << (SqlBaseParser.CLUSTER - 12)) | (1 << (SqlBaseParser.CLUSTERED - 12)) | (1 << (SqlBaseParser.CODEGEN - 12)) | (1 << (SqlBaseParser.COLLECTION - 12)))) !== 0) || ((((_la - 44)) & ~0x1f) == 0 && ((1 << (_la - 44)) & ((1 << (SqlBaseParser.COLUMNS - 44)) | (1 << (SqlBaseParser.COMMENT - 44)) | (1 << (SqlBaseParser.COMMIT - 44)) | (1 << (SqlBaseParser.COMPACT - 44)) | (1 << (SqlBaseParser.COMPACTIONS - 44)) | (1 << (SqlBaseParser.COMPUTE - 44)) | (1 << (SqlBaseParser.CONCATENATE - 44)) | (1 << (SqlBaseParser.COST - 44)) | (1 << (SqlBaseParser.CUBE - 44)) | (1 << (SqlBaseParser.CURRENT - 44)) | (1 << (SqlBaseParser.DATA - 44)) | (1 << (SqlBaseParser.DATABASE - 44)) | (1 << (SqlBaseParser.DATABASES - 44)) | (1 << (SqlBaseParser.DBPROPERTIES - 44)) | (1 << (SqlBaseParser.DEFINED - 44)) | (1 << (SqlBaseParser.DELETE - 44)) | (1 << (SqlBaseParser.DELIMITED - 44)) | (1 << (SqlBaseParser.DESC - 44)) | (1 << (SqlBaseParser.DESCRIBE - 44)) | (1 << (SqlBaseParser.DFS - 44)) | (1 << (SqlBaseParser.DIRECTORIES - 44)) | (1 << (SqlBaseParser.DIRECTORY - 44)) | (1 << (SqlBaseParser.DISTRIBUTE - 44)) | (1 << (SqlBaseParser.DIV - 44)))) !== 0) || ((((_la - 76)) & ~0x1f) == 0 && ((1 << (_la - 76)) & ((1 << (SqlBaseParser.DROP - 76)) | (1 << (SqlBaseParser.ESCAPED - 76)) | (1 << (SqlBaseParser.EXCHANGE - 76)) | (1 << (SqlBaseParser.EXISTS - 76)) | (1 << (SqlBaseParser.EXPLAIN - 76)) | (1 << (SqlBaseParser.EXPORT - 76)) | (1 << (SqlBaseParser.EXTENDED - 76)) | (1 << (SqlBaseParser.EXTERNAL - 76)) | (1 << (SqlBaseParser.EXTRACT - 76)) | (1 << (SqlBaseParser.FIELDS - 76)) | (1 << (SqlBaseParser.FILEFORMAT - 76)) | (1 << (SqlBaseParser.FIRST - 76)) | (1 << (SqlBaseParser.FOLLOWING - 76)) | (1 << (SqlBaseParser.FORMAT - 76)) | (1 << (SqlBaseParser.FORMATTED - 76)) | (1 << (SqlBaseParser.FUNCTION - 76)) | (1 << (SqlBaseParser.FUNCTIONS - 76)) | (1 << (SqlBaseParser.GLOBAL - 76)) | (1 << (SqlBaseParser.GROUPING - 76)))) !== 0) || ((((_la - 109)) & ~0x1f) == 0 && ((1 << (_la - 109)) & ((1 << (SqlBaseParser.IF - 109)) | (1 << (SqlBaseParser.IGNORE - 109)) | (1 << (SqlBaseParser.IMPORT - 109)) | (1 << (SqlBaseParser.INDEX - 109)) | (1 << (SqlBaseParser.INDEXES - 109)) | (1 << (SqlBaseParser.INPATH - 109)) | (1 << (SqlBaseParser.INPUTFORMAT - 109)) | (1 << (SqlBaseParser.INSERT - 109)) | (1 << (SqlBaseParser.INTERVAL - 109)) | (1 << (SqlBaseParser.ITEMS - 109)) | (1 << (SqlBaseParser.KEYS - 109)) | (1 << (SqlBaseParser.LAST - 109)) | (1 << (SqlBaseParser.LATERAL - 109)) | (1 << (SqlBaseParser.LAZY - 109)) | (1 << (SqlBaseParser.LIKE - 109)) | (1 << (SqlBaseParser.LIMIT - 109)) | (1 << (SqlBaseParser.LINES - 109)) | (1 << (SqlBaseParser.LIST - 109)) | (1 << (SqlBaseParser.LOAD - 109)) | (1 << (SqlBaseParser.LOCAL - 109)) | (1 << (SqlBaseParser.LOCATION - 109)) | (1 << (SqlBaseParser.LOCK - 109)) | (1 << (SqlBaseParser.LOCKS - 109)) | (1 << (SqlBaseParser.LOGICAL - 109)))) !== 0) || ((((_la - 141)) & ~0x1f) == 0 && ((1 << (_la - 141)) & ((1 << (SqlBaseParser.MACRO - 141)) | (1 << (SqlBaseParser.MAP - 141)) | (1 << (SqlBaseParser.MATCHED - 141)) | (1 << (SqlBaseParser.MERGE - 141)) | (1 << (SqlBaseParser.MSCK - 141)) | (1 << (SqlBaseParser.NAMESPACE - 141)) | (1 << (SqlBaseParser.NAMESPACES - 141)) | (1 << (SqlBaseParser.NO - 141)) | (1 << (SqlBaseParser.NULLS - 141)) | (1 << (SqlBaseParser.OF - 141)) | (1 << (SqlBaseParser.OPTION - 141)) | (1 << (SqlBaseParser.OPTIONS - 141)) | (1 << (SqlBaseParser.OUT - 141)) | (1 << (SqlBaseParser.OUTPUTFORMAT - 141)) | (1 << (SqlBaseParser.OVER - 141)) | (1 << (SqlBaseParser.OVERLAY - 141)) | (1 << (SqlBaseParser.OVERWRITE - 141)) | (1 << (SqlBaseParser.PARTITION - 141)) | (1 << (SqlBaseParser.PARTITIONED - 141)) | (1 << (SqlBaseParser.PARTITIONS - 141)) | (1 << (SqlBaseParser.PERCENTLIT - 141)) | (1 << (SqlBaseParser.PIVOT - 141)) | (1 << (SqlBaseParser.PLACING - 141)))) !== 0) || ((((_la - 173)) & ~0x1f) == 0 && ((1 << (_la - 173)) & ((1 << (SqlBaseParser.POSITION - 173)) | (1 << (SqlBaseParser.PRECEDING - 173)) | (1 << (SqlBaseParser.PRINCIPALS - 173)) | (1 << (SqlBaseParser.PROPERTIES - 173)) | (1 << (SqlBaseParser.PURGE - 173)) | (1 << (SqlBaseParser.QUERY - 173)) | (1 << (SqlBaseParser.RANGE - 173)) | (1 << (SqlBaseParser.RECORDREADER - 173)) | (1 << (SqlBaseParser.RECORDWRITER - 173)) | (1 << (SqlBaseParser.RECOVER - 173)) | (1 << (SqlBaseParser.REDUCE - 173)) | (1 << (SqlBaseParser.REFRESH - 173)) | (1 << (SqlBaseParser.RENAME - 173)) | (1 << (SqlBaseParser.REPAIR - 173)) | (1 << (SqlBaseParser.REPLACE - 173)) | (1 << (SqlBaseParser.RESET - 173)) | (1 << (SqlBaseParser.RESTRICT - 173)) | (1 << (SqlBaseParser.REVOKE - 173)) | (1 << (SqlBaseParser.RLIKE - 173)) | (1 << (SqlBaseParser.ROLE - 173)) | (1 << (SqlBaseParser.ROLES - 173)) | (1 << (SqlBaseParser.ROLLBACK - 173)) | (1 << (SqlBaseParser.ROLLUP - 173)) | (1 << (SqlBaseParser.ROW - 173)) | (1 << (SqlBaseParser.ROWS - 173)) | (1 << (SqlBaseParser.SCHEMA - 173)) | (1 << (SqlBaseParser.SEMI - 173)) | (1 << (SqlBaseParser.SEPARATED - 173)))) !== 0) || ((((_la - 205)) & ~0x1f) == 0 && ((1 << (_la - 205)) & ((1 << (SqlBaseParser.SERDE - 205)) | (1 << (SqlBaseParser.SERDEPROPERTIES - 205)) | (1 << (SqlBaseParser.SET - 205)) | (1 << (SqlBaseParser.SETMINUS - 205)) | (1 << (SqlBaseParser.SETS - 205)) | (1 << (SqlBaseParser.SHOW - 205)) | (1 << (SqlBaseParser.SKEWED - 205)) | (1 << (SqlBaseParser.SORT - 205)) | (1 << (SqlBaseParser.SORTED - 205)) | (1 << (SqlBaseParser.START - 205)) | (1 << (SqlBaseParser.STATISTICS - 205)) | (1 << (SqlBaseParser.STORED - 205)) | (1 << (SqlBaseParser.STRATIFY - 205)) | (1 << (SqlBaseParser.STRUCT - 205)) | (1 << (SqlBaseParser.SUBSTR - 205)) | (1 << (SqlBaseParser.SUBSTRING - 205)) | (1 << (SqlBaseParser.TABLES - 205)) | (1 << (SqlBaseParser.TABLESAMPLE - 205)) | (1 << (SqlBaseParser.TBLPROPERTIES - 205)) | (1 << (SqlBaseParser.TEMPORARY - 205)) | (1 << (SqlBaseParser.TERMINATED - 205)) | (1 << (SqlBaseParser.TOUCH - 205)) | (1 << (SqlBaseParser.TRANSACTION - 205)) | (1 << (SqlBaseParser.TRANSACTIONS - 205)) | (1 << (SqlBaseParser.TRANSFORM - 205)))) !== 0) || ((((_la - 237)) & ~0x1f) == 0 && ((1 << (_la - 237)) & ((1 << (SqlBaseParser.TRIM - 237)) | (1 << (SqlBaseParser.TRUE - 237)) | (1 << (SqlBaseParser.TRUNCATE - 237)) | (1 << (SqlBaseParser.TYPE - 237)) | (1 << (SqlBaseParser.UNARCHIVE - 237)) | (1 << (SqlBaseParser.UNBOUNDED - 237)) | (1 << (SqlBaseParser.UNCACHE - 237)) | (1 << (SqlBaseParser.UNLOCK - 237)) | (1 << (SqlBaseParser.UNSET - 237)) | (1 << (SqlBaseParser.UPDATE - 237)) | (1 << (SqlBaseParser.USE - 237)) | (1 << (SqlBaseParser.VALUES - 237)) | (1 << (SqlBaseParser.VIEW - 237)) | (1 << (SqlBaseParser.VIEWS - 237)) | (1 << (SqlBaseParser.WINDOW - 237)) | (1 << (SqlBaseParser.ZONE - 237)))) !== 0))) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function StrictNonReservedContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_strictNonReserved; + return this; +} + +StrictNonReservedContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +StrictNonReservedContext.prototype.constructor = StrictNonReservedContext; + +StrictNonReservedContext.prototype.ANTI = function() { + return this.getToken(SqlBaseParser.ANTI, 0); +}; + +StrictNonReservedContext.prototype.CROSS = function() { + return this.getToken(SqlBaseParser.CROSS, 0); +}; + +StrictNonReservedContext.prototype.EXCEPT = function() { + return this.getToken(SqlBaseParser.EXCEPT, 0); +}; + +StrictNonReservedContext.prototype.FULL = function() { + return this.getToken(SqlBaseParser.FULL, 0); +}; + +StrictNonReservedContext.prototype.INNER = function() { + return this.getToken(SqlBaseParser.INNER, 0); +}; + +StrictNonReservedContext.prototype.INTERSECT = function() { + return this.getToken(SqlBaseParser.INTERSECT, 0); +}; + +StrictNonReservedContext.prototype.JOIN = function() { + return this.getToken(SqlBaseParser.JOIN, 0); +}; + +StrictNonReservedContext.prototype.LEFT = function() { + return this.getToken(SqlBaseParser.LEFT, 0); +}; + +StrictNonReservedContext.prototype.NATURAL = function() { + return this.getToken(SqlBaseParser.NATURAL, 0); +}; + +StrictNonReservedContext.prototype.ON = function() { + return this.getToken(SqlBaseParser.ON, 0); +}; + +StrictNonReservedContext.prototype.RIGHT = function() { + return this.getToken(SqlBaseParser.RIGHT, 0); +}; + +StrictNonReservedContext.prototype.SEMI = function() { + return this.getToken(SqlBaseParser.SEMI, 0); +}; + +StrictNonReservedContext.prototype.SETMINUS = function() { + return this.getToken(SqlBaseParser.SETMINUS, 0); +}; + +StrictNonReservedContext.prototype.UNION = function() { + return this.getToken(SqlBaseParser.UNION, 0); +}; + +StrictNonReservedContext.prototype.USING = function() { + return this.getToken(SqlBaseParser.USING, 0); +}; + +StrictNonReservedContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterStrictNonReserved(this); + } +}; + +StrictNonReservedContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitStrictNonReserved(this); + } +}; + +StrictNonReservedContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitStrictNonReserved(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.StrictNonReservedContext = StrictNonReservedContext; + +SqlBaseParser.prototype.strictNonReserved = function() { + + var localctx = new StrictNonReservedContext(this, this._ctx, this.state); + this.enterRule(localctx, 268, SqlBaseParser.RULE_strictNonReserved); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 3021; + _la = this._input.LA(1); + if(!(_la===SqlBaseParser.ANTI || _la===SqlBaseParser.CROSS || _la===SqlBaseParser.EXCEPT || ((((_la - 101)) & ~0x1f) == 0 && ((1 << (_la - 101)) & ((1 << (SqlBaseParser.FULL - 101)) | (1 << (SqlBaseParser.INNER - 101)) | (1 << (SqlBaseParser.INTERSECT - 101)) | (1 << (SqlBaseParser.JOIN - 101)) | (1 << (SqlBaseParser.LEFT - 101)))) !== 0) || _la===SqlBaseParser.NATURAL || _la===SqlBaseParser.ON || ((((_la - 193)) & ~0x1f) == 0 && ((1 << (_la - 193)) & ((1 << (SqlBaseParser.RIGHT - 193)) | (1 << (SqlBaseParser.SEMI - 193)) | (1 << (SqlBaseParser.SETMINUS - 193)))) !== 0) || _la===SqlBaseParser.UNION || _la===SqlBaseParser.USING)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function NonReservedContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = SqlBaseParser.RULE_nonReserved; + return this; +} + +NonReservedContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +NonReservedContext.prototype.constructor = NonReservedContext; + +NonReservedContext.prototype.ADD = function() { + return this.getToken(SqlBaseParser.ADD, 0); +}; + +NonReservedContext.prototype.AFTER = function() { + return this.getToken(SqlBaseParser.AFTER, 0); +}; + +NonReservedContext.prototype.ALL = function() { + return this.getToken(SqlBaseParser.ALL, 0); +}; + +NonReservedContext.prototype.ALTER = function() { + return this.getToken(SqlBaseParser.ALTER, 0); +}; + +NonReservedContext.prototype.ANALYZE = function() { + return this.getToken(SqlBaseParser.ANALYZE, 0); +}; + +NonReservedContext.prototype.AND = function() { + return this.getToken(SqlBaseParser.AND, 0); +}; + +NonReservedContext.prototype.ANY = function() { + return this.getToken(SqlBaseParser.ANY, 0); +}; + +NonReservedContext.prototype.ARCHIVE = function() { + return this.getToken(SqlBaseParser.ARCHIVE, 0); +}; + +NonReservedContext.prototype.ARRAY = function() { + return this.getToken(SqlBaseParser.ARRAY, 0); +}; + +NonReservedContext.prototype.AS = function() { + return this.getToken(SqlBaseParser.AS, 0); +}; + +NonReservedContext.prototype.ASC = function() { + return this.getToken(SqlBaseParser.ASC, 0); +}; + +NonReservedContext.prototype.AT = function() { + return this.getToken(SqlBaseParser.AT, 0); +}; + +NonReservedContext.prototype.AUTHORIZATION = function() { + return this.getToken(SqlBaseParser.AUTHORIZATION, 0); +}; + +NonReservedContext.prototype.BETWEEN = function() { + return this.getToken(SqlBaseParser.BETWEEN, 0); +}; + +NonReservedContext.prototype.BOTH = function() { + return this.getToken(SqlBaseParser.BOTH, 0); +}; + +NonReservedContext.prototype.BUCKET = function() { + return this.getToken(SqlBaseParser.BUCKET, 0); +}; + +NonReservedContext.prototype.BUCKETS = function() { + return this.getToken(SqlBaseParser.BUCKETS, 0); +}; + +NonReservedContext.prototype.BY = function() { + return this.getToken(SqlBaseParser.BY, 0); +}; + +NonReservedContext.prototype.CACHE = function() { + return this.getToken(SqlBaseParser.CACHE, 0); +}; + +NonReservedContext.prototype.CASCADE = function() { + return this.getToken(SqlBaseParser.CASCADE, 0); +}; + +NonReservedContext.prototype.CASE = function() { + return this.getToken(SqlBaseParser.CASE, 0); +}; + +NonReservedContext.prototype.CAST = function() { + return this.getToken(SqlBaseParser.CAST, 0); +}; + +NonReservedContext.prototype.CHANGE = function() { + return this.getToken(SqlBaseParser.CHANGE, 0); +}; + +NonReservedContext.prototype.CHECK = function() { + return this.getToken(SqlBaseParser.CHECK, 0); +}; + +NonReservedContext.prototype.CLEAR = function() { + return this.getToken(SqlBaseParser.CLEAR, 0); +}; + +NonReservedContext.prototype.CLUSTER = function() { + return this.getToken(SqlBaseParser.CLUSTER, 0); +}; + +NonReservedContext.prototype.CLUSTERED = function() { + return this.getToken(SqlBaseParser.CLUSTERED, 0); +}; + +NonReservedContext.prototype.CODEGEN = function() { + return this.getToken(SqlBaseParser.CODEGEN, 0); +}; + +NonReservedContext.prototype.COLLATE = function() { + return this.getToken(SqlBaseParser.COLLATE, 0); +}; + +NonReservedContext.prototype.COLLECTION = function() { + return this.getToken(SqlBaseParser.COLLECTION, 0); +}; + +NonReservedContext.prototype.COLUMN = function() { + return this.getToken(SqlBaseParser.COLUMN, 0); +}; + +NonReservedContext.prototype.COLUMNS = function() { + return this.getToken(SqlBaseParser.COLUMNS, 0); +}; + +NonReservedContext.prototype.COMMENT = function() { + return this.getToken(SqlBaseParser.COMMENT, 0); +}; + +NonReservedContext.prototype.COMMIT = function() { + return this.getToken(SqlBaseParser.COMMIT, 0); +}; + +NonReservedContext.prototype.COMPACT = function() { + return this.getToken(SqlBaseParser.COMPACT, 0); +}; + +NonReservedContext.prototype.COMPACTIONS = function() { + return this.getToken(SqlBaseParser.COMPACTIONS, 0); +}; + +NonReservedContext.prototype.COMPUTE = function() { + return this.getToken(SqlBaseParser.COMPUTE, 0); +}; + +NonReservedContext.prototype.CONCATENATE = function() { + return this.getToken(SqlBaseParser.CONCATENATE, 0); +}; + +NonReservedContext.prototype.CONSTRAINT = function() { + return this.getToken(SqlBaseParser.CONSTRAINT, 0); +}; + +NonReservedContext.prototype.COST = function() { + return this.getToken(SqlBaseParser.COST, 0); +}; + +NonReservedContext.prototype.CREATE = function() { + return this.getToken(SqlBaseParser.CREATE, 0); +}; + +NonReservedContext.prototype.CUBE = function() { + return this.getToken(SqlBaseParser.CUBE, 0); +}; + +NonReservedContext.prototype.CURRENT = function() { + return this.getToken(SqlBaseParser.CURRENT, 0); +}; + +NonReservedContext.prototype.CURRENT_DATE = function() { + return this.getToken(SqlBaseParser.CURRENT_DATE, 0); +}; + +NonReservedContext.prototype.CURRENT_TIME = function() { + return this.getToken(SqlBaseParser.CURRENT_TIME, 0); +}; + +NonReservedContext.prototype.CURRENT_TIMESTAMP = function() { + return this.getToken(SqlBaseParser.CURRENT_TIMESTAMP, 0); +}; + +NonReservedContext.prototype.CURRENT_USER = function() { + return this.getToken(SqlBaseParser.CURRENT_USER, 0); +}; + +NonReservedContext.prototype.DATA = function() { + return this.getToken(SqlBaseParser.DATA, 0); +}; + +NonReservedContext.prototype.DATABASE = function() { + return this.getToken(SqlBaseParser.DATABASE, 0); +}; + +NonReservedContext.prototype.DATABASES = function() { + return this.getToken(SqlBaseParser.DATABASES, 0); +}; + +NonReservedContext.prototype.DBPROPERTIES = function() { + return this.getToken(SqlBaseParser.DBPROPERTIES, 0); +}; + +NonReservedContext.prototype.DEFINED = function() { + return this.getToken(SqlBaseParser.DEFINED, 0); +}; + +NonReservedContext.prototype.DELETE = function() { + return this.getToken(SqlBaseParser.DELETE, 0); +}; + +NonReservedContext.prototype.DELIMITED = function() { + return this.getToken(SqlBaseParser.DELIMITED, 0); +}; + +NonReservedContext.prototype.DESC = function() { + return this.getToken(SqlBaseParser.DESC, 0); +}; + +NonReservedContext.prototype.DESCRIBE = function() { + return this.getToken(SqlBaseParser.DESCRIBE, 0); +}; + +NonReservedContext.prototype.DFS = function() { + return this.getToken(SqlBaseParser.DFS, 0); +}; + +NonReservedContext.prototype.DIRECTORIES = function() { + return this.getToken(SqlBaseParser.DIRECTORIES, 0); +}; + +NonReservedContext.prototype.DIRECTORY = function() { + return this.getToken(SqlBaseParser.DIRECTORY, 0); +}; + +NonReservedContext.prototype.DISTINCT = function() { + return this.getToken(SqlBaseParser.DISTINCT, 0); +}; + +NonReservedContext.prototype.DISTRIBUTE = function() { + return this.getToken(SqlBaseParser.DISTRIBUTE, 0); +}; + +NonReservedContext.prototype.DIV = function() { + return this.getToken(SqlBaseParser.DIV, 0); +}; + +NonReservedContext.prototype.DROP = function() { + return this.getToken(SqlBaseParser.DROP, 0); +}; + +NonReservedContext.prototype.ELSE = function() { + return this.getToken(SqlBaseParser.ELSE, 0); +}; + +NonReservedContext.prototype.END = function() { + return this.getToken(SqlBaseParser.END, 0); +}; + +NonReservedContext.prototype.ESCAPE = function() { + return this.getToken(SqlBaseParser.ESCAPE, 0); +}; + +NonReservedContext.prototype.ESCAPED = function() { + return this.getToken(SqlBaseParser.ESCAPED, 0); +}; + +NonReservedContext.prototype.EXCHANGE = function() { + return this.getToken(SqlBaseParser.EXCHANGE, 0); +}; + +NonReservedContext.prototype.EXISTS = function() { + return this.getToken(SqlBaseParser.EXISTS, 0); +}; + +NonReservedContext.prototype.EXPLAIN = function() { + return this.getToken(SqlBaseParser.EXPLAIN, 0); +}; + +NonReservedContext.prototype.EXPORT = function() { + return this.getToken(SqlBaseParser.EXPORT, 0); +}; + +NonReservedContext.prototype.EXTENDED = function() { + return this.getToken(SqlBaseParser.EXTENDED, 0); +}; + +NonReservedContext.prototype.EXTERNAL = function() { + return this.getToken(SqlBaseParser.EXTERNAL, 0); +}; + +NonReservedContext.prototype.EXTRACT = function() { + return this.getToken(SqlBaseParser.EXTRACT, 0); +}; + +NonReservedContext.prototype.FALSE = function() { + return this.getToken(SqlBaseParser.FALSE, 0); +}; + +NonReservedContext.prototype.FETCH = function() { + return this.getToken(SqlBaseParser.FETCH, 0); +}; + +NonReservedContext.prototype.FILTER = function() { + return this.getToken(SqlBaseParser.FILTER, 0); +}; + +NonReservedContext.prototype.FIELDS = function() { + return this.getToken(SqlBaseParser.FIELDS, 0); +}; + +NonReservedContext.prototype.FILEFORMAT = function() { + return this.getToken(SqlBaseParser.FILEFORMAT, 0); +}; + +NonReservedContext.prototype.FIRST = function() { + return this.getToken(SqlBaseParser.FIRST, 0); +}; + +NonReservedContext.prototype.FOLLOWING = function() { + return this.getToken(SqlBaseParser.FOLLOWING, 0); +}; + +NonReservedContext.prototype.FOR = function() { + return this.getToken(SqlBaseParser.FOR, 0); +}; + +NonReservedContext.prototype.FOREIGN = function() { + return this.getToken(SqlBaseParser.FOREIGN, 0); +}; + +NonReservedContext.prototype.FORMAT = function() { + return this.getToken(SqlBaseParser.FORMAT, 0); +}; + +NonReservedContext.prototype.FORMATTED = function() { + return this.getToken(SqlBaseParser.FORMATTED, 0); +}; + +NonReservedContext.prototype.FROM = function() { + return this.getToken(SqlBaseParser.FROM, 0); +}; + +NonReservedContext.prototype.FUNCTION = function() { + return this.getToken(SqlBaseParser.FUNCTION, 0); +}; + +NonReservedContext.prototype.FUNCTIONS = function() { + return this.getToken(SqlBaseParser.FUNCTIONS, 0); +}; + +NonReservedContext.prototype.GLOBAL = function() { + return this.getToken(SqlBaseParser.GLOBAL, 0); +}; + +NonReservedContext.prototype.GRANT = function() { + return this.getToken(SqlBaseParser.GRANT, 0); +}; + +NonReservedContext.prototype.GROUP = function() { + return this.getToken(SqlBaseParser.GROUP, 0); +}; + +NonReservedContext.prototype.GROUPING = function() { + return this.getToken(SqlBaseParser.GROUPING, 0); +}; + +NonReservedContext.prototype.HAVING = function() { + return this.getToken(SqlBaseParser.HAVING, 0); +}; + +NonReservedContext.prototype.IF = function() { + return this.getToken(SqlBaseParser.IF, 0); +}; + +NonReservedContext.prototype.IGNORE = function() { + return this.getToken(SqlBaseParser.IGNORE, 0); +}; + +NonReservedContext.prototype.IMPORT = function() { + return this.getToken(SqlBaseParser.IMPORT, 0); +}; + +NonReservedContext.prototype.IN = function() { + return this.getToken(SqlBaseParser.IN, 0); +}; + +NonReservedContext.prototype.INDEX = function() { + return this.getToken(SqlBaseParser.INDEX, 0); +}; + +NonReservedContext.prototype.INDEXES = function() { + return this.getToken(SqlBaseParser.INDEXES, 0); +}; + +NonReservedContext.prototype.INPATH = function() { + return this.getToken(SqlBaseParser.INPATH, 0); +}; + +NonReservedContext.prototype.INPUTFORMAT = function() { + return this.getToken(SqlBaseParser.INPUTFORMAT, 0); +}; + +NonReservedContext.prototype.INSERT = function() { + return this.getToken(SqlBaseParser.INSERT, 0); +}; + +NonReservedContext.prototype.INTERVAL = function() { + return this.getToken(SqlBaseParser.INTERVAL, 0); +}; + +NonReservedContext.prototype.INTO = function() { + return this.getToken(SqlBaseParser.INTO, 0); +}; + +NonReservedContext.prototype.IS = function() { + return this.getToken(SqlBaseParser.IS, 0); +}; + +NonReservedContext.prototype.ITEMS = function() { + return this.getToken(SqlBaseParser.ITEMS, 0); +}; + +NonReservedContext.prototype.KEYS = function() { + return this.getToken(SqlBaseParser.KEYS, 0); +}; + +NonReservedContext.prototype.LAST = function() { + return this.getToken(SqlBaseParser.LAST, 0); +}; + +NonReservedContext.prototype.LATERAL = function() { + return this.getToken(SqlBaseParser.LATERAL, 0); +}; + +NonReservedContext.prototype.LAZY = function() { + return this.getToken(SqlBaseParser.LAZY, 0); +}; + +NonReservedContext.prototype.LEADING = function() { + return this.getToken(SqlBaseParser.LEADING, 0); +}; + +NonReservedContext.prototype.LIKE = function() { + return this.getToken(SqlBaseParser.LIKE, 0); +}; + +NonReservedContext.prototype.LIMIT = function() { + return this.getToken(SqlBaseParser.LIMIT, 0); +}; + +NonReservedContext.prototype.LINES = function() { + return this.getToken(SqlBaseParser.LINES, 0); +}; + +NonReservedContext.prototype.LIST = function() { + return this.getToken(SqlBaseParser.LIST, 0); +}; + +NonReservedContext.prototype.LOAD = function() { + return this.getToken(SqlBaseParser.LOAD, 0); +}; + +NonReservedContext.prototype.LOCAL = function() { + return this.getToken(SqlBaseParser.LOCAL, 0); +}; + +NonReservedContext.prototype.LOCATION = function() { + return this.getToken(SqlBaseParser.LOCATION, 0); +}; + +NonReservedContext.prototype.LOCK = function() { + return this.getToken(SqlBaseParser.LOCK, 0); +}; + +NonReservedContext.prototype.LOCKS = function() { + return this.getToken(SqlBaseParser.LOCKS, 0); +}; + +NonReservedContext.prototype.LOGICAL = function() { + return this.getToken(SqlBaseParser.LOGICAL, 0); +}; + +NonReservedContext.prototype.MACRO = function() { + return this.getToken(SqlBaseParser.MACRO, 0); +}; + +NonReservedContext.prototype.MAP = function() { + return this.getToken(SqlBaseParser.MAP, 0); +}; + +NonReservedContext.prototype.MATCHED = function() { + return this.getToken(SqlBaseParser.MATCHED, 0); +}; + +NonReservedContext.prototype.MERGE = function() { + return this.getToken(SqlBaseParser.MERGE, 0); +}; + +NonReservedContext.prototype.MSCK = function() { + return this.getToken(SqlBaseParser.MSCK, 0); +}; + +NonReservedContext.prototype.NAMESPACE = function() { + return this.getToken(SqlBaseParser.NAMESPACE, 0); +}; + +NonReservedContext.prototype.NAMESPACES = function() { + return this.getToken(SqlBaseParser.NAMESPACES, 0); +}; + +NonReservedContext.prototype.NO = function() { + return this.getToken(SqlBaseParser.NO, 0); +}; + +NonReservedContext.prototype.NOT = function() { + return this.getToken(SqlBaseParser.NOT, 0); +}; + +NonReservedContext.prototype.NULL = function() { + return this.getToken(SqlBaseParser.NULL, 0); +}; + +NonReservedContext.prototype.NULLS = function() { + return this.getToken(SqlBaseParser.NULLS, 0); +}; + +NonReservedContext.prototype.OF = function() { + return this.getToken(SqlBaseParser.OF, 0); +}; + +NonReservedContext.prototype.ONLY = function() { + return this.getToken(SqlBaseParser.ONLY, 0); +}; + +NonReservedContext.prototype.OPTION = function() { + return this.getToken(SqlBaseParser.OPTION, 0); +}; + +NonReservedContext.prototype.OPTIONS = function() { + return this.getToken(SqlBaseParser.OPTIONS, 0); +}; + +NonReservedContext.prototype.OR = function() { + return this.getToken(SqlBaseParser.OR, 0); +}; + +NonReservedContext.prototype.ORDER = function() { + return this.getToken(SqlBaseParser.ORDER, 0); +}; + +NonReservedContext.prototype.OUT = function() { + return this.getToken(SqlBaseParser.OUT, 0); +}; + +NonReservedContext.prototype.OUTER = function() { + return this.getToken(SqlBaseParser.OUTER, 0); +}; + +NonReservedContext.prototype.OUTPUTFORMAT = function() { + return this.getToken(SqlBaseParser.OUTPUTFORMAT, 0); +}; + +NonReservedContext.prototype.OVER = function() { + return this.getToken(SqlBaseParser.OVER, 0); +}; + +NonReservedContext.prototype.OVERLAPS = function() { + return this.getToken(SqlBaseParser.OVERLAPS, 0); +}; + +NonReservedContext.prototype.OVERLAY = function() { + return this.getToken(SqlBaseParser.OVERLAY, 0); +}; + +NonReservedContext.prototype.OVERWRITE = function() { + return this.getToken(SqlBaseParser.OVERWRITE, 0); +}; + +NonReservedContext.prototype.PARTITION = function() { + return this.getToken(SqlBaseParser.PARTITION, 0); +}; + +NonReservedContext.prototype.PARTITIONED = function() { + return this.getToken(SqlBaseParser.PARTITIONED, 0); +}; + +NonReservedContext.prototype.PARTITIONS = function() { + return this.getToken(SqlBaseParser.PARTITIONS, 0); +}; + +NonReservedContext.prototype.PERCENTLIT = function() { + return this.getToken(SqlBaseParser.PERCENTLIT, 0); +}; + +NonReservedContext.prototype.PIVOT = function() { + return this.getToken(SqlBaseParser.PIVOT, 0); +}; + +NonReservedContext.prototype.PLACING = function() { + return this.getToken(SqlBaseParser.PLACING, 0); +}; + +NonReservedContext.prototype.POSITION = function() { + return this.getToken(SqlBaseParser.POSITION, 0); +}; + +NonReservedContext.prototype.PRECEDING = function() { + return this.getToken(SqlBaseParser.PRECEDING, 0); +}; + +NonReservedContext.prototype.PRIMARY = function() { + return this.getToken(SqlBaseParser.PRIMARY, 0); +}; + +NonReservedContext.prototype.PRINCIPALS = function() { + return this.getToken(SqlBaseParser.PRINCIPALS, 0); +}; + +NonReservedContext.prototype.PROPERTIES = function() { + return this.getToken(SqlBaseParser.PROPERTIES, 0); +}; + +NonReservedContext.prototype.PURGE = function() { + return this.getToken(SqlBaseParser.PURGE, 0); +}; + +NonReservedContext.prototype.QUERY = function() { + return this.getToken(SqlBaseParser.QUERY, 0); +}; + +NonReservedContext.prototype.RANGE = function() { + return this.getToken(SqlBaseParser.RANGE, 0); +}; + +NonReservedContext.prototype.RECORDREADER = function() { + return this.getToken(SqlBaseParser.RECORDREADER, 0); +}; + +NonReservedContext.prototype.RECORDWRITER = function() { + return this.getToken(SqlBaseParser.RECORDWRITER, 0); +}; + +NonReservedContext.prototype.RECOVER = function() { + return this.getToken(SqlBaseParser.RECOVER, 0); +}; + +NonReservedContext.prototype.REDUCE = function() { + return this.getToken(SqlBaseParser.REDUCE, 0); +}; + +NonReservedContext.prototype.REFERENCES = function() { + return this.getToken(SqlBaseParser.REFERENCES, 0); +}; + +NonReservedContext.prototype.REFRESH = function() { + return this.getToken(SqlBaseParser.REFRESH, 0); +}; + +NonReservedContext.prototype.RENAME = function() { + return this.getToken(SqlBaseParser.RENAME, 0); +}; + +NonReservedContext.prototype.REPAIR = function() { + return this.getToken(SqlBaseParser.REPAIR, 0); +}; + +NonReservedContext.prototype.REPLACE = function() { + return this.getToken(SqlBaseParser.REPLACE, 0); +}; + +NonReservedContext.prototype.RESET = function() { + return this.getToken(SqlBaseParser.RESET, 0); +}; + +NonReservedContext.prototype.RESTRICT = function() { + return this.getToken(SqlBaseParser.RESTRICT, 0); +}; + +NonReservedContext.prototype.REVOKE = function() { + return this.getToken(SqlBaseParser.REVOKE, 0); +}; + +NonReservedContext.prototype.RLIKE = function() { + return this.getToken(SqlBaseParser.RLIKE, 0); +}; + +NonReservedContext.prototype.ROLE = function() { + return this.getToken(SqlBaseParser.ROLE, 0); +}; + +NonReservedContext.prototype.ROLES = function() { + return this.getToken(SqlBaseParser.ROLES, 0); +}; + +NonReservedContext.prototype.ROLLBACK = function() { + return this.getToken(SqlBaseParser.ROLLBACK, 0); +}; + +NonReservedContext.prototype.ROLLUP = function() { + return this.getToken(SqlBaseParser.ROLLUP, 0); +}; + +NonReservedContext.prototype.ROW = function() { + return this.getToken(SqlBaseParser.ROW, 0); +}; + +NonReservedContext.prototype.ROWS = function() { + return this.getToken(SqlBaseParser.ROWS, 0); +}; + +NonReservedContext.prototype.SCHEMA = function() { + return this.getToken(SqlBaseParser.SCHEMA, 0); +}; + +NonReservedContext.prototype.SELECT = function() { + return this.getToken(SqlBaseParser.SELECT, 0); +}; + +NonReservedContext.prototype.SEPARATED = function() { + return this.getToken(SqlBaseParser.SEPARATED, 0); +}; + +NonReservedContext.prototype.SERDE = function() { + return this.getToken(SqlBaseParser.SERDE, 0); +}; + +NonReservedContext.prototype.SERDEPROPERTIES = function() { + return this.getToken(SqlBaseParser.SERDEPROPERTIES, 0); +}; + +NonReservedContext.prototype.SESSION_USER = function() { + return this.getToken(SqlBaseParser.SESSION_USER, 0); +}; + +NonReservedContext.prototype.SET = function() { + return this.getToken(SqlBaseParser.SET, 0); +}; + +NonReservedContext.prototype.SETS = function() { + return this.getToken(SqlBaseParser.SETS, 0); +}; + +NonReservedContext.prototype.SHOW = function() { + return this.getToken(SqlBaseParser.SHOW, 0); +}; + +NonReservedContext.prototype.SKEWED = function() { + return this.getToken(SqlBaseParser.SKEWED, 0); +}; + +NonReservedContext.prototype.SOME = function() { + return this.getToken(SqlBaseParser.SOME, 0); +}; + +NonReservedContext.prototype.SORT = function() { + return this.getToken(SqlBaseParser.SORT, 0); +}; + +NonReservedContext.prototype.SORTED = function() { + return this.getToken(SqlBaseParser.SORTED, 0); +}; + +NonReservedContext.prototype.START = function() { + return this.getToken(SqlBaseParser.START, 0); +}; + +NonReservedContext.prototype.STATISTICS = function() { + return this.getToken(SqlBaseParser.STATISTICS, 0); +}; + +NonReservedContext.prototype.STORED = function() { + return this.getToken(SqlBaseParser.STORED, 0); +}; + +NonReservedContext.prototype.STRATIFY = function() { + return this.getToken(SqlBaseParser.STRATIFY, 0); +}; + +NonReservedContext.prototype.STRUCT = function() { + return this.getToken(SqlBaseParser.STRUCT, 0); +}; + +NonReservedContext.prototype.SUBSTR = function() { + return this.getToken(SqlBaseParser.SUBSTR, 0); +}; + +NonReservedContext.prototype.SUBSTRING = function() { + return this.getToken(SqlBaseParser.SUBSTRING, 0); +}; + +NonReservedContext.prototype.TABLE = function() { + return this.getToken(SqlBaseParser.TABLE, 0); +}; + +NonReservedContext.prototype.TABLES = function() { + return this.getToken(SqlBaseParser.TABLES, 0); +}; + +NonReservedContext.prototype.TABLESAMPLE = function() { + return this.getToken(SqlBaseParser.TABLESAMPLE, 0); +}; + +NonReservedContext.prototype.TBLPROPERTIES = function() { + return this.getToken(SqlBaseParser.TBLPROPERTIES, 0); +}; + +NonReservedContext.prototype.TEMPORARY = function() { + return this.getToken(SqlBaseParser.TEMPORARY, 0); +}; + +NonReservedContext.prototype.TERMINATED = function() { + return this.getToken(SqlBaseParser.TERMINATED, 0); +}; + +NonReservedContext.prototype.THEN = function() { + return this.getToken(SqlBaseParser.THEN, 0); +}; + +NonReservedContext.prototype.TIME = function() { + return this.getToken(SqlBaseParser.TIME, 0); +}; + +NonReservedContext.prototype.TO = function() { + return this.getToken(SqlBaseParser.TO, 0); +}; + +NonReservedContext.prototype.TOUCH = function() { + return this.getToken(SqlBaseParser.TOUCH, 0); +}; + +NonReservedContext.prototype.TRAILING = function() { + return this.getToken(SqlBaseParser.TRAILING, 0); +}; + +NonReservedContext.prototype.TRANSACTION = function() { + return this.getToken(SqlBaseParser.TRANSACTION, 0); +}; + +NonReservedContext.prototype.TRANSACTIONS = function() { + return this.getToken(SqlBaseParser.TRANSACTIONS, 0); +}; + +NonReservedContext.prototype.TRANSFORM = function() { + return this.getToken(SqlBaseParser.TRANSFORM, 0); +}; + +NonReservedContext.prototype.TRIM = function() { + return this.getToken(SqlBaseParser.TRIM, 0); +}; + +NonReservedContext.prototype.TRUE = function() { + return this.getToken(SqlBaseParser.TRUE, 0); +}; + +NonReservedContext.prototype.TRUNCATE = function() { + return this.getToken(SqlBaseParser.TRUNCATE, 0); +}; + +NonReservedContext.prototype.TYPE = function() { + return this.getToken(SqlBaseParser.TYPE, 0); +}; + +NonReservedContext.prototype.UNARCHIVE = function() { + return this.getToken(SqlBaseParser.UNARCHIVE, 0); +}; + +NonReservedContext.prototype.UNBOUNDED = function() { + return this.getToken(SqlBaseParser.UNBOUNDED, 0); +}; + +NonReservedContext.prototype.UNCACHE = function() { + return this.getToken(SqlBaseParser.UNCACHE, 0); +}; + +NonReservedContext.prototype.UNIQUE = function() { + return this.getToken(SqlBaseParser.UNIQUE, 0); +}; + +NonReservedContext.prototype.UNKNOWN = function() { + return this.getToken(SqlBaseParser.UNKNOWN, 0); +}; + +NonReservedContext.prototype.UNLOCK = function() { + return this.getToken(SqlBaseParser.UNLOCK, 0); +}; + +NonReservedContext.prototype.UNSET = function() { + return this.getToken(SqlBaseParser.UNSET, 0); +}; + +NonReservedContext.prototype.UPDATE = function() { + return this.getToken(SqlBaseParser.UPDATE, 0); +}; + +NonReservedContext.prototype.USE = function() { + return this.getToken(SqlBaseParser.USE, 0); +}; + +NonReservedContext.prototype.USER = function() { + return this.getToken(SqlBaseParser.USER, 0); +}; + +NonReservedContext.prototype.VALUES = function() { + return this.getToken(SqlBaseParser.VALUES, 0); +}; + +NonReservedContext.prototype.VIEW = function() { + return this.getToken(SqlBaseParser.VIEW, 0); +}; + +NonReservedContext.prototype.VIEWS = function() { + return this.getToken(SqlBaseParser.VIEWS, 0); +}; + +NonReservedContext.prototype.WHEN = function() { + return this.getToken(SqlBaseParser.WHEN, 0); +}; + +NonReservedContext.prototype.WHERE = function() { + return this.getToken(SqlBaseParser.WHERE, 0); +}; + +NonReservedContext.prototype.WINDOW = function() { + return this.getToken(SqlBaseParser.WINDOW, 0); +}; + +NonReservedContext.prototype.WITH = function() { + return this.getToken(SqlBaseParser.WITH, 0); +}; + +NonReservedContext.prototype.ZONE = function() { + return this.getToken(SqlBaseParser.ZONE, 0); +}; + +NonReservedContext.prototype.enterRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.enterNonReserved(this); + } +}; + +NonReservedContext.prototype.exitRule = function(listener) { + if(listener instanceof SqlBaseListener ) { + listener.exitNonReserved(this); + } +}; + +NonReservedContext.prototype.accept = function(visitor) { + if ( visitor instanceof SqlBaseVisitor ) { + return visitor.visitNonReserved(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +SqlBaseParser.NonReservedContext = NonReservedContext; + +SqlBaseParser.prototype.nonReserved = function() { + + var localctx = new NonReservedContext(this, this._ctx, this.state); + this.enterRule(localctx, 270, SqlBaseParser.RULE_nonReserved); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 3023; + _la = this._input.LA(1); + if(!(((((_la - 12)) & ~0x1f) == 0 && ((1 << (_la - 12)) & ((1 << (SqlBaseParser.ADD - 12)) | (1 << (SqlBaseParser.AFTER - 12)) | (1 << (SqlBaseParser.ALL - 12)) | (1 << (SqlBaseParser.ALTER - 12)) | (1 << (SqlBaseParser.ANALYZE - 12)) | (1 << (SqlBaseParser.AND - 12)) | (1 << (SqlBaseParser.ANY - 12)) | (1 << (SqlBaseParser.ARCHIVE - 12)) | (1 << (SqlBaseParser.ARRAY - 12)) | (1 << (SqlBaseParser.AS - 12)) | (1 << (SqlBaseParser.ASC - 12)) | (1 << (SqlBaseParser.AT - 12)) | (1 << (SqlBaseParser.AUTHORIZATION - 12)) | (1 << (SqlBaseParser.BETWEEN - 12)) | (1 << (SqlBaseParser.BOTH - 12)) | (1 << (SqlBaseParser.BUCKET - 12)) | (1 << (SqlBaseParser.BUCKETS - 12)) | (1 << (SqlBaseParser.BY - 12)) | (1 << (SqlBaseParser.CACHE - 12)) | (1 << (SqlBaseParser.CASCADE - 12)) | (1 << (SqlBaseParser.CASE - 12)) | (1 << (SqlBaseParser.CAST - 12)) | (1 << (SqlBaseParser.CHANGE - 12)) | (1 << (SqlBaseParser.CHECK - 12)) | (1 << (SqlBaseParser.CLEAR - 12)) | (1 << (SqlBaseParser.CLUSTER - 12)) | (1 << (SqlBaseParser.CLUSTERED - 12)) | (1 << (SqlBaseParser.CODEGEN - 12)) | (1 << (SqlBaseParser.COLLATE - 12)) | (1 << (SqlBaseParser.COLLECTION - 12)) | (1 << (SqlBaseParser.COLUMN - 12)))) !== 0) || ((((_la - 44)) & ~0x1f) == 0 && ((1 << (_la - 44)) & ((1 << (SqlBaseParser.COLUMNS - 44)) | (1 << (SqlBaseParser.COMMENT - 44)) | (1 << (SqlBaseParser.COMMIT - 44)) | (1 << (SqlBaseParser.COMPACT - 44)) | (1 << (SqlBaseParser.COMPACTIONS - 44)) | (1 << (SqlBaseParser.COMPUTE - 44)) | (1 << (SqlBaseParser.CONCATENATE - 44)) | (1 << (SqlBaseParser.CONSTRAINT - 44)) | (1 << (SqlBaseParser.COST - 44)) | (1 << (SqlBaseParser.CREATE - 44)) | (1 << (SqlBaseParser.CUBE - 44)) | (1 << (SqlBaseParser.CURRENT - 44)) | (1 << (SqlBaseParser.CURRENT_DATE - 44)) | (1 << (SqlBaseParser.CURRENT_TIME - 44)) | (1 << (SqlBaseParser.CURRENT_TIMESTAMP - 44)) | (1 << (SqlBaseParser.CURRENT_USER - 44)) | (1 << (SqlBaseParser.DATA - 44)) | (1 << (SqlBaseParser.DATABASE - 44)) | (1 << (SqlBaseParser.DATABASES - 44)) | (1 << (SqlBaseParser.DBPROPERTIES - 44)) | (1 << (SqlBaseParser.DEFINED - 44)) | (1 << (SqlBaseParser.DELETE - 44)) | (1 << (SqlBaseParser.DELIMITED - 44)) | (1 << (SqlBaseParser.DESC - 44)) | (1 << (SqlBaseParser.DESCRIBE - 44)) | (1 << (SqlBaseParser.DFS - 44)) | (1 << (SqlBaseParser.DIRECTORIES - 44)) | (1 << (SqlBaseParser.DIRECTORY - 44)) | (1 << (SqlBaseParser.DISTINCT - 44)) | (1 << (SqlBaseParser.DISTRIBUTE - 44)) | (1 << (SqlBaseParser.DIV - 44)))) !== 0) || ((((_la - 76)) & ~0x1f) == 0 && ((1 << (_la - 76)) & ((1 << (SqlBaseParser.DROP - 76)) | (1 << (SqlBaseParser.ELSE - 76)) | (1 << (SqlBaseParser.END - 76)) | (1 << (SqlBaseParser.ESCAPE - 76)) | (1 << (SqlBaseParser.ESCAPED - 76)) | (1 << (SqlBaseParser.EXCHANGE - 76)) | (1 << (SqlBaseParser.EXISTS - 76)) | (1 << (SqlBaseParser.EXPLAIN - 76)) | (1 << (SqlBaseParser.EXPORT - 76)) | (1 << (SqlBaseParser.EXTENDED - 76)) | (1 << (SqlBaseParser.EXTERNAL - 76)) | (1 << (SqlBaseParser.EXTRACT - 76)) | (1 << (SqlBaseParser.FALSE - 76)) | (1 << (SqlBaseParser.FETCH - 76)) | (1 << (SqlBaseParser.FIELDS - 76)) | (1 << (SqlBaseParser.FILTER - 76)) | (1 << (SqlBaseParser.FILEFORMAT - 76)) | (1 << (SqlBaseParser.FIRST - 76)) | (1 << (SqlBaseParser.FOLLOWING - 76)) | (1 << (SqlBaseParser.FOR - 76)) | (1 << (SqlBaseParser.FOREIGN - 76)) | (1 << (SqlBaseParser.FORMAT - 76)) | (1 << (SqlBaseParser.FORMATTED - 76)) | (1 << (SqlBaseParser.FROM - 76)) | (1 << (SqlBaseParser.FUNCTION - 76)) | (1 << (SqlBaseParser.FUNCTIONS - 76)) | (1 << (SqlBaseParser.GLOBAL - 76)) | (1 << (SqlBaseParser.GRANT - 76)) | (1 << (SqlBaseParser.GROUP - 76)) | (1 << (SqlBaseParser.GROUPING - 76)))) !== 0) || ((((_la - 108)) & ~0x1f) == 0 && ((1 << (_la - 108)) & ((1 << (SqlBaseParser.HAVING - 108)) | (1 << (SqlBaseParser.IF - 108)) | (1 << (SqlBaseParser.IGNORE - 108)) | (1 << (SqlBaseParser.IMPORT - 108)) | (1 << (SqlBaseParser.IN - 108)) | (1 << (SqlBaseParser.INDEX - 108)) | (1 << (SqlBaseParser.INDEXES - 108)) | (1 << (SqlBaseParser.INPATH - 108)) | (1 << (SqlBaseParser.INPUTFORMAT - 108)) | (1 << (SqlBaseParser.INSERT - 108)) | (1 << (SqlBaseParser.INTERVAL - 108)) | (1 << (SqlBaseParser.INTO - 108)) | (1 << (SqlBaseParser.IS - 108)) | (1 << (SqlBaseParser.ITEMS - 108)) | (1 << (SqlBaseParser.KEYS - 108)) | (1 << (SqlBaseParser.LAST - 108)) | (1 << (SqlBaseParser.LATERAL - 108)) | (1 << (SqlBaseParser.LAZY - 108)) | (1 << (SqlBaseParser.LEADING - 108)) | (1 << (SqlBaseParser.LIKE - 108)) | (1 << (SqlBaseParser.LIMIT - 108)) | (1 << (SqlBaseParser.LINES - 108)) | (1 << (SqlBaseParser.LIST - 108)) | (1 << (SqlBaseParser.LOAD - 108)) | (1 << (SqlBaseParser.LOCAL - 108)) | (1 << (SqlBaseParser.LOCATION - 108)) | (1 << (SqlBaseParser.LOCK - 108)) | (1 << (SqlBaseParser.LOCKS - 108)))) !== 0) || ((((_la - 140)) & ~0x1f) == 0 && ((1 << (_la - 140)) & ((1 << (SqlBaseParser.LOGICAL - 140)) | (1 << (SqlBaseParser.MACRO - 140)) | (1 << (SqlBaseParser.MAP - 140)) | (1 << (SqlBaseParser.MATCHED - 140)) | (1 << (SqlBaseParser.MERGE - 140)) | (1 << (SqlBaseParser.MSCK - 140)) | (1 << (SqlBaseParser.NAMESPACE - 140)) | (1 << (SqlBaseParser.NAMESPACES - 140)) | (1 << (SqlBaseParser.NO - 140)) | (1 << (SqlBaseParser.NOT - 140)) | (1 << (SqlBaseParser.NULL - 140)) | (1 << (SqlBaseParser.NULLS - 140)) | (1 << (SqlBaseParser.OF - 140)) | (1 << (SqlBaseParser.ONLY - 140)) | (1 << (SqlBaseParser.OPTION - 140)) | (1 << (SqlBaseParser.OPTIONS - 140)) | (1 << (SqlBaseParser.OR - 140)) | (1 << (SqlBaseParser.ORDER - 140)) | (1 << (SqlBaseParser.OUT - 140)) | (1 << (SqlBaseParser.OUTER - 140)) | (1 << (SqlBaseParser.OUTPUTFORMAT - 140)) | (1 << (SqlBaseParser.OVER - 140)) | (1 << (SqlBaseParser.OVERLAPS - 140)) | (1 << (SqlBaseParser.OVERLAY - 140)) | (1 << (SqlBaseParser.OVERWRITE - 140)) | (1 << (SqlBaseParser.PARTITION - 140)) | (1 << (SqlBaseParser.PARTITIONED - 140)) | (1 << (SqlBaseParser.PARTITIONS - 140)) | (1 << (SqlBaseParser.PERCENTLIT - 140)) | (1 << (SqlBaseParser.PIVOT - 140)))) !== 0) || ((((_la - 172)) & ~0x1f) == 0 && ((1 << (_la - 172)) & ((1 << (SqlBaseParser.PLACING - 172)) | (1 << (SqlBaseParser.POSITION - 172)) | (1 << (SqlBaseParser.PRECEDING - 172)) | (1 << (SqlBaseParser.PRIMARY - 172)) | (1 << (SqlBaseParser.PRINCIPALS - 172)) | (1 << (SqlBaseParser.PROPERTIES - 172)) | (1 << (SqlBaseParser.PURGE - 172)) | (1 << (SqlBaseParser.QUERY - 172)) | (1 << (SqlBaseParser.RANGE - 172)) | (1 << (SqlBaseParser.RECORDREADER - 172)) | (1 << (SqlBaseParser.RECORDWRITER - 172)) | (1 << (SqlBaseParser.RECOVER - 172)) | (1 << (SqlBaseParser.REDUCE - 172)) | (1 << (SqlBaseParser.REFERENCES - 172)) | (1 << (SqlBaseParser.REFRESH - 172)) | (1 << (SqlBaseParser.RENAME - 172)) | (1 << (SqlBaseParser.REPAIR - 172)) | (1 << (SqlBaseParser.REPLACE - 172)) | (1 << (SqlBaseParser.RESET - 172)) | (1 << (SqlBaseParser.RESTRICT - 172)) | (1 << (SqlBaseParser.REVOKE - 172)) | (1 << (SqlBaseParser.RLIKE - 172)) | (1 << (SqlBaseParser.ROLE - 172)) | (1 << (SqlBaseParser.ROLES - 172)) | (1 << (SqlBaseParser.ROLLBACK - 172)) | (1 << (SqlBaseParser.ROLLUP - 172)) | (1 << (SqlBaseParser.ROW - 172)) | (1 << (SqlBaseParser.ROWS - 172)) | (1 << (SqlBaseParser.SCHEMA - 172)) | (1 << (SqlBaseParser.SELECT - 172)))) !== 0) || ((((_la - 204)) & ~0x1f) == 0 && ((1 << (_la - 204)) & ((1 << (SqlBaseParser.SEPARATED - 204)) | (1 << (SqlBaseParser.SERDE - 204)) | (1 << (SqlBaseParser.SERDEPROPERTIES - 204)) | (1 << (SqlBaseParser.SESSION_USER - 204)) | (1 << (SqlBaseParser.SET - 204)) | (1 << (SqlBaseParser.SETS - 204)) | (1 << (SqlBaseParser.SHOW - 204)) | (1 << (SqlBaseParser.SKEWED - 204)) | (1 << (SqlBaseParser.SOME - 204)) | (1 << (SqlBaseParser.SORT - 204)) | (1 << (SqlBaseParser.SORTED - 204)) | (1 << (SqlBaseParser.START - 204)) | (1 << (SqlBaseParser.STATISTICS - 204)) | (1 << (SqlBaseParser.STORED - 204)) | (1 << (SqlBaseParser.STRATIFY - 204)) | (1 << (SqlBaseParser.STRUCT - 204)) | (1 << (SqlBaseParser.SUBSTR - 204)) | (1 << (SqlBaseParser.SUBSTRING - 204)) | (1 << (SqlBaseParser.TABLE - 204)) | (1 << (SqlBaseParser.TABLES - 204)) | (1 << (SqlBaseParser.TABLESAMPLE - 204)) | (1 << (SqlBaseParser.TBLPROPERTIES - 204)) | (1 << (SqlBaseParser.TEMPORARY - 204)) | (1 << (SqlBaseParser.TERMINATED - 204)) | (1 << (SqlBaseParser.THEN - 204)) | (1 << (SqlBaseParser.TIME - 204)) | (1 << (SqlBaseParser.TO - 204)) | (1 << (SqlBaseParser.TOUCH - 204)) | (1 << (SqlBaseParser.TRAILING - 204)) | (1 << (SqlBaseParser.TRANSACTION - 204)) | (1 << (SqlBaseParser.TRANSACTIONS - 204)))) !== 0) || ((((_la - 236)) & ~0x1f) == 0 && ((1 << (_la - 236)) & ((1 << (SqlBaseParser.TRANSFORM - 236)) | (1 << (SqlBaseParser.TRIM - 236)) | (1 << (SqlBaseParser.TRUE - 236)) | (1 << (SqlBaseParser.TRUNCATE - 236)) | (1 << (SqlBaseParser.TYPE - 236)) | (1 << (SqlBaseParser.UNARCHIVE - 236)) | (1 << (SqlBaseParser.UNBOUNDED - 236)) | (1 << (SqlBaseParser.UNCACHE - 236)) | (1 << (SqlBaseParser.UNIQUE - 236)) | (1 << (SqlBaseParser.UNKNOWN - 236)) | (1 << (SqlBaseParser.UNLOCK - 236)) | (1 << (SqlBaseParser.UNSET - 236)) | (1 << (SqlBaseParser.UPDATE - 236)) | (1 << (SqlBaseParser.USE - 236)) | (1 << (SqlBaseParser.USER - 236)) | (1 << (SqlBaseParser.VALUES - 236)) | (1 << (SqlBaseParser.VIEW - 236)) | (1 << (SqlBaseParser.VIEWS - 236)) | (1 << (SqlBaseParser.WHEN - 236)) | (1 << (SqlBaseParser.WHERE - 236)) | (1 << (SqlBaseParser.WINDOW - 236)) | (1 << (SqlBaseParser.WITH - 236)) | (1 << (SqlBaseParser.ZONE - 236)))) !== 0))) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +SqlBaseParser.prototype.sempred = function(localctx, ruleIndex, predIndex) { + switch(ruleIndex) { + case 41: + return this.queryTerm_sempred(localctx, predIndex); + case 94: + return this.booleanExpression_sempred(localctx, predIndex); + case 96: + return this.valueExpression_sempred(localctx, predIndex); + case 97: + return this.primaryExpression_sempred(localctx, predIndex); + case 128: + return this.identifier_sempred(localctx, predIndex); + case 129: + return this.strictIdentifier_sempred(localctx, predIndex); + case 131: + return this.number_sempred(localctx, predIndex); + default: + throw "No predicate with index:" + ruleIndex; + } +}; + +SqlBaseParser.prototype.queryTerm_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 0: + return this.precpred(this._ctx, 3); + case 1: + return legacy_setops_precedence_enbled; + case 2: + return this.precpred(this._ctx, 2); + case 3: + return !legacy_setops_precedence_enbled; + case 4: + return this.precpred(this._ctx, 1); + case 5: + return !legacy_setops_precedence_enbled; + default: + throw "No predicate with index:" + predIndex; + } +}; + +SqlBaseParser.prototype.booleanExpression_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 6: + return this.precpred(this._ctx, 2); + case 7: + return this.precpred(this._ctx, 1); + default: + throw "No predicate with index:" + predIndex; + } +}; + +SqlBaseParser.prototype.valueExpression_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 8: + return this.precpred(this._ctx, 6); + case 9: + return this.precpred(this._ctx, 5); + case 10: + return this.precpred(this._ctx, 4); + case 11: + return this.precpred(this._ctx, 3); + case 12: + return this.precpred(this._ctx, 2); + case 13: + return this.precpred(this._ctx, 1); + default: + throw "No predicate with index:" + predIndex; + } +}; + +SqlBaseParser.prototype.primaryExpression_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 14: + return this.precpred(this._ctx, 8); + case 15: + return this.precpred(this._ctx, 6); + default: + throw "No predicate with index:" + predIndex; + } +}; + +SqlBaseParser.prototype.identifier_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 16: + return !SQL_standard_keyword_behavior; + default: + throw "No predicate with index:" + predIndex; + } +}; + +SqlBaseParser.prototype.strictIdentifier_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 17: + return SQL_standard_keyword_behavior; + case 18: + return !SQL_standard_keyword_behavior; + default: + throw "No predicate with index:" + predIndex; + } +}; + +SqlBaseParser.prototype.number_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 19: + return !legacy_exponent_literal_as_decimal_enabled; + case 20: + return !legacy_exponent_literal_as_decimal_enabled; + case 21: + return legacy_exponent_literal_as_decimal_enabled; + default: + throw "No predicate with index:" + predIndex; + } +}; + + +exports.SqlBaseParser = SqlBaseParser; diff --git a/src/lib/spark/SqlBaseVisitor.js b/src/lib/spark/SqlBaseVisitor.js new file mode 100644 index 0000000..dabbadd --- /dev/null +++ b/src/lib/spark/SqlBaseVisitor.js @@ -0,0 +1,1636 @@ +// Generated from /Users/jinjiongxi/workspace/dt-sql-parser/src/grammar/spark/SqlBase.g4 by ANTLR 4.8 +// jshint ignore: start +var antlr4 = require('antlr4/index'); + +// This class defines a complete generic visitor for a parse tree produced by SqlBaseParser. + +function SqlBaseVisitor() { + antlr4.tree.ParseTreeVisitor.call(this); + return this; +} + +SqlBaseVisitor.prototype = Object.create(antlr4.tree.ParseTreeVisitor.prototype); +SqlBaseVisitor.prototype.constructor = SqlBaseVisitor; + +// Visit a parse tree produced by SqlBaseParser#program. +SqlBaseVisitor.prototype.visitProgram = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#singleStatement. +SqlBaseVisitor.prototype.visitSingleStatement = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#singleExpression. +SqlBaseVisitor.prototype.visitSingleExpression = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#singleTableIdentifier. +SqlBaseVisitor.prototype.visitSingleTableIdentifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#singleMultipartIdentifier. +SqlBaseVisitor.prototype.visitSingleMultipartIdentifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#singleDataType. +SqlBaseVisitor.prototype.visitSingleDataType = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#singleTableSchema. +SqlBaseVisitor.prototype.visitSingleTableSchema = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#statementDefault. +SqlBaseVisitor.prototype.visitStatementDefault = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#dmlStatement. +SqlBaseVisitor.prototype.visitDmlStatement = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#use. +SqlBaseVisitor.prototype.visitUse = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#createNamespace. +SqlBaseVisitor.prototype.visitCreateNamespace = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#setNamespaceProperties. +SqlBaseVisitor.prototype.visitSetNamespaceProperties = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#setNamespaceLocation. +SqlBaseVisitor.prototype.visitSetNamespaceLocation = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#dropNamespace. +SqlBaseVisitor.prototype.visitDropNamespace = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#showNamespaces. +SqlBaseVisitor.prototype.visitShowNamespaces = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#createTable. +SqlBaseVisitor.prototype.visitCreateTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#createHiveTable. +SqlBaseVisitor.prototype.visitCreateHiveTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#createTableLike. +SqlBaseVisitor.prototype.visitCreateTableLike = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#replaceTable. +SqlBaseVisitor.prototype.visitReplaceTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#analyze. +SqlBaseVisitor.prototype.visitAnalyze = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#addTableColumns. +SqlBaseVisitor.prototype.visitAddTableColumns = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#renameTableColumn. +SqlBaseVisitor.prototype.visitRenameTableColumn = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#dropTableColumns. +SqlBaseVisitor.prototype.visitDropTableColumns = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#renameTable. +SqlBaseVisitor.prototype.visitRenameTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#setTableProperties. +SqlBaseVisitor.prototype.visitSetTableProperties = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#unsetTableProperties. +SqlBaseVisitor.prototype.visitUnsetTableProperties = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#alterTableAlterColumn. +SqlBaseVisitor.prototype.visitAlterTableAlterColumn = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#hiveChangeColumn. +SqlBaseVisitor.prototype.visitHiveChangeColumn = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#hiveReplaceColumns. +SqlBaseVisitor.prototype.visitHiveReplaceColumns = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#setTableSerDe. +SqlBaseVisitor.prototype.visitSetTableSerDe = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#addTablePartition. +SqlBaseVisitor.prototype.visitAddTablePartition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#renameTablePartition. +SqlBaseVisitor.prototype.visitRenameTablePartition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#dropTablePartitions. +SqlBaseVisitor.prototype.visitDropTablePartitions = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#setTableLocation. +SqlBaseVisitor.prototype.visitSetTableLocation = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#recoverPartitions. +SqlBaseVisitor.prototype.visitRecoverPartitions = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#dropTable. +SqlBaseVisitor.prototype.visitDropTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#dropView. +SqlBaseVisitor.prototype.visitDropView = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#createView. +SqlBaseVisitor.prototype.visitCreateView = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#createTempViewUsing. +SqlBaseVisitor.prototype.visitCreateTempViewUsing = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#alterViewQuery. +SqlBaseVisitor.prototype.visitAlterViewQuery = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#createFunction. +SqlBaseVisitor.prototype.visitCreateFunction = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#dropFunction. +SqlBaseVisitor.prototype.visitDropFunction = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#explain. +SqlBaseVisitor.prototype.visitExplain = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#showTables. +SqlBaseVisitor.prototype.visitShowTables = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#showTable. +SqlBaseVisitor.prototype.visitShowTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#showTblProperties. +SqlBaseVisitor.prototype.visitShowTblProperties = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#showColumns. +SqlBaseVisitor.prototype.visitShowColumns = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#showViews. +SqlBaseVisitor.prototype.visitShowViews = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#showPartitions. +SqlBaseVisitor.prototype.visitShowPartitions = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#showFunctions. +SqlBaseVisitor.prototype.visitShowFunctions = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#showCreateTable. +SqlBaseVisitor.prototype.visitShowCreateTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#showCurrentNamespace. +SqlBaseVisitor.prototype.visitShowCurrentNamespace = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#describeFunction. +SqlBaseVisitor.prototype.visitDescribeFunction = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#describeNamespace. +SqlBaseVisitor.prototype.visitDescribeNamespace = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#describeRelation. +SqlBaseVisitor.prototype.visitDescribeRelation = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#describeQuery. +SqlBaseVisitor.prototype.visitDescribeQuery = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#commentNamespace. +SqlBaseVisitor.prototype.visitCommentNamespace = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#commentTable. +SqlBaseVisitor.prototype.visitCommentTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#refreshTable. +SqlBaseVisitor.prototype.visitRefreshTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#refreshFunction. +SqlBaseVisitor.prototype.visitRefreshFunction = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#refreshResource. +SqlBaseVisitor.prototype.visitRefreshResource = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#cacheTable. +SqlBaseVisitor.prototype.visitCacheTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#uncacheTable. +SqlBaseVisitor.prototype.visitUncacheTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#clearCache. +SqlBaseVisitor.prototype.visitClearCache = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#loadData. +SqlBaseVisitor.prototype.visitLoadData = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#truncateTable. +SqlBaseVisitor.prototype.visitTruncateTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#repairTable. +SqlBaseVisitor.prototype.visitRepairTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#manageResource. +SqlBaseVisitor.prototype.visitManageResource = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#failNativeCommand. +SqlBaseVisitor.prototype.visitFailNativeCommand = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#setTimeZone. +SqlBaseVisitor.prototype.visitSetTimeZone = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#setQuotedConfiguration. +SqlBaseVisitor.prototype.visitSetQuotedConfiguration = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#setConfiguration. +SqlBaseVisitor.prototype.visitSetConfiguration = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#resetQuotedConfiguration. +SqlBaseVisitor.prototype.visitResetQuotedConfiguration = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#resetConfiguration. +SqlBaseVisitor.prototype.visitResetConfiguration = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#configKey. +SqlBaseVisitor.prototype.visitConfigKey = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#unsupportedHiveNativeCommands. +SqlBaseVisitor.prototype.visitUnsupportedHiveNativeCommands = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#createTableHeader. +SqlBaseVisitor.prototype.visitCreateTableHeader = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#replaceTableHeader. +SqlBaseVisitor.prototype.visitReplaceTableHeader = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#bucketSpec. +SqlBaseVisitor.prototype.visitBucketSpec = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#skewSpec. +SqlBaseVisitor.prototype.visitSkewSpec = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#locationSpec. +SqlBaseVisitor.prototype.visitLocationSpec = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#commentSpec. +SqlBaseVisitor.prototype.visitCommentSpec = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#query. +SqlBaseVisitor.prototype.visitQuery = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#insertOverwriteTable. +SqlBaseVisitor.prototype.visitInsertOverwriteTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#insertIntoTable. +SqlBaseVisitor.prototype.visitInsertIntoTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#insertOverwriteHiveDir. +SqlBaseVisitor.prototype.visitInsertOverwriteHiveDir = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#insertOverwriteDir. +SqlBaseVisitor.prototype.visitInsertOverwriteDir = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#partitionSpecLocation. +SqlBaseVisitor.prototype.visitPartitionSpecLocation = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#partitionSpec. +SqlBaseVisitor.prototype.visitPartitionSpec = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#partitionVal. +SqlBaseVisitor.prototype.visitPartitionVal = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#namespace. +SqlBaseVisitor.prototype.visitNamespace = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#describeFuncName. +SqlBaseVisitor.prototype.visitDescribeFuncName = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#describeColName. +SqlBaseVisitor.prototype.visitDescribeColName = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#ctes. +SqlBaseVisitor.prototype.visitCtes = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#namedQuery. +SqlBaseVisitor.prototype.visitNamedQuery = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#tableProvider. +SqlBaseVisitor.prototype.visitTableProvider = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#createTableClauses. +SqlBaseVisitor.prototype.visitCreateTableClauses = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#tablePropertyList. +SqlBaseVisitor.prototype.visitTablePropertyList = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#tableProperty. +SqlBaseVisitor.prototype.visitTableProperty = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#tablePropertyKey. +SqlBaseVisitor.prototype.visitTablePropertyKey = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#tablePropertyValue. +SqlBaseVisitor.prototype.visitTablePropertyValue = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#constantList. +SqlBaseVisitor.prototype.visitConstantList = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#nestedConstantList. +SqlBaseVisitor.prototype.visitNestedConstantList = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#createFileFormat. +SqlBaseVisitor.prototype.visitCreateFileFormat = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#tableFileFormat. +SqlBaseVisitor.prototype.visitTableFileFormat = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#genericFileFormat. +SqlBaseVisitor.prototype.visitGenericFileFormat = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#storageHandler. +SqlBaseVisitor.prototype.visitStorageHandler = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#resource. +SqlBaseVisitor.prototype.visitResource = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#singleInsertQuery. +SqlBaseVisitor.prototype.visitSingleInsertQuery = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#multiInsertQuery. +SqlBaseVisitor.prototype.visitMultiInsertQuery = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#deleteFromTable. +SqlBaseVisitor.prototype.visitDeleteFromTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#updateTable. +SqlBaseVisitor.prototype.visitUpdateTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#mergeIntoTable. +SqlBaseVisitor.prototype.visitMergeIntoTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#queryOrganization. +SqlBaseVisitor.prototype.visitQueryOrganization = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#multiInsertQueryBody. +SqlBaseVisitor.prototype.visitMultiInsertQueryBody = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#queryTermDefault. +SqlBaseVisitor.prototype.visitQueryTermDefault = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#setOperation. +SqlBaseVisitor.prototype.visitSetOperation = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#queryPrimaryDefault. +SqlBaseVisitor.prototype.visitQueryPrimaryDefault = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#fromStmt. +SqlBaseVisitor.prototype.visitFromStmt = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#table. +SqlBaseVisitor.prototype.visitTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#inlineTableDefault1. +SqlBaseVisitor.prototype.visitInlineTableDefault1 = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#subquery. +SqlBaseVisitor.prototype.visitSubquery = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#sortItem. +SqlBaseVisitor.prototype.visitSortItem = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#fromStatement. +SqlBaseVisitor.prototype.visitFromStatement = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#fromStatementBody. +SqlBaseVisitor.prototype.visitFromStatementBody = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#transformQuerySpecification. +SqlBaseVisitor.prototype.visitTransformQuerySpecification = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#regularQuerySpecification. +SqlBaseVisitor.prototype.visitRegularQuerySpecification = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#transformClause. +SqlBaseVisitor.prototype.visitTransformClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#selectClause. +SqlBaseVisitor.prototype.visitSelectClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#setClause. +SqlBaseVisitor.prototype.visitSetClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#matchedClause. +SqlBaseVisitor.prototype.visitMatchedClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#notMatchedClause. +SqlBaseVisitor.prototype.visitNotMatchedClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#matchedAction. +SqlBaseVisitor.prototype.visitMatchedAction = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#notMatchedAction. +SqlBaseVisitor.prototype.visitNotMatchedAction = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#assignmentList. +SqlBaseVisitor.prototype.visitAssignmentList = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#assignment. +SqlBaseVisitor.prototype.visitAssignment = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#whereClause. +SqlBaseVisitor.prototype.visitWhereClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#havingClause. +SqlBaseVisitor.prototype.visitHavingClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#hint. +SqlBaseVisitor.prototype.visitHint = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#hintStatement. +SqlBaseVisitor.prototype.visitHintStatement = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#fromClause. +SqlBaseVisitor.prototype.visitFromClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#aggregationClause. +SqlBaseVisitor.prototype.visitAggregationClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#groupingSet. +SqlBaseVisitor.prototype.visitGroupingSet = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#pivotClause. +SqlBaseVisitor.prototype.visitPivotClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#pivotColumn. +SqlBaseVisitor.prototype.visitPivotColumn = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#pivotValue. +SqlBaseVisitor.prototype.visitPivotValue = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#lateralView. +SqlBaseVisitor.prototype.visitLateralView = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#setQuantifier. +SqlBaseVisitor.prototype.visitSetQuantifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#relation. +SqlBaseVisitor.prototype.visitRelation = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#joinRelation. +SqlBaseVisitor.prototype.visitJoinRelation = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#joinType. +SqlBaseVisitor.prototype.visitJoinType = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#joinCriteria. +SqlBaseVisitor.prototype.visitJoinCriteria = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#sample. +SqlBaseVisitor.prototype.visitSample = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#sampleByPercentile. +SqlBaseVisitor.prototype.visitSampleByPercentile = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#sampleByRows. +SqlBaseVisitor.prototype.visitSampleByRows = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#sampleByBucket. +SqlBaseVisitor.prototype.visitSampleByBucket = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#sampleByBytes. +SqlBaseVisitor.prototype.visitSampleByBytes = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#identifierList. +SqlBaseVisitor.prototype.visitIdentifierList = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#identifierSeq. +SqlBaseVisitor.prototype.visitIdentifierSeq = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#orderedIdentifierList. +SqlBaseVisitor.prototype.visitOrderedIdentifierList = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#orderedIdentifier. +SqlBaseVisitor.prototype.visitOrderedIdentifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#identifierCommentList. +SqlBaseVisitor.prototype.visitIdentifierCommentList = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#identifierComment. +SqlBaseVisitor.prototype.visitIdentifierComment = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#tableName. +SqlBaseVisitor.prototype.visitTableName = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#aliasedQuery. +SqlBaseVisitor.prototype.visitAliasedQuery = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#aliasedRelation. +SqlBaseVisitor.prototype.visitAliasedRelation = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#inlineTableDefault2. +SqlBaseVisitor.prototype.visitInlineTableDefault2 = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#tableValuedFunction. +SqlBaseVisitor.prototype.visitTableValuedFunction = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#inlineTable. +SqlBaseVisitor.prototype.visitInlineTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#functionTable. +SqlBaseVisitor.prototype.visitFunctionTable = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#tableAlias. +SqlBaseVisitor.prototype.visitTableAlias = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#rowFormatSerde. +SqlBaseVisitor.prototype.visitRowFormatSerde = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#rowFormatDelimited. +SqlBaseVisitor.prototype.visitRowFormatDelimited = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#multipartIdentifierList. +SqlBaseVisitor.prototype.visitMultipartIdentifierList = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#multipartIdentifier. +SqlBaseVisitor.prototype.visitMultipartIdentifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#tableIdentifier. +SqlBaseVisitor.prototype.visitTableIdentifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#namedExpression. +SqlBaseVisitor.prototype.visitNamedExpression = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#namedExpressionSeq. +SqlBaseVisitor.prototype.visitNamedExpressionSeq = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#transformList. +SqlBaseVisitor.prototype.visitTransformList = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#identityTransform. +SqlBaseVisitor.prototype.visitIdentityTransform = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#applyTransform. +SqlBaseVisitor.prototype.visitApplyTransform = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#transformArgument. +SqlBaseVisitor.prototype.visitTransformArgument = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#expression. +SqlBaseVisitor.prototype.visitExpression = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#logicalNot. +SqlBaseVisitor.prototype.visitLogicalNot = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#predicated. +SqlBaseVisitor.prototype.visitPredicated = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#exists. +SqlBaseVisitor.prototype.visitExists = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#logicalBinary. +SqlBaseVisitor.prototype.visitLogicalBinary = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#predicate. +SqlBaseVisitor.prototype.visitPredicate = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#valueExpressionDefault. +SqlBaseVisitor.prototype.visitValueExpressionDefault = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#comparison. +SqlBaseVisitor.prototype.visitComparison = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#arithmeticBinary. +SqlBaseVisitor.prototype.visitArithmeticBinary = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#arithmeticUnary. +SqlBaseVisitor.prototype.visitArithmeticUnary = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#struct. +SqlBaseVisitor.prototype.visitStruct = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#dereference. +SqlBaseVisitor.prototype.visitDereference = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#simpleCase. +SqlBaseVisitor.prototype.visitSimpleCase = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#columnReference. +SqlBaseVisitor.prototype.visitColumnReference = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#rowConstructor. +SqlBaseVisitor.prototype.visitRowConstructor = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#last. +SqlBaseVisitor.prototype.visitLast = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#star. +SqlBaseVisitor.prototype.visitStar = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#overlay. +SqlBaseVisitor.prototype.visitOverlay = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#subscript. +SqlBaseVisitor.prototype.visitSubscript = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#subqueryExpression. +SqlBaseVisitor.prototype.visitSubqueryExpression = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#substring. +SqlBaseVisitor.prototype.visitSubstring = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#currentDatetime. +SqlBaseVisitor.prototype.visitCurrentDatetime = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#cast. +SqlBaseVisitor.prototype.visitCast = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#constantDefault. +SqlBaseVisitor.prototype.visitConstantDefault = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#lambda. +SqlBaseVisitor.prototype.visitLambda = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#parenthesizedExpression. +SqlBaseVisitor.prototype.visitParenthesizedExpression = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#extract. +SqlBaseVisitor.prototype.visitExtract = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#trim. +SqlBaseVisitor.prototype.visitTrim = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#functionCall. +SqlBaseVisitor.prototype.visitFunctionCall = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#searchedCase. +SqlBaseVisitor.prototype.visitSearchedCase = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#position. +SqlBaseVisitor.prototype.visitPosition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#first. +SqlBaseVisitor.prototype.visitFirst = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#nullLiteral. +SqlBaseVisitor.prototype.visitNullLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#intervalLiteral. +SqlBaseVisitor.prototype.visitIntervalLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#typeConstructor. +SqlBaseVisitor.prototype.visitTypeConstructor = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#numericLiteral. +SqlBaseVisitor.prototype.visitNumericLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#booleanLiteral. +SqlBaseVisitor.prototype.visitBooleanLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#stringLiteral. +SqlBaseVisitor.prototype.visitStringLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#comparisonOperator. +SqlBaseVisitor.prototype.visitComparisonOperator = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#arithmeticOperator. +SqlBaseVisitor.prototype.visitArithmeticOperator = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#predicateOperator. +SqlBaseVisitor.prototype.visitPredicateOperator = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#booleanValue. +SqlBaseVisitor.prototype.visitBooleanValue = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#interval. +SqlBaseVisitor.prototype.visitInterval = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#errorCapturingMultiUnitsInterval. +SqlBaseVisitor.prototype.visitErrorCapturingMultiUnitsInterval = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#multiUnitsInterval. +SqlBaseVisitor.prototype.visitMultiUnitsInterval = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#errorCapturingUnitToUnitInterval. +SqlBaseVisitor.prototype.visitErrorCapturingUnitToUnitInterval = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#unitToUnitInterval. +SqlBaseVisitor.prototype.visitUnitToUnitInterval = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#intervalValue. +SqlBaseVisitor.prototype.visitIntervalValue = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#colPosition. +SqlBaseVisitor.prototype.visitColPosition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#complexDataType. +SqlBaseVisitor.prototype.visitComplexDataType = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#primitiveDataType. +SqlBaseVisitor.prototype.visitPrimitiveDataType = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#qualifiedColTypeWithPositionList. +SqlBaseVisitor.prototype.visitQualifiedColTypeWithPositionList = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#qualifiedColTypeWithPosition. +SqlBaseVisitor.prototype.visitQualifiedColTypeWithPosition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#colTypeList. +SqlBaseVisitor.prototype.visitColTypeList = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#colType. +SqlBaseVisitor.prototype.visitColType = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#complexColTypeList. +SqlBaseVisitor.prototype.visitComplexColTypeList = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#complexColType. +SqlBaseVisitor.prototype.visitComplexColType = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#whenClause. +SqlBaseVisitor.prototype.visitWhenClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#windowClause. +SqlBaseVisitor.prototype.visitWindowClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#namedWindow. +SqlBaseVisitor.prototype.visitNamedWindow = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#windowRef. +SqlBaseVisitor.prototype.visitWindowRef = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#windowDef. +SqlBaseVisitor.prototype.visitWindowDef = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#windowFrame. +SqlBaseVisitor.prototype.visitWindowFrame = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#frameBound. +SqlBaseVisitor.prototype.visitFrameBound = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#qualifiedNameList. +SqlBaseVisitor.prototype.visitQualifiedNameList = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#functionName. +SqlBaseVisitor.prototype.visitFunctionName = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#qualifiedName. +SqlBaseVisitor.prototype.visitQualifiedName = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#errorCapturingIdentifier. +SqlBaseVisitor.prototype.visitErrorCapturingIdentifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#errorIdent. +SqlBaseVisitor.prototype.visitErrorIdent = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#realIdent. +SqlBaseVisitor.prototype.visitRealIdent = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#identifier. +SqlBaseVisitor.prototype.visitIdentifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#unquotedIdentifier. +SqlBaseVisitor.prototype.visitUnquotedIdentifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#quotedIdentifierAlternative. +SqlBaseVisitor.prototype.visitQuotedIdentifierAlternative = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#quotedIdentifier. +SqlBaseVisitor.prototype.visitQuotedIdentifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#exponentLiteral. +SqlBaseVisitor.prototype.visitExponentLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#decimalLiteral. +SqlBaseVisitor.prototype.visitDecimalLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#legacyDecimalLiteral. +SqlBaseVisitor.prototype.visitLegacyDecimalLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#integerLiteral. +SqlBaseVisitor.prototype.visitIntegerLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#bigIntLiteral. +SqlBaseVisitor.prototype.visitBigIntLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#smallIntLiteral. +SqlBaseVisitor.prototype.visitSmallIntLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#tinyIntLiteral. +SqlBaseVisitor.prototype.visitTinyIntLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#doubleLiteral. +SqlBaseVisitor.prototype.visitDoubleLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#floatLiteral. +SqlBaseVisitor.prototype.visitFloatLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#bigDecimalLiteral. +SqlBaseVisitor.prototype.visitBigDecimalLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#alterColumnAction. +SqlBaseVisitor.prototype.visitAlterColumnAction = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#ansiNonReserved. +SqlBaseVisitor.prototype.visitAnsiNonReserved = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#strictNonReserved. +SqlBaseVisitor.prototype.visitStrictNonReserved = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by SqlBaseParser#nonReserved. +SqlBaseVisitor.prototype.visitNonReserved = function(ctx) { + return this.visitChildren(ctx); +}; + + + +exports.SqlBaseVisitor = SqlBaseVisitor; \ No newline at end of file diff --git a/test/parser/spark/lexer.test.ts b/test/parser/spark/lexer.test.ts index 791968a..2bc694a 100644 --- a/test/parser/spark/lexer.test.ts +++ b/test/parser/spark/lexer.test.ts @@ -1,14 +1,21 @@ import SQLParser from '../../../src/parser/spark'; +const log = console.log.bind(console); + describe('SparkSQL Lexer tests', () => { - const mysqlParser = new SQLParser(); + const parser = new SQLParser(); - // const sql = 'select id,name,sex from user1;'; - const sql = 'select * from person where age >= 20 order by age desc limit 2;'; - const tokens = mysqlParser.getAllTokens(sql); - console.log('tokens', tokens); + test('select id,name from user1;', () => { + const sql = `select id,name from user1;`; + const tokens = parser.getAllTokens(sql); + const length = tokens.length; + log('tokens length', length); + expect(tokens.length).toBe(10); + }); - test('token counts', () => { - expect(tokens.length).toBe(28); + test('SELECT * FROM t WHERE x = 1 AND y = 2;', () => { + const sql = `SELECT * FROM t WHERE x = 1 AND y = 2;`; + const tokens = parser.getAllTokens(sql); + expect(tokens.length).toBe(24); }); }); diff --git a/test/parser/spark/listener.test.ts b/test/parser/spark/listener.test.ts index f7963c4..6c82f6a 100644 --- a/test/parser/spark/listener.test.ts +++ b/test/parser/spark/listener.test.ts @@ -7,7 +7,7 @@ describe('Spark SQL Listener Tests', () => { const parserTree = parser.parse(sql); - test('Listener enterTableName', async () => { + test('Listener enterTableName', () => { let result = ''; class MyListener extends SqlBaseListener { enterTableName(ctx): void { @@ -16,7 +16,7 @@ describe('Spark SQL Listener Tests', () => { } const listenTableName: any = new MyListener(); - await parser.listen(listenTableName, parserTree); + parser.listen(listenTableName, parserTree); expect(result).toBe(expectTableName); }); }); diff --git a/test/parser/spark/syntax.test.ts b/test/parser/spark/syntax.test.ts index 82d922f..3d0b21f 100644 --- a/test/parser/spark/syntax.test.ts +++ b/test/parser/spark/syntax.test.ts @@ -1,27 +1,318 @@ +/* eslint-disable max-len */ import SQLParser from '../../../src/parser/spark'; -const log = console.log.bind(console); +// const log = console.log.bind(console); +const error = console.log.bind(console, '***** error\n'); + +const validateTest = (sqls) => { + const parser = new SQLParser(); + sqls.forEach((sql, i) => { + const result = parser.validate(sql); + if (result.length !== 0) { + error(i, sql); + error(result); + } + expect(result.length).toBe(0); + }); +}; describe('Spark SQL Syntax Tests', () => { - const parser = new SQLParser(); - - test('Select Statement', () => { - const sql = 'select id,name from user1;'; - const result = parser.validate(sql); - log('result', result); - expect(result.length).toBe(0); + test('ALTER Statement', () => { + const sqls = [ + `ALTER DATABASE inventory SET DBPROPERTIES ('Edited-by' = 'John', 'Edit-date' = '01/01/2001');`, + `ALTER TABLE Student RENAME TO StudentInfo;`, + `ALTER VIEW tempdb1.v1 RENAME TO tempdb1.v2;`, + ]; + validateTest(sqls); }); - test('Select 1+1', () => { - const sql = 'SELECT 1+1;'; - const result = parser.validate(sql); - expect(result.length).toBe(0); + test('CREATE Statement', () => { + const sqls = [ + `CREATE DATABASE IF NOT EXISTS customer_db;`, + `CREATE FUNCTION simple_udf AS 'SimpleUdf' + USING JAR '/tmp/SimpleUdf.jar';`, + `CREATE OR REPLACE FUNCTION simple_udf AS 'SimpleUdfR' + USING JAR '/tmp/SimpleUdfR.jar';`, + `CREATE TABLE student (id INT, name STRING, age INT) USING CSV;`, + `CREATE TABLE student (id INT, name STRING, age INT) + USING CSV + PARTITIONED BY (age) + CLUSTERED BY (Id) INTO 4 buckets;`, + `CREATE OR REPLACE VIEW experienced_employee + (ID COMMENT 'Unique identification number', Name) + COMMENT 'View for experienced employees' + AS SELECT id, name FROM all_employee + WHERE working_years > 5;`, + `CREATE GLOBAL TEMPORARY VIEW IF NOT EXISTS subscribed_movies + AS SELECT mo.member_id, mb.full_name, mo.movie_title + FROM movies AS mo INNER JOIN members AS mb + ON mo.member_id = mb.id;`, + ]; + validateTest(sqls); }); - test('select', () => { - const sql = 'select * from person where age >= 20 order by age desc limit 2'; - const result = parser.validate(sql); - log('result', result); - expect(result.length).toBe(0); + test('DROP Statement', () => { + const sqls = [ + `DROP DATABASE inventory_db CASCADE;`, + `DROP DATABASE IF EXISTS inventory_db CASCADE;`, + `DROP FUNCTION test_avg;`, + `DROP TEMPORARY FUNCTION IF EXISTS test_avg;`, + `DROP TABLE userdb.employeetable;`, + `DROP TABLE IF EXISTS employeetable;`, + `DROP VIEW userdb.employeeView;`, + `DROP VIEW IF EXISTS employeeView;`, + ]; + validateTest(sqls); + }); + + test('TRUNCATE Statement', () => { + const sqls = [ + `TRUNCATE TABLE Student partition(age=10);`, + ]; + validateTest(sqls); + }); + + test('REPAIR TABLE Statement', () => { + const sqls = [ + `MSCK REPAIR TABLE t1;`, + ]; + validateTest(sqls); + }); + + test('USE Database Statement', () => { + const sqls = [ + `USE userdb;`, + ]; + validateTest(sqls); + }); + + test('INSERT Statement', () => { + const sqls = [ + `INSERT INTO students VALUES + ('Amy Smith', '123 Park Ave, San Jose', 111111);`, + `INSERT INTO students TABLE visiting_students;`, + `INSERT OVERWRITE students VALUES + ('Ashua Hill', '456 Erica Ct, Cupertino', 111111), + ('Brian Reed', '723 Kern Ave, Palo Alto', 222222);`, + `INSERT OVERWRITE students TABLE visiting_students;`, + `INSERT OVERWRITE students + FROM applicants SELECT name, address, id applicants WHERE qualified = true;`, + `INSERT OVERWRITE DIRECTORY '/tmp/destination' + USING parquet + OPTIONS (col1 1, col2 2, col3 'test') + SELECT * FROM test_table;`, + `INSERT OVERWRITE DIRECTORY + USING parquet + OPTIONS ('path' '/tmp/destination', col1 1, col2 2, col3 'test') + SELECT * FROM test_table;`, + `INSERT OVERWRITE LOCAL DIRECTORY '/tmp/destination' + STORED AS orc + SELECT * FROM test_table;`, + `INSERT OVERWRITE LOCAL DIRECTORY '/tmp/destination' + ROW FORMAT DELIMITED FIELDS TERMINATED BY ',' + SELECT * FROM test_table;`, + ]; + validateTest(sqls); + }); + + test('LOAD Statement', () => { + const sqls = [ + `LOAD DATA LOCAL INPATH '/user/hive/warehouse/students' OVERWRITE INTO TABLE test_load;`, + `LOAD DATA LOCAL INPATH '/user/hive/warehouse/test_partition/c2=2/c3=3' + OVERWRITE INTO TABLE test_load_partition PARTITION (c2=2, c3=3);`, + ]; + validateTest(sqls); + }); + + test('SELECT WHERE, GROUP BY, HAVING, ORDER BY Statement', () => { + const sqls = [ + `SELECT * FROM person WHERE id > 200 ORDER BY id;`, + `SELECT * FROM person AS parent + WHERE EXISTS ( + SELECT 1 FROM person AS child + WHERE parent.id = child.id AND child.age IS NULL + );`, + `SELECT id, sum(quantity) FROM dealer GROUP BY id ORDER BY id;`, + `SELECT city, car_model, sum(quantity) AS sum FROM dealer + GROUP BY city, car_model WITH CUBE + ORDER BY city, car_model;`, + `SELECT city, sum(quantity) AS sum FROM dealer GROUP BY city HAVING city = 'Fremont';`, + `SELECT sum(quantity) AS sum FROM dealer HAVING sum(quantity) > 10;`, + `SELECT name, age FROM person ORDER BY age;`, + `SELECT * FROM person ORDER BY name ASC, age DESC;`, + ]; + validateTest(sqls); + }); + + test('SELECT SORT BY, CLUSTER BY, DISTRIBUTE BY, LIMIT Statement', () => { + const sqls = [ + `SELECT /*+ REPARTITION(zip_code) */ age, name, zip_code FROM person SORT BY age DESC NULLS FIRST;`, + `SELECT /*+ REPARTITION(zip_code) */ name, age, zip_code FROM person + SORT BY name ASC, age DESC;`, + `SELECT age, name FROM person CLUSTER BY age;`, + `SELECT age, name FROM person DISTRIBUTE BY age;`, + `SELECT name, age FROM person ORDER BY name LIMIT length('SPARK');`, + `SELECT name, age FROM person ORDER BY name LIMIT length('SPARK');`, + ]; + validateTest(sqls); + }); + + test('SELECT Common Table Expression Statement', () => { + const sqls = [ + `SELECT * FROM t WHERE x = 1 AND y = 2;`, + `SELECT max(c) FROM ( + WITH t(c) AS (SELECT 1) + SELECT * FROM t +);`, + `CREATE VIEW v AS + WITH t(a, b, c, d) AS (SELECT 1, 2, 3, 4) + SELECT * FROM t;`, + `SET spark.sql.legacy.ctePrecedencePolicy = CORRECTED; +WITH + t AS (SELECT 1), + t2 AS ( + WITH t AS (SELECT 2) + SELECT * FROM t + ) +SELECT * FROM t2;`, + ]; + validateTest(sqls); + }); + + test('SELECT HINTS, INLINE TABLE, JOIN, LIKE Predicate, Set Operators, Sampling Queries Statement', () => { + const sqls = [ + `SELECT /*+ REPARTITION_BY_RANGE(3, c) */ * FROM t;`, + `SELECT /*+ BROADCAST(t1), MERGE(t1, t2) */ * FROM t1 INNER JOIN t2 ON t1.key = t2.key;`, + `SELECT * FROM VALUES ("one", array(0, 1)), ("two", array(2, 3)) AS data(a, b);`, + `SELECT * FROM employee ANTI JOIN department ON employee.deptno = department.deptno;`, + `SELECT * FROM person WHERE name LIKE '%\\_%';`, + `SELECT * FROM person WHERE name LIKE '%$_%' ESCAPE '$';`, + `SELECT c FROM number1 EXCEPT ALL (SELECT c FROM number2);`, + `(SELECT c FROM number1) INTERSECT ALL (SELECT c FROM number2);`, + `SELECT c FROM number1 UNION ALL (SELECT c FROM number2);`, + `SELECT * FROM test TABLESAMPLE (5 ROWS);`, + `SELECT * FROM test TABLESAMPLE (BUCKET 4 OUT OF 10);`, + ]; + validateTest(sqls); + }); + + test('SELECT Table-valued Functions, Window Functions, CASE, LATERAL VIEW, PIVOT Statement', () => { + const sqls = [ + `SELECT * FROM range(6 + cos(3));`, + `SELECT inline(array(struct(1, 'a'), struct(2, 'b')));`, + `SELECT * FROM test LATERAL VIEW explode (ARRAY(3,4)) AS c2;`, + `SELECT name, dept, RANK() OVER (PARTITION BY dept ORDER BY salary) AS rank FROM employees;`, + `SELECT name, dept, salary, MIN(salary) OVER (PARTITION BY dept ORDER BY salary) AS min + FROM employees;`, + `SELECT id, CASE id WHEN 100 then 'bigger' WHEN id > 300 THEN '300' ELSE 'small' END FROM person;`, + `SELECT * FROM person + WHERE + CASE 1 = 1 + WHEN 100 THEN 'big' + WHEN 200 THEN 'bigger' + WHEN 300 THEN 'biggest' + ELSE 'small' + END = 'small';`, + `SELECT * FROM person + LATERAL VIEW EXPLODE(ARRAY(30, 60)) tabelName AS c_age + LATERAL VIEW EXPLODE(ARRAY(40, 80)) AS d_age;`, + `SELECT * FROM person + LATERAL VIEW OUTER EXPLODE(ARRAY()) tabelName AS c_age;`, + `SELECT * FROM person + PIVOT ( + SUM(age) AS a, AVG(class) AS c + FOR name IN ('John' AS john, 'Mike' AS mike) + );`, + ]; + validateTest(sqls); + }); + + test('EXPLAIN Statement', () => { + const sqls = [ + `EXPLAIN select k, sum(v) from values (1, 2), (1, 3) t(k, v) group by k;`, + `EXPLAIN EXTENDED select k, sum(v) from values (1, 2), (1, 3) t(k, v) group by k;`, + ]; + validateTest(sqls); + }); + + test('ANALYZE Statement', () => { + const sqls = [ + `ANALYZE TABLE students COMPUTE STATISTICS NOSCAN;`, + `ANALYZE TABLE students COMPUTE STATISTICS FOR COLUMNS name;`, + ]; + validateTest(sqls); + }); + + test('CACHE TABLE, UNCACHE TABLE, CLEAR CACHE, REFRESH TABLE, REFRESH Statement', () => { + const sqls = [ + `CACHE TABLE testCache OPTIONS ('storageLevel' 'DISK_ONLY') SELECT * FROM testData;`, + `UNCACHE TABLE t1;`, + `CLEAR CACHE;`, + `REFRESH TABLE tbl1;`, + `REFRESH "hdfs://path/to/table";`, + ]; + validateTest(sqls); + }); + + test('DESCRIBE DATABASE, TABLE, FUNCTION, QUERY Statement', () => { + const sqls = [ + `DESCRIBE DATABASE employees;`, + `DESCRIBE DATABASE EXTENDED employees;`, + `DESCRIBE TABLE customer;`, + `DESCRIBE TABLE EXTENDED customer PARTITION (state = 'AR');`, + `DESC FUNCTION abs;`, + `DESC FUNCTION max;`, + `DESC FUNCTION EXTENDED explode;`, + `DESCRIBE QUERY SELECT age, sum(age) FROM person GROUP BY age;`, + `DESCRIBE QUERY WITH all_names_cte + AS (SELECT name from person) SELECT * FROM all_names_cte;`, + `DESC QUERY VALUES(100, 'John', 10000.20D) AS employee(id, name, salary);`, + ]; + validateTest(sqls); + }); + + test('SHOW COLUMNS, CREATE TABLE, DATABASES, FUNCTIONS, PARTITIONS, TABLE EXTENDED, TABLES, TBLPROPERTIES, VIEWS Statement', () => { + const sqls = [ + `SHOW COLUMNS IN customer;`, + `SHOW CREATE TABLE test;`, + `SHOW DATABASES LIKE 'pay*';`, + `SHOW SCHEMAS;`, + `SHOW FUNCTIONS trim;`, + `SHOW SYSTEM FUNCTIONS salesdb.max;`, + `SHOW FUNCTIONS LIKE 't[a-z][a-z][a-z]';`, + `SHOW PARTITIONS customer;`, + `SHOW PARTITIONS customer PARTITION (city = 'San Jose');`, + `SHOW TABLE EXTENDED LIKE 'employee';`, + // `SHOW TABLE EXTENDED IN default LIKE 'empl*' PARTITION ('grade=1');`, + `SHOW TABLES;`, + `SHOW TABLES FROM userdb;`, + `SHOW TABLES LIKE 'sam*|suj';`, + `SHOW TBLPROPERTIES customer ('created.date');`, + `SHOW VIEWS;`, + `SHOW VIEWS LIKE 'sam|suj|temp*';`, + ]; + validateTest(sqls); + }); + + test('SET, RESET Statement', () => { + const sqls = [ + `SET spark.sql.variable.substitute=false;`, + `RESET`, + ]; + validateTest(sqls); + }); + + test('ADD, LIST Statement', () => { + const sqls = [ + `ADD FILE /tmp/test;`, + `ADD FILE "/path/to/some/directory";`, + `ADD JAR /tmp/test.jar;`, + `ADD JAR '/some/other.jar';`, + `LIST FILE;`, + `LIST FILE /tmp/test /some/random/file /another/random/file;`, + `LIST JAR;`, + `LIST JAR /tmp/test.jar /some/random.jar /another/random.jar;`, + ]; + validateTest(sqls); }); });