From e97f76fa648a0aa0fbe851b7ae9ca09fe65532bd Mon Sep 17 00:00:00 2001 From: Phodal Huang Date: Thu, 9 Jan 2020 19:34:08 +0800 Subject: [PATCH] feat: [ts] make first grammer compile --- languages/g4/TypeScriptLexer.g4 | 10 +- languages/g4/TypeScriptLexer.tokens | 243 + languages/g4/TypeScriptParser.g4 | 12 +- languages/ts/TypeScriptLexer.interp | 434 + languages/ts/TypeScriptLexer.tokens | 243 + languages/ts/TypeScriptParser.interp | 409 + languages/ts/TypeScriptParser.tokens | 243 + languages/ts/typescript_lexer.go | 957 + languages/ts/typescript_parser.go | 26394 ++++++++++++++++ .../ts/typescriptparser_base_listener.go | 1302 + languages/ts/typescriptparser_listener.go | 1234 + scripts/compile-antlr.sh | 4 +- 12 files changed, 31472 insertions(+), 13 deletions(-) create mode 100644 languages/g4/TypeScriptLexer.tokens create mode 100644 languages/ts/TypeScriptLexer.interp create mode 100644 languages/ts/TypeScriptLexer.tokens create mode 100644 languages/ts/TypeScriptParser.interp create mode 100644 languages/ts/TypeScriptParser.tokens create mode 100644 languages/ts/typescript_lexer.go create mode 100644 languages/ts/typescript_parser.go create mode 100644 languages/ts/typescriptparser_base_listener.go create mode 100644 languages/ts/typescriptparser_listener.go diff --git a/languages/g4/TypeScriptLexer.g4 b/languages/g4/TypeScriptLexer.g4 index 3f59e47..5d87d31 100644 --- a/languages/g4/TypeScriptLexer.g4 +++ b/languages/g4/TypeScriptLexer.g4 @@ -143,11 +143,11 @@ Yield: 'yield' ; //keywords: -Any : 'any'; -Number: 'number'; -Boolean: 'boolean'; -String: 'string'; -Symbol: 'symbol'; +ANY : 'any'; +NUMBER: 'number'; +BOOLEAN: 'boolean'; +STRING: 'string'; +SYMBOL: 'symbol'; Type: 'type'; diff --git a/languages/g4/TypeScriptLexer.tokens b/languages/g4/TypeScriptLexer.tokens new file mode 100644 index 0000000..a08de58 --- /dev/null +++ b/languages/g4/TypeScriptLexer.tokens @@ -0,0 +1,243 @@ +MultiLineComment=1 +SingleLineComment=2 +RegularExpressionLiteral=3 +OpenBracket=4 +CloseBracket=5 +OpenParen=6 +CloseParen=7 +OpenBrace=8 +CloseBrace=9 +SemiColon=10 +Comma=11 +Assign=12 +QuestionMark=13 +Colon=14 +Ellipsis=15 +Dot=16 +PlusPlus=17 +MinusMinus=18 +Plus=19 +Minus=20 +BitNot=21 +Not=22 +Multiply=23 +Divide=24 +Modulus=25 +RightShiftArithmetic=26 +LeftShiftArithmetic=27 +RightShiftLogical=28 +LessThan=29 +MoreThan=30 +LessThanEquals=31 +GreaterThanEquals=32 +Equals_=33 +NotEquals=34 +IdentityEquals=35 +IdentityNotEquals=36 +BitAnd=37 +BitXOr=38 +BitOr=39 +And=40 +Or=41 +MultiplyAssign=42 +DivideAssign=43 +ModulusAssign=44 +PlusAssign=45 +MinusAssign=46 +LeftShiftArithmeticAssign=47 +RightShiftArithmeticAssign=48 +RightShiftLogicalAssign=49 +BitAndAssign=50 +BitXorAssign=51 +BitOrAssign=52 +ARROW=53 +NullLiteral=54 +BooleanLiteral=55 +DecimalLiteral=56 +HexIntegerLiteral=57 +OctalIntegerLiteral=58 +OctalIntegerLiteral2=59 +BinaryIntegerLiteral=60 +Break=61 +Do=62 +Instanceof=63 +Typeof=64 +Case=65 +Else=66 +New=67 +Var=68 +Catch=69 +Finally=70 +Return=71 +Void=72 +Continue=73 +For=74 +Switch=75 +While=76 +Debugger=77 +Function=78 +This=79 +With=80 +Default=81 +If=82 +Throw=83 +Delete=84 +In=85 +Try=86 +As=87 +From=88 +ReadOnly=89 +Async=90 +Class=91 +Enum=92 +Extends=93 +Super=94 +Const=95 +Export=96 +Import=97 +Implements=98 +Let=99 +Private=100 +Public=101 +Interface=102 +Package=103 +Protected=104 +Static=105 +Yield=106 +ANY=107 +NUMBER=108 +BOOLEAN=109 +STRING=110 +SYMBOL=111 +Type=112 +Get=113 +Set=114 +Constructor=115 +Namespace=116 +Require=117 +Module=118 +Declare=119 +Abstract=120 +Is=121 +At=122 +Identifier=123 +StringLiteral=124 +TemplateStringLiteral=125 +WhiteSpaces=126 +LineTerminator=127 +HtmlComment=128 +CDataComment=129 +UnexpectedCharacter=130 +'['=4 +']'=5 +'('=6 +')'=7 +'{'=8 +'}'=9 +';'=10 +','=11 +'='=12 +'?'=13 +':'=14 +'...'=15 +'.'=16 +'++'=17 +'--'=18 +'+'=19 +'-'=20 +'~'=21 +'!'=22 +'*'=23 +'/'=24 +'%'=25 +'>>'=26 +'<<'=27 +'>>>'=28 +'<'=29 +'>'=30 +'<='=31 +'>='=32 +'=='=33 +'!='=34 +'==='=35 +'!=='=36 +'&'=37 +'^'=38 +'|'=39 +'&&'=40 +'||'=41 +'*='=42 +'/='=43 +'%='=44 +'+='=45 +'-='=46 +'<<='=47 +'>>='=48 +'>>>='=49 +'&='=50 +'^='=51 +'|='=52 +'=>'=53 +'null'=54 +'break'=61 +'do'=62 +'instanceof'=63 +'typeof'=64 +'case'=65 +'else'=66 +'new'=67 +'var'=68 +'catch'=69 +'finally'=70 +'return'=71 +'void'=72 +'continue'=73 +'for'=74 +'switch'=75 +'while'=76 +'debugger'=77 +'function'=78 +'this'=79 +'with'=80 +'default'=81 +'if'=82 +'throw'=83 +'delete'=84 +'in'=85 +'try'=86 +'as'=87 +'from'=88 +'readonly'=89 +'async'=90 +'class'=91 +'enum'=92 +'extends'=93 +'super'=94 +'const'=95 +'export'=96 +'import'=97 +'implements'=98 +'let'=99 +'private'=100 +'public'=101 +'interface'=102 +'package'=103 +'protected'=104 +'static'=105 +'yield'=106 +'any'=107 +'number'=108 +'boolean'=109 +'string'=110 +'symbol'=111 +'type'=112 +'get '=113 +'set '=114 +'constructor'=115 +'namespace'=116 +'require'=117 +'module'=118 +'declare'=119 +'abstract'=120 +'is'=121 +'@'=122 diff --git a/languages/g4/TypeScriptParser.g4 b/languages/g4/TypeScriptParser.g4 index e197941..2aef3c1 100644 --- a/languages/g4/TypeScriptParser.g4 +++ b/languages/g4/TypeScriptParser.g4 @@ -104,11 +104,11 @@ primaryType ; predefinedType - : Any - | Number - | Boolean - | String - | Symbol + : ANY + | NUMBER + | BOOLEAN + | STRING + | SYMBOL | Void ; @@ -240,7 +240,7 @@ constructSignature ; indexSignature - : '[' Identifier ':' (Number|String) ']' typeAnnotation + : '[' Identifier ':' (NUMBER|STRING) ']' typeAnnotation ; methodSignature diff --git a/languages/ts/TypeScriptLexer.interp b/languages/ts/TypeScriptLexer.interp new file mode 100644 index 0000000..2286c1b --- /dev/null +++ b/languages/ts/TypeScriptLexer.interp @@ -0,0 +1,434 @@ +token literal names: +null +null +null +null +'[' +']' +'(' +')' +'{' +'}' +';' +',' +'=' +'?' +':' +'...' +'.' +'++' +'--' +'+' +'-' +'~' +'!' +'*' +'/' +'%' +'>>' +'<<' +'>>>' +'<' +'>' +'<=' +'>=' +'==' +'!=' +'===' +'!==' +'&' +'^' +'|' +'&&' +'||' +'*=' +'/=' +'%=' +'+=' +'-=' +'<<=' +'>>=' +'>>>=' +'&=' +'^=' +'|=' +'=>' +'null' +null +null +null +null +null +null +'break' +'do' +'instanceof' +'typeof' +'case' +'else' +'new' +'var' +'catch' +'finally' +'return' +'void' +'continue' +'for' +'switch' +'while' +'debugger' +'function' +'this' +'with' +'default' +'if' +'throw' +'delete' +'in' +'try' +'as' +'from' +'readonly' +'async' +'class' +'enum' +'extends' +'super' +'const' +'export' +'import' +'implements' +'let' +'private' +'public' +'interface' +'package' +'protected' +'static' +'yield' +'any' +'number' +'boolean' +'string' +'symbol' +'type' +'get ' +'set ' +'constructor' +'namespace' +'require' +'module' +'declare' +'abstract' +'is' +'@' +null +null +null +null +null +null +null +null + +token symbolic names: +null +MultiLineComment +SingleLineComment +RegularExpressionLiteral +OpenBracket +CloseBracket +OpenParen +CloseParen +OpenBrace +CloseBrace +SemiColon +Comma +Assign +QuestionMark +Colon +Ellipsis +Dot +PlusPlus +MinusMinus +Plus +Minus +BitNot +Not +Multiply +Divide +Modulus +RightShiftArithmetic +LeftShiftArithmetic +RightShiftLogical +LessThan +MoreThan +LessThanEquals +GreaterThanEquals +Equals_ +NotEquals +IdentityEquals +IdentityNotEquals +BitAnd +BitXOr +BitOr +And +Or +MultiplyAssign +DivideAssign +ModulusAssign +PlusAssign +MinusAssign +LeftShiftArithmeticAssign +RightShiftArithmeticAssign +RightShiftLogicalAssign +BitAndAssign +BitXorAssign +BitOrAssign +ARROW +NullLiteral +BooleanLiteral +DecimalLiteral +HexIntegerLiteral +OctalIntegerLiteral +OctalIntegerLiteral2 +BinaryIntegerLiteral +Break +Do +Instanceof +Typeof +Case +Else +New +Var +Catch +Finally +Return +Void +Continue +For +Switch +While +Debugger +Function +This +With +Default +If +Throw +Delete +In +Try +As +From +ReadOnly +Async +Class +Enum +Extends +Super +Const +Export +Import +Implements +Let +Private +Public +Interface +Package +Protected +Static +Yield +ANY +NUMBER +BOOLEAN +STRING +SYMBOL +Type +Get +Set +Constructor +Namespace +Require +Module +Declare +Abstract +Is +At +Identifier +StringLiteral +TemplateStringLiteral +WhiteSpaces +LineTerminator +HtmlComment +CDataComment +UnexpectedCharacter + +rule names: +MultiLineComment +SingleLineComment +RegularExpressionLiteral +OpenBracket +CloseBracket +OpenParen +CloseParen +OpenBrace +CloseBrace +SemiColon +Comma +Assign +QuestionMark +Colon +Ellipsis +Dot +PlusPlus +MinusMinus +Plus +Minus +BitNot +Not +Multiply +Divide +Modulus +RightShiftArithmetic +LeftShiftArithmetic +RightShiftLogical +LessThan +MoreThan +LessThanEquals +GreaterThanEquals +Equals_ +NotEquals +IdentityEquals +IdentityNotEquals +BitAnd +BitXOr +BitOr +And +Or +MultiplyAssign +DivideAssign +ModulusAssign +PlusAssign +MinusAssign +LeftShiftArithmeticAssign +RightShiftArithmeticAssign +RightShiftLogicalAssign +BitAndAssign +BitXorAssign +BitOrAssign +ARROW +NullLiteral +BooleanLiteral +DecimalLiteral +HexIntegerLiteral +OctalIntegerLiteral +OctalIntegerLiteral2 +BinaryIntegerLiteral +Break +Do +Instanceof +Typeof +Case +Else +New +Var +Catch +Finally +Return +Void +Continue +For +Switch +While +Debugger +Function +This +With +Default +If +Throw +Delete +In +Try +As +From +ReadOnly +Async +Class +Enum +Extends +Super +Const +Export +Import +Implements +Let +Private +Public +Interface +Package +Protected +Static +Yield +ANY +NUMBER +BOOLEAN +STRING +SYMBOL +Type +Get +Set +Constructor +Namespace +Require +Module +Declare +Abstract +Is +At +Identifier +StringLiteral +TemplateStringLiteral +WhiteSpaces +LineTerminator +HtmlComment +CDataComment +UnexpectedCharacter +DoubleStringCharacter +SingleStringCharacter +EscapeSequence +CharacterEscapeSequence +HexEscapeSequence +UnicodeEscapeSequence +ExtendedUnicodeEscapeSequence +SingleEscapeCharacter +NonEscapeCharacter +EscapeCharacter +LineContinuation +HexDigit +DecimalIntegerLiteral +ExponentPart +IdentifierPart +IdentifierStart +UnicodeLetter +UnicodeCombiningMark +UnicodeDigit +UnicodeConnectorPunctuation +RegularExpressionFirstChar +RegularExpressionChar +RegularExpressionClassChar +RegularExpressionBackslashSequence + +channel names: +DEFAULT_TOKEN_CHANNEL +HIDDEN +null +null +ERROR + +mode names: +DEFAULT_MODE + +atn: +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 132, 1183, 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, 3, 2, 3, 2, 3, 2, 3, 2, 7, 2, 316, 10, 2, 12, 2, 14, 2, 319, 11, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 330, 10, 3, 12, 3, 14, 3, 333, 11, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 7, 4, 340, 10, 4, 12, 4, 14, 4, 343, 11, 4, 3, 4, 3, 4, 3, 4, 7, 4, 348, 10, 4, 12, 4, 14, 4, 351, 11, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 39, 3, 39, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 5, 56, 503, 10, 56, 3, 57, 3, 57, 3, 57, 7, 57, 508, 10, 57, 12, 57, 14, 57, 511, 11, 57, 3, 57, 5, 57, 514, 10, 57, 3, 57, 3, 57, 6, 57, 518, 10, 57, 13, 57, 14, 57, 519, 3, 57, 5, 57, 523, 10, 57, 3, 57, 3, 57, 5, 57, 527, 10, 57, 5, 57, 529, 10, 57, 3, 58, 3, 58, 3, 58, 6, 58, 534, 10, 58, 13, 58, 14, 58, 535, 3, 59, 3, 59, 6, 59, 540, 10, 59, 13, 59, 14, 59, 541, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 6, 60, 549, 10, 60, 13, 60, 14, 60, 550, 3, 61, 3, 61, 3, 61, 6, 61, 556, 10, 61, 13, 61, 14, 61, 557, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 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, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 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, 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, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 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, 82, 3, 83, 3, 83, 3, 83, 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, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 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, 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, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 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, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 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, 103, 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, 105, 3, 105, 3, 105, 3, 106, 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, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 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, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 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, 117, 3, 117, 3, 117, 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, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 124, 3, 124, 7, 124, 964, 10, 124, 12, 124, 14, 124, 967, 11, 124, 3, 125, 3, 125, 7, 125, 971, 10, 125, 12, 125, 14, 125, 974, 11, 125, 3, 125, 3, 125, 3, 125, 7, 125, 979, 10, 125, 12, 125, 14, 125, 982, 11, 125, 3, 125, 5, 125, 985, 10, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 7, 126, 993, 10, 126, 12, 126, 14, 126, 996, 11, 126, 3, 126, 3, 126, 3, 127, 6, 127, 1001, 10, 127, 13, 127, 14, 127, 1002, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 7, 129, 1017, 10, 129, 12, 129, 14, 129, 1020, 11, 129, 3, 129, 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, 130, 3, 130, 3, 130, 7, 130, 1039, 10, 130, 12, 130, 14, 130, 1042, 11, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 5, 132, 1058, 10, 132, 3, 133, 3, 133, 3, 133, 3, 133, 5, 133, 1064, 10, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 5, 134, 1071, 10, 134, 3, 135, 3, 135, 5, 135, 1075, 10, 135, 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, 6, 138, 1090, 10, 138, 13, 138, 14, 138, 1091, 3, 138, 3, 138, 3, 139, 3, 139, 3, 140, 3, 140, 3, 141, 3, 141, 5, 141, 1102, 10, 141, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 7, 144, 1112, 10, 144, 12, 144, 14, 144, 1115, 11, 144, 5, 144, 1117, 10, 144, 3, 145, 3, 145, 5, 145, 1121, 10, 145, 3, 145, 6, 145, 1124, 10, 145, 13, 145, 14, 145, 1125, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 5, 146, 1133, 10, 146, 3, 147, 3, 147, 3, 147, 3, 147, 5, 147, 1139, 10, 147, 3, 148, 5, 148, 1142, 10, 148, 3, 149, 5, 149, 1145, 10, 149, 3, 150, 5, 150, 1148, 10, 150, 3, 151, 5, 151, 1151, 10, 151, 3, 152, 3, 152, 3, 152, 3, 152, 7, 152, 1157, 10, 152, 12, 152, 14, 152, 1160, 11, 152, 3, 152, 5, 152, 1163, 10, 152, 3, 153, 3, 153, 3, 153, 3, 153, 7, 153, 1169, 10, 153, 12, 153, 14, 153, 1172, 11, 153, 3, 153, 5, 153, 1175, 10, 153, 3, 154, 3, 154, 5, 154, 1179, 10, 154, 3, 155, 3, 155, 3, 155, 5, 317, 1018, 1040, 2, 156, 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, 2, 265, 2, 267, 2, 269, 2, 271, 2, 273, 2, 275, 2, 277, 2, 279, 2, 281, 2, 283, 2, 285, 2, 287, 2, 289, 2, 291, 2, 293, 2, 295, 2, 297, 2, 299, 2, 301, 2, 303, 2, 305, 2, 307, 2, 309, 2, 3, 2, 28, 5, 2, 12, 12, 15, 15, 8234, 8235, 3, 2, 50, 59, 4, 2, 90, 90, 122, 122, 3, 2, 50, 57, 4, 2, 81, 81, 113, 113, 4, 2, 68, 68, 100, 100, 3, 2, 50, 51, 3, 2, 98, 98, 6, 2, 11, 11, 13, 14, 34, 34, 162, 162, 6, 2, 12, 12, 15, 15, 36, 36, 94, 94, 6, 2, 12, 12, 15, 15, 41, 41, 94, 94, 11, 2, 36, 36, 41, 41, 94, 94, 100, 100, 104, 104, 112, 112, 116, 116, 118, 118, 120, 120, 14, 2, 12, 12, 15, 15, 36, 36, 41, 41, 50, 59, 94, 94, 100, 100, 104, 104, 112, 112, 116, 116, 118, 120, 122, 122, 5, 2, 50, 59, 119, 119, 122, 122, 5, 2, 50, 59, 67, 72, 99, 104, 3, 2, 51, 59, 4, 2, 71, 71, 103, 103, 4, 2, 45, 45, 47, 47, 4, 2, 38, 38, 97, 97, 257, 2, 67, 92, 99, 124, 172, 172, 183, 183, 188, 188, 194, 216, 218, 248, 250, 545, 548, 565, 594, 687, 690, 698, 701, 707, 722, 723, 738, 742, 752, 752, 892, 892, 904, 904, 906, 908, 910, 910, 912, 931, 933, 976, 978, 985, 988, 1013, 1026, 1155, 1166, 1222, 1225, 1226, 1229, 1230, 1234, 1271, 1274, 1275, 1331, 1368, 1371, 1371, 1379, 1417, 1490, 1516, 1522, 1524, 1571, 1596, 1602, 1612, 1651, 1749, 1751, 1751, 1767, 1768, 1788, 1790, 1810, 1810, 1812, 1838, 1922, 1959, 2311, 2363, 2367, 2367, 2386, 2386, 2394, 2403, 2439, 2446, 2449, 2450, 2453, 2474, 2476, 2482, 2484, 2484, 2488, 2491, 2526, 2527, 2529, 2531, 2546, 2547, 2567, 2572, 2577, 2578, 2581, 2602, 2604, 2610, 2612, 2613, 2615, 2616, 2618, 2619, 2651, 2654, 2656, 2656, 2676, 2678, 2695, 2701, 2703, 2703, 2705, 2707, 2709, 2730, 2732, 2738, 2740, 2741, 2743, 2747, 2751, 2751, 2770, 2770, 2786, 2786, 2823, 2830, 2833, 2834, 2837, 2858, 2860, 2866, 2868, 2869, 2872, 2875, 2879, 2879, 2910, 2911, 2913, 2915, 2951, 2956, 2960, 2962, 2964, 2967, 2971, 2972, 2974, 2974, 2976, 2977, 2981, 2982, 2986, 2988, 2992, 2999, 3001, 3003, 3079, 3086, 3088, 3090, 3092, 3114, 3116, 3125, 3127, 3131, 3170, 3171, 3207, 3214, 3216, 3218, 3220, 3242, 3244, 3253, 3255, 3259, 3296, 3296, 3298, 3299, 3335, 3342, 3344, 3346, 3348, 3370, 3372, 3387, 3426, 3427, 3463, 3480, 3484, 3507, 3509, 3517, 3519, 3519, 3522, 3528, 3587, 3634, 3636, 3637, 3650, 3656, 3715, 3716, 3718, 3718, 3721, 3722, 3724, 3724, 3727, 3727, 3734, 3737, 3739, 3745, 3747, 3749, 3751, 3751, 3753, 3753, 3756, 3757, 3759, 3762, 3764, 3765, 3775, 3782, 3784, 3784, 3806, 3807, 3842, 3842, 3906, 3948, 3978, 3981, 4098, 4131, 4133, 4137, 4139, 4140, 4178, 4183, 4258, 4295, 4306, 4344, 4354, 4443, 4449, 4516, 4522, 4603, 4610, 4616, 4618, 4680, 4682, 4682, 4684, 4687, 4690, 4696, 4698, 4698, 4700, 4703, 4706, 4744, 4746, 4746, 4748, 4751, 4754, 4784, 4786, 4786, 4788, 4791, 4794, 4800, 4802, 4802, 4804, 4807, 4810, 4816, 4818, 4824, 4826, 4848, 4850, 4880, 4882, 4882, 4884, 4887, 4890, 4896, 4898, 4936, 4938, 4956, 5026, 5110, 5123, 5752, 5763, 5788, 5794, 5868, 6018, 6069, 6178, 6265, 6274, 6314, 7682, 7837, 7842, 7931, 7938, 7959, 7962, 7967, 7970, 8007, 8010, 8015, 8018, 8025, 8027, 8027, 8029, 8029, 8031, 8031, 8033, 8063, 8066, 8118, 8120, 8126, 8128, 8128, 8132, 8134, 8136, 8142, 8146, 8149, 8152, 8157, 8162, 8174, 8180, 8182, 8184, 8190, 8321, 8321, 8452, 8452, 8457, 8457, 8460, 8469, 8471, 8471, 8475, 8479, 8486, 8486, 8488, 8488, 8490, 8490, 8492, 8495, 8497, 8499, 8501, 8507, 8546, 8581, 12295, 12297, 12323, 12331, 12339, 12343, 12346, 12348, 12355, 12438, 12447, 12448, 12451, 12540, 12542, 12544, 12551, 12590, 12595, 12688, 12706, 12729, 13314, 19905, 19970, 42126, 44034, 44034, 55205, 55205, 63746, 64047, 64258, 64264, 64277, 64281, 64287, 64287, 64289, 64298, 64300, 64312, 64314, 64318, 64320, 64320, 64322, 64323, 64325, 64326, 64328, 64435, 64469, 64831, 64850, 64913, 64916, 64969, 65010, 65021, 65138, 65140, 65142, 65142, 65144, 65278, 65315, 65340, 65347, 65372, 65384, 65472, 65476, 65481, 65484, 65489, 65492, 65497, 65500, 65502, 102, 2, 770, 848, 866, 868, 1157, 1160, 1427, 1443, 1445, 1467, 1469, 1471, 1473, 1473, 1475, 1476, 1478, 1478, 1613, 1623, 1650, 1650, 1752, 1758, 1761, 1766, 1769, 1770, 1772, 1775, 1811, 1811, 1842, 1868, 1960, 1970, 2307, 2309, 2366, 2366, 2368, 2383, 2387, 2390, 2404, 2405, 2435, 2437, 2494, 2502, 2505, 2506, 2509, 2511, 2521, 2521, 2532, 2533, 2564, 2564, 2622, 2622, 2624, 2628, 2633, 2634, 2637, 2639, 2674, 2675, 2691, 2693, 2750, 2750, 2752, 2759, 2761, 2763, 2765, 2767, 2819, 2821, 2878, 2878, 2880, 2885, 2889, 2890, 2893, 2895, 2904, 2905, 2948, 2949, 3008, 3012, 3016, 3018, 3020, 3023, 3033, 3033, 3075, 3077, 3136, 3142, 3144, 3146, 3148, 3151, 3159, 3160, 3204, 3205, 3264, 3270, 3272, 3274, 3276, 3279, 3287, 3288, 3332, 3333, 3392, 3397, 3400, 3402, 3404, 3407, 3417, 3417, 3460, 3461, 3532, 3532, 3537, 3542, 3544, 3544, 3546, 3553, 3572, 3573, 3635, 3635, 3638, 3644, 3657, 3664, 3763, 3763, 3766, 3771, 3773, 3774, 3786, 3791, 3866, 3867, 3895, 3895, 3897, 3897, 3899, 3899, 3904, 3905, 3955, 3974, 3976, 3977, 3986, 3993, 3995, 4030, 4040, 4040, 4142, 4148, 4152, 4155, 4184, 4187, 6070, 6101, 6315, 6315, 8402, 8414, 8419, 8419, 12332, 12337, 12443, 12444, 64288, 64288, 65058, 65061, 22, 2, 50, 59, 1634, 1643, 1778, 1787, 2408, 2417, 2536, 2545, 2664, 2673, 2792, 2801, 2920, 2929, 3049, 3057, 3176, 3185, 3304, 3313, 3432, 3441, 3666, 3675, 3794, 3803, 3874, 3883, 4162, 4171, 4971, 4979, 6114, 6123, 6162, 6171, 65298, 65307, 9, 2, 97, 97, 8257, 8258, 12541, 12541, 65077, 65078, 65103, 65105, 65345, 65345, 65383, 65383, 8, 2, 12, 12, 15, 15, 44, 44, 49, 49, 93, 94, 8234, 8235, 7, 2, 12, 12, 15, 15, 49, 49, 93, 94, 8234, 8235, 6, 2, 12, 12, 15, 15, 94, 95, 8234, 8235, 2, 1211, 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, 3, 311, 3, 2, 2, 2, 5, 325, 3, 2, 2, 2, 7, 336, 3, 2, 2, 2, 9, 352, 3, 2, 2, 2, 11, 354, 3, 2, 2, 2, 13, 356, 3, 2, 2, 2, 15, 358, 3, 2, 2, 2, 17, 360, 3, 2, 2, 2, 19, 363, 3, 2, 2, 2, 21, 366, 3, 2, 2, 2, 23, 368, 3, 2, 2, 2, 25, 370, 3, 2, 2, 2, 27, 372, 3, 2, 2, 2, 29, 374, 3, 2, 2, 2, 31, 376, 3, 2, 2, 2, 33, 380, 3, 2, 2, 2, 35, 382, 3, 2, 2, 2, 37, 385, 3, 2, 2, 2, 39, 388, 3, 2, 2, 2, 41, 390, 3, 2, 2, 2, 43, 392, 3, 2, 2, 2, 45, 394, 3, 2, 2, 2, 47, 396, 3, 2, 2, 2, 49, 398, 3, 2, 2, 2, 51, 400, 3, 2, 2, 2, 53, 402, 3, 2, 2, 2, 55, 405, 3, 2, 2, 2, 57, 408, 3, 2, 2, 2, 59, 412, 3, 2, 2, 2, 61, 414, 3, 2, 2, 2, 63, 416, 3, 2, 2, 2, 65, 419, 3, 2, 2, 2, 67, 422, 3, 2, 2, 2, 69, 425, 3, 2, 2, 2, 71, 428, 3, 2, 2, 2, 73, 432, 3, 2, 2, 2, 75, 436, 3, 2, 2, 2, 77, 438, 3, 2, 2, 2, 79, 440, 3, 2, 2, 2, 81, 442, 3, 2, 2, 2, 83, 445, 3, 2, 2, 2, 85, 448, 3, 2, 2, 2, 87, 451, 3, 2, 2, 2, 89, 454, 3, 2, 2, 2, 91, 457, 3, 2, 2, 2, 93, 460, 3, 2, 2, 2, 95, 463, 3, 2, 2, 2, 97, 467, 3, 2, 2, 2, 99, 471, 3, 2, 2, 2, 101, 476, 3, 2, 2, 2, 103, 479, 3, 2, 2, 2, 105, 482, 3, 2, 2, 2, 107, 485, 3, 2, 2, 2, 109, 488, 3, 2, 2, 2, 111, 502, 3, 2, 2, 2, 113, 528, 3, 2, 2, 2, 115, 530, 3, 2, 2, 2, 117, 537, 3, 2, 2, 2, 119, 545, 3, 2, 2, 2, 121, 552, 3, 2, 2, 2, 123, 559, 3, 2, 2, 2, 125, 565, 3, 2, 2, 2, 127, 568, 3, 2, 2, 2, 129, 579, 3, 2, 2, 2, 131, 586, 3, 2, 2, 2, 133, 591, 3, 2, 2, 2, 135, 596, 3, 2, 2, 2, 137, 600, 3, 2, 2, 2, 139, 604, 3, 2, 2, 2, 141, 610, 3, 2, 2, 2, 143, 618, 3, 2, 2, 2, 145, 625, 3, 2, 2, 2, 147, 630, 3, 2, 2, 2, 149, 639, 3, 2, 2, 2, 151, 643, 3, 2, 2, 2, 153, 650, 3, 2, 2, 2, 155, 656, 3, 2, 2, 2, 157, 665, 3, 2, 2, 2, 159, 674, 3, 2, 2, 2, 161, 679, 3, 2, 2, 2, 163, 684, 3, 2, 2, 2, 165, 692, 3, 2, 2, 2, 167, 695, 3, 2, 2, 2, 169, 701, 3, 2, 2, 2, 171, 708, 3, 2, 2, 2, 173, 711, 3, 2, 2, 2, 175, 715, 3, 2, 2, 2, 177, 718, 3, 2, 2, 2, 179, 723, 3, 2, 2, 2, 181, 732, 3, 2, 2, 2, 183, 738, 3, 2, 2, 2, 185, 744, 3, 2, 2, 2, 187, 749, 3, 2, 2, 2, 189, 757, 3, 2, 2, 2, 191, 763, 3, 2, 2, 2, 193, 769, 3, 2, 2, 2, 195, 776, 3, 2, 2, 2, 197, 783, 3, 2, 2, 2, 199, 794, 3, 2, 2, 2, 201, 798, 3, 2, 2, 2, 203, 806, 3, 2, 2, 2, 205, 813, 3, 2, 2, 2, 207, 823, 3, 2, 2, 2, 209, 831, 3, 2, 2, 2, 211, 841, 3, 2, 2, 2, 213, 848, 3, 2, 2, 2, 215, 854, 3, 2, 2, 2, 217, 858, 3, 2, 2, 2, 219, 865, 3, 2, 2, 2, 221, 873, 3, 2, 2, 2, 223, 880, 3, 2, 2, 2, 225, 887, 3, 2, 2, 2, 227, 892, 3, 2, 2, 2, 229, 897, 3, 2, 2, 2, 231, 902, 3, 2, 2, 2, 233, 914, 3, 2, 2, 2, 235, 924, 3, 2, 2, 2, 237, 932, 3, 2, 2, 2, 239, 939, 3, 2, 2, 2, 241, 947, 3, 2, 2, 2, 243, 956, 3, 2, 2, 2, 245, 959, 3, 2, 2, 2, 247, 961, 3, 2, 2, 2, 249, 984, 3, 2, 2, 2, 251, 988, 3, 2, 2, 2, 253, 1000, 3, 2, 2, 2, 255, 1006, 3, 2, 2, 2, 257, 1010, 3, 2, 2, 2, 259, 1027, 3, 2, 2, 2, 261, 1049, 3, 2, 2, 2, 263, 1057, 3, 2, 2, 2, 265, 1063, 3, 2, 2, 2, 267, 1070, 3, 2, 2, 2, 269, 1074, 3, 2, 2, 2, 271, 1076, 3, 2, 2, 2, 273, 1080, 3, 2, 2, 2, 275, 1086, 3, 2, 2, 2, 277, 1095, 3, 2, 2, 2, 279, 1097, 3, 2, 2, 2, 281, 1101, 3, 2, 2, 2, 283, 1103, 3, 2, 2, 2, 285, 1106, 3, 2, 2, 2, 287, 1116, 3, 2, 2, 2, 289, 1118, 3, 2, 2, 2, 291, 1132, 3, 2, 2, 2, 293, 1138, 3, 2, 2, 2, 295, 1141, 3, 2, 2, 2, 297, 1144, 3, 2, 2, 2, 299, 1147, 3, 2, 2, 2, 301, 1150, 3, 2, 2, 2, 303, 1162, 3, 2, 2, 2, 305, 1174, 3, 2, 2, 2, 307, 1178, 3, 2, 2, 2, 309, 1180, 3, 2, 2, 2, 311, 312, 7, 49, 2, 2, 312, 313, 7, 44, 2, 2, 313, 317, 3, 2, 2, 2, 314, 316, 11, 2, 2, 2, 315, 314, 3, 2, 2, 2, 316, 319, 3, 2, 2, 2, 317, 318, 3, 2, 2, 2, 317, 315, 3, 2, 2, 2, 318, 320, 3, 2, 2, 2, 319, 317, 3, 2, 2, 2, 320, 321, 7, 44, 2, 2, 321, 322, 7, 49, 2, 2, 322, 323, 3, 2, 2, 2, 323, 324, 8, 2, 2, 2, 324, 4, 3, 2, 2, 2, 325, 326, 7, 49, 2, 2, 326, 327, 7, 49, 2, 2, 327, 331, 3, 2, 2, 2, 328, 330, 10, 2, 2, 2, 329, 328, 3, 2, 2, 2, 330, 333, 3, 2, 2, 2, 331, 329, 3, 2, 2, 2, 331, 332, 3, 2, 2, 2, 332, 334, 3, 2, 2, 2, 333, 331, 3, 2, 2, 2, 334, 335, 8, 3, 2, 2, 335, 6, 3, 2, 2, 2, 336, 337, 7, 49, 2, 2, 337, 341, 5, 303, 152, 2, 338, 340, 5, 305, 153, 2, 339, 338, 3, 2, 2, 2, 340, 343, 3, 2, 2, 2, 341, 339, 3, 2, 2, 2, 341, 342, 3, 2, 2, 2, 342, 344, 3, 2, 2, 2, 343, 341, 3, 2, 2, 2, 344, 345, 6, 4, 2, 2, 345, 349, 7, 49, 2, 2, 346, 348, 5, 291, 146, 2, 347, 346, 3, 2, 2, 2, 348, 351, 3, 2, 2, 2, 349, 347, 3, 2, 2, 2, 349, 350, 3, 2, 2, 2, 350, 8, 3, 2, 2, 2, 351, 349, 3, 2, 2, 2, 352, 353, 7, 93, 2, 2, 353, 10, 3, 2, 2, 2, 354, 355, 7, 95, 2, 2, 355, 12, 3, 2, 2, 2, 356, 357, 7, 42, 2, 2, 357, 14, 3, 2, 2, 2, 358, 359, 7, 43, 2, 2, 359, 16, 3, 2, 2, 2, 360, 361, 7, 125, 2, 2, 361, 362, 8, 9, 3, 2, 362, 18, 3, 2, 2, 2, 363, 364, 7, 127, 2, 2, 364, 365, 8, 10, 4, 2, 365, 20, 3, 2, 2, 2, 366, 367, 7, 61, 2, 2, 367, 22, 3, 2, 2, 2, 368, 369, 7, 46, 2, 2, 369, 24, 3, 2, 2, 2, 370, 371, 7, 63, 2, 2, 371, 26, 3, 2, 2, 2, 372, 373, 7, 65, 2, 2, 373, 28, 3, 2, 2, 2, 374, 375, 7, 60, 2, 2, 375, 30, 3, 2, 2, 2, 376, 377, 7, 48, 2, 2, 377, 378, 7, 48, 2, 2, 378, 379, 7, 48, 2, 2, 379, 32, 3, 2, 2, 2, 380, 381, 7, 48, 2, 2, 381, 34, 3, 2, 2, 2, 382, 383, 7, 45, 2, 2, 383, 384, 7, 45, 2, 2, 384, 36, 3, 2, 2, 2, 385, 386, 7, 47, 2, 2, 386, 387, 7, 47, 2, 2, 387, 38, 3, 2, 2, 2, 388, 389, 7, 45, 2, 2, 389, 40, 3, 2, 2, 2, 390, 391, 7, 47, 2, 2, 391, 42, 3, 2, 2, 2, 392, 393, 7, 128, 2, 2, 393, 44, 3, 2, 2, 2, 394, 395, 7, 35, 2, 2, 395, 46, 3, 2, 2, 2, 396, 397, 7, 44, 2, 2, 397, 48, 3, 2, 2, 2, 398, 399, 7, 49, 2, 2, 399, 50, 3, 2, 2, 2, 400, 401, 7, 39, 2, 2, 401, 52, 3, 2, 2, 2, 402, 403, 7, 64, 2, 2, 403, 404, 7, 64, 2, 2, 404, 54, 3, 2, 2, 2, 405, 406, 7, 62, 2, 2, 406, 407, 7, 62, 2, 2, 407, 56, 3, 2, 2, 2, 408, 409, 7, 64, 2, 2, 409, 410, 7, 64, 2, 2, 410, 411, 7, 64, 2, 2, 411, 58, 3, 2, 2, 2, 412, 413, 7, 62, 2, 2, 413, 60, 3, 2, 2, 2, 414, 415, 7, 64, 2, 2, 415, 62, 3, 2, 2, 2, 416, 417, 7, 62, 2, 2, 417, 418, 7, 63, 2, 2, 418, 64, 3, 2, 2, 2, 419, 420, 7, 64, 2, 2, 420, 421, 7, 63, 2, 2, 421, 66, 3, 2, 2, 2, 422, 423, 7, 63, 2, 2, 423, 424, 7, 63, 2, 2, 424, 68, 3, 2, 2, 2, 425, 426, 7, 35, 2, 2, 426, 427, 7, 63, 2, 2, 427, 70, 3, 2, 2, 2, 428, 429, 7, 63, 2, 2, 429, 430, 7, 63, 2, 2, 430, 431, 7, 63, 2, 2, 431, 72, 3, 2, 2, 2, 432, 433, 7, 35, 2, 2, 433, 434, 7, 63, 2, 2, 434, 435, 7, 63, 2, 2, 435, 74, 3, 2, 2, 2, 436, 437, 7, 40, 2, 2, 437, 76, 3, 2, 2, 2, 438, 439, 7, 96, 2, 2, 439, 78, 3, 2, 2, 2, 440, 441, 7, 126, 2, 2, 441, 80, 3, 2, 2, 2, 442, 443, 7, 40, 2, 2, 443, 444, 7, 40, 2, 2, 444, 82, 3, 2, 2, 2, 445, 446, 7, 126, 2, 2, 446, 447, 7, 126, 2, 2, 447, 84, 3, 2, 2, 2, 448, 449, 7, 44, 2, 2, 449, 450, 7, 63, 2, 2, 450, 86, 3, 2, 2, 2, 451, 452, 7, 49, 2, 2, 452, 453, 7, 63, 2, 2, 453, 88, 3, 2, 2, 2, 454, 455, 7, 39, 2, 2, 455, 456, 7, 63, 2, 2, 456, 90, 3, 2, 2, 2, 457, 458, 7, 45, 2, 2, 458, 459, 7, 63, 2, 2, 459, 92, 3, 2, 2, 2, 460, 461, 7, 47, 2, 2, 461, 462, 7, 63, 2, 2, 462, 94, 3, 2, 2, 2, 463, 464, 7, 62, 2, 2, 464, 465, 7, 62, 2, 2, 465, 466, 7, 63, 2, 2, 466, 96, 3, 2, 2, 2, 467, 468, 7, 64, 2, 2, 468, 469, 7, 64, 2, 2, 469, 470, 7, 63, 2, 2, 470, 98, 3, 2, 2, 2, 471, 472, 7, 64, 2, 2, 472, 473, 7, 64, 2, 2, 473, 474, 7, 64, 2, 2, 474, 475, 7, 63, 2, 2, 475, 100, 3, 2, 2, 2, 476, 477, 7, 40, 2, 2, 477, 478, 7, 63, 2, 2, 478, 102, 3, 2, 2, 2, 479, 480, 7, 96, 2, 2, 480, 481, 7, 63, 2, 2, 481, 104, 3, 2, 2, 2, 482, 483, 7, 126, 2, 2, 483, 484, 7, 63, 2, 2, 484, 106, 3, 2, 2, 2, 485, 486, 7, 63, 2, 2, 486, 487, 7, 64, 2, 2, 487, 108, 3, 2, 2, 2, 488, 489, 7, 112, 2, 2, 489, 490, 7, 119, 2, 2, 490, 491, 7, 110, 2, 2, 491, 492, 7, 110, 2, 2, 492, 110, 3, 2, 2, 2, 493, 494, 7, 118, 2, 2, 494, 495, 7, 116, 2, 2, 495, 496, 7, 119, 2, 2, 496, 503, 7, 103, 2, 2, 497, 498, 7, 104, 2, 2, 498, 499, 7, 99, 2, 2, 499, 500, 7, 110, 2, 2, 500, 501, 7, 117, 2, 2, 501, 503, 7, 103, 2, 2, 502, 493, 3, 2, 2, 2, 502, 497, 3, 2, 2, 2, 503, 112, 3, 2, 2, 2, 504, 505, 5, 287, 144, 2, 505, 509, 7, 48, 2, 2, 506, 508, 9, 3, 2, 2, 507, 506, 3, 2, 2, 2, 508, 511, 3, 2, 2, 2, 509, 507, 3, 2, 2, 2, 509, 510, 3, 2, 2, 2, 510, 513, 3, 2, 2, 2, 511, 509, 3, 2, 2, 2, 512, 514, 5, 289, 145, 2, 513, 512, 3, 2, 2, 2, 513, 514, 3, 2, 2, 2, 514, 529, 3, 2, 2, 2, 515, 517, 7, 48, 2, 2, 516, 518, 9, 3, 2, 2, 517, 516, 3, 2, 2, 2, 518, 519, 3, 2, 2, 2, 519, 517, 3, 2, 2, 2, 519, 520, 3, 2, 2, 2, 520, 522, 3, 2, 2, 2, 521, 523, 5, 289, 145, 2, 522, 521, 3, 2, 2, 2, 522, 523, 3, 2, 2, 2, 523, 529, 3, 2, 2, 2, 524, 526, 5, 287, 144, 2, 525, 527, 5, 289, 145, 2, 526, 525, 3, 2, 2, 2, 526, 527, 3, 2, 2, 2, 527, 529, 3, 2, 2, 2, 528, 504, 3, 2, 2, 2, 528, 515, 3, 2, 2, 2, 528, 524, 3, 2, 2, 2, 529, 114, 3, 2, 2, 2, 530, 531, 7, 50, 2, 2, 531, 533, 9, 4, 2, 2, 532, 534, 5, 285, 143, 2, 533, 532, 3, 2, 2, 2, 534, 535, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 535, 536, 3, 2, 2, 2, 536, 116, 3, 2, 2, 2, 537, 539, 7, 50, 2, 2, 538, 540, 9, 5, 2, 2, 539, 538, 3, 2, 2, 2, 540, 541, 3, 2, 2, 2, 541, 539, 3, 2, 2, 2, 541, 542, 3, 2, 2, 2, 542, 543, 3, 2, 2, 2, 543, 544, 6, 59, 3, 2, 544, 118, 3, 2, 2, 2, 545, 546, 7, 50, 2, 2, 546, 548, 9, 6, 2, 2, 547, 549, 9, 5, 2, 2, 548, 547, 3, 2, 2, 2, 549, 550, 3, 2, 2, 2, 550, 548, 3, 2, 2, 2, 550, 551, 3, 2, 2, 2, 551, 120, 3, 2, 2, 2, 552, 553, 7, 50, 2, 2, 553, 555, 9, 7, 2, 2, 554, 556, 9, 8, 2, 2, 555, 554, 3, 2, 2, 2, 556, 557, 3, 2, 2, 2, 557, 555, 3, 2, 2, 2, 557, 558, 3, 2, 2, 2, 558, 122, 3, 2, 2, 2, 559, 560, 7, 100, 2, 2, 560, 561, 7, 116, 2, 2, 561, 562, 7, 103, 2, 2, 562, 563, 7, 99, 2, 2, 563, 564, 7, 109, 2, 2, 564, 124, 3, 2, 2, 2, 565, 566, 7, 102, 2, 2, 566, 567, 7, 113, 2, 2, 567, 126, 3, 2, 2, 2, 568, 569, 7, 107, 2, 2, 569, 570, 7, 112, 2, 2, 570, 571, 7, 117, 2, 2, 571, 572, 7, 118, 2, 2, 572, 573, 7, 99, 2, 2, 573, 574, 7, 112, 2, 2, 574, 575, 7, 101, 2, 2, 575, 576, 7, 103, 2, 2, 576, 577, 7, 113, 2, 2, 577, 578, 7, 104, 2, 2, 578, 128, 3, 2, 2, 2, 579, 580, 7, 118, 2, 2, 580, 581, 7, 123, 2, 2, 581, 582, 7, 114, 2, 2, 582, 583, 7, 103, 2, 2, 583, 584, 7, 113, 2, 2, 584, 585, 7, 104, 2, 2, 585, 130, 3, 2, 2, 2, 586, 587, 7, 101, 2, 2, 587, 588, 7, 99, 2, 2, 588, 589, 7, 117, 2, 2, 589, 590, 7, 103, 2, 2, 590, 132, 3, 2, 2, 2, 591, 592, 7, 103, 2, 2, 592, 593, 7, 110, 2, 2, 593, 594, 7, 117, 2, 2, 594, 595, 7, 103, 2, 2, 595, 134, 3, 2, 2, 2, 596, 597, 7, 112, 2, 2, 597, 598, 7, 103, 2, 2, 598, 599, 7, 121, 2, 2, 599, 136, 3, 2, 2, 2, 600, 601, 7, 120, 2, 2, 601, 602, 7, 99, 2, 2, 602, 603, 7, 116, 2, 2, 603, 138, 3, 2, 2, 2, 604, 605, 7, 101, 2, 2, 605, 606, 7, 99, 2, 2, 606, 607, 7, 118, 2, 2, 607, 608, 7, 101, 2, 2, 608, 609, 7, 106, 2, 2, 609, 140, 3, 2, 2, 2, 610, 611, 7, 104, 2, 2, 611, 612, 7, 107, 2, 2, 612, 613, 7, 112, 2, 2, 613, 614, 7, 99, 2, 2, 614, 615, 7, 110, 2, 2, 615, 616, 7, 110, 2, 2, 616, 617, 7, 123, 2, 2, 617, 142, 3, 2, 2, 2, 618, 619, 7, 116, 2, 2, 619, 620, 7, 103, 2, 2, 620, 621, 7, 118, 2, 2, 621, 622, 7, 119, 2, 2, 622, 623, 7, 116, 2, 2, 623, 624, 7, 112, 2, 2, 624, 144, 3, 2, 2, 2, 625, 626, 7, 120, 2, 2, 626, 627, 7, 113, 2, 2, 627, 628, 7, 107, 2, 2, 628, 629, 7, 102, 2, 2, 629, 146, 3, 2, 2, 2, 630, 631, 7, 101, 2, 2, 631, 632, 7, 113, 2, 2, 632, 633, 7, 112, 2, 2, 633, 634, 7, 118, 2, 2, 634, 635, 7, 107, 2, 2, 635, 636, 7, 112, 2, 2, 636, 637, 7, 119, 2, 2, 637, 638, 7, 103, 2, 2, 638, 148, 3, 2, 2, 2, 639, 640, 7, 104, 2, 2, 640, 641, 7, 113, 2, 2, 641, 642, 7, 116, 2, 2, 642, 150, 3, 2, 2, 2, 643, 644, 7, 117, 2, 2, 644, 645, 7, 121, 2, 2, 645, 646, 7, 107, 2, 2, 646, 647, 7, 118, 2, 2, 647, 648, 7, 101, 2, 2, 648, 649, 7, 106, 2, 2, 649, 152, 3, 2, 2, 2, 650, 651, 7, 121, 2, 2, 651, 652, 7, 106, 2, 2, 652, 653, 7, 107, 2, 2, 653, 654, 7, 110, 2, 2, 654, 655, 7, 103, 2, 2, 655, 154, 3, 2, 2, 2, 656, 657, 7, 102, 2, 2, 657, 658, 7, 103, 2, 2, 658, 659, 7, 100, 2, 2, 659, 660, 7, 119, 2, 2, 660, 661, 7, 105, 2, 2, 661, 662, 7, 105, 2, 2, 662, 663, 7, 103, 2, 2, 663, 664, 7, 116, 2, 2, 664, 156, 3, 2, 2, 2, 665, 666, 7, 104, 2, 2, 666, 667, 7, 119, 2, 2, 667, 668, 7, 112, 2, 2, 668, 669, 7, 101, 2, 2, 669, 670, 7, 118, 2, 2, 670, 671, 7, 107, 2, 2, 671, 672, 7, 113, 2, 2, 672, 673, 7, 112, 2, 2, 673, 158, 3, 2, 2, 2, 674, 675, 7, 118, 2, 2, 675, 676, 7, 106, 2, 2, 676, 677, 7, 107, 2, 2, 677, 678, 7, 117, 2, 2, 678, 160, 3, 2, 2, 2, 679, 680, 7, 121, 2, 2, 680, 681, 7, 107, 2, 2, 681, 682, 7, 118, 2, 2, 682, 683, 7, 106, 2, 2, 683, 162, 3, 2, 2, 2, 684, 685, 7, 102, 2, 2, 685, 686, 7, 103, 2, 2, 686, 687, 7, 104, 2, 2, 687, 688, 7, 99, 2, 2, 688, 689, 7, 119, 2, 2, 689, 690, 7, 110, 2, 2, 690, 691, 7, 118, 2, 2, 691, 164, 3, 2, 2, 2, 692, 693, 7, 107, 2, 2, 693, 694, 7, 104, 2, 2, 694, 166, 3, 2, 2, 2, 695, 696, 7, 118, 2, 2, 696, 697, 7, 106, 2, 2, 697, 698, 7, 116, 2, 2, 698, 699, 7, 113, 2, 2, 699, 700, 7, 121, 2, 2, 700, 168, 3, 2, 2, 2, 701, 702, 7, 102, 2, 2, 702, 703, 7, 103, 2, 2, 703, 704, 7, 110, 2, 2, 704, 705, 7, 103, 2, 2, 705, 706, 7, 118, 2, 2, 706, 707, 7, 103, 2, 2, 707, 170, 3, 2, 2, 2, 708, 709, 7, 107, 2, 2, 709, 710, 7, 112, 2, 2, 710, 172, 3, 2, 2, 2, 711, 712, 7, 118, 2, 2, 712, 713, 7, 116, 2, 2, 713, 714, 7, 123, 2, 2, 714, 174, 3, 2, 2, 2, 715, 716, 7, 99, 2, 2, 716, 717, 7, 117, 2, 2, 717, 176, 3, 2, 2, 2, 718, 719, 7, 104, 2, 2, 719, 720, 7, 116, 2, 2, 720, 721, 7, 113, 2, 2, 721, 722, 7, 111, 2, 2, 722, 178, 3, 2, 2, 2, 723, 724, 7, 116, 2, 2, 724, 725, 7, 103, 2, 2, 725, 726, 7, 99, 2, 2, 726, 727, 7, 102, 2, 2, 727, 728, 7, 113, 2, 2, 728, 729, 7, 112, 2, 2, 729, 730, 7, 110, 2, 2, 730, 731, 7, 123, 2, 2, 731, 180, 3, 2, 2, 2, 732, 733, 7, 99, 2, 2, 733, 734, 7, 117, 2, 2, 734, 735, 7, 123, 2, 2, 735, 736, 7, 112, 2, 2, 736, 737, 7, 101, 2, 2, 737, 182, 3, 2, 2, 2, 738, 739, 7, 101, 2, 2, 739, 740, 7, 110, 2, 2, 740, 741, 7, 99, 2, 2, 741, 742, 7, 117, 2, 2, 742, 743, 7, 117, 2, 2, 743, 184, 3, 2, 2, 2, 744, 745, 7, 103, 2, 2, 745, 746, 7, 112, 2, 2, 746, 747, 7, 119, 2, 2, 747, 748, 7, 111, 2, 2, 748, 186, 3, 2, 2, 2, 749, 750, 7, 103, 2, 2, 750, 751, 7, 122, 2, 2, 751, 752, 7, 118, 2, 2, 752, 753, 7, 103, 2, 2, 753, 754, 7, 112, 2, 2, 754, 755, 7, 102, 2, 2, 755, 756, 7, 117, 2, 2, 756, 188, 3, 2, 2, 2, 757, 758, 7, 117, 2, 2, 758, 759, 7, 119, 2, 2, 759, 760, 7, 114, 2, 2, 760, 761, 7, 103, 2, 2, 761, 762, 7, 116, 2, 2, 762, 190, 3, 2, 2, 2, 763, 764, 7, 101, 2, 2, 764, 765, 7, 113, 2, 2, 765, 766, 7, 112, 2, 2, 766, 767, 7, 117, 2, 2, 767, 768, 7, 118, 2, 2, 768, 192, 3, 2, 2, 2, 769, 770, 7, 103, 2, 2, 770, 771, 7, 122, 2, 2, 771, 772, 7, 114, 2, 2, 772, 773, 7, 113, 2, 2, 773, 774, 7, 116, 2, 2, 774, 775, 7, 118, 2, 2, 775, 194, 3, 2, 2, 2, 776, 777, 7, 107, 2, 2, 777, 778, 7, 111, 2, 2, 778, 779, 7, 114, 2, 2, 779, 780, 7, 113, 2, 2, 780, 781, 7, 116, 2, 2, 781, 782, 7, 118, 2, 2, 782, 196, 3, 2, 2, 2, 783, 784, 7, 107, 2, 2, 784, 785, 7, 111, 2, 2, 785, 786, 7, 114, 2, 2, 786, 787, 7, 110, 2, 2, 787, 788, 7, 103, 2, 2, 788, 789, 7, 111, 2, 2, 789, 790, 7, 103, 2, 2, 790, 791, 7, 112, 2, 2, 791, 792, 7, 118, 2, 2, 792, 793, 7, 117, 2, 2, 793, 198, 3, 2, 2, 2, 794, 795, 7, 110, 2, 2, 795, 796, 7, 103, 2, 2, 796, 797, 7, 118, 2, 2, 797, 200, 3, 2, 2, 2, 798, 799, 7, 114, 2, 2, 799, 800, 7, 116, 2, 2, 800, 801, 7, 107, 2, 2, 801, 802, 7, 120, 2, 2, 802, 803, 7, 99, 2, 2, 803, 804, 7, 118, 2, 2, 804, 805, 7, 103, 2, 2, 805, 202, 3, 2, 2, 2, 806, 807, 7, 114, 2, 2, 807, 808, 7, 119, 2, 2, 808, 809, 7, 100, 2, 2, 809, 810, 7, 110, 2, 2, 810, 811, 7, 107, 2, 2, 811, 812, 7, 101, 2, 2, 812, 204, 3, 2, 2, 2, 813, 814, 7, 107, 2, 2, 814, 815, 7, 112, 2, 2, 815, 816, 7, 118, 2, 2, 816, 817, 7, 103, 2, 2, 817, 818, 7, 116, 2, 2, 818, 819, 7, 104, 2, 2, 819, 820, 7, 99, 2, 2, 820, 821, 7, 101, 2, 2, 821, 822, 7, 103, 2, 2, 822, 206, 3, 2, 2, 2, 823, 824, 7, 114, 2, 2, 824, 825, 7, 99, 2, 2, 825, 826, 7, 101, 2, 2, 826, 827, 7, 109, 2, 2, 827, 828, 7, 99, 2, 2, 828, 829, 7, 105, 2, 2, 829, 830, 7, 103, 2, 2, 830, 208, 3, 2, 2, 2, 831, 832, 7, 114, 2, 2, 832, 833, 7, 116, 2, 2, 833, 834, 7, 113, 2, 2, 834, 835, 7, 118, 2, 2, 835, 836, 7, 103, 2, 2, 836, 837, 7, 101, 2, 2, 837, 838, 7, 118, 2, 2, 838, 839, 7, 103, 2, 2, 839, 840, 7, 102, 2, 2, 840, 210, 3, 2, 2, 2, 841, 842, 7, 117, 2, 2, 842, 843, 7, 118, 2, 2, 843, 844, 7, 99, 2, 2, 844, 845, 7, 118, 2, 2, 845, 846, 7, 107, 2, 2, 846, 847, 7, 101, 2, 2, 847, 212, 3, 2, 2, 2, 848, 849, 7, 123, 2, 2, 849, 850, 7, 107, 2, 2, 850, 851, 7, 103, 2, 2, 851, 852, 7, 110, 2, 2, 852, 853, 7, 102, 2, 2, 853, 214, 3, 2, 2, 2, 854, 855, 7, 99, 2, 2, 855, 856, 7, 112, 2, 2, 856, 857, 7, 123, 2, 2, 857, 216, 3, 2, 2, 2, 858, 859, 7, 112, 2, 2, 859, 860, 7, 119, 2, 2, 860, 861, 7, 111, 2, 2, 861, 862, 7, 100, 2, 2, 862, 863, 7, 103, 2, 2, 863, 864, 7, 116, 2, 2, 864, 218, 3, 2, 2, 2, 865, 866, 7, 100, 2, 2, 866, 867, 7, 113, 2, 2, 867, 868, 7, 113, 2, 2, 868, 869, 7, 110, 2, 2, 869, 870, 7, 103, 2, 2, 870, 871, 7, 99, 2, 2, 871, 872, 7, 112, 2, 2, 872, 220, 3, 2, 2, 2, 873, 874, 7, 117, 2, 2, 874, 875, 7, 118, 2, 2, 875, 876, 7, 116, 2, 2, 876, 877, 7, 107, 2, 2, 877, 878, 7, 112, 2, 2, 878, 879, 7, 105, 2, 2, 879, 222, 3, 2, 2, 2, 880, 881, 7, 117, 2, 2, 881, 882, 7, 123, 2, 2, 882, 883, 7, 111, 2, 2, 883, 884, 7, 100, 2, 2, 884, 885, 7, 113, 2, 2, 885, 886, 7, 110, 2, 2, 886, 224, 3, 2, 2, 2, 887, 888, 7, 118, 2, 2, 888, 889, 7, 123, 2, 2, 889, 890, 7, 114, 2, 2, 890, 891, 7, 103, 2, 2, 891, 226, 3, 2, 2, 2, 892, 893, 7, 105, 2, 2, 893, 894, 7, 103, 2, 2, 894, 895, 7, 118, 2, 2, 895, 896, 7, 34, 2, 2, 896, 228, 3, 2, 2, 2, 897, 898, 7, 117, 2, 2, 898, 899, 7, 103, 2, 2, 899, 900, 7, 118, 2, 2, 900, 901, 7, 34, 2, 2, 901, 230, 3, 2, 2, 2, 902, 903, 7, 101, 2, 2, 903, 904, 7, 113, 2, 2, 904, 905, 7, 112, 2, 2, 905, 906, 7, 117, 2, 2, 906, 907, 7, 118, 2, 2, 907, 908, 7, 116, 2, 2, 908, 909, 7, 119, 2, 2, 909, 910, 7, 101, 2, 2, 910, 911, 7, 118, 2, 2, 911, 912, 7, 113, 2, 2, 912, 913, 7, 116, 2, 2, 913, 232, 3, 2, 2, 2, 914, 915, 7, 112, 2, 2, 915, 916, 7, 99, 2, 2, 916, 917, 7, 111, 2, 2, 917, 918, 7, 103, 2, 2, 918, 919, 7, 117, 2, 2, 919, 920, 7, 114, 2, 2, 920, 921, 7, 99, 2, 2, 921, 922, 7, 101, 2, 2, 922, 923, 7, 103, 2, 2, 923, 234, 3, 2, 2, 2, 924, 925, 7, 116, 2, 2, 925, 926, 7, 103, 2, 2, 926, 927, 7, 115, 2, 2, 927, 928, 7, 119, 2, 2, 928, 929, 7, 107, 2, 2, 929, 930, 7, 116, 2, 2, 930, 931, 7, 103, 2, 2, 931, 236, 3, 2, 2, 2, 932, 933, 7, 111, 2, 2, 933, 934, 7, 113, 2, 2, 934, 935, 7, 102, 2, 2, 935, 936, 7, 119, 2, 2, 936, 937, 7, 110, 2, 2, 937, 938, 7, 103, 2, 2, 938, 238, 3, 2, 2, 2, 939, 940, 7, 102, 2, 2, 940, 941, 7, 103, 2, 2, 941, 942, 7, 101, 2, 2, 942, 943, 7, 110, 2, 2, 943, 944, 7, 99, 2, 2, 944, 945, 7, 116, 2, 2, 945, 946, 7, 103, 2, 2, 946, 240, 3, 2, 2, 2, 947, 948, 7, 99, 2, 2, 948, 949, 7, 100, 2, 2, 949, 950, 7, 117, 2, 2, 950, 951, 7, 118, 2, 2, 951, 952, 7, 116, 2, 2, 952, 953, 7, 99, 2, 2, 953, 954, 7, 101, 2, 2, 954, 955, 7, 118, 2, 2, 955, 242, 3, 2, 2, 2, 956, 957, 7, 107, 2, 2, 957, 958, 7, 117, 2, 2, 958, 244, 3, 2, 2, 2, 959, 960, 7, 66, 2, 2, 960, 246, 3, 2, 2, 2, 961, 965, 5, 293, 147, 2, 962, 964, 5, 291, 146, 2, 963, 962, 3, 2, 2, 2, 964, 967, 3, 2, 2, 2, 965, 963, 3, 2, 2, 2, 965, 966, 3, 2, 2, 2, 966, 248, 3, 2, 2, 2, 967, 965, 3, 2, 2, 2, 968, 972, 7, 36, 2, 2, 969, 971, 5, 263, 132, 2, 970, 969, 3, 2, 2, 2, 971, 974, 3, 2, 2, 2, 972, 970, 3, 2, 2, 2, 972, 973, 3, 2, 2, 2, 973, 975, 3, 2, 2, 2, 974, 972, 3, 2, 2, 2, 975, 985, 7, 36, 2, 2, 976, 980, 7, 41, 2, 2, 977, 979, 5, 265, 133, 2, 978, 977, 3, 2, 2, 2, 979, 982, 3, 2, 2, 2, 980, 978, 3, 2, 2, 2, 980, 981, 3, 2, 2, 2, 981, 983, 3, 2, 2, 2, 982, 980, 3, 2, 2, 2, 983, 985, 7, 41, 2, 2, 984, 968, 3, 2, 2, 2, 984, 976, 3, 2, 2, 2, 985, 986, 3, 2, 2, 2, 986, 987, 8, 125, 5, 2, 987, 250, 3, 2, 2, 2, 988, 994, 7, 98, 2, 2, 989, 990, 7, 94, 2, 2, 990, 993, 7, 98, 2, 2, 991, 993, 10, 9, 2, 2, 992, 989, 3, 2, 2, 2, 992, 991, 3, 2, 2, 2, 993, 996, 3, 2, 2, 2, 994, 992, 3, 2, 2, 2, 994, 995, 3, 2, 2, 2, 995, 997, 3, 2, 2, 2, 996, 994, 3, 2, 2, 2, 997, 998, 7, 98, 2, 2, 998, 252, 3, 2, 2, 2, 999, 1001, 9, 10, 2, 2, 1000, 999, 3, 2, 2, 2, 1001, 1002, 3, 2, 2, 2, 1002, 1000, 3, 2, 2, 2, 1002, 1003, 3, 2, 2, 2, 1003, 1004, 3, 2, 2, 2, 1004, 1005, 8, 127, 2, 2, 1005, 254, 3, 2, 2, 2, 1006, 1007, 9, 2, 2, 2, 1007, 1008, 3, 2, 2, 2, 1008, 1009, 8, 128, 2, 2, 1009, 256, 3, 2, 2, 2, 1010, 1011, 7, 62, 2, 2, 1011, 1012, 7, 35, 2, 2, 1012, 1013, 7, 47, 2, 2, 1013, 1014, 7, 47, 2, 2, 1014, 1018, 3, 2, 2, 2, 1015, 1017, 11, 2, 2, 2, 1016, 1015, 3, 2, 2, 2, 1017, 1020, 3, 2, 2, 2, 1018, 1019, 3, 2, 2, 2, 1018, 1016, 3, 2, 2, 2, 1019, 1021, 3, 2, 2, 2, 1020, 1018, 3, 2, 2, 2, 1021, 1022, 7, 47, 2, 2, 1022, 1023, 7, 47, 2, 2, 1023, 1024, 7, 64, 2, 2, 1024, 1025, 3, 2, 2, 2, 1025, 1026, 8, 129, 2, 2, 1026, 258, 3, 2, 2, 2, 1027, 1028, 7, 62, 2, 2, 1028, 1029, 7, 35, 2, 2, 1029, 1030, 7, 93, 2, 2, 1030, 1031, 7, 69, 2, 2, 1031, 1032, 7, 70, 2, 2, 1032, 1033, 7, 67, 2, 2, 1033, 1034, 7, 86, 2, 2, 1034, 1035, 7, 67, 2, 2, 1035, 1036, 7, 93, 2, 2, 1036, 1040, 3, 2, 2, 2, 1037, 1039, 11, 2, 2, 2, 1038, 1037, 3, 2, 2, 2, 1039, 1042, 3, 2, 2, 2, 1040, 1041, 3, 2, 2, 2, 1040, 1038, 3, 2, 2, 2, 1041, 1043, 3, 2, 2, 2, 1042, 1040, 3, 2, 2, 2, 1043, 1044, 7, 95, 2, 2, 1044, 1045, 7, 95, 2, 2, 1045, 1046, 7, 64, 2, 2, 1046, 1047, 3, 2, 2, 2, 1047, 1048, 8, 130, 2, 2, 1048, 260, 3, 2, 2, 2, 1049, 1050, 11, 2, 2, 2, 1050, 1051, 3, 2, 2, 2, 1051, 1052, 8, 131, 6, 2, 1052, 262, 3, 2, 2, 2, 1053, 1058, 10, 11, 2, 2, 1054, 1055, 7, 94, 2, 2, 1055, 1058, 5, 267, 134, 2, 1056, 1058, 5, 283, 142, 2, 1057, 1053, 3, 2, 2, 2, 1057, 1054, 3, 2, 2, 2, 1057, 1056, 3, 2, 2, 2, 1058, 264, 3, 2, 2, 2, 1059, 1064, 10, 12, 2, 2, 1060, 1061, 7, 94, 2, 2, 1061, 1064, 5, 267, 134, 2, 1062, 1064, 5, 283, 142, 2, 1063, 1059, 3, 2, 2, 2, 1063, 1060, 3, 2, 2, 2, 1063, 1062, 3, 2, 2, 2, 1064, 266, 3, 2, 2, 2, 1065, 1071, 5, 269, 135, 2, 1066, 1071, 7, 50, 2, 2, 1067, 1071, 5, 271, 136, 2, 1068, 1071, 5, 273, 137, 2, 1069, 1071, 5, 275, 138, 2, 1070, 1065, 3, 2, 2, 2, 1070, 1066, 3, 2, 2, 2, 1070, 1067, 3, 2, 2, 2, 1070, 1068, 3, 2, 2, 2, 1070, 1069, 3, 2, 2, 2, 1071, 268, 3, 2, 2, 2, 1072, 1075, 5, 277, 139, 2, 1073, 1075, 5, 279, 140, 2, 1074, 1072, 3, 2, 2, 2, 1074, 1073, 3, 2, 2, 2, 1075, 270, 3, 2, 2, 2, 1076, 1077, 7, 122, 2, 2, 1077, 1078, 5, 285, 143, 2, 1078, 1079, 5, 285, 143, 2, 1079, 272, 3, 2, 2, 2, 1080, 1081, 7, 119, 2, 2, 1081, 1082, 5, 285, 143, 2, 1082, 1083, 5, 285, 143, 2, 1083, 1084, 5, 285, 143, 2, 1084, 1085, 5, 285, 143, 2, 1085, 274, 3, 2, 2, 2, 1086, 1087, 7, 119, 2, 2, 1087, 1089, 7, 125, 2, 2, 1088, 1090, 5, 285, 143, 2, 1089, 1088, 3, 2, 2, 2, 1090, 1091, 3, 2, 2, 2, 1091, 1089, 3, 2, 2, 2, 1091, 1092, 3, 2, 2, 2, 1092, 1093, 3, 2, 2, 2, 1093, 1094, 7, 127, 2, 2, 1094, 276, 3, 2, 2, 2, 1095, 1096, 9, 13, 2, 2, 1096, 278, 3, 2, 2, 2, 1097, 1098, 10, 14, 2, 2, 1098, 280, 3, 2, 2, 2, 1099, 1102, 5, 277, 139, 2, 1100, 1102, 9, 15, 2, 2, 1101, 1099, 3, 2, 2, 2, 1101, 1100, 3, 2, 2, 2, 1102, 282, 3, 2, 2, 2, 1103, 1104, 7, 94, 2, 2, 1104, 1105, 9, 2, 2, 2, 1105, 284, 3, 2, 2, 2, 1106, 1107, 9, 16, 2, 2, 1107, 286, 3, 2, 2, 2, 1108, 1117, 7, 50, 2, 2, 1109, 1113, 9, 17, 2, 2, 1110, 1112, 9, 3, 2, 2, 1111, 1110, 3, 2, 2, 2, 1112, 1115, 3, 2, 2, 2, 1113, 1111, 3, 2, 2, 2, 1113, 1114, 3, 2, 2, 2, 1114, 1117, 3, 2, 2, 2, 1115, 1113, 3, 2, 2, 2, 1116, 1108, 3, 2, 2, 2, 1116, 1109, 3, 2, 2, 2, 1117, 288, 3, 2, 2, 2, 1118, 1120, 9, 18, 2, 2, 1119, 1121, 9, 19, 2, 2, 1120, 1119, 3, 2, 2, 2, 1120, 1121, 3, 2, 2, 2, 1121, 1123, 3, 2, 2, 2, 1122, 1124, 9, 3, 2, 2, 1123, 1122, 3, 2, 2, 2, 1124, 1125, 3, 2, 2, 2, 1125, 1123, 3, 2, 2, 2, 1125, 1126, 3, 2, 2, 2, 1126, 290, 3, 2, 2, 2, 1127, 1133, 5, 293, 147, 2, 1128, 1133, 5, 297, 149, 2, 1129, 1133, 5, 299, 150, 2, 1130, 1133, 5, 301, 151, 2, 1131, 1133, 4, 8206, 8207, 2, 1132, 1127, 3, 2, 2, 2, 1132, 1128, 3, 2, 2, 2, 1132, 1129, 3, 2, 2, 2, 1132, 1130, 3, 2, 2, 2, 1132, 1131, 3, 2, 2, 2, 1133, 292, 3, 2, 2, 2, 1134, 1139, 5, 295, 148, 2, 1135, 1139, 9, 20, 2, 2, 1136, 1137, 7, 94, 2, 2, 1137, 1139, 5, 273, 137, 2, 1138, 1134, 3, 2, 2, 2, 1138, 1135, 3, 2, 2, 2, 1138, 1136, 3, 2, 2, 2, 1139, 294, 3, 2, 2, 2, 1140, 1142, 9, 21, 2, 2, 1141, 1140, 3, 2, 2, 2, 1142, 296, 3, 2, 2, 2, 1143, 1145, 9, 22, 2, 2, 1144, 1143, 3, 2, 2, 2, 1145, 298, 3, 2, 2, 2, 1146, 1148, 9, 23, 2, 2, 1147, 1146, 3, 2, 2, 2, 1148, 300, 3, 2, 2, 2, 1149, 1151, 9, 24, 2, 2, 1150, 1149, 3, 2, 2, 2, 1151, 302, 3, 2, 2, 2, 1152, 1163, 10, 25, 2, 2, 1153, 1163, 5, 309, 155, 2, 1154, 1158, 7, 93, 2, 2, 1155, 1157, 5, 307, 154, 2, 1156, 1155, 3, 2, 2, 2, 1157, 1160, 3, 2, 2, 2, 1158, 1156, 3, 2, 2, 2, 1158, 1159, 3, 2, 2, 2, 1159, 1161, 3, 2, 2, 2, 1160, 1158, 3, 2, 2, 2, 1161, 1163, 7, 95, 2, 2, 1162, 1152, 3, 2, 2, 2, 1162, 1153, 3, 2, 2, 2, 1162, 1154, 3, 2, 2, 2, 1163, 304, 3, 2, 2, 2, 1164, 1175, 10, 26, 2, 2, 1165, 1175, 5, 309, 155, 2, 1166, 1170, 7, 93, 2, 2, 1167, 1169, 5, 307, 154, 2, 1168, 1167, 3, 2, 2, 2, 1169, 1172, 3, 2, 2, 2, 1170, 1168, 3, 2, 2, 2, 1170, 1171, 3, 2, 2, 2, 1171, 1173, 3, 2, 2, 2, 1172, 1170, 3, 2, 2, 2, 1173, 1175, 7, 95, 2, 2, 1174, 1164, 3, 2, 2, 2, 1174, 1165, 3, 2, 2, 2, 1174, 1166, 3, 2, 2, 2, 1175, 306, 3, 2, 2, 2, 1176, 1179, 10, 27, 2, 2, 1177, 1179, 5, 309, 155, 2, 1178, 1176, 3, 2, 2, 2, 1178, 1177, 3, 2, 2, 2, 1179, 308, 3, 2, 2, 2, 1180, 1181, 7, 94, 2, 2, 1181, 1182, 10, 2, 2, 2, 1182, 310, 3, 2, 2, 2, 48, 2, 317, 331, 341, 349, 502, 509, 513, 519, 522, 526, 528, 535, 541, 550, 557, 965, 972, 980, 984, 992, 994, 1002, 1018, 1040, 1057, 1063, 1070, 1074, 1091, 1101, 1113, 1116, 1120, 1125, 1132, 1138, 1141, 1144, 1147, 1150, 1158, 1162, 1170, 1174, 1178, 7, 2, 3, 2, 3, 9, 2, 3, 10, 3, 3, 125, 4, 2, 4, 2] \ No newline at end of file diff --git a/languages/ts/TypeScriptLexer.tokens b/languages/ts/TypeScriptLexer.tokens new file mode 100644 index 0000000..a08de58 --- /dev/null +++ b/languages/ts/TypeScriptLexer.tokens @@ -0,0 +1,243 @@ +MultiLineComment=1 +SingleLineComment=2 +RegularExpressionLiteral=3 +OpenBracket=4 +CloseBracket=5 +OpenParen=6 +CloseParen=7 +OpenBrace=8 +CloseBrace=9 +SemiColon=10 +Comma=11 +Assign=12 +QuestionMark=13 +Colon=14 +Ellipsis=15 +Dot=16 +PlusPlus=17 +MinusMinus=18 +Plus=19 +Minus=20 +BitNot=21 +Not=22 +Multiply=23 +Divide=24 +Modulus=25 +RightShiftArithmetic=26 +LeftShiftArithmetic=27 +RightShiftLogical=28 +LessThan=29 +MoreThan=30 +LessThanEquals=31 +GreaterThanEquals=32 +Equals_=33 +NotEquals=34 +IdentityEquals=35 +IdentityNotEquals=36 +BitAnd=37 +BitXOr=38 +BitOr=39 +And=40 +Or=41 +MultiplyAssign=42 +DivideAssign=43 +ModulusAssign=44 +PlusAssign=45 +MinusAssign=46 +LeftShiftArithmeticAssign=47 +RightShiftArithmeticAssign=48 +RightShiftLogicalAssign=49 +BitAndAssign=50 +BitXorAssign=51 +BitOrAssign=52 +ARROW=53 +NullLiteral=54 +BooleanLiteral=55 +DecimalLiteral=56 +HexIntegerLiteral=57 +OctalIntegerLiteral=58 +OctalIntegerLiteral2=59 +BinaryIntegerLiteral=60 +Break=61 +Do=62 +Instanceof=63 +Typeof=64 +Case=65 +Else=66 +New=67 +Var=68 +Catch=69 +Finally=70 +Return=71 +Void=72 +Continue=73 +For=74 +Switch=75 +While=76 +Debugger=77 +Function=78 +This=79 +With=80 +Default=81 +If=82 +Throw=83 +Delete=84 +In=85 +Try=86 +As=87 +From=88 +ReadOnly=89 +Async=90 +Class=91 +Enum=92 +Extends=93 +Super=94 +Const=95 +Export=96 +Import=97 +Implements=98 +Let=99 +Private=100 +Public=101 +Interface=102 +Package=103 +Protected=104 +Static=105 +Yield=106 +ANY=107 +NUMBER=108 +BOOLEAN=109 +STRING=110 +SYMBOL=111 +Type=112 +Get=113 +Set=114 +Constructor=115 +Namespace=116 +Require=117 +Module=118 +Declare=119 +Abstract=120 +Is=121 +At=122 +Identifier=123 +StringLiteral=124 +TemplateStringLiteral=125 +WhiteSpaces=126 +LineTerminator=127 +HtmlComment=128 +CDataComment=129 +UnexpectedCharacter=130 +'['=4 +']'=5 +'('=6 +')'=7 +'{'=8 +'}'=9 +';'=10 +','=11 +'='=12 +'?'=13 +':'=14 +'...'=15 +'.'=16 +'++'=17 +'--'=18 +'+'=19 +'-'=20 +'~'=21 +'!'=22 +'*'=23 +'/'=24 +'%'=25 +'>>'=26 +'<<'=27 +'>>>'=28 +'<'=29 +'>'=30 +'<='=31 +'>='=32 +'=='=33 +'!='=34 +'==='=35 +'!=='=36 +'&'=37 +'^'=38 +'|'=39 +'&&'=40 +'||'=41 +'*='=42 +'/='=43 +'%='=44 +'+='=45 +'-='=46 +'<<='=47 +'>>='=48 +'>>>='=49 +'&='=50 +'^='=51 +'|='=52 +'=>'=53 +'null'=54 +'break'=61 +'do'=62 +'instanceof'=63 +'typeof'=64 +'case'=65 +'else'=66 +'new'=67 +'var'=68 +'catch'=69 +'finally'=70 +'return'=71 +'void'=72 +'continue'=73 +'for'=74 +'switch'=75 +'while'=76 +'debugger'=77 +'function'=78 +'this'=79 +'with'=80 +'default'=81 +'if'=82 +'throw'=83 +'delete'=84 +'in'=85 +'try'=86 +'as'=87 +'from'=88 +'readonly'=89 +'async'=90 +'class'=91 +'enum'=92 +'extends'=93 +'super'=94 +'const'=95 +'export'=96 +'import'=97 +'implements'=98 +'let'=99 +'private'=100 +'public'=101 +'interface'=102 +'package'=103 +'protected'=104 +'static'=105 +'yield'=106 +'any'=107 +'number'=108 +'boolean'=109 +'string'=110 +'symbol'=111 +'type'=112 +'get '=113 +'set '=114 +'constructor'=115 +'namespace'=116 +'require'=117 +'module'=118 +'declare'=119 +'abstract'=120 +'is'=121 +'@'=122 diff --git a/languages/ts/TypeScriptParser.interp b/languages/ts/TypeScriptParser.interp new file mode 100644 index 0000000..29f744b --- /dev/null +++ b/languages/ts/TypeScriptParser.interp @@ -0,0 +1,409 @@ +token literal names: +null +null +null +null +'[' +']' +'(' +')' +'{' +'}' +';' +',' +'=' +'?' +':' +'...' +'.' +'++' +'--' +'+' +'-' +'~' +'!' +'*' +'/' +'%' +'>>' +'<<' +'>>>' +'<' +'>' +'<=' +'>=' +'==' +'!=' +'===' +'!==' +'&' +'^' +'|' +'&&' +'||' +'*=' +'/=' +'%=' +'+=' +'-=' +'<<=' +'>>=' +'>>>=' +'&=' +'^=' +'|=' +'=>' +'null' +null +null +null +null +null +null +'break' +'do' +'instanceof' +'typeof' +'case' +'else' +'new' +'var' +'catch' +'finally' +'return' +'void' +'continue' +'for' +'switch' +'while' +'debugger' +'function' +'this' +'with' +'default' +'if' +'throw' +'delete' +'in' +'try' +'as' +'from' +'readonly' +'async' +'class' +'enum' +'extends' +'super' +'const' +'export' +'import' +'implements' +'let' +'private' +'public' +'interface' +'package' +'protected' +'static' +'yield' +'any' +'number' +'boolean' +'string' +'symbol' +'type' +'get ' +'set ' +'constructor' +'namespace' +'require' +'module' +'declare' +'abstract' +'is' +'@' +null +null +null +null +null +null +null +null + +token symbolic names: +null +MultiLineComment +SingleLineComment +RegularExpressionLiteral +OpenBracket +CloseBracket +OpenParen +CloseParen +OpenBrace +CloseBrace +SemiColon +Comma +Assign +QuestionMark +Colon +Ellipsis +Dot +PlusPlus +MinusMinus +Plus +Minus +BitNot +Not +Multiply +Divide +Modulus +RightShiftArithmetic +LeftShiftArithmetic +RightShiftLogical +LessThan +MoreThan +LessThanEquals +GreaterThanEquals +Equals_ +NotEquals +IdentityEquals +IdentityNotEquals +BitAnd +BitXOr +BitOr +And +Or +MultiplyAssign +DivideAssign +ModulusAssign +PlusAssign +MinusAssign +LeftShiftArithmeticAssign +RightShiftArithmeticAssign +RightShiftLogicalAssign +BitAndAssign +BitXorAssign +BitOrAssign +ARROW +NullLiteral +BooleanLiteral +DecimalLiteral +HexIntegerLiteral +OctalIntegerLiteral +OctalIntegerLiteral2 +BinaryIntegerLiteral +Break +Do +Instanceof +Typeof +Case +Else +New +Var +Catch +Finally +Return +Void +Continue +For +Switch +While +Debugger +Function +This +With +Default +If +Throw +Delete +In +Try +As +From +ReadOnly +Async +Class +Enum +Extends +Super +Const +Export +Import +Implements +Let +Private +Public +Interface +Package +Protected +Static +Yield +ANY +NUMBER +BOOLEAN +STRING +SYMBOL +Type +Get +Set +Constructor +Namespace +Require +Module +Declare +Abstract +Is +At +Identifier +StringLiteral +TemplateStringLiteral +WhiteSpaces +LineTerminator +HtmlComment +CDataComment +UnexpectedCharacter + +rule names: +initializer +bindingPattern +typeParameters +typeParameterList +typeParameter +constraint +typeArguments +typeArgumentList +typeArgument +type_ +unionOrIntersectionOrPrimaryType +primaryType +predefinedType +typeReference +typeGeneric +typeIncludeGeneric +typeName +objectType +typeBody +typeMemberList +typeMember +arrayType +tupleType +tupleElementTypes +functionType +constructorType +typeQuery +typeQueryExpression +propertySignatur +typeAnnotation +callSignature +parameterList +requiredParameterList +requiredParameter +accessibilityModifier +identifierOrPattern +optionalParameterList +optionalParameter +restParameter +constructSignature +indexSignature +methodSignature +typeAliasDeclaration +constructorDeclaration +interfaceDeclaration +interfaceExtendsClause +classOrInterfaceTypeList +enumDeclaration +enumBody +enumMemberList +enumMember +namespaceDeclaration +namespaceName +importAliasDeclaration +decoratorList +decorator +decoratorMemberExpression +decoratorCallExpression +program +sourceElement +statement +block +statementList +abstractDeclaration +importStatement +fromBlock +multipleImportStatement +exportStatement +variableStatement +variableDeclarationList +variableDeclaration +emptyStatement +expressionStatement +ifStatement +iterationStatement +varModifier +continueStatement +breakStatement +returnStatement +yieldStatement +withStatement +switchStatement +caseBlock +caseClauses +caseClause +defaultClause +labelledStatement +throwStatement +tryStatement +catchProduction +finallyProduction +debuggerStatement +functionDeclaration +classDeclaration +classHeritage +classTail +classExtendsClause +implementsClause +classElement +propertyMemberDeclaration +propertyMemberBase +indexMemberDeclaration +generatorMethod +generatorFunctionDeclaration +generatorBlock +generatorDefinition +iteratorBlock +iteratorDefinition +formalParameterList +formalParameterArg +lastFormalParameterArg +functionBody +sourceElements +arrayLiteral +elementList +lastElement +objectLiteral +propertyAssignment +getAccessor +setAccessor +propertyName +arguments +lastArgument +expressionSequence +functionExpressionDeclaration +singleExpression +arrowFunctionDeclaration +arrowFunctionParameters +arrowFunctionBody +assignmentOperator +literal +numericLiteral +identifierName +reservedWord +keyword +getter +setter +eos + + +atn: +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 132, 1625, 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, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 5, 3, 284, 10, 3, 3, 4, 3, 4, 5, 4, 288, 10, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 7, 5, 295, 10, 5, 12, 5, 14, 5, 298, 11, 5, 3, 6, 3, 6, 5, 6, 302, 10, 6, 3, 6, 5, 6, 305, 10, 6, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 5, 8, 312, 10, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 7, 9, 319, 10, 9, 12, 9, 14, 9, 322, 11, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 331, 10, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 7, 12, 342, 10, 12, 12, 12, 14, 12, 345, 11, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 365, 10, 13, 3, 13, 3, 13, 3, 13, 3, 13, 7, 13, 371, 10, 13, 12, 13, 14, 13, 374, 11, 13, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 5, 15, 381, 10, 15, 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, 17, 5, 17, 396, 10, 17, 3, 18, 3, 18, 5, 18, 400, 10, 18, 3, 19, 3, 19, 5, 19, 404, 10, 19, 3, 19, 3, 19, 3, 20, 3, 20, 5, 20, 410, 10, 20, 3, 21, 3, 21, 3, 21, 7, 21, 415, 10, 21, 12, 21, 14, 21, 418, 11, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 5, 22, 427, 10, 22, 5, 22, 429, 10, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 7, 25, 443, 10, 25, 12, 25, 14, 25, 446, 11, 25, 3, 26, 5, 26, 449, 10, 26, 3, 26, 3, 26, 5, 26, 453, 10, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 5, 27, 461, 10, 27, 3, 27, 3, 27, 5, 27, 465, 10, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 6, 29, 478, 10, 29, 13, 29, 14, 29, 479, 3, 29, 3, 29, 5, 29, 484, 10, 29, 3, 30, 5, 30, 487, 10, 30, 3, 30, 3, 30, 5, 30, 491, 10, 30, 3, 30, 5, 30, 494, 10, 30, 3, 30, 3, 30, 5, 30, 498, 10, 30, 3, 31, 3, 31, 3, 31, 3, 32, 5, 32, 504, 10, 32, 3, 32, 3, 32, 5, 32, 508, 10, 32, 3, 32, 3, 32, 5, 32, 512, 10, 32, 3, 33, 3, 33, 3, 33, 3, 33, 7, 33, 518, 10, 33, 12, 33, 14, 33, 521, 11, 33, 3, 33, 3, 33, 3, 33, 5, 33, 526, 10, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 533, 10, 33, 3, 33, 5, 33, 536, 10, 33, 5, 33, 538, 10, 33, 5, 33, 540, 10, 33, 3, 34, 3, 34, 3, 34, 7, 34, 545, 10, 34, 12, 34, 14, 34, 548, 11, 34, 3, 35, 5, 35, 551, 10, 35, 3, 35, 5, 35, 554, 10, 35, 3, 35, 3, 35, 5, 35, 558, 10, 35, 3, 36, 3, 36, 3, 37, 3, 37, 5, 37, 564, 10, 37, 3, 38, 3, 38, 3, 38, 7, 38, 569, 10, 38, 12, 38, 14, 38, 572, 11, 38, 3, 39, 5, 39, 575, 10, 39, 3, 39, 5, 39, 578, 10, 39, 3, 39, 3, 39, 3, 39, 5, 39, 583, 10, 39, 3, 39, 5, 39, 586, 10, 39, 3, 39, 5, 39, 589, 10, 39, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 5, 41, 596, 10, 41, 3, 41, 3, 41, 5, 41, 600, 10, 41, 3, 41, 3, 41, 5, 41, 604, 10, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 5, 43, 615, 10, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 5, 44, 622, 10, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 5, 45, 629, 10, 45, 3, 45, 3, 45, 3, 45, 5, 45, 634, 10, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 5, 45, 642, 10, 45, 3, 46, 5, 46, 645, 10, 46, 3, 46, 3, 46, 3, 46, 5, 46, 650, 10, 46, 3, 46, 5, 46, 653, 10, 46, 3, 46, 3, 46, 5, 46, 657, 10, 46, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 7, 48, 665, 10, 48, 12, 48, 14, 48, 668, 11, 48, 3, 49, 5, 49, 671, 10, 49, 3, 49, 3, 49, 3, 49, 3, 49, 5, 49, 677, 10, 49, 3, 49, 3, 49, 3, 50, 3, 50, 5, 50, 683, 10, 50, 3, 51, 3, 51, 3, 51, 7, 51, 688, 10, 51, 12, 51, 14, 51, 691, 11, 51, 3, 52, 3, 52, 3, 52, 5, 52, 696, 10, 52, 3, 53, 3, 53, 3, 53, 3, 53, 5, 53, 702, 10, 53, 3, 53, 3, 53, 3, 54, 3, 54, 6, 54, 708, 10, 54, 13, 54, 14, 54, 709, 3, 54, 7, 54, 713, 10, 54, 12, 54, 14, 54, 716, 11, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 6, 56, 724, 10, 56, 13, 56, 14, 56, 725, 3, 57, 3, 57, 3, 57, 5, 57, 731, 10, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 5, 58, 739, 10, 58, 3, 58, 3, 58, 3, 58, 7, 58, 744, 10, 58, 12, 58, 14, 58, 747, 11, 58, 3, 59, 3, 59, 3, 59, 3, 60, 5, 60, 753, 10, 60, 3, 60, 3, 60, 3, 61, 5, 61, 758, 10, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 5, 62, 791, 10, 62, 3, 63, 3, 63, 5, 63, 795, 10, 63, 3, 63, 3, 63, 3, 64, 6, 64, 800, 10, 64, 13, 64, 14, 64, 801, 3, 65, 3, 65, 3, 65, 3, 65, 5, 65, 808, 10, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 5, 66, 815, 10, 66, 3, 67, 3, 67, 5, 67, 819, 10, 67, 3, 67, 3, 67, 5, 67, 823, 10, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 5, 68, 832, 10, 68, 3, 68, 3, 68, 3, 68, 3, 68, 7, 68, 838, 10, 68, 12, 68, 14, 68, 841, 11, 68, 3, 68, 3, 68, 3, 69, 3, 69, 5, 69, 847, 10, 69, 3, 69, 3, 69, 5, 69, 851, 10, 69, 3, 70, 3, 70, 5, 70, 855, 10, 70, 3, 70, 3, 70, 5, 70, 859, 10, 70, 3, 70, 5, 70, 862, 10, 70, 3, 70, 5, 70, 865, 10, 70, 3, 70, 5, 70, 868, 10, 70, 3, 70, 3, 70, 5, 70, 872, 10, 70, 5, 70, 874, 10, 70, 3, 71, 3, 71, 3, 71, 7, 71, 879, 10, 71, 12, 71, 14, 71, 882, 11, 71, 3, 72, 3, 72, 3, 72, 5, 72, 887, 10, 72, 3, 72, 5, 72, 890, 10, 72, 3, 72, 5, 72, 893, 10, 72, 3, 72, 3, 72, 5, 72, 897, 10, 72, 3, 72, 5, 72, 900, 10, 72, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 5, 74, 907, 10, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 5, 75, 916, 10, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 5, 76, 935, 10, 76, 3, 76, 3, 76, 5, 76, 939, 10, 76, 3, 76, 3, 76, 5, 76, 943, 10, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 5, 76, 953, 10, 76, 3, 76, 3, 76, 5, 76, 957, 10, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 5, 76, 968, 10, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 5, 76, 981, 10, 76, 3, 76, 3, 76, 3, 76, 3, 76, 5, 76, 987, 10, 76, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 5, 78, 994, 10, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 5, 79, 1001, 10, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 5, 80, 1008, 10, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 5, 81, 1015, 10, 81, 3, 81, 3, 81, 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, 84, 3, 84, 5, 84, 1033, 10, 84, 3, 84, 3, 84, 5, 84, 1037, 10, 84, 5, 84, 1039, 10, 84, 3, 84, 3, 84, 3, 85, 6, 85, 1044, 10, 85, 13, 85, 14, 85, 1045, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 1052, 10, 86, 3, 87, 3, 87, 3, 87, 5, 87, 1057, 10, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 5, 90, 1072, 10, 90, 3, 90, 5, 90, 1075, 10, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 5, 94, 1097, 10, 94, 3, 95, 5, 95, 1100, 10, 95, 3, 95, 3, 95, 3, 95, 5, 95, 1105, 10, 95, 3, 95, 3, 95, 3, 95, 3, 96, 5, 96, 1111, 10, 96, 3, 96, 5, 96, 1114, 10, 96, 3, 97, 3, 97, 7, 97, 1118, 10, 97, 12, 97, 14, 97, 1121, 11, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 5, 100, 1135, 10, 100, 3, 101, 3, 101, 3, 101, 5, 101, 1140, 10, 101, 3, 101, 5, 101, 1143, 10, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 5, 101, 1155, 10, 101, 3, 101, 3, 101, 3, 101, 5, 101, 1160, 10, 101, 3, 101, 5, 101, 1163, 10, 101, 3, 102, 5, 102, 1166, 10, 102, 3, 102, 5, 102, 1169, 10, 102, 3, 102, 5, 102, 1172, 10, 102, 3, 102, 5, 102, 1175, 10, 102, 3, 103, 3, 103, 3, 103, 3, 104, 5, 104, 1181, 10, 104, 3, 104, 3, 104, 3, 104, 5, 104, 1186, 10, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 5, 105, 1196, 10, 105, 3, 105, 3, 105, 5, 105, 1200, 10, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 7, 106, 1211, 10, 106, 12, 106, 14, 106, 1214, 11, 106, 3, 106, 5, 106, 1217, 10, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 7, 108, 1228, 10, 108, 12, 108, 14, 108, 1231, 11, 108, 3, 108, 5, 108, 1234, 10, 108, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 5, 109, 1243, 10, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 7, 110, 1253, 10, 110, 12, 110, 14, 110, 1256, 11, 110, 3, 110, 3, 110, 5, 110, 1260, 10, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 5, 110, 1267, 10, 110, 5, 110, 1269, 10, 110, 3, 111, 5, 111, 1272, 10, 111, 3, 111, 3, 111, 5, 111, 1276, 10, 111, 3, 111, 3, 111, 5, 111, 1280, 10, 111, 3, 112, 3, 112, 3, 112, 3, 113, 5, 113, 1286, 10, 113, 3, 114, 6, 114, 1289, 10, 114, 13, 114, 14, 114, 1290, 3, 115, 3, 115, 5, 115, 1295, 10, 115, 3, 115, 3, 115, 3, 116, 3, 116, 6, 116, 1301, 10, 116, 13, 116, 14, 116, 1302, 3, 116, 7, 116, 1306, 10, 116, 12, 116, 14, 116, 1309, 11, 116, 3, 116, 6, 116, 1312, 10, 116, 13, 116, 14, 116, 1313, 3, 116, 5, 116, 1317, 10, 116, 3, 116, 5, 116, 1320, 10, 116, 3, 117, 3, 117, 3, 117, 5, 117, 1325, 10, 117, 3, 118, 3, 118, 3, 118, 3, 118, 7, 118, 1331, 10, 118, 12, 118, 14, 118, 1334, 11, 118, 5, 118, 1336, 10, 118, 3, 118, 5, 118, 1339, 10, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 5, 119, 1358, 10, 119, 3, 120, 3, 120, 3, 120, 3, 120, 5, 120, 1364, 10, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 5, 121, 1374, 10, 121, 3, 121, 5, 121, 1377, 10, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 5, 122, 1387, 10, 122, 3, 123, 3, 123, 3, 123, 3, 123, 7, 123, 1393, 10, 123, 12, 123, 14, 123, 1396, 11, 123, 3, 123, 3, 123, 5, 123, 1400, 10, 123, 3, 123, 5, 123, 1403, 10, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 7, 125, 1413, 10, 125, 12, 125, 14, 125, 1416, 11, 125, 3, 126, 3, 126, 5, 126, 1420, 10, 126, 3, 126, 3, 126, 5, 126, 1424, 10, 126, 3, 126, 3, 126, 5, 126, 1428, 10, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 5, 127, 1439, 10, 127, 3, 127, 3, 127, 3, 127, 3, 127, 5, 127, 1445, 10, 127, 3, 127, 5, 127, 1448, 10, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 5, 127, 1475, 10, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 5, 127, 1487, 10, 127, 5, 127, 1489, 10, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 7, 127, 1558, 10, 127, 12, 127, 14, 127, 1561, 11, 127, 3, 128, 5, 128, 1564, 10, 128, 3, 128, 3, 128, 5, 128, 1568, 10, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 5, 129, 1576, 10, 129, 3, 129, 5, 129, 1579, 10, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 5, 130, 1586, 10, 130, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 5, 132, 1596, 10, 132, 3, 133, 3, 133, 3, 134, 3, 134, 5, 134, 1602, 10, 134, 3, 135, 3, 135, 3, 135, 5, 135, 1607, 10, 135, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 5, 139, 1623, 10, 139, 3, 139, 2, 6, 22, 24, 114, 252, 140, 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, 274, 276, 2, 16, 4, 2, 74, 74, 109, 113, 3, 2, 12, 13, 4, 2, 102, 103, 106, 106, 4, 2, 110, 110, 112, 112, 5, 2, 70, 70, 97, 97, 101, 101, 4, 2, 14, 14, 16, 16, 3, 2, 25, 27, 3, 2, 21, 22, 3, 2, 28, 30, 3, 2, 31, 34, 3, 2, 35, 38, 3, 2, 44, 54, 3, 2, 58, 62, 4, 2, 63, 88, 90, 108, 2, 1792, 2, 278, 3, 2, 2, 2, 4, 283, 3, 2, 2, 2, 6, 285, 3, 2, 2, 2, 8, 291, 3, 2, 2, 2, 10, 304, 3, 2, 2, 2, 12, 306, 3, 2, 2, 2, 14, 309, 3, 2, 2, 2, 16, 315, 3, 2, 2, 2, 18, 323, 3, 2, 2, 2, 20, 330, 3, 2, 2, 2, 22, 332, 3, 2, 2, 2, 24, 364, 3, 2, 2, 2, 26, 375, 3, 2, 2, 2, 28, 377, 3, 2, 2, 2, 30, 382, 3, 2, 2, 2, 32, 386, 3, 2, 2, 2, 34, 399, 3, 2, 2, 2, 36, 401, 3, 2, 2, 2, 38, 407, 3, 2, 2, 2, 40, 411, 3, 2, 2, 2, 42, 428, 3, 2, 2, 2, 44, 430, 3, 2, 2, 2, 46, 435, 3, 2, 2, 2, 48, 439, 3, 2, 2, 2, 50, 448, 3, 2, 2, 2, 52, 458, 3, 2, 2, 2, 54, 470, 3, 2, 2, 2, 56, 483, 3, 2, 2, 2, 58, 486, 3, 2, 2, 2, 60, 499, 3, 2, 2, 2, 62, 503, 3, 2, 2, 2, 64, 539, 3, 2, 2, 2, 66, 541, 3, 2, 2, 2, 68, 550, 3, 2, 2, 2, 70, 559, 3, 2, 2, 2, 72, 563, 3, 2, 2, 2, 74, 565, 3, 2, 2, 2, 76, 574, 3, 2, 2, 2, 78, 590, 3, 2, 2, 2, 80, 593, 3, 2, 2, 2, 82, 605, 3, 2, 2, 2, 84, 612, 3, 2, 2, 2, 86, 618, 3, 2, 2, 2, 88, 628, 3, 2, 2, 2, 90, 644, 3, 2, 2, 2, 92, 658, 3, 2, 2, 2, 94, 661, 3, 2, 2, 2, 96, 670, 3, 2, 2, 2, 98, 680, 3, 2, 2, 2, 100, 684, 3, 2, 2, 2, 102, 692, 3, 2, 2, 2, 104, 697, 3, 2, 2, 2, 106, 705, 3, 2, 2, 2, 108, 717, 3, 2, 2, 2, 110, 723, 3, 2, 2, 2, 112, 727, 3, 2, 2, 2, 114, 738, 3, 2, 2, 2, 116, 748, 3, 2, 2, 2, 118, 752, 3, 2, 2, 2, 120, 757, 3, 2, 2, 2, 122, 790, 3, 2, 2, 2, 124, 792, 3, 2, 2, 2, 126, 799, 3, 2, 2, 2, 128, 803, 3, 2, 2, 2, 130, 811, 3, 2, 2, 2, 132, 818, 3, 2, 2, 2, 134, 831, 3, 2, 2, 2, 136, 844, 3, 2, 2, 2, 138, 873, 3, 2, 2, 2, 140, 875, 3, 2, 2, 2, 142, 886, 3, 2, 2, 2, 144, 901, 3, 2, 2, 2, 146, 903, 3, 2, 2, 2, 148, 908, 3, 2, 2, 2, 150, 986, 3, 2, 2, 2, 152, 988, 3, 2, 2, 2, 154, 990, 3, 2, 2, 2, 156, 997, 3, 2, 2, 2, 158, 1004, 3, 2, 2, 2, 160, 1011, 3, 2, 2, 2, 162, 1018, 3, 2, 2, 2, 164, 1024, 3, 2, 2, 2, 166, 1030, 3, 2, 2, 2, 168, 1043, 3, 2, 2, 2, 170, 1047, 3, 2, 2, 2, 172, 1053, 3, 2, 2, 2, 174, 1058, 3, 2, 2, 2, 176, 1062, 3, 2, 2, 2, 178, 1067, 3, 2, 2, 2, 180, 1076, 3, 2, 2, 2, 182, 1082, 3, 2, 2, 2, 184, 1085, 3, 2, 2, 2, 186, 1088, 3, 2, 2, 2, 188, 1099, 3, 2, 2, 2, 190, 1110, 3, 2, 2, 2, 192, 1115, 3, 2, 2, 2, 194, 1124, 3, 2, 2, 2, 196, 1127, 3, 2, 2, 2, 198, 1134, 3, 2, 2, 2, 200, 1162, 3, 2, 2, 2, 202, 1165, 3, 2, 2, 2, 204, 1176, 3, 2, 2, 2, 206, 1180, 3, 2, 2, 2, 208, 1192, 3, 2, 2, 2, 210, 1206, 3, 2, 2, 2, 212, 1220, 3, 2, 2, 2, 214, 1223, 3, 2, 2, 2, 216, 1237, 3, 2, 2, 2, 218, 1268, 3, 2, 2, 2, 220, 1271, 3, 2, 2, 2, 222, 1281, 3, 2, 2, 2, 224, 1285, 3, 2, 2, 2, 226, 1288, 3, 2, 2, 2, 228, 1292, 3, 2, 2, 2, 230, 1319, 3, 2, 2, 2, 232, 1321, 3, 2, 2, 2, 234, 1326, 3, 2, 2, 2, 236, 1357, 3, 2, 2, 2, 238, 1359, 3, 2, 2, 2, 240, 1369, 3, 2, 2, 2, 242, 1386, 3, 2, 2, 2, 244, 1388, 3, 2, 2, 2, 246, 1406, 3, 2, 2, 2, 248, 1409, 3, 2, 2, 2, 250, 1417, 3, 2, 2, 2, 252, 1488, 3, 2, 2, 2, 254, 1563, 3, 2, 2, 2, 256, 1578, 3, 2, 2, 2, 258, 1585, 3, 2, 2, 2, 260, 1587, 3, 2, 2, 2, 262, 1595, 3, 2, 2, 2, 264, 1597, 3, 2, 2, 2, 266, 1601, 3, 2, 2, 2, 268, 1606, 3, 2, 2, 2, 270, 1608, 3, 2, 2, 2, 272, 1610, 3, 2, 2, 2, 274, 1614, 3, 2, 2, 2, 276, 1622, 3, 2, 2, 2, 278, 279, 7, 14, 2, 2, 279, 280, 5, 252, 127, 2, 280, 3, 3, 2, 2, 2, 281, 284, 5, 228, 115, 2, 282, 284, 5, 234, 118, 2, 283, 281, 3, 2, 2, 2, 283, 282, 3, 2, 2, 2, 284, 5, 3, 2, 2, 2, 285, 287, 7, 31, 2, 2, 286, 288, 5, 8, 5, 2, 287, 286, 3, 2, 2, 2, 287, 288, 3, 2, 2, 2, 288, 289, 3, 2, 2, 2, 289, 290, 7, 32, 2, 2, 290, 7, 3, 2, 2, 2, 291, 296, 5, 10, 6, 2, 292, 293, 7, 13, 2, 2, 293, 295, 5, 10, 6, 2, 294, 292, 3, 2, 2, 2, 295, 298, 3, 2, 2, 2, 296, 294, 3, 2, 2, 2, 296, 297, 3, 2, 2, 2, 297, 9, 3, 2, 2, 2, 298, 296, 3, 2, 2, 2, 299, 301, 7, 125, 2, 2, 300, 302, 5, 12, 7, 2, 301, 300, 3, 2, 2, 2, 301, 302, 3, 2, 2, 2, 302, 305, 3, 2, 2, 2, 303, 305, 5, 6, 4, 2, 304, 299, 3, 2, 2, 2, 304, 303, 3, 2, 2, 2, 305, 11, 3, 2, 2, 2, 306, 307, 7, 95, 2, 2, 307, 308, 5, 20, 11, 2, 308, 13, 3, 2, 2, 2, 309, 311, 7, 31, 2, 2, 310, 312, 5, 16, 9, 2, 311, 310, 3, 2, 2, 2, 311, 312, 3, 2, 2, 2, 312, 313, 3, 2, 2, 2, 313, 314, 7, 32, 2, 2, 314, 15, 3, 2, 2, 2, 315, 320, 5, 18, 10, 2, 316, 317, 7, 13, 2, 2, 317, 319, 5, 18, 10, 2, 318, 316, 3, 2, 2, 2, 319, 322, 3, 2, 2, 2, 320, 318, 3, 2, 2, 2, 320, 321, 3, 2, 2, 2, 321, 17, 3, 2, 2, 2, 322, 320, 3, 2, 2, 2, 323, 324, 5, 20, 11, 2, 324, 19, 3, 2, 2, 2, 325, 331, 5, 22, 12, 2, 326, 331, 5, 50, 26, 2, 327, 331, 5, 52, 27, 2, 328, 331, 5, 30, 16, 2, 329, 331, 7, 126, 2, 2, 330, 325, 3, 2, 2, 2, 330, 326, 3, 2, 2, 2, 330, 327, 3, 2, 2, 2, 330, 328, 3, 2, 2, 2, 330, 329, 3, 2, 2, 2, 331, 21, 3, 2, 2, 2, 332, 333, 8, 12, 1, 2, 333, 334, 5, 24, 13, 2, 334, 343, 3, 2, 2, 2, 335, 336, 12, 5, 2, 2, 336, 337, 7, 41, 2, 2, 337, 342, 5, 22, 12, 6, 338, 339, 12, 4, 2, 2, 339, 340, 7, 39, 2, 2, 340, 342, 5, 22, 12, 5, 341, 335, 3, 2, 2, 2, 341, 338, 3, 2, 2, 2, 342, 345, 3, 2, 2, 2, 343, 341, 3, 2, 2, 2, 343, 344, 3, 2, 2, 2, 344, 23, 3, 2, 2, 2, 345, 343, 3, 2, 2, 2, 346, 347, 8, 13, 1, 2, 347, 348, 7, 8, 2, 2, 348, 349, 5, 20, 11, 2, 349, 350, 7, 9, 2, 2, 350, 365, 3, 2, 2, 2, 351, 365, 5, 26, 14, 2, 352, 365, 5, 28, 15, 2, 353, 365, 5, 36, 19, 2, 354, 355, 7, 6, 2, 2, 355, 356, 5, 48, 25, 2, 356, 357, 7, 7, 2, 2, 357, 365, 3, 2, 2, 2, 358, 365, 5, 54, 28, 2, 359, 365, 7, 81, 2, 2, 360, 361, 5, 28, 15, 2, 361, 362, 7, 123, 2, 2, 362, 363, 5, 24, 13, 3, 363, 365, 3, 2, 2, 2, 364, 346, 3, 2, 2, 2, 364, 351, 3, 2, 2, 2, 364, 352, 3, 2, 2, 2, 364, 353, 3, 2, 2, 2, 364, 354, 3, 2, 2, 2, 364, 358, 3, 2, 2, 2, 364, 359, 3, 2, 2, 2, 364, 360, 3, 2, 2, 2, 365, 372, 3, 2, 2, 2, 366, 367, 12, 7, 2, 2, 367, 368, 6, 13, 5, 2, 368, 369, 7, 6, 2, 2, 369, 371, 7, 7, 2, 2, 370, 366, 3, 2, 2, 2, 371, 374, 3, 2, 2, 2, 372, 370, 3, 2, 2, 2, 372, 373, 3, 2, 2, 2, 373, 25, 3, 2, 2, 2, 374, 372, 3, 2, 2, 2, 375, 376, 9, 2, 2, 2, 376, 27, 3, 2, 2, 2, 377, 380, 5, 34, 18, 2, 378, 381, 5, 32, 17, 2, 379, 381, 5, 30, 16, 2, 380, 378, 3, 2, 2, 2, 380, 379, 3, 2, 2, 2, 380, 381, 3, 2, 2, 2, 381, 29, 3, 2, 2, 2, 382, 383, 7, 31, 2, 2, 383, 384, 5, 16, 9, 2, 384, 385, 7, 32, 2, 2, 385, 31, 3, 2, 2, 2, 386, 387, 7, 31, 2, 2, 387, 388, 5, 16, 9, 2, 388, 389, 7, 31, 2, 2, 389, 395, 5, 16, 9, 2, 390, 391, 7, 32, 2, 2, 391, 392, 5, 4, 3, 2, 392, 393, 7, 32, 2, 2, 393, 396, 3, 2, 2, 2, 394, 396, 7, 28, 2, 2, 395, 390, 3, 2, 2, 2, 395, 394, 3, 2, 2, 2, 396, 33, 3, 2, 2, 2, 397, 400, 7, 125, 2, 2, 398, 400, 5, 106, 54, 2, 399, 397, 3, 2, 2, 2, 399, 398, 3, 2, 2, 2, 400, 35, 3, 2, 2, 2, 401, 403, 7, 10, 2, 2, 402, 404, 5, 38, 20, 2, 403, 402, 3, 2, 2, 2, 403, 404, 3, 2, 2, 2, 404, 405, 3, 2, 2, 2, 405, 406, 7, 11, 2, 2, 406, 37, 3, 2, 2, 2, 407, 409, 5, 40, 21, 2, 408, 410, 9, 3, 2, 2, 409, 408, 3, 2, 2, 2, 409, 410, 3, 2, 2, 2, 410, 39, 3, 2, 2, 2, 411, 416, 5, 42, 22, 2, 412, 413, 9, 3, 2, 2, 413, 415, 5, 42, 22, 2, 414, 412, 3, 2, 2, 2, 415, 418, 3, 2, 2, 2, 416, 414, 3, 2, 2, 2, 416, 417, 3, 2, 2, 2, 417, 41, 3, 2, 2, 2, 418, 416, 3, 2, 2, 2, 419, 429, 5, 58, 30, 2, 420, 429, 5, 62, 32, 2, 421, 429, 5, 80, 41, 2, 422, 429, 5, 82, 42, 2, 423, 426, 5, 84, 43, 2, 424, 425, 7, 55, 2, 2, 425, 427, 5, 20, 11, 2, 426, 424, 3, 2, 2, 2, 426, 427, 3, 2, 2, 2, 427, 429, 3, 2, 2, 2, 428, 419, 3, 2, 2, 2, 428, 420, 3, 2, 2, 2, 428, 421, 3, 2, 2, 2, 428, 422, 3, 2, 2, 2, 428, 423, 3, 2, 2, 2, 429, 43, 3, 2, 2, 2, 430, 431, 5, 24, 13, 2, 431, 432, 6, 23, 6, 2, 432, 433, 7, 6, 2, 2, 433, 434, 7, 7, 2, 2, 434, 45, 3, 2, 2, 2, 435, 436, 7, 6, 2, 2, 436, 437, 5, 48, 25, 2, 437, 438, 7, 7, 2, 2, 438, 47, 3, 2, 2, 2, 439, 444, 5, 20, 11, 2, 440, 441, 7, 13, 2, 2, 441, 443, 5, 20, 11, 2, 442, 440, 3, 2, 2, 2, 443, 446, 3, 2, 2, 2, 444, 442, 3, 2, 2, 2, 444, 445, 3, 2, 2, 2, 445, 49, 3, 2, 2, 2, 446, 444, 3, 2, 2, 2, 447, 449, 5, 6, 4, 2, 448, 447, 3, 2, 2, 2, 448, 449, 3, 2, 2, 2, 449, 450, 3, 2, 2, 2, 450, 452, 7, 8, 2, 2, 451, 453, 5, 64, 33, 2, 452, 451, 3, 2, 2, 2, 452, 453, 3, 2, 2, 2, 453, 454, 3, 2, 2, 2, 454, 455, 7, 9, 2, 2, 455, 456, 7, 55, 2, 2, 456, 457, 5, 20, 11, 2, 457, 51, 3, 2, 2, 2, 458, 460, 7, 69, 2, 2, 459, 461, 5, 6, 4, 2, 460, 459, 3, 2, 2, 2, 460, 461, 3, 2, 2, 2, 461, 462, 3, 2, 2, 2, 462, 464, 7, 8, 2, 2, 463, 465, 5, 64, 33, 2, 464, 463, 3, 2, 2, 2, 464, 465, 3, 2, 2, 2, 465, 466, 3, 2, 2, 2, 466, 467, 7, 9, 2, 2, 467, 468, 7, 55, 2, 2, 468, 469, 5, 20, 11, 2, 469, 53, 3, 2, 2, 2, 470, 471, 7, 66, 2, 2, 471, 472, 5, 56, 29, 2, 472, 55, 3, 2, 2, 2, 473, 484, 7, 125, 2, 2, 474, 475, 5, 266, 134, 2, 475, 476, 7, 18, 2, 2, 476, 478, 3, 2, 2, 2, 477, 474, 3, 2, 2, 2, 478, 479, 3, 2, 2, 2, 479, 477, 3, 2, 2, 2, 479, 480, 3, 2, 2, 2, 480, 481, 3, 2, 2, 2, 481, 482, 5, 266, 134, 2, 482, 484, 3, 2, 2, 2, 483, 473, 3, 2, 2, 2, 483, 477, 3, 2, 2, 2, 484, 57, 3, 2, 2, 2, 485, 487, 7, 91, 2, 2, 486, 485, 3, 2, 2, 2, 486, 487, 3, 2, 2, 2, 487, 488, 3, 2, 2, 2, 488, 490, 5, 242, 122, 2, 489, 491, 7, 15, 2, 2, 490, 489, 3, 2, 2, 2, 490, 491, 3, 2, 2, 2, 491, 493, 3, 2, 2, 2, 492, 494, 5, 60, 31, 2, 493, 492, 3, 2, 2, 2, 493, 494, 3, 2, 2, 2, 494, 497, 3, 2, 2, 2, 495, 496, 7, 55, 2, 2, 496, 498, 5, 20, 11, 2, 497, 495, 3, 2, 2, 2, 497, 498, 3, 2, 2, 2, 498, 59, 3, 2, 2, 2, 499, 500, 7, 16, 2, 2, 500, 501, 5, 20, 11, 2, 501, 61, 3, 2, 2, 2, 502, 504, 5, 6, 4, 2, 503, 502, 3, 2, 2, 2, 503, 504, 3, 2, 2, 2, 504, 505, 3, 2, 2, 2, 505, 507, 7, 8, 2, 2, 506, 508, 5, 64, 33, 2, 507, 506, 3, 2, 2, 2, 507, 508, 3, 2, 2, 2, 508, 509, 3, 2, 2, 2, 509, 511, 7, 9, 2, 2, 510, 512, 5, 60, 31, 2, 511, 510, 3, 2, 2, 2, 511, 512, 3, 2, 2, 2, 512, 63, 3, 2, 2, 2, 513, 540, 5, 78, 40, 2, 514, 519, 5, 26, 14, 2, 515, 516, 7, 13, 2, 2, 516, 518, 5, 26, 14, 2, 517, 515, 3, 2, 2, 2, 518, 521, 3, 2, 2, 2, 519, 517, 3, 2, 2, 2, 519, 520, 3, 2, 2, 2, 520, 540, 3, 2, 2, 2, 521, 519, 3, 2, 2, 2, 522, 525, 5, 74, 38, 2, 523, 524, 7, 13, 2, 2, 524, 526, 5, 78, 40, 2, 525, 523, 3, 2, 2, 2, 525, 526, 3, 2, 2, 2, 526, 540, 3, 2, 2, 2, 527, 537, 5, 66, 34, 2, 528, 535, 7, 13, 2, 2, 529, 532, 5, 74, 38, 2, 530, 531, 7, 13, 2, 2, 531, 533, 5, 78, 40, 2, 532, 530, 3, 2, 2, 2, 532, 533, 3, 2, 2, 2, 533, 536, 3, 2, 2, 2, 534, 536, 5, 78, 40, 2, 535, 529, 3, 2, 2, 2, 535, 534, 3, 2, 2, 2, 536, 538, 3, 2, 2, 2, 537, 528, 3, 2, 2, 2, 537, 538, 3, 2, 2, 2, 538, 540, 3, 2, 2, 2, 539, 513, 3, 2, 2, 2, 539, 514, 3, 2, 2, 2, 539, 522, 3, 2, 2, 2, 539, 527, 3, 2, 2, 2, 540, 65, 3, 2, 2, 2, 541, 546, 5, 68, 35, 2, 542, 543, 7, 13, 2, 2, 543, 545, 5, 68, 35, 2, 544, 542, 3, 2, 2, 2, 545, 548, 3, 2, 2, 2, 546, 544, 3, 2, 2, 2, 546, 547, 3, 2, 2, 2, 547, 67, 3, 2, 2, 2, 548, 546, 3, 2, 2, 2, 549, 551, 5, 110, 56, 2, 550, 549, 3, 2, 2, 2, 550, 551, 3, 2, 2, 2, 551, 553, 3, 2, 2, 2, 552, 554, 5, 70, 36, 2, 553, 552, 3, 2, 2, 2, 553, 554, 3, 2, 2, 2, 554, 555, 3, 2, 2, 2, 555, 557, 5, 72, 37, 2, 556, 558, 5, 60, 31, 2, 557, 556, 3, 2, 2, 2, 557, 558, 3, 2, 2, 2, 558, 69, 3, 2, 2, 2, 559, 560, 9, 4, 2, 2, 560, 71, 3, 2, 2, 2, 561, 564, 5, 266, 134, 2, 562, 564, 5, 4, 3, 2, 563, 561, 3, 2, 2, 2, 563, 562, 3, 2, 2, 2, 564, 73, 3, 2, 2, 2, 565, 570, 5, 76, 39, 2, 566, 567, 7, 13, 2, 2, 567, 569, 5, 76, 39, 2, 568, 566, 3, 2, 2, 2, 569, 572, 3, 2, 2, 2, 570, 568, 3, 2, 2, 2, 570, 571, 3, 2, 2, 2, 571, 75, 3, 2, 2, 2, 572, 570, 3, 2, 2, 2, 573, 575, 5, 110, 56, 2, 574, 573, 3, 2, 2, 2, 574, 575, 3, 2, 2, 2, 575, 577, 3, 2, 2, 2, 576, 578, 5, 70, 36, 2, 577, 576, 3, 2, 2, 2, 577, 578, 3, 2, 2, 2, 578, 579, 3, 2, 2, 2, 579, 588, 5, 72, 37, 2, 580, 582, 7, 15, 2, 2, 581, 583, 5, 60, 31, 2, 582, 581, 3, 2, 2, 2, 582, 583, 3, 2, 2, 2, 583, 589, 3, 2, 2, 2, 584, 586, 5, 60, 31, 2, 585, 584, 3, 2, 2, 2, 585, 586, 3, 2, 2, 2, 586, 587, 3, 2, 2, 2, 587, 589, 5, 2, 2, 2, 588, 580, 3, 2, 2, 2, 588, 585, 3, 2, 2, 2, 589, 77, 3, 2, 2, 2, 590, 591, 7, 17, 2, 2, 591, 592, 5, 252, 127, 2, 592, 79, 3, 2, 2, 2, 593, 595, 7, 69, 2, 2, 594, 596, 5, 6, 4, 2, 595, 594, 3, 2, 2, 2, 595, 596, 3, 2, 2, 2, 596, 597, 3, 2, 2, 2, 597, 599, 7, 8, 2, 2, 598, 600, 5, 64, 33, 2, 599, 598, 3, 2, 2, 2, 599, 600, 3, 2, 2, 2, 600, 601, 3, 2, 2, 2, 601, 603, 7, 9, 2, 2, 602, 604, 5, 60, 31, 2, 603, 602, 3, 2, 2, 2, 603, 604, 3, 2, 2, 2, 604, 81, 3, 2, 2, 2, 605, 606, 7, 6, 2, 2, 606, 607, 7, 125, 2, 2, 607, 608, 7, 16, 2, 2, 608, 609, 9, 5, 2, 2, 609, 610, 7, 7, 2, 2, 610, 611, 5, 60, 31, 2, 611, 83, 3, 2, 2, 2, 612, 614, 5, 242, 122, 2, 613, 615, 7, 15, 2, 2, 614, 613, 3, 2, 2, 2, 614, 615, 3, 2, 2, 2, 615, 616, 3, 2, 2, 2, 616, 617, 5, 62, 32, 2, 617, 85, 3, 2, 2, 2, 618, 619, 7, 114, 2, 2, 619, 621, 7, 125, 2, 2, 620, 622, 5, 6, 4, 2, 621, 620, 3, 2, 2, 2, 621, 622, 3, 2, 2, 2, 622, 623, 3, 2, 2, 2, 623, 624, 7, 14, 2, 2, 624, 625, 5, 20, 11, 2, 625, 626, 7, 12, 2, 2, 626, 87, 3, 2, 2, 2, 627, 629, 5, 70, 36, 2, 628, 627, 3, 2, 2, 2, 628, 629, 3, 2, 2, 2, 629, 630, 3, 2, 2, 2, 630, 631, 7, 117, 2, 2, 631, 633, 7, 8, 2, 2, 632, 634, 5, 218, 110, 2, 633, 632, 3, 2, 2, 2, 633, 634, 3, 2, 2, 2, 634, 635, 3, 2, 2, 2, 635, 641, 7, 9, 2, 2, 636, 637, 7, 10, 2, 2, 637, 638, 5, 224, 113, 2, 638, 639, 7, 11, 2, 2, 639, 642, 3, 2, 2, 2, 640, 642, 7, 12, 2, 2, 641, 636, 3, 2, 2, 2, 641, 640, 3, 2, 2, 2, 641, 642, 3, 2, 2, 2, 642, 89, 3, 2, 2, 2, 643, 645, 7, 98, 2, 2, 644, 643, 3, 2, 2, 2, 644, 645, 3, 2, 2, 2, 645, 646, 3, 2, 2, 2, 646, 647, 7, 104, 2, 2, 647, 649, 7, 125, 2, 2, 648, 650, 5, 6, 4, 2, 649, 648, 3, 2, 2, 2, 649, 650, 3, 2, 2, 2, 650, 652, 3, 2, 2, 2, 651, 653, 5, 92, 47, 2, 652, 651, 3, 2, 2, 2, 652, 653, 3, 2, 2, 2, 653, 654, 3, 2, 2, 2, 654, 656, 5, 36, 19, 2, 655, 657, 7, 12, 2, 2, 656, 655, 3, 2, 2, 2, 656, 657, 3, 2, 2, 2, 657, 91, 3, 2, 2, 2, 658, 659, 7, 95, 2, 2, 659, 660, 5, 94, 48, 2, 660, 93, 3, 2, 2, 2, 661, 666, 5, 28, 15, 2, 662, 663, 7, 13, 2, 2, 663, 665, 5, 28, 15, 2, 664, 662, 3, 2, 2, 2, 665, 668, 3, 2, 2, 2, 666, 664, 3, 2, 2, 2, 666, 667, 3, 2, 2, 2, 667, 95, 3, 2, 2, 2, 668, 666, 3, 2, 2, 2, 669, 671, 7, 97, 2, 2, 670, 669, 3, 2, 2, 2, 670, 671, 3, 2, 2, 2, 671, 672, 3, 2, 2, 2, 672, 673, 7, 94, 2, 2, 673, 674, 7, 125, 2, 2, 674, 676, 7, 10, 2, 2, 675, 677, 5, 98, 50, 2, 676, 675, 3, 2, 2, 2, 676, 677, 3, 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 679, 7, 11, 2, 2, 679, 97, 3, 2, 2, 2, 680, 682, 5, 100, 51, 2, 681, 683, 7, 13, 2, 2, 682, 681, 3, 2, 2, 2, 682, 683, 3, 2, 2, 2, 683, 99, 3, 2, 2, 2, 684, 689, 5, 102, 52, 2, 685, 686, 7, 13, 2, 2, 686, 688, 5, 102, 52, 2, 687, 685, 3, 2, 2, 2, 688, 691, 3, 2, 2, 2, 689, 687, 3, 2, 2, 2, 689, 690, 3, 2, 2, 2, 690, 101, 3, 2, 2, 2, 691, 689, 3, 2, 2, 2, 692, 695, 5, 242, 122, 2, 693, 694, 7, 14, 2, 2, 694, 696, 5, 252, 127, 2, 695, 693, 3, 2, 2, 2, 695, 696, 3, 2, 2, 2, 696, 103, 3, 2, 2, 2, 697, 698, 7, 118, 2, 2, 698, 699, 5, 106, 54, 2, 699, 701, 7, 10, 2, 2, 700, 702, 5, 126, 64, 2, 701, 700, 3, 2, 2, 2, 701, 702, 3, 2, 2, 2, 702, 703, 3, 2, 2, 2, 703, 704, 7, 11, 2, 2, 704, 105, 3, 2, 2, 2, 705, 714, 7, 125, 2, 2, 706, 708, 7, 18, 2, 2, 707, 706, 3, 2, 2, 2, 708, 709, 3, 2, 2, 2, 709, 707, 3, 2, 2, 2, 709, 710, 3, 2, 2, 2, 710, 711, 3, 2, 2, 2, 711, 713, 7, 125, 2, 2, 712, 707, 3, 2, 2, 2, 713, 716, 3, 2, 2, 2, 714, 712, 3, 2, 2, 2, 714, 715, 3, 2, 2, 2, 715, 107, 3, 2, 2, 2, 716, 714, 3, 2, 2, 2, 717, 718, 7, 125, 2, 2, 718, 719, 7, 14, 2, 2, 719, 720, 5, 106, 54, 2, 720, 721, 7, 12, 2, 2, 721, 109, 3, 2, 2, 2, 722, 724, 5, 112, 57, 2, 723, 722, 3, 2, 2, 2, 724, 725, 3, 2, 2, 2, 725, 723, 3, 2, 2, 2, 725, 726, 3, 2, 2, 2, 726, 111, 3, 2, 2, 2, 727, 730, 7, 124, 2, 2, 728, 731, 5, 114, 58, 2, 729, 731, 5, 116, 59, 2, 730, 728, 3, 2, 2, 2, 730, 729, 3, 2, 2, 2, 731, 113, 3, 2, 2, 2, 732, 733, 8, 58, 1, 2, 733, 739, 7, 125, 2, 2, 734, 735, 7, 8, 2, 2, 735, 736, 5, 252, 127, 2, 736, 737, 7, 9, 2, 2, 737, 739, 3, 2, 2, 2, 738, 732, 3, 2, 2, 2, 738, 734, 3, 2, 2, 2, 739, 745, 3, 2, 2, 2, 740, 741, 12, 4, 2, 2, 741, 742, 7, 18, 2, 2, 742, 744, 5, 266, 134, 2, 743, 740, 3, 2, 2, 2, 744, 747, 3, 2, 2, 2, 745, 743, 3, 2, 2, 2, 745, 746, 3, 2, 2, 2, 746, 115, 3, 2, 2, 2, 747, 745, 3, 2, 2, 2, 748, 749, 5, 114, 58, 2, 749, 750, 5, 244, 123, 2, 750, 117, 3, 2, 2, 2, 751, 753, 5, 226, 114, 2, 752, 751, 3, 2, 2, 2, 752, 753, 3, 2, 2, 2, 753, 754, 3, 2, 2, 2, 754, 755, 7, 2, 2, 3, 755, 119, 3, 2, 2, 2, 756, 758, 7, 98, 2, 2, 757, 756, 3, 2, 2, 2, 757, 758, 3, 2, 2, 2, 758, 759, 3, 2, 2, 2, 759, 760, 5, 122, 62, 2, 760, 121, 3, 2, 2, 2, 761, 791, 5, 124, 63, 2, 762, 791, 5, 138, 70, 2, 763, 791, 5, 130, 66, 2, 764, 791, 5, 136, 69, 2, 765, 791, 5, 144, 73, 2, 766, 791, 5, 128, 65, 2, 767, 791, 5, 188, 95, 2, 768, 791, 5, 90, 46, 2, 769, 791, 5, 104, 53, 2, 770, 791, 5, 148, 75, 2, 771, 791, 5, 150, 76, 2, 772, 791, 5, 154, 78, 2, 773, 791, 5, 156, 79, 2, 774, 791, 5, 158, 80, 2, 775, 791, 5, 160, 81, 2, 776, 791, 5, 162, 82, 2, 777, 791, 5, 174, 88, 2, 778, 791, 5, 164, 83, 2, 779, 791, 5, 176, 89, 2, 780, 791, 5, 178, 90, 2, 781, 791, 5, 184, 93, 2, 782, 791, 5, 186, 94, 2, 783, 791, 5, 254, 128, 2, 784, 791, 5, 208, 105, 2, 785, 791, 5, 86, 44, 2, 786, 791, 5, 96, 49, 2, 787, 791, 5, 146, 74, 2, 788, 789, 7, 98, 2, 2, 789, 791, 5, 122, 62, 2, 790, 761, 3, 2, 2, 2, 790, 762, 3, 2, 2, 2, 790, 763, 3, 2, 2, 2, 790, 764, 3, 2, 2, 2, 790, 765, 3, 2, 2, 2, 790, 766, 3, 2, 2, 2, 790, 767, 3, 2, 2, 2, 790, 768, 3, 2, 2, 2, 790, 769, 3, 2, 2, 2, 790, 770, 3, 2, 2, 2, 790, 771, 3, 2, 2, 2, 790, 772, 3, 2, 2, 2, 790, 773, 3, 2, 2, 2, 790, 774, 3, 2, 2, 2, 790, 775, 3, 2, 2, 2, 790, 776, 3, 2, 2, 2, 790, 777, 3, 2, 2, 2, 790, 778, 3, 2, 2, 2, 790, 779, 3, 2, 2, 2, 790, 780, 3, 2, 2, 2, 790, 781, 3, 2, 2, 2, 790, 782, 3, 2, 2, 2, 790, 783, 3, 2, 2, 2, 790, 784, 3, 2, 2, 2, 790, 785, 3, 2, 2, 2, 790, 786, 3, 2, 2, 2, 790, 787, 3, 2, 2, 2, 790, 788, 3, 2, 2, 2, 791, 123, 3, 2, 2, 2, 792, 794, 7, 10, 2, 2, 793, 795, 5, 126, 64, 2, 794, 793, 3, 2, 2, 2, 794, 795, 3, 2, 2, 2, 795, 796, 3, 2, 2, 2, 796, 797, 7, 11, 2, 2, 797, 125, 3, 2, 2, 2, 798, 800, 5, 122, 62, 2, 799, 798, 3, 2, 2, 2, 800, 801, 3, 2, 2, 2, 801, 799, 3, 2, 2, 2, 801, 802, 3, 2, 2, 2, 802, 127, 3, 2, 2, 2, 803, 807, 7, 122, 2, 2, 804, 805, 7, 125, 2, 2, 805, 808, 5, 62, 32, 2, 806, 808, 5, 138, 70, 2, 807, 804, 3, 2, 2, 2, 807, 806, 3, 2, 2, 2, 808, 809, 3, 2, 2, 2, 809, 810, 5, 276, 139, 2, 810, 129, 3, 2, 2, 2, 811, 814, 7, 99, 2, 2, 812, 815, 5, 132, 67, 2, 813, 815, 5, 108, 55, 2, 814, 812, 3, 2, 2, 2, 814, 813, 3, 2, 2, 2, 815, 131, 3, 2, 2, 2, 816, 819, 7, 25, 2, 2, 817, 819, 5, 134, 68, 2, 818, 816, 3, 2, 2, 2, 818, 817, 3, 2, 2, 2, 819, 822, 3, 2, 2, 2, 820, 821, 7, 89, 2, 2, 821, 823, 5, 266, 134, 2, 822, 820, 3, 2, 2, 2, 822, 823, 3, 2, 2, 2, 823, 824, 3, 2, 2, 2, 824, 825, 7, 90, 2, 2, 825, 826, 7, 126, 2, 2, 826, 827, 5, 276, 139, 2, 827, 133, 3, 2, 2, 2, 828, 829, 5, 266, 134, 2, 829, 830, 7, 13, 2, 2, 830, 832, 3, 2, 2, 2, 831, 828, 3, 2, 2, 2, 831, 832, 3, 2, 2, 2, 832, 833, 3, 2, 2, 2, 833, 834, 7, 10, 2, 2, 834, 839, 5, 266, 134, 2, 835, 836, 7, 13, 2, 2, 836, 838, 5, 266, 134, 2, 837, 835, 3, 2, 2, 2, 838, 841, 3, 2, 2, 2, 839, 837, 3, 2, 2, 2, 839, 840, 3, 2, 2, 2, 840, 842, 3, 2, 2, 2, 841, 839, 3, 2, 2, 2, 842, 843, 7, 11, 2, 2, 843, 135, 3, 2, 2, 2, 844, 846, 7, 98, 2, 2, 845, 847, 7, 83, 2, 2, 846, 845, 3, 2, 2, 2, 846, 847, 3, 2, 2, 2, 847, 850, 3, 2, 2, 2, 848, 851, 5, 132, 67, 2, 849, 851, 5, 122, 62, 2, 850, 848, 3, 2, 2, 2, 850, 849, 3, 2, 2, 2, 851, 137, 3, 2, 2, 2, 852, 854, 5, 4, 3, 2, 853, 855, 5, 60, 31, 2, 854, 853, 3, 2, 2, 2, 854, 855, 3, 2, 2, 2, 855, 856, 3, 2, 2, 2, 856, 858, 5, 2, 2, 2, 857, 859, 7, 12, 2, 2, 858, 857, 3, 2, 2, 2, 858, 859, 3, 2, 2, 2, 859, 874, 3, 2, 2, 2, 860, 862, 5, 70, 36, 2, 861, 860, 3, 2, 2, 2, 861, 862, 3, 2, 2, 2, 862, 864, 3, 2, 2, 2, 863, 865, 5, 152, 77, 2, 864, 863, 3, 2, 2, 2, 864, 865, 3, 2, 2, 2, 865, 867, 3, 2, 2, 2, 866, 868, 7, 91, 2, 2, 867, 866, 3, 2, 2, 2, 867, 868, 3, 2, 2, 2, 868, 869, 3, 2, 2, 2, 869, 871, 5, 140, 71, 2, 870, 872, 7, 12, 2, 2, 871, 870, 3, 2, 2, 2, 871, 872, 3, 2, 2, 2, 872, 874, 3, 2, 2, 2, 873, 852, 3, 2, 2, 2, 873, 861, 3, 2, 2, 2, 874, 139, 3, 2, 2, 2, 875, 880, 5, 142, 72, 2, 876, 877, 7, 13, 2, 2, 877, 879, 5, 142, 72, 2, 878, 876, 3, 2, 2, 2, 879, 882, 3, 2, 2, 2, 880, 878, 3, 2, 2, 2, 880, 881, 3, 2, 2, 2, 881, 141, 3, 2, 2, 2, 882, 880, 3, 2, 2, 2, 883, 887, 7, 125, 2, 2, 884, 887, 5, 228, 115, 2, 885, 887, 5, 234, 118, 2, 886, 883, 3, 2, 2, 2, 886, 884, 3, 2, 2, 2, 886, 885, 3, 2, 2, 2, 887, 889, 3, 2, 2, 2, 888, 890, 5, 60, 31, 2, 889, 888, 3, 2, 2, 2, 889, 890, 3, 2, 2, 2, 890, 892, 3, 2, 2, 2, 891, 893, 5, 252, 127, 2, 892, 891, 3, 2, 2, 2, 892, 893, 3, 2, 2, 2, 893, 899, 3, 2, 2, 2, 894, 896, 7, 14, 2, 2, 895, 897, 5, 6, 4, 2, 896, 895, 3, 2, 2, 2, 896, 897, 3, 2, 2, 2, 897, 898, 3, 2, 2, 2, 898, 900, 5, 252, 127, 2, 899, 894, 3, 2, 2, 2, 899, 900, 3, 2, 2, 2, 900, 143, 3, 2, 2, 2, 901, 902, 7, 12, 2, 2, 902, 145, 3, 2, 2, 2, 903, 904, 6, 74, 8, 2, 904, 906, 5, 248, 125, 2, 905, 907, 7, 12, 2, 2, 906, 905, 3, 2, 2, 2, 906, 907, 3, 2, 2, 2, 907, 147, 3, 2, 2, 2, 908, 909, 7, 84, 2, 2, 909, 910, 7, 8, 2, 2, 910, 911, 5, 248, 125, 2, 911, 912, 7, 9, 2, 2, 912, 915, 5, 122, 62, 2, 913, 914, 7, 68, 2, 2, 914, 916, 5, 122, 62, 2, 915, 913, 3, 2, 2, 2, 915, 916, 3, 2, 2, 2, 916, 149, 3, 2, 2, 2, 917, 918, 7, 64, 2, 2, 918, 919, 5, 122, 62, 2, 919, 920, 7, 78, 2, 2, 920, 921, 7, 8, 2, 2, 921, 922, 5, 248, 125, 2, 922, 923, 7, 9, 2, 2, 923, 924, 5, 276, 139, 2, 924, 987, 3, 2, 2, 2, 925, 926, 7, 78, 2, 2, 926, 927, 7, 8, 2, 2, 927, 928, 5, 248, 125, 2, 928, 929, 7, 9, 2, 2, 929, 930, 5, 122, 62, 2, 930, 987, 3, 2, 2, 2, 931, 932, 7, 76, 2, 2, 932, 934, 7, 8, 2, 2, 933, 935, 5, 248, 125, 2, 934, 933, 3, 2, 2, 2, 934, 935, 3, 2, 2, 2, 935, 936, 3, 2, 2, 2, 936, 938, 7, 12, 2, 2, 937, 939, 5, 248, 125, 2, 938, 937, 3, 2, 2, 2, 938, 939, 3, 2, 2, 2, 939, 940, 3, 2, 2, 2, 940, 942, 7, 12, 2, 2, 941, 943, 5, 248, 125, 2, 942, 941, 3, 2, 2, 2, 942, 943, 3, 2, 2, 2, 943, 944, 3, 2, 2, 2, 944, 945, 7, 9, 2, 2, 945, 987, 5, 122, 62, 2, 946, 947, 7, 76, 2, 2, 947, 948, 7, 8, 2, 2, 948, 949, 5, 152, 77, 2, 949, 950, 5, 140, 71, 2, 950, 952, 7, 12, 2, 2, 951, 953, 5, 248, 125, 2, 952, 951, 3, 2, 2, 2, 952, 953, 3, 2, 2, 2, 953, 954, 3, 2, 2, 2, 954, 956, 7, 12, 2, 2, 955, 957, 5, 248, 125, 2, 956, 955, 3, 2, 2, 2, 956, 957, 3, 2, 2, 2, 957, 958, 3, 2, 2, 2, 958, 959, 7, 9, 2, 2, 959, 960, 5, 122, 62, 2, 960, 987, 3, 2, 2, 2, 961, 962, 7, 76, 2, 2, 962, 963, 7, 8, 2, 2, 963, 967, 5, 252, 127, 2, 964, 968, 7, 87, 2, 2, 965, 966, 7, 125, 2, 2, 966, 968, 6, 76, 9, 2, 967, 964, 3, 2, 2, 2, 967, 965, 3, 2, 2, 2, 968, 969, 3, 2, 2, 2, 969, 970, 5, 248, 125, 2, 970, 971, 7, 9, 2, 2, 971, 972, 5, 122, 62, 2, 972, 987, 3, 2, 2, 2, 973, 974, 7, 76, 2, 2, 974, 975, 7, 8, 2, 2, 975, 976, 5, 152, 77, 2, 976, 980, 5, 142, 72, 2, 977, 981, 7, 87, 2, 2, 978, 979, 7, 125, 2, 2, 979, 981, 6, 76, 10, 2, 980, 977, 3, 2, 2, 2, 980, 978, 3, 2, 2, 2, 981, 982, 3, 2, 2, 2, 982, 983, 5, 248, 125, 2, 983, 984, 7, 9, 2, 2, 984, 985, 5, 122, 62, 2, 985, 987, 3, 2, 2, 2, 986, 917, 3, 2, 2, 2, 986, 925, 3, 2, 2, 2, 986, 931, 3, 2, 2, 2, 986, 946, 3, 2, 2, 2, 986, 961, 3, 2, 2, 2, 986, 973, 3, 2, 2, 2, 987, 151, 3, 2, 2, 2, 988, 989, 9, 6, 2, 2, 989, 153, 3, 2, 2, 2, 990, 993, 7, 75, 2, 2, 991, 992, 6, 78, 11, 2, 992, 994, 7, 125, 2, 2, 993, 991, 3, 2, 2, 2, 993, 994, 3, 2, 2, 2, 994, 995, 3, 2, 2, 2, 995, 996, 5, 276, 139, 2, 996, 155, 3, 2, 2, 2, 997, 1000, 7, 63, 2, 2, 998, 999, 6, 79, 12, 2, 999, 1001, 7, 125, 2, 2, 1000, 998, 3, 2, 2, 2, 1000, 1001, 3, 2, 2, 2, 1001, 1002, 3, 2, 2, 2, 1002, 1003, 5, 276, 139, 2, 1003, 157, 3, 2, 2, 2, 1004, 1007, 7, 73, 2, 2, 1005, 1006, 6, 80, 13, 2, 1006, 1008, 5, 248, 125, 2, 1007, 1005, 3, 2, 2, 2, 1007, 1008, 3, 2, 2, 2, 1008, 1009, 3, 2, 2, 2, 1009, 1010, 5, 276, 139, 2, 1010, 159, 3, 2, 2, 2, 1011, 1014, 7, 108, 2, 2, 1012, 1013, 6, 81, 14, 2, 1013, 1015, 5, 248, 125, 2, 1014, 1012, 3, 2, 2, 2, 1014, 1015, 3, 2, 2, 2, 1015, 1016, 3, 2, 2, 2, 1016, 1017, 5, 276, 139, 2, 1017, 161, 3, 2, 2, 2, 1018, 1019, 7, 82, 2, 2, 1019, 1020, 7, 8, 2, 2, 1020, 1021, 5, 248, 125, 2, 1021, 1022, 7, 9, 2, 2, 1022, 1023, 5, 122, 62, 2, 1023, 163, 3, 2, 2, 2, 1024, 1025, 7, 77, 2, 2, 1025, 1026, 7, 8, 2, 2, 1026, 1027, 5, 248, 125, 2, 1027, 1028, 7, 9, 2, 2, 1028, 1029, 5, 166, 84, 2, 1029, 165, 3, 2, 2, 2, 1030, 1032, 7, 10, 2, 2, 1031, 1033, 5, 168, 85, 2, 1032, 1031, 3, 2, 2, 2, 1032, 1033, 3, 2, 2, 2, 1033, 1038, 3, 2, 2, 2, 1034, 1036, 5, 172, 87, 2, 1035, 1037, 5, 168, 85, 2, 1036, 1035, 3, 2, 2, 2, 1036, 1037, 3, 2, 2, 2, 1037, 1039, 3, 2, 2, 2, 1038, 1034, 3, 2, 2, 2, 1038, 1039, 3, 2, 2, 2, 1039, 1040, 3, 2, 2, 2, 1040, 1041, 7, 11, 2, 2, 1041, 167, 3, 2, 2, 2, 1042, 1044, 5, 170, 86, 2, 1043, 1042, 3, 2, 2, 2, 1044, 1045, 3, 2, 2, 2, 1045, 1043, 3, 2, 2, 2, 1045, 1046, 3, 2, 2, 2, 1046, 169, 3, 2, 2, 2, 1047, 1048, 7, 67, 2, 2, 1048, 1049, 5, 248, 125, 2, 1049, 1051, 7, 16, 2, 2, 1050, 1052, 5, 126, 64, 2, 1051, 1050, 3, 2, 2, 2, 1051, 1052, 3, 2, 2, 2, 1052, 171, 3, 2, 2, 2, 1053, 1054, 7, 83, 2, 2, 1054, 1056, 7, 16, 2, 2, 1055, 1057, 5, 126, 64, 2, 1056, 1055, 3, 2, 2, 2, 1056, 1057, 3, 2, 2, 2, 1057, 173, 3, 2, 2, 2, 1058, 1059, 7, 125, 2, 2, 1059, 1060, 7, 16, 2, 2, 1060, 1061, 5, 122, 62, 2, 1061, 175, 3, 2, 2, 2, 1062, 1063, 7, 85, 2, 2, 1063, 1064, 6, 89, 15, 2, 1064, 1065, 5, 248, 125, 2, 1065, 1066, 5, 276, 139, 2, 1066, 177, 3, 2, 2, 2, 1067, 1068, 7, 88, 2, 2, 1068, 1074, 5, 124, 63, 2, 1069, 1071, 5, 180, 91, 2, 1070, 1072, 5, 182, 92, 2, 1071, 1070, 3, 2, 2, 2, 1071, 1072, 3, 2, 2, 2, 1072, 1075, 3, 2, 2, 2, 1073, 1075, 5, 182, 92, 2, 1074, 1069, 3, 2, 2, 2, 1074, 1073, 3, 2, 2, 2, 1075, 179, 3, 2, 2, 2, 1076, 1077, 7, 71, 2, 2, 1077, 1078, 7, 8, 2, 2, 1078, 1079, 7, 125, 2, 2, 1079, 1080, 7, 9, 2, 2, 1080, 1081, 5, 124, 63, 2, 1081, 181, 3, 2, 2, 2, 1082, 1083, 7, 72, 2, 2, 1083, 1084, 5, 124, 63, 2, 1084, 183, 3, 2, 2, 2, 1085, 1086, 7, 79, 2, 2, 1086, 1087, 5, 276, 139, 2, 1087, 185, 3, 2, 2, 2, 1088, 1089, 7, 80, 2, 2, 1089, 1090, 7, 125, 2, 2, 1090, 1096, 5, 62, 32, 2, 1091, 1092, 7, 10, 2, 2, 1092, 1093, 5, 224, 113, 2, 1093, 1094, 7, 11, 2, 2, 1094, 1097, 3, 2, 2, 2, 1095, 1097, 7, 12, 2, 2, 1096, 1091, 3, 2, 2, 2, 1096, 1095, 3, 2, 2, 2, 1097, 187, 3, 2, 2, 2, 1098, 1100, 7, 122, 2, 2, 1099, 1098, 3, 2, 2, 2, 1099, 1100, 3, 2, 2, 2, 1100, 1101, 3, 2, 2, 2, 1101, 1102, 7, 93, 2, 2, 1102, 1104, 7, 125, 2, 2, 1103, 1105, 5, 6, 4, 2, 1104, 1103, 3, 2, 2, 2, 1104, 1105, 3, 2, 2, 2, 1105, 1106, 3, 2, 2, 2, 1106, 1107, 5, 190, 96, 2, 1107, 1108, 5, 192, 97, 2, 1108, 189, 3, 2, 2, 2, 1109, 1111, 5, 194, 98, 2, 1110, 1109, 3, 2, 2, 2, 1110, 1111, 3, 2, 2, 2, 1111, 1113, 3, 2, 2, 2, 1112, 1114, 5, 196, 99, 2, 1113, 1112, 3, 2, 2, 2, 1113, 1114, 3, 2, 2, 2, 1114, 191, 3, 2, 2, 2, 1115, 1119, 7, 10, 2, 2, 1116, 1118, 5, 198, 100, 2, 1117, 1116, 3, 2, 2, 2, 1118, 1121, 3, 2, 2, 2, 1119, 1117, 3, 2, 2, 2, 1119, 1120, 3, 2, 2, 2, 1120, 1122, 3, 2, 2, 2, 1121, 1119, 3, 2, 2, 2, 1122, 1123, 7, 11, 2, 2, 1123, 193, 3, 2, 2, 2, 1124, 1125, 7, 95, 2, 2, 1125, 1126, 5, 28, 15, 2, 1126, 195, 3, 2, 2, 2, 1127, 1128, 7, 100, 2, 2, 1128, 1129, 5, 94, 48, 2, 1129, 197, 3, 2, 2, 2, 1130, 1135, 5, 88, 45, 2, 1131, 1135, 5, 200, 101, 2, 1132, 1135, 5, 204, 103, 2, 1133, 1135, 5, 122, 62, 2, 1134, 1130, 3, 2, 2, 2, 1134, 1131, 3, 2, 2, 2, 1134, 1132, 3, 2, 2, 2, 1134, 1133, 3, 2, 2, 2, 1135, 199, 3, 2, 2, 2, 1136, 1137, 5, 202, 102, 2, 1137, 1139, 5, 242, 122, 2, 1138, 1140, 5, 60, 31, 2, 1139, 1138, 3, 2, 2, 2, 1139, 1140, 3, 2, 2, 2, 1140, 1142, 3, 2, 2, 2, 1141, 1143, 5, 2, 2, 2, 1142, 1141, 3, 2, 2, 2, 1142, 1143, 3, 2, 2, 2, 1143, 1144, 3, 2, 2, 2, 1144, 1145, 7, 12, 2, 2, 1145, 1163, 3, 2, 2, 2, 1146, 1147, 5, 202, 102, 2, 1147, 1148, 5, 242, 122, 2, 1148, 1154, 5, 62, 32, 2, 1149, 1150, 7, 10, 2, 2, 1150, 1151, 5, 224, 113, 2, 1151, 1152, 7, 11, 2, 2, 1152, 1155, 3, 2, 2, 2, 1153, 1155, 7, 12, 2, 2, 1154, 1149, 3, 2, 2, 2, 1154, 1153, 3, 2, 2, 2, 1155, 1163, 3, 2, 2, 2, 1156, 1159, 5, 202, 102, 2, 1157, 1160, 5, 238, 120, 2, 1158, 1160, 5, 240, 121, 2, 1159, 1157, 3, 2, 2, 2, 1159, 1158, 3, 2, 2, 2, 1160, 1163, 3, 2, 2, 2, 1161, 1163, 5, 128, 65, 2, 1162, 1136, 3, 2, 2, 2, 1162, 1146, 3, 2, 2, 2, 1162, 1156, 3, 2, 2, 2, 1162, 1161, 3, 2, 2, 2, 1163, 201, 3, 2, 2, 2, 1164, 1166, 7, 92, 2, 2, 1165, 1164, 3, 2, 2, 2, 1165, 1166, 3, 2, 2, 2, 1166, 1168, 3, 2, 2, 2, 1167, 1169, 5, 70, 36, 2, 1168, 1167, 3, 2, 2, 2, 1168, 1169, 3, 2, 2, 2, 1169, 1171, 3, 2, 2, 2, 1170, 1172, 7, 107, 2, 2, 1171, 1170, 3, 2, 2, 2, 1171, 1172, 3, 2, 2, 2, 1172, 1174, 3, 2, 2, 2, 1173, 1175, 7, 91, 2, 2, 1174, 1173, 3, 2, 2, 2, 1174, 1175, 3, 2, 2, 2, 1175, 203, 3, 2, 2, 2, 1176, 1177, 5, 82, 42, 2, 1177, 1178, 7, 12, 2, 2, 1178, 205, 3, 2, 2, 2, 1179, 1181, 7, 25, 2, 2, 1180, 1179, 3, 2, 2, 2, 1180, 1181, 3, 2, 2, 2, 1181, 1182, 3, 2, 2, 2, 1182, 1183, 7, 125, 2, 2, 1183, 1185, 7, 8, 2, 2, 1184, 1186, 5, 218, 110, 2, 1185, 1184, 3, 2, 2, 2, 1185, 1186, 3, 2, 2, 2, 1186, 1187, 3, 2, 2, 2, 1187, 1188, 7, 9, 2, 2, 1188, 1189, 7, 10, 2, 2, 1189, 1190, 5, 224, 113, 2, 1190, 1191, 7, 11, 2, 2, 1191, 207, 3, 2, 2, 2, 1192, 1193, 7, 80, 2, 2, 1193, 1195, 7, 25, 2, 2, 1194, 1196, 7, 125, 2, 2, 1195, 1194, 3, 2, 2, 2, 1195, 1196, 3, 2, 2, 2, 1196, 1197, 3, 2, 2, 2, 1197, 1199, 7, 8, 2, 2, 1198, 1200, 5, 218, 110, 2, 1199, 1198, 3, 2, 2, 2, 1199, 1200, 3, 2, 2, 2, 1200, 1201, 3, 2, 2, 2, 1201, 1202, 7, 9, 2, 2, 1202, 1203, 7, 10, 2, 2, 1203, 1204, 5, 224, 113, 2, 1204, 1205, 7, 11, 2, 2, 1205, 209, 3, 2, 2, 2, 1206, 1207, 7, 10, 2, 2, 1207, 1212, 5, 212, 107, 2, 1208, 1209, 7, 13, 2, 2, 1209, 1211, 5, 212, 107, 2, 1210, 1208, 3, 2, 2, 2, 1211, 1214, 3, 2, 2, 2, 1212, 1210, 3, 2, 2, 2, 1212, 1213, 3, 2, 2, 2, 1213, 1216, 3, 2, 2, 2, 1214, 1212, 3, 2, 2, 2, 1215, 1217, 7, 13, 2, 2, 1216, 1215, 3, 2, 2, 2, 1216, 1217, 3, 2, 2, 2, 1217, 1218, 3, 2, 2, 2, 1218, 1219, 7, 11, 2, 2, 1219, 211, 3, 2, 2, 2, 1220, 1221, 7, 25, 2, 2, 1221, 1222, 5, 216, 109, 2, 1222, 213, 3, 2, 2, 2, 1223, 1224, 7, 10, 2, 2, 1224, 1229, 5, 216, 109, 2, 1225, 1226, 7, 13, 2, 2, 1226, 1228, 5, 216, 109, 2, 1227, 1225, 3, 2, 2, 2, 1228, 1231, 3, 2, 2, 2, 1229, 1227, 3, 2, 2, 2, 1229, 1230, 3, 2, 2, 2, 1230, 1233, 3, 2, 2, 2, 1231, 1229, 3, 2, 2, 2, 1232, 1234, 7, 13, 2, 2, 1233, 1232, 3, 2, 2, 2, 1233, 1234, 3, 2, 2, 2, 1234, 1235, 3, 2, 2, 2, 1235, 1236, 7, 11, 2, 2, 1236, 215, 3, 2, 2, 2, 1237, 1238, 7, 6, 2, 2, 1238, 1239, 5, 252, 127, 2, 1239, 1240, 7, 7, 2, 2, 1240, 1242, 7, 8, 2, 2, 1241, 1243, 5, 218, 110, 2, 1242, 1241, 3, 2, 2, 2, 1242, 1243, 3, 2, 2, 2, 1243, 1244, 3, 2, 2, 2, 1244, 1245, 7, 9, 2, 2, 1245, 1246, 7, 10, 2, 2, 1246, 1247, 5, 224, 113, 2, 1247, 1248, 7, 11, 2, 2, 1248, 217, 3, 2, 2, 2, 1249, 1254, 5, 220, 111, 2, 1250, 1251, 7, 13, 2, 2, 1251, 1253, 5, 220, 111, 2, 1252, 1250, 3, 2, 2, 2, 1253, 1256, 3, 2, 2, 2, 1254, 1252, 3, 2, 2, 2, 1254, 1255, 3, 2, 2, 2, 1255, 1259, 3, 2, 2, 2, 1256, 1254, 3, 2, 2, 2, 1257, 1258, 7, 13, 2, 2, 1258, 1260, 5, 222, 112, 2, 1259, 1257, 3, 2, 2, 2, 1259, 1260, 3, 2, 2, 2, 1260, 1269, 3, 2, 2, 2, 1261, 1269, 5, 222, 112, 2, 1262, 1269, 5, 228, 115, 2, 1263, 1266, 5, 234, 118, 2, 1264, 1265, 7, 16, 2, 2, 1265, 1267, 5, 218, 110, 2, 1266, 1264, 3, 2, 2, 2, 1266, 1267, 3, 2, 2, 2, 1267, 1269, 3, 2, 2, 2, 1268, 1249, 3, 2, 2, 2, 1268, 1261, 3, 2, 2, 2, 1268, 1262, 3, 2, 2, 2, 1268, 1263, 3, 2, 2, 2, 1269, 219, 3, 2, 2, 2, 1270, 1272, 5, 70, 36, 2, 1271, 1270, 3, 2, 2, 2, 1271, 1272, 3, 2, 2, 2, 1272, 1273, 3, 2, 2, 2, 1273, 1275, 7, 125, 2, 2, 1274, 1276, 5, 60, 31, 2, 1275, 1274, 3, 2, 2, 2, 1275, 1276, 3, 2, 2, 2, 1276, 1279, 3, 2, 2, 2, 1277, 1278, 7, 14, 2, 2, 1278, 1280, 5, 252, 127, 2, 1279, 1277, 3, 2, 2, 2, 1279, 1280, 3, 2, 2, 2, 1280, 221, 3, 2, 2, 2, 1281, 1282, 7, 17, 2, 2, 1282, 1283, 7, 125, 2, 2, 1283, 223, 3, 2, 2, 2, 1284, 1286, 5, 226, 114, 2, 1285, 1284, 3, 2, 2, 2, 1285, 1286, 3, 2, 2, 2, 1286, 225, 3, 2, 2, 2, 1287, 1289, 5, 120, 61, 2, 1288, 1287, 3, 2, 2, 2, 1289, 1290, 3, 2, 2, 2, 1290, 1288, 3, 2, 2, 2, 1290, 1291, 3, 2, 2, 2, 1291, 227, 3, 2, 2, 2, 1292, 1294, 7, 6, 2, 2, 1293, 1295, 5, 230, 116, 2, 1294, 1293, 3, 2, 2, 2, 1294, 1295, 3, 2, 2, 2, 1295, 1296, 3, 2, 2, 2, 1296, 1297, 7, 7, 2, 2, 1297, 229, 3, 2, 2, 2, 1298, 1307, 5, 252, 127, 2, 1299, 1301, 7, 13, 2, 2, 1300, 1299, 3, 2, 2, 2, 1301, 1302, 3, 2, 2, 2, 1302, 1300, 3, 2, 2, 2, 1302, 1303, 3, 2, 2, 2, 1303, 1304, 3, 2, 2, 2, 1304, 1306, 5, 252, 127, 2, 1305, 1300, 3, 2, 2, 2, 1306, 1309, 3, 2, 2, 2, 1307, 1305, 3, 2, 2, 2, 1307, 1308, 3, 2, 2, 2, 1308, 1316, 3, 2, 2, 2, 1309, 1307, 3, 2, 2, 2, 1310, 1312, 7, 13, 2, 2, 1311, 1310, 3, 2, 2, 2, 1312, 1313, 3, 2, 2, 2, 1313, 1311, 3, 2, 2, 2, 1313, 1314, 3, 2, 2, 2, 1314, 1315, 3, 2, 2, 2, 1315, 1317, 5, 232, 117, 2, 1316, 1311, 3, 2, 2, 2, 1316, 1317, 3, 2, 2, 2, 1317, 1320, 3, 2, 2, 2, 1318, 1320, 5, 232, 117, 2, 1319, 1298, 3, 2, 2, 2, 1319, 1318, 3, 2, 2, 2, 1320, 231, 3, 2, 2, 2, 1321, 1324, 7, 17, 2, 2, 1322, 1325, 7, 125, 2, 2, 1323, 1325, 5, 252, 127, 2, 1324, 1322, 3, 2, 2, 2, 1324, 1323, 3, 2, 2, 2, 1325, 233, 3, 2, 2, 2, 1326, 1335, 7, 10, 2, 2, 1327, 1332, 5, 236, 119, 2, 1328, 1329, 7, 13, 2, 2, 1329, 1331, 5, 236, 119, 2, 1330, 1328, 3, 2, 2, 2, 1331, 1334, 3, 2, 2, 2, 1332, 1330, 3, 2, 2, 2, 1332, 1333, 3, 2, 2, 2, 1333, 1336, 3, 2, 2, 2, 1334, 1332, 3, 2, 2, 2, 1335, 1327, 3, 2, 2, 2, 1335, 1336, 3, 2, 2, 2, 1336, 1338, 3, 2, 2, 2, 1337, 1339, 7, 13, 2, 2, 1338, 1337, 3, 2, 2, 2, 1338, 1339, 3, 2, 2, 2, 1339, 1340, 3, 2, 2, 2, 1340, 1341, 7, 11, 2, 2, 1341, 235, 3, 2, 2, 2, 1342, 1343, 5, 242, 122, 2, 1343, 1344, 9, 7, 2, 2, 1344, 1345, 5, 252, 127, 2, 1345, 1358, 3, 2, 2, 2, 1346, 1347, 7, 6, 2, 2, 1347, 1348, 5, 252, 127, 2, 1348, 1349, 7, 7, 2, 2, 1349, 1350, 7, 16, 2, 2, 1350, 1351, 5, 252, 127, 2, 1351, 1358, 3, 2, 2, 2, 1352, 1358, 5, 238, 120, 2, 1353, 1358, 5, 240, 121, 2, 1354, 1358, 5, 206, 104, 2, 1355, 1358, 7, 125, 2, 2, 1356, 1358, 5, 78, 40, 2, 1357, 1342, 3, 2, 2, 2, 1357, 1346, 3, 2, 2, 2, 1357, 1352, 3, 2, 2, 2, 1357, 1353, 3, 2, 2, 2, 1357, 1354, 3, 2, 2, 2, 1357, 1355, 3, 2, 2, 2, 1357, 1356, 3, 2, 2, 2, 1358, 237, 3, 2, 2, 2, 1359, 1360, 5, 272, 137, 2, 1360, 1361, 7, 8, 2, 2, 1361, 1363, 7, 9, 2, 2, 1362, 1364, 5, 60, 31, 2, 1363, 1362, 3, 2, 2, 2, 1363, 1364, 3, 2, 2, 2, 1364, 1365, 3, 2, 2, 2, 1365, 1366, 7, 10, 2, 2, 1366, 1367, 5, 224, 113, 2, 1367, 1368, 7, 11, 2, 2, 1368, 239, 3, 2, 2, 2, 1369, 1370, 5, 274, 138, 2, 1370, 1373, 7, 8, 2, 2, 1371, 1374, 7, 125, 2, 2, 1372, 1374, 5, 4, 3, 2, 1373, 1371, 3, 2, 2, 2, 1373, 1372, 3, 2, 2, 2, 1374, 1376, 3, 2, 2, 2, 1375, 1377, 5, 60, 31, 2, 1376, 1375, 3, 2, 2, 2, 1376, 1377, 3, 2, 2, 2, 1377, 1378, 3, 2, 2, 2, 1378, 1379, 7, 9, 2, 2, 1379, 1380, 7, 10, 2, 2, 1380, 1381, 5, 224, 113, 2, 1381, 1382, 7, 11, 2, 2, 1382, 241, 3, 2, 2, 2, 1383, 1387, 5, 266, 134, 2, 1384, 1387, 7, 126, 2, 2, 1385, 1387, 5, 264, 133, 2, 1386, 1383, 3, 2, 2, 2, 1386, 1384, 3, 2, 2, 2, 1386, 1385, 3, 2, 2, 2, 1387, 243, 3, 2, 2, 2, 1388, 1402, 7, 8, 2, 2, 1389, 1394, 5, 252, 127, 2, 1390, 1391, 7, 13, 2, 2, 1391, 1393, 5, 252, 127, 2, 1392, 1390, 3, 2, 2, 2, 1393, 1396, 3, 2, 2, 2, 1394, 1392, 3, 2, 2, 2, 1394, 1395, 3, 2, 2, 2, 1395, 1399, 3, 2, 2, 2, 1396, 1394, 3, 2, 2, 2, 1397, 1398, 7, 13, 2, 2, 1398, 1400, 5, 246, 124, 2, 1399, 1397, 3, 2, 2, 2, 1399, 1400, 3, 2, 2, 2, 1400, 1403, 3, 2, 2, 2, 1401, 1403, 5, 246, 124, 2, 1402, 1389, 3, 2, 2, 2, 1402, 1401, 3, 2, 2, 2, 1402, 1403, 3, 2, 2, 2, 1403, 1404, 3, 2, 2, 2, 1404, 1405, 7, 9, 2, 2, 1405, 245, 3, 2, 2, 2, 1406, 1407, 7, 17, 2, 2, 1407, 1408, 7, 125, 2, 2, 1408, 247, 3, 2, 2, 2, 1409, 1414, 5, 252, 127, 2, 1410, 1411, 7, 13, 2, 2, 1411, 1413, 5, 252, 127, 2, 1412, 1410, 3, 2, 2, 2, 1413, 1416, 3, 2, 2, 2, 1414, 1412, 3, 2, 2, 2, 1414, 1415, 3, 2, 2, 2, 1415, 249, 3, 2, 2, 2, 1416, 1414, 3, 2, 2, 2, 1417, 1419, 7, 80, 2, 2, 1418, 1420, 7, 125, 2, 2, 1419, 1418, 3, 2, 2, 2, 1419, 1420, 3, 2, 2, 2, 1420, 1421, 3, 2, 2, 2, 1421, 1423, 7, 8, 2, 2, 1422, 1424, 5, 218, 110, 2, 1423, 1422, 3, 2, 2, 2, 1423, 1424, 3, 2, 2, 2, 1424, 1425, 3, 2, 2, 2, 1425, 1427, 7, 9, 2, 2, 1426, 1428, 5, 60, 31, 2, 1427, 1426, 3, 2, 2, 2, 1427, 1428, 3, 2, 2, 2, 1428, 1429, 3, 2, 2, 2, 1429, 1430, 7, 10, 2, 2, 1430, 1431, 5, 224, 113, 2, 1431, 1432, 7, 11, 2, 2, 1432, 251, 3, 2, 2, 2, 1433, 1434, 8, 127, 1, 2, 1434, 1489, 5, 250, 126, 2, 1435, 1489, 5, 254, 128, 2, 1436, 1438, 7, 93, 2, 2, 1437, 1439, 7, 125, 2, 2, 1438, 1437, 3, 2, 2, 2, 1438, 1439, 3, 2, 2, 2, 1439, 1440, 3, 2, 2, 2, 1440, 1489, 5, 192, 97, 2, 1441, 1442, 7, 69, 2, 2, 1442, 1444, 5, 252, 127, 2, 1443, 1445, 5, 14, 8, 2, 1444, 1443, 3, 2, 2, 2, 1444, 1445, 3, 2, 2, 2, 1445, 1447, 3, 2, 2, 2, 1446, 1448, 5, 244, 123, 2, 1447, 1446, 3, 2, 2, 2, 1447, 1448, 3, 2, 2, 2, 1448, 1489, 3, 2, 2, 2, 1449, 1450, 7, 86, 2, 2, 1450, 1489, 5, 252, 127, 39, 1451, 1452, 7, 74, 2, 2, 1452, 1489, 5, 252, 127, 38, 1453, 1454, 7, 66, 2, 2, 1454, 1489, 5, 252, 127, 37, 1455, 1456, 7, 19, 2, 2, 1456, 1489, 5, 252, 127, 36, 1457, 1458, 7, 20, 2, 2, 1458, 1489, 5, 252, 127, 35, 1459, 1460, 7, 21, 2, 2, 1460, 1489, 5, 252, 127, 34, 1461, 1462, 7, 22, 2, 2, 1462, 1489, 5, 252, 127, 33, 1463, 1464, 7, 23, 2, 2, 1464, 1489, 5, 252, 127, 32, 1465, 1466, 7, 24, 2, 2, 1466, 1489, 5, 252, 127, 31, 1467, 1489, 5, 214, 108, 2, 1468, 1489, 5, 210, 106, 2, 1469, 1489, 5, 208, 105, 2, 1470, 1489, 5, 160, 81, 2, 1471, 1489, 7, 81, 2, 2, 1472, 1474, 5, 266, 134, 2, 1473, 1475, 5, 252, 127, 2, 1474, 1473, 3, 2, 2, 2, 1474, 1475, 3, 2, 2, 2, 1475, 1489, 3, 2, 2, 2, 1476, 1489, 7, 96, 2, 2, 1477, 1489, 5, 262, 132, 2, 1478, 1489, 5, 228, 115, 2, 1479, 1489, 5, 234, 118, 2, 1480, 1481, 7, 8, 2, 2, 1481, 1482, 5, 248, 125, 2, 1482, 1483, 7, 9, 2, 2, 1483, 1489, 3, 2, 2, 2, 1484, 1486, 5, 14, 8, 2, 1485, 1487, 5, 248, 125, 2, 1486, 1485, 3, 2, 2, 2, 1486, 1487, 3, 2, 2, 2, 1487, 1489, 3, 2, 2, 2, 1488, 1433, 3, 2, 2, 2, 1488, 1435, 3, 2, 2, 2, 1488, 1436, 3, 2, 2, 2, 1488, 1441, 3, 2, 2, 2, 1488, 1449, 3, 2, 2, 2, 1488, 1451, 3, 2, 2, 2, 1488, 1453, 3, 2, 2, 2, 1488, 1455, 3, 2, 2, 2, 1488, 1457, 3, 2, 2, 2, 1488, 1459, 3, 2, 2, 2, 1488, 1461, 3, 2, 2, 2, 1488, 1463, 3, 2, 2, 2, 1488, 1465, 3, 2, 2, 2, 1488, 1467, 3, 2, 2, 2, 1488, 1468, 3, 2, 2, 2, 1488, 1469, 3, 2, 2, 2, 1488, 1470, 3, 2, 2, 2, 1488, 1471, 3, 2, 2, 2, 1488, 1472, 3, 2, 2, 2, 1488, 1476, 3, 2, 2, 2, 1488, 1477, 3, 2, 2, 2, 1488, 1478, 3, 2, 2, 2, 1488, 1479, 3, 2, 2, 2, 1488, 1480, 3, 2, 2, 2, 1488, 1484, 3, 2, 2, 2, 1489, 1559, 3, 2, 2, 2, 1490, 1491, 12, 30, 2, 2, 1491, 1492, 9, 8, 2, 2, 1492, 1558, 5, 252, 127, 31, 1493, 1494, 12, 29, 2, 2, 1494, 1495, 9, 9, 2, 2, 1495, 1558, 5, 252, 127, 30, 1496, 1497, 12, 28, 2, 2, 1497, 1498, 9, 10, 2, 2, 1498, 1558, 5, 252, 127, 29, 1499, 1500, 12, 27, 2, 2, 1500, 1501, 9, 11, 2, 2, 1501, 1558, 5, 252, 127, 28, 1502, 1503, 12, 26, 2, 2, 1503, 1504, 7, 65, 2, 2, 1504, 1558, 5, 252, 127, 27, 1505, 1506, 12, 25, 2, 2, 1506, 1507, 7, 87, 2, 2, 1507, 1558, 5, 252, 127, 26, 1508, 1509, 12, 24, 2, 2, 1509, 1510, 9, 12, 2, 2, 1510, 1558, 5, 252, 127, 25, 1511, 1512, 12, 23, 2, 2, 1512, 1513, 7, 39, 2, 2, 1513, 1558, 5, 252, 127, 24, 1514, 1515, 12, 22, 2, 2, 1515, 1516, 7, 40, 2, 2, 1516, 1558, 5, 252, 127, 23, 1517, 1518, 12, 21, 2, 2, 1518, 1519, 7, 41, 2, 2, 1519, 1558, 5, 252, 127, 22, 1520, 1521, 12, 20, 2, 2, 1521, 1522, 7, 42, 2, 2, 1522, 1558, 5, 252, 127, 21, 1523, 1524, 12, 19, 2, 2, 1524, 1525, 7, 43, 2, 2, 1525, 1558, 5, 252, 127, 20, 1526, 1527, 12, 18, 2, 2, 1527, 1528, 7, 15, 2, 2, 1528, 1529, 5, 252, 127, 2, 1529, 1530, 7, 16, 2, 2, 1530, 1531, 5, 252, 127, 19, 1531, 1558, 3, 2, 2, 2, 1532, 1533, 12, 17, 2, 2, 1533, 1534, 7, 14, 2, 2, 1534, 1558, 5, 252, 127, 18, 1535, 1536, 12, 16, 2, 2, 1536, 1537, 5, 260, 131, 2, 1537, 1538, 5, 252, 127, 17, 1538, 1558, 3, 2, 2, 2, 1539, 1540, 12, 45, 2, 2, 1540, 1541, 7, 6, 2, 2, 1541, 1542, 5, 248, 125, 2, 1542, 1543, 7, 7, 2, 2, 1543, 1558, 3, 2, 2, 2, 1544, 1545, 12, 44, 2, 2, 1545, 1546, 7, 18, 2, 2, 1546, 1558, 5, 266, 134, 2, 1547, 1548, 12, 43, 2, 2, 1548, 1558, 5, 244, 123, 2, 1549, 1550, 12, 41, 2, 2, 1550, 1551, 6, 127, 35, 2, 1551, 1558, 7, 19, 2, 2, 1552, 1553, 12, 40, 2, 2, 1553, 1554, 6, 127, 37, 2, 1554, 1558, 7, 20, 2, 2, 1555, 1556, 12, 15, 2, 2, 1556, 1558, 7, 127, 2, 2, 1557, 1490, 3, 2, 2, 2, 1557, 1493, 3, 2, 2, 2, 1557, 1496, 3, 2, 2, 2, 1557, 1499, 3, 2, 2, 2, 1557, 1502, 3, 2, 2, 2, 1557, 1505, 3, 2, 2, 2, 1557, 1508, 3, 2, 2, 2, 1557, 1511, 3, 2, 2, 2, 1557, 1514, 3, 2, 2, 2, 1557, 1517, 3, 2, 2, 2, 1557, 1520, 3, 2, 2, 2, 1557, 1523, 3, 2, 2, 2, 1557, 1526, 3, 2, 2, 2, 1557, 1532, 3, 2, 2, 2, 1557, 1535, 3, 2, 2, 2, 1557, 1539, 3, 2, 2, 2, 1557, 1544, 3, 2, 2, 2, 1557, 1547, 3, 2, 2, 2, 1557, 1549, 3, 2, 2, 2, 1557, 1552, 3, 2, 2, 2, 1557, 1555, 3, 2, 2, 2, 1558, 1561, 3, 2, 2, 2, 1559, 1557, 3, 2, 2, 2, 1559, 1560, 3, 2, 2, 2, 1560, 253, 3, 2, 2, 2, 1561, 1559, 3, 2, 2, 2, 1562, 1564, 7, 92, 2, 2, 1563, 1562, 3, 2, 2, 2, 1563, 1564, 3, 2, 2, 2, 1564, 1565, 3, 2, 2, 2, 1565, 1567, 5, 256, 129, 2, 1566, 1568, 5, 60, 31, 2, 1567, 1566, 3, 2, 2, 2, 1567, 1568, 3, 2, 2, 2, 1568, 1569, 3, 2, 2, 2, 1569, 1570, 7, 55, 2, 2, 1570, 1571, 5, 258, 130, 2, 1571, 255, 3, 2, 2, 2, 1572, 1579, 7, 125, 2, 2, 1573, 1575, 7, 8, 2, 2, 1574, 1576, 5, 218, 110, 2, 1575, 1574, 3, 2, 2, 2, 1575, 1576, 3, 2, 2, 2, 1576, 1577, 3, 2, 2, 2, 1577, 1579, 7, 9, 2, 2, 1578, 1572, 3, 2, 2, 2, 1578, 1573, 3, 2, 2, 2, 1579, 257, 3, 2, 2, 2, 1580, 1586, 5, 252, 127, 2, 1581, 1582, 7, 10, 2, 2, 1582, 1583, 5, 224, 113, 2, 1583, 1584, 7, 11, 2, 2, 1584, 1586, 3, 2, 2, 2, 1585, 1580, 3, 2, 2, 2, 1585, 1581, 3, 2, 2, 2, 1586, 259, 3, 2, 2, 2, 1587, 1588, 9, 13, 2, 2, 1588, 261, 3, 2, 2, 2, 1589, 1596, 7, 56, 2, 2, 1590, 1596, 7, 57, 2, 2, 1591, 1596, 7, 126, 2, 2, 1592, 1596, 7, 127, 2, 2, 1593, 1596, 7, 5, 2, 2, 1594, 1596, 5, 264, 133, 2, 1595, 1589, 3, 2, 2, 2, 1595, 1590, 3, 2, 2, 2, 1595, 1591, 3, 2, 2, 2, 1595, 1592, 3, 2, 2, 2, 1595, 1593, 3, 2, 2, 2, 1595, 1594, 3, 2, 2, 2, 1596, 263, 3, 2, 2, 2, 1597, 1598, 9, 14, 2, 2, 1598, 265, 3, 2, 2, 2, 1599, 1602, 7, 125, 2, 2, 1600, 1602, 5, 268, 135, 2, 1601, 1599, 3, 2, 2, 2, 1601, 1600, 3, 2, 2, 2, 1602, 267, 3, 2, 2, 2, 1603, 1607, 5, 270, 136, 2, 1604, 1607, 7, 56, 2, 2, 1605, 1607, 7, 57, 2, 2, 1606, 1603, 3, 2, 2, 2, 1606, 1604, 3, 2, 2, 2, 1606, 1605, 3, 2, 2, 2, 1607, 269, 3, 2, 2, 2, 1608, 1609, 9, 15, 2, 2, 1609, 271, 3, 2, 2, 2, 1610, 1611, 7, 125, 2, 2, 1611, 1612, 6, 137, 39, 2, 1612, 1613, 5, 242, 122, 2, 1613, 273, 3, 2, 2, 2, 1614, 1615, 7, 125, 2, 2, 1615, 1616, 6, 138, 40, 2, 1616, 1617, 5, 242, 122, 2, 1617, 275, 3, 2, 2, 2, 1618, 1623, 7, 12, 2, 2, 1619, 1623, 7, 2, 2, 3, 1620, 1623, 6, 139, 41, 2, 1621, 1623, 6, 139, 42, 2, 1622, 1618, 3, 2, 2, 2, 1622, 1619, 3, 2, 2, 2, 1622, 1620, 3, 2, 2, 2, 1622, 1621, 3, 2, 2, 2, 1623, 277, 3, 2, 2, 2, 199, 283, 287, 296, 301, 304, 311, 320, 330, 341, 343, 364, 372, 380, 395, 399, 403, 409, 416, 426, 428, 444, 448, 452, 460, 464, 479, 483, 486, 490, 493, 497, 503, 507, 511, 519, 525, 532, 535, 537, 539, 546, 550, 553, 557, 563, 570, 574, 577, 582, 585, 588, 595, 599, 603, 614, 621, 628, 633, 641, 644, 649, 652, 656, 666, 670, 676, 682, 689, 695, 701, 709, 714, 725, 730, 738, 745, 752, 757, 790, 794, 801, 807, 814, 818, 822, 831, 839, 846, 850, 854, 858, 861, 864, 867, 871, 873, 880, 886, 889, 892, 896, 899, 906, 915, 934, 938, 942, 952, 956, 967, 980, 986, 993, 1000, 1007, 1014, 1032, 1036, 1038, 1045, 1051, 1056, 1071, 1074, 1096, 1099, 1104, 1110, 1113, 1119, 1134, 1139, 1142, 1154, 1159, 1162, 1165, 1168, 1171, 1174, 1180, 1185, 1195, 1199, 1212, 1216, 1229, 1233, 1242, 1254, 1259, 1266, 1268, 1271, 1275, 1279, 1285, 1290, 1294, 1302, 1307, 1313, 1316, 1319, 1324, 1332, 1335, 1338, 1357, 1363, 1373, 1376, 1386, 1394, 1399, 1402, 1414, 1419, 1423, 1427, 1438, 1444, 1447, 1474, 1486, 1488, 1557, 1559, 1563, 1567, 1575, 1578, 1585, 1595, 1601, 1606, 1622] \ No newline at end of file diff --git a/languages/ts/TypeScriptParser.tokens b/languages/ts/TypeScriptParser.tokens new file mode 100644 index 0000000..a08de58 --- /dev/null +++ b/languages/ts/TypeScriptParser.tokens @@ -0,0 +1,243 @@ +MultiLineComment=1 +SingleLineComment=2 +RegularExpressionLiteral=3 +OpenBracket=4 +CloseBracket=5 +OpenParen=6 +CloseParen=7 +OpenBrace=8 +CloseBrace=9 +SemiColon=10 +Comma=11 +Assign=12 +QuestionMark=13 +Colon=14 +Ellipsis=15 +Dot=16 +PlusPlus=17 +MinusMinus=18 +Plus=19 +Minus=20 +BitNot=21 +Not=22 +Multiply=23 +Divide=24 +Modulus=25 +RightShiftArithmetic=26 +LeftShiftArithmetic=27 +RightShiftLogical=28 +LessThan=29 +MoreThan=30 +LessThanEquals=31 +GreaterThanEquals=32 +Equals_=33 +NotEquals=34 +IdentityEquals=35 +IdentityNotEquals=36 +BitAnd=37 +BitXOr=38 +BitOr=39 +And=40 +Or=41 +MultiplyAssign=42 +DivideAssign=43 +ModulusAssign=44 +PlusAssign=45 +MinusAssign=46 +LeftShiftArithmeticAssign=47 +RightShiftArithmeticAssign=48 +RightShiftLogicalAssign=49 +BitAndAssign=50 +BitXorAssign=51 +BitOrAssign=52 +ARROW=53 +NullLiteral=54 +BooleanLiteral=55 +DecimalLiteral=56 +HexIntegerLiteral=57 +OctalIntegerLiteral=58 +OctalIntegerLiteral2=59 +BinaryIntegerLiteral=60 +Break=61 +Do=62 +Instanceof=63 +Typeof=64 +Case=65 +Else=66 +New=67 +Var=68 +Catch=69 +Finally=70 +Return=71 +Void=72 +Continue=73 +For=74 +Switch=75 +While=76 +Debugger=77 +Function=78 +This=79 +With=80 +Default=81 +If=82 +Throw=83 +Delete=84 +In=85 +Try=86 +As=87 +From=88 +ReadOnly=89 +Async=90 +Class=91 +Enum=92 +Extends=93 +Super=94 +Const=95 +Export=96 +Import=97 +Implements=98 +Let=99 +Private=100 +Public=101 +Interface=102 +Package=103 +Protected=104 +Static=105 +Yield=106 +ANY=107 +NUMBER=108 +BOOLEAN=109 +STRING=110 +SYMBOL=111 +Type=112 +Get=113 +Set=114 +Constructor=115 +Namespace=116 +Require=117 +Module=118 +Declare=119 +Abstract=120 +Is=121 +At=122 +Identifier=123 +StringLiteral=124 +TemplateStringLiteral=125 +WhiteSpaces=126 +LineTerminator=127 +HtmlComment=128 +CDataComment=129 +UnexpectedCharacter=130 +'['=4 +']'=5 +'('=6 +')'=7 +'{'=8 +'}'=9 +';'=10 +','=11 +'='=12 +'?'=13 +':'=14 +'...'=15 +'.'=16 +'++'=17 +'--'=18 +'+'=19 +'-'=20 +'~'=21 +'!'=22 +'*'=23 +'/'=24 +'%'=25 +'>>'=26 +'<<'=27 +'>>>'=28 +'<'=29 +'>'=30 +'<='=31 +'>='=32 +'=='=33 +'!='=34 +'==='=35 +'!=='=36 +'&'=37 +'^'=38 +'|'=39 +'&&'=40 +'||'=41 +'*='=42 +'/='=43 +'%='=44 +'+='=45 +'-='=46 +'<<='=47 +'>>='=48 +'>>>='=49 +'&='=50 +'^='=51 +'|='=52 +'=>'=53 +'null'=54 +'break'=61 +'do'=62 +'instanceof'=63 +'typeof'=64 +'case'=65 +'else'=66 +'new'=67 +'var'=68 +'catch'=69 +'finally'=70 +'return'=71 +'void'=72 +'continue'=73 +'for'=74 +'switch'=75 +'while'=76 +'debugger'=77 +'function'=78 +'this'=79 +'with'=80 +'default'=81 +'if'=82 +'throw'=83 +'delete'=84 +'in'=85 +'try'=86 +'as'=87 +'from'=88 +'readonly'=89 +'async'=90 +'class'=91 +'enum'=92 +'extends'=93 +'super'=94 +'const'=95 +'export'=96 +'import'=97 +'implements'=98 +'let'=99 +'private'=100 +'public'=101 +'interface'=102 +'package'=103 +'protected'=104 +'static'=105 +'yield'=106 +'any'=107 +'number'=108 +'boolean'=109 +'string'=110 +'symbol'=111 +'type'=112 +'get '=113 +'set '=114 +'constructor'=115 +'namespace'=116 +'require'=117 +'module'=118 +'declare'=119 +'abstract'=120 +'is'=121 +'@'=122 diff --git a/languages/ts/typescript_lexer.go b/languages/ts/typescript_lexer.go new file mode 100644 index 0000000..b4784a0 --- /dev/null +++ b/languages/ts/typescript_lexer.go @@ -0,0 +1,957 @@ +// Code generated from TypeScriptLexer.g4 by ANTLR 4.7.2. DO NOT EDIT. + +package parser + +import ( + "fmt" + "unicode" + + "github.com/antlr/antlr4/runtime/Go/antlr" +) + +// Suppress unused import error +var _ = fmt.Printf +var _ = unicode.IsLetter + +var serializedLexerAtn = []uint16{ + 3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 132, 1183, + 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, + 3, 2, 3, 2, 3, 2, 3, 2, 7, 2, 316, 10, 2, 12, 2, 14, 2, 319, 11, 2, 3, + 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 330, 10, 3, 12, + 3, 14, 3, 333, 11, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 7, 4, 340, 10, 4, 12, + 4, 14, 4, 343, 11, 4, 3, 4, 3, 4, 3, 4, 7, 4, 348, 10, 4, 12, 4, 14, 4, + 351, 11, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, + 3, 9, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, + 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, + 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, + 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 27, 3, 27, + 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, + 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, + 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, + 37, 3, 38, 3, 38, 3, 39, 3, 39, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 42, + 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, + 45, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, + 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, + 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, + 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, + 56, 3, 56, 3, 56, 3, 56, 5, 56, 503, 10, 56, 3, 57, 3, 57, 3, 57, 7, 57, + 508, 10, 57, 12, 57, 14, 57, 511, 11, 57, 3, 57, 5, 57, 514, 10, 57, 3, + 57, 3, 57, 6, 57, 518, 10, 57, 13, 57, 14, 57, 519, 3, 57, 5, 57, 523, + 10, 57, 3, 57, 3, 57, 5, 57, 527, 10, 57, 5, 57, 529, 10, 57, 3, 58, 3, + 58, 3, 58, 6, 58, 534, 10, 58, 13, 58, 14, 58, 535, 3, 59, 3, 59, 6, 59, + 540, 10, 59, 13, 59, 14, 59, 541, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 6, + 60, 549, 10, 60, 13, 60, 14, 60, 550, 3, 61, 3, 61, 3, 61, 6, 61, 556, + 10, 61, 13, 61, 14, 61, 557, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, + 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, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, + 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, + 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, + 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, + 71, 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, 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, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, + 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, + 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, + 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 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, 82, 3, 83, 3, 83, 3, 83, 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, 86, 3, 86, 3, 86, 3, 87, + 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, + 89, 3, 90, 3, 90, 3, 90, 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, 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, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, + 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, + 3, 97, 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, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, + 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, + 101, 3, 101, 3, 102, 3, 102, 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, + 103, 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, 105, 3, 105, 3, + 105, 3, 106, 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, + 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, + 110, 3, 110, 3, 110, 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, 113, 3, 113, 3, 114, 3, 114, 3, + 114, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, + 116, 3, 116, 3, 116, 3, 116, 3, 116, 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, + 117, 3, 117, 3, 117, 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, 121, 3, + 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, + 122, 3, 122, 3, 123, 3, 123, 3, 124, 3, 124, 7, 124, 964, 10, 124, 12, + 124, 14, 124, 967, 11, 124, 3, 125, 3, 125, 7, 125, 971, 10, 125, 12, 125, + 14, 125, 974, 11, 125, 3, 125, 3, 125, 3, 125, 7, 125, 979, 10, 125, 12, + 125, 14, 125, 982, 11, 125, 3, 125, 5, 125, 985, 10, 125, 3, 125, 3, 125, + 3, 126, 3, 126, 3, 126, 3, 126, 7, 126, 993, 10, 126, 12, 126, 14, 126, + 996, 11, 126, 3, 126, 3, 126, 3, 127, 6, 127, 1001, 10, 127, 13, 127, 14, + 127, 1002, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, + 3, 129, 3, 129, 3, 129, 3, 129, 7, 129, 1017, 10, 129, 12, 129, 14, 129, + 1020, 11, 129, 3, 129, 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, 130, 3, 130, + 3, 130, 7, 130, 1039, 10, 130, 12, 130, 14, 130, 1042, 11, 130, 3, 130, + 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, + 3, 132, 3, 132, 3, 132, 3, 132, 5, 132, 1058, 10, 132, 3, 133, 3, 133, + 3, 133, 3, 133, 5, 133, 1064, 10, 133, 3, 134, 3, 134, 3, 134, 3, 134, + 3, 134, 5, 134, 1071, 10, 134, 3, 135, 3, 135, 5, 135, 1075, 10, 135, 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, 6, 138, 1090, 10, 138, 13, 138, 14, 138, 1091, + 3, 138, 3, 138, 3, 139, 3, 139, 3, 140, 3, 140, 3, 141, 3, 141, 5, 141, + 1102, 10, 141, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 144, 3, 144, + 3, 144, 7, 144, 1112, 10, 144, 12, 144, 14, 144, 1115, 11, 144, 5, 144, + 1117, 10, 144, 3, 145, 3, 145, 5, 145, 1121, 10, 145, 3, 145, 6, 145, 1124, + 10, 145, 13, 145, 14, 145, 1125, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, + 5, 146, 1133, 10, 146, 3, 147, 3, 147, 3, 147, 3, 147, 5, 147, 1139, 10, + 147, 3, 148, 5, 148, 1142, 10, 148, 3, 149, 5, 149, 1145, 10, 149, 3, 150, + 5, 150, 1148, 10, 150, 3, 151, 5, 151, 1151, 10, 151, 3, 152, 3, 152, 3, + 152, 3, 152, 7, 152, 1157, 10, 152, 12, 152, 14, 152, 1160, 11, 152, 3, + 152, 5, 152, 1163, 10, 152, 3, 153, 3, 153, 3, 153, 3, 153, 7, 153, 1169, + 10, 153, 12, 153, 14, 153, 1172, 11, 153, 3, 153, 5, 153, 1175, 10, 153, + 3, 154, 3, 154, 5, 154, 1179, 10, 154, 3, 155, 3, 155, 3, 155, 5, 317, + 1018, 1040, 2, 156, 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, + 2, 265, 2, 267, 2, 269, 2, 271, 2, 273, 2, 275, 2, 277, 2, 279, 2, 281, + 2, 283, 2, 285, 2, 287, 2, 289, 2, 291, 2, 293, 2, 295, 2, 297, 2, 299, + 2, 301, 2, 303, 2, 305, 2, 307, 2, 309, 2, 3, 2, 28, 5, 2, 12, 12, 15, + 15, 8234, 8235, 3, 2, 50, 59, 4, 2, 90, 90, 122, 122, 3, 2, 50, 57, 4, + 2, 81, 81, 113, 113, 4, 2, 68, 68, 100, 100, 3, 2, 50, 51, 3, 2, 98, 98, + 6, 2, 11, 11, 13, 14, 34, 34, 162, 162, 6, 2, 12, 12, 15, 15, 36, 36, 94, + 94, 6, 2, 12, 12, 15, 15, 41, 41, 94, 94, 11, 2, 36, 36, 41, 41, 94, 94, + 100, 100, 104, 104, 112, 112, 116, 116, 118, 118, 120, 120, 14, 2, 12, + 12, 15, 15, 36, 36, 41, 41, 50, 59, 94, 94, 100, 100, 104, 104, 112, 112, + 116, 116, 118, 120, 122, 122, 5, 2, 50, 59, 119, 119, 122, 122, 5, 2, 50, + 59, 67, 72, 99, 104, 3, 2, 51, 59, 4, 2, 71, 71, 103, 103, 4, 2, 45, 45, + 47, 47, 4, 2, 38, 38, 97, 97, 257, 2, 67, 92, 99, 124, 172, 172, 183, 183, + 188, 188, 194, 216, 218, 248, 250, 545, 548, 565, 594, 687, 690, 698, 701, + 707, 722, 723, 738, 742, 752, 752, 892, 892, 904, 904, 906, 908, 910, 910, + 912, 931, 933, 976, 978, 985, 988, 1013, 1026, 1155, 1166, 1222, 1225, + 1226, 1229, 1230, 1234, 1271, 1274, 1275, 1331, 1368, 1371, 1371, 1379, + 1417, 1490, 1516, 1522, 1524, 1571, 1596, 1602, 1612, 1651, 1749, 1751, + 1751, 1767, 1768, 1788, 1790, 1810, 1810, 1812, 1838, 1922, 1959, 2311, + 2363, 2367, 2367, 2386, 2386, 2394, 2403, 2439, 2446, 2449, 2450, 2453, + 2474, 2476, 2482, 2484, 2484, 2488, 2491, 2526, 2527, 2529, 2531, 2546, + 2547, 2567, 2572, 2577, 2578, 2581, 2602, 2604, 2610, 2612, 2613, 2615, + 2616, 2618, 2619, 2651, 2654, 2656, 2656, 2676, 2678, 2695, 2701, 2703, + 2703, 2705, 2707, 2709, 2730, 2732, 2738, 2740, 2741, 2743, 2747, 2751, + 2751, 2770, 2770, 2786, 2786, 2823, 2830, 2833, 2834, 2837, 2858, 2860, + 2866, 2868, 2869, 2872, 2875, 2879, 2879, 2910, 2911, 2913, 2915, 2951, + 2956, 2960, 2962, 2964, 2967, 2971, 2972, 2974, 2974, 2976, 2977, 2981, + 2982, 2986, 2988, 2992, 2999, 3001, 3003, 3079, 3086, 3088, 3090, 3092, + 3114, 3116, 3125, 3127, 3131, 3170, 3171, 3207, 3214, 3216, 3218, 3220, + 3242, 3244, 3253, 3255, 3259, 3296, 3296, 3298, 3299, 3335, 3342, 3344, + 3346, 3348, 3370, 3372, 3387, 3426, 3427, 3463, 3480, 3484, 3507, 3509, + 3517, 3519, 3519, 3522, 3528, 3587, 3634, 3636, 3637, 3650, 3656, 3715, + 3716, 3718, 3718, 3721, 3722, 3724, 3724, 3727, 3727, 3734, 3737, 3739, + 3745, 3747, 3749, 3751, 3751, 3753, 3753, 3756, 3757, 3759, 3762, 3764, + 3765, 3775, 3782, 3784, 3784, 3806, 3807, 3842, 3842, 3906, 3948, 3978, + 3981, 4098, 4131, 4133, 4137, 4139, 4140, 4178, 4183, 4258, 4295, 4306, + 4344, 4354, 4443, 4449, 4516, 4522, 4603, 4610, 4616, 4618, 4680, 4682, + 4682, 4684, 4687, 4690, 4696, 4698, 4698, 4700, 4703, 4706, 4744, 4746, + 4746, 4748, 4751, 4754, 4784, 4786, 4786, 4788, 4791, 4794, 4800, 4802, + 4802, 4804, 4807, 4810, 4816, 4818, 4824, 4826, 4848, 4850, 4880, 4882, + 4882, 4884, 4887, 4890, 4896, 4898, 4936, 4938, 4956, 5026, 5110, 5123, + 5752, 5763, 5788, 5794, 5868, 6018, 6069, 6178, 6265, 6274, 6314, 7682, + 7837, 7842, 7931, 7938, 7959, 7962, 7967, 7970, 8007, 8010, 8015, 8018, + 8025, 8027, 8027, 8029, 8029, 8031, 8031, 8033, 8063, 8066, 8118, 8120, + 8126, 8128, 8128, 8132, 8134, 8136, 8142, 8146, 8149, 8152, 8157, 8162, + 8174, 8180, 8182, 8184, 8190, 8321, 8321, 8452, 8452, 8457, 8457, 8460, + 8469, 8471, 8471, 8475, 8479, 8486, 8486, 8488, 8488, 8490, 8490, 8492, + 8495, 8497, 8499, 8501, 8507, 8546, 8581, 12295, 12297, 12323, 12331, 12339, + 12343, 12346, 12348, 12355, 12438, 12447, 12448, 12451, 12540, 12542, 12544, + 12551, 12590, 12595, 12688, 12706, 12729, 13314, 19905, 19970, 42126, 44034, + 44034, 55205, 55205, 63746, 64047, 64258, 64264, 64277, 64281, 64287, 64287, + 64289, 64298, 64300, 64312, 64314, 64318, 64320, 64320, 64322, 64323, 64325, + 64326, 64328, 64435, 64469, 64831, 64850, 64913, 64916, 64969, 65010, 65021, + 65138, 65140, 65142, 65142, 65144, 65278, 65315, 65340, 65347, 65372, 65384, + 65472, 65476, 65481, 65484, 65489, 65492, 65497, 65500, 65502, 102, 2, + 770, 848, 866, 868, 1157, 1160, 1427, 1443, 1445, 1467, 1469, 1471, 1473, + 1473, 1475, 1476, 1478, 1478, 1613, 1623, 1650, 1650, 1752, 1758, 1761, + 1766, 1769, 1770, 1772, 1775, 1811, 1811, 1842, 1868, 1960, 1970, 2307, + 2309, 2366, 2366, 2368, 2383, 2387, 2390, 2404, 2405, 2435, 2437, 2494, + 2502, 2505, 2506, 2509, 2511, 2521, 2521, 2532, 2533, 2564, 2564, 2622, + 2622, 2624, 2628, 2633, 2634, 2637, 2639, 2674, 2675, 2691, 2693, 2750, + 2750, 2752, 2759, 2761, 2763, 2765, 2767, 2819, 2821, 2878, 2878, 2880, + 2885, 2889, 2890, 2893, 2895, 2904, 2905, 2948, 2949, 3008, 3012, 3016, + 3018, 3020, 3023, 3033, 3033, 3075, 3077, 3136, 3142, 3144, 3146, 3148, + 3151, 3159, 3160, 3204, 3205, 3264, 3270, 3272, 3274, 3276, 3279, 3287, + 3288, 3332, 3333, 3392, 3397, 3400, 3402, 3404, 3407, 3417, 3417, 3460, + 3461, 3532, 3532, 3537, 3542, 3544, 3544, 3546, 3553, 3572, 3573, 3635, + 3635, 3638, 3644, 3657, 3664, 3763, 3763, 3766, 3771, 3773, 3774, 3786, + 3791, 3866, 3867, 3895, 3895, 3897, 3897, 3899, 3899, 3904, 3905, 3955, + 3974, 3976, 3977, 3986, 3993, 3995, 4030, 4040, 4040, 4142, 4148, 4152, + 4155, 4184, 4187, 6070, 6101, 6315, 6315, 8402, 8414, 8419, 8419, 12332, + 12337, 12443, 12444, 64288, 64288, 65058, 65061, 22, 2, 50, 59, 1634, 1643, + 1778, 1787, 2408, 2417, 2536, 2545, 2664, 2673, 2792, 2801, 2920, 2929, + 3049, 3057, 3176, 3185, 3304, 3313, 3432, 3441, 3666, 3675, 3794, 3803, + 3874, 3883, 4162, 4171, 4971, 4979, 6114, 6123, 6162, 6171, 65298, 65307, + 9, 2, 97, 97, 8257, 8258, 12541, 12541, 65077, 65078, 65103, 65105, 65345, + 65345, 65383, 65383, 8, 2, 12, 12, 15, 15, 44, 44, 49, 49, 93, 94, 8234, + 8235, 7, 2, 12, 12, 15, 15, 49, 49, 93, 94, 8234, 8235, 6, 2, 12, 12, 15, + 15, 94, 95, 8234, 8235, 2, 1211, 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, 3, 311, 3, 2, 2, 2, + 5, 325, 3, 2, 2, 2, 7, 336, 3, 2, 2, 2, 9, 352, 3, 2, 2, 2, 11, 354, 3, + 2, 2, 2, 13, 356, 3, 2, 2, 2, 15, 358, 3, 2, 2, 2, 17, 360, 3, 2, 2, 2, + 19, 363, 3, 2, 2, 2, 21, 366, 3, 2, 2, 2, 23, 368, 3, 2, 2, 2, 25, 370, + 3, 2, 2, 2, 27, 372, 3, 2, 2, 2, 29, 374, 3, 2, 2, 2, 31, 376, 3, 2, 2, + 2, 33, 380, 3, 2, 2, 2, 35, 382, 3, 2, 2, 2, 37, 385, 3, 2, 2, 2, 39, 388, + 3, 2, 2, 2, 41, 390, 3, 2, 2, 2, 43, 392, 3, 2, 2, 2, 45, 394, 3, 2, 2, + 2, 47, 396, 3, 2, 2, 2, 49, 398, 3, 2, 2, 2, 51, 400, 3, 2, 2, 2, 53, 402, + 3, 2, 2, 2, 55, 405, 3, 2, 2, 2, 57, 408, 3, 2, 2, 2, 59, 412, 3, 2, 2, + 2, 61, 414, 3, 2, 2, 2, 63, 416, 3, 2, 2, 2, 65, 419, 3, 2, 2, 2, 67, 422, + 3, 2, 2, 2, 69, 425, 3, 2, 2, 2, 71, 428, 3, 2, 2, 2, 73, 432, 3, 2, 2, + 2, 75, 436, 3, 2, 2, 2, 77, 438, 3, 2, 2, 2, 79, 440, 3, 2, 2, 2, 81, 442, + 3, 2, 2, 2, 83, 445, 3, 2, 2, 2, 85, 448, 3, 2, 2, 2, 87, 451, 3, 2, 2, + 2, 89, 454, 3, 2, 2, 2, 91, 457, 3, 2, 2, 2, 93, 460, 3, 2, 2, 2, 95, 463, + 3, 2, 2, 2, 97, 467, 3, 2, 2, 2, 99, 471, 3, 2, 2, 2, 101, 476, 3, 2, 2, + 2, 103, 479, 3, 2, 2, 2, 105, 482, 3, 2, 2, 2, 107, 485, 3, 2, 2, 2, 109, + 488, 3, 2, 2, 2, 111, 502, 3, 2, 2, 2, 113, 528, 3, 2, 2, 2, 115, 530, + 3, 2, 2, 2, 117, 537, 3, 2, 2, 2, 119, 545, 3, 2, 2, 2, 121, 552, 3, 2, + 2, 2, 123, 559, 3, 2, 2, 2, 125, 565, 3, 2, 2, 2, 127, 568, 3, 2, 2, 2, + 129, 579, 3, 2, 2, 2, 131, 586, 3, 2, 2, 2, 133, 591, 3, 2, 2, 2, 135, + 596, 3, 2, 2, 2, 137, 600, 3, 2, 2, 2, 139, 604, 3, 2, 2, 2, 141, 610, + 3, 2, 2, 2, 143, 618, 3, 2, 2, 2, 145, 625, 3, 2, 2, 2, 147, 630, 3, 2, + 2, 2, 149, 639, 3, 2, 2, 2, 151, 643, 3, 2, 2, 2, 153, 650, 3, 2, 2, 2, + 155, 656, 3, 2, 2, 2, 157, 665, 3, 2, 2, 2, 159, 674, 3, 2, 2, 2, 161, + 679, 3, 2, 2, 2, 163, 684, 3, 2, 2, 2, 165, 692, 3, 2, 2, 2, 167, 695, + 3, 2, 2, 2, 169, 701, 3, 2, 2, 2, 171, 708, 3, 2, 2, 2, 173, 711, 3, 2, + 2, 2, 175, 715, 3, 2, 2, 2, 177, 718, 3, 2, 2, 2, 179, 723, 3, 2, 2, 2, + 181, 732, 3, 2, 2, 2, 183, 738, 3, 2, 2, 2, 185, 744, 3, 2, 2, 2, 187, + 749, 3, 2, 2, 2, 189, 757, 3, 2, 2, 2, 191, 763, 3, 2, 2, 2, 193, 769, + 3, 2, 2, 2, 195, 776, 3, 2, 2, 2, 197, 783, 3, 2, 2, 2, 199, 794, 3, 2, + 2, 2, 201, 798, 3, 2, 2, 2, 203, 806, 3, 2, 2, 2, 205, 813, 3, 2, 2, 2, + 207, 823, 3, 2, 2, 2, 209, 831, 3, 2, 2, 2, 211, 841, 3, 2, 2, 2, 213, + 848, 3, 2, 2, 2, 215, 854, 3, 2, 2, 2, 217, 858, 3, 2, 2, 2, 219, 865, + 3, 2, 2, 2, 221, 873, 3, 2, 2, 2, 223, 880, 3, 2, 2, 2, 225, 887, 3, 2, + 2, 2, 227, 892, 3, 2, 2, 2, 229, 897, 3, 2, 2, 2, 231, 902, 3, 2, 2, 2, + 233, 914, 3, 2, 2, 2, 235, 924, 3, 2, 2, 2, 237, 932, 3, 2, 2, 2, 239, + 939, 3, 2, 2, 2, 241, 947, 3, 2, 2, 2, 243, 956, 3, 2, 2, 2, 245, 959, + 3, 2, 2, 2, 247, 961, 3, 2, 2, 2, 249, 984, 3, 2, 2, 2, 251, 988, 3, 2, + 2, 2, 253, 1000, 3, 2, 2, 2, 255, 1006, 3, 2, 2, 2, 257, 1010, 3, 2, 2, + 2, 259, 1027, 3, 2, 2, 2, 261, 1049, 3, 2, 2, 2, 263, 1057, 3, 2, 2, 2, + 265, 1063, 3, 2, 2, 2, 267, 1070, 3, 2, 2, 2, 269, 1074, 3, 2, 2, 2, 271, + 1076, 3, 2, 2, 2, 273, 1080, 3, 2, 2, 2, 275, 1086, 3, 2, 2, 2, 277, 1095, + 3, 2, 2, 2, 279, 1097, 3, 2, 2, 2, 281, 1101, 3, 2, 2, 2, 283, 1103, 3, + 2, 2, 2, 285, 1106, 3, 2, 2, 2, 287, 1116, 3, 2, 2, 2, 289, 1118, 3, 2, + 2, 2, 291, 1132, 3, 2, 2, 2, 293, 1138, 3, 2, 2, 2, 295, 1141, 3, 2, 2, + 2, 297, 1144, 3, 2, 2, 2, 299, 1147, 3, 2, 2, 2, 301, 1150, 3, 2, 2, 2, + 303, 1162, 3, 2, 2, 2, 305, 1174, 3, 2, 2, 2, 307, 1178, 3, 2, 2, 2, 309, + 1180, 3, 2, 2, 2, 311, 312, 7, 49, 2, 2, 312, 313, 7, 44, 2, 2, 313, 317, + 3, 2, 2, 2, 314, 316, 11, 2, 2, 2, 315, 314, 3, 2, 2, 2, 316, 319, 3, 2, + 2, 2, 317, 318, 3, 2, 2, 2, 317, 315, 3, 2, 2, 2, 318, 320, 3, 2, 2, 2, + 319, 317, 3, 2, 2, 2, 320, 321, 7, 44, 2, 2, 321, 322, 7, 49, 2, 2, 322, + 323, 3, 2, 2, 2, 323, 324, 8, 2, 2, 2, 324, 4, 3, 2, 2, 2, 325, 326, 7, + 49, 2, 2, 326, 327, 7, 49, 2, 2, 327, 331, 3, 2, 2, 2, 328, 330, 10, 2, + 2, 2, 329, 328, 3, 2, 2, 2, 330, 333, 3, 2, 2, 2, 331, 329, 3, 2, 2, 2, + 331, 332, 3, 2, 2, 2, 332, 334, 3, 2, 2, 2, 333, 331, 3, 2, 2, 2, 334, + 335, 8, 3, 2, 2, 335, 6, 3, 2, 2, 2, 336, 337, 7, 49, 2, 2, 337, 341, 5, + 303, 152, 2, 338, 340, 5, 305, 153, 2, 339, 338, 3, 2, 2, 2, 340, 343, + 3, 2, 2, 2, 341, 339, 3, 2, 2, 2, 341, 342, 3, 2, 2, 2, 342, 344, 3, 2, + 2, 2, 343, 341, 3, 2, 2, 2, 344, 345, 6, 4, 2, 2, 345, 349, 7, 49, 2, 2, + 346, 348, 5, 291, 146, 2, 347, 346, 3, 2, 2, 2, 348, 351, 3, 2, 2, 2, 349, + 347, 3, 2, 2, 2, 349, 350, 3, 2, 2, 2, 350, 8, 3, 2, 2, 2, 351, 349, 3, + 2, 2, 2, 352, 353, 7, 93, 2, 2, 353, 10, 3, 2, 2, 2, 354, 355, 7, 95, 2, + 2, 355, 12, 3, 2, 2, 2, 356, 357, 7, 42, 2, 2, 357, 14, 3, 2, 2, 2, 358, + 359, 7, 43, 2, 2, 359, 16, 3, 2, 2, 2, 360, 361, 7, 125, 2, 2, 361, 362, + 8, 9, 3, 2, 362, 18, 3, 2, 2, 2, 363, 364, 7, 127, 2, 2, 364, 365, 8, 10, + 4, 2, 365, 20, 3, 2, 2, 2, 366, 367, 7, 61, 2, 2, 367, 22, 3, 2, 2, 2, + 368, 369, 7, 46, 2, 2, 369, 24, 3, 2, 2, 2, 370, 371, 7, 63, 2, 2, 371, + 26, 3, 2, 2, 2, 372, 373, 7, 65, 2, 2, 373, 28, 3, 2, 2, 2, 374, 375, 7, + 60, 2, 2, 375, 30, 3, 2, 2, 2, 376, 377, 7, 48, 2, 2, 377, 378, 7, 48, + 2, 2, 378, 379, 7, 48, 2, 2, 379, 32, 3, 2, 2, 2, 380, 381, 7, 48, 2, 2, + 381, 34, 3, 2, 2, 2, 382, 383, 7, 45, 2, 2, 383, 384, 7, 45, 2, 2, 384, + 36, 3, 2, 2, 2, 385, 386, 7, 47, 2, 2, 386, 387, 7, 47, 2, 2, 387, 38, + 3, 2, 2, 2, 388, 389, 7, 45, 2, 2, 389, 40, 3, 2, 2, 2, 390, 391, 7, 47, + 2, 2, 391, 42, 3, 2, 2, 2, 392, 393, 7, 128, 2, 2, 393, 44, 3, 2, 2, 2, + 394, 395, 7, 35, 2, 2, 395, 46, 3, 2, 2, 2, 396, 397, 7, 44, 2, 2, 397, + 48, 3, 2, 2, 2, 398, 399, 7, 49, 2, 2, 399, 50, 3, 2, 2, 2, 400, 401, 7, + 39, 2, 2, 401, 52, 3, 2, 2, 2, 402, 403, 7, 64, 2, 2, 403, 404, 7, 64, + 2, 2, 404, 54, 3, 2, 2, 2, 405, 406, 7, 62, 2, 2, 406, 407, 7, 62, 2, 2, + 407, 56, 3, 2, 2, 2, 408, 409, 7, 64, 2, 2, 409, 410, 7, 64, 2, 2, 410, + 411, 7, 64, 2, 2, 411, 58, 3, 2, 2, 2, 412, 413, 7, 62, 2, 2, 413, 60, + 3, 2, 2, 2, 414, 415, 7, 64, 2, 2, 415, 62, 3, 2, 2, 2, 416, 417, 7, 62, + 2, 2, 417, 418, 7, 63, 2, 2, 418, 64, 3, 2, 2, 2, 419, 420, 7, 64, 2, 2, + 420, 421, 7, 63, 2, 2, 421, 66, 3, 2, 2, 2, 422, 423, 7, 63, 2, 2, 423, + 424, 7, 63, 2, 2, 424, 68, 3, 2, 2, 2, 425, 426, 7, 35, 2, 2, 426, 427, + 7, 63, 2, 2, 427, 70, 3, 2, 2, 2, 428, 429, 7, 63, 2, 2, 429, 430, 7, 63, + 2, 2, 430, 431, 7, 63, 2, 2, 431, 72, 3, 2, 2, 2, 432, 433, 7, 35, 2, 2, + 433, 434, 7, 63, 2, 2, 434, 435, 7, 63, 2, 2, 435, 74, 3, 2, 2, 2, 436, + 437, 7, 40, 2, 2, 437, 76, 3, 2, 2, 2, 438, 439, 7, 96, 2, 2, 439, 78, + 3, 2, 2, 2, 440, 441, 7, 126, 2, 2, 441, 80, 3, 2, 2, 2, 442, 443, 7, 40, + 2, 2, 443, 444, 7, 40, 2, 2, 444, 82, 3, 2, 2, 2, 445, 446, 7, 126, 2, + 2, 446, 447, 7, 126, 2, 2, 447, 84, 3, 2, 2, 2, 448, 449, 7, 44, 2, 2, + 449, 450, 7, 63, 2, 2, 450, 86, 3, 2, 2, 2, 451, 452, 7, 49, 2, 2, 452, + 453, 7, 63, 2, 2, 453, 88, 3, 2, 2, 2, 454, 455, 7, 39, 2, 2, 455, 456, + 7, 63, 2, 2, 456, 90, 3, 2, 2, 2, 457, 458, 7, 45, 2, 2, 458, 459, 7, 63, + 2, 2, 459, 92, 3, 2, 2, 2, 460, 461, 7, 47, 2, 2, 461, 462, 7, 63, 2, 2, + 462, 94, 3, 2, 2, 2, 463, 464, 7, 62, 2, 2, 464, 465, 7, 62, 2, 2, 465, + 466, 7, 63, 2, 2, 466, 96, 3, 2, 2, 2, 467, 468, 7, 64, 2, 2, 468, 469, + 7, 64, 2, 2, 469, 470, 7, 63, 2, 2, 470, 98, 3, 2, 2, 2, 471, 472, 7, 64, + 2, 2, 472, 473, 7, 64, 2, 2, 473, 474, 7, 64, 2, 2, 474, 475, 7, 63, 2, + 2, 475, 100, 3, 2, 2, 2, 476, 477, 7, 40, 2, 2, 477, 478, 7, 63, 2, 2, + 478, 102, 3, 2, 2, 2, 479, 480, 7, 96, 2, 2, 480, 481, 7, 63, 2, 2, 481, + 104, 3, 2, 2, 2, 482, 483, 7, 126, 2, 2, 483, 484, 7, 63, 2, 2, 484, 106, + 3, 2, 2, 2, 485, 486, 7, 63, 2, 2, 486, 487, 7, 64, 2, 2, 487, 108, 3, + 2, 2, 2, 488, 489, 7, 112, 2, 2, 489, 490, 7, 119, 2, 2, 490, 491, 7, 110, + 2, 2, 491, 492, 7, 110, 2, 2, 492, 110, 3, 2, 2, 2, 493, 494, 7, 118, 2, + 2, 494, 495, 7, 116, 2, 2, 495, 496, 7, 119, 2, 2, 496, 503, 7, 103, 2, + 2, 497, 498, 7, 104, 2, 2, 498, 499, 7, 99, 2, 2, 499, 500, 7, 110, 2, + 2, 500, 501, 7, 117, 2, 2, 501, 503, 7, 103, 2, 2, 502, 493, 3, 2, 2, 2, + 502, 497, 3, 2, 2, 2, 503, 112, 3, 2, 2, 2, 504, 505, 5, 287, 144, 2, 505, + 509, 7, 48, 2, 2, 506, 508, 9, 3, 2, 2, 507, 506, 3, 2, 2, 2, 508, 511, + 3, 2, 2, 2, 509, 507, 3, 2, 2, 2, 509, 510, 3, 2, 2, 2, 510, 513, 3, 2, + 2, 2, 511, 509, 3, 2, 2, 2, 512, 514, 5, 289, 145, 2, 513, 512, 3, 2, 2, + 2, 513, 514, 3, 2, 2, 2, 514, 529, 3, 2, 2, 2, 515, 517, 7, 48, 2, 2, 516, + 518, 9, 3, 2, 2, 517, 516, 3, 2, 2, 2, 518, 519, 3, 2, 2, 2, 519, 517, + 3, 2, 2, 2, 519, 520, 3, 2, 2, 2, 520, 522, 3, 2, 2, 2, 521, 523, 5, 289, + 145, 2, 522, 521, 3, 2, 2, 2, 522, 523, 3, 2, 2, 2, 523, 529, 3, 2, 2, + 2, 524, 526, 5, 287, 144, 2, 525, 527, 5, 289, 145, 2, 526, 525, 3, 2, + 2, 2, 526, 527, 3, 2, 2, 2, 527, 529, 3, 2, 2, 2, 528, 504, 3, 2, 2, 2, + 528, 515, 3, 2, 2, 2, 528, 524, 3, 2, 2, 2, 529, 114, 3, 2, 2, 2, 530, + 531, 7, 50, 2, 2, 531, 533, 9, 4, 2, 2, 532, 534, 5, 285, 143, 2, 533, + 532, 3, 2, 2, 2, 534, 535, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 535, 536, + 3, 2, 2, 2, 536, 116, 3, 2, 2, 2, 537, 539, 7, 50, 2, 2, 538, 540, 9, 5, + 2, 2, 539, 538, 3, 2, 2, 2, 540, 541, 3, 2, 2, 2, 541, 539, 3, 2, 2, 2, + 541, 542, 3, 2, 2, 2, 542, 543, 3, 2, 2, 2, 543, 544, 6, 59, 3, 2, 544, + 118, 3, 2, 2, 2, 545, 546, 7, 50, 2, 2, 546, 548, 9, 6, 2, 2, 547, 549, + 9, 5, 2, 2, 548, 547, 3, 2, 2, 2, 549, 550, 3, 2, 2, 2, 550, 548, 3, 2, + 2, 2, 550, 551, 3, 2, 2, 2, 551, 120, 3, 2, 2, 2, 552, 553, 7, 50, 2, 2, + 553, 555, 9, 7, 2, 2, 554, 556, 9, 8, 2, 2, 555, 554, 3, 2, 2, 2, 556, + 557, 3, 2, 2, 2, 557, 555, 3, 2, 2, 2, 557, 558, 3, 2, 2, 2, 558, 122, + 3, 2, 2, 2, 559, 560, 7, 100, 2, 2, 560, 561, 7, 116, 2, 2, 561, 562, 7, + 103, 2, 2, 562, 563, 7, 99, 2, 2, 563, 564, 7, 109, 2, 2, 564, 124, 3, + 2, 2, 2, 565, 566, 7, 102, 2, 2, 566, 567, 7, 113, 2, 2, 567, 126, 3, 2, + 2, 2, 568, 569, 7, 107, 2, 2, 569, 570, 7, 112, 2, 2, 570, 571, 7, 117, + 2, 2, 571, 572, 7, 118, 2, 2, 572, 573, 7, 99, 2, 2, 573, 574, 7, 112, + 2, 2, 574, 575, 7, 101, 2, 2, 575, 576, 7, 103, 2, 2, 576, 577, 7, 113, + 2, 2, 577, 578, 7, 104, 2, 2, 578, 128, 3, 2, 2, 2, 579, 580, 7, 118, 2, + 2, 580, 581, 7, 123, 2, 2, 581, 582, 7, 114, 2, 2, 582, 583, 7, 103, 2, + 2, 583, 584, 7, 113, 2, 2, 584, 585, 7, 104, 2, 2, 585, 130, 3, 2, 2, 2, + 586, 587, 7, 101, 2, 2, 587, 588, 7, 99, 2, 2, 588, 589, 7, 117, 2, 2, + 589, 590, 7, 103, 2, 2, 590, 132, 3, 2, 2, 2, 591, 592, 7, 103, 2, 2, 592, + 593, 7, 110, 2, 2, 593, 594, 7, 117, 2, 2, 594, 595, 7, 103, 2, 2, 595, + 134, 3, 2, 2, 2, 596, 597, 7, 112, 2, 2, 597, 598, 7, 103, 2, 2, 598, 599, + 7, 121, 2, 2, 599, 136, 3, 2, 2, 2, 600, 601, 7, 120, 2, 2, 601, 602, 7, + 99, 2, 2, 602, 603, 7, 116, 2, 2, 603, 138, 3, 2, 2, 2, 604, 605, 7, 101, + 2, 2, 605, 606, 7, 99, 2, 2, 606, 607, 7, 118, 2, 2, 607, 608, 7, 101, + 2, 2, 608, 609, 7, 106, 2, 2, 609, 140, 3, 2, 2, 2, 610, 611, 7, 104, 2, + 2, 611, 612, 7, 107, 2, 2, 612, 613, 7, 112, 2, 2, 613, 614, 7, 99, 2, + 2, 614, 615, 7, 110, 2, 2, 615, 616, 7, 110, 2, 2, 616, 617, 7, 123, 2, + 2, 617, 142, 3, 2, 2, 2, 618, 619, 7, 116, 2, 2, 619, 620, 7, 103, 2, 2, + 620, 621, 7, 118, 2, 2, 621, 622, 7, 119, 2, 2, 622, 623, 7, 116, 2, 2, + 623, 624, 7, 112, 2, 2, 624, 144, 3, 2, 2, 2, 625, 626, 7, 120, 2, 2, 626, + 627, 7, 113, 2, 2, 627, 628, 7, 107, 2, 2, 628, 629, 7, 102, 2, 2, 629, + 146, 3, 2, 2, 2, 630, 631, 7, 101, 2, 2, 631, 632, 7, 113, 2, 2, 632, 633, + 7, 112, 2, 2, 633, 634, 7, 118, 2, 2, 634, 635, 7, 107, 2, 2, 635, 636, + 7, 112, 2, 2, 636, 637, 7, 119, 2, 2, 637, 638, 7, 103, 2, 2, 638, 148, + 3, 2, 2, 2, 639, 640, 7, 104, 2, 2, 640, 641, 7, 113, 2, 2, 641, 642, 7, + 116, 2, 2, 642, 150, 3, 2, 2, 2, 643, 644, 7, 117, 2, 2, 644, 645, 7, 121, + 2, 2, 645, 646, 7, 107, 2, 2, 646, 647, 7, 118, 2, 2, 647, 648, 7, 101, + 2, 2, 648, 649, 7, 106, 2, 2, 649, 152, 3, 2, 2, 2, 650, 651, 7, 121, 2, + 2, 651, 652, 7, 106, 2, 2, 652, 653, 7, 107, 2, 2, 653, 654, 7, 110, 2, + 2, 654, 655, 7, 103, 2, 2, 655, 154, 3, 2, 2, 2, 656, 657, 7, 102, 2, 2, + 657, 658, 7, 103, 2, 2, 658, 659, 7, 100, 2, 2, 659, 660, 7, 119, 2, 2, + 660, 661, 7, 105, 2, 2, 661, 662, 7, 105, 2, 2, 662, 663, 7, 103, 2, 2, + 663, 664, 7, 116, 2, 2, 664, 156, 3, 2, 2, 2, 665, 666, 7, 104, 2, 2, 666, + 667, 7, 119, 2, 2, 667, 668, 7, 112, 2, 2, 668, 669, 7, 101, 2, 2, 669, + 670, 7, 118, 2, 2, 670, 671, 7, 107, 2, 2, 671, 672, 7, 113, 2, 2, 672, + 673, 7, 112, 2, 2, 673, 158, 3, 2, 2, 2, 674, 675, 7, 118, 2, 2, 675, 676, + 7, 106, 2, 2, 676, 677, 7, 107, 2, 2, 677, 678, 7, 117, 2, 2, 678, 160, + 3, 2, 2, 2, 679, 680, 7, 121, 2, 2, 680, 681, 7, 107, 2, 2, 681, 682, 7, + 118, 2, 2, 682, 683, 7, 106, 2, 2, 683, 162, 3, 2, 2, 2, 684, 685, 7, 102, + 2, 2, 685, 686, 7, 103, 2, 2, 686, 687, 7, 104, 2, 2, 687, 688, 7, 99, + 2, 2, 688, 689, 7, 119, 2, 2, 689, 690, 7, 110, 2, 2, 690, 691, 7, 118, + 2, 2, 691, 164, 3, 2, 2, 2, 692, 693, 7, 107, 2, 2, 693, 694, 7, 104, 2, + 2, 694, 166, 3, 2, 2, 2, 695, 696, 7, 118, 2, 2, 696, 697, 7, 106, 2, 2, + 697, 698, 7, 116, 2, 2, 698, 699, 7, 113, 2, 2, 699, 700, 7, 121, 2, 2, + 700, 168, 3, 2, 2, 2, 701, 702, 7, 102, 2, 2, 702, 703, 7, 103, 2, 2, 703, + 704, 7, 110, 2, 2, 704, 705, 7, 103, 2, 2, 705, 706, 7, 118, 2, 2, 706, + 707, 7, 103, 2, 2, 707, 170, 3, 2, 2, 2, 708, 709, 7, 107, 2, 2, 709, 710, + 7, 112, 2, 2, 710, 172, 3, 2, 2, 2, 711, 712, 7, 118, 2, 2, 712, 713, 7, + 116, 2, 2, 713, 714, 7, 123, 2, 2, 714, 174, 3, 2, 2, 2, 715, 716, 7, 99, + 2, 2, 716, 717, 7, 117, 2, 2, 717, 176, 3, 2, 2, 2, 718, 719, 7, 104, 2, + 2, 719, 720, 7, 116, 2, 2, 720, 721, 7, 113, 2, 2, 721, 722, 7, 111, 2, + 2, 722, 178, 3, 2, 2, 2, 723, 724, 7, 116, 2, 2, 724, 725, 7, 103, 2, 2, + 725, 726, 7, 99, 2, 2, 726, 727, 7, 102, 2, 2, 727, 728, 7, 113, 2, 2, + 728, 729, 7, 112, 2, 2, 729, 730, 7, 110, 2, 2, 730, 731, 7, 123, 2, 2, + 731, 180, 3, 2, 2, 2, 732, 733, 7, 99, 2, 2, 733, 734, 7, 117, 2, 2, 734, + 735, 7, 123, 2, 2, 735, 736, 7, 112, 2, 2, 736, 737, 7, 101, 2, 2, 737, + 182, 3, 2, 2, 2, 738, 739, 7, 101, 2, 2, 739, 740, 7, 110, 2, 2, 740, 741, + 7, 99, 2, 2, 741, 742, 7, 117, 2, 2, 742, 743, 7, 117, 2, 2, 743, 184, + 3, 2, 2, 2, 744, 745, 7, 103, 2, 2, 745, 746, 7, 112, 2, 2, 746, 747, 7, + 119, 2, 2, 747, 748, 7, 111, 2, 2, 748, 186, 3, 2, 2, 2, 749, 750, 7, 103, + 2, 2, 750, 751, 7, 122, 2, 2, 751, 752, 7, 118, 2, 2, 752, 753, 7, 103, + 2, 2, 753, 754, 7, 112, 2, 2, 754, 755, 7, 102, 2, 2, 755, 756, 7, 117, + 2, 2, 756, 188, 3, 2, 2, 2, 757, 758, 7, 117, 2, 2, 758, 759, 7, 119, 2, + 2, 759, 760, 7, 114, 2, 2, 760, 761, 7, 103, 2, 2, 761, 762, 7, 116, 2, + 2, 762, 190, 3, 2, 2, 2, 763, 764, 7, 101, 2, 2, 764, 765, 7, 113, 2, 2, + 765, 766, 7, 112, 2, 2, 766, 767, 7, 117, 2, 2, 767, 768, 7, 118, 2, 2, + 768, 192, 3, 2, 2, 2, 769, 770, 7, 103, 2, 2, 770, 771, 7, 122, 2, 2, 771, + 772, 7, 114, 2, 2, 772, 773, 7, 113, 2, 2, 773, 774, 7, 116, 2, 2, 774, + 775, 7, 118, 2, 2, 775, 194, 3, 2, 2, 2, 776, 777, 7, 107, 2, 2, 777, 778, + 7, 111, 2, 2, 778, 779, 7, 114, 2, 2, 779, 780, 7, 113, 2, 2, 780, 781, + 7, 116, 2, 2, 781, 782, 7, 118, 2, 2, 782, 196, 3, 2, 2, 2, 783, 784, 7, + 107, 2, 2, 784, 785, 7, 111, 2, 2, 785, 786, 7, 114, 2, 2, 786, 787, 7, + 110, 2, 2, 787, 788, 7, 103, 2, 2, 788, 789, 7, 111, 2, 2, 789, 790, 7, + 103, 2, 2, 790, 791, 7, 112, 2, 2, 791, 792, 7, 118, 2, 2, 792, 793, 7, + 117, 2, 2, 793, 198, 3, 2, 2, 2, 794, 795, 7, 110, 2, 2, 795, 796, 7, 103, + 2, 2, 796, 797, 7, 118, 2, 2, 797, 200, 3, 2, 2, 2, 798, 799, 7, 114, 2, + 2, 799, 800, 7, 116, 2, 2, 800, 801, 7, 107, 2, 2, 801, 802, 7, 120, 2, + 2, 802, 803, 7, 99, 2, 2, 803, 804, 7, 118, 2, 2, 804, 805, 7, 103, 2, + 2, 805, 202, 3, 2, 2, 2, 806, 807, 7, 114, 2, 2, 807, 808, 7, 119, 2, 2, + 808, 809, 7, 100, 2, 2, 809, 810, 7, 110, 2, 2, 810, 811, 7, 107, 2, 2, + 811, 812, 7, 101, 2, 2, 812, 204, 3, 2, 2, 2, 813, 814, 7, 107, 2, 2, 814, + 815, 7, 112, 2, 2, 815, 816, 7, 118, 2, 2, 816, 817, 7, 103, 2, 2, 817, + 818, 7, 116, 2, 2, 818, 819, 7, 104, 2, 2, 819, 820, 7, 99, 2, 2, 820, + 821, 7, 101, 2, 2, 821, 822, 7, 103, 2, 2, 822, 206, 3, 2, 2, 2, 823, 824, + 7, 114, 2, 2, 824, 825, 7, 99, 2, 2, 825, 826, 7, 101, 2, 2, 826, 827, + 7, 109, 2, 2, 827, 828, 7, 99, 2, 2, 828, 829, 7, 105, 2, 2, 829, 830, + 7, 103, 2, 2, 830, 208, 3, 2, 2, 2, 831, 832, 7, 114, 2, 2, 832, 833, 7, + 116, 2, 2, 833, 834, 7, 113, 2, 2, 834, 835, 7, 118, 2, 2, 835, 836, 7, + 103, 2, 2, 836, 837, 7, 101, 2, 2, 837, 838, 7, 118, 2, 2, 838, 839, 7, + 103, 2, 2, 839, 840, 7, 102, 2, 2, 840, 210, 3, 2, 2, 2, 841, 842, 7, 117, + 2, 2, 842, 843, 7, 118, 2, 2, 843, 844, 7, 99, 2, 2, 844, 845, 7, 118, + 2, 2, 845, 846, 7, 107, 2, 2, 846, 847, 7, 101, 2, 2, 847, 212, 3, 2, 2, + 2, 848, 849, 7, 123, 2, 2, 849, 850, 7, 107, 2, 2, 850, 851, 7, 103, 2, + 2, 851, 852, 7, 110, 2, 2, 852, 853, 7, 102, 2, 2, 853, 214, 3, 2, 2, 2, + 854, 855, 7, 99, 2, 2, 855, 856, 7, 112, 2, 2, 856, 857, 7, 123, 2, 2, + 857, 216, 3, 2, 2, 2, 858, 859, 7, 112, 2, 2, 859, 860, 7, 119, 2, 2, 860, + 861, 7, 111, 2, 2, 861, 862, 7, 100, 2, 2, 862, 863, 7, 103, 2, 2, 863, + 864, 7, 116, 2, 2, 864, 218, 3, 2, 2, 2, 865, 866, 7, 100, 2, 2, 866, 867, + 7, 113, 2, 2, 867, 868, 7, 113, 2, 2, 868, 869, 7, 110, 2, 2, 869, 870, + 7, 103, 2, 2, 870, 871, 7, 99, 2, 2, 871, 872, 7, 112, 2, 2, 872, 220, + 3, 2, 2, 2, 873, 874, 7, 117, 2, 2, 874, 875, 7, 118, 2, 2, 875, 876, 7, + 116, 2, 2, 876, 877, 7, 107, 2, 2, 877, 878, 7, 112, 2, 2, 878, 879, 7, + 105, 2, 2, 879, 222, 3, 2, 2, 2, 880, 881, 7, 117, 2, 2, 881, 882, 7, 123, + 2, 2, 882, 883, 7, 111, 2, 2, 883, 884, 7, 100, 2, 2, 884, 885, 7, 113, + 2, 2, 885, 886, 7, 110, 2, 2, 886, 224, 3, 2, 2, 2, 887, 888, 7, 118, 2, + 2, 888, 889, 7, 123, 2, 2, 889, 890, 7, 114, 2, 2, 890, 891, 7, 103, 2, + 2, 891, 226, 3, 2, 2, 2, 892, 893, 7, 105, 2, 2, 893, 894, 7, 103, 2, 2, + 894, 895, 7, 118, 2, 2, 895, 896, 7, 34, 2, 2, 896, 228, 3, 2, 2, 2, 897, + 898, 7, 117, 2, 2, 898, 899, 7, 103, 2, 2, 899, 900, 7, 118, 2, 2, 900, + 901, 7, 34, 2, 2, 901, 230, 3, 2, 2, 2, 902, 903, 7, 101, 2, 2, 903, 904, + 7, 113, 2, 2, 904, 905, 7, 112, 2, 2, 905, 906, 7, 117, 2, 2, 906, 907, + 7, 118, 2, 2, 907, 908, 7, 116, 2, 2, 908, 909, 7, 119, 2, 2, 909, 910, + 7, 101, 2, 2, 910, 911, 7, 118, 2, 2, 911, 912, 7, 113, 2, 2, 912, 913, + 7, 116, 2, 2, 913, 232, 3, 2, 2, 2, 914, 915, 7, 112, 2, 2, 915, 916, 7, + 99, 2, 2, 916, 917, 7, 111, 2, 2, 917, 918, 7, 103, 2, 2, 918, 919, 7, + 117, 2, 2, 919, 920, 7, 114, 2, 2, 920, 921, 7, 99, 2, 2, 921, 922, 7, + 101, 2, 2, 922, 923, 7, 103, 2, 2, 923, 234, 3, 2, 2, 2, 924, 925, 7, 116, + 2, 2, 925, 926, 7, 103, 2, 2, 926, 927, 7, 115, 2, 2, 927, 928, 7, 119, + 2, 2, 928, 929, 7, 107, 2, 2, 929, 930, 7, 116, 2, 2, 930, 931, 7, 103, + 2, 2, 931, 236, 3, 2, 2, 2, 932, 933, 7, 111, 2, 2, 933, 934, 7, 113, 2, + 2, 934, 935, 7, 102, 2, 2, 935, 936, 7, 119, 2, 2, 936, 937, 7, 110, 2, + 2, 937, 938, 7, 103, 2, 2, 938, 238, 3, 2, 2, 2, 939, 940, 7, 102, 2, 2, + 940, 941, 7, 103, 2, 2, 941, 942, 7, 101, 2, 2, 942, 943, 7, 110, 2, 2, + 943, 944, 7, 99, 2, 2, 944, 945, 7, 116, 2, 2, 945, 946, 7, 103, 2, 2, + 946, 240, 3, 2, 2, 2, 947, 948, 7, 99, 2, 2, 948, 949, 7, 100, 2, 2, 949, + 950, 7, 117, 2, 2, 950, 951, 7, 118, 2, 2, 951, 952, 7, 116, 2, 2, 952, + 953, 7, 99, 2, 2, 953, 954, 7, 101, 2, 2, 954, 955, 7, 118, 2, 2, 955, + 242, 3, 2, 2, 2, 956, 957, 7, 107, 2, 2, 957, 958, 7, 117, 2, 2, 958, 244, + 3, 2, 2, 2, 959, 960, 7, 66, 2, 2, 960, 246, 3, 2, 2, 2, 961, 965, 5, 293, + 147, 2, 962, 964, 5, 291, 146, 2, 963, 962, 3, 2, 2, 2, 964, 967, 3, 2, + 2, 2, 965, 963, 3, 2, 2, 2, 965, 966, 3, 2, 2, 2, 966, 248, 3, 2, 2, 2, + 967, 965, 3, 2, 2, 2, 968, 972, 7, 36, 2, 2, 969, 971, 5, 263, 132, 2, + 970, 969, 3, 2, 2, 2, 971, 974, 3, 2, 2, 2, 972, 970, 3, 2, 2, 2, 972, + 973, 3, 2, 2, 2, 973, 975, 3, 2, 2, 2, 974, 972, 3, 2, 2, 2, 975, 985, + 7, 36, 2, 2, 976, 980, 7, 41, 2, 2, 977, 979, 5, 265, 133, 2, 978, 977, + 3, 2, 2, 2, 979, 982, 3, 2, 2, 2, 980, 978, 3, 2, 2, 2, 980, 981, 3, 2, + 2, 2, 981, 983, 3, 2, 2, 2, 982, 980, 3, 2, 2, 2, 983, 985, 7, 41, 2, 2, + 984, 968, 3, 2, 2, 2, 984, 976, 3, 2, 2, 2, 985, 986, 3, 2, 2, 2, 986, + 987, 8, 125, 5, 2, 987, 250, 3, 2, 2, 2, 988, 994, 7, 98, 2, 2, 989, 990, + 7, 94, 2, 2, 990, 993, 7, 98, 2, 2, 991, 993, 10, 9, 2, 2, 992, 989, 3, + 2, 2, 2, 992, 991, 3, 2, 2, 2, 993, 996, 3, 2, 2, 2, 994, 992, 3, 2, 2, + 2, 994, 995, 3, 2, 2, 2, 995, 997, 3, 2, 2, 2, 996, 994, 3, 2, 2, 2, 997, + 998, 7, 98, 2, 2, 998, 252, 3, 2, 2, 2, 999, 1001, 9, 10, 2, 2, 1000, 999, + 3, 2, 2, 2, 1001, 1002, 3, 2, 2, 2, 1002, 1000, 3, 2, 2, 2, 1002, 1003, + 3, 2, 2, 2, 1003, 1004, 3, 2, 2, 2, 1004, 1005, 8, 127, 2, 2, 1005, 254, + 3, 2, 2, 2, 1006, 1007, 9, 2, 2, 2, 1007, 1008, 3, 2, 2, 2, 1008, 1009, + 8, 128, 2, 2, 1009, 256, 3, 2, 2, 2, 1010, 1011, 7, 62, 2, 2, 1011, 1012, + 7, 35, 2, 2, 1012, 1013, 7, 47, 2, 2, 1013, 1014, 7, 47, 2, 2, 1014, 1018, + 3, 2, 2, 2, 1015, 1017, 11, 2, 2, 2, 1016, 1015, 3, 2, 2, 2, 1017, 1020, + 3, 2, 2, 2, 1018, 1019, 3, 2, 2, 2, 1018, 1016, 3, 2, 2, 2, 1019, 1021, + 3, 2, 2, 2, 1020, 1018, 3, 2, 2, 2, 1021, 1022, 7, 47, 2, 2, 1022, 1023, + 7, 47, 2, 2, 1023, 1024, 7, 64, 2, 2, 1024, 1025, 3, 2, 2, 2, 1025, 1026, + 8, 129, 2, 2, 1026, 258, 3, 2, 2, 2, 1027, 1028, 7, 62, 2, 2, 1028, 1029, + 7, 35, 2, 2, 1029, 1030, 7, 93, 2, 2, 1030, 1031, 7, 69, 2, 2, 1031, 1032, + 7, 70, 2, 2, 1032, 1033, 7, 67, 2, 2, 1033, 1034, 7, 86, 2, 2, 1034, 1035, + 7, 67, 2, 2, 1035, 1036, 7, 93, 2, 2, 1036, 1040, 3, 2, 2, 2, 1037, 1039, + 11, 2, 2, 2, 1038, 1037, 3, 2, 2, 2, 1039, 1042, 3, 2, 2, 2, 1040, 1041, + 3, 2, 2, 2, 1040, 1038, 3, 2, 2, 2, 1041, 1043, 3, 2, 2, 2, 1042, 1040, + 3, 2, 2, 2, 1043, 1044, 7, 95, 2, 2, 1044, 1045, 7, 95, 2, 2, 1045, 1046, + 7, 64, 2, 2, 1046, 1047, 3, 2, 2, 2, 1047, 1048, 8, 130, 2, 2, 1048, 260, + 3, 2, 2, 2, 1049, 1050, 11, 2, 2, 2, 1050, 1051, 3, 2, 2, 2, 1051, 1052, + 8, 131, 6, 2, 1052, 262, 3, 2, 2, 2, 1053, 1058, 10, 11, 2, 2, 1054, 1055, + 7, 94, 2, 2, 1055, 1058, 5, 267, 134, 2, 1056, 1058, 5, 283, 142, 2, 1057, + 1053, 3, 2, 2, 2, 1057, 1054, 3, 2, 2, 2, 1057, 1056, 3, 2, 2, 2, 1058, + 264, 3, 2, 2, 2, 1059, 1064, 10, 12, 2, 2, 1060, 1061, 7, 94, 2, 2, 1061, + 1064, 5, 267, 134, 2, 1062, 1064, 5, 283, 142, 2, 1063, 1059, 3, 2, 2, + 2, 1063, 1060, 3, 2, 2, 2, 1063, 1062, 3, 2, 2, 2, 1064, 266, 3, 2, 2, + 2, 1065, 1071, 5, 269, 135, 2, 1066, 1071, 7, 50, 2, 2, 1067, 1071, 5, + 271, 136, 2, 1068, 1071, 5, 273, 137, 2, 1069, 1071, 5, 275, 138, 2, 1070, + 1065, 3, 2, 2, 2, 1070, 1066, 3, 2, 2, 2, 1070, 1067, 3, 2, 2, 2, 1070, + 1068, 3, 2, 2, 2, 1070, 1069, 3, 2, 2, 2, 1071, 268, 3, 2, 2, 2, 1072, + 1075, 5, 277, 139, 2, 1073, 1075, 5, 279, 140, 2, 1074, 1072, 3, 2, 2, + 2, 1074, 1073, 3, 2, 2, 2, 1075, 270, 3, 2, 2, 2, 1076, 1077, 7, 122, 2, + 2, 1077, 1078, 5, 285, 143, 2, 1078, 1079, 5, 285, 143, 2, 1079, 272, 3, + 2, 2, 2, 1080, 1081, 7, 119, 2, 2, 1081, 1082, 5, 285, 143, 2, 1082, 1083, + 5, 285, 143, 2, 1083, 1084, 5, 285, 143, 2, 1084, 1085, 5, 285, 143, 2, + 1085, 274, 3, 2, 2, 2, 1086, 1087, 7, 119, 2, 2, 1087, 1089, 7, 125, 2, + 2, 1088, 1090, 5, 285, 143, 2, 1089, 1088, 3, 2, 2, 2, 1090, 1091, 3, 2, + 2, 2, 1091, 1089, 3, 2, 2, 2, 1091, 1092, 3, 2, 2, 2, 1092, 1093, 3, 2, + 2, 2, 1093, 1094, 7, 127, 2, 2, 1094, 276, 3, 2, 2, 2, 1095, 1096, 9, 13, + 2, 2, 1096, 278, 3, 2, 2, 2, 1097, 1098, 10, 14, 2, 2, 1098, 280, 3, 2, + 2, 2, 1099, 1102, 5, 277, 139, 2, 1100, 1102, 9, 15, 2, 2, 1101, 1099, + 3, 2, 2, 2, 1101, 1100, 3, 2, 2, 2, 1102, 282, 3, 2, 2, 2, 1103, 1104, + 7, 94, 2, 2, 1104, 1105, 9, 2, 2, 2, 1105, 284, 3, 2, 2, 2, 1106, 1107, + 9, 16, 2, 2, 1107, 286, 3, 2, 2, 2, 1108, 1117, 7, 50, 2, 2, 1109, 1113, + 9, 17, 2, 2, 1110, 1112, 9, 3, 2, 2, 1111, 1110, 3, 2, 2, 2, 1112, 1115, + 3, 2, 2, 2, 1113, 1111, 3, 2, 2, 2, 1113, 1114, 3, 2, 2, 2, 1114, 1117, + 3, 2, 2, 2, 1115, 1113, 3, 2, 2, 2, 1116, 1108, 3, 2, 2, 2, 1116, 1109, + 3, 2, 2, 2, 1117, 288, 3, 2, 2, 2, 1118, 1120, 9, 18, 2, 2, 1119, 1121, + 9, 19, 2, 2, 1120, 1119, 3, 2, 2, 2, 1120, 1121, 3, 2, 2, 2, 1121, 1123, + 3, 2, 2, 2, 1122, 1124, 9, 3, 2, 2, 1123, 1122, 3, 2, 2, 2, 1124, 1125, + 3, 2, 2, 2, 1125, 1123, 3, 2, 2, 2, 1125, 1126, 3, 2, 2, 2, 1126, 290, + 3, 2, 2, 2, 1127, 1133, 5, 293, 147, 2, 1128, 1133, 5, 297, 149, 2, 1129, + 1133, 5, 299, 150, 2, 1130, 1133, 5, 301, 151, 2, 1131, 1133, 4, 8206, + 8207, 2, 1132, 1127, 3, 2, 2, 2, 1132, 1128, 3, 2, 2, 2, 1132, 1129, 3, + 2, 2, 2, 1132, 1130, 3, 2, 2, 2, 1132, 1131, 3, 2, 2, 2, 1133, 292, 3, + 2, 2, 2, 1134, 1139, 5, 295, 148, 2, 1135, 1139, 9, 20, 2, 2, 1136, 1137, + 7, 94, 2, 2, 1137, 1139, 5, 273, 137, 2, 1138, 1134, 3, 2, 2, 2, 1138, + 1135, 3, 2, 2, 2, 1138, 1136, 3, 2, 2, 2, 1139, 294, 3, 2, 2, 2, 1140, + 1142, 9, 21, 2, 2, 1141, 1140, 3, 2, 2, 2, 1142, 296, 3, 2, 2, 2, 1143, + 1145, 9, 22, 2, 2, 1144, 1143, 3, 2, 2, 2, 1145, 298, 3, 2, 2, 2, 1146, + 1148, 9, 23, 2, 2, 1147, 1146, 3, 2, 2, 2, 1148, 300, 3, 2, 2, 2, 1149, + 1151, 9, 24, 2, 2, 1150, 1149, 3, 2, 2, 2, 1151, 302, 3, 2, 2, 2, 1152, + 1163, 10, 25, 2, 2, 1153, 1163, 5, 309, 155, 2, 1154, 1158, 7, 93, 2, 2, + 1155, 1157, 5, 307, 154, 2, 1156, 1155, 3, 2, 2, 2, 1157, 1160, 3, 2, 2, + 2, 1158, 1156, 3, 2, 2, 2, 1158, 1159, 3, 2, 2, 2, 1159, 1161, 3, 2, 2, + 2, 1160, 1158, 3, 2, 2, 2, 1161, 1163, 7, 95, 2, 2, 1162, 1152, 3, 2, 2, + 2, 1162, 1153, 3, 2, 2, 2, 1162, 1154, 3, 2, 2, 2, 1163, 304, 3, 2, 2, + 2, 1164, 1175, 10, 26, 2, 2, 1165, 1175, 5, 309, 155, 2, 1166, 1170, 7, + 93, 2, 2, 1167, 1169, 5, 307, 154, 2, 1168, 1167, 3, 2, 2, 2, 1169, 1172, + 3, 2, 2, 2, 1170, 1168, 3, 2, 2, 2, 1170, 1171, 3, 2, 2, 2, 1171, 1173, + 3, 2, 2, 2, 1172, 1170, 3, 2, 2, 2, 1173, 1175, 7, 95, 2, 2, 1174, 1164, + 3, 2, 2, 2, 1174, 1165, 3, 2, 2, 2, 1174, 1166, 3, 2, 2, 2, 1175, 306, + 3, 2, 2, 2, 1176, 1179, 10, 27, 2, 2, 1177, 1179, 5, 309, 155, 2, 1178, + 1176, 3, 2, 2, 2, 1178, 1177, 3, 2, 2, 2, 1179, 308, 3, 2, 2, 2, 1180, + 1181, 7, 94, 2, 2, 1181, 1182, 10, 2, 2, 2, 1182, 310, 3, 2, 2, 2, 48, + 2, 317, 331, 341, 349, 502, 509, 513, 519, 522, 526, 528, 535, 541, 550, + 557, 965, 972, 980, 984, 992, 994, 1002, 1018, 1040, 1057, 1063, 1070, + 1074, 1091, 1101, 1113, 1116, 1120, 1125, 1132, 1138, 1141, 1144, 1147, + 1150, 1158, 1162, 1170, 1174, 1178, 7, 2, 3, 2, 3, 9, 2, 3, 10, 3, 3, 125, + 4, 2, 4, 2, +} + +var lexerDeserializer = antlr.NewATNDeserializer(nil) +var lexerAtn = lexerDeserializer.DeserializeFromUInt16(serializedLexerAtn) + +var lexerChannelNames = []string{ + "DEFAULT_TOKEN_CHANNEL", "HIDDEN", "ERROR", +} + +var lexerModeNames = []string{ + "DEFAULT_MODE", +} + +var lexerLiteralNames = []string{ + "", "", "", "", "'['", "']'", "'('", "')'", "'{'", "'}'", "';'", "','", + "'='", "'?'", "':'", "'...'", "'.'", "'++'", "'--'", "'+'", "'-'", "'~'", + "'!'", "'*'", "'/'", "'%'", "'>>'", "'<<'", "'>>>'", "'<'", "'>'", "'<='", + "'>='", "'=='", "'!='", "'==='", "'!=='", "'&'", "'^'", "'|'", "'&&'", + "'||'", "'*='", "'/='", "'%='", "'+='", "'-='", "'<<='", "'>>='", "'>>>='", + "'&='", "'^='", "'|='", "'=>'", "'null'", "", "", "", "", "", "", "'break'", + "'do'", "'instanceof'", "'typeof'", "'case'", "'else'", "'new'", "'var'", + "'catch'", "'finally'", "'return'", "'void'", "'continue'", "'for'", "'switch'", + "'while'", "'debugger'", "'function'", "'this'", "'with'", "'default'", + "'if'", "'throw'", "'delete'", "'in'", "'try'", "'as'", "'from'", "'readonly'", + "'async'", "'class'", "'enum'", "'extends'", "'super'", "'const'", "'export'", + "'import'", "'implements'", "'let'", "'private'", "'public'", "'interface'", + "'package'", "'protected'", "'static'", "'yield'", "'any'", "'number'", + "'boolean'", "'string'", "'symbol'", "'type'", "'get '", "'set '", "'constructor'", + "'namespace'", "'require'", "'module'", "'declare'", "'abstract'", "'is'", + "'@'", +} + +var lexerSymbolicNames = []string{ + "", "MultiLineComment", "SingleLineComment", "RegularExpressionLiteral", + "OpenBracket", "CloseBracket", "OpenParen", "CloseParen", "OpenBrace", + "CloseBrace", "SemiColon", "Comma", "Assign", "QuestionMark", "Colon", + "Ellipsis", "Dot", "PlusPlus", "MinusMinus", "Plus", "Minus", "BitNot", + "Not", "Multiply", "Divide", "Modulus", "RightShiftArithmetic", "LeftShiftArithmetic", + "RightShiftLogical", "LessThan", "MoreThan", "LessThanEquals", "GreaterThanEquals", + "Equals_", "NotEquals", "IdentityEquals", "IdentityNotEquals", "BitAnd", + "BitXOr", "BitOr", "And", "Or", "MultiplyAssign", "DivideAssign", "ModulusAssign", + "PlusAssign", "MinusAssign", "LeftShiftArithmeticAssign", "RightShiftArithmeticAssign", + "RightShiftLogicalAssign", "BitAndAssign", "BitXorAssign", "BitOrAssign", + "ARROW", "NullLiteral", "BooleanLiteral", "DecimalLiteral", "HexIntegerLiteral", + "OctalIntegerLiteral", "OctalIntegerLiteral2", "BinaryIntegerLiteral", + "Break", "Do", "Instanceof", "Typeof", "Case", "Else", "New", "Var", "Catch", + "Finally", "Return", "Void", "Continue", "For", "Switch", "While", "Debugger", + "Function", "This", "With", "Default", "If", "Throw", "Delete", "In", "Try", + "As", "From", "ReadOnly", "Async", "Class", "Enum", "Extends", "Super", + "Const", "Export", "Import", "Implements", "Let", "Private", "Public", + "Interface", "Package", "Protected", "Static", "Yield", "ANY", "NUMBER", + "BOOLEAN", "STRING", "SYMBOL", "Type", "Get", "Set", "Constructor", "Namespace", + "Require", "Module", "Declare", "Abstract", "Is", "At", "Identifier", "StringLiteral", + "TemplateStringLiteral", "WhiteSpaces", "LineTerminator", "HtmlComment", + "CDataComment", "UnexpectedCharacter", +} + +var lexerRuleNames = []string{ + "MultiLineComment", "SingleLineComment", "RegularExpressionLiteral", "OpenBracket", + "CloseBracket", "OpenParen", "CloseParen", "OpenBrace", "CloseBrace", "SemiColon", + "Comma", "Assign", "QuestionMark", "Colon", "Ellipsis", "Dot", "PlusPlus", + "MinusMinus", "Plus", "Minus", "BitNot", "Not", "Multiply", "Divide", "Modulus", + "RightShiftArithmetic", "LeftShiftArithmetic", "RightShiftLogical", "LessThan", + "MoreThan", "LessThanEquals", "GreaterThanEquals", "Equals_", "NotEquals", + "IdentityEquals", "IdentityNotEquals", "BitAnd", "BitXOr", "BitOr", "And", + "Or", "MultiplyAssign", "DivideAssign", "ModulusAssign", "PlusAssign", + "MinusAssign", "LeftShiftArithmeticAssign", "RightShiftArithmeticAssign", + "RightShiftLogicalAssign", "BitAndAssign", "BitXorAssign", "BitOrAssign", + "ARROW", "NullLiteral", "BooleanLiteral", "DecimalLiteral", "HexIntegerLiteral", + "OctalIntegerLiteral", "OctalIntegerLiteral2", "BinaryIntegerLiteral", + "Break", "Do", "Instanceof", "Typeof", "Case", "Else", "New", "Var", "Catch", + "Finally", "Return", "Void", "Continue", "For", "Switch", "While", "Debugger", + "Function", "This", "With", "Default", "If", "Throw", "Delete", "In", "Try", + "As", "From", "ReadOnly", "Async", "Class", "Enum", "Extends", "Super", + "Const", "Export", "Import", "Implements", "Let", "Private", "Public", + "Interface", "Package", "Protected", "Static", "Yield", "ANY", "NUMBER", + "BOOLEAN", "STRING", "SYMBOL", "Type", "Get", "Set", "Constructor", "Namespace", + "Require", "Module", "Declare", "Abstract", "Is", "At", "Identifier", "StringLiteral", + "TemplateStringLiteral", "WhiteSpaces", "LineTerminator", "HtmlComment", + "CDataComment", "UnexpectedCharacter", "DoubleStringCharacter", "SingleStringCharacter", + "EscapeSequence", "CharacterEscapeSequence", "HexEscapeSequence", "UnicodeEscapeSequence", + "ExtendedUnicodeEscapeSequence", "SingleEscapeCharacter", "NonEscapeCharacter", + "EscapeCharacter", "LineContinuation", "HexDigit", "DecimalIntegerLiteral", + "ExponentPart", "IdentifierPart", "IdentifierStart", "UnicodeLetter", "UnicodeCombiningMark", + "UnicodeDigit", "UnicodeConnectorPunctuation", "RegularExpressionFirstChar", + "RegularExpressionChar", "RegularExpressionClassChar", "RegularExpressionBackslashSequence", +} + +type TypeScriptLexer struct { + *TypeScriptBaseLexer + channelNames []string + modeNames []string + // TODO: EOF string +} + +var lexerDecisionToDFA = make([]*antlr.DFA, len(lexerAtn.DecisionToState)) + +func init() { + for index, ds := range lexerAtn.DecisionToState { + lexerDecisionToDFA[index] = antlr.NewDFA(ds, index) + } +} + +func NewTypeScriptLexer(input antlr.CharStream) *TypeScriptLexer { + + l := new(TypeScriptLexer) + + l.BaseLexer = antlr.NewBaseLexer(input) + l.Interpreter = antlr.NewLexerATNSimulator(l, lexerAtn, lexerDecisionToDFA, antlr.NewPredictionContextCache()) + + l.channelNames = lexerChannelNames + l.modeNames = lexerModeNames + l.RuleNames = lexerRuleNames + l.LiteralNames = lexerLiteralNames + l.SymbolicNames = lexerSymbolicNames + l.GrammarFileName = "TypeScriptLexer.g4" + // TODO: l.EOF = antlr.TokenEOF + + return l +} + +// TypeScriptLexer tokens. +const ( + TypeScriptLexerMultiLineComment = 1 + TypeScriptLexerSingleLineComment = 2 + TypeScriptLexerRegularExpressionLiteral = 3 + TypeScriptLexerOpenBracket = 4 + TypeScriptLexerCloseBracket = 5 + TypeScriptLexerOpenParen = 6 + TypeScriptLexerCloseParen = 7 + TypeScriptLexerOpenBrace = 8 + TypeScriptLexerCloseBrace = 9 + TypeScriptLexerSemiColon = 10 + TypeScriptLexerComma = 11 + TypeScriptLexerAssign = 12 + TypeScriptLexerQuestionMark = 13 + TypeScriptLexerColon = 14 + TypeScriptLexerEllipsis = 15 + TypeScriptLexerDot = 16 + TypeScriptLexerPlusPlus = 17 + TypeScriptLexerMinusMinus = 18 + TypeScriptLexerPlus = 19 + TypeScriptLexerMinus = 20 + TypeScriptLexerBitNot = 21 + TypeScriptLexerNot = 22 + TypeScriptLexerMultiply = 23 + TypeScriptLexerDivide = 24 + TypeScriptLexerModulus = 25 + TypeScriptLexerRightShiftArithmetic = 26 + TypeScriptLexerLeftShiftArithmetic = 27 + TypeScriptLexerRightShiftLogical = 28 + TypeScriptLexerLessThan = 29 + TypeScriptLexerMoreThan = 30 + TypeScriptLexerLessThanEquals = 31 + TypeScriptLexerGreaterThanEquals = 32 + TypeScriptLexerEquals_ = 33 + TypeScriptLexerNotEquals = 34 + TypeScriptLexerIdentityEquals = 35 + TypeScriptLexerIdentityNotEquals = 36 + TypeScriptLexerBitAnd = 37 + TypeScriptLexerBitXOr = 38 + TypeScriptLexerBitOr = 39 + TypeScriptLexerAnd = 40 + TypeScriptLexerOr = 41 + TypeScriptLexerMultiplyAssign = 42 + TypeScriptLexerDivideAssign = 43 + TypeScriptLexerModulusAssign = 44 + TypeScriptLexerPlusAssign = 45 + TypeScriptLexerMinusAssign = 46 + TypeScriptLexerLeftShiftArithmeticAssign = 47 + TypeScriptLexerRightShiftArithmeticAssign = 48 + TypeScriptLexerRightShiftLogicalAssign = 49 + TypeScriptLexerBitAndAssign = 50 + TypeScriptLexerBitXorAssign = 51 + TypeScriptLexerBitOrAssign = 52 + TypeScriptLexerARROW = 53 + TypeScriptLexerNullLiteral = 54 + TypeScriptLexerBooleanLiteral = 55 + TypeScriptLexerDecimalLiteral = 56 + TypeScriptLexerHexIntegerLiteral = 57 + TypeScriptLexerOctalIntegerLiteral = 58 + TypeScriptLexerOctalIntegerLiteral2 = 59 + TypeScriptLexerBinaryIntegerLiteral = 60 + TypeScriptLexerBreak = 61 + TypeScriptLexerDo = 62 + TypeScriptLexerInstanceof = 63 + TypeScriptLexerTypeof = 64 + TypeScriptLexerCase = 65 + TypeScriptLexerElse = 66 + TypeScriptLexerNew = 67 + TypeScriptLexerVar = 68 + TypeScriptLexerCatch = 69 + TypeScriptLexerFinally = 70 + TypeScriptLexerReturn = 71 + TypeScriptLexerVoid = 72 + TypeScriptLexerContinue = 73 + TypeScriptLexerFor = 74 + TypeScriptLexerSwitch = 75 + TypeScriptLexerWhile = 76 + TypeScriptLexerDebugger = 77 + TypeScriptLexerFunction = 78 + TypeScriptLexerThis = 79 + TypeScriptLexerWith = 80 + TypeScriptLexerDefault = 81 + TypeScriptLexerIf = 82 + TypeScriptLexerThrow = 83 + TypeScriptLexerDelete = 84 + TypeScriptLexerIn = 85 + TypeScriptLexerTry = 86 + TypeScriptLexerAs = 87 + TypeScriptLexerFrom = 88 + TypeScriptLexerReadOnly = 89 + TypeScriptLexerAsync = 90 + TypeScriptLexerClass = 91 + TypeScriptLexerEnum = 92 + TypeScriptLexerExtends = 93 + TypeScriptLexerSuper = 94 + TypeScriptLexerConst = 95 + TypeScriptLexerExport = 96 + TypeScriptLexerImport = 97 + TypeScriptLexerImplements = 98 + TypeScriptLexerLet = 99 + TypeScriptLexerPrivate = 100 + TypeScriptLexerPublic = 101 + TypeScriptLexerInterface = 102 + TypeScriptLexerPackage = 103 + TypeScriptLexerProtected = 104 + TypeScriptLexerStatic = 105 + TypeScriptLexerYield = 106 + TypeScriptLexerANY = 107 + TypeScriptLexerNUMBER = 108 + TypeScriptLexerBOOLEAN = 109 + TypeScriptLexerSTRING = 110 + TypeScriptLexerSYMBOL = 111 + TypeScriptLexerType = 112 + TypeScriptLexerGet = 113 + TypeScriptLexerSet = 114 + TypeScriptLexerConstructor = 115 + TypeScriptLexerNamespace = 116 + TypeScriptLexerRequire = 117 + TypeScriptLexerModule = 118 + TypeScriptLexerDeclare = 119 + TypeScriptLexerAbstract = 120 + TypeScriptLexerIs = 121 + TypeScriptLexerAt = 122 + TypeScriptLexerIdentifier = 123 + TypeScriptLexerStringLiteral = 124 + TypeScriptLexerTemplateStringLiteral = 125 + TypeScriptLexerWhiteSpaces = 126 + TypeScriptLexerLineTerminator = 127 + TypeScriptLexerHtmlComment = 128 + TypeScriptLexerCDataComment = 129 + TypeScriptLexerUnexpectedCharacter = 130 +) + +// TypeScriptLexerERROR is the TypeScriptLexer channel. +const TypeScriptLexerERROR = 2 + +func (l *TypeScriptLexer) Action(localctx antlr.RuleContext, ruleIndex, actionIndex int) { + switch ruleIndex { + case 7: + l.OpenBrace_Action(localctx, actionIndex) + + case 8: + l.CloseBrace_Action(localctx, actionIndex) + + case 123: + l.StringLiteral_Action(localctx, actionIndex) + + default: + panic("No registered action for: " + fmt.Sprint(ruleIndex)) + } +} + +func (l *TypeScriptLexer) OpenBrace_Action(localctx antlr.RuleContext, actionIndex int) { + switch actionIndex { + case 0: + this.ProcessOpenBrace() + + default: + panic("No registered action for: " + fmt.Sprint(actionIndex)) + } +} +func (l *TypeScriptLexer) CloseBrace_Action(localctx antlr.RuleContext, actionIndex int) { + switch actionIndex { + case 1: + this.ProcessCloseBrace() + + default: + panic("No registered action for: " + fmt.Sprint(actionIndex)) + } +} +func (l *TypeScriptLexer) StringLiteral_Action(localctx antlr.RuleContext, actionIndex int) { + switch actionIndex { + case 2: + this.ProcessStringLiteral() + + default: + panic("No registered action for: " + fmt.Sprint(actionIndex)) + } +} + +func (l *TypeScriptLexer) Sempred(localctx antlr.RuleContext, ruleIndex, predIndex int) bool { + switch ruleIndex { + case 2: + return l.RegularExpressionLiteral_Sempred(localctx, predIndex) + + case 57: + return l.OctalIntegerLiteral_Sempred(localctx, predIndex) + + default: + panic("No registered predicate for: " + fmt.Sprint(ruleIndex)) + } +} + +func (p *TypeScriptLexer) RegularExpressionLiteral_Sempred(localctx antlr.RuleContext, predIndex int) bool { + switch predIndex { + case 0: + return this.IsRegexPossible() + + default: + panic("No predicate with index: " + fmt.Sprint(predIndex)) + } +} + +func (p *TypeScriptLexer) OctalIntegerLiteral_Sempred(localctx antlr.RuleContext, predIndex int) bool { + switch predIndex { + case 1: + return !this.IsStrictMode() + + default: + panic("No predicate with index: " + fmt.Sprint(predIndex)) + } +} diff --git a/languages/ts/typescript_parser.go b/languages/ts/typescript_parser.go new file mode 100644 index 0000000..0920319 --- /dev/null +++ b/languages/ts/typescript_parser.go @@ -0,0 +1,26394 @@ +// Code generated from TypeScriptParser.g4 by ANTLR 4.7.2. DO NOT EDIT. + +package parser // TypeScriptParser + +import ( + "fmt" + "reflect" + "strconv" + + "github.com/antlr/antlr4/runtime/Go/antlr" +) + +// Suppress unused import errors +var _ = fmt.Printf +var _ = reflect.Copy +var _ = strconv.Itoa + +var parserATN = []uint16{ + 3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 132, 1625, + 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, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 5, 3, 284, 10, 3, + 3, 4, 3, 4, 5, 4, 288, 10, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 7, 5, 295, + 10, 5, 12, 5, 14, 5, 298, 11, 5, 3, 6, 3, 6, 5, 6, 302, 10, 6, 3, 6, 5, + 6, 305, 10, 6, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 5, 8, 312, 10, 8, 3, 8, 3, + 8, 3, 9, 3, 9, 3, 9, 7, 9, 319, 10, 9, 12, 9, 14, 9, 322, 11, 9, 3, 10, + 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 331, 10, 11, 3, 12, 3, + 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 7, 12, 342, 10, 12, + 12, 12, 14, 12, 345, 11, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, + 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, + 13, 3, 13, 5, 13, 365, 10, 13, 3, 13, 3, 13, 3, 13, 3, 13, 7, 13, 371, + 10, 13, 12, 13, 14, 13, 374, 11, 13, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, + 5, 15, 381, 10, 15, 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, 17, 5, 17, 396, 10, 17, 3, 18, 3, 18, + 5, 18, 400, 10, 18, 3, 19, 3, 19, 5, 19, 404, 10, 19, 3, 19, 3, 19, 3, + 20, 3, 20, 5, 20, 410, 10, 20, 3, 21, 3, 21, 3, 21, 7, 21, 415, 10, 21, + 12, 21, 14, 21, 418, 11, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, + 3, 22, 5, 22, 427, 10, 22, 5, 22, 429, 10, 22, 3, 23, 3, 23, 3, 23, 3, + 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 7, 25, 443, + 10, 25, 12, 25, 14, 25, 446, 11, 25, 3, 26, 5, 26, 449, 10, 26, 3, 26, + 3, 26, 5, 26, 453, 10, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 5, + 27, 461, 10, 27, 3, 27, 3, 27, 5, 27, 465, 10, 27, 3, 27, 3, 27, 3, 27, + 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 6, 29, 478, 10, + 29, 13, 29, 14, 29, 479, 3, 29, 3, 29, 5, 29, 484, 10, 29, 3, 30, 5, 30, + 487, 10, 30, 3, 30, 3, 30, 5, 30, 491, 10, 30, 3, 30, 5, 30, 494, 10, 30, + 3, 30, 3, 30, 5, 30, 498, 10, 30, 3, 31, 3, 31, 3, 31, 3, 32, 5, 32, 504, + 10, 32, 3, 32, 3, 32, 5, 32, 508, 10, 32, 3, 32, 3, 32, 5, 32, 512, 10, + 32, 3, 33, 3, 33, 3, 33, 3, 33, 7, 33, 518, 10, 33, 12, 33, 14, 33, 521, + 11, 33, 3, 33, 3, 33, 3, 33, 5, 33, 526, 10, 33, 3, 33, 3, 33, 3, 33, 3, + 33, 3, 33, 5, 33, 533, 10, 33, 3, 33, 5, 33, 536, 10, 33, 5, 33, 538, 10, + 33, 5, 33, 540, 10, 33, 3, 34, 3, 34, 3, 34, 7, 34, 545, 10, 34, 12, 34, + 14, 34, 548, 11, 34, 3, 35, 5, 35, 551, 10, 35, 3, 35, 5, 35, 554, 10, + 35, 3, 35, 3, 35, 5, 35, 558, 10, 35, 3, 36, 3, 36, 3, 37, 3, 37, 5, 37, + 564, 10, 37, 3, 38, 3, 38, 3, 38, 7, 38, 569, 10, 38, 12, 38, 14, 38, 572, + 11, 38, 3, 39, 5, 39, 575, 10, 39, 3, 39, 5, 39, 578, 10, 39, 3, 39, 3, + 39, 3, 39, 5, 39, 583, 10, 39, 3, 39, 5, 39, 586, 10, 39, 3, 39, 5, 39, + 589, 10, 39, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 5, 41, 596, 10, 41, 3, + 41, 3, 41, 5, 41, 600, 10, 41, 3, 41, 3, 41, 5, 41, 604, 10, 41, 3, 42, + 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 5, 43, 615, 10, + 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 5, 44, 622, 10, 44, 3, 44, 3, 44, + 3, 44, 3, 44, 3, 45, 5, 45, 629, 10, 45, 3, 45, 3, 45, 3, 45, 5, 45, 634, + 10, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 5, 45, 642, 10, 45, 3, + 46, 5, 46, 645, 10, 46, 3, 46, 3, 46, 3, 46, 5, 46, 650, 10, 46, 3, 46, + 5, 46, 653, 10, 46, 3, 46, 3, 46, 5, 46, 657, 10, 46, 3, 47, 3, 47, 3, + 47, 3, 48, 3, 48, 3, 48, 7, 48, 665, 10, 48, 12, 48, 14, 48, 668, 11, 48, + 3, 49, 5, 49, 671, 10, 49, 3, 49, 3, 49, 3, 49, 3, 49, 5, 49, 677, 10, + 49, 3, 49, 3, 49, 3, 50, 3, 50, 5, 50, 683, 10, 50, 3, 51, 3, 51, 3, 51, + 7, 51, 688, 10, 51, 12, 51, 14, 51, 691, 11, 51, 3, 52, 3, 52, 3, 52, 5, + 52, 696, 10, 52, 3, 53, 3, 53, 3, 53, 3, 53, 5, 53, 702, 10, 53, 3, 53, + 3, 53, 3, 54, 3, 54, 6, 54, 708, 10, 54, 13, 54, 14, 54, 709, 3, 54, 7, + 54, 713, 10, 54, 12, 54, 14, 54, 716, 11, 54, 3, 55, 3, 55, 3, 55, 3, 55, + 3, 55, 3, 56, 6, 56, 724, 10, 56, 13, 56, 14, 56, 725, 3, 57, 3, 57, 3, + 57, 5, 57, 731, 10, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 5, 58, + 739, 10, 58, 3, 58, 3, 58, 3, 58, 7, 58, 744, 10, 58, 12, 58, 14, 58, 747, + 11, 58, 3, 59, 3, 59, 3, 59, 3, 60, 5, 60, 753, 10, 60, 3, 60, 3, 60, 3, + 61, 5, 61, 758, 10, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, + 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, + 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, + 3, 62, 3, 62, 3, 62, 5, 62, 791, 10, 62, 3, 63, 3, 63, 5, 63, 795, 10, + 63, 3, 63, 3, 63, 3, 64, 6, 64, 800, 10, 64, 13, 64, 14, 64, 801, 3, 65, + 3, 65, 3, 65, 3, 65, 5, 65, 808, 10, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, + 66, 5, 66, 815, 10, 66, 3, 67, 3, 67, 5, 67, 819, 10, 67, 3, 67, 3, 67, + 5, 67, 823, 10, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 5, + 68, 832, 10, 68, 3, 68, 3, 68, 3, 68, 3, 68, 7, 68, 838, 10, 68, 12, 68, + 14, 68, 841, 11, 68, 3, 68, 3, 68, 3, 69, 3, 69, 5, 69, 847, 10, 69, 3, + 69, 3, 69, 5, 69, 851, 10, 69, 3, 70, 3, 70, 5, 70, 855, 10, 70, 3, 70, + 3, 70, 5, 70, 859, 10, 70, 3, 70, 5, 70, 862, 10, 70, 3, 70, 5, 70, 865, + 10, 70, 3, 70, 5, 70, 868, 10, 70, 3, 70, 3, 70, 5, 70, 872, 10, 70, 5, + 70, 874, 10, 70, 3, 71, 3, 71, 3, 71, 7, 71, 879, 10, 71, 12, 71, 14, 71, + 882, 11, 71, 3, 72, 3, 72, 3, 72, 5, 72, 887, 10, 72, 3, 72, 5, 72, 890, + 10, 72, 3, 72, 5, 72, 893, 10, 72, 3, 72, 3, 72, 5, 72, 897, 10, 72, 3, + 72, 5, 72, 900, 10, 72, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 5, 74, 907, + 10, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 5, 75, 916, 10, + 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, + 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 5, 76, 935, 10, 76, 3, + 76, 3, 76, 5, 76, 939, 10, 76, 3, 76, 3, 76, 5, 76, 943, 10, 76, 3, 76, + 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 5, 76, 953, 10, 76, 3, + 76, 3, 76, 5, 76, 957, 10, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, + 3, 76, 3, 76, 3, 76, 5, 76, 968, 10, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, + 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 5, 76, 981, 10, 76, 3, 76, + 3, 76, 3, 76, 3, 76, 5, 76, 987, 10, 76, 3, 77, 3, 77, 3, 78, 3, 78, 3, + 78, 5, 78, 994, 10, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 5, 79, 1001, + 10, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 5, 80, 1008, 10, 80, 3, 80, + 3, 80, 3, 81, 3, 81, 3, 81, 5, 81, 1015, 10, 81, 3, 81, 3, 81, 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, 84, 3, 84, 5, 84, 1033, 10, 84, 3, 84, 3, 84, 5, 84, 1037, 10, 84, 5, + 84, 1039, 10, 84, 3, 84, 3, 84, 3, 85, 6, 85, 1044, 10, 85, 13, 85, 14, + 85, 1045, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 1052, 10, 86, 3, 87, 3, 87, + 3, 87, 5, 87, 1057, 10, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, + 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 5, 90, 1072, 10, 90, 3, 90, + 5, 90, 1075, 10, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, + 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, + 3, 94, 3, 94, 5, 94, 1097, 10, 94, 3, 95, 5, 95, 1100, 10, 95, 3, 95, 3, + 95, 3, 95, 5, 95, 1105, 10, 95, 3, 95, 3, 95, 3, 95, 3, 96, 5, 96, 1111, + 10, 96, 3, 96, 5, 96, 1114, 10, 96, 3, 97, 3, 97, 7, 97, 1118, 10, 97, + 12, 97, 14, 97, 1121, 11, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 99, + 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 5, 100, 1135, 10, 100, 3, + 101, 3, 101, 3, 101, 5, 101, 1140, 10, 101, 3, 101, 5, 101, 1143, 10, 101, + 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, + 3, 101, 5, 101, 1155, 10, 101, 3, 101, 3, 101, 3, 101, 5, 101, 1160, 10, + 101, 3, 101, 5, 101, 1163, 10, 101, 3, 102, 5, 102, 1166, 10, 102, 3, 102, + 5, 102, 1169, 10, 102, 3, 102, 5, 102, 1172, 10, 102, 3, 102, 5, 102, 1175, + 10, 102, 3, 103, 3, 103, 3, 103, 3, 104, 5, 104, 1181, 10, 104, 3, 104, + 3, 104, 3, 104, 5, 104, 1186, 10, 104, 3, 104, 3, 104, 3, 104, 3, 104, + 3, 104, 3, 105, 3, 105, 3, 105, 5, 105, 1196, 10, 105, 3, 105, 3, 105, + 5, 105, 1200, 10, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, + 3, 106, 3, 106, 3, 106, 7, 106, 1211, 10, 106, 12, 106, 14, 106, 1214, + 11, 106, 3, 106, 5, 106, 1217, 10, 106, 3, 106, 3, 106, 3, 107, 3, 107, + 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 7, 108, 1228, 10, 108, 12, 108, + 14, 108, 1231, 11, 108, 3, 108, 5, 108, 1234, 10, 108, 3, 108, 3, 108, + 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 5, 109, 1243, 10, 109, 3, 109, + 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 7, 110, 1253, 10, + 110, 12, 110, 14, 110, 1256, 11, 110, 3, 110, 3, 110, 5, 110, 1260, 10, + 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 5, 110, 1267, 10, 110, 5, + 110, 1269, 10, 110, 3, 111, 5, 111, 1272, 10, 111, 3, 111, 3, 111, 5, 111, + 1276, 10, 111, 3, 111, 3, 111, 5, 111, 1280, 10, 111, 3, 112, 3, 112, 3, + 112, 3, 113, 5, 113, 1286, 10, 113, 3, 114, 6, 114, 1289, 10, 114, 13, + 114, 14, 114, 1290, 3, 115, 3, 115, 5, 115, 1295, 10, 115, 3, 115, 3, 115, + 3, 116, 3, 116, 6, 116, 1301, 10, 116, 13, 116, 14, 116, 1302, 3, 116, + 7, 116, 1306, 10, 116, 12, 116, 14, 116, 1309, 11, 116, 3, 116, 6, 116, + 1312, 10, 116, 13, 116, 14, 116, 1313, 3, 116, 5, 116, 1317, 10, 116, 3, + 116, 5, 116, 1320, 10, 116, 3, 117, 3, 117, 3, 117, 5, 117, 1325, 10, 117, + 3, 118, 3, 118, 3, 118, 3, 118, 7, 118, 1331, 10, 118, 12, 118, 14, 118, + 1334, 11, 118, 5, 118, 1336, 10, 118, 3, 118, 5, 118, 1339, 10, 118, 3, + 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, + 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 5, 119, 1358, + 10, 119, 3, 120, 3, 120, 3, 120, 3, 120, 5, 120, 1364, 10, 120, 3, 120, + 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 5, 121, 1374, 10, + 121, 3, 121, 5, 121, 1377, 10, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, + 121, 3, 122, 3, 122, 3, 122, 5, 122, 1387, 10, 122, 3, 123, 3, 123, 3, + 123, 3, 123, 7, 123, 1393, 10, 123, 12, 123, 14, 123, 1396, 11, 123, 3, + 123, 3, 123, 5, 123, 1400, 10, 123, 3, 123, 5, 123, 1403, 10, 123, 3, 123, + 3, 123, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 7, 125, 1413, 10, + 125, 12, 125, 14, 125, 1416, 11, 125, 3, 126, 3, 126, 5, 126, 1420, 10, + 126, 3, 126, 3, 126, 5, 126, 1424, 10, 126, 3, 126, 3, 126, 5, 126, 1428, + 10, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, + 3, 127, 5, 127, 1439, 10, 127, 3, 127, 3, 127, 3, 127, 3, 127, 5, 127, + 1445, 10, 127, 3, 127, 5, 127, 1448, 10, 127, 3, 127, 3, 127, 3, 127, 3, + 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, + 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, + 127, 3, 127, 3, 127, 3, 127, 5, 127, 1475, 10, 127, 3, 127, 3, 127, 3, + 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 5, 127, 1487, + 10, 127, 5, 127, 1489, 10, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, + 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, + 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, + 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, + 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, + 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, + 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, + 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 7, 127, + 1558, 10, 127, 12, 127, 14, 127, 1561, 11, 127, 3, 128, 5, 128, 1564, 10, + 128, 3, 128, 3, 128, 5, 128, 1568, 10, 128, 3, 128, 3, 128, 3, 128, 3, + 129, 3, 129, 3, 129, 5, 129, 1576, 10, 129, 3, 129, 5, 129, 1579, 10, 129, + 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 5, 130, 1586, 10, 130, 3, 131, + 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 5, 132, 1596, 10, + 132, 3, 133, 3, 133, 3, 134, 3, 134, 5, 134, 1602, 10, 134, 3, 135, 3, + 135, 3, 135, 5, 135, 1607, 10, 135, 3, 136, 3, 136, 3, 137, 3, 137, 3, + 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, + 139, 5, 139, 1623, 10, 139, 3, 139, 2, 6, 22, 24, 114, 252, 140, 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, 274, 276, 2, 16, 4, 2, 74, 74, 109, 113, 3, 2, + 12, 13, 4, 2, 102, 103, 106, 106, 4, 2, 110, 110, 112, 112, 5, 2, 70, 70, + 97, 97, 101, 101, 4, 2, 14, 14, 16, 16, 3, 2, 25, 27, 3, 2, 21, 22, 3, + 2, 28, 30, 3, 2, 31, 34, 3, 2, 35, 38, 3, 2, 44, 54, 3, 2, 58, 62, 4, 2, + 63, 88, 90, 108, 2, 1792, 2, 278, 3, 2, 2, 2, 4, 283, 3, 2, 2, 2, 6, 285, + 3, 2, 2, 2, 8, 291, 3, 2, 2, 2, 10, 304, 3, 2, 2, 2, 12, 306, 3, 2, 2, + 2, 14, 309, 3, 2, 2, 2, 16, 315, 3, 2, 2, 2, 18, 323, 3, 2, 2, 2, 20, 330, + 3, 2, 2, 2, 22, 332, 3, 2, 2, 2, 24, 364, 3, 2, 2, 2, 26, 375, 3, 2, 2, + 2, 28, 377, 3, 2, 2, 2, 30, 382, 3, 2, 2, 2, 32, 386, 3, 2, 2, 2, 34, 399, + 3, 2, 2, 2, 36, 401, 3, 2, 2, 2, 38, 407, 3, 2, 2, 2, 40, 411, 3, 2, 2, + 2, 42, 428, 3, 2, 2, 2, 44, 430, 3, 2, 2, 2, 46, 435, 3, 2, 2, 2, 48, 439, + 3, 2, 2, 2, 50, 448, 3, 2, 2, 2, 52, 458, 3, 2, 2, 2, 54, 470, 3, 2, 2, + 2, 56, 483, 3, 2, 2, 2, 58, 486, 3, 2, 2, 2, 60, 499, 3, 2, 2, 2, 62, 503, + 3, 2, 2, 2, 64, 539, 3, 2, 2, 2, 66, 541, 3, 2, 2, 2, 68, 550, 3, 2, 2, + 2, 70, 559, 3, 2, 2, 2, 72, 563, 3, 2, 2, 2, 74, 565, 3, 2, 2, 2, 76, 574, + 3, 2, 2, 2, 78, 590, 3, 2, 2, 2, 80, 593, 3, 2, 2, 2, 82, 605, 3, 2, 2, + 2, 84, 612, 3, 2, 2, 2, 86, 618, 3, 2, 2, 2, 88, 628, 3, 2, 2, 2, 90, 644, + 3, 2, 2, 2, 92, 658, 3, 2, 2, 2, 94, 661, 3, 2, 2, 2, 96, 670, 3, 2, 2, + 2, 98, 680, 3, 2, 2, 2, 100, 684, 3, 2, 2, 2, 102, 692, 3, 2, 2, 2, 104, + 697, 3, 2, 2, 2, 106, 705, 3, 2, 2, 2, 108, 717, 3, 2, 2, 2, 110, 723, + 3, 2, 2, 2, 112, 727, 3, 2, 2, 2, 114, 738, 3, 2, 2, 2, 116, 748, 3, 2, + 2, 2, 118, 752, 3, 2, 2, 2, 120, 757, 3, 2, 2, 2, 122, 790, 3, 2, 2, 2, + 124, 792, 3, 2, 2, 2, 126, 799, 3, 2, 2, 2, 128, 803, 3, 2, 2, 2, 130, + 811, 3, 2, 2, 2, 132, 818, 3, 2, 2, 2, 134, 831, 3, 2, 2, 2, 136, 844, + 3, 2, 2, 2, 138, 873, 3, 2, 2, 2, 140, 875, 3, 2, 2, 2, 142, 886, 3, 2, + 2, 2, 144, 901, 3, 2, 2, 2, 146, 903, 3, 2, 2, 2, 148, 908, 3, 2, 2, 2, + 150, 986, 3, 2, 2, 2, 152, 988, 3, 2, 2, 2, 154, 990, 3, 2, 2, 2, 156, + 997, 3, 2, 2, 2, 158, 1004, 3, 2, 2, 2, 160, 1011, 3, 2, 2, 2, 162, 1018, + 3, 2, 2, 2, 164, 1024, 3, 2, 2, 2, 166, 1030, 3, 2, 2, 2, 168, 1043, 3, + 2, 2, 2, 170, 1047, 3, 2, 2, 2, 172, 1053, 3, 2, 2, 2, 174, 1058, 3, 2, + 2, 2, 176, 1062, 3, 2, 2, 2, 178, 1067, 3, 2, 2, 2, 180, 1076, 3, 2, 2, + 2, 182, 1082, 3, 2, 2, 2, 184, 1085, 3, 2, 2, 2, 186, 1088, 3, 2, 2, 2, + 188, 1099, 3, 2, 2, 2, 190, 1110, 3, 2, 2, 2, 192, 1115, 3, 2, 2, 2, 194, + 1124, 3, 2, 2, 2, 196, 1127, 3, 2, 2, 2, 198, 1134, 3, 2, 2, 2, 200, 1162, + 3, 2, 2, 2, 202, 1165, 3, 2, 2, 2, 204, 1176, 3, 2, 2, 2, 206, 1180, 3, + 2, 2, 2, 208, 1192, 3, 2, 2, 2, 210, 1206, 3, 2, 2, 2, 212, 1220, 3, 2, + 2, 2, 214, 1223, 3, 2, 2, 2, 216, 1237, 3, 2, 2, 2, 218, 1268, 3, 2, 2, + 2, 220, 1271, 3, 2, 2, 2, 222, 1281, 3, 2, 2, 2, 224, 1285, 3, 2, 2, 2, + 226, 1288, 3, 2, 2, 2, 228, 1292, 3, 2, 2, 2, 230, 1319, 3, 2, 2, 2, 232, + 1321, 3, 2, 2, 2, 234, 1326, 3, 2, 2, 2, 236, 1357, 3, 2, 2, 2, 238, 1359, + 3, 2, 2, 2, 240, 1369, 3, 2, 2, 2, 242, 1386, 3, 2, 2, 2, 244, 1388, 3, + 2, 2, 2, 246, 1406, 3, 2, 2, 2, 248, 1409, 3, 2, 2, 2, 250, 1417, 3, 2, + 2, 2, 252, 1488, 3, 2, 2, 2, 254, 1563, 3, 2, 2, 2, 256, 1578, 3, 2, 2, + 2, 258, 1585, 3, 2, 2, 2, 260, 1587, 3, 2, 2, 2, 262, 1595, 3, 2, 2, 2, + 264, 1597, 3, 2, 2, 2, 266, 1601, 3, 2, 2, 2, 268, 1606, 3, 2, 2, 2, 270, + 1608, 3, 2, 2, 2, 272, 1610, 3, 2, 2, 2, 274, 1614, 3, 2, 2, 2, 276, 1622, + 3, 2, 2, 2, 278, 279, 7, 14, 2, 2, 279, 280, 5, 252, 127, 2, 280, 3, 3, + 2, 2, 2, 281, 284, 5, 228, 115, 2, 282, 284, 5, 234, 118, 2, 283, 281, + 3, 2, 2, 2, 283, 282, 3, 2, 2, 2, 284, 5, 3, 2, 2, 2, 285, 287, 7, 31, + 2, 2, 286, 288, 5, 8, 5, 2, 287, 286, 3, 2, 2, 2, 287, 288, 3, 2, 2, 2, + 288, 289, 3, 2, 2, 2, 289, 290, 7, 32, 2, 2, 290, 7, 3, 2, 2, 2, 291, 296, + 5, 10, 6, 2, 292, 293, 7, 13, 2, 2, 293, 295, 5, 10, 6, 2, 294, 292, 3, + 2, 2, 2, 295, 298, 3, 2, 2, 2, 296, 294, 3, 2, 2, 2, 296, 297, 3, 2, 2, + 2, 297, 9, 3, 2, 2, 2, 298, 296, 3, 2, 2, 2, 299, 301, 7, 125, 2, 2, 300, + 302, 5, 12, 7, 2, 301, 300, 3, 2, 2, 2, 301, 302, 3, 2, 2, 2, 302, 305, + 3, 2, 2, 2, 303, 305, 5, 6, 4, 2, 304, 299, 3, 2, 2, 2, 304, 303, 3, 2, + 2, 2, 305, 11, 3, 2, 2, 2, 306, 307, 7, 95, 2, 2, 307, 308, 5, 20, 11, + 2, 308, 13, 3, 2, 2, 2, 309, 311, 7, 31, 2, 2, 310, 312, 5, 16, 9, 2, 311, + 310, 3, 2, 2, 2, 311, 312, 3, 2, 2, 2, 312, 313, 3, 2, 2, 2, 313, 314, + 7, 32, 2, 2, 314, 15, 3, 2, 2, 2, 315, 320, 5, 18, 10, 2, 316, 317, 7, + 13, 2, 2, 317, 319, 5, 18, 10, 2, 318, 316, 3, 2, 2, 2, 319, 322, 3, 2, + 2, 2, 320, 318, 3, 2, 2, 2, 320, 321, 3, 2, 2, 2, 321, 17, 3, 2, 2, 2, + 322, 320, 3, 2, 2, 2, 323, 324, 5, 20, 11, 2, 324, 19, 3, 2, 2, 2, 325, + 331, 5, 22, 12, 2, 326, 331, 5, 50, 26, 2, 327, 331, 5, 52, 27, 2, 328, + 331, 5, 30, 16, 2, 329, 331, 7, 126, 2, 2, 330, 325, 3, 2, 2, 2, 330, 326, + 3, 2, 2, 2, 330, 327, 3, 2, 2, 2, 330, 328, 3, 2, 2, 2, 330, 329, 3, 2, + 2, 2, 331, 21, 3, 2, 2, 2, 332, 333, 8, 12, 1, 2, 333, 334, 5, 24, 13, + 2, 334, 343, 3, 2, 2, 2, 335, 336, 12, 5, 2, 2, 336, 337, 7, 41, 2, 2, + 337, 342, 5, 22, 12, 6, 338, 339, 12, 4, 2, 2, 339, 340, 7, 39, 2, 2, 340, + 342, 5, 22, 12, 5, 341, 335, 3, 2, 2, 2, 341, 338, 3, 2, 2, 2, 342, 345, + 3, 2, 2, 2, 343, 341, 3, 2, 2, 2, 343, 344, 3, 2, 2, 2, 344, 23, 3, 2, + 2, 2, 345, 343, 3, 2, 2, 2, 346, 347, 8, 13, 1, 2, 347, 348, 7, 8, 2, 2, + 348, 349, 5, 20, 11, 2, 349, 350, 7, 9, 2, 2, 350, 365, 3, 2, 2, 2, 351, + 365, 5, 26, 14, 2, 352, 365, 5, 28, 15, 2, 353, 365, 5, 36, 19, 2, 354, + 355, 7, 6, 2, 2, 355, 356, 5, 48, 25, 2, 356, 357, 7, 7, 2, 2, 357, 365, + 3, 2, 2, 2, 358, 365, 5, 54, 28, 2, 359, 365, 7, 81, 2, 2, 360, 361, 5, + 28, 15, 2, 361, 362, 7, 123, 2, 2, 362, 363, 5, 24, 13, 3, 363, 365, 3, + 2, 2, 2, 364, 346, 3, 2, 2, 2, 364, 351, 3, 2, 2, 2, 364, 352, 3, 2, 2, + 2, 364, 353, 3, 2, 2, 2, 364, 354, 3, 2, 2, 2, 364, 358, 3, 2, 2, 2, 364, + 359, 3, 2, 2, 2, 364, 360, 3, 2, 2, 2, 365, 372, 3, 2, 2, 2, 366, 367, + 12, 7, 2, 2, 367, 368, 6, 13, 5, 2, 368, 369, 7, 6, 2, 2, 369, 371, 7, + 7, 2, 2, 370, 366, 3, 2, 2, 2, 371, 374, 3, 2, 2, 2, 372, 370, 3, 2, 2, + 2, 372, 373, 3, 2, 2, 2, 373, 25, 3, 2, 2, 2, 374, 372, 3, 2, 2, 2, 375, + 376, 9, 2, 2, 2, 376, 27, 3, 2, 2, 2, 377, 380, 5, 34, 18, 2, 378, 381, + 5, 32, 17, 2, 379, 381, 5, 30, 16, 2, 380, 378, 3, 2, 2, 2, 380, 379, 3, + 2, 2, 2, 380, 381, 3, 2, 2, 2, 381, 29, 3, 2, 2, 2, 382, 383, 7, 31, 2, + 2, 383, 384, 5, 16, 9, 2, 384, 385, 7, 32, 2, 2, 385, 31, 3, 2, 2, 2, 386, + 387, 7, 31, 2, 2, 387, 388, 5, 16, 9, 2, 388, 389, 7, 31, 2, 2, 389, 395, + 5, 16, 9, 2, 390, 391, 7, 32, 2, 2, 391, 392, 5, 4, 3, 2, 392, 393, 7, + 32, 2, 2, 393, 396, 3, 2, 2, 2, 394, 396, 7, 28, 2, 2, 395, 390, 3, 2, + 2, 2, 395, 394, 3, 2, 2, 2, 396, 33, 3, 2, 2, 2, 397, 400, 7, 125, 2, 2, + 398, 400, 5, 106, 54, 2, 399, 397, 3, 2, 2, 2, 399, 398, 3, 2, 2, 2, 400, + 35, 3, 2, 2, 2, 401, 403, 7, 10, 2, 2, 402, 404, 5, 38, 20, 2, 403, 402, + 3, 2, 2, 2, 403, 404, 3, 2, 2, 2, 404, 405, 3, 2, 2, 2, 405, 406, 7, 11, + 2, 2, 406, 37, 3, 2, 2, 2, 407, 409, 5, 40, 21, 2, 408, 410, 9, 3, 2, 2, + 409, 408, 3, 2, 2, 2, 409, 410, 3, 2, 2, 2, 410, 39, 3, 2, 2, 2, 411, 416, + 5, 42, 22, 2, 412, 413, 9, 3, 2, 2, 413, 415, 5, 42, 22, 2, 414, 412, 3, + 2, 2, 2, 415, 418, 3, 2, 2, 2, 416, 414, 3, 2, 2, 2, 416, 417, 3, 2, 2, + 2, 417, 41, 3, 2, 2, 2, 418, 416, 3, 2, 2, 2, 419, 429, 5, 58, 30, 2, 420, + 429, 5, 62, 32, 2, 421, 429, 5, 80, 41, 2, 422, 429, 5, 82, 42, 2, 423, + 426, 5, 84, 43, 2, 424, 425, 7, 55, 2, 2, 425, 427, 5, 20, 11, 2, 426, + 424, 3, 2, 2, 2, 426, 427, 3, 2, 2, 2, 427, 429, 3, 2, 2, 2, 428, 419, + 3, 2, 2, 2, 428, 420, 3, 2, 2, 2, 428, 421, 3, 2, 2, 2, 428, 422, 3, 2, + 2, 2, 428, 423, 3, 2, 2, 2, 429, 43, 3, 2, 2, 2, 430, 431, 5, 24, 13, 2, + 431, 432, 6, 23, 6, 2, 432, 433, 7, 6, 2, 2, 433, 434, 7, 7, 2, 2, 434, + 45, 3, 2, 2, 2, 435, 436, 7, 6, 2, 2, 436, 437, 5, 48, 25, 2, 437, 438, + 7, 7, 2, 2, 438, 47, 3, 2, 2, 2, 439, 444, 5, 20, 11, 2, 440, 441, 7, 13, + 2, 2, 441, 443, 5, 20, 11, 2, 442, 440, 3, 2, 2, 2, 443, 446, 3, 2, 2, + 2, 444, 442, 3, 2, 2, 2, 444, 445, 3, 2, 2, 2, 445, 49, 3, 2, 2, 2, 446, + 444, 3, 2, 2, 2, 447, 449, 5, 6, 4, 2, 448, 447, 3, 2, 2, 2, 448, 449, + 3, 2, 2, 2, 449, 450, 3, 2, 2, 2, 450, 452, 7, 8, 2, 2, 451, 453, 5, 64, + 33, 2, 452, 451, 3, 2, 2, 2, 452, 453, 3, 2, 2, 2, 453, 454, 3, 2, 2, 2, + 454, 455, 7, 9, 2, 2, 455, 456, 7, 55, 2, 2, 456, 457, 5, 20, 11, 2, 457, + 51, 3, 2, 2, 2, 458, 460, 7, 69, 2, 2, 459, 461, 5, 6, 4, 2, 460, 459, + 3, 2, 2, 2, 460, 461, 3, 2, 2, 2, 461, 462, 3, 2, 2, 2, 462, 464, 7, 8, + 2, 2, 463, 465, 5, 64, 33, 2, 464, 463, 3, 2, 2, 2, 464, 465, 3, 2, 2, + 2, 465, 466, 3, 2, 2, 2, 466, 467, 7, 9, 2, 2, 467, 468, 7, 55, 2, 2, 468, + 469, 5, 20, 11, 2, 469, 53, 3, 2, 2, 2, 470, 471, 7, 66, 2, 2, 471, 472, + 5, 56, 29, 2, 472, 55, 3, 2, 2, 2, 473, 484, 7, 125, 2, 2, 474, 475, 5, + 266, 134, 2, 475, 476, 7, 18, 2, 2, 476, 478, 3, 2, 2, 2, 477, 474, 3, + 2, 2, 2, 478, 479, 3, 2, 2, 2, 479, 477, 3, 2, 2, 2, 479, 480, 3, 2, 2, + 2, 480, 481, 3, 2, 2, 2, 481, 482, 5, 266, 134, 2, 482, 484, 3, 2, 2, 2, + 483, 473, 3, 2, 2, 2, 483, 477, 3, 2, 2, 2, 484, 57, 3, 2, 2, 2, 485, 487, + 7, 91, 2, 2, 486, 485, 3, 2, 2, 2, 486, 487, 3, 2, 2, 2, 487, 488, 3, 2, + 2, 2, 488, 490, 5, 242, 122, 2, 489, 491, 7, 15, 2, 2, 490, 489, 3, 2, + 2, 2, 490, 491, 3, 2, 2, 2, 491, 493, 3, 2, 2, 2, 492, 494, 5, 60, 31, + 2, 493, 492, 3, 2, 2, 2, 493, 494, 3, 2, 2, 2, 494, 497, 3, 2, 2, 2, 495, + 496, 7, 55, 2, 2, 496, 498, 5, 20, 11, 2, 497, 495, 3, 2, 2, 2, 497, 498, + 3, 2, 2, 2, 498, 59, 3, 2, 2, 2, 499, 500, 7, 16, 2, 2, 500, 501, 5, 20, + 11, 2, 501, 61, 3, 2, 2, 2, 502, 504, 5, 6, 4, 2, 503, 502, 3, 2, 2, 2, + 503, 504, 3, 2, 2, 2, 504, 505, 3, 2, 2, 2, 505, 507, 7, 8, 2, 2, 506, + 508, 5, 64, 33, 2, 507, 506, 3, 2, 2, 2, 507, 508, 3, 2, 2, 2, 508, 509, + 3, 2, 2, 2, 509, 511, 7, 9, 2, 2, 510, 512, 5, 60, 31, 2, 511, 510, 3, + 2, 2, 2, 511, 512, 3, 2, 2, 2, 512, 63, 3, 2, 2, 2, 513, 540, 5, 78, 40, + 2, 514, 519, 5, 26, 14, 2, 515, 516, 7, 13, 2, 2, 516, 518, 5, 26, 14, + 2, 517, 515, 3, 2, 2, 2, 518, 521, 3, 2, 2, 2, 519, 517, 3, 2, 2, 2, 519, + 520, 3, 2, 2, 2, 520, 540, 3, 2, 2, 2, 521, 519, 3, 2, 2, 2, 522, 525, + 5, 74, 38, 2, 523, 524, 7, 13, 2, 2, 524, 526, 5, 78, 40, 2, 525, 523, + 3, 2, 2, 2, 525, 526, 3, 2, 2, 2, 526, 540, 3, 2, 2, 2, 527, 537, 5, 66, + 34, 2, 528, 535, 7, 13, 2, 2, 529, 532, 5, 74, 38, 2, 530, 531, 7, 13, + 2, 2, 531, 533, 5, 78, 40, 2, 532, 530, 3, 2, 2, 2, 532, 533, 3, 2, 2, + 2, 533, 536, 3, 2, 2, 2, 534, 536, 5, 78, 40, 2, 535, 529, 3, 2, 2, 2, + 535, 534, 3, 2, 2, 2, 536, 538, 3, 2, 2, 2, 537, 528, 3, 2, 2, 2, 537, + 538, 3, 2, 2, 2, 538, 540, 3, 2, 2, 2, 539, 513, 3, 2, 2, 2, 539, 514, + 3, 2, 2, 2, 539, 522, 3, 2, 2, 2, 539, 527, 3, 2, 2, 2, 540, 65, 3, 2, + 2, 2, 541, 546, 5, 68, 35, 2, 542, 543, 7, 13, 2, 2, 543, 545, 5, 68, 35, + 2, 544, 542, 3, 2, 2, 2, 545, 548, 3, 2, 2, 2, 546, 544, 3, 2, 2, 2, 546, + 547, 3, 2, 2, 2, 547, 67, 3, 2, 2, 2, 548, 546, 3, 2, 2, 2, 549, 551, 5, + 110, 56, 2, 550, 549, 3, 2, 2, 2, 550, 551, 3, 2, 2, 2, 551, 553, 3, 2, + 2, 2, 552, 554, 5, 70, 36, 2, 553, 552, 3, 2, 2, 2, 553, 554, 3, 2, 2, + 2, 554, 555, 3, 2, 2, 2, 555, 557, 5, 72, 37, 2, 556, 558, 5, 60, 31, 2, + 557, 556, 3, 2, 2, 2, 557, 558, 3, 2, 2, 2, 558, 69, 3, 2, 2, 2, 559, 560, + 9, 4, 2, 2, 560, 71, 3, 2, 2, 2, 561, 564, 5, 266, 134, 2, 562, 564, 5, + 4, 3, 2, 563, 561, 3, 2, 2, 2, 563, 562, 3, 2, 2, 2, 564, 73, 3, 2, 2, + 2, 565, 570, 5, 76, 39, 2, 566, 567, 7, 13, 2, 2, 567, 569, 5, 76, 39, + 2, 568, 566, 3, 2, 2, 2, 569, 572, 3, 2, 2, 2, 570, 568, 3, 2, 2, 2, 570, + 571, 3, 2, 2, 2, 571, 75, 3, 2, 2, 2, 572, 570, 3, 2, 2, 2, 573, 575, 5, + 110, 56, 2, 574, 573, 3, 2, 2, 2, 574, 575, 3, 2, 2, 2, 575, 577, 3, 2, + 2, 2, 576, 578, 5, 70, 36, 2, 577, 576, 3, 2, 2, 2, 577, 578, 3, 2, 2, + 2, 578, 579, 3, 2, 2, 2, 579, 588, 5, 72, 37, 2, 580, 582, 7, 15, 2, 2, + 581, 583, 5, 60, 31, 2, 582, 581, 3, 2, 2, 2, 582, 583, 3, 2, 2, 2, 583, + 589, 3, 2, 2, 2, 584, 586, 5, 60, 31, 2, 585, 584, 3, 2, 2, 2, 585, 586, + 3, 2, 2, 2, 586, 587, 3, 2, 2, 2, 587, 589, 5, 2, 2, 2, 588, 580, 3, 2, + 2, 2, 588, 585, 3, 2, 2, 2, 589, 77, 3, 2, 2, 2, 590, 591, 7, 17, 2, 2, + 591, 592, 5, 252, 127, 2, 592, 79, 3, 2, 2, 2, 593, 595, 7, 69, 2, 2, 594, + 596, 5, 6, 4, 2, 595, 594, 3, 2, 2, 2, 595, 596, 3, 2, 2, 2, 596, 597, + 3, 2, 2, 2, 597, 599, 7, 8, 2, 2, 598, 600, 5, 64, 33, 2, 599, 598, 3, + 2, 2, 2, 599, 600, 3, 2, 2, 2, 600, 601, 3, 2, 2, 2, 601, 603, 7, 9, 2, + 2, 602, 604, 5, 60, 31, 2, 603, 602, 3, 2, 2, 2, 603, 604, 3, 2, 2, 2, + 604, 81, 3, 2, 2, 2, 605, 606, 7, 6, 2, 2, 606, 607, 7, 125, 2, 2, 607, + 608, 7, 16, 2, 2, 608, 609, 9, 5, 2, 2, 609, 610, 7, 7, 2, 2, 610, 611, + 5, 60, 31, 2, 611, 83, 3, 2, 2, 2, 612, 614, 5, 242, 122, 2, 613, 615, + 7, 15, 2, 2, 614, 613, 3, 2, 2, 2, 614, 615, 3, 2, 2, 2, 615, 616, 3, 2, + 2, 2, 616, 617, 5, 62, 32, 2, 617, 85, 3, 2, 2, 2, 618, 619, 7, 114, 2, + 2, 619, 621, 7, 125, 2, 2, 620, 622, 5, 6, 4, 2, 621, 620, 3, 2, 2, 2, + 621, 622, 3, 2, 2, 2, 622, 623, 3, 2, 2, 2, 623, 624, 7, 14, 2, 2, 624, + 625, 5, 20, 11, 2, 625, 626, 7, 12, 2, 2, 626, 87, 3, 2, 2, 2, 627, 629, + 5, 70, 36, 2, 628, 627, 3, 2, 2, 2, 628, 629, 3, 2, 2, 2, 629, 630, 3, + 2, 2, 2, 630, 631, 7, 117, 2, 2, 631, 633, 7, 8, 2, 2, 632, 634, 5, 218, + 110, 2, 633, 632, 3, 2, 2, 2, 633, 634, 3, 2, 2, 2, 634, 635, 3, 2, 2, + 2, 635, 641, 7, 9, 2, 2, 636, 637, 7, 10, 2, 2, 637, 638, 5, 224, 113, + 2, 638, 639, 7, 11, 2, 2, 639, 642, 3, 2, 2, 2, 640, 642, 7, 12, 2, 2, + 641, 636, 3, 2, 2, 2, 641, 640, 3, 2, 2, 2, 641, 642, 3, 2, 2, 2, 642, + 89, 3, 2, 2, 2, 643, 645, 7, 98, 2, 2, 644, 643, 3, 2, 2, 2, 644, 645, + 3, 2, 2, 2, 645, 646, 3, 2, 2, 2, 646, 647, 7, 104, 2, 2, 647, 649, 7, + 125, 2, 2, 648, 650, 5, 6, 4, 2, 649, 648, 3, 2, 2, 2, 649, 650, 3, 2, + 2, 2, 650, 652, 3, 2, 2, 2, 651, 653, 5, 92, 47, 2, 652, 651, 3, 2, 2, + 2, 652, 653, 3, 2, 2, 2, 653, 654, 3, 2, 2, 2, 654, 656, 5, 36, 19, 2, + 655, 657, 7, 12, 2, 2, 656, 655, 3, 2, 2, 2, 656, 657, 3, 2, 2, 2, 657, + 91, 3, 2, 2, 2, 658, 659, 7, 95, 2, 2, 659, 660, 5, 94, 48, 2, 660, 93, + 3, 2, 2, 2, 661, 666, 5, 28, 15, 2, 662, 663, 7, 13, 2, 2, 663, 665, 5, + 28, 15, 2, 664, 662, 3, 2, 2, 2, 665, 668, 3, 2, 2, 2, 666, 664, 3, 2, + 2, 2, 666, 667, 3, 2, 2, 2, 667, 95, 3, 2, 2, 2, 668, 666, 3, 2, 2, 2, + 669, 671, 7, 97, 2, 2, 670, 669, 3, 2, 2, 2, 670, 671, 3, 2, 2, 2, 671, + 672, 3, 2, 2, 2, 672, 673, 7, 94, 2, 2, 673, 674, 7, 125, 2, 2, 674, 676, + 7, 10, 2, 2, 675, 677, 5, 98, 50, 2, 676, 675, 3, 2, 2, 2, 676, 677, 3, + 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 679, 7, 11, 2, 2, 679, 97, 3, 2, 2, + 2, 680, 682, 5, 100, 51, 2, 681, 683, 7, 13, 2, 2, 682, 681, 3, 2, 2, 2, + 682, 683, 3, 2, 2, 2, 683, 99, 3, 2, 2, 2, 684, 689, 5, 102, 52, 2, 685, + 686, 7, 13, 2, 2, 686, 688, 5, 102, 52, 2, 687, 685, 3, 2, 2, 2, 688, 691, + 3, 2, 2, 2, 689, 687, 3, 2, 2, 2, 689, 690, 3, 2, 2, 2, 690, 101, 3, 2, + 2, 2, 691, 689, 3, 2, 2, 2, 692, 695, 5, 242, 122, 2, 693, 694, 7, 14, + 2, 2, 694, 696, 5, 252, 127, 2, 695, 693, 3, 2, 2, 2, 695, 696, 3, 2, 2, + 2, 696, 103, 3, 2, 2, 2, 697, 698, 7, 118, 2, 2, 698, 699, 5, 106, 54, + 2, 699, 701, 7, 10, 2, 2, 700, 702, 5, 126, 64, 2, 701, 700, 3, 2, 2, 2, + 701, 702, 3, 2, 2, 2, 702, 703, 3, 2, 2, 2, 703, 704, 7, 11, 2, 2, 704, + 105, 3, 2, 2, 2, 705, 714, 7, 125, 2, 2, 706, 708, 7, 18, 2, 2, 707, 706, + 3, 2, 2, 2, 708, 709, 3, 2, 2, 2, 709, 707, 3, 2, 2, 2, 709, 710, 3, 2, + 2, 2, 710, 711, 3, 2, 2, 2, 711, 713, 7, 125, 2, 2, 712, 707, 3, 2, 2, + 2, 713, 716, 3, 2, 2, 2, 714, 712, 3, 2, 2, 2, 714, 715, 3, 2, 2, 2, 715, + 107, 3, 2, 2, 2, 716, 714, 3, 2, 2, 2, 717, 718, 7, 125, 2, 2, 718, 719, + 7, 14, 2, 2, 719, 720, 5, 106, 54, 2, 720, 721, 7, 12, 2, 2, 721, 109, + 3, 2, 2, 2, 722, 724, 5, 112, 57, 2, 723, 722, 3, 2, 2, 2, 724, 725, 3, + 2, 2, 2, 725, 723, 3, 2, 2, 2, 725, 726, 3, 2, 2, 2, 726, 111, 3, 2, 2, + 2, 727, 730, 7, 124, 2, 2, 728, 731, 5, 114, 58, 2, 729, 731, 5, 116, 59, + 2, 730, 728, 3, 2, 2, 2, 730, 729, 3, 2, 2, 2, 731, 113, 3, 2, 2, 2, 732, + 733, 8, 58, 1, 2, 733, 739, 7, 125, 2, 2, 734, 735, 7, 8, 2, 2, 735, 736, + 5, 252, 127, 2, 736, 737, 7, 9, 2, 2, 737, 739, 3, 2, 2, 2, 738, 732, 3, + 2, 2, 2, 738, 734, 3, 2, 2, 2, 739, 745, 3, 2, 2, 2, 740, 741, 12, 4, 2, + 2, 741, 742, 7, 18, 2, 2, 742, 744, 5, 266, 134, 2, 743, 740, 3, 2, 2, + 2, 744, 747, 3, 2, 2, 2, 745, 743, 3, 2, 2, 2, 745, 746, 3, 2, 2, 2, 746, + 115, 3, 2, 2, 2, 747, 745, 3, 2, 2, 2, 748, 749, 5, 114, 58, 2, 749, 750, + 5, 244, 123, 2, 750, 117, 3, 2, 2, 2, 751, 753, 5, 226, 114, 2, 752, 751, + 3, 2, 2, 2, 752, 753, 3, 2, 2, 2, 753, 754, 3, 2, 2, 2, 754, 755, 7, 2, + 2, 3, 755, 119, 3, 2, 2, 2, 756, 758, 7, 98, 2, 2, 757, 756, 3, 2, 2, 2, + 757, 758, 3, 2, 2, 2, 758, 759, 3, 2, 2, 2, 759, 760, 5, 122, 62, 2, 760, + 121, 3, 2, 2, 2, 761, 791, 5, 124, 63, 2, 762, 791, 5, 138, 70, 2, 763, + 791, 5, 130, 66, 2, 764, 791, 5, 136, 69, 2, 765, 791, 5, 144, 73, 2, 766, + 791, 5, 128, 65, 2, 767, 791, 5, 188, 95, 2, 768, 791, 5, 90, 46, 2, 769, + 791, 5, 104, 53, 2, 770, 791, 5, 148, 75, 2, 771, 791, 5, 150, 76, 2, 772, + 791, 5, 154, 78, 2, 773, 791, 5, 156, 79, 2, 774, 791, 5, 158, 80, 2, 775, + 791, 5, 160, 81, 2, 776, 791, 5, 162, 82, 2, 777, 791, 5, 174, 88, 2, 778, + 791, 5, 164, 83, 2, 779, 791, 5, 176, 89, 2, 780, 791, 5, 178, 90, 2, 781, + 791, 5, 184, 93, 2, 782, 791, 5, 186, 94, 2, 783, 791, 5, 254, 128, 2, + 784, 791, 5, 208, 105, 2, 785, 791, 5, 86, 44, 2, 786, 791, 5, 96, 49, + 2, 787, 791, 5, 146, 74, 2, 788, 789, 7, 98, 2, 2, 789, 791, 5, 122, 62, + 2, 790, 761, 3, 2, 2, 2, 790, 762, 3, 2, 2, 2, 790, 763, 3, 2, 2, 2, 790, + 764, 3, 2, 2, 2, 790, 765, 3, 2, 2, 2, 790, 766, 3, 2, 2, 2, 790, 767, + 3, 2, 2, 2, 790, 768, 3, 2, 2, 2, 790, 769, 3, 2, 2, 2, 790, 770, 3, 2, + 2, 2, 790, 771, 3, 2, 2, 2, 790, 772, 3, 2, 2, 2, 790, 773, 3, 2, 2, 2, + 790, 774, 3, 2, 2, 2, 790, 775, 3, 2, 2, 2, 790, 776, 3, 2, 2, 2, 790, + 777, 3, 2, 2, 2, 790, 778, 3, 2, 2, 2, 790, 779, 3, 2, 2, 2, 790, 780, + 3, 2, 2, 2, 790, 781, 3, 2, 2, 2, 790, 782, 3, 2, 2, 2, 790, 783, 3, 2, + 2, 2, 790, 784, 3, 2, 2, 2, 790, 785, 3, 2, 2, 2, 790, 786, 3, 2, 2, 2, + 790, 787, 3, 2, 2, 2, 790, 788, 3, 2, 2, 2, 791, 123, 3, 2, 2, 2, 792, + 794, 7, 10, 2, 2, 793, 795, 5, 126, 64, 2, 794, 793, 3, 2, 2, 2, 794, 795, + 3, 2, 2, 2, 795, 796, 3, 2, 2, 2, 796, 797, 7, 11, 2, 2, 797, 125, 3, 2, + 2, 2, 798, 800, 5, 122, 62, 2, 799, 798, 3, 2, 2, 2, 800, 801, 3, 2, 2, + 2, 801, 799, 3, 2, 2, 2, 801, 802, 3, 2, 2, 2, 802, 127, 3, 2, 2, 2, 803, + 807, 7, 122, 2, 2, 804, 805, 7, 125, 2, 2, 805, 808, 5, 62, 32, 2, 806, + 808, 5, 138, 70, 2, 807, 804, 3, 2, 2, 2, 807, 806, 3, 2, 2, 2, 808, 809, + 3, 2, 2, 2, 809, 810, 5, 276, 139, 2, 810, 129, 3, 2, 2, 2, 811, 814, 7, + 99, 2, 2, 812, 815, 5, 132, 67, 2, 813, 815, 5, 108, 55, 2, 814, 812, 3, + 2, 2, 2, 814, 813, 3, 2, 2, 2, 815, 131, 3, 2, 2, 2, 816, 819, 7, 25, 2, + 2, 817, 819, 5, 134, 68, 2, 818, 816, 3, 2, 2, 2, 818, 817, 3, 2, 2, 2, + 819, 822, 3, 2, 2, 2, 820, 821, 7, 89, 2, 2, 821, 823, 5, 266, 134, 2, + 822, 820, 3, 2, 2, 2, 822, 823, 3, 2, 2, 2, 823, 824, 3, 2, 2, 2, 824, + 825, 7, 90, 2, 2, 825, 826, 7, 126, 2, 2, 826, 827, 5, 276, 139, 2, 827, + 133, 3, 2, 2, 2, 828, 829, 5, 266, 134, 2, 829, 830, 7, 13, 2, 2, 830, + 832, 3, 2, 2, 2, 831, 828, 3, 2, 2, 2, 831, 832, 3, 2, 2, 2, 832, 833, + 3, 2, 2, 2, 833, 834, 7, 10, 2, 2, 834, 839, 5, 266, 134, 2, 835, 836, + 7, 13, 2, 2, 836, 838, 5, 266, 134, 2, 837, 835, 3, 2, 2, 2, 838, 841, + 3, 2, 2, 2, 839, 837, 3, 2, 2, 2, 839, 840, 3, 2, 2, 2, 840, 842, 3, 2, + 2, 2, 841, 839, 3, 2, 2, 2, 842, 843, 7, 11, 2, 2, 843, 135, 3, 2, 2, 2, + 844, 846, 7, 98, 2, 2, 845, 847, 7, 83, 2, 2, 846, 845, 3, 2, 2, 2, 846, + 847, 3, 2, 2, 2, 847, 850, 3, 2, 2, 2, 848, 851, 5, 132, 67, 2, 849, 851, + 5, 122, 62, 2, 850, 848, 3, 2, 2, 2, 850, 849, 3, 2, 2, 2, 851, 137, 3, + 2, 2, 2, 852, 854, 5, 4, 3, 2, 853, 855, 5, 60, 31, 2, 854, 853, 3, 2, + 2, 2, 854, 855, 3, 2, 2, 2, 855, 856, 3, 2, 2, 2, 856, 858, 5, 2, 2, 2, + 857, 859, 7, 12, 2, 2, 858, 857, 3, 2, 2, 2, 858, 859, 3, 2, 2, 2, 859, + 874, 3, 2, 2, 2, 860, 862, 5, 70, 36, 2, 861, 860, 3, 2, 2, 2, 861, 862, + 3, 2, 2, 2, 862, 864, 3, 2, 2, 2, 863, 865, 5, 152, 77, 2, 864, 863, 3, + 2, 2, 2, 864, 865, 3, 2, 2, 2, 865, 867, 3, 2, 2, 2, 866, 868, 7, 91, 2, + 2, 867, 866, 3, 2, 2, 2, 867, 868, 3, 2, 2, 2, 868, 869, 3, 2, 2, 2, 869, + 871, 5, 140, 71, 2, 870, 872, 7, 12, 2, 2, 871, 870, 3, 2, 2, 2, 871, 872, + 3, 2, 2, 2, 872, 874, 3, 2, 2, 2, 873, 852, 3, 2, 2, 2, 873, 861, 3, 2, + 2, 2, 874, 139, 3, 2, 2, 2, 875, 880, 5, 142, 72, 2, 876, 877, 7, 13, 2, + 2, 877, 879, 5, 142, 72, 2, 878, 876, 3, 2, 2, 2, 879, 882, 3, 2, 2, 2, + 880, 878, 3, 2, 2, 2, 880, 881, 3, 2, 2, 2, 881, 141, 3, 2, 2, 2, 882, + 880, 3, 2, 2, 2, 883, 887, 7, 125, 2, 2, 884, 887, 5, 228, 115, 2, 885, + 887, 5, 234, 118, 2, 886, 883, 3, 2, 2, 2, 886, 884, 3, 2, 2, 2, 886, 885, + 3, 2, 2, 2, 887, 889, 3, 2, 2, 2, 888, 890, 5, 60, 31, 2, 889, 888, 3, + 2, 2, 2, 889, 890, 3, 2, 2, 2, 890, 892, 3, 2, 2, 2, 891, 893, 5, 252, + 127, 2, 892, 891, 3, 2, 2, 2, 892, 893, 3, 2, 2, 2, 893, 899, 3, 2, 2, + 2, 894, 896, 7, 14, 2, 2, 895, 897, 5, 6, 4, 2, 896, 895, 3, 2, 2, 2, 896, + 897, 3, 2, 2, 2, 897, 898, 3, 2, 2, 2, 898, 900, 5, 252, 127, 2, 899, 894, + 3, 2, 2, 2, 899, 900, 3, 2, 2, 2, 900, 143, 3, 2, 2, 2, 901, 902, 7, 12, + 2, 2, 902, 145, 3, 2, 2, 2, 903, 904, 6, 74, 8, 2, 904, 906, 5, 248, 125, + 2, 905, 907, 7, 12, 2, 2, 906, 905, 3, 2, 2, 2, 906, 907, 3, 2, 2, 2, 907, + 147, 3, 2, 2, 2, 908, 909, 7, 84, 2, 2, 909, 910, 7, 8, 2, 2, 910, 911, + 5, 248, 125, 2, 911, 912, 7, 9, 2, 2, 912, 915, 5, 122, 62, 2, 913, 914, + 7, 68, 2, 2, 914, 916, 5, 122, 62, 2, 915, 913, 3, 2, 2, 2, 915, 916, 3, + 2, 2, 2, 916, 149, 3, 2, 2, 2, 917, 918, 7, 64, 2, 2, 918, 919, 5, 122, + 62, 2, 919, 920, 7, 78, 2, 2, 920, 921, 7, 8, 2, 2, 921, 922, 5, 248, 125, + 2, 922, 923, 7, 9, 2, 2, 923, 924, 5, 276, 139, 2, 924, 987, 3, 2, 2, 2, + 925, 926, 7, 78, 2, 2, 926, 927, 7, 8, 2, 2, 927, 928, 5, 248, 125, 2, + 928, 929, 7, 9, 2, 2, 929, 930, 5, 122, 62, 2, 930, 987, 3, 2, 2, 2, 931, + 932, 7, 76, 2, 2, 932, 934, 7, 8, 2, 2, 933, 935, 5, 248, 125, 2, 934, + 933, 3, 2, 2, 2, 934, 935, 3, 2, 2, 2, 935, 936, 3, 2, 2, 2, 936, 938, + 7, 12, 2, 2, 937, 939, 5, 248, 125, 2, 938, 937, 3, 2, 2, 2, 938, 939, + 3, 2, 2, 2, 939, 940, 3, 2, 2, 2, 940, 942, 7, 12, 2, 2, 941, 943, 5, 248, + 125, 2, 942, 941, 3, 2, 2, 2, 942, 943, 3, 2, 2, 2, 943, 944, 3, 2, 2, + 2, 944, 945, 7, 9, 2, 2, 945, 987, 5, 122, 62, 2, 946, 947, 7, 76, 2, 2, + 947, 948, 7, 8, 2, 2, 948, 949, 5, 152, 77, 2, 949, 950, 5, 140, 71, 2, + 950, 952, 7, 12, 2, 2, 951, 953, 5, 248, 125, 2, 952, 951, 3, 2, 2, 2, + 952, 953, 3, 2, 2, 2, 953, 954, 3, 2, 2, 2, 954, 956, 7, 12, 2, 2, 955, + 957, 5, 248, 125, 2, 956, 955, 3, 2, 2, 2, 956, 957, 3, 2, 2, 2, 957, 958, + 3, 2, 2, 2, 958, 959, 7, 9, 2, 2, 959, 960, 5, 122, 62, 2, 960, 987, 3, + 2, 2, 2, 961, 962, 7, 76, 2, 2, 962, 963, 7, 8, 2, 2, 963, 967, 5, 252, + 127, 2, 964, 968, 7, 87, 2, 2, 965, 966, 7, 125, 2, 2, 966, 968, 6, 76, + 9, 2, 967, 964, 3, 2, 2, 2, 967, 965, 3, 2, 2, 2, 968, 969, 3, 2, 2, 2, + 969, 970, 5, 248, 125, 2, 970, 971, 7, 9, 2, 2, 971, 972, 5, 122, 62, 2, + 972, 987, 3, 2, 2, 2, 973, 974, 7, 76, 2, 2, 974, 975, 7, 8, 2, 2, 975, + 976, 5, 152, 77, 2, 976, 980, 5, 142, 72, 2, 977, 981, 7, 87, 2, 2, 978, + 979, 7, 125, 2, 2, 979, 981, 6, 76, 10, 2, 980, 977, 3, 2, 2, 2, 980, 978, + 3, 2, 2, 2, 981, 982, 3, 2, 2, 2, 982, 983, 5, 248, 125, 2, 983, 984, 7, + 9, 2, 2, 984, 985, 5, 122, 62, 2, 985, 987, 3, 2, 2, 2, 986, 917, 3, 2, + 2, 2, 986, 925, 3, 2, 2, 2, 986, 931, 3, 2, 2, 2, 986, 946, 3, 2, 2, 2, + 986, 961, 3, 2, 2, 2, 986, 973, 3, 2, 2, 2, 987, 151, 3, 2, 2, 2, 988, + 989, 9, 6, 2, 2, 989, 153, 3, 2, 2, 2, 990, 993, 7, 75, 2, 2, 991, 992, + 6, 78, 11, 2, 992, 994, 7, 125, 2, 2, 993, 991, 3, 2, 2, 2, 993, 994, 3, + 2, 2, 2, 994, 995, 3, 2, 2, 2, 995, 996, 5, 276, 139, 2, 996, 155, 3, 2, + 2, 2, 997, 1000, 7, 63, 2, 2, 998, 999, 6, 79, 12, 2, 999, 1001, 7, 125, + 2, 2, 1000, 998, 3, 2, 2, 2, 1000, 1001, 3, 2, 2, 2, 1001, 1002, 3, 2, + 2, 2, 1002, 1003, 5, 276, 139, 2, 1003, 157, 3, 2, 2, 2, 1004, 1007, 7, + 73, 2, 2, 1005, 1006, 6, 80, 13, 2, 1006, 1008, 5, 248, 125, 2, 1007, 1005, + 3, 2, 2, 2, 1007, 1008, 3, 2, 2, 2, 1008, 1009, 3, 2, 2, 2, 1009, 1010, + 5, 276, 139, 2, 1010, 159, 3, 2, 2, 2, 1011, 1014, 7, 108, 2, 2, 1012, + 1013, 6, 81, 14, 2, 1013, 1015, 5, 248, 125, 2, 1014, 1012, 3, 2, 2, 2, + 1014, 1015, 3, 2, 2, 2, 1015, 1016, 3, 2, 2, 2, 1016, 1017, 5, 276, 139, + 2, 1017, 161, 3, 2, 2, 2, 1018, 1019, 7, 82, 2, 2, 1019, 1020, 7, 8, 2, + 2, 1020, 1021, 5, 248, 125, 2, 1021, 1022, 7, 9, 2, 2, 1022, 1023, 5, 122, + 62, 2, 1023, 163, 3, 2, 2, 2, 1024, 1025, 7, 77, 2, 2, 1025, 1026, 7, 8, + 2, 2, 1026, 1027, 5, 248, 125, 2, 1027, 1028, 7, 9, 2, 2, 1028, 1029, 5, + 166, 84, 2, 1029, 165, 3, 2, 2, 2, 1030, 1032, 7, 10, 2, 2, 1031, 1033, + 5, 168, 85, 2, 1032, 1031, 3, 2, 2, 2, 1032, 1033, 3, 2, 2, 2, 1033, 1038, + 3, 2, 2, 2, 1034, 1036, 5, 172, 87, 2, 1035, 1037, 5, 168, 85, 2, 1036, + 1035, 3, 2, 2, 2, 1036, 1037, 3, 2, 2, 2, 1037, 1039, 3, 2, 2, 2, 1038, + 1034, 3, 2, 2, 2, 1038, 1039, 3, 2, 2, 2, 1039, 1040, 3, 2, 2, 2, 1040, + 1041, 7, 11, 2, 2, 1041, 167, 3, 2, 2, 2, 1042, 1044, 5, 170, 86, 2, 1043, + 1042, 3, 2, 2, 2, 1044, 1045, 3, 2, 2, 2, 1045, 1043, 3, 2, 2, 2, 1045, + 1046, 3, 2, 2, 2, 1046, 169, 3, 2, 2, 2, 1047, 1048, 7, 67, 2, 2, 1048, + 1049, 5, 248, 125, 2, 1049, 1051, 7, 16, 2, 2, 1050, 1052, 5, 126, 64, + 2, 1051, 1050, 3, 2, 2, 2, 1051, 1052, 3, 2, 2, 2, 1052, 171, 3, 2, 2, + 2, 1053, 1054, 7, 83, 2, 2, 1054, 1056, 7, 16, 2, 2, 1055, 1057, 5, 126, + 64, 2, 1056, 1055, 3, 2, 2, 2, 1056, 1057, 3, 2, 2, 2, 1057, 173, 3, 2, + 2, 2, 1058, 1059, 7, 125, 2, 2, 1059, 1060, 7, 16, 2, 2, 1060, 1061, 5, + 122, 62, 2, 1061, 175, 3, 2, 2, 2, 1062, 1063, 7, 85, 2, 2, 1063, 1064, + 6, 89, 15, 2, 1064, 1065, 5, 248, 125, 2, 1065, 1066, 5, 276, 139, 2, 1066, + 177, 3, 2, 2, 2, 1067, 1068, 7, 88, 2, 2, 1068, 1074, 5, 124, 63, 2, 1069, + 1071, 5, 180, 91, 2, 1070, 1072, 5, 182, 92, 2, 1071, 1070, 3, 2, 2, 2, + 1071, 1072, 3, 2, 2, 2, 1072, 1075, 3, 2, 2, 2, 1073, 1075, 5, 182, 92, + 2, 1074, 1069, 3, 2, 2, 2, 1074, 1073, 3, 2, 2, 2, 1075, 179, 3, 2, 2, + 2, 1076, 1077, 7, 71, 2, 2, 1077, 1078, 7, 8, 2, 2, 1078, 1079, 7, 125, + 2, 2, 1079, 1080, 7, 9, 2, 2, 1080, 1081, 5, 124, 63, 2, 1081, 181, 3, + 2, 2, 2, 1082, 1083, 7, 72, 2, 2, 1083, 1084, 5, 124, 63, 2, 1084, 183, + 3, 2, 2, 2, 1085, 1086, 7, 79, 2, 2, 1086, 1087, 5, 276, 139, 2, 1087, + 185, 3, 2, 2, 2, 1088, 1089, 7, 80, 2, 2, 1089, 1090, 7, 125, 2, 2, 1090, + 1096, 5, 62, 32, 2, 1091, 1092, 7, 10, 2, 2, 1092, 1093, 5, 224, 113, 2, + 1093, 1094, 7, 11, 2, 2, 1094, 1097, 3, 2, 2, 2, 1095, 1097, 7, 12, 2, + 2, 1096, 1091, 3, 2, 2, 2, 1096, 1095, 3, 2, 2, 2, 1097, 187, 3, 2, 2, + 2, 1098, 1100, 7, 122, 2, 2, 1099, 1098, 3, 2, 2, 2, 1099, 1100, 3, 2, + 2, 2, 1100, 1101, 3, 2, 2, 2, 1101, 1102, 7, 93, 2, 2, 1102, 1104, 7, 125, + 2, 2, 1103, 1105, 5, 6, 4, 2, 1104, 1103, 3, 2, 2, 2, 1104, 1105, 3, 2, + 2, 2, 1105, 1106, 3, 2, 2, 2, 1106, 1107, 5, 190, 96, 2, 1107, 1108, 5, + 192, 97, 2, 1108, 189, 3, 2, 2, 2, 1109, 1111, 5, 194, 98, 2, 1110, 1109, + 3, 2, 2, 2, 1110, 1111, 3, 2, 2, 2, 1111, 1113, 3, 2, 2, 2, 1112, 1114, + 5, 196, 99, 2, 1113, 1112, 3, 2, 2, 2, 1113, 1114, 3, 2, 2, 2, 1114, 191, + 3, 2, 2, 2, 1115, 1119, 7, 10, 2, 2, 1116, 1118, 5, 198, 100, 2, 1117, + 1116, 3, 2, 2, 2, 1118, 1121, 3, 2, 2, 2, 1119, 1117, 3, 2, 2, 2, 1119, + 1120, 3, 2, 2, 2, 1120, 1122, 3, 2, 2, 2, 1121, 1119, 3, 2, 2, 2, 1122, + 1123, 7, 11, 2, 2, 1123, 193, 3, 2, 2, 2, 1124, 1125, 7, 95, 2, 2, 1125, + 1126, 5, 28, 15, 2, 1126, 195, 3, 2, 2, 2, 1127, 1128, 7, 100, 2, 2, 1128, + 1129, 5, 94, 48, 2, 1129, 197, 3, 2, 2, 2, 1130, 1135, 5, 88, 45, 2, 1131, + 1135, 5, 200, 101, 2, 1132, 1135, 5, 204, 103, 2, 1133, 1135, 5, 122, 62, + 2, 1134, 1130, 3, 2, 2, 2, 1134, 1131, 3, 2, 2, 2, 1134, 1132, 3, 2, 2, + 2, 1134, 1133, 3, 2, 2, 2, 1135, 199, 3, 2, 2, 2, 1136, 1137, 5, 202, 102, + 2, 1137, 1139, 5, 242, 122, 2, 1138, 1140, 5, 60, 31, 2, 1139, 1138, 3, + 2, 2, 2, 1139, 1140, 3, 2, 2, 2, 1140, 1142, 3, 2, 2, 2, 1141, 1143, 5, + 2, 2, 2, 1142, 1141, 3, 2, 2, 2, 1142, 1143, 3, 2, 2, 2, 1143, 1144, 3, + 2, 2, 2, 1144, 1145, 7, 12, 2, 2, 1145, 1163, 3, 2, 2, 2, 1146, 1147, 5, + 202, 102, 2, 1147, 1148, 5, 242, 122, 2, 1148, 1154, 5, 62, 32, 2, 1149, + 1150, 7, 10, 2, 2, 1150, 1151, 5, 224, 113, 2, 1151, 1152, 7, 11, 2, 2, + 1152, 1155, 3, 2, 2, 2, 1153, 1155, 7, 12, 2, 2, 1154, 1149, 3, 2, 2, 2, + 1154, 1153, 3, 2, 2, 2, 1155, 1163, 3, 2, 2, 2, 1156, 1159, 5, 202, 102, + 2, 1157, 1160, 5, 238, 120, 2, 1158, 1160, 5, 240, 121, 2, 1159, 1157, + 3, 2, 2, 2, 1159, 1158, 3, 2, 2, 2, 1160, 1163, 3, 2, 2, 2, 1161, 1163, + 5, 128, 65, 2, 1162, 1136, 3, 2, 2, 2, 1162, 1146, 3, 2, 2, 2, 1162, 1156, + 3, 2, 2, 2, 1162, 1161, 3, 2, 2, 2, 1163, 201, 3, 2, 2, 2, 1164, 1166, + 7, 92, 2, 2, 1165, 1164, 3, 2, 2, 2, 1165, 1166, 3, 2, 2, 2, 1166, 1168, + 3, 2, 2, 2, 1167, 1169, 5, 70, 36, 2, 1168, 1167, 3, 2, 2, 2, 1168, 1169, + 3, 2, 2, 2, 1169, 1171, 3, 2, 2, 2, 1170, 1172, 7, 107, 2, 2, 1171, 1170, + 3, 2, 2, 2, 1171, 1172, 3, 2, 2, 2, 1172, 1174, 3, 2, 2, 2, 1173, 1175, + 7, 91, 2, 2, 1174, 1173, 3, 2, 2, 2, 1174, 1175, 3, 2, 2, 2, 1175, 203, + 3, 2, 2, 2, 1176, 1177, 5, 82, 42, 2, 1177, 1178, 7, 12, 2, 2, 1178, 205, + 3, 2, 2, 2, 1179, 1181, 7, 25, 2, 2, 1180, 1179, 3, 2, 2, 2, 1180, 1181, + 3, 2, 2, 2, 1181, 1182, 3, 2, 2, 2, 1182, 1183, 7, 125, 2, 2, 1183, 1185, + 7, 8, 2, 2, 1184, 1186, 5, 218, 110, 2, 1185, 1184, 3, 2, 2, 2, 1185, 1186, + 3, 2, 2, 2, 1186, 1187, 3, 2, 2, 2, 1187, 1188, 7, 9, 2, 2, 1188, 1189, + 7, 10, 2, 2, 1189, 1190, 5, 224, 113, 2, 1190, 1191, 7, 11, 2, 2, 1191, + 207, 3, 2, 2, 2, 1192, 1193, 7, 80, 2, 2, 1193, 1195, 7, 25, 2, 2, 1194, + 1196, 7, 125, 2, 2, 1195, 1194, 3, 2, 2, 2, 1195, 1196, 3, 2, 2, 2, 1196, + 1197, 3, 2, 2, 2, 1197, 1199, 7, 8, 2, 2, 1198, 1200, 5, 218, 110, 2, 1199, + 1198, 3, 2, 2, 2, 1199, 1200, 3, 2, 2, 2, 1200, 1201, 3, 2, 2, 2, 1201, + 1202, 7, 9, 2, 2, 1202, 1203, 7, 10, 2, 2, 1203, 1204, 5, 224, 113, 2, + 1204, 1205, 7, 11, 2, 2, 1205, 209, 3, 2, 2, 2, 1206, 1207, 7, 10, 2, 2, + 1207, 1212, 5, 212, 107, 2, 1208, 1209, 7, 13, 2, 2, 1209, 1211, 5, 212, + 107, 2, 1210, 1208, 3, 2, 2, 2, 1211, 1214, 3, 2, 2, 2, 1212, 1210, 3, + 2, 2, 2, 1212, 1213, 3, 2, 2, 2, 1213, 1216, 3, 2, 2, 2, 1214, 1212, 3, + 2, 2, 2, 1215, 1217, 7, 13, 2, 2, 1216, 1215, 3, 2, 2, 2, 1216, 1217, 3, + 2, 2, 2, 1217, 1218, 3, 2, 2, 2, 1218, 1219, 7, 11, 2, 2, 1219, 211, 3, + 2, 2, 2, 1220, 1221, 7, 25, 2, 2, 1221, 1222, 5, 216, 109, 2, 1222, 213, + 3, 2, 2, 2, 1223, 1224, 7, 10, 2, 2, 1224, 1229, 5, 216, 109, 2, 1225, + 1226, 7, 13, 2, 2, 1226, 1228, 5, 216, 109, 2, 1227, 1225, 3, 2, 2, 2, + 1228, 1231, 3, 2, 2, 2, 1229, 1227, 3, 2, 2, 2, 1229, 1230, 3, 2, 2, 2, + 1230, 1233, 3, 2, 2, 2, 1231, 1229, 3, 2, 2, 2, 1232, 1234, 7, 13, 2, 2, + 1233, 1232, 3, 2, 2, 2, 1233, 1234, 3, 2, 2, 2, 1234, 1235, 3, 2, 2, 2, + 1235, 1236, 7, 11, 2, 2, 1236, 215, 3, 2, 2, 2, 1237, 1238, 7, 6, 2, 2, + 1238, 1239, 5, 252, 127, 2, 1239, 1240, 7, 7, 2, 2, 1240, 1242, 7, 8, 2, + 2, 1241, 1243, 5, 218, 110, 2, 1242, 1241, 3, 2, 2, 2, 1242, 1243, 3, 2, + 2, 2, 1243, 1244, 3, 2, 2, 2, 1244, 1245, 7, 9, 2, 2, 1245, 1246, 7, 10, + 2, 2, 1246, 1247, 5, 224, 113, 2, 1247, 1248, 7, 11, 2, 2, 1248, 217, 3, + 2, 2, 2, 1249, 1254, 5, 220, 111, 2, 1250, 1251, 7, 13, 2, 2, 1251, 1253, + 5, 220, 111, 2, 1252, 1250, 3, 2, 2, 2, 1253, 1256, 3, 2, 2, 2, 1254, 1252, + 3, 2, 2, 2, 1254, 1255, 3, 2, 2, 2, 1255, 1259, 3, 2, 2, 2, 1256, 1254, + 3, 2, 2, 2, 1257, 1258, 7, 13, 2, 2, 1258, 1260, 5, 222, 112, 2, 1259, + 1257, 3, 2, 2, 2, 1259, 1260, 3, 2, 2, 2, 1260, 1269, 3, 2, 2, 2, 1261, + 1269, 5, 222, 112, 2, 1262, 1269, 5, 228, 115, 2, 1263, 1266, 5, 234, 118, + 2, 1264, 1265, 7, 16, 2, 2, 1265, 1267, 5, 218, 110, 2, 1266, 1264, 3, + 2, 2, 2, 1266, 1267, 3, 2, 2, 2, 1267, 1269, 3, 2, 2, 2, 1268, 1249, 3, + 2, 2, 2, 1268, 1261, 3, 2, 2, 2, 1268, 1262, 3, 2, 2, 2, 1268, 1263, 3, + 2, 2, 2, 1269, 219, 3, 2, 2, 2, 1270, 1272, 5, 70, 36, 2, 1271, 1270, 3, + 2, 2, 2, 1271, 1272, 3, 2, 2, 2, 1272, 1273, 3, 2, 2, 2, 1273, 1275, 7, + 125, 2, 2, 1274, 1276, 5, 60, 31, 2, 1275, 1274, 3, 2, 2, 2, 1275, 1276, + 3, 2, 2, 2, 1276, 1279, 3, 2, 2, 2, 1277, 1278, 7, 14, 2, 2, 1278, 1280, + 5, 252, 127, 2, 1279, 1277, 3, 2, 2, 2, 1279, 1280, 3, 2, 2, 2, 1280, 221, + 3, 2, 2, 2, 1281, 1282, 7, 17, 2, 2, 1282, 1283, 7, 125, 2, 2, 1283, 223, + 3, 2, 2, 2, 1284, 1286, 5, 226, 114, 2, 1285, 1284, 3, 2, 2, 2, 1285, 1286, + 3, 2, 2, 2, 1286, 225, 3, 2, 2, 2, 1287, 1289, 5, 120, 61, 2, 1288, 1287, + 3, 2, 2, 2, 1289, 1290, 3, 2, 2, 2, 1290, 1288, 3, 2, 2, 2, 1290, 1291, + 3, 2, 2, 2, 1291, 227, 3, 2, 2, 2, 1292, 1294, 7, 6, 2, 2, 1293, 1295, + 5, 230, 116, 2, 1294, 1293, 3, 2, 2, 2, 1294, 1295, 3, 2, 2, 2, 1295, 1296, + 3, 2, 2, 2, 1296, 1297, 7, 7, 2, 2, 1297, 229, 3, 2, 2, 2, 1298, 1307, + 5, 252, 127, 2, 1299, 1301, 7, 13, 2, 2, 1300, 1299, 3, 2, 2, 2, 1301, + 1302, 3, 2, 2, 2, 1302, 1300, 3, 2, 2, 2, 1302, 1303, 3, 2, 2, 2, 1303, + 1304, 3, 2, 2, 2, 1304, 1306, 5, 252, 127, 2, 1305, 1300, 3, 2, 2, 2, 1306, + 1309, 3, 2, 2, 2, 1307, 1305, 3, 2, 2, 2, 1307, 1308, 3, 2, 2, 2, 1308, + 1316, 3, 2, 2, 2, 1309, 1307, 3, 2, 2, 2, 1310, 1312, 7, 13, 2, 2, 1311, + 1310, 3, 2, 2, 2, 1312, 1313, 3, 2, 2, 2, 1313, 1311, 3, 2, 2, 2, 1313, + 1314, 3, 2, 2, 2, 1314, 1315, 3, 2, 2, 2, 1315, 1317, 5, 232, 117, 2, 1316, + 1311, 3, 2, 2, 2, 1316, 1317, 3, 2, 2, 2, 1317, 1320, 3, 2, 2, 2, 1318, + 1320, 5, 232, 117, 2, 1319, 1298, 3, 2, 2, 2, 1319, 1318, 3, 2, 2, 2, 1320, + 231, 3, 2, 2, 2, 1321, 1324, 7, 17, 2, 2, 1322, 1325, 7, 125, 2, 2, 1323, + 1325, 5, 252, 127, 2, 1324, 1322, 3, 2, 2, 2, 1324, 1323, 3, 2, 2, 2, 1325, + 233, 3, 2, 2, 2, 1326, 1335, 7, 10, 2, 2, 1327, 1332, 5, 236, 119, 2, 1328, + 1329, 7, 13, 2, 2, 1329, 1331, 5, 236, 119, 2, 1330, 1328, 3, 2, 2, 2, + 1331, 1334, 3, 2, 2, 2, 1332, 1330, 3, 2, 2, 2, 1332, 1333, 3, 2, 2, 2, + 1333, 1336, 3, 2, 2, 2, 1334, 1332, 3, 2, 2, 2, 1335, 1327, 3, 2, 2, 2, + 1335, 1336, 3, 2, 2, 2, 1336, 1338, 3, 2, 2, 2, 1337, 1339, 7, 13, 2, 2, + 1338, 1337, 3, 2, 2, 2, 1338, 1339, 3, 2, 2, 2, 1339, 1340, 3, 2, 2, 2, + 1340, 1341, 7, 11, 2, 2, 1341, 235, 3, 2, 2, 2, 1342, 1343, 5, 242, 122, + 2, 1343, 1344, 9, 7, 2, 2, 1344, 1345, 5, 252, 127, 2, 1345, 1358, 3, 2, + 2, 2, 1346, 1347, 7, 6, 2, 2, 1347, 1348, 5, 252, 127, 2, 1348, 1349, 7, + 7, 2, 2, 1349, 1350, 7, 16, 2, 2, 1350, 1351, 5, 252, 127, 2, 1351, 1358, + 3, 2, 2, 2, 1352, 1358, 5, 238, 120, 2, 1353, 1358, 5, 240, 121, 2, 1354, + 1358, 5, 206, 104, 2, 1355, 1358, 7, 125, 2, 2, 1356, 1358, 5, 78, 40, + 2, 1357, 1342, 3, 2, 2, 2, 1357, 1346, 3, 2, 2, 2, 1357, 1352, 3, 2, 2, + 2, 1357, 1353, 3, 2, 2, 2, 1357, 1354, 3, 2, 2, 2, 1357, 1355, 3, 2, 2, + 2, 1357, 1356, 3, 2, 2, 2, 1358, 237, 3, 2, 2, 2, 1359, 1360, 5, 272, 137, + 2, 1360, 1361, 7, 8, 2, 2, 1361, 1363, 7, 9, 2, 2, 1362, 1364, 5, 60, 31, + 2, 1363, 1362, 3, 2, 2, 2, 1363, 1364, 3, 2, 2, 2, 1364, 1365, 3, 2, 2, + 2, 1365, 1366, 7, 10, 2, 2, 1366, 1367, 5, 224, 113, 2, 1367, 1368, 7, + 11, 2, 2, 1368, 239, 3, 2, 2, 2, 1369, 1370, 5, 274, 138, 2, 1370, 1373, + 7, 8, 2, 2, 1371, 1374, 7, 125, 2, 2, 1372, 1374, 5, 4, 3, 2, 1373, 1371, + 3, 2, 2, 2, 1373, 1372, 3, 2, 2, 2, 1374, 1376, 3, 2, 2, 2, 1375, 1377, + 5, 60, 31, 2, 1376, 1375, 3, 2, 2, 2, 1376, 1377, 3, 2, 2, 2, 1377, 1378, + 3, 2, 2, 2, 1378, 1379, 7, 9, 2, 2, 1379, 1380, 7, 10, 2, 2, 1380, 1381, + 5, 224, 113, 2, 1381, 1382, 7, 11, 2, 2, 1382, 241, 3, 2, 2, 2, 1383, 1387, + 5, 266, 134, 2, 1384, 1387, 7, 126, 2, 2, 1385, 1387, 5, 264, 133, 2, 1386, + 1383, 3, 2, 2, 2, 1386, 1384, 3, 2, 2, 2, 1386, 1385, 3, 2, 2, 2, 1387, + 243, 3, 2, 2, 2, 1388, 1402, 7, 8, 2, 2, 1389, 1394, 5, 252, 127, 2, 1390, + 1391, 7, 13, 2, 2, 1391, 1393, 5, 252, 127, 2, 1392, 1390, 3, 2, 2, 2, + 1393, 1396, 3, 2, 2, 2, 1394, 1392, 3, 2, 2, 2, 1394, 1395, 3, 2, 2, 2, + 1395, 1399, 3, 2, 2, 2, 1396, 1394, 3, 2, 2, 2, 1397, 1398, 7, 13, 2, 2, + 1398, 1400, 5, 246, 124, 2, 1399, 1397, 3, 2, 2, 2, 1399, 1400, 3, 2, 2, + 2, 1400, 1403, 3, 2, 2, 2, 1401, 1403, 5, 246, 124, 2, 1402, 1389, 3, 2, + 2, 2, 1402, 1401, 3, 2, 2, 2, 1402, 1403, 3, 2, 2, 2, 1403, 1404, 3, 2, + 2, 2, 1404, 1405, 7, 9, 2, 2, 1405, 245, 3, 2, 2, 2, 1406, 1407, 7, 17, + 2, 2, 1407, 1408, 7, 125, 2, 2, 1408, 247, 3, 2, 2, 2, 1409, 1414, 5, 252, + 127, 2, 1410, 1411, 7, 13, 2, 2, 1411, 1413, 5, 252, 127, 2, 1412, 1410, + 3, 2, 2, 2, 1413, 1416, 3, 2, 2, 2, 1414, 1412, 3, 2, 2, 2, 1414, 1415, + 3, 2, 2, 2, 1415, 249, 3, 2, 2, 2, 1416, 1414, 3, 2, 2, 2, 1417, 1419, + 7, 80, 2, 2, 1418, 1420, 7, 125, 2, 2, 1419, 1418, 3, 2, 2, 2, 1419, 1420, + 3, 2, 2, 2, 1420, 1421, 3, 2, 2, 2, 1421, 1423, 7, 8, 2, 2, 1422, 1424, + 5, 218, 110, 2, 1423, 1422, 3, 2, 2, 2, 1423, 1424, 3, 2, 2, 2, 1424, 1425, + 3, 2, 2, 2, 1425, 1427, 7, 9, 2, 2, 1426, 1428, 5, 60, 31, 2, 1427, 1426, + 3, 2, 2, 2, 1427, 1428, 3, 2, 2, 2, 1428, 1429, 3, 2, 2, 2, 1429, 1430, + 7, 10, 2, 2, 1430, 1431, 5, 224, 113, 2, 1431, 1432, 7, 11, 2, 2, 1432, + 251, 3, 2, 2, 2, 1433, 1434, 8, 127, 1, 2, 1434, 1489, 5, 250, 126, 2, + 1435, 1489, 5, 254, 128, 2, 1436, 1438, 7, 93, 2, 2, 1437, 1439, 7, 125, + 2, 2, 1438, 1437, 3, 2, 2, 2, 1438, 1439, 3, 2, 2, 2, 1439, 1440, 3, 2, + 2, 2, 1440, 1489, 5, 192, 97, 2, 1441, 1442, 7, 69, 2, 2, 1442, 1444, 5, + 252, 127, 2, 1443, 1445, 5, 14, 8, 2, 1444, 1443, 3, 2, 2, 2, 1444, 1445, + 3, 2, 2, 2, 1445, 1447, 3, 2, 2, 2, 1446, 1448, 5, 244, 123, 2, 1447, 1446, + 3, 2, 2, 2, 1447, 1448, 3, 2, 2, 2, 1448, 1489, 3, 2, 2, 2, 1449, 1450, + 7, 86, 2, 2, 1450, 1489, 5, 252, 127, 39, 1451, 1452, 7, 74, 2, 2, 1452, + 1489, 5, 252, 127, 38, 1453, 1454, 7, 66, 2, 2, 1454, 1489, 5, 252, 127, + 37, 1455, 1456, 7, 19, 2, 2, 1456, 1489, 5, 252, 127, 36, 1457, 1458, 7, + 20, 2, 2, 1458, 1489, 5, 252, 127, 35, 1459, 1460, 7, 21, 2, 2, 1460, 1489, + 5, 252, 127, 34, 1461, 1462, 7, 22, 2, 2, 1462, 1489, 5, 252, 127, 33, + 1463, 1464, 7, 23, 2, 2, 1464, 1489, 5, 252, 127, 32, 1465, 1466, 7, 24, + 2, 2, 1466, 1489, 5, 252, 127, 31, 1467, 1489, 5, 214, 108, 2, 1468, 1489, + 5, 210, 106, 2, 1469, 1489, 5, 208, 105, 2, 1470, 1489, 5, 160, 81, 2, + 1471, 1489, 7, 81, 2, 2, 1472, 1474, 5, 266, 134, 2, 1473, 1475, 5, 252, + 127, 2, 1474, 1473, 3, 2, 2, 2, 1474, 1475, 3, 2, 2, 2, 1475, 1489, 3, + 2, 2, 2, 1476, 1489, 7, 96, 2, 2, 1477, 1489, 5, 262, 132, 2, 1478, 1489, + 5, 228, 115, 2, 1479, 1489, 5, 234, 118, 2, 1480, 1481, 7, 8, 2, 2, 1481, + 1482, 5, 248, 125, 2, 1482, 1483, 7, 9, 2, 2, 1483, 1489, 3, 2, 2, 2, 1484, + 1486, 5, 14, 8, 2, 1485, 1487, 5, 248, 125, 2, 1486, 1485, 3, 2, 2, 2, + 1486, 1487, 3, 2, 2, 2, 1487, 1489, 3, 2, 2, 2, 1488, 1433, 3, 2, 2, 2, + 1488, 1435, 3, 2, 2, 2, 1488, 1436, 3, 2, 2, 2, 1488, 1441, 3, 2, 2, 2, + 1488, 1449, 3, 2, 2, 2, 1488, 1451, 3, 2, 2, 2, 1488, 1453, 3, 2, 2, 2, + 1488, 1455, 3, 2, 2, 2, 1488, 1457, 3, 2, 2, 2, 1488, 1459, 3, 2, 2, 2, + 1488, 1461, 3, 2, 2, 2, 1488, 1463, 3, 2, 2, 2, 1488, 1465, 3, 2, 2, 2, + 1488, 1467, 3, 2, 2, 2, 1488, 1468, 3, 2, 2, 2, 1488, 1469, 3, 2, 2, 2, + 1488, 1470, 3, 2, 2, 2, 1488, 1471, 3, 2, 2, 2, 1488, 1472, 3, 2, 2, 2, + 1488, 1476, 3, 2, 2, 2, 1488, 1477, 3, 2, 2, 2, 1488, 1478, 3, 2, 2, 2, + 1488, 1479, 3, 2, 2, 2, 1488, 1480, 3, 2, 2, 2, 1488, 1484, 3, 2, 2, 2, + 1489, 1559, 3, 2, 2, 2, 1490, 1491, 12, 30, 2, 2, 1491, 1492, 9, 8, 2, + 2, 1492, 1558, 5, 252, 127, 31, 1493, 1494, 12, 29, 2, 2, 1494, 1495, 9, + 9, 2, 2, 1495, 1558, 5, 252, 127, 30, 1496, 1497, 12, 28, 2, 2, 1497, 1498, + 9, 10, 2, 2, 1498, 1558, 5, 252, 127, 29, 1499, 1500, 12, 27, 2, 2, 1500, + 1501, 9, 11, 2, 2, 1501, 1558, 5, 252, 127, 28, 1502, 1503, 12, 26, 2, + 2, 1503, 1504, 7, 65, 2, 2, 1504, 1558, 5, 252, 127, 27, 1505, 1506, 12, + 25, 2, 2, 1506, 1507, 7, 87, 2, 2, 1507, 1558, 5, 252, 127, 26, 1508, 1509, + 12, 24, 2, 2, 1509, 1510, 9, 12, 2, 2, 1510, 1558, 5, 252, 127, 25, 1511, + 1512, 12, 23, 2, 2, 1512, 1513, 7, 39, 2, 2, 1513, 1558, 5, 252, 127, 24, + 1514, 1515, 12, 22, 2, 2, 1515, 1516, 7, 40, 2, 2, 1516, 1558, 5, 252, + 127, 23, 1517, 1518, 12, 21, 2, 2, 1518, 1519, 7, 41, 2, 2, 1519, 1558, + 5, 252, 127, 22, 1520, 1521, 12, 20, 2, 2, 1521, 1522, 7, 42, 2, 2, 1522, + 1558, 5, 252, 127, 21, 1523, 1524, 12, 19, 2, 2, 1524, 1525, 7, 43, 2, + 2, 1525, 1558, 5, 252, 127, 20, 1526, 1527, 12, 18, 2, 2, 1527, 1528, 7, + 15, 2, 2, 1528, 1529, 5, 252, 127, 2, 1529, 1530, 7, 16, 2, 2, 1530, 1531, + 5, 252, 127, 19, 1531, 1558, 3, 2, 2, 2, 1532, 1533, 12, 17, 2, 2, 1533, + 1534, 7, 14, 2, 2, 1534, 1558, 5, 252, 127, 18, 1535, 1536, 12, 16, 2, + 2, 1536, 1537, 5, 260, 131, 2, 1537, 1538, 5, 252, 127, 17, 1538, 1558, + 3, 2, 2, 2, 1539, 1540, 12, 45, 2, 2, 1540, 1541, 7, 6, 2, 2, 1541, 1542, + 5, 248, 125, 2, 1542, 1543, 7, 7, 2, 2, 1543, 1558, 3, 2, 2, 2, 1544, 1545, + 12, 44, 2, 2, 1545, 1546, 7, 18, 2, 2, 1546, 1558, 5, 266, 134, 2, 1547, + 1548, 12, 43, 2, 2, 1548, 1558, 5, 244, 123, 2, 1549, 1550, 12, 41, 2, + 2, 1550, 1551, 6, 127, 35, 2, 1551, 1558, 7, 19, 2, 2, 1552, 1553, 12, + 40, 2, 2, 1553, 1554, 6, 127, 37, 2, 1554, 1558, 7, 20, 2, 2, 1555, 1556, + 12, 15, 2, 2, 1556, 1558, 7, 127, 2, 2, 1557, 1490, 3, 2, 2, 2, 1557, 1493, + 3, 2, 2, 2, 1557, 1496, 3, 2, 2, 2, 1557, 1499, 3, 2, 2, 2, 1557, 1502, + 3, 2, 2, 2, 1557, 1505, 3, 2, 2, 2, 1557, 1508, 3, 2, 2, 2, 1557, 1511, + 3, 2, 2, 2, 1557, 1514, 3, 2, 2, 2, 1557, 1517, 3, 2, 2, 2, 1557, 1520, + 3, 2, 2, 2, 1557, 1523, 3, 2, 2, 2, 1557, 1526, 3, 2, 2, 2, 1557, 1532, + 3, 2, 2, 2, 1557, 1535, 3, 2, 2, 2, 1557, 1539, 3, 2, 2, 2, 1557, 1544, + 3, 2, 2, 2, 1557, 1547, 3, 2, 2, 2, 1557, 1549, 3, 2, 2, 2, 1557, 1552, + 3, 2, 2, 2, 1557, 1555, 3, 2, 2, 2, 1558, 1561, 3, 2, 2, 2, 1559, 1557, + 3, 2, 2, 2, 1559, 1560, 3, 2, 2, 2, 1560, 253, 3, 2, 2, 2, 1561, 1559, + 3, 2, 2, 2, 1562, 1564, 7, 92, 2, 2, 1563, 1562, 3, 2, 2, 2, 1563, 1564, + 3, 2, 2, 2, 1564, 1565, 3, 2, 2, 2, 1565, 1567, 5, 256, 129, 2, 1566, 1568, + 5, 60, 31, 2, 1567, 1566, 3, 2, 2, 2, 1567, 1568, 3, 2, 2, 2, 1568, 1569, + 3, 2, 2, 2, 1569, 1570, 7, 55, 2, 2, 1570, 1571, 5, 258, 130, 2, 1571, + 255, 3, 2, 2, 2, 1572, 1579, 7, 125, 2, 2, 1573, 1575, 7, 8, 2, 2, 1574, + 1576, 5, 218, 110, 2, 1575, 1574, 3, 2, 2, 2, 1575, 1576, 3, 2, 2, 2, 1576, + 1577, 3, 2, 2, 2, 1577, 1579, 7, 9, 2, 2, 1578, 1572, 3, 2, 2, 2, 1578, + 1573, 3, 2, 2, 2, 1579, 257, 3, 2, 2, 2, 1580, 1586, 5, 252, 127, 2, 1581, + 1582, 7, 10, 2, 2, 1582, 1583, 5, 224, 113, 2, 1583, 1584, 7, 11, 2, 2, + 1584, 1586, 3, 2, 2, 2, 1585, 1580, 3, 2, 2, 2, 1585, 1581, 3, 2, 2, 2, + 1586, 259, 3, 2, 2, 2, 1587, 1588, 9, 13, 2, 2, 1588, 261, 3, 2, 2, 2, + 1589, 1596, 7, 56, 2, 2, 1590, 1596, 7, 57, 2, 2, 1591, 1596, 7, 126, 2, + 2, 1592, 1596, 7, 127, 2, 2, 1593, 1596, 7, 5, 2, 2, 1594, 1596, 5, 264, + 133, 2, 1595, 1589, 3, 2, 2, 2, 1595, 1590, 3, 2, 2, 2, 1595, 1591, 3, + 2, 2, 2, 1595, 1592, 3, 2, 2, 2, 1595, 1593, 3, 2, 2, 2, 1595, 1594, 3, + 2, 2, 2, 1596, 263, 3, 2, 2, 2, 1597, 1598, 9, 14, 2, 2, 1598, 265, 3, + 2, 2, 2, 1599, 1602, 7, 125, 2, 2, 1600, 1602, 5, 268, 135, 2, 1601, 1599, + 3, 2, 2, 2, 1601, 1600, 3, 2, 2, 2, 1602, 267, 3, 2, 2, 2, 1603, 1607, + 5, 270, 136, 2, 1604, 1607, 7, 56, 2, 2, 1605, 1607, 7, 57, 2, 2, 1606, + 1603, 3, 2, 2, 2, 1606, 1604, 3, 2, 2, 2, 1606, 1605, 3, 2, 2, 2, 1607, + 269, 3, 2, 2, 2, 1608, 1609, 9, 15, 2, 2, 1609, 271, 3, 2, 2, 2, 1610, + 1611, 7, 125, 2, 2, 1611, 1612, 6, 137, 39, 2, 1612, 1613, 5, 242, 122, + 2, 1613, 273, 3, 2, 2, 2, 1614, 1615, 7, 125, 2, 2, 1615, 1616, 6, 138, + 40, 2, 1616, 1617, 5, 242, 122, 2, 1617, 275, 3, 2, 2, 2, 1618, 1623, 7, + 12, 2, 2, 1619, 1623, 7, 2, 2, 3, 1620, 1623, 6, 139, 41, 2, 1621, 1623, + 6, 139, 42, 2, 1622, 1618, 3, 2, 2, 2, 1622, 1619, 3, 2, 2, 2, 1622, 1620, + 3, 2, 2, 2, 1622, 1621, 3, 2, 2, 2, 1623, 277, 3, 2, 2, 2, 199, 283, 287, + 296, 301, 304, 311, 320, 330, 341, 343, 364, 372, 380, 395, 399, 403, 409, + 416, 426, 428, 444, 448, 452, 460, 464, 479, 483, 486, 490, 493, 497, 503, + 507, 511, 519, 525, 532, 535, 537, 539, 546, 550, 553, 557, 563, 570, 574, + 577, 582, 585, 588, 595, 599, 603, 614, 621, 628, 633, 641, 644, 649, 652, + 656, 666, 670, 676, 682, 689, 695, 701, 709, 714, 725, 730, 738, 745, 752, + 757, 790, 794, 801, 807, 814, 818, 822, 831, 839, 846, 850, 854, 858, 861, + 864, 867, 871, 873, 880, 886, 889, 892, 896, 899, 906, 915, 934, 938, 942, + 952, 956, 967, 980, 986, 993, 1000, 1007, 1014, 1032, 1036, 1038, 1045, + 1051, 1056, 1071, 1074, 1096, 1099, 1104, 1110, 1113, 1119, 1134, 1139, + 1142, 1154, 1159, 1162, 1165, 1168, 1171, 1174, 1180, 1185, 1195, 1199, + 1212, 1216, 1229, 1233, 1242, 1254, 1259, 1266, 1268, 1271, 1275, 1279, + 1285, 1290, 1294, 1302, 1307, 1313, 1316, 1319, 1324, 1332, 1335, 1338, + 1357, 1363, 1373, 1376, 1386, 1394, 1399, 1402, 1414, 1419, 1423, 1427, + 1438, 1444, 1447, 1474, 1486, 1488, 1557, 1559, 1563, 1567, 1575, 1578, + 1585, 1595, 1601, 1606, 1622, +} +var deserializer = antlr.NewATNDeserializer(nil) +var deserializedATN = deserializer.DeserializeFromUInt16(parserATN) + +var literalNames = []string{ + "", "", "", "", "'['", "']'", "'('", "')'", "'{'", "'}'", "';'", "','", + "'='", "'?'", "':'", "'...'", "'.'", "'++'", "'--'", "'+'", "'-'", "'~'", + "'!'", "'*'", "'/'", "'%'", "'>>'", "'<<'", "'>>>'", "'<'", "'>'", "'<='", + "'>='", "'=='", "'!='", "'==='", "'!=='", "'&'", "'^'", "'|'", "'&&'", + "'||'", "'*='", "'/='", "'%='", "'+='", "'-='", "'<<='", "'>>='", "'>>>='", + "'&='", "'^='", "'|='", "'=>'", "'null'", "", "", "", "", "", "", "'break'", + "'do'", "'instanceof'", "'typeof'", "'case'", "'else'", "'new'", "'var'", + "'catch'", "'finally'", "'return'", "'void'", "'continue'", "'for'", "'switch'", + "'while'", "'debugger'", "'function'", "'this'", "'with'", "'default'", + "'if'", "'throw'", "'delete'", "'in'", "'try'", "'as'", "'from'", "'readonly'", + "'async'", "'class'", "'enum'", "'extends'", "'super'", "'const'", "'export'", + "'import'", "'implements'", "'let'", "'private'", "'public'", "'interface'", + "'package'", "'protected'", "'static'", "'yield'", "'any'", "'number'", + "'boolean'", "'string'", "'symbol'", "'type'", "'get '", "'set '", "'constructor'", + "'namespace'", "'require'", "'module'", "'declare'", "'abstract'", "'is'", + "'@'", +} +var symbolicNames = []string{ + "", "MultiLineComment", "SingleLineComment", "RegularExpressionLiteral", + "OpenBracket", "CloseBracket", "OpenParen", "CloseParen", "OpenBrace", + "CloseBrace", "SemiColon", "Comma", "Assign", "QuestionMark", "Colon", + "Ellipsis", "Dot", "PlusPlus", "MinusMinus", "Plus", "Minus", "BitNot", + "Not", "Multiply", "Divide", "Modulus", "RightShiftArithmetic", "LeftShiftArithmetic", + "RightShiftLogical", "LessThan", "MoreThan", "LessThanEquals", "GreaterThanEquals", + "Equals_", "NotEquals", "IdentityEquals", "IdentityNotEquals", "BitAnd", + "BitXOr", "BitOr", "And", "Or", "MultiplyAssign", "DivideAssign", "ModulusAssign", + "PlusAssign", "MinusAssign", "LeftShiftArithmeticAssign", "RightShiftArithmeticAssign", + "RightShiftLogicalAssign", "BitAndAssign", "BitXorAssign", "BitOrAssign", + "ARROW", "NullLiteral", "BooleanLiteral", "DecimalLiteral", "HexIntegerLiteral", + "OctalIntegerLiteral", "OctalIntegerLiteral2", "BinaryIntegerLiteral", + "Break", "Do", "Instanceof", "Typeof", "Case", "Else", "New", "Var", "Catch", + "Finally", "Return", "Void", "Continue", "For", "Switch", "While", "Debugger", + "Function", "This", "With", "Default", "If", "Throw", "Delete", "In", "Try", + "As", "From", "ReadOnly", "Async", "Class", "Enum", "Extends", "Super", + "Const", "Export", "Import", "Implements", "Let", "Private", "Public", + "Interface", "Package", "Protected", "Static", "Yield", "ANY", "NUMBER", + "BOOLEAN", "STRING", "SYMBOL", "Type", "Get", "Set", "Constructor", "Namespace", + "Require", "Module", "Declare", "Abstract", "Is", "At", "Identifier", "StringLiteral", + "TemplateStringLiteral", "WhiteSpaces", "LineTerminator", "HtmlComment", + "CDataComment", "UnexpectedCharacter", +} + +var ruleNames = []string{ + "initializer", "bindingPattern", "typeParameters", "typeParameterList", + "typeParameter", "constraint", "typeArguments", "typeArgumentList", "typeArgument", + "type_", "unionOrIntersectionOrPrimaryType", "primaryType", "predefinedType", + "typeReference", "typeGeneric", "typeIncludeGeneric", "typeName", "objectType", + "typeBody", "typeMemberList", "typeMember", "arrayType", "tupleType", "tupleElementTypes", + "functionType", "constructorType", "typeQuery", "typeQueryExpression", + "propertySignatur", "typeAnnotation", "callSignature", "parameterList", + "requiredParameterList", "requiredParameter", "accessibilityModifier", + "identifierOrPattern", "optionalParameterList", "optionalParameter", "restParameter", + "constructSignature", "indexSignature", "methodSignature", "typeAliasDeclaration", + "constructorDeclaration", "interfaceDeclaration", "interfaceExtendsClause", + "classOrInterfaceTypeList", "enumDeclaration", "enumBody", "enumMemberList", + "enumMember", "namespaceDeclaration", "namespaceName", "importAliasDeclaration", + "decoratorList", "decorator", "decoratorMemberExpression", "decoratorCallExpression", + "program", "sourceElement", "statement", "block", "statementList", "abstractDeclaration", + "importStatement", "fromBlock", "multipleImportStatement", "exportStatement", + "variableStatement", "variableDeclarationList", "variableDeclaration", + "emptyStatement", "expressionStatement", "ifStatement", "iterationStatement", + "varModifier", "continueStatement", "breakStatement", "returnStatement", + "yieldStatement", "withStatement", "switchStatement", "caseBlock", "caseClauses", + "caseClause", "defaultClause", "labelledStatement", "throwStatement", "tryStatement", + "catchProduction", "finallyProduction", "debuggerStatement", "functionDeclaration", + "classDeclaration", "classHeritage", "classTail", "classExtendsClause", + "implementsClause", "classElement", "propertyMemberDeclaration", "propertyMemberBase", + "indexMemberDeclaration", "generatorMethod", "generatorFunctionDeclaration", + "generatorBlock", "generatorDefinition", "iteratorBlock", "iteratorDefinition", + "formalParameterList", "formalParameterArg", "lastFormalParameterArg", + "functionBody", "sourceElements", "arrayLiteral", "elementList", "lastElement", + "objectLiteral", "propertyAssignment", "getAccessor", "setAccessor", "propertyName", + "arguments", "lastArgument", "expressionSequence", "functionExpressionDeclaration", + "singleExpression", "arrowFunctionDeclaration", "arrowFunctionParameters", + "arrowFunctionBody", "assignmentOperator", "literal", "numericLiteral", + "identifierName", "reservedWord", "keyword", "getter", "setter", "eos", +} +var decisionToDFA = make([]*antlr.DFA, len(deserializedATN.DecisionToState)) + +func init() { + for index, ds := range deserializedATN.DecisionToState { + decisionToDFA[index] = antlr.NewDFA(ds, index) + } +} + +type TypeScriptParser struct { + TypeScriptBaseParser +} + +func NewTypeScriptParser(input antlr.TokenStream) *TypeScriptParser { + this := new(TypeScriptParser) + + this.BaseParser = antlr.NewBaseParser(input) + + this.Interpreter = antlr.NewParserATNSimulator(this, deserializedATN, decisionToDFA, antlr.NewPredictionContextCache()) + this.RuleNames = ruleNames + this.LiteralNames = literalNames + this.SymbolicNames = symbolicNames + this.GrammarFileName = "TypeScriptParser.g4" + + return this +} + +// TypeScriptParser tokens. +const ( + TypeScriptParserEOF = antlr.TokenEOF + TypeScriptParserMultiLineComment = 1 + TypeScriptParserSingleLineComment = 2 + TypeScriptParserRegularExpressionLiteral = 3 + TypeScriptParserOpenBracket = 4 + TypeScriptParserCloseBracket = 5 + TypeScriptParserOpenParen = 6 + TypeScriptParserCloseParen = 7 + TypeScriptParserOpenBrace = 8 + TypeScriptParserCloseBrace = 9 + TypeScriptParserSemiColon = 10 + TypeScriptParserComma = 11 + TypeScriptParserAssign = 12 + TypeScriptParserQuestionMark = 13 + TypeScriptParserColon = 14 + TypeScriptParserEllipsis = 15 + TypeScriptParserDot = 16 + TypeScriptParserPlusPlus = 17 + TypeScriptParserMinusMinus = 18 + TypeScriptParserPlus = 19 + TypeScriptParserMinus = 20 + TypeScriptParserBitNot = 21 + TypeScriptParserNot = 22 + TypeScriptParserMultiply = 23 + TypeScriptParserDivide = 24 + TypeScriptParserModulus = 25 + TypeScriptParserRightShiftArithmetic = 26 + TypeScriptParserLeftShiftArithmetic = 27 + TypeScriptParserRightShiftLogical = 28 + TypeScriptParserLessThan = 29 + TypeScriptParserMoreThan = 30 + TypeScriptParserLessThanEquals = 31 + TypeScriptParserGreaterThanEquals = 32 + TypeScriptParserEquals_ = 33 + TypeScriptParserNotEquals = 34 + TypeScriptParserIdentityEquals = 35 + TypeScriptParserIdentityNotEquals = 36 + TypeScriptParserBitAnd = 37 + TypeScriptParserBitXOr = 38 + TypeScriptParserBitOr = 39 + TypeScriptParserAnd = 40 + TypeScriptParserOr = 41 + TypeScriptParserMultiplyAssign = 42 + TypeScriptParserDivideAssign = 43 + TypeScriptParserModulusAssign = 44 + TypeScriptParserPlusAssign = 45 + TypeScriptParserMinusAssign = 46 + TypeScriptParserLeftShiftArithmeticAssign = 47 + TypeScriptParserRightShiftArithmeticAssign = 48 + TypeScriptParserRightShiftLogicalAssign = 49 + TypeScriptParserBitAndAssign = 50 + TypeScriptParserBitXorAssign = 51 + TypeScriptParserBitOrAssign = 52 + TypeScriptParserARROW = 53 + TypeScriptParserNullLiteral = 54 + TypeScriptParserBooleanLiteral = 55 + TypeScriptParserDecimalLiteral = 56 + TypeScriptParserHexIntegerLiteral = 57 + TypeScriptParserOctalIntegerLiteral = 58 + TypeScriptParserOctalIntegerLiteral2 = 59 + TypeScriptParserBinaryIntegerLiteral = 60 + TypeScriptParserBreak = 61 + TypeScriptParserDo = 62 + TypeScriptParserInstanceof = 63 + TypeScriptParserTypeof = 64 + TypeScriptParserCase = 65 + TypeScriptParserElse = 66 + TypeScriptParserNew = 67 + TypeScriptParserVar = 68 + TypeScriptParserCatch = 69 + TypeScriptParserFinally = 70 + TypeScriptParserReturn = 71 + TypeScriptParserVoid = 72 + TypeScriptParserContinue = 73 + TypeScriptParserFor = 74 + TypeScriptParserSwitch = 75 + TypeScriptParserWhile = 76 + TypeScriptParserDebugger = 77 + TypeScriptParserFunction = 78 + TypeScriptParserThis = 79 + TypeScriptParserWith = 80 + TypeScriptParserDefault = 81 + TypeScriptParserIf = 82 + TypeScriptParserThrow = 83 + TypeScriptParserDelete = 84 + TypeScriptParserIn = 85 + TypeScriptParserTry = 86 + TypeScriptParserAs = 87 + TypeScriptParserFrom = 88 + TypeScriptParserReadOnly = 89 + TypeScriptParserAsync = 90 + TypeScriptParserClass = 91 + TypeScriptParserEnum = 92 + TypeScriptParserExtends = 93 + TypeScriptParserSuper = 94 + TypeScriptParserConst = 95 + TypeScriptParserExport = 96 + TypeScriptParserImport = 97 + TypeScriptParserImplements = 98 + TypeScriptParserLet = 99 + TypeScriptParserPrivate = 100 + TypeScriptParserPublic = 101 + TypeScriptParserInterface = 102 + TypeScriptParserPackage = 103 + TypeScriptParserProtected = 104 + TypeScriptParserStatic = 105 + TypeScriptParserYield = 106 + TypeScriptParserANY = 107 + TypeScriptParserNUMBER = 108 + TypeScriptParserBOOLEAN = 109 + TypeScriptParserSTRING = 110 + TypeScriptParserSYMBOL = 111 + TypeScriptParserType = 112 + TypeScriptParserGet = 113 + TypeScriptParserSet = 114 + TypeScriptParserConstructor = 115 + TypeScriptParserNamespace = 116 + TypeScriptParserRequire = 117 + TypeScriptParserModule = 118 + TypeScriptParserDeclare = 119 + TypeScriptParserAbstract = 120 + TypeScriptParserIs = 121 + TypeScriptParserAt = 122 + TypeScriptParserIdentifier = 123 + TypeScriptParserStringLiteral = 124 + TypeScriptParserTemplateStringLiteral = 125 + TypeScriptParserWhiteSpaces = 126 + TypeScriptParserLineTerminator = 127 + TypeScriptParserHtmlComment = 128 + TypeScriptParserCDataComment = 129 + TypeScriptParserUnexpectedCharacter = 130 +) + +// TypeScriptParser rules. +const ( + TypeScriptParserRULE_initializer = 0 + TypeScriptParserRULE_bindingPattern = 1 + TypeScriptParserRULE_typeParameters = 2 + TypeScriptParserRULE_typeParameterList = 3 + TypeScriptParserRULE_typeParameter = 4 + TypeScriptParserRULE_constraint = 5 + TypeScriptParserRULE_typeArguments = 6 + TypeScriptParserRULE_typeArgumentList = 7 + TypeScriptParserRULE_typeArgument = 8 + TypeScriptParserRULE_type_ = 9 + TypeScriptParserRULE_unionOrIntersectionOrPrimaryType = 10 + TypeScriptParserRULE_primaryType = 11 + TypeScriptParserRULE_predefinedType = 12 + TypeScriptParserRULE_typeReference = 13 + TypeScriptParserRULE_typeGeneric = 14 + TypeScriptParserRULE_typeIncludeGeneric = 15 + TypeScriptParserRULE_typeName = 16 + TypeScriptParserRULE_objectType = 17 + TypeScriptParserRULE_typeBody = 18 + TypeScriptParserRULE_typeMemberList = 19 + TypeScriptParserRULE_typeMember = 20 + TypeScriptParserRULE_arrayType = 21 + TypeScriptParserRULE_tupleType = 22 + TypeScriptParserRULE_tupleElementTypes = 23 + TypeScriptParserRULE_functionType = 24 + TypeScriptParserRULE_constructorType = 25 + TypeScriptParserRULE_typeQuery = 26 + TypeScriptParserRULE_typeQueryExpression = 27 + TypeScriptParserRULE_propertySignatur = 28 + TypeScriptParserRULE_typeAnnotation = 29 + TypeScriptParserRULE_callSignature = 30 + TypeScriptParserRULE_parameterList = 31 + TypeScriptParserRULE_requiredParameterList = 32 + TypeScriptParserRULE_requiredParameter = 33 + TypeScriptParserRULE_accessibilityModifier = 34 + TypeScriptParserRULE_identifierOrPattern = 35 + TypeScriptParserRULE_optionalParameterList = 36 + TypeScriptParserRULE_optionalParameter = 37 + TypeScriptParserRULE_restParameter = 38 + TypeScriptParserRULE_constructSignature = 39 + TypeScriptParserRULE_indexSignature = 40 + TypeScriptParserRULE_methodSignature = 41 + TypeScriptParserRULE_typeAliasDeclaration = 42 + TypeScriptParserRULE_constructorDeclaration = 43 + TypeScriptParserRULE_interfaceDeclaration = 44 + TypeScriptParserRULE_interfaceExtendsClause = 45 + TypeScriptParserRULE_classOrInterfaceTypeList = 46 + TypeScriptParserRULE_enumDeclaration = 47 + TypeScriptParserRULE_enumBody = 48 + TypeScriptParserRULE_enumMemberList = 49 + TypeScriptParserRULE_enumMember = 50 + TypeScriptParserRULE_namespaceDeclaration = 51 + TypeScriptParserRULE_namespaceName = 52 + TypeScriptParserRULE_importAliasDeclaration = 53 + TypeScriptParserRULE_decoratorList = 54 + TypeScriptParserRULE_decorator = 55 + TypeScriptParserRULE_decoratorMemberExpression = 56 + TypeScriptParserRULE_decoratorCallExpression = 57 + TypeScriptParserRULE_program = 58 + TypeScriptParserRULE_sourceElement = 59 + TypeScriptParserRULE_statement = 60 + TypeScriptParserRULE_block = 61 + TypeScriptParserRULE_statementList = 62 + TypeScriptParserRULE_abstractDeclaration = 63 + TypeScriptParserRULE_importStatement = 64 + TypeScriptParserRULE_fromBlock = 65 + TypeScriptParserRULE_multipleImportStatement = 66 + TypeScriptParserRULE_exportStatement = 67 + TypeScriptParserRULE_variableStatement = 68 + TypeScriptParserRULE_variableDeclarationList = 69 + TypeScriptParserRULE_variableDeclaration = 70 + TypeScriptParserRULE_emptyStatement = 71 + TypeScriptParserRULE_expressionStatement = 72 + TypeScriptParserRULE_ifStatement = 73 + TypeScriptParserRULE_iterationStatement = 74 + TypeScriptParserRULE_varModifier = 75 + TypeScriptParserRULE_continueStatement = 76 + TypeScriptParserRULE_breakStatement = 77 + TypeScriptParserRULE_returnStatement = 78 + TypeScriptParserRULE_yieldStatement = 79 + TypeScriptParserRULE_withStatement = 80 + TypeScriptParserRULE_switchStatement = 81 + TypeScriptParserRULE_caseBlock = 82 + TypeScriptParserRULE_caseClauses = 83 + TypeScriptParserRULE_caseClause = 84 + TypeScriptParserRULE_defaultClause = 85 + TypeScriptParserRULE_labelledStatement = 86 + TypeScriptParserRULE_throwStatement = 87 + TypeScriptParserRULE_tryStatement = 88 + TypeScriptParserRULE_catchProduction = 89 + TypeScriptParserRULE_finallyProduction = 90 + TypeScriptParserRULE_debuggerStatement = 91 + TypeScriptParserRULE_functionDeclaration = 92 + TypeScriptParserRULE_classDeclaration = 93 + TypeScriptParserRULE_classHeritage = 94 + TypeScriptParserRULE_classTail = 95 + TypeScriptParserRULE_classExtendsClause = 96 + TypeScriptParserRULE_implementsClause = 97 + TypeScriptParserRULE_classElement = 98 + TypeScriptParserRULE_propertyMemberDeclaration = 99 + TypeScriptParserRULE_propertyMemberBase = 100 + TypeScriptParserRULE_indexMemberDeclaration = 101 + TypeScriptParserRULE_generatorMethod = 102 + TypeScriptParserRULE_generatorFunctionDeclaration = 103 + TypeScriptParserRULE_generatorBlock = 104 + TypeScriptParserRULE_generatorDefinition = 105 + TypeScriptParserRULE_iteratorBlock = 106 + TypeScriptParserRULE_iteratorDefinition = 107 + TypeScriptParserRULE_formalParameterList = 108 + TypeScriptParserRULE_formalParameterArg = 109 + TypeScriptParserRULE_lastFormalParameterArg = 110 + TypeScriptParserRULE_functionBody = 111 + TypeScriptParserRULE_sourceElements = 112 + TypeScriptParserRULE_arrayLiteral = 113 + TypeScriptParserRULE_elementList = 114 + TypeScriptParserRULE_lastElement = 115 + TypeScriptParserRULE_objectLiteral = 116 + TypeScriptParserRULE_propertyAssignment = 117 + TypeScriptParserRULE_getAccessor = 118 + TypeScriptParserRULE_setAccessor = 119 + TypeScriptParserRULE_propertyName = 120 + TypeScriptParserRULE_arguments = 121 + TypeScriptParserRULE_lastArgument = 122 + TypeScriptParserRULE_expressionSequence = 123 + TypeScriptParserRULE_functionExpressionDeclaration = 124 + TypeScriptParserRULE_singleExpression = 125 + TypeScriptParserRULE_arrowFunctionDeclaration = 126 + TypeScriptParserRULE_arrowFunctionParameters = 127 + TypeScriptParserRULE_arrowFunctionBody = 128 + TypeScriptParserRULE_assignmentOperator = 129 + TypeScriptParserRULE_literal = 130 + TypeScriptParserRULE_numericLiteral = 131 + TypeScriptParserRULE_identifierName = 132 + TypeScriptParserRULE_reservedWord = 133 + TypeScriptParserRULE_keyword = 134 + TypeScriptParserRULE_getter = 135 + TypeScriptParserRULE_setter = 136 + TypeScriptParserRULE_eos = 137 +) + +// IInitializerContext is an interface to support dynamic dispatch. +type IInitializerContext interface { + antlr.ParserRuleContext + + // GetParser returns the parser. + GetParser() antlr.Parser + + // IsInitializerContext differentiates from other interfaces. + IsInitializerContext() +} + +type InitializerContext struct { + *antlr.BaseParserRuleContext + parser antlr.Parser +} + +func NewEmptyInitializerContext() *InitializerContext { + var p = new(InitializerContext) + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(nil, -1) + p.RuleIndex = TypeScriptParserRULE_initializer + return p +} + +func (*InitializerContext) IsInitializerContext() {} + +func NewInitializerContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *InitializerContext { + var p = new(InitializerContext) + + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(parent, invokingState) + + p.parser = parser + p.RuleIndex = TypeScriptParserRULE_initializer + + return p +} + +func (s *InitializerContext) GetParser() antlr.Parser { return s.parser } + +func (s *InitializerContext) Assign() antlr.TerminalNode { + return s.GetToken(TypeScriptParserAssign, 0) +} + +func (s *InitializerContext) SingleExpression() ISingleExpressionContext { + var t = s.GetTypedRuleContext(reflect.TypeOf((*ISingleExpressionContext)(nil)).Elem(), 0) + + if t == nil { + return nil + } + + return t.(ISingleExpressionContext) +} + +func (s *InitializerContext) GetRuleContext() antlr.RuleContext { + return s +} + +func (s *InitializerContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string { + return antlr.TreesStringTree(s, ruleNames, recog) +} + +func (s *InitializerContext) EnterRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(TypeScriptParserListener); ok { + listenerT.EnterInitializer(s) + } +} + +func (s *InitializerContext) ExitRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(TypeScriptParserListener); ok { + listenerT.ExitInitializer(s) + } +} + +func (p *TypeScriptParser) Initializer() (localctx IInitializerContext) { + localctx = NewInitializerContext(p, p.GetParserRuleContext(), p.GetState()) + p.EnterRule(localctx, 0, TypeScriptParserRULE_initializer) + + defer func() { + p.ExitRule() + }() + + defer func() { + if err := recover(); err != nil { + if v, ok := err.(antlr.RecognitionException); ok { + localctx.SetException(v) + p.GetErrorHandler().ReportError(p, v) + p.GetErrorHandler().Recover(p, v) + } else { + panic(err) + } + } + }() + + p.EnterOuterAlt(localctx, 1) + { + p.SetState(276) + p.Match(TypeScriptParserAssign) + } + { + p.SetState(277) + p.singleExpression(0) + } + + return localctx +} + +// IBindingPatternContext is an interface to support dynamic dispatch. +type IBindingPatternContext interface { + antlr.ParserRuleContext + + // GetParser returns the parser. + GetParser() antlr.Parser + + // IsBindingPatternContext differentiates from other interfaces. + IsBindingPatternContext() +} + +type BindingPatternContext struct { + *antlr.BaseParserRuleContext + parser antlr.Parser +} + +func NewEmptyBindingPatternContext() *BindingPatternContext { + var p = new(BindingPatternContext) + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(nil, -1) + p.RuleIndex = TypeScriptParserRULE_bindingPattern + return p +} + +func (*BindingPatternContext) IsBindingPatternContext() {} + +func NewBindingPatternContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *BindingPatternContext { + var p = new(BindingPatternContext) + + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(parent, invokingState) + + p.parser = parser + p.RuleIndex = TypeScriptParserRULE_bindingPattern + + return p +} + +func (s *BindingPatternContext) GetParser() antlr.Parser { return s.parser } + +func (s *BindingPatternContext) ArrayLiteral() IArrayLiteralContext { + var t = s.GetTypedRuleContext(reflect.TypeOf((*IArrayLiteralContext)(nil)).Elem(), 0) + + if t == nil { + return nil + } + + return t.(IArrayLiteralContext) +} + +func (s *BindingPatternContext) ObjectLiteral() IObjectLiteralContext { + var t = s.GetTypedRuleContext(reflect.TypeOf((*IObjectLiteralContext)(nil)).Elem(), 0) + + if t == nil { + return nil + } + + return t.(IObjectLiteralContext) +} + +func (s *BindingPatternContext) GetRuleContext() antlr.RuleContext { + return s +} + +func (s *BindingPatternContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string { + return antlr.TreesStringTree(s, ruleNames, recog) +} + +func (s *BindingPatternContext) EnterRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(TypeScriptParserListener); ok { + listenerT.EnterBindingPattern(s) + } +} + +func (s *BindingPatternContext) ExitRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(TypeScriptParserListener); ok { + listenerT.ExitBindingPattern(s) + } +} + +func (p *TypeScriptParser) BindingPattern() (localctx IBindingPatternContext) { + localctx = NewBindingPatternContext(p, p.GetParserRuleContext(), p.GetState()) + p.EnterRule(localctx, 2, TypeScriptParserRULE_bindingPattern) + + defer func() { + p.ExitRule() + }() + + defer func() { + if err := recover(); err != nil { + if v, ok := err.(antlr.RecognitionException); ok { + localctx.SetException(v) + p.GetErrorHandler().ReportError(p, v) + p.GetErrorHandler().Recover(p, v) + } else { + panic(err) + } + } + }() + + p.EnterOuterAlt(localctx, 1) + p.SetState(281) + p.GetErrorHandler().Sync(p) + + switch p.GetTokenStream().LA(1) { + case TypeScriptParserOpenBracket: + { + p.SetState(279) + p.ArrayLiteral() + } + + case TypeScriptParserOpenBrace: + { + p.SetState(280) + p.ObjectLiteral() + } + + default: + panic(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) + } + + return localctx +} + +// ITypeParametersContext is an interface to support dynamic dispatch. +type ITypeParametersContext interface { + antlr.ParserRuleContext + + // GetParser returns the parser. + GetParser() antlr.Parser + + // IsTypeParametersContext differentiates from other interfaces. + IsTypeParametersContext() +} + +type TypeParametersContext struct { + *antlr.BaseParserRuleContext + parser antlr.Parser +} + +func NewEmptyTypeParametersContext() *TypeParametersContext { + var p = new(TypeParametersContext) + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(nil, -1) + p.RuleIndex = TypeScriptParserRULE_typeParameters + return p +} + +func (*TypeParametersContext) IsTypeParametersContext() {} + +func NewTypeParametersContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *TypeParametersContext { + var p = new(TypeParametersContext) + + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(parent, invokingState) + + p.parser = parser + p.RuleIndex = TypeScriptParserRULE_typeParameters + + return p +} + +func (s *TypeParametersContext) GetParser() antlr.Parser { return s.parser } + +func (s *TypeParametersContext) LessThan() antlr.TerminalNode { + return s.GetToken(TypeScriptParserLessThan, 0) +} + +func (s *TypeParametersContext) MoreThan() antlr.TerminalNode { + return s.GetToken(TypeScriptParserMoreThan, 0) +} + +func (s *TypeParametersContext) TypeParameterList() ITypeParameterListContext { + var t = s.GetTypedRuleContext(reflect.TypeOf((*ITypeParameterListContext)(nil)).Elem(), 0) + + if t == nil { + return nil + } + + return t.(ITypeParameterListContext) +} + +func (s *TypeParametersContext) GetRuleContext() antlr.RuleContext { + return s +} + +func (s *TypeParametersContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string { + return antlr.TreesStringTree(s, ruleNames, recog) +} + +func (s *TypeParametersContext) EnterRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(TypeScriptParserListener); ok { + listenerT.EnterTypeParameters(s) + } +} + +func (s *TypeParametersContext) ExitRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(TypeScriptParserListener); ok { + listenerT.ExitTypeParameters(s) + } +} + +func (p *TypeScriptParser) TypeParameters() (localctx ITypeParametersContext) { + localctx = NewTypeParametersContext(p, p.GetParserRuleContext(), p.GetState()) + p.EnterRule(localctx, 4, TypeScriptParserRULE_typeParameters) + var _la int + + defer func() { + p.ExitRule() + }() + + defer func() { + if err := recover(); err != nil { + if v, ok := err.(antlr.RecognitionException); ok { + localctx.SetException(v) + p.GetErrorHandler().ReportError(p, v) + p.GetErrorHandler().Recover(p, v) + } else { + panic(err) + } + } + }() + + p.EnterOuterAlt(localctx, 1) + { + p.SetState(283) + p.Match(TypeScriptParserLessThan) + } + p.SetState(285) + p.GetErrorHandler().Sync(p) + _la = p.GetTokenStream().LA(1) + + if _la == TypeScriptParserLessThan || _la == TypeScriptParserIdentifier { + { + p.SetState(284) + p.TypeParameterList() + } + + } + { + p.SetState(287) + p.Match(TypeScriptParserMoreThan) + } + + return localctx +} + +// ITypeParameterListContext is an interface to support dynamic dispatch. +type ITypeParameterListContext interface { + antlr.ParserRuleContext + + // GetParser returns the parser. + GetParser() antlr.Parser + + // IsTypeParameterListContext differentiates from other interfaces. + IsTypeParameterListContext() +} + +type TypeParameterListContext struct { + *antlr.BaseParserRuleContext + parser antlr.Parser +} + +func NewEmptyTypeParameterListContext() *TypeParameterListContext { + var p = new(TypeParameterListContext) + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(nil, -1) + p.RuleIndex = TypeScriptParserRULE_typeParameterList + return p +} + +func (*TypeParameterListContext) IsTypeParameterListContext() {} + +func NewTypeParameterListContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *TypeParameterListContext { + var p = new(TypeParameterListContext) + + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(parent, invokingState) + + p.parser = parser + p.RuleIndex = TypeScriptParserRULE_typeParameterList + + return p +} + +func (s *TypeParameterListContext) GetParser() antlr.Parser { return s.parser } + +func (s *TypeParameterListContext) AllTypeParameter() []ITypeParameterContext { + var ts = s.GetTypedRuleContexts(reflect.TypeOf((*ITypeParameterContext)(nil)).Elem()) + var tst = make([]ITypeParameterContext, len(ts)) + + for i, t := range ts { + if t != nil { + tst[i] = t.(ITypeParameterContext) + } + } + + return tst +} + +func (s *TypeParameterListContext) TypeParameter(i int) ITypeParameterContext { + var t = s.GetTypedRuleContext(reflect.TypeOf((*ITypeParameterContext)(nil)).Elem(), i) + + if t == nil { + return nil + } + + return t.(ITypeParameterContext) +} + +func (s *TypeParameterListContext) AllComma() []antlr.TerminalNode { + return s.GetTokens(TypeScriptParserComma) +} + +func (s *TypeParameterListContext) Comma(i int) antlr.TerminalNode { + return s.GetToken(TypeScriptParserComma, i) +} + +func (s *TypeParameterListContext) GetRuleContext() antlr.RuleContext { + return s +} + +func (s *TypeParameterListContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string { + return antlr.TreesStringTree(s, ruleNames, recog) +} + +func (s *TypeParameterListContext) EnterRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(TypeScriptParserListener); ok { + listenerT.EnterTypeParameterList(s) + } +} + +func (s *TypeParameterListContext) ExitRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(TypeScriptParserListener); ok { + listenerT.ExitTypeParameterList(s) + } +} + +func (p *TypeScriptParser) TypeParameterList() (localctx ITypeParameterListContext) { + localctx = NewTypeParameterListContext(p, p.GetParserRuleContext(), p.GetState()) + p.EnterRule(localctx, 6, TypeScriptParserRULE_typeParameterList) + var _la int + + defer func() { + p.ExitRule() + }() + + defer func() { + if err := recover(); err != nil { + if v, ok := err.(antlr.RecognitionException); ok { + localctx.SetException(v) + p.GetErrorHandler().ReportError(p, v) + p.GetErrorHandler().Recover(p, v) + } else { + panic(err) + } + } + }() + + p.EnterOuterAlt(localctx, 1) + { + p.SetState(289) + p.TypeParameter() + } + p.SetState(294) + p.GetErrorHandler().Sync(p) + _la = p.GetTokenStream().LA(1) + + for _la == TypeScriptParserComma { + { + p.SetState(290) + p.Match(TypeScriptParserComma) + } + { + p.SetState(291) + p.TypeParameter() + } + + p.SetState(296) + p.GetErrorHandler().Sync(p) + _la = p.GetTokenStream().LA(1) + } + + return localctx +} + +// ITypeParameterContext is an interface to support dynamic dispatch. +type ITypeParameterContext interface { + antlr.ParserRuleContext + + // GetParser returns the parser. + GetParser() antlr.Parser + + // IsTypeParameterContext differentiates from other interfaces. + IsTypeParameterContext() +} + +type TypeParameterContext struct { + *antlr.BaseParserRuleContext + parser antlr.Parser +} + +func NewEmptyTypeParameterContext() *TypeParameterContext { + var p = new(TypeParameterContext) + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(nil, -1) + p.RuleIndex = TypeScriptParserRULE_typeParameter + return p +} + +func (*TypeParameterContext) IsTypeParameterContext() {} + +func NewTypeParameterContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *TypeParameterContext { + var p = new(TypeParameterContext) + + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(parent, invokingState) + + p.parser = parser + p.RuleIndex = TypeScriptParserRULE_typeParameter + + return p +} + +func (s *TypeParameterContext) GetParser() antlr.Parser { return s.parser } + +func (s *TypeParameterContext) Identifier() antlr.TerminalNode { + return s.GetToken(TypeScriptParserIdentifier, 0) +} + +func (s *TypeParameterContext) Constraint() IConstraintContext { + var t = s.GetTypedRuleContext(reflect.TypeOf((*IConstraintContext)(nil)).Elem(), 0) + + if t == nil { + return nil + } + + return t.(IConstraintContext) +} + +func (s *TypeParameterContext) TypeParameters() ITypeParametersContext { + var t = s.GetTypedRuleContext(reflect.TypeOf((*ITypeParametersContext)(nil)).Elem(), 0) + + if t == nil { + return nil + } + + return t.(ITypeParametersContext) +} + +func (s *TypeParameterContext) GetRuleContext() antlr.RuleContext { + return s +} + +func (s *TypeParameterContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string { + return antlr.TreesStringTree(s, ruleNames, recog) +} + +func (s *TypeParameterContext) EnterRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(TypeScriptParserListener); ok { + listenerT.EnterTypeParameter(s) + } +} + +func (s *TypeParameterContext) ExitRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(TypeScriptParserListener); ok { + listenerT.ExitTypeParameter(s) + } +} + +func (p *TypeScriptParser) TypeParameter() (localctx ITypeParameterContext) { + localctx = NewTypeParameterContext(p, p.GetParserRuleContext(), p.GetState()) + p.EnterRule(localctx, 8, TypeScriptParserRULE_typeParameter) + var _la int + + defer func() { + p.ExitRule() + }() + + defer func() { + if err := recover(); err != nil { + if v, ok := err.(antlr.RecognitionException); ok { + localctx.SetException(v) + p.GetErrorHandler().ReportError(p, v) + p.GetErrorHandler().Recover(p, v) + } else { + panic(err) + } + } + }() + + p.SetState(302) + p.GetErrorHandler().Sync(p) + + switch p.GetTokenStream().LA(1) { + case TypeScriptParserIdentifier: + p.EnterOuterAlt(localctx, 1) + { + p.SetState(297) + p.Match(TypeScriptParserIdentifier) + } + p.SetState(299) + p.GetErrorHandler().Sync(p) + _la = p.GetTokenStream().LA(1) + + if _la == TypeScriptParserExtends { + { + p.SetState(298) + p.Constraint() + } + + } + + case TypeScriptParserLessThan: + p.EnterOuterAlt(localctx, 2) + { + p.SetState(301) + p.TypeParameters() + } + + default: + panic(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) + } + + return localctx +} + +// IConstraintContext is an interface to support dynamic dispatch. +type IConstraintContext interface { + antlr.ParserRuleContext + + // GetParser returns the parser. + GetParser() antlr.Parser + + // IsConstraintContext differentiates from other interfaces. + IsConstraintContext() +} + +type ConstraintContext struct { + *antlr.BaseParserRuleContext + parser antlr.Parser +} + +func NewEmptyConstraintContext() *ConstraintContext { + var p = new(ConstraintContext) + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(nil, -1) + p.RuleIndex = TypeScriptParserRULE_constraint + return p +} + +func (*ConstraintContext) IsConstraintContext() {} + +func NewConstraintContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ConstraintContext { + var p = new(ConstraintContext) + + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(parent, invokingState) + + p.parser = parser + p.RuleIndex = TypeScriptParserRULE_constraint + + return p +} + +func (s *ConstraintContext) GetParser() antlr.Parser { return s.parser } + +func (s *ConstraintContext) Extends() antlr.TerminalNode { + return s.GetToken(TypeScriptParserExtends, 0) +} + +func (s *ConstraintContext) Type_() IType_Context { + var t = s.GetTypedRuleContext(reflect.TypeOf((*IType_Context)(nil)).Elem(), 0) + + if t == nil { + return nil + } + + return t.(IType_Context) +} + +func (s *ConstraintContext) GetRuleContext() antlr.RuleContext { + return s +} + +func (s *ConstraintContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string { + return antlr.TreesStringTree(s, ruleNames, recog) +} + +func (s *ConstraintContext) EnterRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(TypeScriptParserListener); ok { + listenerT.EnterConstraint(s) + } +} + +func (s *ConstraintContext) ExitRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(TypeScriptParserListener); ok { + listenerT.ExitConstraint(s) + } +} + +func (p *TypeScriptParser) Constraint() (localctx IConstraintContext) { + localctx = NewConstraintContext(p, p.GetParserRuleContext(), p.GetState()) + p.EnterRule(localctx, 10, TypeScriptParserRULE_constraint) + + defer func() { + p.ExitRule() + }() + + defer func() { + if err := recover(); err != nil { + if v, ok := err.(antlr.RecognitionException); ok { + localctx.SetException(v) + p.GetErrorHandler().ReportError(p, v) + p.GetErrorHandler().Recover(p, v) + } else { + panic(err) + } + } + }() + + p.EnterOuterAlt(localctx, 1) + { + p.SetState(304) + p.Match(TypeScriptParserExtends) + } + { + p.SetState(305) + p.Type_() + } + + return localctx +} + +// ITypeArgumentsContext is an interface to support dynamic dispatch. +type ITypeArgumentsContext interface { + antlr.ParserRuleContext + + // GetParser returns the parser. + GetParser() antlr.Parser + + // IsTypeArgumentsContext differentiates from other interfaces. + IsTypeArgumentsContext() +} + +type TypeArgumentsContext struct { + *antlr.BaseParserRuleContext + parser antlr.Parser +} + +func NewEmptyTypeArgumentsContext() *TypeArgumentsContext { + var p = new(TypeArgumentsContext) + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(nil, -1) + p.RuleIndex = TypeScriptParserRULE_typeArguments + return p +} + +func (*TypeArgumentsContext) IsTypeArgumentsContext() {} + +func NewTypeArgumentsContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *TypeArgumentsContext { + var p = new(TypeArgumentsContext) + + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(parent, invokingState) + + p.parser = parser + p.RuleIndex = TypeScriptParserRULE_typeArguments + + return p +} + +func (s *TypeArgumentsContext) GetParser() antlr.Parser { return s.parser } + +func (s *TypeArgumentsContext) LessThan() antlr.TerminalNode { + return s.GetToken(TypeScriptParserLessThan, 0) +} + +func (s *TypeArgumentsContext) MoreThan() antlr.TerminalNode { + return s.GetToken(TypeScriptParserMoreThan, 0) +} + +func (s *TypeArgumentsContext) TypeArgumentList() ITypeArgumentListContext { + var t = s.GetTypedRuleContext(reflect.TypeOf((*ITypeArgumentListContext)(nil)).Elem(), 0) + + if t == nil { + return nil + } + + return t.(ITypeArgumentListContext) +} + +func (s *TypeArgumentsContext) GetRuleContext() antlr.RuleContext { + return s +} + +func (s *TypeArgumentsContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string { + return antlr.TreesStringTree(s, ruleNames, recog) +} + +func (s *TypeArgumentsContext) EnterRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(TypeScriptParserListener); ok { + listenerT.EnterTypeArguments(s) + } +} + +func (s *TypeArgumentsContext) ExitRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(TypeScriptParserListener); ok { + listenerT.ExitTypeArguments(s) + } +} + +func (p *TypeScriptParser) TypeArguments() (localctx ITypeArgumentsContext) { + localctx = NewTypeArgumentsContext(p, p.GetParserRuleContext(), p.GetState()) + p.EnterRule(localctx, 12, TypeScriptParserRULE_typeArguments) + var _la int + + defer func() { + p.ExitRule() + }() + + defer func() { + if err := recover(); err != nil { + if v, ok := err.(antlr.RecognitionException); ok { + localctx.SetException(v) + p.GetErrorHandler().ReportError(p, v) + p.GetErrorHandler().Recover(p, v) + } else { + panic(err) + } + } + }() + + p.EnterOuterAlt(localctx, 1) + { + p.SetState(307) + p.Match(TypeScriptParserLessThan) + } + p.SetState(309) + p.GetErrorHandler().Sync(p) + _la = p.GetTokenStream().LA(1) + + if (((_la)&-(0x1f+1)) == 0 && ((1<