diff --git a/src/grammar/flink/FlinkSqlLexer.g4 b/src/grammar/flink/FlinkSqlLexer.g4 index 0b1148e7..891b31aa 100644 --- a/src/grammar/flink/FlinkSqlLexer.g4 +++ b/src/grammar/flink/FlinkSqlLexer.g4 @@ -171,6 +171,7 @@ KW_FILTER : 'FILTER'; KW_FIRST_VALUE : 'FIRST_VALUE'; KW_FLOAT : 'FLOAT'; KW_FLOOR : 'FLOOR'; +KW_FOLLOWING : 'FOLLOWING'; KW_FOR : 'FOR'; KW_FOREIGN : 'FOREIGN'; KW_FRAME_ROW : 'FRAME_ROW'; @@ -428,6 +429,7 @@ KW_TRUNCATE : 'TRUNCATE'; KW_TRY_CAST : 'TRY_CAST'; KW_TUESDAY : 'TUESDAY'; KW_UESCAPE : 'UESCAPE'; +KW_UNBOUNDED : 'UNBOUNDED'; KW_UNION : 'UNION'; KW_UNIQUE : 'UNIQUE'; KW_UNKNOWN : 'UNKNOWN'; diff --git a/src/grammar/flink/FlinkSqlParser.g4 b/src/grammar/flink/FlinkSqlParser.g4 index 0ea1d12d..eb792e41 100644 --- a/src/grammar/flink/FlinkSqlParser.g4 +++ b/src/grammar/flink/FlinkSqlParser.g4 @@ -501,8 +501,8 @@ projectItemDefinition ; overWindowItem - : primaryExpression KW_OVER windowSpec KW_AS identifier - | primaryExpression KW_OVER errorCapturingIdentifier KW_AS identifier + : primaryExpression KW_OVER windowSpec (KW_AS identifier)? + | primaryExpression KW_OVER errorCapturingIdentifier (KW_AS identifier)? ; fromClause @@ -649,7 +649,9 @@ orderByClause ; orderItemDefinition - : columnName ordering=(KW_ASC | KW_DESC)? (KW_NULLS nullOrder=(KW_LAST | KW_FIRST))? + : (columnName | valueExpression) ordering=(KW_ASC | KW_DESC)? ( + KW_NULLS nullOrder=(KW_LAST | KW_FIRST) + )? ; limitClause @@ -699,6 +701,7 @@ patternVariablesDefinition windowFrame : KW_RANGE KW_BETWEEN timeIntervalExpression frameBound + | (KW_ROWS | KW_RANGE) KW_BETWEEN frameStart KW_AND frameEnd | KW_ROWS KW_BETWEEN DIG_LITERAL frameBound ; @@ -706,6 +709,18 @@ frameBound : KW_PRECEDING KW_AND KW_CURRENT KW_ROW ; +frameStart + : KW_UNBOUNDED KW_PRECEDING + | DIG_LITERAL KW_PRECEDING + | KW_CURRENT KW_ROW + ; + +frameEnd + : KW_CURRENT KW_ROW + | DIG_LITERAL KW_FOLLOWING + | KW_UNBOUNDED KW_FOLLOWING + ; + withinClause : KW_WITHIN timeIntervalExpression ; @@ -788,11 +803,11 @@ primaryExpression | functionCallExpression # functionCall // | identifier '->' expression #lambda // | '(' identifier (',' identifier)+ ')' '->' expression #lambda - | value=primaryExpression LS_BRACKET index=valueExpression RS_BRACKET # subscript - | columnNamePath # columnReference - | dereferenceDefinition # dereference - | LR_BRACKET expression RR_BRACKET # parenthesizedExpression - // | EXTRACT LR_BRACKET field=identifier KW_FROM source=valueExpression RR_BRACKET #extract + | value=primaryExpression LS_BRACKET index=valueExpression RS_BRACKET # subscript + | columnNamePath # columnReference + | dereferenceDefinition # dereference + | LR_BRACKET expression RR_BRACKET # parenthesizedExpression + | KW_EXTRACT LR_BRACKET field=identifier KW_FROM source=valueExpression RR_BRACKET # extract // | (SUBSTR | SUBSTRING) LR_BRACKET str=valueExpression (KW_FROM | COMMA) pos=valueExpression // ((KW_FOR | COMMA) len=valueExpression)? RR_BRACKET #substring // | TRIM LR_BRACKET trimOption=(BOTH | LEADING | TRAILING)? (trimStr=valueExpression)? diff --git a/src/lib/flink/FlinkSqlLexer.interp b/src/lib/flink/FlinkSqlLexer.interp index 60885dd9..77f78422 100644 --- a/src/lib/flink/FlinkSqlLexer.interp +++ b/src/lib/flink/FlinkSqlLexer.interp @@ -145,6 +145,7 @@ null 'FIRST_VALUE' 'FLOAT' 'FLOOR' +'FOLLOWING' 'FOR' 'FOREIGN' 'FRAME_ROW' @@ -402,6 +403,7 @@ null 'TRY_CAST' 'TUESDAY' 'UESCAPE' +'UNBOUNDED' 'UNION' 'UNIQUE' 'UNKNOWN' @@ -690,6 +692,7 @@ KW_FILTER KW_FIRST_VALUE KW_FLOAT KW_FLOOR +KW_FOLLOWING KW_FOR KW_FOREIGN KW_FRAME_ROW @@ -947,6 +950,7 @@ KW_TRUNCATE KW_TRY_CAST KW_TUESDAY KW_UESCAPE +KW_UNBOUNDED KW_UNION KW_UNIQUE KW_UNKNOWN @@ -1234,6 +1238,7 @@ KW_FILTER KW_FIRST_VALUE KW_FLOAT KW_FLOOR +KW_FOLLOWING KW_FOR KW_FOREIGN KW_FRAME_ROW @@ -1491,6 +1496,7 @@ KW_TRUNCATE KW_TRY_CAST KW_TUESDAY KW_UESCAPE +KW_UNBOUNDED KW_UNION KW_UNIQUE KW_UNKNOWN @@ -1649,4 +1655,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 542, 5507, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 2, 471, 7, 471, 2, 472, 7, 472, 2, 473, 7, 473, 2, 474, 7, 474, 2, 475, 7, 475, 2, 476, 7, 476, 2, 477, 7, 477, 2, 478, 7, 478, 2, 479, 7, 479, 2, 480, 7, 480, 2, 481, 7, 481, 2, 482, 7, 482, 2, 483, 7, 483, 2, 484, 7, 484, 2, 485, 7, 485, 2, 486, 7, 486, 2, 487, 7, 487, 2, 488, 7, 488, 2, 489, 7, 489, 2, 490, 7, 490, 2, 491, 7, 491, 2, 492, 7, 492, 2, 493, 7, 493, 2, 494, 7, 494, 2, 495, 7, 495, 2, 496, 7, 496, 2, 497, 7, 497, 2, 498, 7, 498, 2, 499, 7, 499, 2, 500, 7, 500, 2, 501, 7, 501, 2, 502, 7, 502, 2, 503, 7, 503, 2, 504, 7, 504, 2, 505, 7, 505, 2, 506, 7, 506, 2, 507, 7, 507, 2, 508, 7, 508, 2, 509, 7, 509, 2, 510, 7, 510, 2, 511, 7, 511, 2, 512, 7, 512, 2, 513, 7, 513, 2, 514, 7, 514, 2, 515, 7, 515, 2, 516, 7, 516, 2, 517, 7, 517, 2, 518, 7, 518, 2, 519, 7, 519, 2, 520, 7, 520, 2, 521, 7, 521, 2, 522, 7, 522, 2, 523, 7, 523, 2, 524, 7, 524, 2, 525, 7, 525, 2, 526, 7, 526, 2, 527, 7, 527, 2, 528, 7, 528, 2, 529, 7, 529, 2, 530, 7, 530, 2, 531, 7, 531, 2, 532, 7, 532, 2, 533, 7, 533, 2, 534, 7, 534, 2, 535, 7, 535, 2, 536, 7, 536, 2, 537, 7, 537, 2, 538, 7, 538, 2, 539, 7, 539, 2, 540, 7, 540, 2, 541, 7, 541, 2, 542, 7, 542, 2, 543, 7, 543, 2, 544, 7, 544, 2, 545, 7, 545, 2, 546, 7, 546, 2, 547, 7, 547, 2, 548, 7, 548, 2, 549, 7, 549, 2, 550, 7, 550, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1112, 8, 1, 10, 1, 12, 1, 1115, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 3, 2, 1125, 8, 2, 1, 2, 5, 2, 1128, 8, 2, 10, 2, 12, 2, 1131, 9, 2, 1, 2, 3, 2, 1134, 8, 2, 1, 2, 1, 2, 3, 2, 1138, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1144, 8, 2, 1, 2, 1, 2, 3, 2, 1148, 8, 2, 3, 2, 1150, 8, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 388, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 452, 1, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 466, 1, 466, 1, 466, 1, 466, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 468, 1, 468, 1, 468, 1, 468, 1, 468, 1, 469, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 502, 1, 502, 1, 502, 1, 502, 1, 502, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 505, 1, 505, 1, 506, 1, 506, 1, 507, 1, 507, 1, 508, 1, 508, 1, 509, 1, 509, 1, 510, 1, 510, 1, 511, 1, 511, 1, 512, 1, 512, 1, 513, 1, 513, 1, 514, 1, 514, 1, 515, 1, 515, 1, 516, 1, 516, 1, 517, 1, 517, 1, 518, 1, 518, 1, 519, 1, 519, 1, 520, 1, 520, 1, 521, 1, 521, 1, 522, 1, 522, 1, 523, 1, 523, 1, 524, 1, 524, 1, 525, 1, 525, 1, 526, 1, 526, 1, 527, 1, 527, 1, 528, 1, 528, 1, 529, 1, 529, 1, 530, 1, 530, 1, 531, 1, 531, 1, 532, 1, 532, 1, 532, 1, 533, 1, 533, 1, 533, 1, 534, 1, 534, 1, 535, 1, 535, 1, 536, 1, 536, 1, 536, 1, 537, 1, 537, 1, 537, 3, 537, 5361, 8, 537, 1, 538, 4, 538, 5364, 8, 538, 11, 538, 12, 538, 5365, 1, 539, 4, 539, 5369, 8, 539, 11, 539, 12, 539, 5370, 3, 539, 5373, 8, 539, 1, 539, 1, 539, 4, 539, 5377, 8, 539, 11, 539, 12, 539, 5378, 1, 539, 4, 539, 5382, 8, 539, 11, 539, 12, 539, 5383, 1, 539, 1, 539, 1, 539, 1, 539, 4, 539, 5390, 8, 539, 11, 539, 12, 539, 5391, 3, 539, 5394, 8, 539, 1, 539, 1, 539, 4, 539, 5398, 8, 539, 11, 539, 12, 539, 5399, 1, 539, 1, 539, 1, 539, 4, 539, 5405, 8, 539, 11, 539, 12, 539, 5406, 1, 539, 1, 539, 3, 539, 5411, 8, 539, 1, 540, 1, 540, 1, 541, 1, 541, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 5, 542, 5423, 8, 542, 10, 542, 12, 542, 5426, 9, 542, 1, 542, 1, 542, 1, 543, 1, 543, 3, 543, 5432, 8, 543, 1, 543, 4, 543, 5435, 8, 543, 11, 543, 12, 543, 5436, 1, 544, 5, 544, 5440, 8, 544, 10, 544, 12, 544, 5443, 9, 544, 1, 544, 4, 544, 5446, 8, 544, 11, 544, 12, 544, 5447, 1, 544, 5, 544, 5451, 8, 544, 10, 544, 12, 544, 5454, 9, 544, 1, 545, 1, 545, 1, 546, 1, 546, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 5, 547, 5466, 8, 547, 10, 547, 12, 547, 5469, 9, 547, 1, 547, 1, 547, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 5, 548, 5479, 8, 548, 10, 548, 12, 548, 5482, 9, 548, 1, 548, 1, 548, 1, 549, 1, 549, 1, 549, 4, 549, 5489, 8, 549, 11, 549, 12, 549, 5490, 1, 549, 1, 549, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 5, 550, 5501, 8, 550, 10, 550, 12, 550, 5504, 9, 550, 1, 550, 1, 550, 3, 1113, 5441, 5447, 0, 551, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 201, 403, 202, 405, 203, 407, 204, 409, 205, 411, 206, 413, 207, 415, 208, 417, 209, 419, 210, 421, 211, 423, 212, 425, 213, 427, 214, 429, 215, 431, 216, 433, 217, 435, 218, 437, 219, 439, 220, 441, 221, 443, 222, 445, 223, 447, 224, 449, 225, 451, 226, 453, 227, 455, 228, 457, 229, 459, 230, 461, 231, 463, 232, 465, 233, 467, 234, 469, 235, 471, 236, 473, 237, 475, 238, 477, 239, 479, 240, 481, 241, 483, 242, 485, 243, 487, 244, 489, 245, 491, 246, 493, 247, 495, 248, 497, 249, 499, 250, 501, 251, 503, 252, 505, 253, 507, 254, 509, 255, 511, 256, 513, 257, 515, 258, 517, 259, 519, 260, 521, 261, 523, 262, 525, 263, 527, 264, 529, 265, 531, 266, 533, 267, 535, 268, 537, 269, 539, 270, 541, 271, 543, 272, 545, 273, 547, 274, 549, 275, 551, 276, 553, 277, 555, 278, 557, 279, 559, 280, 561, 281, 563, 282, 565, 283, 567, 284, 569, 285, 571, 286, 573, 287, 575, 288, 577, 289, 579, 290, 581, 291, 583, 292, 585, 293, 587, 294, 589, 295, 591, 296, 593, 297, 595, 298, 597, 299, 599, 300, 601, 301, 603, 302, 605, 303, 607, 304, 609, 305, 611, 306, 613, 307, 615, 308, 617, 309, 619, 310, 621, 311, 623, 312, 625, 313, 627, 314, 629, 315, 631, 316, 633, 317, 635, 318, 637, 319, 639, 320, 641, 321, 643, 322, 645, 323, 647, 324, 649, 325, 651, 326, 653, 327, 655, 328, 657, 329, 659, 330, 661, 331, 663, 332, 665, 333, 667, 334, 669, 335, 671, 336, 673, 337, 675, 338, 677, 339, 679, 340, 681, 341, 683, 342, 685, 343, 687, 344, 689, 345, 691, 346, 693, 347, 695, 348, 697, 349, 699, 350, 701, 351, 703, 352, 705, 353, 707, 354, 709, 355, 711, 356, 713, 357, 715, 358, 717, 359, 719, 360, 721, 361, 723, 362, 725, 363, 727, 364, 729, 365, 731, 366, 733, 367, 735, 368, 737, 369, 739, 370, 741, 371, 743, 372, 745, 373, 747, 374, 749, 375, 751, 376, 753, 377, 755, 378, 757, 379, 759, 380, 761, 381, 763, 382, 765, 383, 767, 384, 769, 385, 771, 386, 773, 387, 775, 388, 777, 389, 779, 390, 781, 391, 783, 392, 785, 393, 787, 394, 789, 395, 791, 396, 793, 397, 795, 398, 797, 399, 799, 400, 801, 401, 803, 402, 805, 403, 807, 404, 809, 405, 811, 406, 813, 407, 815, 408, 817, 409, 819, 410, 821, 411, 823, 412, 825, 413, 827, 414, 829, 415, 831, 416, 833, 417, 835, 418, 837, 419, 839, 420, 841, 421, 843, 422, 845, 423, 847, 424, 849, 425, 851, 426, 853, 427, 855, 428, 857, 429, 859, 430, 861, 431, 863, 432, 865, 433, 867, 434, 869, 435, 871, 436, 873, 437, 875, 438, 877, 439, 879, 440, 881, 441, 883, 442, 885, 443, 887, 444, 889, 445, 891, 446, 893, 447, 895, 448, 897, 449, 899, 450, 901, 451, 903, 452, 905, 453, 907, 454, 909, 455, 911, 456, 913, 457, 915, 458, 917, 459, 919, 460, 921, 461, 923, 462, 925, 463, 927, 464, 929, 465, 931, 466, 933, 467, 935, 468, 937, 469, 939, 470, 941, 471, 943, 472, 945, 473, 947, 474, 949, 475, 951, 476, 953, 477, 955, 478, 957, 479, 959, 480, 961, 481, 963, 482, 965, 483, 967, 484, 969, 485, 971, 486, 973, 487, 975, 488, 977, 489, 979, 490, 981, 491, 983, 492, 985, 493, 987, 494, 989, 495, 991, 496, 993, 497, 995, 498, 997, 499, 999, 500, 1001, 501, 1003, 502, 1005, 503, 1007, 504, 1009, 505, 1011, 506, 1013, 507, 1015, 508, 1017, 509, 1019, 510, 1021, 511, 1023, 512, 1025, 513, 1027, 514, 1029, 515, 1031, 516, 1033, 517, 1035, 518, 1037, 519, 1039, 520, 1041, 521, 1043, 522, 1045, 523, 1047, 524, 1049, 525, 1051, 526, 1053, 527, 1055, 528, 1057, 529, 1059, 530, 1061, 531, 1063, 532, 1065, 533, 1067, 534, 1069, 535, 1071, 536, 1073, 537, 1075, 538, 1077, 539, 1079, 540, 1081, 541, 1083, 542, 1085, 0, 1087, 0, 1089, 0, 1091, 0, 1093, 0, 1095, 0, 1097, 0, 1099, 0, 1101, 0, 1, 0, 37, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 10, 10, 13, 13, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 83, 83, 115, 115, 2, 0, 76, 76, 108, 108, 2, 0, 79, 79, 111, 111, 2, 0, 67, 67, 99, 99, 2, 0, 84, 84, 116, 116, 2, 0, 69, 69, 101, 101, 2, 0, 87, 87, 119, 119, 2, 0, 82, 82, 114, 114, 2, 0, 78, 78, 110, 110, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 2, 0, 68, 68, 100, 100, 2, 0, 71, 71, 103, 103, 2, 0, 77, 77, 109, 109, 2, 0, 88, 88, 120, 120, 2, 0, 73, 73, 105, 105, 2, 0, 86, 86, 118, 118, 2, 0, 85, 85, 117, 117, 2, 0, 72, 72, 104, 104, 2, 0, 70, 70, 102, 102, 2, 0, 80, 80, 112, 112, 2, 0, 75, 75, 107, 107, 2, 0, 81, 81, 113, 113, 2, 0, 74, 74, 106, 106, 2, 0, 92, 92, 96, 96, 2, 0, 43, 43, 45, 45, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 3, 0, 65, 90, 95, 95, 97, 122, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 1, 0, 48, 49, 5537, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 401, 1, 0, 0, 0, 0, 403, 1, 0, 0, 0, 0, 405, 1, 0, 0, 0, 0, 407, 1, 0, 0, 0, 0, 409, 1, 0, 0, 0, 0, 411, 1, 0, 0, 0, 0, 413, 1, 0, 0, 0, 0, 415, 1, 0, 0, 0, 0, 417, 1, 0, 0, 0, 0, 419, 1, 0, 0, 0, 0, 421, 1, 0, 0, 0, 0, 423, 1, 0, 0, 0, 0, 425, 1, 0, 0, 0, 0, 427, 1, 0, 0, 0, 0, 429, 1, 0, 0, 0, 0, 431, 1, 0, 0, 0, 0, 433, 1, 0, 0, 0, 0, 435, 1, 0, 0, 0, 0, 437, 1, 0, 0, 0, 0, 439, 1, 0, 0, 0, 0, 441, 1, 0, 0, 0, 0, 443, 1, 0, 0, 0, 0, 445, 1, 0, 0, 0, 0, 447, 1, 0, 0, 0, 0, 449, 1, 0, 0, 0, 0, 451, 1, 0, 0, 0, 0, 453, 1, 0, 0, 0, 0, 455, 1, 0, 0, 0, 0, 457, 1, 0, 0, 0, 0, 459, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 541, 1, 0, 0, 0, 0, 543, 1, 0, 0, 0, 0, 545, 1, 0, 0, 0, 0, 547, 1, 0, 0, 0, 0, 549, 1, 0, 0, 0, 0, 551, 1, 0, 0, 0, 0, 553, 1, 0, 0, 0, 0, 555, 1, 0, 0, 0, 0, 557, 1, 0, 0, 0, 0, 559, 1, 0, 0, 0, 0, 561, 1, 0, 0, 0, 0, 563, 1, 0, 0, 0, 0, 565, 1, 0, 0, 0, 0, 567, 1, 0, 0, 0, 0, 569, 1, 0, 0, 0, 0, 571, 1, 0, 0, 0, 0, 573, 1, 0, 0, 0, 0, 575, 1, 0, 0, 0, 0, 577, 1, 0, 0, 0, 0, 579, 1, 0, 0, 0, 0, 581, 1, 0, 0, 0, 0, 583, 1, 0, 0, 0, 0, 585, 1, 0, 0, 0, 0, 587, 1, 0, 0, 0, 0, 589, 1, 0, 0, 0, 0, 591, 1, 0, 0, 0, 0, 593, 1, 0, 0, 0, 0, 595, 1, 0, 0, 0, 0, 597, 1, 0, 0, 0, 0, 599, 1, 0, 0, 0, 0, 601, 1, 0, 0, 0, 0, 603, 1, 0, 0, 0, 0, 605, 1, 0, 0, 0, 0, 607, 1, 0, 0, 0, 0, 609, 1, 0, 0, 0, 0, 611, 1, 0, 0, 0, 0, 613, 1, 0, 0, 0, 0, 615, 1, 0, 0, 0, 0, 617, 1, 0, 0, 0, 0, 619, 1, 0, 0, 0, 0, 621, 1, 0, 0, 0, 0, 623, 1, 0, 0, 0, 0, 625, 1, 0, 0, 0, 0, 627, 1, 0, 0, 0, 0, 629, 1, 0, 0, 0, 0, 631, 1, 0, 0, 0, 0, 633, 1, 0, 0, 0, 0, 635, 1, 0, 0, 0, 0, 637, 1, 0, 0, 0, 0, 639, 1, 0, 0, 0, 0, 641, 1, 0, 0, 0, 0, 643, 1, 0, 0, 0, 0, 645, 1, 0, 0, 0, 0, 647, 1, 0, 0, 0, 0, 649, 1, 0, 0, 0, 0, 651, 1, 0, 0, 0, 0, 653, 1, 0, 0, 0, 0, 655, 1, 0, 0, 0, 0, 657, 1, 0, 0, 0, 0, 659, 1, 0, 0, 0, 0, 661, 1, 0, 0, 0, 0, 663, 1, 0, 0, 0, 0, 665, 1, 0, 0, 0, 0, 667, 1, 0, 0, 0, 0, 669, 1, 0, 0, 0, 0, 671, 1, 0, 0, 0, 0, 673, 1, 0, 0, 0, 0, 675, 1, 0, 0, 0, 0, 677, 1, 0, 0, 0, 0, 679, 1, 0, 0, 0, 0, 681, 1, 0, 0, 0, 0, 683, 1, 0, 0, 0, 0, 685, 1, 0, 0, 0, 0, 687, 1, 0, 0, 0, 0, 689, 1, 0, 0, 0, 0, 691, 1, 0, 0, 0, 0, 693, 1, 0, 0, 0, 0, 695, 1, 0, 0, 0, 0, 697, 1, 0, 0, 0, 0, 699, 1, 0, 0, 0, 0, 701, 1, 0, 0, 0, 0, 703, 1, 0, 0, 0, 0, 705, 1, 0, 0, 0, 0, 707, 1, 0, 0, 0, 0, 709, 1, 0, 0, 0, 0, 711, 1, 0, 0, 0, 0, 713, 1, 0, 0, 0, 0, 715, 1, 0, 0, 0, 0, 717, 1, 0, 0, 0, 0, 719, 1, 0, 0, 0, 0, 721, 1, 0, 0, 0, 0, 723, 1, 0, 0, 0, 0, 725, 1, 0, 0, 0, 0, 727, 1, 0, 0, 0, 0, 729, 1, 0, 0, 0, 0, 731, 1, 0, 0, 0, 0, 733, 1, 0, 0, 0, 0, 735, 1, 0, 0, 0, 0, 737, 1, 0, 0, 0, 0, 739, 1, 0, 0, 0, 0, 741, 1, 0, 0, 0, 0, 743, 1, 0, 0, 0, 0, 745, 1, 0, 0, 0, 0, 747, 1, 0, 0, 0, 0, 749, 1, 0, 0, 0, 0, 751, 1, 0, 0, 0, 0, 753, 1, 0, 0, 0, 0, 755, 1, 0, 0, 0, 0, 757, 1, 0, 0, 0, 0, 759, 1, 0, 0, 0, 0, 761, 1, 0, 0, 0, 0, 763, 1, 0, 0, 0, 0, 765, 1, 0, 0, 0, 0, 767, 1, 0, 0, 0, 0, 769, 1, 0, 0, 0, 0, 771, 1, 0, 0, 0, 0, 773, 1, 0, 0, 0, 0, 775, 1, 0, 0, 0, 0, 777, 1, 0, 0, 0, 0, 779, 1, 0, 0, 0, 0, 781, 1, 0, 0, 0, 0, 783, 1, 0, 0, 0, 0, 785, 1, 0, 0, 0, 0, 787, 1, 0, 0, 0, 0, 789, 1, 0, 0, 0, 0, 791, 1, 0, 0, 0, 0, 793, 1, 0, 0, 0, 0, 795, 1, 0, 0, 0, 0, 797, 1, 0, 0, 0, 0, 799, 1, 0, 0, 0, 0, 801, 1, 0, 0, 0, 0, 803, 1, 0, 0, 0, 0, 805, 1, 0, 0, 0, 0, 807, 1, 0, 0, 0, 0, 809, 1, 0, 0, 0, 0, 811, 1, 0, 0, 0, 0, 813, 1, 0, 0, 0, 0, 815, 1, 0, 0, 0, 0, 817, 1, 0, 0, 0, 0, 819, 1, 0, 0, 0, 0, 821, 1, 0, 0, 0, 0, 823, 1, 0, 0, 0, 0, 825, 1, 0, 0, 0, 0, 827, 1, 0, 0, 0, 0, 829, 1, 0, 0, 0, 0, 831, 1, 0, 0, 0, 0, 833, 1, 0, 0, 0, 0, 835, 1, 0, 0, 0, 0, 837, 1, 0, 0, 0, 0, 839, 1, 0, 0, 0, 0, 841, 1, 0, 0, 0, 0, 843, 1, 0, 0, 0, 0, 845, 1, 0, 0, 0, 0, 847, 1, 0, 0, 0, 0, 849, 1, 0, 0, 0, 0, 851, 1, 0, 0, 0, 0, 853, 1, 0, 0, 0, 0, 855, 1, 0, 0, 0, 0, 857, 1, 0, 0, 0, 0, 859, 1, 0, 0, 0, 0, 861, 1, 0, 0, 0, 0, 863, 1, 0, 0, 0, 0, 865, 1, 0, 0, 0, 0, 867, 1, 0, 0, 0, 0, 869, 1, 0, 0, 0, 0, 871, 1, 0, 0, 0, 0, 873, 1, 0, 0, 0, 0, 875, 1, 0, 0, 0, 0, 877, 1, 0, 0, 0, 0, 879, 1, 0, 0, 0, 0, 881, 1, 0, 0, 0, 0, 883, 1, 0, 0, 0, 0, 885, 1, 0, 0, 0, 0, 887, 1, 0, 0, 0, 0, 889, 1, 0, 0, 0, 0, 891, 1, 0, 0, 0, 0, 893, 1, 0, 0, 0, 0, 895, 1, 0, 0, 0, 0, 897, 1, 0, 0, 0, 0, 899, 1, 0, 0, 0, 0, 901, 1, 0, 0, 0, 0, 903, 1, 0, 0, 0, 0, 905, 1, 0, 0, 0, 0, 907, 1, 0, 0, 0, 0, 909, 1, 0, 0, 0, 0, 911, 1, 0, 0, 0, 0, 913, 1, 0, 0, 0, 0, 915, 1, 0, 0, 0, 0, 917, 1, 0, 0, 0, 0, 919, 1, 0, 0, 0, 0, 921, 1, 0, 0, 0, 0, 923, 1, 0, 0, 0, 0, 925, 1, 0, 0, 0, 0, 927, 1, 0, 0, 0, 0, 929, 1, 0, 0, 0, 0, 931, 1, 0, 0, 0, 0, 933, 1, 0, 0, 0, 0, 935, 1, 0, 0, 0, 0, 937, 1, 0, 0, 0, 0, 939, 1, 0, 0, 0, 0, 941, 1, 0, 0, 0, 0, 943, 1, 0, 0, 0, 0, 945, 1, 0, 0, 0, 0, 947, 1, 0, 0, 0, 0, 949, 1, 0, 0, 0, 0, 951, 1, 0, 0, 0, 0, 953, 1, 0, 0, 0, 0, 955, 1, 0, 0, 0, 0, 957, 1, 0, 0, 0, 0, 959, 1, 0, 0, 0, 0, 961, 1, 0, 0, 0, 0, 963, 1, 0, 0, 0, 0, 965, 1, 0, 0, 0, 0, 967, 1, 0, 0, 0, 0, 969, 1, 0, 0, 0, 0, 971, 1, 0, 0, 0, 0, 973, 1, 0, 0, 0, 0, 975, 1, 0, 0, 0, 0, 977, 1, 0, 0, 0, 0, 979, 1, 0, 0, 0, 0, 981, 1, 0, 0, 0, 0, 983, 1, 0, 0, 0, 0, 985, 1, 0, 0, 0, 0, 987, 1, 0, 0, 0, 0, 989, 1, 0, 0, 0, 0, 991, 1, 0, 0, 0, 0, 993, 1, 0, 0, 0, 0, 995, 1, 0, 0, 0, 0, 997, 1, 0, 0, 0, 0, 999, 1, 0, 0, 0, 0, 1001, 1, 0, 0, 0, 0, 1003, 1, 0, 0, 0, 0, 1005, 1, 0, 0, 0, 0, 1007, 1, 0, 0, 0, 0, 1009, 1, 0, 0, 0, 0, 1011, 1, 0, 0, 0, 0, 1013, 1, 0, 0, 0, 0, 1015, 1, 0, 0, 0, 0, 1017, 1, 0, 0, 0, 0, 1019, 1, 0, 0, 0, 0, 1021, 1, 0, 0, 0, 0, 1023, 1, 0, 0, 0, 0, 1025, 1, 0, 0, 0, 0, 1027, 1, 0, 0, 0, 0, 1029, 1, 0, 0, 0, 0, 1031, 1, 0, 0, 0, 0, 1033, 1, 0, 0, 0, 0, 1035, 1, 0, 0, 0, 0, 1037, 1, 0, 0, 0, 0, 1039, 1, 0, 0, 0, 0, 1041, 1, 0, 0, 0, 0, 1043, 1, 0, 0, 0, 0, 1045, 1, 0, 0, 0, 0, 1047, 1, 0, 0, 0, 0, 1049, 1, 0, 0, 0, 0, 1051, 1, 0, 0, 0, 0, 1053, 1, 0, 0, 0, 0, 1055, 1, 0, 0, 0, 0, 1057, 1, 0, 0, 0, 0, 1059, 1, 0, 0, 0, 0, 1061, 1, 0, 0, 0, 0, 1063, 1, 0, 0, 0, 0, 1065, 1, 0, 0, 0, 0, 1067, 1, 0, 0, 0, 0, 1069, 1, 0, 0, 0, 0, 1071, 1, 0, 0, 0, 0, 1073, 1, 0, 0, 0, 0, 1075, 1, 0, 0, 0, 0, 1077, 1, 0, 0, 0, 0, 1079, 1, 0, 0, 0, 0, 1081, 1, 0, 0, 0, 0, 1083, 1, 0, 0, 0, 1, 1103, 1, 0, 0, 0, 3, 1107, 1, 0, 0, 0, 5, 1149, 1, 0, 0, 0, 7, 1153, 1, 0, 0, 0, 9, 1157, 1, 0, 0, 0, 11, 1161, 1, 0, 0, 0, 13, 1170, 1, 0, 0, 0, 15, 1176, 1, 0, 0, 0, 17, 1182, 1, 0, 0, 0, 19, 1190, 1, 0, 0, 0, 21, 1194, 1, 0, 0, 0, 23, 1198, 1, 0, 0, 0, 25, 1202, 1, 0, 0, 0, 27, 1208, 1, 0, 0, 0, 29, 1218, 1, 0, 0, 0, 31, 1235, 1, 0, 0, 0, 33, 1257, 1, 0, 0, 0, 35, 1260, 1, 0, 0, 0, 37, 1271, 1, 0, 0, 0, 39, 1282, 1, 0, 0, 0, 41, 1285, 1, 0, 0, 0, 43, 1292, 1, 0, 0, 0, 45, 1306, 1, 0, 0, 0, 47, 1310, 1, 0, 0, 0, 49, 1316, 1, 0, 0, 0, 51, 1328, 1, 0, 0, 0, 53, 1344, 1, 0, 0, 0, 55, 1352, 1, 0, 0, 0, 57, 1359, 1, 0, 0, 0, 59, 1366, 1, 0, 0, 0, 61, 1370, 1, 0, 0, 0, 63, 1375, 1, 0, 0, 0, 65, 1383, 1, 0, 0, 0, 67, 1388, 1, 0, 0, 0, 69, 1391, 1, 0, 0, 0, 71, 1397, 1, 0, 0, 0, 73, 1402, 1, 0, 0, 0, 75, 1409, 1, 0, 0, 0, 77, 1421, 1, 0, 0, 0, 79, 1430, 1, 0, 0, 0, 81, 1435, 1, 0, 0, 0, 83, 1440, 1, 0, 0, 0, 85, 1449, 1, 0, 0, 0, 87, 1454, 1, 0, 0, 0, 89, 1462, 1, 0, 0, 0, 91, 1477, 1, 0, 0, 0, 93, 1482, 1, 0, 0, 0, 95, 1492, 1, 0, 0, 0, 97, 1509, 1, 0, 0, 0, 99, 1521, 1, 0, 0, 0, 101, 1527, 1, 0, 0, 0, 103, 1538, 1, 0, 0, 0, 105, 1543, 1, 0, 0, 0, 107, 1549, 1, 0, 0, 0, 109, 1558, 1, 0, 0, 0, 111, 1566, 1, 0, 0, 0, 113, 1574, 1, 0, 0, 0, 115, 1581, 1, 0, 0, 0, 117, 1589, 1, 0, 0, 0, 119, 1597, 1, 0, 0, 0, 121, 1604, 1, 0, 0, 0, 123, 1612, 1, 0, 0, 0, 125, 1622, 1, 0, 0, 0, 127, 1630, 1, 0, 0, 0, 129, 1641, 1, 0, 0, 0, 131, 1650, 1, 0, 0, 0, 133, 1658, 1, 0, 0, 0, 135, 1663, 1, 0, 0, 0, 137, 1677, 1, 0, 0, 0, 139, 1683, 1, 0, 0, 0, 141, 1693, 1, 0, 0, 0, 143, 1704, 1, 0, 0, 0, 145, 1711, 1, 0, 0, 0, 147, 1717, 1, 0, 0, 0, 149, 1722, 1, 0, 0, 0, 151, 1732, 1, 0, 0, 0, 153, 1740, 1, 0, 0, 0, 155, 1756, 1, 0, 0, 0, 157, 1769, 1, 0, 0, 0, 159, 1801, 1, 0, 0, 0, 161, 1814, 1, 0, 0, 0, 163, 1827, 1, 0, 0, 0, 165, 1839, 1, 0, 0, 0, 167, 1854, 1, 0, 0, 0, 169, 1867, 1, 0, 0, 0, 171, 1885, 1, 0, 0, 0, 173, 1918, 1, 0, 0, 0, 175, 1931, 1, 0, 0, 0, 177, 1938, 1, 0, 0, 0, 179, 1944, 1, 0, 0, 0, 181, 1954, 1, 0, 0, 0, 183, 1959, 1, 0, 0, 0, 185, 1968, 1, 0, 0, 0, 187, 1982, 1, 0, 0, 0, 189, 1997, 1, 0, 0, 0, 191, 2007, 1, 0, 0, 0, 193, 2018, 1, 0, 0, 0, 195, 2022, 1, 0, 0, 0, 197, 2032, 1, 0, 0, 0, 199, 2042, 1, 0, 0, 0, 201, 2053, 1, 0, 0, 0, 203, 2057, 1, 0, 0, 0, 205, 2065, 1, 0, 0, 0, 207, 2073, 1, 0, 0, 0, 209, 2081, 1, 0, 0, 0, 211, 2088, 1, 0, 0, 0, 213, 2095, 1, 0, 0, 0, 215, 2106, 1, 0, 0, 0, 217, 2112, 1, 0, 0, 0, 219, 2121, 1, 0, 0, 0, 221, 2135, 1, 0, 0, 0, 223, 2144, 1, 0, 0, 0, 225, 2155, 1, 0, 0, 0, 227, 2164, 1, 0, 0, 0, 229, 2168, 1, 0, 0, 0, 231, 2175, 1, 0, 0, 0, 233, 2180, 1, 0, 0, 0, 235, 2188, 1, 0, 0, 0, 237, 2193, 1, 0, 0, 0, 239, 2201, 1, 0, 0, 0, 241, 2206, 1, 0, 0, 0, 243, 2212, 1, 0, 0, 0, 245, 2216, 1, 0, 0, 0, 247, 2226, 1, 0, 0, 0, 249, 2240, 1, 0, 0, 0, 251, 2249, 1, 0, 0, 0, 253, 2256, 1, 0, 0, 0, 255, 2263, 1, 0, 0, 0, 257, 2278, 1, 0, 0, 0, 259, 2284, 1, 0, 0, 0, 261, 2291, 1, 0, 0, 0, 263, 2296, 1, 0, 0, 0, 265, 2304, 1, 0, 0, 0, 267, 2311, 1, 0, 0, 0, 269, 2315, 1, 0, 0, 0, 271, 2323, 1, 0, 0, 0, 273, 2330, 1, 0, 0, 0, 275, 2339, 1, 0, 0, 0, 277, 2348, 1, 0, 0, 0, 279, 2356, 1, 0, 0, 0, 281, 2362, 1, 0, 0, 0, 283, 2368, 1, 0, 0, 0, 285, 2375, 1, 0, 0, 0, 287, 2387, 1, 0, 0, 0, 289, 2393, 1, 0, 0, 0, 291, 2399, 1, 0, 0, 0, 293, 2403, 1, 0, 0, 0, 295, 2411, 1, 0, 0, 0, 297, 2421, 1, 0, 0, 0, 299, 2426, 1, 0, 0, 0, 301, 2433, 1, 0, 0, 0, 303, 2438, 1, 0, 0, 0, 305, 2443, 1, 0, 0, 0, 307, 2452, 1, 0, 0, 0, 309, 2462, 1, 0, 0, 0, 311, 2469, 1, 0, 0, 0, 313, 2473, 1, 0, 0, 0, 315, 2480, 1, 0, 0, 0, 317, 2486, 1, 0, 0, 0, 319, 2492, 1, 0, 0, 0, 321, 2501, 1, 0, 0, 0, 323, 2508, 1, 0, 0, 0, 325, 2521, 1, 0, 0, 0, 327, 2528, 1, 0, 0, 0, 329, 2533, 1, 0, 0, 0, 331, 2538, 1, 0, 0, 0, 333, 2547, 1, 0, 0, 0, 335, 2550, 1, 0, 0, 0, 337, 2556, 1, 0, 0, 0, 339, 2563, 1, 0, 0, 0, 341, 2566, 1, 0, 0, 0, 343, 2574, 1, 0, 0, 0, 345, 2584, 1, 0, 0, 0, 347, 2592, 1, 0, 0, 0, 349, 2598, 1, 0, 0, 0, 351, 2604, 1, 0, 0, 0, 353, 2616, 1, 0, 0, 0, 355, 2623, 1, 0, 0, 0, 357, 2627, 1, 0, 0, 0, 359, 2635, 1, 0, 0, 0, 361, 2645, 1, 0, 0, 0, 363, 2658, 1, 0, 0, 0, 365, 2667, 1, 0, 0, 0, 367, 2672, 1, 0, 0, 0, 369, 2675, 1, 0, 0, 0, 371, 2680, 1, 0, 0, 0, 373, 2685, 1, 0, 0, 0, 375, 2696, 1, 0, 0, 0, 377, 2710, 1, 0, 0, 0, 379, 2730, 1, 0, 0, 0, 381, 2742, 1, 0, 0, 0, 383, 2754, 1, 0, 0, 0, 385, 2769, 1, 0, 0, 0, 387, 2780, 1, 0, 0, 0, 389, 2791, 1, 0, 0, 0, 391, 2795, 1, 0, 0, 0, 393, 2804, 1, 0, 0, 0, 395, 2810, 1, 0, 0, 0, 397, 2821, 1, 0, 0, 0, 399, 2829, 1, 0, 0, 0, 401, 2834, 1, 0, 0, 0, 403, 2842, 1, 0, 0, 0, 405, 2847, 1, 0, 0, 0, 407, 2852, 1, 0, 0, 0, 409, 2863, 1, 0, 0, 0, 411, 2869, 1, 0, 0, 0, 413, 2872, 1, 0, 0, 0, 415, 2878, 1, 0, 0, 0, 417, 2888, 1, 0, 0, 0, 419, 2903, 1, 0, 0, 0, 421, 2909, 1, 0, 0, 0, 423, 2915, 1, 0, 0, 0, 425, 2923, 1, 0, 0, 0, 427, 2936, 1, 0, 0, 0, 429, 2952, 1, 0, 0, 0, 431, 2956, 1, 0, 0, 0, 433, 2965, 1, 0, 0, 0, 435, 2972, 1, 0, 0, 0, 437, 2978, 1, 0, 0, 0, 439, 2987, 1, 0, 0, 0, 441, 2994, 1, 0, 0, 0, 443, 2998, 1, 0, 0, 0, 445, 3004, 1, 0, 0, 0, 447, 3011, 1, 0, 0, 0, 449, 3015, 1, 0, 0, 0, 451, 3024, 1, 0, 0, 0, 453, 3031, 1, 0, 0, 0, 455, 3038, 1, 0, 0, 0, 457, 3046, 1, 0, 0, 0, 459, 3053, 1, 0, 0, 0, 461, 3059, 1, 0, 0, 0, 463, 3064, 1, 0, 0, 0, 465, 3073, 1, 0, 0, 0, 467, 3082, 1, 0, 0, 0, 469, 3090, 1, 0, 0, 0, 471, 3096, 1, 0, 0, 0, 473, 3102, 1, 0, 0, 0, 475, 3106, 1, 0, 0, 0, 477, 3111, 1, 0, 0, 0, 479, 3114, 1, 0, 0, 0, 481, 3119, 1, 0, 0, 0, 483, 3129, 1, 0, 0, 0, 485, 3133, 1, 0, 0, 0, 487, 3143, 1, 0, 0, 0, 489, 3149, 1, 0, 0, 0, 491, 3154, 1, 0, 0, 0, 493, 3161, 1, 0, 0, 0, 495, 3169, 1, 0, 0, 0, 497, 3187, 1, 0, 0, 0, 499, 3200, 1, 0, 0, 0, 501, 3203, 1, 0, 0, 0, 503, 3210, 1, 0, 0, 0, 505, 3214, 1, 0, 0, 0, 507, 3219, 1, 0, 0, 0, 509, 3222, 1, 0, 0, 0, 511, 3226, 1, 0, 0, 0, 513, 3231, 1, 0, 0, 0, 515, 3236, 1, 0, 0, 0, 517, 3239, 1, 0, 0, 0, 519, 3245, 1, 0, 0, 0, 521, 3253, 1, 0, 0, 0, 523, 3257, 1, 0, 0, 0, 525, 3263, 1, 0, 0, 0, 527, 3268, 1, 0, 0, 0, 529, 3277, 1, 0, 0, 0, 531, 3285, 1, 0, 0, 0, 533, 3295, 1, 0, 0, 0, 535, 3307, 1, 0, 0, 0, 537, 3317, 1, 0, 0, 0, 539, 3327, 1, 0, 0, 0, 541, 3339, 1, 0, 0, 0, 543, 3350, 1, 0, 0, 0, 545, 3358, 1, 0, 0, 0, 547, 3362, 1, 0, 0, 0, 549, 3370, 1, 0, 0, 0, 551, 3386, 1, 0, 0, 0, 553, 3402, 1, 0, 0, 0, 555, 3415, 1, 0, 0, 0, 557, 3422, 1, 0, 0, 0, 559, 3430, 1, 0, 0, 0, 561, 3436, 1, 0, 0, 0, 563, 3444, 1, 0, 0, 0, 565, 3453, 1, 0, 0, 0, 567, 3468, 1, 0, 0, 0, 569, 3474, 1, 0, 0, 0, 571, 3483, 1, 0, 0, 0, 573, 3493, 1, 0, 0, 0, 575, 3501, 1, 0, 0, 0, 577, 3506, 1, 0, 0, 0, 579, 3514, 1, 0, 0, 0, 581, 3524, 1, 0, 0, 0, 583, 3532, 1, 0, 0, 0, 585, 3541, 1, 0, 0, 0, 587, 3547, 1, 0, 0, 0, 589, 3552, 1, 0, 0, 0, 591, 3556, 1, 0, 0, 0, 593, 3562, 1, 0, 0, 0, 595, 3567, 1, 0, 0, 0, 597, 3577, 1, 0, 0, 0, 599, 3581, 1, 0, 0, 0, 601, 3592, 1, 0, 0, 0, 603, 3604, 1, 0, 0, 0, 605, 3614, 1, 0, 0, 0, 607, 3624, 1, 0, 0, 0, 609, 3635, 1, 0, 0, 0, 611, 3650, 1, 0, 0, 0, 613, 3658, 1, 0, 0, 0, 615, 3669, 1, 0, 0, 0, 617, 3678, 1, 0, 0, 0, 619, 3687, 1, 0, 0, 0, 621, 3696, 1, 0, 0, 0, 623, 3704, 1, 0, 0, 0, 625, 3711, 1, 0, 0, 0, 627, 3717, 1, 0, 0, 0, 629, 3724, 1, 0, 0, 0, 631, 3731, 1, 0, 0, 0, 633, 3739, 1, 0, 0, 0, 635, 3746, 1, 0, 0, 0, 637, 3752, 1, 0, 0, 0, 639, 3758, 1, 0, 0, 0, 641, 3767, 1, 0, 0, 0, 643, 3774, 1, 0, 0, 0, 645, 3778, 1, 0, 0, 0, 647, 3783, 1, 0, 0, 0, 649, 3794, 1, 0, 0, 0, 651, 3802, 1, 0, 0, 0, 653, 3812, 1, 0, 0, 0, 655, 3824, 1, 0, 0, 0, 657, 3837, 1, 0, 0, 0, 659, 3846, 1, 0, 0, 0, 661, 3856, 1, 0, 0, 0, 663, 3862, 1, 0, 0, 0, 665, 3868, 1, 0, 0, 0, 667, 3875, 1, 0, 0, 0, 669, 3882, 1, 0, 0, 0, 671, 3889, 1, 0, 0, 0, 673, 3894, 1, 0, 0, 0, 675, 3901, 1, 0, 0, 0, 677, 3911, 1, 0, 0, 0, 679, 3921, 1, 0, 0, 0, 681, 3934, 1, 0, 0, 0, 683, 3938, 1, 0, 0, 0, 685, 3943, 1, 0, 0, 0, 687, 3951, 1, 0, 0, 0, 689, 3956, 1, 0, 0, 0, 691, 3965, 1, 0, 0, 0, 693, 3970, 1, 0, 0, 0, 695, 3979, 1, 0, 0, 0, 697, 3992, 1, 0, 0, 0, 699, 3996, 1, 0, 0, 0, 701, 4009, 1, 0, 0, 0, 703, 4018, 1, 0, 0, 0, 705, 4029, 1, 0, 0, 0, 707, 4034, 1, 0, 0, 0, 709, 4040, 1, 0, 0, 0, 711, 4050, 1, 0, 0, 0, 713, 4057, 1, 0, 0, 0, 715, 4068, 1, 0, 0, 0, 717, 4079, 1, 0, 0, 0, 719, 4091, 1, 0, 0, 0, 721, 4098, 1, 0, 0, 0, 723, 4105, 1, 0, 0, 0, 725, 4116, 1, 0, 0, 0, 727, 4128, 1, 0, 0, 0, 729, 4135, 1, 0, 0, 0, 731, 4145, 1, 0, 0, 0, 733, 4161, 1, 0, 0, 0, 735, 4170, 1, 0, 0, 0, 737, 4174, 1, 0, 0, 0, 739, 4181, 1, 0, 0, 0, 741, 4191, 1, 0, 0, 0, 743, 4198, 1, 0, 0, 0, 745, 4210, 1, 0, 0, 0, 747, 4222, 1, 0, 0, 0, 749, 4228, 1, 0, 0, 0, 751, 4235, 1, 0, 0, 0, 753, 4247, 1, 0, 0, 0, 755, 4252, 1, 0, 0, 0, 757, 4261, 1, 0, 0, 0, 759, 4266, 1, 0, 0, 0, 761, 4276, 1, 0, 0, 0, 763, 4291, 1, 0, 0, 0, 765, 4305, 1, 0, 0, 0, 767, 4321, 1, 0, 0, 0, 769, 4335, 1, 0, 0, 0, 771, 4351, 1, 0, 0, 0, 773, 4361, 1, 0, 0, 0, 775, 4372, 1, 0, 0, 0, 777, 4380, 1, 0, 0, 0, 779, 4383, 1, 0, 0, 0, 781, 4392, 1, 0, 0, 0, 783, 4402, 1, 0, 0, 0, 785, 4418, 1, 0, 0, 0, 787, 4430, 1, 0, 0, 0, 789, 4436, 1, 0, 0, 0, 791, 4444, 1, 0, 0, 0, 793, 4449, 1, 0, 0, 0, 795, 4460, 1, 0, 0, 0, 797, 4465, 1, 0, 0, 0, 799, 4474, 1, 0, 0, 0, 801, 4483, 1, 0, 0, 0, 803, 4491, 1, 0, 0, 0, 805, 4499, 1, 0, 0, 0, 807, 4505, 1, 0, 0, 0, 809, 4512, 1, 0, 0, 0, 811, 4520, 1, 0, 0, 0, 813, 4527, 1, 0, 0, 0, 815, 4535, 1, 0, 0, 0, 817, 4542, 1, 0, 0, 0, 819, 4548, 1, 0, 0, 0, 821, 4555, 1, 0, 0, 0, 823, 4559, 1, 0, 0, 0, 825, 4564, 1, 0, 0, 0, 827, 4570, 1, 0, 0, 0, 829, 4576, 1, 0, 0, 0, 831, 4583, 1, 0, 0, 0, 833, 4592, 1, 0, 0, 0, 835, 4602, 1, 0, 0, 0, 837, 4610, 1, 0, 0, 0, 839, 4618, 1, 0, 0, 0, 841, 4626, 1, 0, 0, 0, 843, 4635, 1, 0, 0, 0, 845, 4646, 1, 0, 0, 0, 847, 4652, 1, 0, 0, 0, 849, 4660, 1, 0, 0, 0, 851, 4670, 1, 0, 0, 0, 853, 4681, 1, 0, 0, 0, 855, 4691, 1, 0, 0, 0, 857, 4697, 1, 0, 0, 0, 859, 4702, 1, 0, 0, 0, 861, 4711, 1, 0, 0, 0, 863, 4717, 1, 0, 0, 0, 865, 4730, 1, 0, 0, 0, 867, 4737, 1, 0, 0, 0, 869, 4742, 1, 0, 0, 0, 871, 4749, 1, 0, 0, 0, 873, 4757, 1, 0, 0, 0, 875, 4762, 1, 0, 0, 0, 877, 4766, 1, 0, 0, 0, 879, 4772, 1, 0, 0, 0, 881, 4776, 1, 0, 0, 0, 883, 4784, 1, 0, 0, 0, 885, 4792, 1, 0, 0, 0, 887, 4800, 1, 0, 0, 0, 889, 4807, 1, 0, 0, 0, 891, 4819, 1, 0, 0, 0, 893, 4828, 1, 0, 0, 0, 895, 4833, 1, 0, 0, 0, 897, 4842, 1, 0, 0, 0, 899, 4847, 1, 0, 0, 0, 901, 4854, 1, 0, 0, 0, 903, 4859, 1, 0, 0, 0, 905, 4870, 1, 0, 0, 0, 907, 4874, 1, 0, 0, 0, 909, 4881, 1, 0, 0, 0, 911, 4887, 1, 0, 0, 0, 913, 4897, 1, 0, 0, 0, 915, 4902, 1, 0, 0, 0, 917, 4908, 1, 0, 0, 0, 919, 4918, 1, 0, 0, 0, 921, 4922, 1, 0, 0, 0, 923, 4928, 1, 0, 0, 0, 925, 4935, 1, 0, 0, 0, 927, 4945, 1, 0, 0, 0, 929, 4949, 1, 0, 0, 0, 931, 4954, 1, 0, 0, 0, 933, 4959, 1, 0, 0, 0, 935, 4963, 1, 0, 0, 0, 937, 4968, 1, 0, 0, 0, 939, 4973, 1, 0, 0, 0, 941, 4977, 1, 0, 0, 0, 943, 4989, 1, 0, 0, 0, 945, 5000, 1, 0, 0, 0, 947, 5012, 1, 0, 0, 0, 949, 5020, 1, 0, 0, 0, 951, 5027, 1, 0, 0, 0, 953, 5038, 1, 0, 0, 0, 955, 5044, 1, 0, 0, 0, 957, 5052, 1, 0, 0, 0, 959, 5057, 1, 0, 0, 0, 961, 5062, 1, 0, 0, 0, 963, 5072, 1, 0, 0, 0, 965, 5079, 1, 0, 0, 0, 967, 5095, 1, 0, 0, 0, 969, 5115, 1, 0, 0, 0, 971, 5128, 1, 0, 0, 0, 973, 5139, 1, 0, 0, 0, 975, 5156, 1, 0, 0, 0, 977, 5176, 1, 0, 0, 0, 979, 5184, 1, 0, 0, 0, 981, 5191, 1, 0, 0, 0, 983, 5200, 1, 0, 0, 0, 985, 5208, 1, 0, 0, 0, 987, 5216, 1, 0, 0, 0, 989, 5221, 1, 0, 0, 0, 991, 5226, 1, 0, 0, 0, 993, 5232, 1, 0, 0, 0, 995, 5237, 1, 0, 0, 0, 997, 5247, 1, 0, 0, 0, 999, 5255, 1, 0, 0, 0, 1001, 5262, 1, 0, 0, 0, 1003, 5269, 1, 0, 0, 0, 1005, 5274, 1, 0, 0, 0, 1007, 5279, 1, 0, 0, 0, 1009, 5285, 1, 0, 0, 0, 1011, 5290, 1, 0, 0, 0, 1013, 5292, 1, 0, 0, 0, 1015, 5294, 1, 0, 0, 0, 1017, 5296, 1, 0, 0, 0, 1019, 5298, 1, 0, 0, 0, 1021, 5300, 1, 0, 0, 0, 1023, 5302, 1, 0, 0, 0, 1025, 5304, 1, 0, 0, 0, 1027, 5306, 1, 0, 0, 0, 1029, 5308, 1, 0, 0, 0, 1031, 5310, 1, 0, 0, 0, 1033, 5312, 1, 0, 0, 0, 1035, 5314, 1, 0, 0, 0, 1037, 5316, 1, 0, 0, 0, 1039, 5318, 1, 0, 0, 0, 1041, 5320, 1, 0, 0, 0, 1043, 5322, 1, 0, 0, 0, 1045, 5324, 1, 0, 0, 0, 1047, 5326, 1, 0, 0, 0, 1049, 5328, 1, 0, 0, 0, 1051, 5330, 1, 0, 0, 0, 1053, 5332, 1, 0, 0, 0, 1055, 5334, 1, 0, 0, 0, 1057, 5336, 1, 0, 0, 0, 1059, 5338, 1, 0, 0, 0, 1061, 5340, 1, 0, 0, 0, 1063, 5342, 1, 0, 0, 0, 1065, 5344, 1, 0, 0, 0, 1067, 5347, 1, 0, 0, 0, 1069, 5350, 1, 0, 0, 0, 1071, 5352, 1, 0, 0, 0, 1073, 5354, 1, 0, 0, 0, 1075, 5360, 1, 0, 0, 0, 1077, 5363, 1, 0, 0, 0, 1079, 5410, 1, 0, 0, 0, 1081, 5412, 1, 0, 0, 0, 1083, 5414, 1, 0, 0, 0, 1085, 5416, 1, 0, 0, 0, 1087, 5429, 1, 0, 0, 0, 1089, 5441, 1, 0, 0, 0, 1091, 5455, 1, 0, 0, 0, 1093, 5457, 1, 0, 0, 0, 1095, 5459, 1, 0, 0, 0, 1097, 5472, 1, 0, 0, 0, 1099, 5485, 1, 0, 0, 0, 1101, 5494, 1, 0, 0, 0, 1103, 1104, 7, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1106, 6, 0, 0, 0, 1106, 2, 1, 0, 0, 0, 1107, 1108, 5, 47, 0, 0, 1108, 1109, 5, 42, 0, 0, 1109, 1113, 1, 0, 0, 0, 1110, 1112, 9, 0, 0, 0, 1111, 1110, 1, 0, 0, 0, 1112, 1115, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1113, 1111, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1113, 1, 0, 0, 0, 1116, 1117, 5, 42, 0, 0, 1117, 1118, 5, 47, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 6, 1, 0, 0, 1120, 4, 1, 0, 0, 0, 1121, 1122, 5, 45, 0, 0, 1122, 1125, 5, 45, 0, 0, 1123, 1125, 5, 35, 0, 0, 1124, 1121, 1, 0, 0, 0, 1124, 1123, 1, 0, 0, 0, 1125, 1129, 1, 0, 0, 0, 1126, 1128, 8, 1, 0, 0, 1127, 1126, 1, 0, 0, 0, 1128, 1131, 1, 0, 0, 0, 1129, 1127, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1137, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1134, 5, 13, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1138, 5, 10, 0, 0, 1136, 1138, 5, 0, 0, 1, 1137, 1133, 1, 0, 0, 0, 1137, 1136, 1, 0, 0, 0, 1138, 1150, 1, 0, 0, 0, 1139, 1140, 5, 45, 0, 0, 1140, 1141, 5, 45, 0, 0, 1141, 1147, 1, 0, 0, 0, 1142, 1144, 5, 13, 0, 0, 1143, 1142, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1148, 5, 10, 0, 0, 1146, 1148, 5, 0, 0, 1, 1147, 1143, 1, 0, 0, 0, 1147, 1146, 1, 0, 0, 0, 1148, 1150, 1, 0, 0, 0, 1149, 1124, 1, 0, 0, 0, 1149, 1139, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 6, 2, 0, 0, 1152, 6, 1, 0, 0, 0, 1153, 1154, 7, 2, 0, 0, 1154, 1155, 7, 3, 0, 0, 1155, 1156, 7, 4, 0, 0, 1156, 8, 1, 0, 0, 0, 1157, 1158, 7, 2, 0, 0, 1158, 1159, 7, 5, 0, 0, 1159, 1160, 7, 5, 0, 0, 1160, 10, 1, 0, 0, 0, 1161, 1162, 7, 2, 0, 0, 1162, 1163, 7, 5, 0, 0, 1163, 1164, 7, 5, 0, 0, 1164, 1165, 7, 6, 0, 0, 1165, 1166, 7, 7, 0, 0, 1166, 1167, 7, 2, 0, 0, 1167, 1168, 7, 8, 0, 0, 1168, 1169, 7, 9, 0, 0, 1169, 12, 1, 0, 0, 0, 1170, 1171, 7, 2, 0, 0, 1171, 1172, 7, 5, 0, 0, 1172, 1173, 7, 5, 0, 0, 1173, 1174, 7, 6, 0, 0, 1174, 1175, 7, 10, 0, 0, 1175, 14, 1, 0, 0, 0, 1176, 1177, 7, 2, 0, 0, 1177, 1178, 7, 5, 0, 0, 1178, 1179, 7, 8, 0, 0, 1179, 1180, 7, 9, 0, 0, 1180, 1181, 7, 11, 0, 0, 1181, 16, 1, 0, 0, 0, 1182, 1183, 7, 2, 0, 0, 1183, 1184, 7, 12, 0, 0, 1184, 1185, 7, 2, 0, 0, 1185, 1186, 7, 5, 0, 0, 1186, 1187, 7, 13, 0, 0, 1187, 1188, 7, 14, 0, 0, 1188, 1189, 7, 9, 0, 0, 1189, 18, 1, 0, 0, 0, 1190, 1191, 7, 2, 0, 0, 1191, 1192, 7, 12, 0, 0, 1192, 1193, 7, 15, 0, 0, 1193, 20, 1, 0, 0, 0, 1194, 1195, 7, 2, 0, 0, 1195, 1196, 7, 12, 0, 0, 1196, 1197, 7, 13, 0, 0, 1197, 22, 1, 0, 0, 0, 1198, 1199, 7, 2, 0, 0, 1199, 1200, 7, 11, 0, 0, 1200, 1201, 7, 9, 0, 0, 1201, 24, 1, 0, 0, 0, 1202, 1203, 7, 2, 0, 0, 1203, 1204, 7, 11, 0, 0, 1204, 1205, 7, 11, 0, 0, 1205, 1206, 7, 2, 0, 0, 1206, 1207, 7, 13, 0, 0, 1207, 26, 1, 0, 0, 0, 1208, 1209, 7, 2, 0, 0, 1209, 1210, 7, 11, 0, 0, 1210, 1211, 7, 11, 0, 0, 1211, 1212, 7, 2, 0, 0, 1212, 1213, 7, 13, 0, 0, 1213, 1214, 5, 95, 0, 0, 1214, 1215, 7, 2, 0, 0, 1215, 1216, 7, 16, 0, 0, 1216, 1217, 7, 16, 0, 0, 1217, 28, 1, 0, 0, 0, 1218, 1219, 7, 2, 0, 0, 1219, 1220, 7, 11, 0, 0, 1220, 1221, 7, 11, 0, 0, 1221, 1222, 7, 2, 0, 0, 1222, 1223, 7, 13, 0, 0, 1223, 1224, 5, 95, 0, 0, 1224, 1225, 7, 7, 0, 0, 1225, 1226, 7, 6, 0, 0, 1226, 1227, 7, 12, 0, 0, 1227, 1228, 7, 7, 0, 0, 1228, 1229, 7, 2, 0, 0, 1229, 1230, 7, 8, 0, 0, 1230, 1231, 5, 95, 0, 0, 1231, 1232, 7, 2, 0, 0, 1232, 1233, 7, 16, 0, 0, 1233, 1234, 7, 16, 0, 0, 1234, 30, 1, 0, 0, 0, 1235, 1236, 7, 2, 0, 0, 1236, 1237, 7, 11, 0, 0, 1237, 1238, 7, 11, 0, 0, 1238, 1239, 7, 2, 0, 0, 1239, 1240, 7, 13, 0, 0, 1240, 1241, 5, 95, 0, 0, 1241, 1242, 7, 17, 0, 0, 1242, 1243, 7, 2, 0, 0, 1243, 1244, 7, 18, 0, 0, 1244, 1245, 5, 95, 0, 0, 1245, 1246, 7, 7, 0, 0, 1246, 1247, 7, 2, 0, 0, 1247, 1248, 7, 11, 0, 0, 1248, 1249, 7, 15, 0, 0, 1249, 1250, 7, 19, 0, 0, 1250, 1251, 7, 12, 0, 0, 1251, 1252, 7, 2, 0, 0, 1252, 1253, 7, 5, 0, 0, 1253, 1254, 7, 19, 0, 0, 1254, 1255, 7, 8, 0, 0, 1255, 1256, 7, 13, 0, 0, 1256, 32, 1, 0, 0, 0, 1257, 1258, 7, 2, 0, 0, 1258, 1259, 7, 4, 0, 0, 1259, 34, 1, 0, 0, 0, 1260, 1261, 7, 2, 0, 0, 1261, 1262, 7, 4, 0, 0, 1262, 1263, 7, 9, 0, 0, 1263, 1264, 7, 12, 0, 0, 1264, 1265, 7, 4, 0, 0, 1265, 1266, 7, 19, 0, 0, 1266, 1267, 7, 8, 0, 0, 1267, 1268, 7, 19, 0, 0, 1268, 1269, 7, 20, 0, 0, 1269, 1270, 7, 9, 0, 0, 1270, 36, 1, 0, 0, 0, 1271, 1272, 7, 2, 0, 0, 1272, 1273, 7, 4, 0, 0, 1273, 1274, 7, 13, 0, 0, 1274, 1275, 7, 17, 0, 0, 1275, 1276, 7, 17, 0, 0, 1276, 1277, 7, 9, 0, 0, 1277, 1278, 7, 8, 0, 0, 1278, 1279, 7, 11, 0, 0, 1279, 1280, 7, 19, 0, 0, 1280, 1281, 7, 7, 0, 0, 1281, 38, 1, 0, 0, 0, 1282, 1283, 7, 2, 0, 0, 1283, 1284, 7, 8, 0, 0, 1284, 40, 1, 0, 0, 0, 1285, 1286, 7, 2, 0, 0, 1286, 1287, 7, 8, 0, 0, 1287, 1288, 7, 6, 0, 0, 1288, 1289, 7, 17, 0, 0, 1289, 1290, 7, 19, 0, 0, 1290, 1291, 7, 7, 0, 0, 1291, 42, 1, 0, 0, 0, 1292, 1293, 7, 2, 0, 0, 1293, 1294, 7, 21, 0, 0, 1294, 1295, 7, 8, 0, 0, 1295, 1296, 7, 22, 0, 0, 1296, 1297, 7, 6, 0, 0, 1297, 1298, 7, 11, 0, 0, 1298, 1299, 7, 19, 0, 0, 1299, 1300, 7, 14, 0, 0, 1300, 1301, 7, 2, 0, 0, 1301, 1302, 7, 8, 0, 0, 1302, 1303, 7, 19, 0, 0, 1303, 1304, 7, 6, 0, 0, 1304, 1305, 7, 12, 0, 0, 1305, 44, 1, 0, 0, 0, 1306, 1307, 7, 2, 0, 0, 1307, 1308, 7, 20, 0, 0, 1308, 1309, 7, 16, 0, 0, 1309, 46, 1, 0, 0, 0, 1310, 1311, 7, 3, 0, 0, 1311, 1312, 7, 9, 0, 0, 1312, 1313, 7, 16, 0, 0, 1313, 1314, 7, 19, 0, 0, 1314, 1315, 7, 12, 0, 0, 1315, 48, 1, 0, 0, 0, 1316, 1317, 7, 3, 0, 0, 1317, 1318, 7, 9, 0, 0, 1318, 1319, 7, 16, 0, 0, 1319, 1320, 7, 19, 0, 0, 1320, 1321, 7, 12, 0, 0, 1321, 1322, 5, 95, 0, 0, 1322, 1323, 7, 23, 0, 0, 1323, 1324, 7, 11, 0, 0, 1324, 1325, 7, 2, 0, 0, 1325, 1326, 7, 17, 0, 0, 1326, 1327, 7, 9, 0, 0, 1327, 50, 1, 0, 0, 0, 1328, 1329, 7, 3, 0, 0, 1329, 1330, 7, 9, 0, 0, 1330, 1331, 7, 16, 0, 0, 1331, 1332, 7, 19, 0, 0, 1332, 1333, 7, 12, 0, 0, 1333, 1334, 5, 95, 0, 0, 1334, 1335, 7, 24, 0, 0, 1335, 1336, 7, 2, 0, 0, 1336, 1337, 7, 11, 0, 0, 1337, 1338, 7, 8, 0, 0, 1338, 1339, 7, 19, 0, 0, 1339, 1340, 7, 8, 0, 0, 1340, 1341, 7, 19, 0, 0, 1341, 1342, 7, 6, 0, 0, 1342, 1343, 7, 12, 0, 0, 1343, 52, 1, 0, 0, 0, 1344, 1345, 7, 3, 0, 0, 1345, 1346, 7, 9, 0, 0, 1346, 1347, 7, 8, 0, 0, 1347, 1348, 7, 10, 0, 0, 1348, 1349, 7, 9, 0, 0, 1349, 1350, 7, 9, 0, 0, 1350, 1351, 7, 12, 0, 0, 1351, 54, 1, 0, 0, 0, 1352, 1353, 7, 3, 0, 0, 1353, 1354, 7, 19, 0, 0, 1354, 1355, 7, 16, 0, 0, 1355, 1356, 7, 19, 0, 0, 1356, 1357, 7, 12, 0, 0, 1357, 1358, 7, 8, 0, 0, 1358, 56, 1, 0, 0, 0, 1359, 1360, 7, 3, 0, 0, 1360, 1361, 7, 19, 0, 0, 1361, 1362, 7, 12, 0, 0, 1362, 1363, 7, 2, 0, 0, 1363, 1364, 7, 11, 0, 0, 1364, 1365, 7, 13, 0, 0, 1365, 58, 1, 0, 0, 0, 1366, 1367, 7, 3, 0, 0, 1367, 1368, 7, 19, 0, 0, 1368, 1369, 7, 8, 0, 0, 1369, 60, 1, 0, 0, 0, 1370, 1371, 7, 3, 0, 0, 1371, 1372, 7, 5, 0, 0, 1372, 1373, 7, 6, 0, 0, 1373, 1374, 7, 3, 0, 0, 1374, 62, 1, 0, 0, 0, 1375, 1376, 7, 3, 0, 0, 1376, 1377, 7, 6, 0, 0, 1377, 1378, 7, 6, 0, 0, 1378, 1379, 7, 5, 0, 0, 1379, 1380, 7, 9, 0, 0, 1380, 1381, 7, 2, 0, 0, 1381, 1382, 7, 12, 0, 0, 1382, 64, 1, 0, 0, 0, 1383, 1384, 7, 3, 0, 0, 1384, 1385, 7, 6, 0, 0, 1385, 1386, 7, 8, 0, 0, 1386, 1387, 7, 22, 0, 0, 1387, 66, 1, 0, 0, 0, 1388, 1389, 7, 3, 0, 0, 1389, 1390, 7, 13, 0, 0, 1390, 68, 1, 0, 0, 0, 1391, 1392, 7, 3, 0, 0, 1392, 1393, 7, 13, 0, 0, 1393, 1394, 7, 8, 0, 0, 1394, 1395, 7, 9, 0, 0, 1395, 1396, 7, 4, 0, 0, 1396, 70, 1, 0, 0, 0, 1397, 1398, 7, 7, 0, 0, 1398, 1399, 7, 2, 0, 0, 1399, 1400, 7, 5, 0, 0, 1400, 1401, 7, 5, 0, 0, 1401, 72, 1, 0, 0, 0, 1402, 1403, 7, 7, 0, 0, 1403, 1404, 7, 2, 0, 0, 1404, 1405, 7, 5, 0, 0, 1405, 1406, 7, 5, 0, 0, 1406, 1407, 7, 9, 0, 0, 1407, 1408, 7, 15, 0, 0, 1408, 74, 1, 0, 0, 0, 1409, 1410, 7, 7, 0, 0, 1410, 1411, 7, 2, 0, 0, 1411, 1412, 7, 11, 0, 0, 1412, 1413, 7, 15, 0, 0, 1413, 1414, 7, 19, 0, 0, 1414, 1415, 7, 12, 0, 0, 1415, 1416, 7, 2, 0, 0, 1416, 1417, 7, 5, 0, 0, 1417, 1418, 7, 19, 0, 0, 1418, 1419, 7, 8, 0, 0, 1419, 1420, 7, 13, 0, 0, 1420, 76, 1, 0, 0, 0, 1421, 1422, 7, 7, 0, 0, 1422, 1423, 7, 2, 0, 0, 1423, 1424, 7, 4, 0, 0, 1424, 1425, 7, 7, 0, 0, 1425, 1426, 7, 2, 0, 0, 1426, 1427, 7, 15, 0, 0, 1427, 1428, 7, 9, 0, 0, 1428, 1429, 7, 15, 0, 0, 1429, 78, 1, 0, 0, 0, 1430, 1431, 7, 7, 0, 0, 1431, 1432, 7, 2, 0, 0, 1432, 1433, 7, 4, 0, 0, 1433, 1434, 7, 9, 0, 0, 1434, 80, 1, 0, 0, 0, 1435, 1436, 7, 7, 0, 0, 1436, 1437, 7, 2, 0, 0, 1437, 1438, 7, 4, 0, 0, 1438, 1439, 7, 8, 0, 0, 1439, 82, 1, 0, 0, 0, 1440, 1441, 7, 7, 0, 0, 1441, 1442, 7, 2, 0, 0, 1442, 1443, 7, 8, 0, 0, 1443, 1444, 7, 2, 0, 0, 1444, 1445, 7, 5, 0, 0, 1445, 1446, 7, 6, 0, 0, 1446, 1447, 7, 16, 0, 0, 1447, 1448, 7, 4, 0, 0, 1448, 84, 1, 0, 0, 0, 1449, 1450, 7, 7, 0, 0, 1450, 1451, 7, 9, 0, 0, 1451, 1452, 7, 19, 0, 0, 1452, 1453, 7, 5, 0, 0, 1453, 86, 1, 0, 0, 0, 1454, 1455, 7, 7, 0, 0, 1455, 1456, 7, 9, 0, 0, 1456, 1457, 7, 19, 0, 0, 1457, 1458, 7, 5, 0, 0, 1458, 1459, 7, 19, 0, 0, 1459, 1460, 7, 12, 0, 0, 1460, 1461, 7, 16, 0, 0, 1461, 88, 1, 0, 0, 0, 1462, 1463, 7, 7, 0, 0, 1463, 1464, 7, 22, 0, 0, 1464, 1465, 7, 2, 0, 0, 1465, 1466, 7, 12, 0, 0, 1466, 1467, 7, 16, 0, 0, 1467, 1468, 7, 9, 0, 0, 1468, 1469, 7, 5, 0, 0, 1469, 1470, 7, 6, 0, 0, 1470, 1471, 7, 16, 0, 0, 1471, 1472, 5, 95, 0, 0, 1472, 1473, 7, 17, 0, 0, 1473, 1474, 7, 6, 0, 0, 1474, 1475, 7, 15, 0, 0, 1475, 1476, 7, 9, 0, 0, 1476, 90, 1, 0, 0, 0, 1477, 1478, 7, 7, 0, 0, 1478, 1479, 7, 22, 0, 0, 1479, 1480, 7, 2, 0, 0, 1480, 1481, 7, 11, 0, 0, 1481, 92, 1, 0, 0, 0, 1482, 1483, 7, 7, 0, 0, 1483, 1484, 7, 22, 0, 0, 1484, 1485, 7, 2, 0, 0, 1485, 1486, 7, 11, 0, 0, 1486, 1487, 7, 2, 0, 0, 1487, 1488, 7, 7, 0, 0, 1488, 1489, 7, 8, 0, 0, 1489, 1490, 7, 9, 0, 0, 1490, 1491, 7, 11, 0, 0, 1491, 94, 1, 0, 0, 0, 1492, 1493, 7, 7, 0, 0, 1493, 1494, 7, 22, 0, 0, 1494, 1495, 7, 2, 0, 0, 1495, 1496, 7, 11, 0, 0, 1496, 1497, 7, 2, 0, 0, 1497, 1498, 7, 7, 0, 0, 1498, 1499, 7, 8, 0, 0, 1499, 1500, 7, 9, 0, 0, 1500, 1501, 7, 11, 0, 0, 1501, 1502, 5, 95, 0, 0, 1502, 1503, 7, 5, 0, 0, 1503, 1504, 7, 9, 0, 0, 1504, 1505, 7, 12, 0, 0, 1505, 1506, 7, 16, 0, 0, 1506, 1507, 7, 8, 0, 0, 1507, 1508, 7, 22, 0, 0, 1508, 96, 1, 0, 0, 0, 1509, 1510, 7, 7, 0, 0, 1510, 1511, 7, 22, 0, 0, 1511, 1512, 7, 2, 0, 0, 1512, 1513, 7, 11, 0, 0, 1513, 1514, 5, 95, 0, 0, 1514, 1515, 7, 5, 0, 0, 1515, 1516, 7, 9, 0, 0, 1516, 1517, 7, 12, 0, 0, 1517, 1518, 7, 16, 0, 0, 1518, 1519, 7, 8, 0, 0, 1519, 1520, 7, 22, 0, 0, 1520, 98, 1, 0, 0, 0, 1521, 1522, 7, 7, 0, 0, 1522, 1523, 7, 22, 0, 0, 1523, 1524, 7, 9, 0, 0, 1524, 1525, 7, 7, 0, 0, 1525, 1526, 7, 25, 0, 0, 1526, 100, 1, 0, 0, 0, 1527, 1528, 7, 7, 0, 0, 1528, 1529, 7, 5, 0, 0, 1529, 1530, 7, 2, 0, 0, 1530, 1531, 7, 4, 0, 0, 1531, 1532, 7, 4, 0, 0, 1532, 1533, 7, 19, 0, 0, 1533, 1534, 7, 23, 0, 0, 1534, 1535, 7, 19, 0, 0, 1535, 1536, 7, 9, 0, 0, 1536, 1537, 7, 11, 0, 0, 1537, 102, 1, 0, 0, 0, 1538, 1539, 7, 7, 0, 0, 1539, 1540, 7, 5, 0, 0, 1540, 1541, 7, 6, 0, 0, 1541, 1542, 7, 3, 0, 0, 1542, 104, 1, 0, 0, 0, 1543, 1544, 7, 7, 0, 0, 1544, 1545, 7, 5, 0, 0, 1545, 1546, 7, 6, 0, 0, 1546, 1547, 7, 4, 0, 0, 1547, 1548, 7, 9, 0, 0, 1548, 106, 1, 0, 0, 0, 1549, 1550, 7, 7, 0, 0, 1550, 1551, 7, 6, 0, 0, 1551, 1552, 7, 2, 0, 0, 1552, 1553, 7, 5, 0, 0, 1553, 1554, 7, 9, 0, 0, 1554, 1555, 7, 4, 0, 0, 1555, 1556, 7, 7, 0, 0, 1556, 1557, 7, 9, 0, 0, 1557, 108, 1, 0, 0, 0, 1558, 1559, 7, 7, 0, 0, 1559, 1560, 7, 6, 0, 0, 1560, 1561, 7, 5, 0, 0, 1561, 1562, 7, 5, 0, 0, 1562, 1563, 7, 2, 0, 0, 1563, 1564, 7, 8, 0, 0, 1564, 1565, 7, 9, 0, 0, 1565, 110, 1, 0, 0, 0, 1566, 1567, 7, 7, 0, 0, 1567, 1568, 7, 6, 0, 0, 1568, 1569, 7, 5, 0, 0, 1569, 1570, 7, 5, 0, 0, 1570, 1571, 7, 9, 0, 0, 1571, 1572, 7, 7, 0, 0, 1572, 1573, 7, 8, 0, 0, 1573, 112, 1, 0, 0, 0, 1574, 1575, 7, 7, 0, 0, 1575, 1576, 7, 6, 0, 0, 1576, 1577, 7, 5, 0, 0, 1577, 1578, 7, 21, 0, 0, 1578, 1579, 7, 17, 0, 0, 1579, 1580, 7, 12, 0, 0, 1580, 114, 1, 0, 0, 0, 1581, 1582, 7, 7, 0, 0, 1582, 1583, 7, 6, 0, 0, 1583, 1584, 7, 5, 0, 0, 1584, 1585, 7, 21, 0, 0, 1585, 1586, 7, 17, 0, 0, 1586, 1587, 7, 12, 0, 0, 1587, 1588, 7, 4, 0, 0, 1588, 116, 1, 0, 0, 0, 1589, 1590, 7, 7, 0, 0, 1590, 1591, 7, 6, 0, 0, 1591, 1592, 7, 17, 0, 0, 1592, 1593, 7, 17, 0, 0, 1593, 1594, 7, 9, 0, 0, 1594, 1595, 7, 12, 0, 0, 1595, 1596, 7, 8, 0, 0, 1596, 118, 1, 0, 0, 0, 1597, 1598, 7, 7, 0, 0, 1598, 1599, 7, 6, 0, 0, 1599, 1600, 7, 17, 0, 0, 1600, 1601, 7, 17, 0, 0, 1601, 1602, 7, 19, 0, 0, 1602, 1603, 7, 8, 0, 0, 1603, 120, 1, 0, 0, 0, 1604, 1605, 7, 7, 0, 0, 1605, 1606, 7, 6, 0, 0, 1606, 1607, 7, 17, 0, 0, 1607, 1608, 7, 24, 0, 0, 1608, 1609, 7, 21, 0, 0, 1609, 1610, 7, 8, 0, 0, 1610, 1611, 7, 9, 0, 0, 1611, 122, 1, 0, 0, 0, 1612, 1613, 7, 7, 0, 0, 1613, 1614, 7, 6, 0, 0, 1614, 1615, 7, 12, 0, 0, 1615, 1616, 7, 15, 0, 0, 1616, 1617, 7, 19, 0, 0, 1617, 1618, 7, 8, 0, 0, 1618, 1619, 7, 19, 0, 0, 1619, 1620, 7, 6, 0, 0, 1620, 1621, 7, 12, 0, 0, 1621, 124, 1, 0, 0, 0, 1622, 1623, 7, 7, 0, 0, 1623, 1624, 7, 6, 0, 0, 1624, 1625, 7, 12, 0, 0, 1625, 1626, 7, 12, 0, 0, 1626, 1627, 7, 9, 0, 0, 1627, 1628, 7, 7, 0, 0, 1628, 1629, 7, 8, 0, 0, 1629, 126, 1, 0, 0, 0, 1630, 1631, 7, 7, 0, 0, 1631, 1632, 7, 6, 0, 0, 1632, 1633, 7, 12, 0, 0, 1633, 1634, 7, 4, 0, 0, 1634, 1635, 7, 8, 0, 0, 1635, 1636, 7, 11, 0, 0, 1636, 1637, 7, 2, 0, 0, 1637, 1638, 7, 19, 0, 0, 1638, 1639, 7, 12, 0, 0, 1639, 1640, 7, 8, 0, 0, 1640, 128, 1, 0, 0, 0, 1641, 1642, 7, 7, 0, 0, 1642, 1643, 7, 6, 0, 0, 1643, 1644, 7, 12, 0, 0, 1644, 1645, 7, 8, 0, 0, 1645, 1646, 7, 2, 0, 0, 1646, 1647, 7, 19, 0, 0, 1647, 1648, 7, 12, 0, 0, 1648, 1649, 7, 4, 0, 0, 1649, 130, 1, 0, 0, 0, 1650, 1651, 7, 7, 0, 0, 1651, 1652, 7, 6, 0, 0, 1652, 1653, 7, 12, 0, 0, 1653, 1654, 7, 20, 0, 0, 1654, 1655, 7, 9, 0, 0, 1655, 1656, 7, 11, 0, 0, 1656, 1657, 7, 8, 0, 0, 1657, 132, 1, 0, 0, 0, 1658, 1659, 7, 7, 0, 0, 1659, 1660, 7, 6, 0, 0, 1660, 1661, 7, 11, 0, 0, 1661, 1662, 7, 11, 0, 0, 1662, 134, 1, 0, 0, 0, 1663, 1664, 7, 7, 0, 0, 1664, 1665, 7, 6, 0, 0, 1665, 1666, 7, 11, 0, 0, 1666, 1667, 7, 11, 0, 0, 1667, 1668, 7, 9, 0, 0, 1668, 1669, 7, 4, 0, 0, 1669, 1670, 7, 24, 0, 0, 1670, 1671, 7, 6, 0, 0, 1671, 1672, 7, 12, 0, 0, 1672, 1673, 7, 15, 0, 0, 1673, 1674, 7, 19, 0, 0, 1674, 1675, 7, 12, 0, 0, 1675, 1676, 7, 16, 0, 0, 1676, 136, 1, 0, 0, 0, 1677, 1678, 7, 7, 0, 0, 1678, 1679, 7, 6, 0, 0, 1679, 1680, 7, 21, 0, 0, 1680, 1681, 7, 12, 0, 0, 1681, 1682, 7, 8, 0, 0, 1682, 138, 1, 0, 0, 0, 1683, 1684, 7, 7, 0, 0, 1684, 1685, 7, 6, 0, 0, 1685, 1686, 7, 20, 0, 0, 1686, 1687, 7, 2, 0, 0, 1687, 1688, 7, 11, 0, 0, 1688, 1689, 5, 95, 0, 0, 1689, 1690, 7, 24, 0, 0, 1690, 1691, 7, 6, 0, 0, 1691, 1692, 7, 24, 0, 0, 1692, 140, 1, 0, 0, 0, 1693, 1694, 7, 7, 0, 0, 1694, 1695, 7, 6, 0, 0, 1695, 1696, 7, 20, 0, 0, 1696, 1697, 7, 2, 0, 0, 1697, 1698, 7, 11, 0, 0, 1698, 1699, 5, 95, 0, 0, 1699, 1700, 7, 4, 0, 0, 1700, 1701, 7, 2, 0, 0, 1701, 1702, 7, 17, 0, 0, 1702, 1703, 7, 24, 0, 0, 1703, 142, 1, 0, 0, 0, 1704, 1705, 7, 7, 0, 0, 1705, 1706, 7, 11, 0, 0, 1706, 1707, 7, 9, 0, 0, 1707, 1708, 7, 2, 0, 0, 1708, 1709, 7, 8, 0, 0, 1709, 1710, 7, 9, 0, 0, 1710, 144, 1, 0, 0, 0, 1711, 1712, 7, 7, 0, 0, 1712, 1713, 7, 11, 0, 0, 1713, 1714, 7, 6, 0, 0, 1714, 1715, 7, 4, 0, 0, 1715, 1716, 7, 4, 0, 0, 1716, 146, 1, 0, 0, 0, 1717, 1718, 7, 7, 0, 0, 1718, 1719, 7, 21, 0, 0, 1719, 1720, 7, 3, 0, 0, 1720, 1721, 7, 9, 0, 0, 1721, 148, 1, 0, 0, 0, 1722, 1723, 7, 7, 0, 0, 1723, 1724, 7, 21, 0, 0, 1724, 1725, 7, 17, 0, 0, 1725, 1726, 7, 9, 0, 0, 1726, 1727, 5, 95, 0, 0, 1727, 1728, 7, 15, 0, 0, 1728, 1729, 7, 19, 0, 0, 1729, 1730, 7, 4, 0, 0, 1730, 1731, 7, 8, 0, 0, 1731, 150, 1, 0, 0, 0, 1732, 1733, 7, 7, 0, 0, 1733, 1734, 7, 21, 0, 0, 1734, 1735, 7, 11, 0, 0, 1735, 1736, 7, 11, 0, 0, 1736, 1737, 7, 9, 0, 0, 1737, 1738, 7, 12, 0, 0, 1738, 1739, 7, 8, 0, 0, 1739, 152, 1, 0, 0, 0, 1740, 1741, 7, 7, 0, 0, 1741, 1742, 7, 21, 0, 0, 1742, 1743, 7, 11, 0, 0, 1743, 1744, 7, 11, 0, 0, 1744, 1745, 7, 9, 0, 0, 1745, 1746, 7, 12, 0, 0, 1746, 1747, 7, 8, 0, 0, 1747, 1748, 5, 95, 0, 0, 1748, 1749, 7, 7, 0, 0, 1749, 1750, 7, 2, 0, 0, 1750, 1751, 7, 8, 0, 0, 1751, 1752, 7, 2, 0, 0, 1752, 1753, 7, 5, 0, 0, 1753, 1754, 7, 6, 0, 0, 1754, 1755, 7, 16, 0, 0, 1755, 154, 1, 0, 0, 0, 1756, 1757, 7, 7, 0, 0, 1757, 1758, 7, 21, 0, 0, 1758, 1759, 7, 11, 0, 0, 1759, 1760, 7, 11, 0, 0, 1760, 1761, 7, 9, 0, 0, 1761, 1762, 7, 12, 0, 0, 1762, 1763, 7, 8, 0, 0, 1763, 1764, 5, 95, 0, 0, 1764, 1765, 7, 15, 0, 0, 1765, 1766, 7, 2, 0, 0, 1766, 1767, 7, 8, 0, 0, 1767, 1768, 7, 9, 0, 0, 1768, 156, 1, 0, 0, 0, 1769, 1770, 7, 7, 0, 0, 1770, 1771, 7, 21, 0, 0, 1771, 1772, 7, 11, 0, 0, 1772, 1773, 7, 11, 0, 0, 1773, 1774, 7, 9, 0, 0, 1774, 1775, 7, 12, 0, 0, 1775, 1776, 7, 8, 0, 0, 1776, 1777, 5, 95, 0, 0, 1777, 1778, 7, 15, 0, 0, 1778, 1779, 7, 9, 0, 0, 1779, 1780, 7, 23, 0, 0, 1780, 1781, 7, 2, 0, 0, 1781, 1782, 7, 21, 0, 0, 1782, 1783, 7, 5, 0, 0, 1783, 1784, 7, 8, 0, 0, 1784, 1785, 5, 95, 0, 0, 1785, 1786, 7, 8, 0, 0, 1786, 1787, 7, 11, 0, 0, 1787, 1788, 7, 2, 0, 0, 1788, 1789, 7, 12, 0, 0, 1789, 1790, 7, 4, 0, 0, 1790, 1791, 7, 23, 0, 0, 1791, 1792, 7, 6, 0, 0, 1792, 1793, 7, 11, 0, 0, 1793, 1794, 7, 17, 0, 0, 1794, 1795, 5, 95, 0, 0, 1795, 1796, 7, 16, 0, 0, 1796, 1797, 7, 11, 0, 0, 1797, 1798, 7, 6, 0, 0, 1798, 1799, 7, 21, 0, 0, 1799, 1800, 7, 24, 0, 0, 1800, 158, 1, 0, 0, 0, 1801, 1802, 7, 7, 0, 0, 1802, 1803, 7, 21, 0, 0, 1803, 1804, 7, 11, 0, 0, 1804, 1805, 7, 11, 0, 0, 1805, 1806, 7, 9, 0, 0, 1806, 1807, 7, 12, 0, 0, 1807, 1808, 7, 8, 0, 0, 1808, 1809, 5, 95, 0, 0, 1809, 1810, 7, 24, 0, 0, 1810, 1811, 7, 2, 0, 0, 1811, 1812, 7, 8, 0, 0, 1812, 1813, 7, 22, 0, 0, 1813, 160, 1, 0, 0, 0, 1814, 1815, 7, 7, 0, 0, 1815, 1816, 7, 21, 0, 0, 1816, 1817, 7, 11, 0, 0, 1817, 1818, 7, 11, 0, 0, 1818, 1819, 7, 9, 0, 0, 1819, 1820, 7, 12, 0, 0, 1820, 1821, 7, 8, 0, 0, 1821, 1822, 5, 95, 0, 0, 1822, 1823, 7, 11, 0, 0, 1823, 1824, 7, 6, 0, 0, 1824, 1825, 7, 5, 0, 0, 1825, 1826, 7, 9, 0, 0, 1826, 162, 1, 0, 0, 0, 1827, 1828, 7, 7, 0, 0, 1828, 1829, 7, 21, 0, 0, 1829, 1830, 7, 11, 0, 0, 1830, 1831, 7, 11, 0, 0, 1831, 1832, 7, 9, 0, 0, 1832, 1833, 7, 12, 0, 0, 1833, 1834, 7, 8, 0, 0, 1834, 1835, 5, 95, 0, 0, 1835, 1836, 7, 11, 0, 0, 1836, 1837, 7, 6, 0, 0, 1837, 1838, 7, 10, 0, 0, 1838, 164, 1, 0, 0, 0, 1839, 1840, 7, 7, 0, 0, 1840, 1841, 7, 21, 0, 0, 1841, 1842, 7, 11, 0, 0, 1842, 1843, 7, 11, 0, 0, 1843, 1844, 7, 9, 0, 0, 1844, 1845, 7, 12, 0, 0, 1845, 1846, 7, 8, 0, 0, 1846, 1847, 5, 95, 0, 0, 1847, 1848, 7, 4, 0, 0, 1848, 1849, 7, 7, 0, 0, 1849, 1850, 7, 22, 0, 0, 1850, 1851, 7, 9, 0, 0, 1851, 1852, 7, 17, 0, 0, 1852, 1853, 7, 2, 0, 0, 1853, 166, 1, 0, 0, 0, 1854, 1855, 7, 7, 0, 0, 1855, 1856, 7, 21, 0, 0, 1856, 1857, 7, 11, 0, 0, 1857, 1858, 7, 11, 0, 0, 1858, 1859, 7, 9, 0, 0, 1859, 1860, 7, 12, 0, 0, 1860, 1861, 7, 8, 0, 0, 1861, 1862, 5, 95, 0, 0, 1862, 1863, 7, 8, 0, 0, 1863, 1864, 7, 19, 0, 0, 1864, 1865, 7, 17, 0, 0, 1865, 1866, 7, 9, 0, 0, 1866, 168, 1, 0, 0, 0, 1867, 1868, 7, 7, 0, 0, 1868, 1869, 7, 21, 0, 0, 1869, 1870, 7, 11, 0, 0, 1870, 1871, 7, 11, 0, 0, 1871, 1872, 7, 9, 0, 0, 1872, 1873, 7, 12, 0, 0, 1873, 1874, 7, 8, 0, 0, 1874, 1875, 5, 95, 0, 0, 1875, 1876, 7, 8, 0, 0, 1876, 1877, 7, 19, 0, 0, 1877, 1878, 7, 17, 0, 0, 1878, 1879, 7, 9, 0, 0, 1879, 1880, 7, 4, 0, 0, 1880, 1881, 7, 8, 0, 0, 1881, 1882, 7, 2, 0, 0, 1882, 1883, 7, 17, 0, 0, 1883, 1884, 7, 24, 0, 0, 1884, 170, 1, 0, 0, 0, 1885, 1886, 7, 7, 0, 0, 1886, 1887, 7, 21, 0, 0, 1887, 1888, 7, 11, 0, 0, 1888, 1889, 7, 11, 0, 0, 1889, 1890, 7, 9, 0, 0, 1890, 1891, 7, 12, 0, 0, 1891, 1892, 7, 8, 0, 0, 1892, 1893, 5, 95, 0, 0, 1893, 1894, 7, 8, 0, 0, 1894, 1895, 7, 11, 0, 0, 1895, 1896, 7, 2, 0, 0, 1896, 1897, 7, 12, 0, 0, 1897, 1898, 7, 4, 0, 0, 1898, 1899, 7, 23, 0, 0, 1899, 1900, 7, 6, 0, 0, 1900, 1901, 7, 11, 0, 0, 1901, 1902, 7, 17, 0, 0, 1902, 1903, 5, 95, 0, 0, 1903, 1904, 7, 16, 0, 0, 1904, 1905, 7, 11, 0, 0, 1905, 1906, 7, 6, 0, 0, 1906, 1907, 7, 21, 0, 0, 1907, 1908, 7, 24, 0, 0, 1908, 1909, 5, 95, 0, 0, 1909, 1910, 7, 23, 0, 0, 1910, 1911, 7, 6, 0, 0, 1911, 1912, 7, 11, 0, 0, 1912, 1913, 5, 95, 0, 0, 1913, 1914, 7, 8, 0, 0, 1914, 1915, 7, 13, 0, 0, 1915, 1916, 7, 24, 0, 0, 1916, 1917, 7, 9, 0, 0, 1917, 172, 1, 0, 0, 0, 1918, 1919, 7, 7, 0, 0, 1919, 1920, 7, 21, 0, 0, 1920, 1921, 7, 11, 0, 0, 1921, 1922, 7, 11, 0, 0, 1922, 1923, 7, 9, 0, 0, 1923, 1924, 7, 12, 0, 0, 1924, 1925, 7, 8, 0, 0, 1925, 1926, 5, 95, 0, 0, 1926, 1927, 7, 21, 0, 0, 1927, 1928, 7, 4, 0, 0, 1928, 1929, 7, 9, 0, 0, 1929, 1930, 7, 11, 0, 0, 1930, 174, 1, 0, 0, 0, 1931, 1932, 7, 7, 0, 0, 1932, 1933, 7, 21, 0, 0, 1933, 1934, 7, 11, 0, 0, 1934, 1935, 7, 4, 0, 0, 1935, 1936, 7, 6, 0, 0, 1936, 1937, 7, 11, 0, 0, 1937, 176, 1, 0, 0, 0, 1938, 1939, 7, 7, 0, 0, 1939, 1940, 7, 13, 0, 0, 1940, 1941, 7, 7, 0, 0, 1941, 1942, 7, 5, 0, 0, 1942, 1943, 7, 9, 0, 0, 1943, 178, 1, 0, 0, 0, 1944, 1945, 7, 15, 0, 0, 1945, 1946, 7, 2, 0, 0, 1946, 1947, 7, 8, 0, 0, 1947, 1948, 7, 2, 0, 0, 1948, 1949, 7, 3, 0, 0, 1949, 1950, 7, 2, 0, 0, 1950, 1951, 7, 4, 0, 0, 1951, 1952, 7, 9, 0, 0, 1952, 1953, 7, 4, 0, 0, 1953, 180, 1, 0, 0, 0, 1954, 1955, 7, 15, 0, 0, 1955, 1956, 7, 2, 0, 0, 1956, 1957, 7, 8, 0, 0, 1957, 1958, 7, 9, 0, 0, 1958, 182, 1, 0, 0, 0, 1959, 1960, 7, 15, 0, 0, 1960, 1961, 7, 2, 0, 0, 1961, 1962, 7, 8, 0, 0, 1962, 1963, 7, 9, 0, 0, 1963, 1964, 7, 8, 0, 0, 1964, 1965, 7, 19, 0, 0, 1965, 1966, 7, 17, 0, 0, 1966, 1967, 7, 9, 0, 0, 1967, 184, 1, 0, 0, 0, 1968, 1969, 7, 15, 0, 0, 1969, 1970, 7, 2, 0, 0, 1970, 1971, 7, 8, 0, 0, 1971, 1972, 7, 9, 0, 0, 1972, 1973, 7, 8, 0, 0, 1973, 1974, 7, 19, 0, 0, 1974, 1975, 7, 17, 0, 0, 1975, 1976, 7, 9, 0, 0, 1976, 1977, 5, 95, 0, 0, 1977, 1978, 7, 15, 0, 0, 1978, 1979, 7, 19, 0, 0, 1979, 1980, 7, 23, 0, 0, 1980, 1981, 7, 23, 0, 0, 1981, 186, 1, 0, 0, 0, 1982, 1983, 7, 15, 0, 0, 1983, 1984, 7, 2, 0, 0, 1984, 1985, 7, 8, 0, 0, 1985, 1986, 7, 9, 0, 0, 1986, 1987, 7, 8, 0, 0, 1987, 1988, 7, 19, 0, 0, 1988, 1989, 7, 17, 0, 0, 1989, 1990, 7, 9, 0, 0, 1990, 1991, 5, 95, 0, 0, 1991, 1992, 7, 8, 0, 0, 1992, 1993, 7, 11, 0, 0, 1993, 1994, 7, 21, 0, 0, 1994, 1995, 7, 12, 0, 0, 1995, 1996, 7, 7, 0, 0, 1996, 188, 1, 0, 0, 0, 1997, 1998, 7, 15, 0, 0, 1998, 1999, 7, 2, 0, 0, 1999, 2000, 7, 8, 0, 0, 2000, 2001, 7, 9, 0, 0, 2001, 2002, 5, 95, 0, 0, 2002, 2003, 7, 15, 0, 0, 2003, 2004, 7, 19, 0, 0, 2004, 2005, 7, 23, 0, 0, 2005, 2006, 7, 23, 0, 0, 2006, 190, 1, 0, 0, 0, 2007, 2008, 7, 15, 0, 0, 2008, 2009, 7, 2, 0, 0, 2009, 2010, 7, 8, 0, 0, 2010, 2011, 7, 9, 0, 0, 2011, 2012, 5, 95, 0, 0, 2012, 2013, 7, 8, 0, 0, 2013, 2014, 7, 11, 0, 0, 2014, 2015, 7, 21, 0, 0, 2015, 2016, 7, 12, 0, 0, 2016, 2017, 7, 7, 0, 0, 2017, 192, 1, 0, 0, 0, 2018, 2019, 7, 15, 0, 0, 2019, 2020, 7, 2, 0, 0, 2020, 2021, 7, 13, 0, 0, 2021, 194, 1, 0, 0, 0, 2022, 2023, 7, 15, 0, 0, 2023, 2024, 7, 2, 0, 0, 2024, 2025, 7, 13, 0, 0, 2025, 2026, 7, 6, 0, 0, 2026, 2027, 7, 23, 0, 0, 2027, 2028, 7, 10, 0, 0, 2028, 2029, 7, 9, 0, 0, 2029, 2030, 7, 9, 0, 0, 2030, 2031, 7, 25, 0, 0, 2031, 196, 1, 0, 0, 0, 2032, 2033, 7, 15, 0, 0, 2033, 2034, 7, 2, 0, 0, 2034, 2035, 7, 13, 0, 0, 2035, 2036, 7, 6, 0, 0, 2036, 2037, 7, 23, 0, 0, 2037, 2038, 7, 13, 0, 0, 2038, 2039, 7, 9, 0, 0, 2039, 2040, 7, 2, 0, 0, 2040, 2041, 7, 11, 0, 0, 2041, 198, 1, 0, 0, 0, 2042, 2043, 7, 15, 0, 0, 2043, 2044, 7, 9, 0, 0, 2044, 2045, 7, 2, 0, 0, 2045, 2046, 7, 5, 0, 0, 2046, 2047, 7, 5, 0, 0, 2047, 2048, 7, 6, 0, 0, 2048, 2049, 7, 7, 0, 0, 2049, 2050, 7, 2, 0, 0, 2050, 2051, 7, 8, 0, 0, 2051, 2052, 7, 9, 0, 0, 2052, 200, 1, 0, 0, 0, 2053, 2054, 7, 15, 0, 0, 2054, 2055, 7, 9, 0, 0, 2055, 2056, 7, 7, 0, 0, 2056, 202, 1, 0, 0, 0, 2057, 2058, 7, 15, 0, 0, 2058, 2059, 7, 9, 0, 0, 2059, 2060, 7, 7, 0, 0, 2060, 2061, 7, 19, 0, 0, 2061, 2062, 7, 17, 0, 0, 2062, 2063, 7, 2, 0, 0, 2063, 2064, 7, 5, 0, 0, 2064, 204, 1, 0, 0, 0, 2065, 2066, 7, 15, 0, 0, 2066, 2067, 7, 9, 0, 0, 2067, 2068, 7, 7, 0, 0, 2068, 2069, 7, 5, 0, 0, 2069, 2070, 7, 2, 0, 0, 2070, 2071, 7, 11, 0, 0, 2071, 2072, 7, 9, 0, 0, 2072, 206, 1, 0, 0, 0, 2073, 2074, 7, 15, 0, 0, 2074, 2075, 7, 9, 0, 0, 2075, 2076, 7, 23, 0, 0, 2076, 2077, 7, 2, 0, 0, 2077, 2078, 7, 21, 0, 0, 2078, 2079, 7, 5, 0, 0, 2079, 2080, 7, 8, 0, 0, 2080, 208, 1, 0, 0, 0, 2081, 2082, 7, 15, 0, 0, 2082, 2083, 7, 9, 0, 0, 2083, 2084, 7, 23, 0, 0, 2084, 2085, 7, 19, 0, 0, 2085, 2086, 7, 12, 0, 0, 2086, 2087, 7, 9, 0, 0, 2087, 210, 1, 0, 0, 0, 2088, 2089, 7, 15, 0, 0, 2089, 2090, 7, 9, 0, 0, 2090, 2091, 7, 5, 0, 0, 2091, 2092, 7, 9, 0, 0, 2092, 2093, 7, 8, 0, 0, 2093, 2094, 7, 9, 0, 0, 2094, 212, 1, 0, 0, 0, 2095, 2096, 7, 15, 0, 0, 2096, 2097, 7, 9, 0, 0, 2097, 2098, 7, 12, 0, 0, 2098, 2099, 7, 4, 0, 0, 2099, 2100, 7, 9, 0, 0, 2100, 2101, 5, 95, 0, 0, 2101, 2102, 7, 11, 0, 0, 2102, 2103, 7, 2, 0, 0, 2103, 2104, 7, 12, 0, 0, 2104, 2105, 7, 25, 0, 0, 2105, 214, 1, 0, 0, 0, 2106, 2107, 7, 15, 0, 0, 2107, 2108, 7, 9, 0, 0, 2108, 2109, 7, 11, 0, 0, 2109, 2110, 7, 9, 0, 0, 2110, 2111, 7, 23, 0, 0, 2111, 216, 1, 0, 0, 0, 2112, 2113, 7, 15, 0, 0, 2113, 2114, 7, 9, 0, 0, 2114, 2115, 7, 4, 0, 0, 2115, 2116, 7, 7, 0, 0, 2116, 2117, 7, 11, 0, 0, 2117, 2118, 7, 19, 0, 0, 2118, 2119, 7, 3, 0, 0, 2119, 2120, 7, 9, 0, 0, 2120, 218, 1, 0, 0, 0, 2121, 2122, 7, 15, 0, 0, 2122, 2123, 7, 9, 0, 0, 2123, 2124, 7, 8, 0, 0, 2124, 2125, 7, 9, 0, 0, 2125, 2126, 7, 11, 0, 0, 2126, 2127, 7, 17, 0, 0, 2127, 2128, 7, 19, 0, 0, 2128, 2129, 7, 12, 0, 0, 2129, 2130, 7, 19, 0, 0, 2130, 2131, 7, 4, 0, 0, 2131, 2132, 7, 8, 0, 0, 2132, 2133, 7, 19, 0, 0, 2133, 2134, 7, 7, 0, 0, 2134, 220, 1, 0, 0, 0, 2135, 2136, 7, 15, 0, 0, 2136, 2137, 7, 19, 0, 0, 2137, 2138, 7, 4, 0, 0, 2138, 2139, 7, 2, 0, 0, 2139, 2140, 7, 5, 0, 0, 2140, 2141, 7, 5, 0, 0, 2141, 2142, 7, 6, 0, 0, 2142, 2143, 7, 10, 0, 0, 2143, 222, 1, 0, 0, 0, 2144, 2145, 7, 15, 0, 0, 2145, 2146, 7, 19, 0, 0, 2146, 2147, 7, 4, 0, 0, 2147, 2148, 7, 7, 0, 0, 2148, 2149, 7, 6, 0, 0, 2149, 2150, 7, 12, 0, 0, 2150, 2151, 7, 12, 0, 0, 2151, 2152, 7, 9, 0, 0, 2152, 2153, 7, 7, 0, 0, 2153, 2154, 7, 8, 0, 0, 2154, 224, 1, 0, 0, 0, 2155, 2156, 7, 15, 0, 0, 2156, 2157, 7, 19, 0, 0, 2157, 2158, 7, 4, 0, 0, 2158, 2159, 7, 8, 0, 0, 2159, 2160, 7, 19, 0, 0, 2160, 2161, 7, 12, 0, 0, 2161, 2162, 7, 7, 0, 0, 2162, 2163, 7, 8, 0, 0, 2163, 226, 1, 0, 0, 0, 2164, 2165, 7, 15, 0, 0, 2165, 2166, 7, 6, 0, 0, 2166, 2167, 7, 8, 0, 0, 2167, 228, 1, 0, 0, 0, 2168, 2169, 7, 15, 0, 0, 2169, 2170, 7, 6, 0, 0, 2170, 2171, 7, 21, 0, 0, 2171, 2172, 7, 3, 0, 0, 2172, 2173, 7, 5, 0, 0, 2173, 2174, 7, 9, 0, 0, 2174, 230, 1, 0, 0, 0, 2175, 2176, 7, 15, 0, 0, 2176, 2177, 7, 11, 0, 0, 2177, 2178, 7, 6, 0, 0, 2178, 2179, 7, 24, 0, 0, 2179, 232, 1, 0, 0, 0, 2180, 2181, 7, 15, 0, 0, 2181, 2182, 7, 13, 0, 0, 2182, 2183, 7, 12, 0, 0, 2183, 2184, 7, 2, 0, 0, 2184, 2185, 7, 17, 0, 0, 2185, 2186, 7, 19, 0, 0, 2186, 2187, 7, 7, 0, 0, 2187, 234, 1, 0, 0, 0, 2188, 2189, 7, 9, 0, 0, 2189, 2190, 7, 2, 0, 0, 2190, 2191, 7, 7, 0, 0, 2191, 2192, 7, 22, 0, 0, 2192, 236, 1, 0, 0, 0, 2193, 2194, 7, 9, 0, 0, 2194, 2195, 7, 5, 0, 0, 2195, 2196, 7, 9, 0, 0, 2196, 2197, 7, 17, 0, 0, 2197, 2198, 7, 9, 0, 0, 2198, 2199, 7, 12, 0, 0, 2199, 2200, 7, 8, 0, 0, 2200, 238, 1, 0, 0, 0, 2201, 2202, 7, 9, 0, 0, 2202, 2203, 7, 5, 0, 0, 2203, 2204, 7, 4, 0, 0, 2204, 2205, 7, 9, 0, 0, 2205, 240, 1, 0, 0, 0, 2206, 2207, 7, 9, 0, 0, 2207, 2208, 7, 17, 0, 0, 2208, 2209, 7, 24, 0, 0, 2209, 2210, 7, 8, 0, 0, 2210, 2211, 7, 13, 0, 0, 2211, 242, 1, 0, 0, 0, 2212, 2213, 7, 9, 0, 0, 2213, 2214, 7, 12, 0, 0, 2214, 2215, 7, 15, 0, 0, 2215, 244, 1, 0, 0, 0, 2216, 2217, 7, 9, 0, 0, 2217, 2218, 7, 12, 0, 0, 2218, 2219, 7, 15, 0, 0, 2219, 2220, 5, 95, 0, 0, 2220, 2221, 7, 23, 0, 0, 2221, 2222, 7, 11, 0, 0, 2222, 2223, 7, 2, 0, 0, 2223, 2224, 7, 17, 0, 0, 2224, 2225, 7, 9, 0, 0, 2225, 246, 1, 0, 0, 0, 2226, 2227, 7, 9, 0, 0, 2227, 2228, 7, 12, 0, 0, 2228, 2229, 7, 15, 0, 0, 2229, 2230, 5, 95, 0, 0, 2230, 2231, 7, 24, 0, 0, 2231, 2232, 7, 2, 0, 0, 2232, 2233, 7, 11, 0, 0, 2233, 2234, 7, 8, 0, 0, 2234, 2235, 7, 19, 0, 0, 2235, 2236, 7, 8, 0, 0, 2236, 2237, 7, 19, 0, 0, 2237, 2238, 7, 6, 0, 0, 2238, 2239, 7, 12, 0, 0, 2239, 248, 1, 0, 0, 0, 2240, 2241, 7, 9, 0, 0, 2241, 2242, 7, 12, 0, 0, 2242, 2243, 7, 23, 0, 0, 2243, 2244, 7, 6, 0, 0, 2244, 2245, 7, 11, 0, 0, 2245, 2246, 7, 7, 0, 0, 2246, 2247, 7, 9, 0, 0, 2247, 2248, 7, 15, 0, 0, 2248, 250, 1, 0, 0, 0, 2249, 2250, 7, 9, 0, 0, 2250, 2251, 7, 26, 0, 0, 2251, 2252, 7, 21, 0, 0, 2252, 2253, 7, 2, 0, 0, 2253, 2254, 7, 5, 0, 0, 2254, 2255, 7, 4, 0, 0, 2255, 252, 1, 0, 0, 0, 2256, 2257, 7, 9, 0, 0, 2257, 2258, 7, 4, 0, 0, 2258, 2259, 7, 7, 0, 0, 2259, 2260, 7, 2, 0, 0, 2260, 2261, 7, 24, 0, 0, 2261, 2262, 7, 9, 0, 0, 2262, 254, 1, 0, 0, 0, 2263, 2264, 7, 9, 0, 0, 2264, 2265, 7, 4, 0, 0, 2265, 2266, 7, 8, 0, 0, 2266, 2267, 7, 19, 0, 0, 2267, 2268, 7, 17, 0, 0, 2268, 2269, 7, 2, 0, 0, 2269, 2270, 7, 8, 0, 0, 2270, 2271, 7, 9, 0, 0, 2271, 2272, 7, 15, 0, 0, 2272, 2273, 5, 95, 0, 0, 2273, 2274, 7, 7, 0, 0, 2274, 2275, 7, 6, 0, 0, 2275, 2276, 7, 4, 0, 0, 2276, 2277, 7, 8, 0, 0, 2277, 256, 1, 0, 0, 0, 2278, 2279, 7, 9, 0, 0, 2279, 2280, 7, 20, 0, 0, 2280, 2281, 7, 9, 0, 0, 2281, 2282, 7, 11, 0, 0, 2282, 2283, 7, 13, 0, 0, 2283, 258, 1, 0, 0, 0, 2284, 2285, 7, 9, 0, 0, 2285, 2286, 7, 18, 0, 0, 2286, 2287, 7, 7, 0, 0, 2287, 2288, 7, 9, 0, 0, 2288, 2289, 7, 24, 0, 0, 2289, 2290, 7, 8, 0, 0, 2290, 260, 1, 0, 0, 0, 2291, 2292, 7, 9, 0, 0, 2292, 2293, 7, 18, 0, 0, 2293, 2294, 7, 9, 0, 0, 2294, 2295, 7, 7, 0, 0, 2295, 262, 1, 0, 0, 0, 2296, 2297, 7, 9, 0, 0, 2297, 2298, 7, 18, 0, 0, 2298, 2299, 7, 9, 0, 0, 2299, 2300, 7, 7, 0, 0, 2300, 2301, 7, 21, 0, 0, 2301, 2302, 7, 8, 0, 0, 2302, 2303, 7, 9, 0, 0, 2303, 264, 1, 0, 0, 0, 2304, 2305, 7, 9, 0, 0, 2305, 2306, 7, 18, 0, 0, 2306, 2307, 7, 19, 0, 0, 2307, 2308, 7, 4, 0, 0, 2308, 2309, 7, 8, 0, 0, 2309, 2310, 7, 4, 0, 0, 2310, 266, 1, 0, 0, 0, 2311, 2312, 7, 9, 0, 0, 2312, 2313, 7, 18, 0, 0, 2313, 2314, 7, 24, 0, 0, 2314, 268, 1, 0, 0, 0, 2315, 2316, 7, 9, 0, 0, 2316, 2317, 7, 18, 0, 0, 2317, 2318, 7, 24, 0, 0, 2318, 2319, 7, 5, 0, 0, 2319, 2320, 7, 2, 0, 0, 2320, 2321, 7, 19, 0, 0, 2321, 2322, 7, 12, 0, 0, 2322, 270, 1, 0, 0, 0, 2323, 2324, 7, 9, 0, 0, 2324, 2325, 7, 18, 0, 0, 2325, 2326, 7, 8, 0, 0, 2326, 2327, 7, 9, 0, 0, 2327, 2328, 7, 12, 0, 0, 2328, 2329, 7, 15, 0, 0, 2329, 272, 1, 0, 0, 0, 2330, 2331, 7, 9, 0, 0, 2331, 2332, 7, 18, 0, 0, 2332, 2333, 7, 8, 0, 0, 2333, 2334, 7, 9, 0, 0, 2334, 2335, 7, 12, 0, 0, 2335, 2336, 7, 15, 0, 0, 2336, 2337, 7, 9, 0, 0, 2337, 2338, 7, 15, 0, 0, 2338, 274, 1, 0, 0, 0, 2339, 2340, 7, 9, 0, 0, 2340, 2341, 7, 18, 0, 0, 2341, 2342, 7, 8, 0, 0, 2342, 2343, 7, 9, 0, 0, 2343, 2344, 7, 11, 0, 0, 2344, 2345, 7, 12, 0, 0, 2345, 2346, 7, 2, 0, 0, 2346, 2347, 7, 5, 0, 0, 2347, 276, 1, 0, 0, 0, 2348, 2349, 7, 9, 0, 0, 2349, 2350, 7, 18, 0, 0, 2350, 2351, 7, 8, 0, 0, 2351, 2352, 7, 11, 0, 0, 2352, 2353, 7, 2, 0, 0, 2353, 2354, 7, 7, 0, 0, 2354, 2355, 7, 8, 0, 0, 2355, 278, 1, 0, 0, 0, 2356, 2357, 7, 23, 0, 0, 2357, 2358, 7, 2, 0, 0, 2358, 2359, 7, 5, 0, 0, 2359, 2360, 7, 4, 0, 0, 2360, 2361, 7, 9, 0, 0, 2361, 280, 1, 0, 0, 0, 2362, 2363, 7, 23, 0, 0, 2363, 2364, 7, 9, 0, 0, 2364, 2365, 7, 8, 0, 0, 2365, 2366, 7, 7, 0, 0, 2366, 2367, 7, 22, 0, 0, 2367, 282, 1, 0, 0, 0, 2368, 2369, 7, 23, 0, 0, 2369, 2370, 7, 19, 0, 0, 2370, 2371, 7, 5, 0, 0, 2371, 2372, 7, 8, 0, 0, 2372, 2373, 7, 9, 0, 0, 2373, 2374, 7, 11, 0, 0, 2374, 284, 1, 0, 0, 0, 2375, 2376, 7, 23, 0, 0, 2376, 2377, 7, 19, 0, 0, 2377, 2378, 7, 11, 0, 0, 2378, 2379, 7, 4, 0, 0, 2379, 2380, 7, 8, 0, 0, 2380, 2381, 5, 95, 0, 0, 2381, 2382, 7, 20, 0, 0, 2382, 2383, 7, 2, 0, 0, 2383, 2384, 7, 5, 0, 0, 2384, 2385, 7, 21, 0, 0, 2385, 2386, 7, 9, 0, 0, 2386, 286, 1, 0, 0, 0, 2387, 2388, 7, 23, 0, 0, 2388, 2389, 7, 5, 0, 0, 2389, 2390, 7, 6, 0, 0, 2390, 2391, 7, 2, 0, 0, 2391, 2392, 7, 8, 0, 0, 2392, 288, 1, 0, 0, 0, 2393, 2394, 7, 23, 0, 0, 2394, 2395, 7, 5, 0, 0, 2395, 2396, 7, 6, 0, 0, 2396, 2397, 7, 6, 0, 0, 2397, 2398, 7, 11, 0, 0, 2398, 290, 1, 0, 0, 0, 2399, 2400, 7, 23, 0, 0, 2400, 2401, 7, 6, 0, 0, 2401, 2402, 7, 11, 0, 0, 2402, 292, 1, 0, 0, 0, 2403, 2404, 7, 23, 0, 0, 2404, 2405, 7, 6, 0, 0, 2405, 2406, 7, 11, 0, 0, 2406, 2407, 7, 9, 0, 0, 2407, 2408, 7, 19, 0, 0, 2408, 2409, 7, 16, 0, 0, 2409, 2410, 7, 12, 0, 0, 2410, 294, 1, 0, 0, 0, 2411, 2412, 7, 23, 0, 0, 2412, 2413, 7, 11, 0, 0, 2413, 2414, 7, 2, 0, 0, 2414, 2415, 7, 17, 0, 0, 2415, 2416, 7, 9, 0, 0, 2416, 2417, 5, 95, 0, 0, 2417, 2418, 7, 11, 0, 0, 2418, 2419, 7, 6, 0, 0, 2419, 2420, 7, 10, 0, 0, 2420, 296, 1, 0, 0, 0, 2421, 2422, 7, 23, 0, 0, 2422, 2423, 7, 11, 0, 0, 2423, 2424, 7, 9, 0, 0, 2424, 2425, 7, 9, 0, 0, 2425, 298, 1, 0, 0, 0, 2426, 2427, 7, 23, 0, 0, 2427, 2428, 7, 11, 0, 0, 2428, 2429, 7, 19, 0, 0, 2429, 2430, 7, 15, 0, 0, 2430, 2431, 7, 2, 0, 0, 2431, 2432, 7, 13, 0, 0, 2432, 300, 1, 0, 0, 0, 2433, 2434, 7, 23, 0, 0, 2434, 2435, 7, 11, 0, 0, 2435, 2436, 7, 6, 0, 0, 2436, 2437, 7, 17, 0, 0, 2437, 302, 1, 0, 0, 0, 2438, 2439, 7, 23, 0, 0, 2439, 2440, 7, 21, 0, 0, 2440, 2441, 7, 5, 0, 0, 2441, 2442, 7, 5, 0, 0, 2442, 304, 1, 0, 0, 0, 2443, 2444, 7, 23, 0, 0, 2444, 2445, 7, 21, 0, 0, 2445, 2446, 7, 12, 0, 0, 2446, 2447, 7, 7, 0, 0, 2447, 2448, 7, 8, 0, 0, 2448, 2449, 7, 19, 0, 0, 2449, 2450, 7, 6, 0, 0, 2450, 2451, 7, 12, 0, 0, 2451, 306, 1, 0, 0, 0, 2452, 2453, 7, 23, 0, 0, 2453, 2454, 7, 21, 0, 0, 2454, 2455, 7, 12, 0, 0, 2455, 2456, 7, 7, 0, 0, 2456, 2457, 7, 8, 0, 0, 2457, 2458, 7, 19, 0, 0, 2458, 2459, 7, 6, 0, 0, 2459, 2460, 7, 12, 0, 0, 2460, 2461, 7, 4, 0, 0, 2461, 308, 1, 0, 0, 0, 2462, 2463, 7, 23, 0, 0, 2463, 2464, 7, 21, 0, 0, 2464, 2465, 7, 4, 0, 0, 2465, 2466, 7, 19, 0, 0, 2466, 2467, 7, 6, 0, 0, 2467, 2468, 7, 12, 0, 0, 2468, 310, 1, 0, 0, 0, 2469, 2470, 7, 16, 0, 0, 2470, 2471, 7, 9, 0, 0, 2471, 2472, 7, 8, 0, 0, 2472, 312, 1, 0, 0, 0, 2473, 2474, 7, 16, 0, 0, 2474, 2475, 7, 5, 0, 0, 2475, 2476, 7, 6, 0, 0, 2476, 2477, 7, 3, 0, 0, 2477, 2478, 7, 2, 0, 0, 2478, 2479, 7, 5, 0, 0, 2479, 314, 1, 0, 0, 0, 2480, 2481, 7, 16, 0, 0, 2481, 2482, 7, 11, 0, 0, 2482, 2483, 7, 2, 0, 0, 2483, 2484, 7, 12, 0, 0, 2484, 2485, 7, 8, 0, 0, 2485, 316, 1, 0, 0, 0, 2486, 2487, 7, 16, 0, 0, 2487, 2488, 7, 11, 0, 0, 2488, 2489, 7, 6, 0, 0, 2489, 2490, 7, 21, 0, 0, 2490, 2491, 7, 24, 0, 0, 2491, 318, 1, 0, 0, 0, 2492, 2493, 7, 16, 0, 0, 2493, 2494, 7, 11, 0, 0, 2494, 2495, 7, 6, 0, 0, 2495, 2496, 7, 21, 0, 0, 2496, 2497, 7, 24, 0, 0, 2497, 2498, 7, 19, 0, 0, 2498, 2499, 7, 12, 0, 0, 2499, 2500, 7, 16, 0, 0, 2500, 320, 1, 0, 0, 0, 2501, 2502, 7, 16, 0, 0, 2502, 2503, 7, 11, 0, 0, 2503, 2504, 7, 6, 0, 0, 2504, 2505, 7, 21, 0, 0, 2505, 2506, 7, 24, 0, 0, 2506, 2507, 7, 4, 0, 0, 2507, 322, 1, 0, 0, 0, 2508, 2509, 7, 16, 0, 0, 2509, 2510, 7, 11, 0, 0, 2510, 2511, 7, 6, 0, 0, 2511, 2512, 7, 21, 0, 0, 2512, 2513, 7, 24, 0, 0, 2513, 2514, 5, 95, 0, 0, 2514, 2515, 7, 7, 0, 0, 2515, 2516, 7, 6, 0, 0, 2516, 2517, 7, 12, 0, 0, 2517, 2518, 7, 7, 0, 0, 2518, 2519, 7, 2, 0, 0, 2519, 2520, 7, 8, 0, 0, 2520, 324, 1, 0, 0, 0, 2521, 2522, 7, 22, 0, 0, 2522, 2523, 7, 2, 0, 0, 2523, 2524, 7, 20, 0, 0, 2524, 2525, 7, 19, 0, 0, 2525, 2526, 7, 12, 0, 0, 2526, 2527, 7, 16, 0, 0, 2527, 326, 1, 0, 0, 0, 2528, 2529, 7, 22, 0, 0, 2529, 2530, 7, 6, 0, 0, 2530, 2531, 7, 5, 0, 0, 2531, 2532, 7, 15, 0, 0, 2532, 328, 1, 0, 0, 0, 2533, 2534, 7, 22, 0, 0, 2534, 2535, 7, 6, 0, 0, 2535, 2536, 7, 21, 0, 0, 2536, 2537, 7, 11, 0, 0, 2537, 330, 1, 0, 0, 0, 2538, 2539, 7, 19, 0, 0, 2539, 2540, 7, 15, 0, 0, 2540, 2541, 7, 9, 0, 0, 2541, 2542, 7, 12, 0, 0, 2542, 2543, 7, 8, 0, 0, 2543, 2544, 7, 19, 0, 0, 2544, 2545, 7, 8, 0, 0, 2545, 2546, 7, 13, 0, 0, 2546, 332, 1, 0, 0, 0, 2547, 2548, 7, 19, 0, 0, 2548, 2549, 7, 23, 0, 0, 2549, 334, 1, 0, 0, 0, 2550, 2551, 7, 19, 0, 0, 2551, 2552, 7, 5, 0, 0, 2552, 2553, 7, 19, 0, 0, 2553, 2554, 7, 25, 0, 0, 2554, 2555, 7, 9, 0, 0, 2555, 336, 1, 0, 0, 0, 2556, 2557, 7, 19, 0, 0, 2557, 2558, 7, 17, 0, 0, 2558, 2559, 7, 24, 0, 0, 2559, 2560, 7, 6, 0, 0, 2560, 2561, 7, 11, 0, 0, 2561, 2562, 7, 8, 0, 0, 2562, 338, 1, 0, 0, 0, 2563, 2564, 7, 19, 0, 0, 2564, 2565, 7, 12, 0, 0, 2565, 340, 1, 0, 0, 0, 2566, 2567, 7, 19, 0, 0, 2567, 2568, 7, 12, 0, 0, 2568, 2569, 7, 7, 0, 0, 2569, 2570, 7, 5, 0, 0, 2570, 2571, 7, 21, 0, 0, 2571, 2572, 7, 15, 0, 0, 2572, 2573, 7, 9, 0, 0, 2573, 342, 1, 0, 0, 0, 2574, 2575, 7, 19, 0, 0, 2575, 2576, 7, 12, 0, 0, 2576, 2577, 7, 15, 0, 0, 2577, 2578, 7, 19, 0, 0, 2578, 2579, 7, 7, 0, 0, 2579, 2580, 7, 2, 0, 0, 2580, 2581, 7, 8, 0, 0, 2581, 2582, 7, 6, 0, 0, 2582, 2583, 7, 11, 0, 0, 2583, 344, 1, 0, 0, 0, 2584, 2585, 7, 19, 0, 0, 2585, 2586, 7, 12, 0, 0, 2586, 2587, 7, 19, 0, 0, 2587, 2588, 7, 8, 0, 0, 2588, 2589, 7, 19, 0, 0, 2589, 2590, 7, 2, 0, 0, 2590, 2591, 7, 5, 0, 0, 2591, 346, 1, 0, 0, 0, 2592, 2593, 7, 19, 0, 0, 2593, 2594, 7, 12, 0, 0, 2594, 2595, 7, 12, 0, 0, 2595, 2596, 7, 9, 0, 0, 2596, 2597, 7, 11, 0, 0, 2597, 348, 1, 0, 0, 0, 2598, 2599, 7, 19, 0, 0, 2599, 2600, 7, 12, 0, 0, 2600, 2601, 7, 6, 0, 0, 2601, 2602, 7, 21, 0, 0, 2602, 2603, 7, 8, 0, 0, 2603, 350, 1, 0, 0, 0, 2604, 2605, 7, 19, 0, 0, 2605, 2606, 7, 12, 0, 0, 2606, 2607, 7, 4, 0, 0, 2607, 2608, 7, 9, 0, 0, 2608, 2609, 7, 12, 0, 0, 2609, 2610, 7, 4, 0, 0, 2610, 2611, 7, 19, 0, 0, 2611, 2612, 7, 8, 0, 0, 2612, 2613, 7, 19, 0, 0, 2613, 2614, 7, 20, 0, 0, 2614, 2615, 7, 9, 0, 0, 2615, 352, 1, 0, 0, 0, 2616, 2617, 7, 19, 0, 0, 2617, 2618, 7, 12, 0, 0, 2618, 2619, 7, 4, 0, 0, 2619, 2620, 7, 9, 0, 0, 2620, 2621, 7, 11, 0, 0, 2621, 2622, 7, 8, 0, 0, 2622, 354, 1, 0, 0, 0, 2623, 2624, 7, 19, 0, 0, 2624, 2625, 7, 12, 0, 0, 2625, 2626, 7, 8, 0, 0, 2626, 356, 1, 0, 0, 0, 2627, 2628, 7, 19, 0, 0, 2628, 2629, 7, 12, 0, 0, 2629, 2630, 7, 8, 0, 0, 2630, 2631, 7, 9, 0, 0, 2631, 2632, 7, 16, 0, 0, 2632, 2633, 7, 9, 0, 0, 2633, 2634, 7, 11, 0, 0, 2634, 358, 1, 0, 0, 0, 2635, 2636, 7, 19, 0, 0, 2636, 2637, 7, 12, 0, 0, 2637, 2638, 7, 8, 0, 0, 2638, 2639, 7, 9, 0, 0, 2639, 2640, 7, 11, 0, 0, 2640, 2641, 7, 4, 0, 0, 2641, 2642, 7, 9, 0, 0, 2642, 2643, 7, 7, 0, 0, 2643, 2644, 7, 8, 0, 0, 2644, 360, 1, 0, 0, 0, 2645, 2646, 7, 19, 0, 0, 2646, 2647, 7, 12, 0, 0, 2647, 2648, 7, 8, 0, 0, 2648, 2649, 7, 9, 0, 0, 2649, 2650, 7, 11, 0, 0, 2650, 2651, 7, 4, 0, 0, 2651, 2652, 7, 9, 0, 0, 2652, 2653, 7, 7, 0, 0, 2653, 2654, 7, 8, 0, 0, 2654, 2655, 7, 19, 0, 0, 2655, 2656, 7, 6, 0, 0, 2656, 2657, 7, 12, 0, 0, 2657, 362, 1, 0, 0, 0, 2658, 2659, 7, 19, 0, 0, 2659, 2660, 7, 12, 0, 0, 2660, 2661, 7, 8, 0, 0, 2661, 2662, 7, 9, 0, 0, 2662, 2663, 7, 11, 0, 0, 2663, 2664, 7, 20, 0, 0, 2664, 2665, 7, 2, 0, 0, 2665, 2666, 7, 5, 0, 0, 2666, 364, 1, 0, 0, 0, 2667, 2668, 7, 19, 0, 0, 2668, 2669, 7, 12, 0, 0, 2669, 2670, 7, 8, 0, 0, 2670, 2671, 7, 6, 0, 0, 2671, 366, 1, 0, 0, 0, 2672, 2673, 7, 19, 0, 0, 2673, 2674, 7, 4, 0, 0, 2674, 368, 1, 0, 0, 0, 2675, 2676, 7, 27, 0, 0, 2676, 2677, 7, 6, 0, 0, 2677, 2678, 7, 19, 0, 0, 2678, 2679, 7, 12, 0, 0, 2679, 370, 1, 0, 0, 0, 2680, 2681, 7, 27, 0, 0, 2681, 2682, 7, 4, 0, 0, 2682, 2683, 7, 6, 0, 0, 2683, 2684, 7, 12, 0, 0, 2684, 372, 1, 0, 0, 0, 2685, 2686, 7, 27, 0, 0, 2686, 2687, 7, 4, 0, 0, 2687, 2688, 7, 6, 0, 0, 2688, 2689, 7, 12, 0, 0, 2689, 2690, 5, 95, 0, 0, 2690, 2691, 7, 2, 0, 0, 2691, 2692, 7, 11, 0, 0, 2692, 2693, 7, 11, 0, 0, 2693, 2694, 7, 2, 0, 0, 2694, 2695, 7, 13, 0, 0, 2695, 374, 1, 0, 0, 0, 2696, 2697, 7, 27, 0, 0, 2697, 2698, 7, 4, 0, 0, 2698, 2699, 7, 6, 0, 0, 2699, 2700, 7, 12, 0, 0, 2700, 2701, 5, 95, 0, 0, 2701, 2702, 7, 2, 0, 0, 2702, 2703, 7, 11, 0, 0, 2703, 2704, 7, 11, 0, 0, 2704, 2705, 7, 2, 0, 0, 2705, 2706, 7, 13, 0, 0, 2706, 2707, 7, 2, 0, 0, 2707, 2708, 7, 16, 0, 0, 2708, 2709, 7, 16, 0, 0, 2709, 376, 1, 0, 0, 0, 2710, 2711, 7, 27, 0, 0, 2711, 2712, 7, 4, 0, 0, 2712, 2713, 7, 6, 0, 0, 2713, 2714, 7, 12, 0, 0, 2714, 2715, 5, 95, 0, 0, 2715, 2716, 7, 9, 0, 0, 2716, 2717, 7, 18, 0, 0, 2717, 2718, 7, 9, 0, 0, 2718, 2719, 7, 7, 0, 0, 2719, 2720, 7, 21, 0, 0, 2720, 2721, 7, 8, 0, 0, 2721, 2722, 7, 19, 0, 0, 2722, 2723, 7, 6, 0, 0, 2723, 2724, 7, 12, 0, 0, 2724, 2725, 5, 95, 0, 0, 2725, 2726, 7, 24, 0, 0, 2726, 2727, 7, 5, 0, 0, 2727, 2728, 7, 2, 0, 0, 2728, 2729, 7, 12, 0, 0, 2729, 378, 1, 0, 0, 0, 2730, 2731, 7, 27, 0, 0, 2731, 2732, 7, 4, 0, 0, 2732, 2733, 7, 6, 0, 0, 2733, 2734, 7, 12, 0, 0, 2734, 2735, 5, 95, 0, 0, 2735, 2736, 7, 9, 0, 0, 2736, 2737, 7, 18, 0, 0, 2737, 2738, 7, 19, 0, 0, 2738, 2739, 7, 4, 0, 0, 2739, 2740, 7, 8, 0, 0, 2740, 2741, 7, 4, 0, 0, 2741, 380, 1, 0, 0, 0, 2742, 2743, 7, 27, 0, 0, 2743, 2744, 7, 4, 0, 0, 2744, 2745, 7, 6, 0, 0, 2745, 2746, 7, 12, 0, 0, 2746, 2747, 5, 95, 0, 0, 2747, 2748, 7, 6, 0, 0, 2748, 2749, 7, 3, 0, 0, 2749, 2750, 7, 27, 0, 0, 2750, 2751, 7, 9, 0, 0, 2751, 2752, 7, 7, 0, 0, 2752, 2753, 7, 8, 0, 0, 2753, 382, 1, 0, 0, 0, 2754, 2755, 7, 27, 0, 0, 2755, 2756, 7, 4, 0, 0, 2756, 2757, 7, 6, 0, 0, 2757, 2758, 7, 12, 0, 0, 2758, 2759, 5, 95, 0, 0, 2759, 2760, 7, 6, 0, 0, 2760, 2761, 7, 3, 0, 0, 2761, 2762, 7, 27, 0, 0, 2762, 2763, 7, 9, 0, 0, 2763, 2764, 7, 7, 0, 0, 2764, 2765, 7, 8, 0, 0, 2765, 2766, 7, 2, 0, 0, 2766, 2767, 7, 16, 0, 0, 2767, 2768, 7, 16, 0, 0, 2768, 384, 1, 0, 0, 0, 2769, 2770, 7, 27, 0, 0, 2770, 2771, 7, 4, 0, 0, 2771, 2772, 7, 6, 0, 0, 2772, 2773, 7, 12, 0, 0, 2773, 2774, 5, 95, 0, 0, 2774, 2775, 7, 26, 0, 0, 2775, 2776, 7, 21, 0, 0, 2776, 2777, 7, 9, 0, 0, 2777, 2778, 7, 11, 0, 0, 2778, 2779, 7, 13, 0, 0, 2779, 386, 1, 0, 0, 0, 2780, 2781, 7, 27, 0, 0, 2781, 2782, 7, 4, 0, 0, 2782, 2783, 7, 6, 0, 0, 2783, 2784, 7, 12, 0, 0, 2784, 2785, 5, 95, 0, 0, 2785, 2786, 7, 20, 0, 0, 2786, 2787, 7, 2, 0, 0, 2787, 2788, 7, 5, 0, 0, 2788, 2789, 7, 21, 0, 0, 2789, 2790, 7, 9, 0, 0, 2790, 388, 1, 0, 0, 0, 2791, 2792, 7, 5, 0, 0, 2792, 2793, 7, 2, 0, 0, 2793, 2794, 7, 16, 0, 0, 2794, 390, 1, 0, 0, 0, 2795, 2796, 7, 5, 0, 0, 2796, 2797, 7, 2, 0, 0, 2797, 2798, 7, 12, 0, 0, 2798, 2799, 7, 16, 0, 0, 2799, 2800, 7, 21, 0, 0, 2800, 2801, 7, 2, 0, 0, 2801, 2802, 7, 16, 0, 0, 2802, 2803, 7, 9, 0, 0, 2803, 392, 1, 0, 0, 0, 2804, 2805, 7, 5, 0, 0, 2805, 2806, 7, 2, 0, 0, 2806, 2807, 7, 11, 0, 0, 2807, 2808, 7, 16, 0, 0, 2808, 2809, 7, 9, 0, 0, 2809, 394, 1, 0, 0, 0, 2810, 2811, 7, 5, 0, 0, 2811, 2812, 7, 2, 0, 0, 2812, 2813, 7, 4, 0, 0, 2813, 2814, 7, 8, 0, 0, 2814, 2815, 5, 95, 0, 0, 2815, 2816, 7, 20, 0, 0, 2816, 2817, 7, 2, 0, 0, 2817, 2818, 7, 5, 0, 0, 2818, 2819, 7, 21, 0, 0, 2819, 2820, 7, 9, 0, 0, 2820, 396, 1, 0, 0, 0, 2821, 2822, 7, 5, 0, 0, 2822, 2823, 7, 2, 0, 0, 2823, 2824, 7, 8, 0, 0, 2824, 2825, 7, 9, 0, 0, 2825, 2826, 7, 11, 0, 0, 2826, 2827, 7, 2, 0, 0, 2827, 2828, 7, 5, 0, 0, 2828, 398, 1, 0, 0, 0, 2829, 2830, 7, 5, 0, 0, 2830, 2831, 7, 9, 0, 0, 2831, 2832, 7, 2, 0, 0, 2832, 2833, 7, 15, 0, 0, 2833, 400, 1, 0, 0, 0, 2834, 2835, 7, 5, 0, 0, 2835, 2836, 7, 9, 0, 0, 2836, 2837, 7, 2, 0, 0, 2837, 2838, 7, 15, 0, 0, 2838, 2839, 7, 19, 0, 0, 2839, 2840, 7, 12, 0, 0, 2840, 2841, 7, 16, 0, 0, 2841, 402, 1, 0, 0, 0, 2842, 2843, 7, 5, 0, 0, 2843, 2844, 7, 9, 0, 0, 2844, 2845, 7, 23, 0, 0, 2845, 2846, 7, 8, 0, 0, 2846, 404, 1, 0, 0, 0, 2847, 2848, 7, 5, 0, 0, 2848, 2849, 7, 19, 0, 0, 2849, 2850, 7, 25, 0, 0, 2850, 2851, 7, 9, 0, 0, 2851, 406, 1, 0, 0, 0, 2852, 2853, 7, 5, 0, 0, 2853, 2854, 7, 19, 0, 0, 2854, 2855, 7, 25, 0, 0, 2855, 2856, 7, 9, 0, 0, 2856, 2857, 5, 95, 0, 0, 2857, 2858, 7, 11, 0, 0, 2858, 2859, 7, 9, 0, 0, 2859, 2860, 7, 16, 0, 0, 2860, 2861, 7, 9, 0, 0, 2861, 2862, 7, 18, 0, 0, 2862, 408, 1, 0, 0, 0, 2863, 2864, 7, 5, 0, 0, 2864, 2865, 7, 19, 0, 0, 2865, 2866, 7, 17, 0, 0, 2866, 2867, 7, 19, 0, 0, 2867, 2868, 7, 8, 0, 0, 2868, 410, 1, 0, 0, 0, 2869, 2870, 7, 5, 0, 0, 2870, 2871, 7, 12, 0, 0, 2871, 412, 1, 0, 0, 0, 2872, 2873, 7, 5, 0, 0, 2873, 2874, 7, 6, 0, 0, 2874, 2875, 7, 7, 0, 0, 2875, 2876, 7, 2, 0, 0, 2876, 2877, 7, 5, 0, 0, 2877, 414, 1, 0, 0, 0, 2878, 2879, 7, 5, 0, 0, 2879, 2880, 7, 6, 0, 0, 2880, 2881, 7, 7, 0, 0, 2881, 2882, 7, 2, 0, 0, 2882, 2883, 7, 5, 0, 0, 2883, 2884, 7, 8, 0, 0, 2884, 2885, 7, 19, 0, 0, 2885, 2886, 7, 17, 0, 0, 2886, 2887, 7, 9, 0, 0, 2887, 416, 1, 0, 0, 0, 2888, 2889, 7, 5, 0, 0, 2889, 2890, 7, 6, 0, 0, 2890, 2891, 7, 7, 0, 0, 2891, 2892, 7, 2, 0, 0, 2892, 2893, 7, 5, 0, 0, 2893, 2894, 7, 8, 0, 0, 2894, 2895, 7, 19, 0, 0, 2895, 2896, 7, 17, 0, 0, 2896, 2897, 7, 9, 0, 0, 2897, 2898, 7, 4, 0, 0, 2898, 2899, 7, 8, 0, 0, 2899, 2900, 7, 2, 0, 0, 2900, 2901, 7, 17, 0, 0, 2901, 2902, 7, 24, 0, 0, 2902, 418, 1, 0, 0, 0, 2903, 2904, 7, 5, 0, 0, 2904, 2905, 7, 6, 0, 0, 2905, 2906, 7, 10, 0, 0, 2906, 2907, 7, 9, 0, 0, 2907, 2908, 7, 11, 0, 0, 2908, 420, 1, 0, 0, 0, 2909, 2910, 7, 17, 0, 0, 2910, 2911, 7, 2, 0, 0, 2911, 2912, 7, 8, 0, 0, 2912, 2913, 7, 7, 0, 0, 2913, 2914, 7, 22, 0, 0, 2914, 422, 1, 0, 0, 0, 2915, 2916, 7, 17, 0, 0, 2916, 2917, 7, 2, 0, 0, 2917, 2918, 7, 8, 0, 0, 2918, 2919, 7, 7, 0, 0, 2919, 2920, 7, 22, 0, 0, 2920, 2921, 7, 9, 0, 0, 2921, 2922, 7, 4, 0, 0, 2922, 424, 1, 0, 0, 0, 2923, 2924, 7, 17, 0, 0, 2924, 2925, 7, 2, 0, 0, 2925, 2926, 7, 8, 0, 0, 2926, 2927, 7, 7, 0, 0, 2927, 2928, 7, 22, 0, 0, 2928, 2929, 5, 95, 0, 0, 2929, 2930, 7, 12, 0, 0, 2930, 2931, 7, 21, 0, 0, 2931, 2932, 7, 17, 0, 0, 2932, 2933, 7, 3, 0, 0, 2933, 2934, 7, 9, 0, 0, 2934, 2935, 7, 11, 0, 0, 2935, 426, 1, 0, 0, 0, 2936, 2937, 7, 17, 0, 0, 2937, 2938, 7, 2, 0, 0, 2938, 2939, 7, 8, 0, 0, 2939, 2940, 7, 7, 0, 0, 2940, 2941, 7, 22, 0, 0, 2941, 2942, 5, 95, 0, 0, 2942, 2943, 7, 11, 0, 0, 2943, 2944, 7, 9, 0, 0, 2944, 2945, 7, 7, 0, 0, 2945, 2946, 7, 6, 0, 0, 2946, 2947, 7, 16, 0, 0, 2947, 2948, 7, 12, 0, 0, 2948, 2949, 7, 19, 0, 0, 2949, 2950, 7, 14, 0, 0, 2950, 2951, 7, 9, 0, 0, 2951, 428, 1, 0, 0, 0, 2952, 2953, 7, 17, 0, 0, 2953, 2954, 7, 2, 0, 0, 2954, 2955, 7, 18, 0, 0, 2955, 430, 1, 0, 0, 0, 2956, 2957, 7, 17, 0, 0, 2957, 2958, 7, 9, 0, 0, 2958, 2959, 7, 2, 0, 0, 2959, 2960, 7, 4, 0, 0, 2960, 2961, 7, 21, 0, 0, 2961, 2962, 7, 11, 0, 0, 2962, 2963, 7, 9, 0, 0, 2963, 2964, 7, 4, 0, 0, 2964, 432, 1, 0, 0, 0, 2965, 2966, 7, 17, 0, 0, 2966, 2967, 7, 9, 0, 0, 2967, 2968, 7, 17, 0, 0, 2968, 2969, 7, 3, 0, 0, 2969, 2970, 7, 9, 0, 0, 2970, 2971, 7, 11, 0, 0, 2971, 434, 1, 0, 0, 0, 2972, 2973, 7, 17, 0, 0, 2973, 2974, 7, 9, 0, 0, 2974, 2975, 7, 11, 0, 0, 2975, 2976, 7, 16, 0, 0, 2976, 2977, 7, 9, 0, 0, 2977, 436, 1, 0, 0, 0, 2978, 2979, 7, 17, 0, 0, 2979, 2980, 7, 9, 0, 0, 2980, 2981, 7, 8, 0, 0, 2981, 2982, 7, 2, 0, 0, 2982, 2983, 7, 15, 0, 0, 2983, 2984, 7, 2, 0, 0, 2984, 2985, 7, 8, 0, 0, 2985, 2986, 7, 2, 0, 0, 2986, 438, 1, 0, 0, 0, 2987, 2988, 7, 17, 0, 0, 2988, 2989, 7, 9, 0, 0, 2989, 2990, 7, 8, 0, 0, 2990, 2991, 7, 22, 0, 0, 2991, 2992, 7, 6, 0, 0, 2992, 2993, 7, 15, 0, 0, 2993, 440, 1, 0, 0, 0, 2994, 2995, 7, 17, 0, 0, 2995, 2996, 7, 19, 0, 0, 2996, 2997, 7, 12, 0, 0, 2997, 442, 1, 0, 0, 0, 2998, 2999, 7, 17, 0, 0, 2999, 3000, 7, 19, 0, 0, 3000, 3001, 7, 12, 0, 0, 3001, 3002, 7, 21, 0, 0, 3002, 3003, 7, 4, 0, 0, 3003, 444, 1, 0, 0, 0, 3004, 3005, 7, 17, 0, 0, 3005, 3006, 7, 19, 0, 0, 3006, 3007, 7, 12, 0, 0, 3007, 3008, 7, 21, 0, 0, 3008, 3009, 7, 8, 0, 0, 3009, 3010, 7, 9, 0, 0, 3010, 446, 1, 0, 0, 0, 3011, 3012, 7, 17, 0, 0, 3012, 3013, 7, 6, 0, 0, 3013, 3014, 7, 15, 0, 0, 3014, 448, 1, 0, 0, 0, 3015, 3016, 7, 17, 0, 0, 3016, 3017, 7, 6, 0, 0, 3017, 3018, 7, 15, 0, 0, 3018, 3019, 7, 19, 0, 0, 3019, 3020, 7, 23, 0, 0, 3020, 3021, 7, 19, 0, 0, 3021, 3022, 7, 9, 0, 0, 3022, 3023, 7, 4, 0, 0, 3023, 450, 1, 0, 0, 0, 3024, 3025, 7, 17, 0, 0, 3025, 3026, 7, 6, 0, 0, 3026, 3027, 7, 15, 0, 0, 3027, 3028, 7, 19, 0, 0, 3028, 3029, 7, 23, 0, 0, 3029, 3030, 7, 13, 0, 0, 3030, 452, 1, 0, 0, 0, 3031, 3032, 7, 17, 0, 0, 3032, 3033, 7, 6, 0, 0, 3033, 3034, 7, 15, 0, 0, 3034, 3035, 7, 21, 0, 0, 3035, 3036, 7, 5, 0, 0, 3036, 3037, 7, 9, 0, 0, 3037, 454, 1, 0, 0, 0, 3038, 3039, 7, 17, 0, 0, 3039, 3040, 7, 6, 0, 0, 3040, 3041, 7, 15, 0, 0, 3041, 3042, 7, 21, 0, 0, 3042, 3043, 7, 5, 0, 0, 3043, 3044, 7, 9, 0, 0, 3044, 3045, 7, 4, 0, 0, 3045, 456, 1, 0, 0, 0, 3046, 3047, 7, 17, 0, 0, 3047, 3048, 7, 6, 0, 0, 3048, 3049, 7, 12, 0, 0, 3049, 3050, 7, 15, 0, 0, 3050, 3051, 7, 2, 0, 0, 3051, 3052, 7, 13, 0, 0, 3052, 458, 1, 0, 0, 0, 3053, 3054, 7, 17, 0, 0, 3054, 3055, 7, 6, 0, 0, 3055, 3056, 7, 12, 0, 0, 3056, 3057, 7, 8, 0, 0, 3057, 3058, 7, 22, 0, 0, 3058, 460, 1, 0, 0, 0, 3059, 3060, 7, 17, 0, 0, 3060, 3061, 7, 6, 0, 0, 3061, 3062, 7, 11, 0, 0, 3062, 3063, 7, 9, 0, 0, 3063, 462, 1, 0, 0, 0, 3064, 3065, 7, 17, 0, 0, 3065, 3066, 7, 21, 0, 0, 3066, 3067, 7, 5, 0, 0, 3067, 3068, 7, 8, 0, 0, 3068, 3069, 7, 19, 0, 0, 3069, 3070, 7, 4, 0, 0, 3070, 3071, 7, 9, 0, 0, 3071, 3072, 7, 8, 0, 0, 3072, 464, 1, 0, 0, 0, 3073, 3074, 7, 12, 0, 0, 3074, 3075, 7, 2, 0, 0, 3075, 3076, 7, 8, 0, 0, 3076, 3077, 7, 19, 0, 0, 3077, 3078, 7, 6, 0, 0, 3078, 3079, 7, 12, 0, 0, 3079, 3080, 7, 2, 0, 0, 3080, 3081, 7, 5, 0, 0, 3081, 466, 1, 0, 0, 0, 3082, 3083, 7, 12, 0, 0, 3083, 3084, 7, 2, 0, 0, 3084, 3085, 7, 8, 0, 0, 3085, 3086, 7, 21, 0, 0, 3086, 3087, 7, 11, 0, 0, 3087, 3088, 7, 2, 0, 0, 3088, 3089, 7, 5, 0, 0, 3089, 468, 1, 0, 0, 0, 3090, 3091, 7, 12, 0, 0, 3091, 3092, 7, 7, 0, 0, 3092, 3093, 7, 22, 0, 0, 3093, 3094, 7, 2, 0, 0, 3094, 3095, 7, 11, 0, 0, 3095, 470, 1, 0, 0, 0, 3096, 3097, 7, 12, 0, 0, 3097, 3098, 7, 7, 0, 0, 3098, 3099, 7, 5, 0, 0, 3099, 3100, 7, 6, 0, 0, 3100, 3101, 7, 3, 0, 0, 3101, 472, 1, 0, 0, 0, 3102, 3103, 7, 12, 0, 0, 3103, 3104, 7, 9, 0, 0, 3104, 3105, 7, 10, 0, 0, 3105, 474, 1, 0, 0, 0, 3106, 3107, 7, 12, 0, 0, 3107, 3108, 7, 9, 0, 0, 3108, 3109, 7, 18, 0, 0, 3109, 3110, 7, 8, 0, 0, 3110, 476, 1, 0, 0, 0, 3111, 3112, 7, 12, 0, 0, 3112, 3113, 7, 6, 0, 0, 3113, 478, 1, 0, 0, 0, 3114, 3115, 7, 12, 0, 0, 3115, 3116, 7, 6, 0, 0, 3116, 3117, 7, 12, 0, 0, 3117, 3118, 7, 9, 0, 0, 3118, 480, 1, 0, 0, 0, 3119, 3120, 7, 12, 0, 0, 3120, 3121, 7, 6, 0, 0, 3121, 3122, 7, 11, 0, 0, 3122, 3123, 7, 17, 0, 0, 3123, 3124, 7, 2, 0, 0, 3124, 3125, 7, 5, 0, 0, 3125, 3126, 7, 19, 0, 0, 3126, 3127, 7, 14, 0, 0, 3127, 3128, 7, 9, 0, 0, 3128, 482, 1, 0, 0, 0, 3129, 3130, 7, 12, 0, 0, 3130, 3131, 7, 6, 0, 0, 3131, 3132, 7, 8, 0, 0, 3132, 484, 1, 0, 0, 0, 3133, 3134, 7, 12, 0, 0, 3134, 3135, 7, 8, 0, 0, 3135, 3136, 7, 22, 0, 0, 3136, 3137, 5, 95, 0, 0, 3137, 3138, 7, 20, 0, 0, 3138, 3139, 7, 2, 0, 0, 3139, 3140, 7, 5, 0, 0, 3140, 3141, 7, 21, 0, 0, 3141, 3142, 7, 9, 0, 0, 3142, 486, 1, 0, 0, 0, 3143, 3144, 7, 12, 0, 0, 3144, 3145, 7, 8, 0, 0, 3145, 3146, 7, 19, 0, 0, 3146, 3147, 7, 5, 0, 0, 3147, 3148, 7, 9, 0, 0, 3148, 488, 1, 0, 0, 0, 3149, 3150, 7, 12, 0, 0, 3150, 3151, 7, 21, 0, 0, 3151, 3152, 7, 5, 0, 0, 3152, 3153, 7, 5, 0, 0, 3153, 490, 1, 0, 0, 0, 3154, 3155, 7, 12, 0, 0, 3155, 3156, 7, 21, 0, 0, 3156, 3157, 7, 5, 0, 0, 3157, 3158, 7, 5, 0, 0, 3158, 3159, 7, 19, 0, 0, 3159, 3160, 7, 23, 0, 0, 3160, 492, 1, 0, 0, 0, 3161, 3162, 7, 12, 0, 0, 3162, 3163, 7, 21, 0, 0, 3163, 3164, 7, 17, 0, 0, 3164, 3165, 7, 9, 0, 0, 3165, 3166, 7, 11, 0, 0, 3166, 3167, 7, 19, 0, 0, 3167, 3168, 7, 7, 0, 0, 3168, 494, 1, 0, 0, 0, 3169, 3170, 7, 6, 0, 0, 3170, 3171, 7, 7, 0, 0, 3171, 3172, 7, 7, 0, 0, 3172, 3173, 7, 21, 0, 0, 3173, 3174, 7, 11, 0, 0, 3174, 3175, 7, 11, 0, 0, 3175, 3176, 7, 9, 0, 0, 3176, 3177, 7, 12, 0, 0, 3177, 3178, 7, 7, 0, 0, 3178, 3179, 7, 9, 0, 0, 3179, 3180, 7, 4, 0, 0, 3180, 3181, 5, 95, 0, 0, 3181, 3182, 7, 11, 0, 0, 3182, 3183, 7, 9, 0, 0, 3183, 3184, 7, 16, 0, 0, 3184, 3185, 7, 9, 0, 0, 3185, 3186, 7, 18, 0, 0, 3186, 496, 1, 0, 0, 0, 3187, 3188, 7, 6, 0, 0, 3188, 3189, 7, 7, 0, 0, 3189, 3190, 7, 8, 0, 0, 3190, 3191, 7, 9, 0, 0, 3191, 3192, 7, 8, 0, 0, 3192, 3193, 5, 95, 0, 0, 3193, 3194, 7, 5, 0, 0, 3194, 3195, 7, 9, 0, 0, 3195, 3196, 7, 12, 0, 0, 3196, 3197, 7, 16, 0, 0, 3197, 3198, 7, 8, 0, 0, 3198, 3199, 7, 22, 0, 0, 3199, 498, 1, 0, 0, 0, 3200, 3201, 7, 6, 0, 0, 3201, 3202, 7, 23, 0, 0, 3202, 500, 1, 0, 0, 0, 3203, 3204, 7, 6, 0, 0, 3204, 3205, 7, 23, 0, 0, 3205, 3206, 7, 23, 0, 0, 3206, 3207, 7, 4, 0, 0, 3207, 3208, 7, 9, 0, 0, 3208, 3209, 7, 8, 0, 0, 3209, 502, 1, 0, 0, 0, 3210, 3211, 7, 6, 0, 0, 3211, 3212, 7, 5, 0, 0, 3212, 3213, 7, 15, 0, 0, 3213, 504, 1, 0, 0, 0, 3214, 3215, 7, 6, 0, 0, 3215, 3216, 7, 17, 0, 0, 3216, 3217, 7, 19, 0, 0, 3217, 3218, 7, 8, 0, 0, 3218, 506, 1, 0, 0, 0, 3219, 3220, 7, 6, 0, 0, 3220, 3221, 7, 12, 0, 0, 3221, 508, 1, 0, 0, 0, 3222, 3223, 7, 6, 0, 0, 3223, 3224, 7, 12, 0, 0, 3224, 3225, 7, 9, 0, 0, 3225, 510, 1, 0, 0, 0, 3226, 3227, 7, 6, 0, 0, 3227, 3228, 7, 12, 0, 0, 3228, 3229, 7, 5, 0, 0, 3229, 3230, 7, 13, 0, 0, 3230, 512, 1, 0, 0, 0, 3231, 3232, 7, 6, 0, 0, 3232, 3233, 7, 24, 0, 0, 3233, 3234, 7, 9, 0, 0, 3234, 3235, 7, 12, 0, 0, 3235, 514, 1, 0, 0, 0, 3236, 3237, 7, 6, 0, 0, 3237, 3238, 7, 11, 0, 0, 3238, 516, 1, 0, 0, 0, 3239, 3240, 7, 6, 0, 0, 3240, 3241, 7, 11, 0, 0, 3241, 3242, 7, 15, 0, 0, 3242, 3243, 7, 9, 0, 0, 3243, 3244, 7, 11, 0, 0, 3244, 518, 1, 0, 0, 0, 3245, 3246, 7, 6, 0, 0, 3246, 3247, 7, 11, 0, 0, 3247, 3248, 7, 15, 0, 0, 3248, 3249, 7, 19, 0, 0, 3249, 3250, 7, 12, 0, 0, 3250, 3251, 7, 2, 0, 0, 3251, 3252, 7, 5, 0, 0, 3252, 520, 1, 0, 0, 0, 3253, 3254, 7, 6, 0, 0, 3254, 3255, 7, 21, 0, 0, 3255, 3256, 7, 8, 0, 0, 3256, 522, 1, 0, 0, 0, 3257, 3258, 7, 6, 0, 0, 3258, 3259, 7, 21, 0, 0, 3259, 3260, 7, 8, 0, 0, 3260, 3261, 7, 9, 0, 0, 3261, 3262, 7, 11, 0, 0, 3262, 524, 1, 0, 0, 0, 3263, 3264, 7, 6, 0, 0, 3264, 3265, 7, 20, 0, 0, 3265, 3266, 7, 9, 0, 0, 3266, 3267, 7, 11, 0, 0, 3267, 526, 1, 0, 0, 0, 3268, 3269, 7, 6, 0, 0, 3269, 3270, 7, 20, 0, 0, 3270, 3271, 7, 9, 0, 0, 3271, 3272, 7, 11, 0, 0, 3272, 3273, 7, 5, 0, 0, 3273, 3274, 7, 2, 0, 0, 3274, 3275, 7, 24, 0, 0, 3275, 3276, 7, 4, 0, 0, 3276, 528, 1, 0, 0, 0, 3277, 3278, 7, 6, 0, 0, 3278, 3279, 7, 20, 0, 0, 3279, 3280, 7, 9, 0, 0, 3280, 3281, 7, 11, 0, 0, 3281, 3282, 7, 5, 0, 0, 3282, 3283, 7, 2, 0, 0, 3283, 3284, 7, 13, 0, 0, 3284, 530, 1, 0, 0, 0, 3285, 3286, 7, 6, 0, 0, 3286, 3287, 7, 20, 0, 0, 3287, 3288, 7, 9, 0, 0, 3288, 3289, 7, 11, 0, 0, 3289, 3290, 7, 10, 0, 0, 3290, 3291, 7, 11, 0, 0, 3291, 3292, 7, 19, 0, 0, 3292, 3293, 7, 8, 0, 0, 3293, 3294, 7, 9, 0, 0, 3294, 532, 1, 0, 0, 0, 3295, 3296, 7, 6, 0, 0, 3296, 3297, 7, 20, 0, 0, 3297, 3298, 7, 9, 0, 0, 3298, 3299, 7, 11, 0, 0, 3299, 3300, 7, 10, 0, 0, 3300, 3301, 7, 11, 0, 0, 3301, 3302, 7, 19, 0, 0, 3302, 3303, 7, 8, 0, 0, 3303, 3304, 7, 19, 0, 0, 3304, 3305, 7, 12, 0, 0, 3305, 3306, 7, 16, 0, 0, 3306, 534, 1, 0, 0, 0, 3307, 3308, 7, 24, 0, 0, 3308, 3309, 7, 2, 0, 0, 3309, 3310, 7, 11, 0, 0, 3310, 3311, 7, 2, 0, 0, 3311, 3312, 7, 17, 0, 0, 3312, 3313, 7, 9, 0, 0, 3313, 3314, 7, 8, 0, 0, 3314, 3315, 7, 9, 0, 0, 3315, 3316, 7, 11, 0, 0, 3316, 536, 1, 0, 0, 0, 3317, 3318, 7, 24, 0, 0, 3318, 3319, 7, 2, 0, 0, 3319, 3320, 7, 11, 0, 0, 3320, 3321, 7, 8, 0, 0, 3321, 3322, 7, 19, 0, 0, 3322, 3323, 7, 8, 0, 0, 3323, 3324, 7, 19, 0, 0, 3324, 3325, 7, 6, 0, 0, 3325, 3326, 7, 12, 0, 0, 3326, 538, 1, 0, 0, 0, 3327, 3328, 7, 24, 0, 0, 3328, 3329, 7, 2, 0, 0, 3329, 3330, 7, 11, 0, 0, 3330, 3331, 7, 8, 0, 0, 3331, 3332, 7, 19, 0, 0, 3332, 3333, 7, 8, 0, 0, 3333, 3334, 7, 19, 0, 0, 3334, 3335, 7, 6, 0, 0, 3335, 3336, 7, 12, 0, 0, 3336, 3337, 7, 9, 0, 0, 3337, 3338, 7, 15, 0, 0, 3338, 540, 1, 0, 0, 0, 3339, 3340, 7, 24, 0, 0, 3340, 3341, 7, 2, 0, 0, 3341, 3342, 7, 11, 0, 0, 3342, 3343, 7, 8, 0, 0, 3343, 3344, 7, 19, 0, 0, 3344, 3345, 7, 8, 0, 0, 3345, 3346, 7, 19, 0, 0, 3346, 3347, 7, 6, 0, 0, 3347, 3348, 7, 12, 0, 0, 3348, 3349, 7, 4, 0, 0, 3349, 542, 1, 0, 0, 0, 3350, 3351, 7, 24, 0, 0, 3351, 3352, 7, 2, 0, 0, 3352, 3353, 7, 8, 0, 0, 3353, 3354, 7, 8, 0, 0, 3354, 3355, 7, 9, 0, 0, 3355, 3356, 7, 11, 0, 0, 3356, 3357, 7, 12, 0, 0, 3357, 544, 1, 0, 0, 0, 3358, 3359, 7, 24, 0, 0, 3359, 3360, 7, 9, 0, 0, 3360, 3361, 7, 11, 0, 0, 3361, 546, 1, 0, 0, 0, 3362, 3363, 7, 24, 0, 0, 3363, 3364, 7, 9, 0, 0, 3364, 3365, 7, 11, 0, 0, 3365, 3366, 7, 7, 0, 0, 3366, 3367, 7, 9, 0, 0, 3367, 3368, 7, 12, 0, 0, 3368, 3369, 7, 8, 0, 0, 3369, 548, 1, 0, 0, 0, 3370, 3371, 7, 24, 0, 0, 3371, 3372, 7, 9, 0, 0, 3372, 3373, 7, 11, 0, 0, 3373, 3374, 7, 7, 0, 0, 3374, 3375, 7, 9, 0, 0, 3375, 3376, 7, 12, 0, 0, 3376, 3377, 7, 8, 0, 0, 3377, 3378, 7, 19, 0, 0, 3378, 3379, 7, 5, 0, 0, 3379, 3380, 7, 9, 0, 0, 3380, 3381, 5, 95, 0, 0, 3381, 3382, 7, 7, 0, 0, 3382, 3383, 7, 6, 0, 0, 3383, 3384, 7, 12, 0, 0, 3384, 3385, 7, 8, 0, 0, 3385, 550, 1, 0, 0, 0, 3386, 3387, 7, 24, 0, 0, 3387, 3388, 7, 9, 0, 0, 3388, 3389, 7, 11, 0, 0, 3389, 3390, 7, 7, 0, 0, 3390, 3391, 7, 9, 0, 0, 3391, 3392, 7, 12, 0, 0, 3392, 3393, 7, 8, 0, 0, 3393, 3394, 7, 19, 0, 0, 3394, 3395, 7, 5, 0, 0, 3395, 3396, 7, 9, 0, 0, 3396, 3397, 5, 95, 0, 0, 3397, 3398, 7, 15, 0, 0, 3398, 3399, 7, 19, 0, 0, 3399, 3400, 7, 4, 0, 0, 3400, 3401, 7, 7, 0, 0, 3401, 552, 1, 0, 0, 0, 3402, 3403, 7, 24, 0, 0, 3403, 3404, 7, 9, 0, 0, 3404, 3405, 7, 11, 0, 0, 3405, 3406, 7, 7, 0, 0, 3406, 3407, 7, 9, 0, 0, 3407, 3408, 7, 12, 0, 0, 3408, 3409, 7, 8, 0, 0, 3409, 3410, 5, 95, 0, 0, 3410, 3411, 7, 11, 0, 0, 3411, 3412, 7, 2, 0, 0, 3412, 3413, 7, 12, 0, 0, 3413, 3414, 7, 25, 0, 0, 3414, 554, 1, 0, 0, 0, 3415, 3416, 7, 24, 0, 0, 3416, 3417, 7, 9, 0, 0, 3417, 3418, 7, 11, 0, 0, 3418, 3419, 7, 19, 0, 0, 3419, 3420, 7, 6, 0, 0, 3420, 3421, 7, 15, 0, 0, 3421, 556, 1, 0, 0, 0, 3422, 3423, 7, 24, 0, 0, 3423, 3424, 7, 9, 0, 0, 3424, 3425, 7, 11, 0, 0, 3425, 3426, 7, 17, 0, 0, 3426, 3427, 7, 21, 0, 0, 3427, 3428, 7, 8, 0, 0, 3428, 3429, 7, 9, 0, 0, 3429, 558, 1, 0, 0, 0, 3430, 3431, 7, 24, 0, 0, 3431, 3432, 7, 19, 0, 0, 3432, 3433, 7, 20, 0, 0, 3433, 3434, 7, 6, 0, 0, 3434, 3435, 7, 8, 0, 0, 3435, 560, 1, 0, 0, 0, 3436, 3437, 7, 24, 0, 0, 3437, 3438, 7, 6, 0, 0, 3438, 3439, 7, 11, 0, 0, 3439, 3440, 7, 8, 0, 0, 3440, 3441, 7, 19, 0, 0, 3441, 3442, 7, 6, 0, 0, 3442, 3443, 7, 12, 0, 0, 3443, 562, 1, 0, 0, 0, 3444, 3445, 7, 24, 0, 0, 3445, 3446, 7, 6, 0, 0, 3446, 3447, 7, 4, 0, 0, 3447, 3448, 7, 19, 0, 0, 3448, 3449, 7, 8, 0, 0, 3449, 3450, 7, 19, 0, 0, 3450, 3451, 7, 6, 0, 0, 3451, 3452, 7, 12, 0, 0, 3452, 564, 1, 0, 0, 0, 3453, 3454, 7, 24, 0, 0, 3454, 3455, 7, 6, 0, 0, 3455, 3456, 7, 4, 0, 0, 3456, 3457, 7, 19, 0, 0, 3457, 3458, 7, 8, 0, 0, 3458, 3459, 7, 19, 0, 0, 3459, 3460, 7, 6, 0, 0, 3460, 3461, 7, 12, 0, 0, 3461, 3462, 5, 95, 0, 0, 3462, 3463, 7, 11, 0, 0, 3463, 3464, 7, 9, 0, 0, 3464, 3465, 7, 16, 0, 0, 3465, 3466, 7, 9, 0, 0, 3466, 3467, 7, 18, 0, 0, 3467, 566, 1, 0, 0, 0, 3468, 3469, 7, 24, 0, 0, 3469, 3470, 7, 6, 0, 0, 3470, 3471, 7, 10, 0, 0, 3471, 3472, 7, 9, 0, 0, 3472, 3473, 7, 11, 0, 0, 3473, 568, 1, 0, 0, 0, 3474, 3475, 7, 24, 0, 0, 3475, 3476, 7, 11, 0, 0, 3476, 3477, 7, 9, 0, 0, 3477, 3478, 7, 7, 0, 0, 3478, 3479, 7, 9, 0, 0, 3479, 3480, 7, 15, 0, 0, 3480, 3481, 7, 9, 0, 0, 3481, 3482, 7, 4, 0, 0, 3482, 570, 1, 0, 0, 0, 3483, 3484, 7, 24, 0, 0, 3484, 3485, 7, 11, 0, 0, 3485, 3486, 7, 9, 0, 0, 3486, 3487, 7, 7, 0, 0, 3487, 3488, 7, 19, 0, 0, 3488, 3489, 7, 4, 0, 0, 3489, 3490, 7, 19, 0, 0, 3490, 3491, 7, 6, 0, 0, 3491, 3492, 7, 12, 0, 0, 3492, 572, 1, 0, 0, 0, 3493, 3494, 7, 24, 0, 0, 3494, 3495, 7, 11, 0, 0, 3495, 3496, 7, 9, 0, 0, 3496, 3497, 7, 24, 0, 0, 3497, 3498, 7, 2, 0, 0, 3498, 3499, 7, 11, 0, 0, 3499, 3500, 7, 9, 0, 0, 3500, 574, 1, 0, 0, 0, 3501, 3502, 7, 24, 0, 0, 3502, 3503, 7, 11, 0, 0, 3503, 3504, 7, 9, 0, 0, 3504, 3505, 7, 20, 0, 0, 3505, 576, 1, 0, 0, 0, 3506, 3507, 7, 24, 0, 0, 3507, 3508, 7, 11, 0, 0, 3508, 3509, 7, 19, 0, 0, 3509, 3510, 7, 17, 0, 0, 3510, 3511, 7, 2, 0, 0, 3511, 3512, 7, 11, 0, 0, 3512, 3513, 7, 13, 0, 0, 3513, 578, 1, 0, 0, 0, 3514, 3515, 7, 24, 0, 0, 3515, 3516, 7, 11, 0, 0, 3516, 3517, 7, 6, 0, 0, 3517, 3518, 7, 7, 0, 0, 3518, 3519, 7, 9, 0, 0, 3519, 3520, 7, 15, 0, 0, 3520, 3521, 7, 21, 0, 0, 3521, 3522, 7, 11, 0, 0, 3522, 3523, 7, 9, 0, 0, 3523, 580, 1, 0, 0, 0, 3524, 3525, 7, 26, 0, 0, 3525, 3526, 7, 21, 0, 0, 3526, 3527, 7, 2, 0, 0, 3527, 3528, 7, 5, 0, 0, 3528, 3529, 7, 19, 0, 0, 3529, 3530, 7, 23, 0, 0, 3530, 3531, 7, 13, 0, 0, 3531, 582, 1, 0, 0, 0, 3532, 3533, 7, 26, 0, 0, 3533, 3534, 7, 21, 0, 0, 3534, 3535, 7, 2, 0, 0, 3535, 3536, 7, 11, 0, 0, 3536, 3537, 7, 8, 0, 0, 3537, 3538, 7, 9, 0, 0, 3538, 3539, 7, 11, 0, 0, 3539, 3540, 7, 4, 0, 0, 3540, 584, 1, 0, 0, 0, 3541, 3542, 7, 11, 0, 0, 3542, 3543, 7, 2, 0, 0, 3543, 3544, 7, 12, 0, 0, 3544, 3545, 7, 16, 0, 0, 3545, 3546, 7, 9, 0, 0, 3546, 586, 1, 0, 0, 0, 3547, 3548, 7, 11, 0, 0, 3548, 3549, 7, 2, 0, 0, 3549, 3550, 7, 12, 0, 0, 3550, 3551, 7, 25, 0, 0, 3551, 588, 1, 0, 0, 0, 3552, 3553, 7, 11, 0, 0, 3553, 3554, 7, 2, 0, 0, 3554, 3555, 7, 10, 0, 0, 3555, 590, 1, 0, 0, 0, 3556, 3557, 7, 11, 0, 0, 3557, 3558, 7, 9, 0, 0, 3558, 3559, 7, 2, 0, 0, 3559, 3560, 7, 15, 0, 0, 3560, 3561, 7, 4, 0, 0, 3561, 592, 1, 0, 0, 0, 3562, 3563, 7, 11, 0, 0, 3563, 3564, 7, 9, 0, 0, 3564, 3565, 7, 2, 0, 0, 3565, 3566, 7, 5, 0, 0, 3566, 594, 1, 0, 0, 0, 3567, 3568, 7, 11, 0, 0, 3568, 3569, 7, 9, 0, 0, 3569, 3570, 7, 7, 0, 0, 3570, 3571, 7, 21, 0, 0, 3571, 3572, 7, 11, 0, 0, 3572, 3573, 7, 4, 0, 0, 3573, 3574, 7, 19, 0, 0, 3574, 3575, 7, 20, 0, 0, 3575, 3576, 7, 9, 0, 0, 3576, 596, 1, 0, 0, 0, 3577, 3578, 7, 11, 0, 0, 3578, 3579, 7, 9, 0, 0, 3579, 3580, 7, 23, 0, 0, 3580, 598, 1, 0, 0, 0, 3581, 3582, 7, 11, 0, 0, 3582, 3583, 7, 9, 0, 0, 3583, 3584, 7, 23, 0, 0, 3584, 3585, 7, 9, 0, 0, 3585, 3586, 7, 11, 0, 0, 3586, 3587, 7, 9, 0, 0, 3587, 3588, 7, 12, 0, 0, 3588, 3589, 7, 7, 0, 0, 3589, 3590, 7, 9, 0, 0, 3590, 3591, 7, 4, 0, 0, 3591, 600, 1, 0, 0, 0, 3592, 3593, 7, 11, 0, 0, 3593, 3594, 7, 9, 0, 0, 3594, 3595, 7, 23, 0, 0, 3595, 3596, 7, 9, 0, 0, 3596, 3597, 7, 11, 0, 0, 3597, 3598, 7, 9, 0, 0, 3598, 3599, 7, 12, 0, 0, 3599, 3600, 7, 7, 0, 0, 3600, 3601, 7, 19, 0, 0, 3601, 3602, 7, 12, 0, 0, 3602, 3603, 7, 16, 0, 0, 3603, 602, 1, 0, 0, 0, 3604, 3605, 7, 11, 0, 0, 3605, 3606, 7, 9, 0, 0, 3606, 3607, 7, 16, 0, 0, 3607, 3608, 7, 11, 0, 0, 3608, 3609, 5, 95, 0, 0, 3609, 3610, 7, 2, 0, 0, 3610, 3611, 7, 20, 0, 0, 3611, 3612, 7, 16, 0, 0, 3612, 3613, 7, 18, 0, 0, 3613, 604, 1, 0, 0, 0, 3614, 3615, 7, 11, 0, 0, 3615, 3616, 7, 9, 0, 0, 3616, 3617, 7, 16, 0, 0, 3617, 3618, 7, 11, 0, 0, 3618, 3619, 5, 95, 0, 0, 3619, 3620, 7, 2, 0, 0, 3620, 3621, 7, 20, 0, 0, 3621, 3622, 7, 16, 0, 0, 3622, 3623, 7, 13, 0, 0, 3623, 606, 1, 0, 0, 0, 3624, 3625, 7, 11, 0, 0, 3625, 3626, 7, 9, 0, 0, 3626, 3627, 7, 16, 0, 0, 3627, 3628, 7, 11, 0, 0, 3628, 3629, 5, 95, 0, 0, 3629, 3630, 7, 7, 0, 0, 3630, 3631, 7, 6, 0, 0, 3631, 3632, 7, 21, 0, 0, 3632, 3633, 7, 12, 0, 0, 3633, 3634, 7, 8, 0, 0, 3634, 608, 1, 0, 0, 0, 3635, 3636, 7, 11, 0, 0, 3636, 3637, 7, 9, 0, 0, 3637, 3638, 7, 16, 0, 0, 3638, 3639, 7, 11, 0, 0, 3639, 3640, 5, 95, 0, 0, 3640, 3641, 7, 19, 0, 0, 3641, 3642, 7, 12, 0, 0, 3642, 3643, 7, 8, 0, 0, 3643, 3644, 7, 9, 0, 0, 3644, 3645, 7, 11, 0, 0, 3645, 3646, 7, 7, 0, 0, 3646, 3647, 7, 9, 0, 0, 3647, 3648, 7, 24, 0, 0, 3648, 3649, 7, 8, 0, 0, 3649, 610, 1, 0, 0, 0, 3650, 3651, 7, 11, 0, 0, 3651, 3652, 7, 9, 0, 0, 3652, 3653, 7, 16, 0, 0, 3653, 3654, 7, 11, 0, 0, 3654, 3655, 5, 95, 0, 0, 3655, 3656, 7, 11, 0, 0, 3656, 3657, 5, 50, 0, 0, 3657, 612, 1, 0, 0, 0, 3658, 3659, 7, 11, 0, 0, 3659, 3660, 7, 9, 0, 0, 3660, 3661, 7, 16, 0, 0, 3661, 3662, 7, 11, 0, 0, 3662, 3663, 5, 95, 0, 0, 3663, 3664, 7, 4, 0, 0, 3664, 3665, 7, 5, 0, 0, 3665, 3666, 7, 6, 0, 0, 3666, 3667, 7, 24, 0, 0, 3667, 3668, 7, 9, 0, 0, 3668, 614, 1, 0, 0, 0, 3669, 3670, 7, 11, 0, 0, 3670, 3671, 7, 9, 0, 0, 3671, 3672, 7, 16, 0, 0, 3672, 3673, 7, 11, 0, 0, 3673, 3674, 5, 95, 0, 0, 3674, 3675, 7, 4, 0, 0, 3675, 3676, 7, 18, 0, 0, 3676, 3677, 7, 18, 0, 0, 3677, 616, 1, 0, 0, 0, 3678, 3679, 7, 11, 0, 0, 3679, 3680, 7, 9, 0, 0, 3680, 3681, 7, 16, 0, 0, 3681, 3682, 7, 11, 0, 0, 3682, 3683, 5, 95, 0, 0, 3683, 3684, 7, 4, 0, 0, 3684, 3685, 7, 18, 0, 0, 3685, 3686, 7, 13, 0, 0, 3686, 618, 1, 0, 0, 0, 3687, 3688, 7, 11, 0, 0, 3688, 3689, 7, 9, 0, 0, 3689, 3690, 7, 16, 0, 0, 3690, 3691, 7, 11, 0, 0, 3691, 3692, 5, 95, 0, 0, 3692, 3693, 7, 4, 0, 0, 3693, 3694, 7, 13, 0, 0, 3694, 3695, 7, 13, 0, 0, 3695, 620, 1, 0, 0, 0, 3696, 3697, 7, 11, 0, 0, 3697, 3698, 7, 9, 0, 0, 3698, 3699, 7, 5, 0, 0, 3699, 3700, 7, 9, 0, 0, 3700, 3701, 7, 2, 0, 0, 3701, 3702, 7, 4, 0, 0, 3702, 3703, 7, 9, 0, 0, 3703, 622, 1, 0, 0, 0, 3704, 3705, 7, 11, 0, 0, 3705, 3706, 7, 9, 0, 0, 3706, 3707, 7, 12, 0, 0, 3707, 3708, 7, 2, 0, 0, 3708, 3709, 7, 17, 0, 0, 3709, 3710, 7, 9, 0, 0, 3710, 624, 1, 0, 0, 0, 3711, 3712, 7, 11, 0, 0, 3712, 3713, 7, 9, 0, 0, 3713, 3714, 7, 4, 0, 0, 3714, 3715, 7, 9, 0, 0, 3715, 3716, 7, 8, 0, 0, 3716, 626, 1, 0, 0, 0, 3717, 3718, 7, 11, 0, 0, 3718, 3719, 7, 9, 0, 0, 3719, 3720, 7, 4, 0, 0, 3720, 3721, 7, 21, 0, 0, 3721, 3722, 7, 5, 0, 0, 3722, 3723, 7, 8, 0, 0, 3723, 628, 1, 0, 0, 0, 3724, 3725, 7, 11, 0, 0, 3725, 3726, 7, 9, 0, 0, 3726, 3727, 7, 8, 0, 0, 3727, 3728, 7, 21, 0, 0, 3728, 3729, 7, 11, 0, 0, 3729, 3730, 7, 12, 0, 0, 3730, 630, 1, 0, 0, 0, 3731, 3732, 7, 11, 0, 0, 3732, 3733, 7, 9, 0, 0, 3733, 3734, 7, 8, 0, 0, 3734, 3735, 7, 21, 0, 0, 3735, 3736, 7, 11, 0, 0, 3736, 3737, 7, 12, 0, 0, 3737, 3738, 7, 4, 0, 0, 3738, 632, 1, 0, 0, 0, 3739, 3740, 7, 11, 0, 0, 3740, 3741, 7, 9, 0, 0, 3741, 3742, 7, 20, 0, 0, 3742, 3743, 7, 6, 0, 0, 3743, 3744, 7, 25, 0, 0, 3744, 3745, 7, 9, 0, 0, 3745, 634, 1, 0, 0, 0, 3746, 3747, 7, 11, 0, 0, 3747, 3748, 7, 19, 0, 0, 3748, 3749, 7, 16, 0, 0, 3749, 3750, 7, 22, 0, 0, 3750, 3751, 7, 8, 0, 0, 3751, 636, 1, 0, 0, 0, 3752, 3753, 7, 11, 0, 0, 3753, 3754, 7, 5, 0, 0, 3754, 3755, 7, 19, 0, 0, 3755, 3756, 7, 25, 0, 0, 3756, 3757, 7, 9, 0, 0, 3757, 638, 1, 0, 0, 0, 3758, 3759, 7, 11, 0, 0, 3759, 3760, 7, 6, 0, 0, 3760, 3761, 7, 5, 0, 0, 3761, 3762, 7, 5, 0, 0, 3762, 3763, 7, 3, 0, 0, 3763, 3764, 7, 2, 0, 0, 3764, 3765, 7, 7, 0, 0, 3765, 3766, 7, 25, 0, 0, 3766, 640, 1, 0, 0, 0, 3767, 3768, 7, 11, 0, 0, 3768, 3769, 7, 6, 0, 0, 3769, 3770, 7, 5, 0, 0, 3770, 3771, 7, 5, 0, 0, 3771, 3772, 7, 21, 0, 0, 3772, 3773, 7, 24, 0, 0, 3773, 642, 1, 0, 0, 0, 3774, 3775, 7, 11, 0, 0, 3775, 3776, 7, 6, 0, 0, 3776, 3777, 7, 10, 0, 0, 3777, 644, 1, 0, 0, 0, 3778, 3779, 7, 11, 0, 0, 3779, 3780, 7, 6, 0, 0, 3780, 3781, 7, 10, 0, 0, 3781, 3782, 7, 4, 0, 0, 3782, 646, 1, 0, 0, 0, 3783, 3784, 7, 11, 0, 0, 3784, 3785, 7, 6, 0, 0, 3785, 3786, 7, 10, 0, 0, 3786, 3787, 5, 95, 0, 0, 3787, 3788, 7, 12, 0, 0, 3788, 3789, 7, 21, 0, 0, 3789, 3790, 7, 17, 0, 0, 3790, 3791, 7, 3, 0, 0, 3791, 3792, 7, 9, 0, 0, 3792, 3793, 7, 11, 0, 0, 3793, 648, 1, 0, 0, 0, 3794, 3795, 7, 11, 0, 0, 3795, 3796, 7, 21, 0, 0, 3796, 3797, 7, 12, 0, 0, 3797, 3798, 7, 12, 0, 0, 3798, 3799, 7, 19, 0, 0, 3799, 3800, 7, 12, 0, 0, 3800, 3801, 7, 16, 0, 0, 3801, 650, 1, 0, 0, 0, 3802, 3803, 7, 4, 0, 0, 3803, 3804, 7, 2, 0, 0, 3804, 3805, 7, 23, 0, 0, 3805, 3806, 7, 9, 0, 0, 3806, 3807, 5, 95, 0, 0, 3807, 3808, 7, 7, 0, 0, 3808, 3809, 7, 2, 0, 0, 3809, 3810, 7, 4, 0, 0, 3810, 3811, 7, 8, 0, 0, 3811, 652, 1, 0, 0, 0, 3812, 3813, 7, 4, 0, 0, 3813, 3814, 7, 2, 0, 0, 3814, 3815, 7, 23, 0, 0, 3815, 3816, 7, 9, 0, 0, 3816, 3817, 5, 95, 0, 0, 3817, 3818, 7, 6, 0, 0, 3818, 3819, 7, 23, 0, 0, 3819, 3820, 7, 23, 0, 0, 3820, 3821, 7, 4, 0, 0, 3821, 3822, 7, 9, 0, 0, 3822, 3823, 7, 8, 0, 0, 3823, 654, 1, 0, 0, 0, 3824, 3825, 7, 4, 0, 0, 3825, 3826, 7, 2, 0, 0, 3826, 3827, 7, 23, 0, 0, 3827, 3828, 7, 9, 0, 0, 3828, 3829, 5, 95, 0, 0, 3829, 3830, 7, 6, 0, 0, 3830, 3831, 7, 11, 0, 0, 3831, 3832, 7, 15, 0, 0, 3832, 3833, 7, 19, 0, 0, 3833, 3834, 7, 12, 0, 0, 3834, 3835, 7, 2, 0, 0, 3835, 3836, 7, 5, 0, 0, 3836, 656, 1, 0, 0, 0, 3837, 3838, 7, 4, 0, 0, 3838, 3839, 7, 2, 0, 0, 3839, 3840, 7, 8, 0, 0, 3840, 3841, 7, 21, 0, 0, 3841, 3842, 7, 11, 0, 0, 3842, 3843, 7, 15, 0, 0, 3843, 3844, 7, 2, 0, 0, 3844, 3845, 7, 13, 0, 0, 3845, 658, 1, 0, 0, 0, 3846, 3847, 7, 4, 0, 0, 3847, 3848, 7, 2, 0, 0, 3848, 3849, 7, 20, 0, 0, 3849, 3850, 7, 9, 0, 0, 3850, 3851, 7, 24, 0, 0, 3851, 3852, 7, 6, 0, 0, 3852, 3853, 7, 19, 0, 0, 3853, 3854, 7, 12, 0, 0, 3854, 3855, 7, 8, 0, 0, 3855, 660, 1, 0, 0, 0, 3856, 3857, 7, 4, 0, 0, 3857, 3858, 7, 7, 0, 0, 3858, 3859, 7, 2, 0, 0, 3859, 3860, 7, 5, 0, 0, 3860, 3861, 7, 2, 0, 0, 3861, 662, 1, 0, 0, 0, 3862, 3863, 7, 4, 0, 0, 3863, 3864, 7, 7, 0, 0, 3864, 3865, 7, 6, 0, 0, 3865, 3866, 7, 24, 0, 0, 3866, 3867, 7, 9, 0, 0, 3867, 664, 1, 0, 0, 0, 3868, 3869, 7, 4, 0, 0, 3869, 3870, 7, 7, 0, 0, 3870, 3871, 7, 11, 0, 0, 3871, 3872, 7, 6, 0, 0, 3872, 3873, 7, 5, 0, 0, 3873, 3874, 7, 5, 0, 0, 3874, 666, 1, 0, 0, 0, 3875, 3876, 7, 4, 0, 0, 3876, 3877, 7, 9, 0, 0, 3877, 3878, 7, 2, 0, 0, 3878, 3879, 7, 11, 0, 0, 3879, 3880, 7, 7, 0, 0, 3880, 3881, 7, 22, 0, 0, 3881, 668, 1, 0, 0, 0, 3882, 3883, 7, 4, 0, 0, 3883, 3884, 7, 9, 0, 0, 3884, 3885, 7, 7, 0, 0, 3885, 3886, 7, 6, 0, 0, 3886, 3887, 7, 12, 0, 0, 3887, 3888, 7, 15, 0, 0, 3888, 670, 1, 0, 0, 0, 3889, 3890, 7, 4, 0, 0, 3890, 3891, 7, 9, 0, 0, 3891, 3892, 7, 9, 0, 0, 3892, 3893, 7, 25, 0, 0, 3893, 672, 1, 0, 0, 0, 3894, 3895, 7, 4, 0, 0, 3895, 3896, 7, 9, 0, 0, 3896, 3897, 7, 5, 0, 0, 3897, 3898, 7, 9, 0, 0, 3898, 3899, 7, 7, 0, 0, 3899, 3900, 7, 8, 0, 0, 3900, 674, 1, 0, 0, 0, 3901, 3902, 7, 4, 0, 0, 3902, 3903, 7, 9, 0, 0, 3903, 3904, 7, 12, 0, 0, 3904, 3905, 7, 4, 0, 0, 3905, 3906, 7, 19, 0, 0, 3906, 3907, 7, 8, 0, 0, 3907, 3908, 7, 19, 0, 0, 3908, 3909, 7, 20, 0, 0, 3909, 3910, 7, 9, 0, 0, 3910, 676, 1, 0, 0, 0, 3911, 3912, 7, 4, 0, 0, 3912, 3913, 7, 9, 0, 0, 3913, 3914, 7, 24, 0, 0, 3914, 3915, 7, 2, 0, 0, 3915, 3916, 7, 11, 0, 0, 3916, 3917, 7, 2, 0, 0, 3917, 3918, 7, 8, 0, 0, 3918, 3919, 7, 6, 0, 0, 3919, 3920, 7, 11, 0, 0, 3920, 678, 1, 0, 0, 0, 3921, 3922, 7, 4, 0, 0, 3922, 3923, 7, 9, 0, 0, 3923, 3924, 7, 4, 0, 0, 3924, 3925, 7, 4, 0, 0, 3925, 3926, 7, 19, 0, 0, 3926, 3927, 7, 6, 0, 0, 3927, 3928, 7, 12, 0, 0, 3928, 3929, 5, 95, 0, 0, 3929, 3930, 7, 21, 0, 0, 3930, 3931, 7, 4, 0, 0, 3931, 3932, 7, 9, 0, 0, 3932, 3933, 7, 11, 0, 0, 3933, 680, 1, 0, 0, 0, 3934, 3935, 7, 4, 0, 0, 3935, 3936, 7, 9, 0, 0, 3936, 3937, 7, 8, 0, 0, 3937, 682, 1, 0, 0, 0, 3938, 3939, 7, 4, 0, 0, 3939, 3940, 7, 22, 0, 0, 3940, 3941, 7, 6, 0, 0, 3941, 3942, 7, 10, 0, 0, 3942, 684, 1, 0, 0, 0, 3943, 3944, 7, 4, 0, 0, 3944, 3945, 7, 19, 0, 0, 3945, 3946, 7, 17, 0, 0, 3946, 3947, 7, 19, 0, 0, 3947, 3948, 7, 5, 0, 0, 3948, 3949, 7, 2, 0, 0, 3949, 3950, 7, 11, 0, 0, 3950, 686, 1, 0, 0, 0, 3951, 3952, 7, 4, 0, 0, 3952, 3953, 7, 25, 0, 0, 3953, 3954, 7, 19, 0, 0, 3954, 3955, 7, 24, 0, 0, 3955, 688, 1, 0, 0, 0, 3956, 3957, 7, 4, 0, 0, 3957, 3958, 7, 17, 0, 0, 3958, 3959, 7, 2, 0, 0, 3959, 3960, 7, 5, 0, 0, 3960, 3961, 7, 5, 0, 0, 3961, 3962, 7, 19, 0, 0, 3962, 3963, 7, 12, 0, 0, 3963, 3964, 7, 8, 0, 0, 3964, 690, 1, 0, 0, 0, 3965, 3966, 7, 4, 0, 0, 3966, 3967, 7, 6, 0, 0, 3967, 3968, 7, 17, 0, 0, 3968, 3969, 7, 9, 0, 0, 3969, 692, 1, 0, 0, 0, 3970, 3971, 7, 4, 0, 0, 3971, 3972, 7, 24, 0, 0, 3972, 3973, 7, 9, 0, 0, 3973, 3974, 7, 7, 0, 0, 3974, 3975, 7, 19, 0, 0, 3975, 3976, 7, 23, 0, 0, 3976, 3977, 7, 19, 0, 0, 3977, 3978, 7, 7, 0, 0, 3978, 694, 1, 0, 0, 0, 3979, 3980, 7, 4, 0, 0, 3980, 3981, 7, 24, 0, 0, 3981, 3982, 7, 9, 0, 0, 3982, 3983, 7, 7, 0, 0, 3983, 3984, 7, 19, 0, 0, 3984, 3985, 7, 23, 0, 0, 3985, 3986, 7, 19, 0, 0, 3986, 3987, 7, 7, 0, 0, 3987, 3988, 7, 8, 0, 0, 3988, 3989, 7, 13, 0, 0, 3989, 3990, 7, 24, 0, 0, 3990, 3991, 7, 9, 0, 0, 3991, 696, 1, 0, 0, 0, 3992, 3993, 7, 4, 0, 0, 3993, 3994, 7, 26, 0, 0, 3994, 3995, 7, 5, 0, 0, 3995, 698, 1, 0, 0, 0, 3996, 3997, 7, 4, 0, 0, 3997, 3998, 7, 26, 0, 0, 3998, 3999, 7, 5, 0, 0, 3999, 4000, 7, 9, 0, 0, 4000, 4001, 7, 18, 0, 0, 4001, 4002, 7, 7, 0, 0, 4002, 4003, 7, 9, 0, 0, 4003, 4004, 7, 24, 0, 0, 4004, 4005, 7, 8, 0, 0, 4005, 4006, 7, 19, 0, 0, 4006, 4007, 7, 6, 0, 0, 4007, 4008, 7, 12, 0, 0, 4008, 700, 1, 0, 0, 0, 4009, 4010, 7, 4, 0, 0, 4010, 4011, 7, 26, 0, 0, 4011, 4012, 7, 5, 0, 0, 4012, 4013, 7, 4, 0, 0, 4013, 4014, 7, 8, 0, 0, 4014, 4015, 7, 2, 0, 0, 4015, 4016, 7, 8, 0, 0, 4016, 4017, 7, 9, 0, 0, 4017, 702, 1, 0, 0, 0, 4018, 4019, 7, 4, 0, 0, 4019, 4020, 7, 26, 0, 0, 4020, 4021, 7, 5, 0, 0, 4021, 4022, 7, 10, 0, 0, 4022, 4023, 7, 2, 0, 0, 4023, 4024, 7, 11, 0, 0, 4024, 4025, 7, 12, 0, 0, 4025, 4026, 7, 19, 0, 0, 4026, 4027, 7, 12, 0, 0, 4027, 4028, 7, 16, 0, 0, 4028, 704, 1, 0, 0, 0, 4029, 4030, 7, 4, 0, 0, 4030, 4031, 7, 26, 0, 0, 4031, 4032, 7, 11, 0, 0, 4032, 4033, 7, 8, 0, 0, 4033, 706, 1, 0, 0, 0, 4034, 4035, 7, 4, 0, 0, 4035, 4036, 7, 8, 0, 0, 4036, 4037, 7, 2, 0, 0, 4037, 4038, 7, 11, 0, 0, 4038, 4039, 7, 8, 0, 0, 4039, 708, 1, 0, 0, 0, 4040, 4041, 7, 4, 0, 0, 4041, 4042, 7, 8, 0, 0, 4042, 4043, 7, 2, 0, 0, 4043, 4044, 7, 8, 0, 0, 4044, 4045, 7, 9, 0, 0, 4045, 4046, 7, 17, 0, 0, 4046, 4047, 7, 9, 0, 0, 4047, 4048, 7, 12, 0, 0, 4048, 4049, 7, 8, 0, 0, 4049, 710, 1, 0, 0, 0, 4050, 4051, 7, 4, 0, 0, 4051, 4052, 7, 8, 0, 0, 4052, 4053, 7, 2, 0, 0, 4053, 4054, 7, 8, 0, 0, 4054, 4055, 7, 19, 0, 0, 4055, 4056, 7, 7, 0, 0, 4056, 712, 1, 0, 0, 0, 4057, 4058, 7, 4, 0, 0, 4058, 4059, 7, 8, 0, 0, 4059, 4060, 7, 2, 0, 0, 4060, 4061, 7, 8, 0, 0, 4061, 4062, 7, 19, 0, 0, 4062, 4063, 7, 4, 0, 0, 4063, 4064, 7, 8, 0, 0, 4064, 4065, 7, 19, 0, 0, 4065, 4066, 7, 7, 0, 0, 4066, 4067, 7, 4, 0, 0, 4067, 714, 1, 0, 0, 0, 4068, 4069, 7, 4, 0, 0, 4069, 4070, 7, 8, 0, 0, 4070, 4071, 7, 15, 0, 0, 4071, 4072, 7, 15, 0, 0, 4072, 4073, 7, 9, 0, 0, 4073, 4074, 7, 20, 0, 0, 4074, 4075, 5, 95, 0, 0, 4075, 4076, 7, 24, 0, 0, 4076, 4077, 7, 6, 0, 0, 4077, 4078, 7, 24, 0, 0, 4078, 716, 1, 0, 0, 0, 4079, 4080, 7, 4, 0, 0, 4080, 4081, 7, 8, 0, 0, 4081, 4082, 7, 15, 0, 0, 4082, 4083, 7, 15, 0, 0, 4083, 4084, 7, 9, 0, 0, 4084, 4085, 7, 20, 0, 0, 4085, 4086, 5, 95, 0, 0, 4086, 4087, 7, 4, 0, 0, 4087, 4088, 7, 2, 0, 0, 4088, 4089, 7, 17, 0, 0, 4089, 4090, 7, 24, 0, 0, 4090, 718, 1, 0, 0, 0, 4091, 4092, 7, 4, 0, 0, 4092, 4093, 7, 8, 0, 0, 4093, 4094, 7, 11, 0, 0, 4094, 4095, 7, 9, 0, 0, 4095, 4096, 7, 2, 0, 0, 4096, 4097, 7, 17, 0, 0, 4097, 720, 1, 0, 0, 0, 4098, 4099, 7, 4, 0, 0, 4099, 4100, 7, 8, 0, 0, 4100, 4101, 7, 11, 0, 0, 4101, 4102, 7, 19, 0, 0, 4102, 4103, 7, 12, 0, 0, 4103, 4104, 7, 16, 0, 0, 4104, 722, 1, 0, 0, 0, 4105, 4106, 7, 4, 0, 0, 4106, 4107, 7, 8, 0, 0, 4107, 4108, 7, 11, 0, 0, 4108, 4109, 7, 19, 0, 0, 4109, 4110, 7, 12, 0, 0, 4110, 4111, 7, 16, 0, 0, 4111, 4112, 5, 95, 0, 0, 4112, 4113, 7, 2, 0, 0, 4113, 4114, 7, 16, 0, 0, 4114, 4115, 7, 16, 0, 0, 4115, 724, 1, 0, 0, 0, 4116, 4117, 7, 4, 0, 0, 4117, 4118, 7, 21, 0, 0, 4118, 4119, 7, 3, 0, 0, 4119, 4120, 7, 17, 0, 0, 4120, 4121, 7, 21, 0, 0, 4121, 4122, 7, 5, 0, 0, 4122, 4123, 7, 8, 0, 0, 4123, 4124, 7, 19, 0, 0, 4124, 4125, 7, 4, 0, 0, 4125, 4126, 7, 9, 0, 0, 4126, 4127, 7, 8, 0, 0, 4127, 726, 1, 0, 0, 0, 4128, 4129, 7, 4, 0, 0, 4129, 4130, 7, 21, 0, 0, 4130, 4131, 7, 3, 0, 0, 4131, 4132, 7, 4, 0, 0, 4132, 4133, 7, 9, 0, 0, 4133, 4134, 7, 8, 0, 0, 4134, 728, 1, 0, 0, 0, 4135, 4136, 7, 4, 0, 0, 4136, 4137, 7, 21, 0, 0, 4137, 4138, 7, 3, 0, 0, 4138, 4139, 7, 4, 0, 0, 4139, 4140, 7, 8, 0, 0, 4140, 4141, 7, 11, 0, 0, 4141, 4142, 7, 19, 0, 0, 4142, 4143, 7, 12, 0, 0, 4143, 4144, 7, 16, 0, 0, 4144, 730, 1, 0, 0, 0, 4145, 4146, 7, 4, 0, 0, 4146, 4147, 7, 21, 0, 0, 4147, 4148, 7, 3, 0, 0, 4148, 4149, 7, 4, 0, 0, 4149, 4150, 7, 8, 0, 0, 4150, 4151, 7, 11, 0, 0, 4151, 4152, 7, 19, 0, 0, 4152, 4153, 7, 12, 0, 0, 4153, 4154, 7, 16, 0, 0, 4154, 4155, 5, 95, 0, 0, 4155, 4156, 7, 11, 0, 0, 4156, 4157, 7, 9, 0, 0, 4157, 4158, 7, 16, 0, 0, 4158, 4159, 7, 9, 0, 0, 4159, 4160, 7, 18, 0, 0, 4160, 732, 1, 0, 0, 0, 4161, 4162, 7, 4, 0, 0, 4162, 4163, 7, 21, 0, 0, 4163, 4164, 7, 7, 0, 0, 4164, 4165, 7, 7, 0, 0, 4165, 4166, 7, 9, 0, 0, 4166, 4167, 7, 9, 0, 0, 4167, 4168, 7, 15, 0, 0, 4168, 4169, 7, 4, 0, 0, 4169, 734, 1, 0, 0, 0, 4170, 4171, 7, 4, 0, 0, 4171, 4172, 7, 21, 0, 0, 4172, 4173, 7, 17, 0, 0, 4173, 736, 1, 0, 0, 0, 4174, 4175, 7, 4, 0, 0, 4175, 4176, 7, 21, 0, 0, 4176, 4177, 7, 12, 0, 0, 4177, 4178, 7, 15, 0, 0, 4178, 4179, 7, 2, 0, 0, 4179, 4180, 7, 13, 0, 0, 4180, 738, 1, 0, 0, 0, 4181, 4182, 7, 4, 0, 0, 4182, 4183, 7, 13, 0, 0, 4183, 4184, 7, 17, 0, 0, 4184, 4185, 7, 17, 0, 0, 4185, 4186, 7, 9, 0, 0, 4186, 4187, 7, 8, 0, 0, 4187, 4188, 7, 11, 0, 0, 4188, 4189, 7, 19, 0, 0, 4189, 4190, 7, 7, 0, 0, 4190, 740, 1, 0, 0, 0, 4191, 4192, 7, 4, 0, 0, 4192, 4193, 7, 13, 0, 0, 4193, 4194, 7, 4, 0, 0, 4194, 4195, 7, 8, 0, 0, 4195, 4196, 7, 9, 0, 0, 4196, 4197, 7, 17, 0, 0, 4197, 742, 1, 0, 0, 0, 4198, 4199, 7, 4, 0, 0, 4199, 4200, 7, 13, 0, 0, 4200, 4201, 7, 4, 0, 0, 4201, 4202, 7, 8, 0, 0, 4202, 4203, 7, 9, 0, 0, 4203, 4204, 7, 17, 0, 0, 4204, 4205, 5, 95, 0, 0, 4205, 4206, 7, 8, 0, 0, 4206, 4207, 7, 19, 0, 0, 4207, 4208, 7, 17, 0, 0, 4208, 4209, 7, 9, 0, 0, 4209, 744, 1, 0, 0, 0, 4210, 4211, 7, 4, 0, 0, 4211, 4212, 7, 13, 0, 0, 4212, 4213, 7, 4, 0, 0, 4213, 4214, 7, 8, 0, 0, 4214, 4215, 7, 9, 0, 0, 4215, 4216, 7, 17, 0, 0, 4216, 4217, 5, 95, 0, 0, 4217, 4218, 7, 21, 0, 0, 4218, 4219, 7, 4, 0, 0, 4219, 4220, 7, 9, 0, 0, 4220, 4221, 7, 11, 0, 0, 4221, 746, 1, 0, 0, 0, 4222, 4223, 7, 8, 0, 0, 4223, 4224, 7, 2, 0, 0, 4224, 4225, 7, 3, 0, 0, 4225, 4226, 7, 5, 0, 0, 4226, 4227, 7, 9, 0, 0, 4227, 748, 1, 0, 0, 0, 4228, 4229, 7, 8, 0, 0, 4229, 4230, 7, 2, 0, 0, 4230, 4231, 7, 3, 0, 0, 4231, 4232, 7, 5, 0, 0, 4232, 4233, 7, 9, 0, 0, 4233, 4234, 7, 4, 0, 0, 4234, 750, 1, 0, 0, 0, 4235, 4236, 7, 8, 0, 0, 4236, 4237, 7, 2, 0, 0, 4237, 4238, 7, 3, 0, 0, 4238, 4239, 7, 5, 0, 0, 4239, 4240, 7, 9, 0, 0, 4240, 4241, 7, 4, 0, 0, 4241, 4242, 7, 2, 0, 0, 4242, 4243, 7, 17, 0, 0, 4243, 4244, 7, 24, 0, 0, 4244, 4245, 7, 5, 0, 0, 4245, 4246, 7, 9, 0, 0, 4246, 752, 1, 0, 0, 0, 4247, 4248, 7, 8, 0, 0, 4248, 4249, 7, 22, 0, 0, 4249, 4250, 7, 9, 0, 0, 4250, 4251, 7, 12, 0, 0, 4251, 754, 1, 0, 0, 0, 4252, 4253, 7, 8, 0, 0, 4253, 4254, 7, 22, 0, 0, 4254, 4255, 7, 21, 0, 0, 4255, 4256, 7, 11, 0, 0, 4256, 4257, 7, 4, 0, 0, 4257, 4258, 7, 15, 0, 0, 4258, 4259, 7, 2, 0, 0, 4259, 4260, 7, 13, 0, 0, 4260, 756, 1, 0, 0, 0, 4261, 4262, 7, 8, 0, 0, 4262, 4263, 7, 19, 0, 0, 4263, 4264, 7, 17, 0, 0, 4264, 4265, 7, 9, 0, 0, 4265, 758, 1, 0, 0, 0, 4266, 4267, 7, 8, 0, 0, 4267, 4268, 7, 19, 0, 0, 4268, 4269, 7, 17, 0, 0, 4269, 4270, 7, 9, 0, 0, 4270, 4271, 7, 4, 0, 0, 4271, 4272, 7, 8, 0, 0, 4272, 4273, 7, 2, 0, 0, 4273, 4274, 7, 17, 0, 0, 4274, 4275, 7, 24, 0, 0, 4275, 760, 1, 0, 0, 0, 4276, 4277, 7, 8, 0, 0, 4277, 4278, 7, 19, 0, 0, 4278, 4279, 7, 17, 0, 0, 4279, 4280, 7, 9, 0, 0, 4280, 4281, 7, 4, 0, 0, 4281, 4282, 7, 8, 0, 0, 4282, 4283, 7, 2, 0, 0, 4283, 4284, 7, 17, 0, 0, 4284, 4285, 7, 24, 0, 0, 4285, 4286, 5, 95, 0, 0, 4286, 4287, 7, 15, 0, 0, 4287, 4288, 7, 19, 0, 0, 4288, 4289, 7, 23, 0, 0, 4289, 4290, 7, 23, 0, 0, 4290, 762, 1, 0, 0, 0, 4291, 4292, 7, 8, 0, 0, 4292, 4293, 7, 19, 0, 0, 4293, 4294, 7, 17, 0, 0, 4294, 4295, 7, 9, 0, 0, 4295, 4296, 7, 4, 0, 0, 4296, 4297, 7, 8, 0, 0, 4297, 4298, 7, 2, 0, 0, 4298, 4299, 7, 17, 0, 0, 4299, 4300, 7, 24, 0, 0, 4300, 4301, 5, 95, 0, 0, 4301, 4302, 7, 5, 0, 0, 4302, 4303, 7, 8, 0, 0, 4303, 4304, 7, 14, 0, 0, 4304, 764, 1, 0, 0, 0, 4305, 4306, 7, 8, 0, 0, 4306, 4307, 7, 19, 0, 0, 4307, 4308, 7, 17, 0, 0, 4308, 4309, 7, 9, 0, 0, 4309, 4310, 7, 4, 0, 0, 4310, 4311, 7, 8, 0, 0, 4311, 4312, 7, 2, 0, 0, 4312, 4313, 7, 17, 0, 0, 4313, 4314, 7, 24, 0, 0, 4314, 4315, 5, 95, 0, 0, 4315, 4316, 7, 8, 0, 0, 4316, 4317, 7, 11, 0, 0, 4317, 4318, 7, 21, 0, 0, 4318, 4319, 7, 12, 0, 0, 4319, 4320, 7, 7, 0, 0, 4320, 766, 1, 0, 0, 0, 4321, 4322, 7, 8, 0, 0, 4322, 4323, 7, 19, 0, 0, 4323, 4324, 7, 17, 0, 0, 4324, 4325, 7, 9, 0, 0, 4325, 4326, 7, 14, 0, 0, 4326, 4327, 7, 6, 0, 0, 4327, 4328, 7, 12, 0, 0, 4328, 4329, 7, 9, 0, 0, 4329, 4330, 5, 95, 0, 0, 4330, 4331, 7, 22, 0, 0, 4331, 4332, 7, 6, 0, 0, 4332, 4333, 7, 21, 0, 0, 4333, 4334, 7, 11, 0, 0, 4334, 768, 1, 0, 0, 0, 4335, 4336, 7, 8, 0, 0, 4336, 4337, 7, 19, 0, 0, 4337, 4338, 7, 17, 0, 0, 4338, 4339, 7, 9, 0, 0, 4339, 4340, 7, 14, 0, 0, 4340, 4341, 7, 6, 0, 0, 4341, 4342, 7, 12, 0, 0, 4342, 4343, 7, 9, 0, 0, 4343, 4344, 5, 95, 0, 0, 4344, 4345, 7, 17, 0, 0, 4345, 4346, 7, 19, 0, 0, 4346, 4347, 7, 12, 0, 0, 4347, 4348, 7, 21, 0, 0, 4348, 4349, 7, 8, 0, 0, 4349, 4350, 7, 9, 0, 0, 4350, 770, 1, 0, 0, 0, 4351, 4352, 7, 8, 0, 0, 4352, 4353, 7, 19, 0, 0, 4353, 4354, 7, 17, 0, 0, 4354, 4355, 7, 9, 0, 0, 4355, 4356, 5, 95, 0, 0, 4356, 4357, 7, 15, 0, 0, 4357, 4358, 7, 19, 0, 0, 4358, 4359, 7, 23, 0, 0, 4359, 4360, 7, 23, 0, 0, 4360, 772, 1, 0, 0, 0, 4361, 4362, 7, 8, 0, 0, 4362, 4363, 7, 19, 0, 0, 4363, 4364, 7, 17, 0, 0, 4364, 4365, 7, 9, 0, 0, 4365, 4366, 5, 95, 0, 0, 4366, 4367, 7, 8, 0, 0, 4367, 4368, 7, 11, 0, 0, 4368, 4369, 7, 21, 0, 0, 4369, 4370, 7, 12, 0, 0, 4370, 4371, 7, 7, 0, 0, 4371, 774, 1, 0, 0, 0, 4372, 4373, 7, 8, 0, 0, 4373, 4374, 7, 19, 0, 0, 4374, 4375, 7, 12, 0, 0, 4375, 4376, 7, 13, 0, 0, 4376, 4377, 7, 19, 0, 0, 4377, 4378, 7, 12, 0, 0, 4378, 4379, 7, 8, 0, 0, 4379, 776, 1, 0, 0, 0, 4380, 4381, 7, 8, 0, 0, 4381, 4382, 7, 6, 0, 0, 4382, 778, 1, 0, 0, 0, 4383, 4384, 7, 8, 0, 0, 4384, 4385, 7, 11, 0, 0, 4385, 4386, 7, 2, 0, 0, 4386, 4387, 7, 19, 0, 0, 4387, 4388, 7, 5, 0, 0, 4388, 4389, 7, 19, 0, 0, 4389, 4390, 7, 12, 0, 0, 4390, 4391, 7, 16, 0, 0, 4391, 780, 1, 0, 0, 0, 4392, 4393, 7, 8, 0, 0, 4393, 4394, 7, 11, 0, 0, 4394, 4395, 7, 2, 0, 0, 4395, 4396, 7, 12, 0, 0, 4396, 4397, 7, 4, 0, 0, 4397, 4398, 7, 5, 0, 0, 4398, 4399, 7, 2, 0, 0, 4399, 4400, 7, 8, 0, 0, 4400, 4401, 7, 9, 0, 0, 4401, 782, 1, 0, 0, 0, 4402, 4403, 7, 8, 0, 0, 4403, 4404, 7, 11, 0, 0, 4404, 4405, 7, 2, 0, 0, 4405, 4406, 7, 12, 0, 0, 4406, 4407, 7, 4, 0, 0, 4407, 4408, 7, 5, 0, 0, 4408, 4409, 7, 2, 0, 0, 4409, 4410, 7, 8, 0, 0, 4410, 4411, 7, 9, 0, 0, 4411, 4412, 5, 95, 0, 0, 4412, 4413, 7, 11, 0, 0, 4413, 4414, 7, 9, 0, 0, 4414, 4415, 7, 16, 0, 0, 4415, 4416, 7, 9, 0, 0, 4416, 4417, 7, 18, 0, 0, 4417, 784, 1, 0, 0, 0, 4418, 4419, 7, 8, 0, 0, 4419, 4420, 7, 11, 0, 0, 4420, 4421, 7, 2, 0, 0, 4421, 4422, 7, 12, 0, 0, 4422, 4423, 7, 4, 0, 0, 4423, 4424, 7, 5, 0, 0, 4424, 4425, 7, 2, 0, 0, 4425, 4426, 7, 8, 0, 0, 4426, 4427, 7, 19, 0, 0, 4427, 4428, 7, 6, 0, 0, 4428, 4429, 7, 12, 0, 0, 4429, 786, 1, 0, 0, 0, 4430, 4431, 7, 8, 0, 0, 4431, 4432, 7, 11, 0, 0, 4432, 4433, 7, 9, 0, 0, 4433, 4434, 7, 2, 0, 0, 4434, 4435, 7, 8, 0, 0, 4435, 788, 1, 0, 0, 0, 4436, 4437, 7, 8, 0, 0, 4437, 4438, 7, 11, 0, 0, 4438, 4439, 7, 19, 0, 0, 4439, 4440, 7, 16, 0, 0, 4440, 4441, 7, 16, 0, 0, 4441, 4442, 7, 9, 0, 0, 4442, 4443, 7, 11, 0, 0, 4443, 790, 1, 0, 0, 0, 4444, 4445, 7, 8, 0, 0, 4445, 4446, 7, 11, 0, 0, 4446, 4447, 7, 19, 0, 0, 4447, 4448, 7, 17, 0, 0, 4448, 792, 1, 0, 0, 0, 4449, 4450, 7, 8, 0, 0, 4450, 4451, 7, 11, 0, 0, 4451, 4452, 7, 19, 0, 0, 4452, 4453, 7, 17, 0, 0, 4453, 4454, 5, 95, 0, 0, 4454, 4455, 7, 2, 0, 0, 4455, 4456, 7, 11, 0, 0, 4456, 4457, 7, 11, 0, 0, 4457, 4458, 7, 2, 0, 0, 4458, 4459, 7, 13, 0, 0, 4459, 794, 1, 0, 0, 0, 4460, 4461, 7, 8, 0, 0, 4461, 4462, 7, 11, 0, 0, 4462, 4463, 7, 21, 0, 0, 4463, 4464, 7, 9, 0, 0, 4464, 796, 1, 0, 0, 0, 4465, 4466, 7, 8, 0, 0, 4466, 4467, 7, 11, 0, 0, 4467, 4468, 7, 21, 0, 0, 4468, 4469, 7, 12, 0, 0, 4469, 4470, 7, 7, 0, 0, 4470, 4471, 7, 2, 0, 0, 4471, 4472, 7, 8, 0, 0, 4472, 4473, 7, 9, 0, 0, 4473, 798, 1, 0, 0, 0, 4474, 4475, 7, 8, 0, 0, 4475, 4476, 7, 11, 0, 0, 4476, 4477, 7, 13, 0, 0, 4477, 4478, 5, 95, 0, 0, 4478, 4479, 7, 7, 0, 0, 4479, 4480, 7, 2, 0, 0, 4480, 4481, 7, 4, 0, 0, 4481, 4482, 7, 8, 0, 0, 4482, 800, 1, 0, 0, 0, 4483, 4484, 7, 8, 0, 0, 4484, 4485, 7, 21, 0, 0, 4485, 4486, 7, 9, 0, 0, 4486, 4487, 7, 4, 0, 0, 4487, 4488, 7, 15, 0, 0, 4488, 4489, 7, 2, 0, 0, 4489, 4490, 7, 13, 0, 0, 4490, 802, 1, 0, 0, 0, 4491, 4492, 7, 21, 0, 0, 4492, 4493, 7, 9, 0, 0, 4493, 4494, 7, 4, 0, 0, 4494, 4495, 7, 7, 0, 0, 4495, 4496, 7, 2, 0, 0, 4496, 4497, 7, 24, 0, 0, 4497, 4498, 7, 9, 0, 0, 4498, 804, 1, 0, 0, 0, 4499, 4500, 7, 21, 0, 0, 4500, 4501, 7, 12, 0, 0, 4501, 4502, 7, 19, 0, 0, 4502, 4503, 7, 6, 0, 0, 4503, 4504, 7, 12, 0, 0, 4504, 806, 1, 0, 0, 0, 4505, 4506, 7, 21, 0, 0, 4506, 4507, 7, 12, 0, 0, 4507, 4508, 7, 19, 0, 0, 4508, 4509, 7, 26, 0, 0, 4509, 4510, 7, 21, 0, 0, 4510, 4511, 7, 9, 0, 0, 4511, 808, 1, 0, 0, 0, 4512, 4513, 7, 21, 0, 0, 4513, 4514, 7, 12, 0, 0, 4514, 4515, 7, 25, 0, 0, 4515, 4516, 7, 12, 0, 0, 4516, 4517, 7, 6, 0, 0, 4517, 4518, 7, 10, 0, 0, 4518, 4519, 7, 12, 0, 0, 4519, 810, 1, 0, 0, 0, 4520, 4521, 7, 21, 0, 0, 4521, 4522, 7, 12, 0, 0, 4522, 4523, 7, 12, 0, 0, 4523, 4524, 7, 9, 0, 0, 4524, 4525, 7, 4, 0, 0, 4525, 4526, 7, 8, 0, 0, 4526, 812, 1, 0, 0, 0, 4527, 4528, 7, 21, 0, 0, 4528, 4529, 7, 12, 0, 0, 4529, 4530, 7, 24, 0, 0, 4530, 4531, 7, 19, 0, 0, 4531, 4532, 7, 20, 0, 0, 4532, 4533, 7, 6, 0, 0, 4533, 4534, 7, 8, 0, 0, 4534, 814, 1, 0, 0, 0, 4535, 4536, 7, 21, 0, 0, 4536, 4537, 7, 24, 0, 0, 4537, 4538, 7, 15, 0, 0, 4538, 4539, 7, 2, 0, 0, 4539, 4540, 7, 8, 0, 0, 4540, 4541, 7, 9, 0, 0, 4541, 816, 1, 0, 0, 0, 4542, 4543, 7, 21, 0, 0, 4543, 4544, 7, 24, 0, 0, 4544, 4545, 7, 24, 0, 0, 4545, 4546, 7, 9, 0, 0, 4546, 4547, 7, 11, 0, 0, 4547, 818, 1, 0, 0, 0, 4548, 4549, 7, 21, 0, 0, 4549, 4550, 7, 24, 0, 0, 4550, 4551, 7, 4, 0, 0, 4551, 4552, 7, 9, 0, 0, 4552, 4553, 7, 11, 0, 0, 4553, 4554, 7, 8, 0, 0, 4554, 820, 1, 0, 0, 0, 4555, 4556, 7, 21, 0, 0, 4556, 4557, 7, 4, 0, 0, 4557, 4558, 7, 9, 0, 0, 4558, 822, 1, 0, 0, 0, 4559, 4560, 7, 21, 0, 0, 4560, 4561, 7, 4, 0, 0, 4561, 4562, 7, 9, 0, 0, 4562, 4563, 7, 11, 0, 0, 4563, 824, 1, 0, 0, 0, 4564, 4565, 7, 21, 0, 0, 4565, 4566, 7, 4, 0, 0, 4566, 4567, 7, 19, 0, 0, 4567, 4568, 7, 12, 0, 0, 4568, 4569, 7, 16, 0, 0, 4569, 826, 1, 0, 0, 0, 4570, 4571, 7, 20, 0, 0, 4571, 4572, 7, 2, 0, 0, 4572, 4573, 7, 5, 0, 0, 4573, 4574, 7, 21, 0, 0, 4574, 4575, 7, 9, 0, 0, 4575, 828, 1, 0, 0, 0, 4576, 4577, 7, 20, 0, 0, 4577, 4578, 7, 2, 0, 0, 4578, 4579, 7, 5, 0, 0, 4579, 4580, 7, 21, 0, 0, 4580, 4581, 7, 9, 0, 0, 4581, 4582, 7, 4, 0, 0, 4582, 830, 1, 0, 0, 0, 4583, 4584, 7, 20, 0, 0, 4584, 4585, 7, 2, 0, 0, 4585, 4586, 7, 5, 0, 0, 4586, 4587, 7, 21, 0, 0, 4587, 4588, 7, 9, 0, 0, 4588, 4589, 5, 95, 0, 0, 4589, 4590, 7, 6, 0, 0, 4590, 4591, 7, 23, 0, 0, 4591, 832, 1, 0, 0, 0, 4592, 4593, 7, 20, 0, 0, 4593, 4594, 7, 2, 0, 0, 4594, 4595, 7, 11, 0, 0, 4595, 4596, 7, 3, 0, 0, 4596, 4597, 7, 19, 0, 0, 4597, 4598, 7, 12, 0, 0, 4598, 4599, 7, 2, 0, 0, 4599, 4600, 7, 11, 0, 0, 4600, 4601, 7, 13, 0, 0, 4601, 834, 1, 0, 0, 0, 4602, 4603, 7, 20, 0, 0, 4603, 4604, 7, 2, 0, 0, 4604, 4605, 7, 11, 0, 0, 4605, 4606, 7, 7, 0, 0, 4606, 4607, 7, 22, 0, 0, 4607, 4608, 7, 2, 0, 0, 4608, 4609, 7, 11, 0, 0, 4609, 836, 1, 0, 0, 0, 4610, 4611, 7, 20, 0, 0, 4611, 4612, 7, 2, 0, 0, 4612, 4613, 7, 11, 0, 0, 4613, 4614, 7, 13, 0, 0, 4614, 4615, 7, 19, 0, 0, 4615, 4616, 7, 12, 0, 0, 4616, 4617, 7, 16, 0, 0, 4617, 838, 1, 0, 0, 0, 4618, 4619, 7, 20, 0, 0, 4619, 4620, 7, 2, 0, 0, 4620, 4621, 7, 11, 0, 0, 4621, 4622, 5, 95, 0, 0, 4622, 4623, 7, 24, 0, 0, 4623, 4624, 7, 6, 0, 0, 4624, 4625, 7, 24, 0, 0, 4625, 840, 1, 0, 0, 0, 4626, 4627, 7, 20, 0, 0, 4627, 4628, 7, 2, 0, 0, 4628, 4629, 7, 11, 0, 0, 4629, 4630, 5, 95, 0, 0, 4630, 4631, 7, 4, 0, 0, 4631, 4632, 7, 2, 0, 0, 4632, 4633, 7, 17, 0, 0, 4633, 4634, 7, 24, 0, 0, 4634, 842, 1, 0, 0, 0, 4635, 4636, 7, 20, 0, 0, 4636, 4637, 7, 9, 0, 0, 4637, 4638, 7, 11, 0, 0, 4638, 4639, 7, 4, 0, 0, 4639, 4640, 7, 19, 0, 0, 4640, 4641, 7, 6, 0, 0, 4641, 4642, 7, 12, 0, 0, 4642, 4643, 7, 19, 0, 0, 4643, 4644, 7, 12, 0, 0, 4644, 4645, 7, 16, 0, 0, 4645, 844, 1, 0, 0, 0, 4646, 4647, 7, 20, 0, 0, 4647, 4648, 7, 19, 0, 0, 4648, 4649, 7, 9, 0, 0, 4649, 4650, 7, 10, 0, 0, 4650, 4651, 7, 4, 0, 0, 4651, 846, 1, 0, 0, 0, 4652, 4653, 7, 20, 0, 0, 4653, 4654, 7, 19, 0, 0, 4654, 4655, 7, 11, 0, 0, 4655, 4656, 7, 8, 0, 0, 4656, 4657, 7, 21, 0, 0, 4657, 4658, 7, 2, 0, 0, 4658, 4659, 7, 5, 0, 0, 4659, 848, 1, 0, 0, 0, 4660, 4661, 7, 10, 0, 0, 4661, 4662, 7, 2, 0, 0, 4662, 4663, 7, 8, 0, 0, 4663, 4664, 7, 9, 0, 0, 4664, 4665, 7, 11, 0, 0, 4665, 4666, 7, 17, 0, 0, 4666, 4667, 7, 2, 0, 0, 4667, 4668, 7, 11, 0, 0, 4668, 4669, 7, 25, 0, 0, 4669, 850, 1, 0, 0, 0, 4670, 4671, 7, 10, 0, 0, 4671, 4672, 7, 2, 0, 0, 4672, 4673, 7, 8, 0, 0, 4673, 4674, 7, 9, 0, 0, 4674, 4675, 7, 11, 0, 0, 4675, 4676, 7, 17, 0, 0, 4676, 4677, 7, 2, 0, 0, 4677, 4678, 7, 11, 0, 0, 4678, 4679, 7, 25, 0, 0, 4679, 4680, 7, 4, 0, 0, 4680, 852, 1, 0, 0, 0, 4681, 4682, 7, 10, 0, 0, 4682, 4683, 7, 9, 0, 0, 4683, 4684, 7, 15, 0, 0, 4684, 4685, 7, 12, 0, 0, 4685, 4686, 7, 9, 0, 0, 4686, 4687, 7, 4, 0, 0, 4687, 4688, 7, 15, 0, 0, 4688, 4689, 7, 2, 0, 0, 4689, 4690, 7, 13, 0, 0, 4690, 854, 1, 0, 0, 0, 4691, 4692, 7, 10, 0, 0, 4692, 4693, 7, 9, 0, 0, 4693, 4694, 7, 9, 0, 0, 4694, 4695, 7, 25, 0, 0, 4695, 4696, 7, 4, 0, 0, 4696, 856, 1, 0, 0, 0, 4697, 4698, 7, 10, 0, 0, 4698, 4699, 7, 22, 0, 0, 4699, 4700, 7, 9, 0, 0, 4700, 4701, 7, 12, 0, 0, 4701, 858, 1, 0, 0, 0, 4702, 4703, 7, 10, 0, 0, 4703, 4704, 7, 22, 0, 0, 4704, 4705, 7, 9, 0, 0, 4705, 4706, 7, 12, 0, 0, 4706, 4707, 7, 9, 0, 0, 4707, 4708, 7, 20, 0, 0, 4708, 4709, 7, 9, 0, 0, 4709, 4710, 7, 11, 0, 0, 4710, 860, 1, 0, 0, 0, 4711, 4712, 7, 10, 0, 0, 4712, 4713, 7, 22, 0, 0, 4713, 4714, 7, 9, 0, 0, 4714, 4715, 7, 11, 0, 0, 4715, 4716, 7, 9, 0, 0, 4716, 862, 1, 0, 0, 0, 4717, 4718, 7, 10, 0, 0, 4718, 4719, 7, 19, 0, 0, 4719, 4720, 7, 15, 0, 0, 4720, 4721, 7, 8, 0, 0, 4721, 4722, 7, 22, 0, 0, 4722, 4723, 5, 95, 0, 0, 4723, 4724, 7, 3, 0, 0, 4724, 4725, 7, 21, 0, 0, 4725, 4726, 7, 7, 0, 0, 4726, 4727, 7, 25, 0, 0, 4727, 4728, 7, 9, 0, 0, 4728, 4729, 7, 8, 0, 0, 4729, 864, 1, 0, 0, 0, 4730, 4731, 7, 10, 0, 0, 4731, 4732, 7, 19, 0, 0, 4732, 4733, 7, 12, 0, 0, 4733, 4734, 7, 15, 0, 0, 4734, 4735, 7, 6, 0, 0, 4735, 4736, 7, 10, 0, 0, 4736, 866, 1, 0, 0, 0, 4737, 4738, 7, 10, 0, 0, 4738, 4739, 7, 19, 0, 0, 4739, 4740, 7, 8, 0, 0, 4740, 4741, 7, 22, 0, 0, 4741, 868, 1, 0, 0, 0, 4742, 4743, 7, 10, 0, 0, 4743, 4744, 7, 19, 0, 0, 4744, 4745, 7, 8, 0, 0, 4745, 4746, 7, 22, 0, 0, 4746, 4747, 7, 19, 0, 0, 4747, 4748, 7, 12, 0, 0, 4748, 870, 1, 0, 0, 0, 4749, 4750, 7, 10, 0, 0, 4750, 4751, 7, 19, 0, 0, 4751, 4752, 7, 8, 0, 0, 4752, 4753, 7, 22, 0, 0, 4753, 4754, 7, 6, 0, 0, 4754, 4755, 7, 21, 0, 0, 4755, 4756, 7, 8, 0, 0, 4756, 872, 1, 0, 0, 0, 4757, 4758, 7, 13, 0, 0, 4758, 4759, 7, 9, 0, 0, 4759, 4760, 7, 2, 0, 0, 4760, 4761, 7, 11, 0, 0, 4761, 874, 1, 0, 0, 0, 4762, 4763, 7, 2, 0, 0, 4763, 4764, 7, 15, 0, 0, 4764, 4765, 7, 15, 0, 0, 4765, 876, 1, 0, 0, 0, 4766, 4767, 7, 2, 0, 0, 4767, 4768, 7, 23, 0, 0, 4768, 4769, 7, 8, 0, 0, 4769, 4770, 7, 9, 0, 0, 4770, 4771, 7, 11, 0, 0, 4771, 878, 1, 0, 0, 0, 4772, 4773, 7, 2, 0, 0, 4773, 4774, 7, 4, 0, 0, 4774, 4775, 7, 7, 0, 0, 4775, 880, 1, 0, 0, 0, 4776, 4777, 7, 7, 0, 0, 4777, 4778, 7, 2, 0, 0, 4778, 4779, 7, 4, 0, 0, 4779, 4780, 7, 7, 0, 0, 4780, 4781, 7, 2, 0, 0, 4781, 4782, 7, 15, 0, 0, 4782, 4783, 7, 9, 0, 0, 4783, 882, 1, 0, 0, 0, 4784, 4785, 7, 7, 0, 0, 4785, 4786, 7, 2, 0, 0, 4786, 4787, 7, 8, 0, 0, 4787, 4788, 7, 2, 0, 0, 4788, 4789, 7, 5, 0, 0, 4789, 4790, 7, 6, 0, 0, 4790, 4791, 7, 16, 0, 0, 4791, 884, 1, 0, 0, 0, 4792, 4793, 7, 7, 0, 0, 4793, 4794, 7, 9, 0, 0, 4794, 4795, 7, 12, 0, 0, 4795, 4796, 7, 8, 0, 0, 4796, 4797, 7, 21, 0, 0, 4797, 4798, 7, 11, 0, 0, 4798, 4799, 7, 13, 0, 0, 4799, 886, 1, 0, 0, 0, 4800, 4801, 7, 7, 0, 0, 4801, 4802, 7, 6, 0, 0, 4802, 4803, 7, 12, 0, 0, 4803, 4804, 7, 23, 0, 0, 4804, 4805, 7, 19, 0, 0, 4805, 4806, 7, 16, 0, 0, 4806, 888, 1, 0, 0, 0, 4807, 4808, 7, 7, 0, 0, 4808, 4809, 7, 6, 0, 0, 4809, 4810, 7, 12, 0, 0, 4810, 4811, 7, 4, 0, 0, 4811, 4812, 7, 8, 0, 0, 4812, 4813, 7, 11, 0, 0, 4813, 4814, 7, 2, 0, 0, 4814, 4815, 7, 19, 0, 0, 4815, 4816, 7, 12, 0, 0, 4816, 4817, 7, 8, 0, 0, 4817, 4818, 7, 4, 0, 0, 4818, 890, 1, 0, 0, 0, 4819, 4820, 7, 7, 0, 0, 4820, 4821, 7, 21, 0, 0, 4821, 4822, 7, 17, 0, 0, 4822, 4823, 7, 21, 0, 0, 4823, 4824, 7, 5, 0, 0, 4824, 4825, 7, 2, 0, 0, 4825, 4826, 7, 8, 0, 0, 4826, 4827, 7, 9, 0, 0, 4827, 892, 1, 0, 0, 0, 4828, 4829, 7, 15, 0, 0, 4829, 4830, 7, 2, 0, 0, 4830, 4831, 7, 8, 0, 0, 4831, 4832, 7, 2, 0, 0, 4832, 894, 1, 0, 0, 0, 4833, 4834, 7, 15, 0, 0, 4834, 4835, 7, 2, 0, 0, 4835, 4836, 7, 8, 0, 0, 4836, 4837, 7, 2, 0, 0, 4837, 4838, 7, 3, 0, 0, 4838, 4839, 7, 2, 0, 0, 4839, 4840, 7, 4, 0, 0, 4840, 4841, 7, 9, 0, 0, 4841, 896, 1, 0, 0, 0, 4842, 4843, 7, 15, 0, 0, 4843, 4844, 7, 2, 0, 0, 4844, 4845, 7, 13, 0, 0, 4845, 4846, 7, 4, 0, 0, 4846, 898, 1, 0, 0, 0, 4847, 4848, 7, 15, 0, 0, 4848, 4849, 7, 9, 0, 0, 4849, 4850, 7, 7, 0, 0, 4850, 4851, 7, 2, 0, 0, 4851, 4852, 7, 15, 0, 0, 4852, 4853, 7, 9, 0, 0, 4853, 900, 1, 0, 0, 0, 4854, 4855, 7, 15, 0, 0, 4855, 4856, 7, 9, 0, 0, 4856, 4857, 7, 4, 0, 0, 4857, 4858, 7, 7, 0, 0, 4858, 902, 1, 0, 0, 0, 4859, 4860, 7, 15, 0, 0, 4860, 4861, 7, 9, 0, 0, 4861, 4862, 7, 4, 0, 0, 4862, 4863, 7, 7, 0, 0, 4863, 4864, 7, 11, 0, 0, 4864, 4865, 7, 19, 0, 0, 4865, 4866, 7, 24, 0, 0, 4866, 4867, 7, 8, 0, 0, 4867, 4868, 7, 6, 0, 0, 4868, 4869, 7, 11, 0, 0, 4869, 904, 1, 0, 0, 0, 4870, 4871, 7, 15, 0, 0, 4871, 4872, 7, 19, 0, 0, 4872, 4873, 7, 20, 0, 0, 4873, 906, 1, 0, 0, 0, 4874, 4875, 7, 9, 0, 0, 4875, 4876, 7, 12, 0, 0, 4876, 4877, 7, 16, 0, 0, 4877, 4878, 7, 19, 0, 0, 4878, 4879, 7, 12, 0, 0, 4879, 4880, 7, 9, 0, 0, 4880, 908, 1, 0, 0, 0, 4881, 4882, 7, 9, 0, 0, 4882, 4883, 7, 24, 0, 0, 4883, 4884, 7, 6, 0, 0, 4884, 4885, 7, 7, 0, 0, 4885, 4886, 7, 22, 0, 0, 4886, 910, 1, 0, 0, 0, 4887, 4888, 7, 9, 0, 0, 4888, 4889, 7, 18, 0, 0, 4889, 4890, 7, 7, 0, 0, 4890, 4891, 7, 5, 0, 0, 4891, 4892, 7, 21, 0, 0, 4892, 4893, 7, 15, 0, 0, 4893, 4894, 7, 19, 0, 0, 4894, 4895, 7, 12, 0, 0, 4895, 4896, 7, 16, 0, 0, 4896, 912, 1, 0, 0, 0, 4897, 4898, 7, 23, 0, 0, 4898, 4899, 7, 19, 0, 0, 4899, 4900, 7, 5, 0, 0, 4900, 4901, 7, 9, 0, 0, 4901, 914, 1, 0, 0, 0, 4902, 4903, 7, 23, 0, 0, 4903, 4904, 7, 19, 0, 0, 4904, 4905, 7, 11, 0, 0, 4905, 4906, 7, 4, 0, 0, 4906, 4907, 7, 8, 0, 0, 4907, 916, 1, 0, 0, 0, 4908, 4909, 7, 16, 0, 0, 4909, 4910, 7, 9, 0, 0, 4910, 4911, 7, 12, 0, 0, 4911, 4912, 7, 9, 0, 0, 4912, 4913, 7, 11, 0, 0, 4913, 4914, 7, 2, 0, 0, 4914, 4915, 7, 8, 0, 0, 4915, 4916, 7, 9, 0, 0, 4916, 4917, 7, 15, 0, 0, 4917, 918, 1, 0, 0, 0, 4918, 4919, 7, 22, 0, 0, 4919, 4920, 7, 6, 0, 0, 4920, 4921, 7, 24, 0, 0, 4921, 920, 1, 0, 0, 0, 4922, 4923, 7, 22, 0, 0, 4923, 4924, 7, 6, 0, 0, 4924, 4925, 7, 21, 0, 0, 4925, 4926, 7, 11, 0, 0, 4926, 4927, 7, 4, 0, 0, 4927, 922, 1, 0, 0, 0, 4928, 4929, 7, 19, 0, 0, 4929, 4930, 7, 16, 0, 0, 4930, 4931, 7, 12, 0, 0, 4931, 4932, 7, 6, 0, 0, 4932, 4933, 7, 11, 0, 0, 4933, 4934, 7, 9, 0, 0, 4934, 924, 1, 0, 0, 0, 4935, 4936, 7, 19, 0, 0, 4936, 4937, 7, 12, 0, 0, 4937, 4938, 7, 7, 0, 0, 4938, 4939, 7, 5, 0, 0, 4939, 4940, 7, 21, 0, 0, 4940, 4941, 7, 15, 0, 0, 4941, 4942, 7, 19, 0, 0, 4942, 4943, 7, 12, 0, 0, 4943, 4944, 7, 16, 0, 0, 4944, 926, 1, 0, 0, 0, 4945, 4946, 7, 27, 0, 0, 4946, 4947, 7, 2, 0, 0, 4947, 4948, 7, 11, 0, 0, 4948, 928, 1, 0, 0, 0, 4949, 4950, 7, 27, 0, 0, 4950, 4951, 7, 2, 0, 0, 4951, 4952, 7, 11, 0, 0, 4952, 4953, 7, 4, 0, 0, 4953, 930, 1, 0, 0, 0, 4954, 4955, 7, 27, 0, 0, 4955, 4956, 7, 2, 0, 0, 4956, 4957, 7, 20, 0, 0, 4957, 4958, 7, 2, 0, 0, 4958, 932, 1, 0, 0, 0, 4959, 4960, 7, 25, 0, 0, 4960, 4961, 7, 9, 0, 0, 4961, 4962, 7, 13, 0, 0, 4962, 934, 1, 0, 0, 0, 4963, 4964, 7, 5, 0, 0, 4964, 4965, 7, 2, 0, 0, 4965, 4966, 7, 4, 0, 0, 4966, 4967, 7, 8, 0, 0, 4967, 936, 1, 0, 0, 0, 4968, 4969, 7, 5, 0, 0, 4969, 4970, 7, 6, 0, 0, 4970, 4971, 7, 2, 0, 0, 4971, 4972, 7, 15, 0, 0, 4972, 938, 1, 0, 0, 0, 4973, 4974, 7, 17, 0, 0, 4974, 4975, 7, 2, 0, 0, 4975, 4976, 7, 24, 0, 0, 4976, 940, 1, 0, 0, 0, 4977, 4978, 7, 17, 0, 0, 4978, 4979, 7, 19, 0, 0, 4979, 4980, 7, 7, 0, 0, 4980, 4981, 7, 11, 0, 0, 4981, 4982, 7, 6, 0, 0, 4982, 4983, 7, 4, 0, 0, 4983, 4984, 7, 9, 0, 0, 4984, 4985, 7, 7, 0, 0, 4985, 4986, 7, 6, 0, 0, 4986, 4987, 7, 12, 0, 0, 4987, 4988, 7, 15, 0, 0, 4988, 942, 1, 0, 0, 0, 4989, 4990, 7, 17, 0, 0, 4990, 4991, 7, 19, 0, 0, 4991, 4992, 7, 5, 0, 0, 4992, 4993, 7, 5, 0, 0, 4993, 4994, 7, 9, 0, 0, 4994, 4995, 7, 12, 0, 0, 4995, 4996, 7, 12, 0, 0, 4996, 4997, 7, 19, 0, 0, 4997, 4998, 7, 21, 0, 0, 4998, 4999, 7, 17, 0, 0, 4999, 944, 1, 0, 0, 0, 5000, 5001, 7, 17, 0, 0, 5001, 5002, 7, 19, 0, 0, 5002, 5003, 7, 5, 0, 0, 5003, 5004, 7, 5, 0, 0, 5004, 5005, 7, 19, 0, 0, 5005, 5006, 7, 4, 0, 0, 5006, 5007, 7, 9, 0, 0, 5007, 5008, 7, 7, 0, 0, 5008, 5009, 7, 6, 0, 0, 5009, 5010, 7, 12, 0, 0, 5010, 5011, 7, 15, 0, 0, 5011, 946, 1, 0, 0, 0, 5012, 5013, 7, 17, 0, 0, 5013, 5014, 7, 19, 0, 0, 5014, 5015, 7, 12, 0, 0, 5015, 5016, 7, 21, 0, 0, 5016, 5017, 7, 8, 0, 0, 5017, 5018, 7, 9, 0, 0, 5018, 5019, 7, 4, 0, 0, 5019, 948, 1, 0, 0, 0, 5020, 5021, 7, 17, 0, 0, 5021, 5022, 7, 6, 0, 0, 5022, 5023, 7, 12, 0, 0, 5023, 5024, 7, 8, 0, 0, 5024, 5025, 7, 22, 0, 0, 5025, 5026, 7, 4, 0, 0, 5026, 950, 1, 0, 0, 0, 5027, 5028, 7, 12, 0, 0, 5028, 5029, 7, 2, 0, 0, 5029, 5030, 7, 12, 0, 0, 5030, 5031, 7, 6, 0, 0, 5031, 5032, 7, 4, 0, 0, 5032, 5033, 7, 9, 0, 0, 5033, 5034, 7, 7, 0, 0, 5034, 5035, 7, 6, 0, 0, 5035, 5036, 7, 12, 0, 0, 5036, 5037, 7, 15, 0, 0, 5037, 952, 1, 0, 0, 0, 5038, 5039, 7, 12, 0, 0, 5039, 5040, 7, 21, 0, 0, 5040, 5041, 7, 5, 0, 0, 5041, 5042, 7, 5, 0, 0, 5042, 5043, 7, 4, 0, 0, 5043, 954, 1, 0, 0, 0, 5044, 5045, 7, 6, 0, 0, 5045, 5046, 7, 24, 0, 0, 5046, 5047, 7, 8, 0, 0, 5047, 5048, 7, 19, 0, 0, 5048, 5049, 7, 6, 0, 0, 5049, 5050, 7, 12, 0, 0, 5050, 5051, 7, 4, 0, 0, 5051, 956, 1, 0, 0, 0, 5052, 5053, 7, 24, 0, 0, 5053, 5054, 7, 2, 0, 0, 5054, 5055, 7, 4, 0, 0, 5055, 5056, 7, 8, 0, 0, 5056, 958, 1, 0, 0, 0, 5057, 5058, 7, 24, 0, 0, 5058, 5059, 7, 5, 0, 0, 5059, 5060, 7, 2, 0, 0, 5060, 5061, 7, 12, 0, 0, 5061, 960, 1, 0, 0, 0, 5062, 5063, 7, 24, 0, 0, 5063, 5064, 7, 11, 0, 0, 5064, 5065, 7, 9, 0, 0, 5065, 5066, 7, 7, 0, 0, 5066, 5067, 7, 9, 0, 0, 5067, 5068, 7, 15, 0, 0, 5068, 5069, 7, 19, 0, 0, 5069, 5070, 7, 12, 0, 0, 5070, 5071, 7, 16, 0, 0, 5071, 962, 1, 0, 0, 0, 5072, 5073, 7, 24, 0, 0, 5073, 5074, 7, 13, 0, 0, 5074, 5075, 7, 8, 0, 0, 5075, 5076, 7, 22, 0, 0, 5076, 5077, 7, 6, 0, 0, 5077, 5078, 7, 12, 0, 0, 5078, 964, 1, 0, 0, 0, 5079, 5080, 7, 24, 0, 0, 5080, 5081, 7, 13, 0, 0, 5081, 5082, 7, 8, 0, 0, 5082, 5083, 7, 22, 0, 0, 5083, 5084, 7, 6, 0, 0, 5084, 5085, 7, 12, 0, 0, 5085, 5086, 5, 95, 0, 0, 5086, 5087, 7, 2, 0, 0, 5087, 5088, 7, 11, 0, 0, 5088, 5089, 7, 7, 0, 0, 5089, 5090, 7, 22, 0, 0, 5090, 5091, 7, 19, 0, 0, 5091, 5092, 7, 20, 0, 0, 5092, 5093, 7, 9, 0, 0, 5093, 5094, 7, 4, 0, 0, 5094, 966, 1, 0, 0, 0, 5095, 5096, 7, 24, 0, 0, 5096, 5097, 7, 13, 0, 0, 5097, 5098, 7, 8, 0, 0, 5098, 5099, 7, 22, 0, 0, 5099, 5100, 7, 6, 0, 0, 5100, 5101, 7, 12, 0, 0, 5101, 5102, 5, 95, 0, 0, 5102, 5103, 7, 15, 0, 0, 5103, 5104, 7, 9, 0, 0, 5104, 5105, 7, 24, 0, 0, 5105, 5106, 7, 9, 0, 0, 5106, 5107, 7, 12, 0, 0, 5107, 5108, 7, 15, 0, 0, 5108, 5109, 7, 9, 0, 0, 5109, 5110, 7, 12, 0, 0, 5110, 5111, 7, 7, 0, 0, 5111, 5112, 7, 19, 0, 0, 5112, 5113, 7, 9, 0, 0, 5113, 5114, 7, 4, 0, 0, 5114, 968, 1, 0, 0, 0, 5115, 5116, 7, 24, 0, 0, 5116, 5117, 7, 13, 0, 0, 5117, 5118, 7, 8, 0, 0, 5118, 5119, 7, 22, 0, 0, 5119, 5120, 7, 6, 0, 0, 5120, 5121, 7, 12, 0, 0, 5121, 5122, 5, 95, 0, 0, 5122, 5123, 7, 23, 0, 0, 5123, 5124, 7, 19, 0, 0, 5124, 5125, 7, 5, 0, 0, 5125, 5126, 7, 9, 0, 0, 5126, 5127, 7, 4, 0, 0, 5127, 970, 1, 0, 0, 0, 5128, 5129, 7, 24, 0, 0, 5129, 5130, 7, 13, 0, 0, 5130, 5131, 7, 8, 0, 0, 5131, 5132, 7, 22, 0, 0, 5132, 5133, 7, 6, 0, 0, 5133, 5134, 7, 12, 0, 0, 5134, 5135, 5, 95, 0, 0, 5135, 5136, 7, 27, 0, 0, 5136, 5137, 7, 2, 0, 0, 5137, 5138, 7, 11, 0, 0, 5138, 972, 1, 0, 0, 0, 5139, 5140, 7, 24, 0, 0, 5140, 5141, 7, 13, 0, 0, 5141, 5142, 7, 8, 0, 0, 5142, 5143, 7, 22, 0, 0, 5143, 5144, 7, 6, 0, 0, 5144, 5145, 7, 12, 0, 0, 5145, 5146, 5, 95, 0, 0, 5146, 5147, 7, 24, 0, 0, 5147, 5148, 7, 2, 0, 0, 5148, 5149, 7, 11, 0, 0, 5149, 5150, 7, 2, 0, 0, 5150, 5151, 7, 17, 0, 0, 5151, 5152, 7, 9, 0, 0, 5152, 5153, 7, 8, 0, 0, 5153, 5154, 7, 9, 0, 0, 5154, 5155, 7, 11, 0, 0, 5155, 974, 1, 0, 0, 0, 5156, 5157, 7, 24, 0, 0, 5157, 5158, 7, 13, 0, 0, 5158, 5159, 7, 8, 0, 0, 5159, 5160, 7, 22, 0, 0, 5160, 5161, 7, 6, 0, 0, 5161, 5162, 7, 12, 0, 0, 5162, 5163, 5, 95, 0, 0, 5163, 5164, 7, 11, 0, 0, 5164, 5165, 7, 9, 0, 0, 5165, 5166, 7, 26, 0, 0, 5166, 5167, 7, 21, 0, 0, 5167, 5168, 7, 19, 0, 0, 5168, 5169, 7, 11, 0, 0, 5169, 5170, 7, 9, 0, 0, 5170, 5171, 7, 17, 0, 0, 5171, 5172, 7, 9, 0, 0, 5172, 5173, 7, 12, 0, 0, 5173, 5174, 7, 8, 0, 0, 5174, 5175, 7, 4, 0, 0, 5175, 976, 1, 0, 0, 0, 5176, 5177, 7, 26, 0, 0, 5177, 5178, 7, 21, 0, 0, 5178, 5179, 7, 2, 0, 0, 5179, 5180, 7, 11, 0, 0, 5180, 5181, 7, 8, 0, 0, 5181, 5182, 7, 9, 0, 0, 5182, 5183, 7, 11, 0, 0, 5183, 978, 1, 0, 0, 0, 5184, 5185, 7, 11, 0, 0, 5185, 5186, 7, 9, 0, 0, 5186, 5187, 7, 17, 0, 0, 5187, 5188, 7, 6, 0, 0, 5188, 5189, 7, 20, 0, 0, 5189, 5190, 7, 9, 0, 0, 5190, 980, 1, 0, 0, 0, 5191, 5192, 7, 11, 0, 0, 5192, 5193, 7, 9, 0, 0, 5193, 5194, 7, 4, 0, 0, 5194, 5195, 7, 8, 0, 0, 5195, 5196, 7, 11, 0, 0, 5196, 5197, 7, 19, 0, 0, 5197, 5198, 7, 7, 0, 0, 5198, 5199, 7, 8, 0, 0, 5199, 982, 1, 0, 0, 0, 5200, 5201, 7, 4, 0, 0, 5201, 5202, 7, 9, 0, 0, 5202, 5203, 7, 7, 0, 0, 5203, 5204, 7, 6, 0, 0, 5204, 5205, 7, 12, 0, 0, 5205, 5206, 7, 15, 0, 0, 5206, 5207, 7, 4, 0, 0, 5207, 984, 1, 0, 0, 0, 5208, 5209, 7, 4, 0, 0, 5209, 5210, 7, 9, 0, 0, 5210, 5211, 7, 4, 0, 0, 5211, 5212, 7, 4, 0, 0, 5212, 5213, 7, 19, 0, 0, 5213, 5214, 7, 6, 0, 0, 5214, 5215, 7, 12, 0, 0, 5215, 986, 1, 0, 0, 0, 5216, 5217, 7, 4, 0, 0, 5217, 5218, 7, 9, 0, 0, 5218, 5219, 7, 8, 0, 0, 5219, 5220, 7, 4, 0, 0, 5220, 988, 1, 0, 0, 0, 5221, 5222, 7, 4, 0, 0, 5222, 5223, 7, 19, 0, 0, 5223, 5224, 7, 14, 0, 0, 5224, 5225, 7, 9, 0, 0, 5225, 990, 1, 0, 0, 0, 5226, 5227, 7, 4, 0, 0, 5227, 5228, 7, 5, 0, 0, 5228, 5229, 7, 19, 0, 0, 5229, 5230, 7, 15, 0, 0, 5230, 5231, 7, 9, 0, 0, 5231, 992, 1, 0, 0, 0, 5232, 5233, 7, 4, 0, 0, 5233, 5234, 7, 8, 0, 0, 5234, 5235, 7, 9, 0, 0, 5235, 5236, 7, 24, 0, 0, 5236, 994, 1, 0, 0, 0, 5237, 5238, 7, 8, 0, 0, 5238, 5239, 7, 9, 0, 0, 5239, 5240, 7, 17, 0, 0, 5240, 5241, 7, 24, 0, 0, 5241, 5242, 7, 6, 0, 0, 5242, 5243, 7, 11, 0, 0, 5243, 5244, 7, 2, 0, 0, 5244, 5245, 7, 11, 0, 0, 5245, 5246, 7, 13, 0, 0, 5246, 996, 1, 0, 0, 0, 5247, 5248, 7, 8, 0, 0, 5248, 5249, 7, 19, 0, 0, 5249, 5250, 7, 17, 0, 0, 5250, 5251, 7, 9, 0, 0, 5251, 5252, 7, 7, 0, 0, 5252, 5253, 7, 6, 0, 0, 5253, 5254, 7, 5, 0, 0, 5254, 998, 1, 0, 0, 0, 5255, 5256, 7, 8, 0, 0, 5256, 5257, 7, 21, 0, 0, 5257, 5258, 7, 17, 0, 0, 5258, 5259, 7, 3, 0, 0, 5259, 5260, 7, 5, 0, 0, 5260, 5261, 7, 9, 0, 0, 5261, 1000, 1, 0, 0, 0, 5262, 5263, 7, 21, 0, 0, 5263, 5264, 7, 12, 0, 0, 5264, 5265, 7, 5, 0, 0, 5265, 5266, 7, 6, 0, 0, 5266, 5267, 7, 2, 0, 0, 5267, 5268, 7, 15, 0, 0, 5268, 1002, 1, 0, 0, 0, 5269, 5270, 7, 20, 0, 0, 5270, 5271, 7, 19, 0, 0, 5271, 5272, 7, 9, 0, 0, 5272, 5273, 7, 10, 0, 0, 5273, 1004, 1, 0, 0, 0, 5274, 5275, 7, 10, 0, 0, 5275, 5276, 7, 9, 0, 0, 5276, 5277, 7, 9, 0, 0, 5277, 5278, 7, 25, 0, 0, 5278, 1006, 1, 0, 0, 0, 5279, 5280, 7, 13, 0, 0, 5280, 5281, 7, 9, 0, 0, 5281, 5282, 7, 2, 0, 0, 5282, 5283, 7, 11, 0, 0, 5283, 5284, 7, 4, 0, 0, 5284, 1008, 1, 0, 0, 0, 5285, 5286, 7, 14, 0, 0, 5286, 5287, 7, 6, 0, 0, 5287, 5288, 7, 12, 0, 0, 5288, 5289, 7, 9, 0, 0, 5289, 1010, 1, 0, 0, 0, 5290, 5291, 5, 61, 0, 0, 5291, 1012, 1, 0, 0, 0, 5292, 5293, 5, 62, 0, 0, 5293, 1014, 1, 0, 0, 0, 5294, 5295, 5, 60, 0, 0, 5295, 1016, 1, 0, 0, 0, 5296, 5297, 5, 33, 0, 0, 5297, 1018, 1, 0, 0, 0, 5298, 5299, 5, 126, 0, 0, 5299, 1020, 1, 0, 0, 0, 5300, 5301, 5, 124, 0, 0, 5301, 1022, 1, 0, 0, 0, 5302, 5303, 5, 38, 0, 0, 5303, 1024, 1, 0, 0, 0, 5304, 5305, 5, 94, 0, 0, 5305, 1026, 1, 0, 0, 0, 5306, 5307, 5, 46, 0, 0, 5307, 1028, 1, 0, 0, 0, 5308, 5309, 5, 91, 0, 0, 5309, 1030, 1, 0, 0, 0, 5310, 5311, 5, 93, 0, 0, 5311, 1032, 1, 0, 0, 0, 5312, 5313, 5, 40, 0, 0, 5313, 1034, 1, 0, 0, 0, 5314, 5315, 5, 41, 0, 0, 5315, 1036, 1, 0, 0, 0, 5316, 5317, 5, 123, 0, 0, 5317, 1038, 1, 0, 0, 0, 5318, 5319, 5, 125, 0, 0, 5319, 1040, 1, 0, 0, 0, 5320, 5321, 5, 44, 0, 0, 5321, 1042, 1, 0, 0, 0, 5322, 5323, 5, 59, 0, 0, 5323, 1044, 1, 0, 0, 0, 5324, 5325, 5, 64, 0, 0, 5325, 1046, 1, 0, 0, 0, 5326, 5327, 5, 39, 0, 0, 5327, 1048, 1, 0, 0, 0, 5328, 5329, 5, 34, 0, 0, 5329, 1050, 1, 0, 0, 0, 5330, 5331, 5, 96, 0, 0, 5331, 1052, 1, 0, 0, 0, 5332, 5333, 5, 58, 0, 0, 5333, 1054, 1, 0, 0, 0, 5334, 5335, 5, 42, 0, 0, 5335, 1056, 1, 0, 0, 0, 5336, 5337, 5, 95, 0, 0, 5337, 1058, 1, 0, 0, 0, 5338, 5339, 5, 45, 0, 0, 5339, 1060, 1, 0, 0, 0, 5340, 5341, 5, 43, 0, 0, 5341, 1062, 1, 0, 0, 0, 5342, 5343, 5, 37, 0, 0, 5343, 1064, 1, 0, 0, 0, 5344, 5345, 5, 124, 0, 0, 5345, 5346, 5, 124, 0, 0, 5346, 1066, 1, 0, 0, 0, 5347, 5348, 5, 45, 0, 0, 5348, 5349, 5, 45, 0, 0, 5349, 1068, 1, 0, 0, 0, 5350, 5351, 5, 47, 0, 0, 5351, 1070, 1, 0, 0, 0, 5352, 5353, 5, 63, 0, 0, 5353, 1072, 1, 0, 0, 0, 5354, 5355, 5, 61, 0, 0, 5355, 5356, 5, 62, 0, 0, 5356, 1074, 1, 0, 0, 0, 5357, 5361, 3, 1095, 547, 0, 5358, 5361, 3, 1097, 548, 0, 5359, 5361, 3, 1101, 550, 0, 5360, 5357, 1, 0, 0, 0, 5360, 5358, 1, 0, 0, 0, 5360, 5359, 1, 0, 0, 0, 5361, 1076, 1, 0, 0, 0, 5362, 5364, 3, 1091, 545, 0, 5363, 5362, 1, 0, 0, 0, 5364, 5365, 1, 0, 0, 0, 5365, 5363, 1, 0, 0, 0, 5365, 5366, 1, 0, 0, 0, 5366, 1078, 1, 0, 0, 0, 5367, 5369, 3, 1091, 545, 0, 5368, 5367, 1, 0, 0, 0, 5369, 5370, 1, 0, 0, 0, 5370, 5368, 1, 0, 0, 0, 5370, 5371, 1, 0, 0, 0, 5371, 5373, 1, 0, 0, 0, 5372, 5368, 1, 0, 0, 0, 5372, 5373, 1, 0, 0, 0, 5373, 5374, 1, 0, 0, 0, 5374, 5376, 5, 46, 0, 0, 5375, 5377, 3, 1091, 545, 0, 5376, 5375, 1, 0, 0, 0, 5377, 5378, 1, 0, 0, 0, 5378, 5376, 1, 0, 0, 0, 5378, 5379, 1, 0, 0, 0, 5379, 5411, 1, 0, 0, 0, 5380, 5382, 3, 1091, 545, 0, 5381, 5380, 1, 0, 0, 0, 5382, 5383, 1, 0, 0, 0, 5383, 5381, 1, 0, 0, 0, 5383, 5384, 1, 0, 0, 0, 5384, 5385, 1, 0, 0, 0, 5385, 5386, 5, 46, 0, 0, 5386, 5387, 3, 1087, 543, 0, 5387, 5411, 1, 0, 0, 0, 5388, 5390, 3, 1091, 545, 0, 5389, 5388, 1, 0, 0, 0, 5390, 5391, 1, 0, 0, 0, 5391, 5389, 1, 0, 0, 0, 5391, 5392, 1, 0, 0, 0, 5392, 5394, 1, 0, 0, 0, 5393, 5389, 1, 0, 0, 0, 5393, 5394, 1, 0, 0, 0, 5394, 5395, 1, 0, 0, 0, 5395, 5397, 5, 46, 0, 0, 5396, 5398, 3, 1091, 545, 0, 5397, 5396, 1, 0, 0, 0, 5398, 5399, 1, 0, 0, 0, 5399, 5397, 1, 0, 0, 0, 5399, 5400, 1, 0, 0, 0, 5400, 5401, 1, 0, 0, 0, 5401, 5402, 3, 1087, 543, 0, 5402, 5411, 1, 0, 0, 0, 5403, 5405, 3, 1091, 545, 0, 5404, 5403, 1, 0, 0, 0, 5405, 5406, 1, 0, 0, 0, 5406, 5404, 1, 0, 0, 0, 5406, 5407, 1, 0, 0, 0, 5407, 5408, 1, 0, 0, 0, 5408, 5409, 3, 1087, 543, 0, 5409, 5411, 1, 0, 0, 0, 5410, 5372, 1, 0, 0, 0, 5410, 5381, 1, 0, 0, 0, 5410, 5393, 1, 0, 0, 0, 5410, 5404, 1, 0, 0, 0, 5411, 1080, 1, 0, 0, 0, 5412, 5413, 3, 1099, 549, 0, 5413, 1082, 1, 0, 0, 0, 5414, 5415, 3, 1089, 544, 0, 5415, 1084, 1, 0, 0, 0, 5416, 5424, 5, 96, 0, 0, 5417, 5418, 5, 92, 0, 0, 5418, 5423, 9, 0, 0, 0, 5419, 5420, 5, 96, 0, 0, 5420, 5423, 5, 96, 0, 0, 5421, 5423, 8, 28, 0, 0, 5422, 5417, 1, 0, 0, 0, 5422, 5419, 1, 0, 0, 0, 5422, 5421, 1, 0, 0, 0, 5423, 5426, 1, 0, 0, 0, 5424, 5422, 1, 0, 0, 0, 5424, 5425, 1, 0, 0, 0, 5425, 5427, 1, 0, 0, 0, 5426, 5424, 1, 0, 0, 0, 5427, 5428, 5, 96, 0, 0, 5428, 1086, 1, 0, 0, 0, 5429, 5431, 7, 9, 0, 0, 5430, 5432, 7, 29, 0, 0, 5431, 5430, 1, 0, 0, 0, 5431, 5432, 1, 0, 0, 0, 5432, 5434, 1, 0, 0, 0, 5433, 5435, 3, 1091, 545, 0, 5434, 5433, 1, 0, 0, 0, 5435, 5436, 1, 0, 0, 0, 5436, 5434, 1, 0, 0, 0, 5436, 5437, 1, 0, 0, 0, 5437, 1088, 1, 0, 0, 0, 5438, 5440, 7, 30, 0, 0, 5439, 5438, 1, 0, 0, 0, 5440, 5443, 1, 0, 0, 0, 5441, 5442, 1, 0, 0, 0, 5441, 5439, 1, 0, 0, 0, 5442, 5445, 1, 0, 0, 0, 5443, 5441, 1, 0, 0, 0, 5444, 5446, 7, 31, 0, 0, 5445, 5444, 1, 0, 0, 0, 5446, 5447, 1, 0, 0, 0, 5447, 5448, 1, 0, 0, 0, 5447, 5445, 1, 0, 0, 0, 5448, 5452, 1, 0, 0, 0, 5449, 5451, 7, 30, 0, 0, 5450, 5449, 1, 0, 0, 0, 5451, 5454, 1, 0, 0, 0, 5452, 5450, 1, 0, 0, 0, 5452, 5453, 1, 0, 0, 0, 5453, 1090, 1, 0, 0, 0, 5454, 5452, 1, 0, 0, 0, 5455, 5456, 7, 32, 0, 0, 5456, 1092, 1, 0, 0, 0, 5457, 5458, 7, 33, 0, 0, 5458, 1094, 1, 0, 0, 0, 5459, 5467, 5, 34, 0, 0, 5460, 5461, 5, 92, 0, 0, 5461, 5466, 9, 0, 0, 0, 5462, 5463, 5, 34, 0, 0, 5463, 5466, 5, 34, 0, 0, 5464, 5466, 8, 34, 0, 0, 5465, 5460, 1, 0, 0, 0, 5465, 5462, 1, 0, 0, 0, 5465, 5464, 1, 0, 0, 0, 5466, 5469, 1, 0, 0, 0, 5467, 5465, 1, 0, 0, 0, 5467, 5468, 1, 0, 0, 0, 5468, 5470, 1, 0, 0, 0, 5469, 5467, 1, 0, 0, 0, 5470, 5471, 5, 34, 0, 0, 5471, 1096, 1, 0, 0, 0, 5472, 5480, 5, 39, 0, 0, 5473, 5474, 5, 92, 0, 0, 5474, 5479, 9, 0, 0, 0, 5475, 5476, 5, 39, 0, 0, 5476, 5479, 5, 39, 0, 0, 5477, 5479, 8, 35, 0, 0, 5478, 5473, 1, 0, 0, 0, 5478, 5475, 1, 0, 0, 0, 5478, 5477, 1, 0, 0, 0, 5479, 5482, 1, 0, 0, 0, 5480, 5478, 1, 0, 0, 0, 5480, 5481, 1, 0, 0, 0, 5481, 5483, 1, 0, 0, 0, 5482, 5480, 1, 0, 0, 0, 5483, 5484, 5, 39, 0, 0, 5484, 1098, 1, 0, 0, 0, 5485, 5486, 7, 3, 0, 0, 5486, 5488, 5, 39, 0, 0, 5487, 5489, 7, 36, 0, 0, 5488, 5487, 1, 0, 0, 0, 5489, 5490, 1, 0, 0, 0, 5490, 5488, 1, 0, 0, 0, 5490, 5491, 1, 0, 0, 0, 5491, 5492, 1, 0, 0, 0, 5492, 5493, 5, 39, 0, 0, 5493, 1100, 1, 0, 0, 0, 5494, 5502, 5, 96, 0, 0, 5495, 5496, 5, 92, 0, 0, 5496, 5501, 9, 0, 0, 0, 5497, 5498, 5, 96, 0, 0, 5498, 5501, 5, 96, 0, 0, 5499, 5501, 8, 28, 0, 0, 5500, 5495, 1, 0, 0, 0, 5500, 5497, 1, 0, 0, 0, 5500, 5499, 1, 0, 0, 0, 5501, 5504, 1, 0, 0, 0, 5502, 5500, 1, 0, 0, 0, 5502, 5503, 1, 0, 0, 0, 5503, 5505, 1, 0, 0, 0, 5504, 5502, 1, 0, 0, 0, 5505, 5506, 5, 96, 0, 0, 5506, 1102, 1, 0, 0, 0, 34, 0, 1113, 1124, 1129, 1133, 1137, 1143, 1147, 1149, 5360, 5365, 5370, 5372, 5378, 5383, 5391, 5393, 5399, 5406, 5410, 5422, 5424, 5431, 5436, 5441, 5447, 5452, 5465, 5467, 5478, 5480, 5490, 5500, 5502, 1, 0, 1, 0] \ No newline at end of file +[4, 0, 544, 5531, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 2, 471, 7, 471, 2, 472, 7, 472, 2, 473, 7, 473, 2, 474, 7, 474, 2, 475, 7, 475, 2, 476, 7, 476, 2, 477, 7, 477, 2, 478, 7, 478, 2, 479, 7, 479, 2, 480, 7, 480, 2, 481, 7, 481, 2, 482, 7, 482, 2, 483, 7, 483, 2, 484, 7, 484, 2, 485, 7, 485, 2, 486, 7, 486, 2, 487, 7, 487, 2, 488, 7, 488, 2, 489, 7, 489, 2, 490, 7, 490, 2, 491, 7, 491, 2, 492, 7, 492, 2, 493, 7, 493, 2, 494, 7, 494, 2, 495, 7, 495, 2, 496, 7, 496, 2, 497, 7, 497, 2, 498, 7, 498, 2, 499, 7, 499, 2, 500, 7, 500, 2, 501, 7, 501, 2, 502, 7, 502, 2, 503, 7, 503, 2, 504, 7, 504, 2, 505, 7, 505, 2, 506, 7, 506, 2, 507, 7, 507, 2, 508, 7, 508, 2, 509, 7, 509, 2, 510, 7, 510, 2, 511, 7, 511, 2, 512, 7, 512, 2, 513, 7, 513, 2, 514, 7, 514, 2, 515, 7, 515, 2, 516, 7, 516, 2, 517, 7, 517, 2, 518, 7, 518, 2, 519, 7, 519, 2, 520, 7, 520, 2, 521, 7, 521, 2, 522, 7, 522, 2, 523, 7, 523, 2, 524, 7, 524, 2, 525, 7, 525, 2, 526, 7, 526, 2, 527, 7, 527, 2, 528, 7, 528, 2, 529, 7, 529, 2, 530, 7, 530, 2, 531, 7, 531, 2, 532, 7, 532, 2, 533, 7, 533, 2, 534, 7, 534, 2, 535, 7, 535, 2, 536, 7, 536, 2, 537, 7, 537, 2, 538, 7, 538, 2, 539, 7, 539, 2, 540, 7, 540, 2, 541, 7, 541, 2, 542, 7, 542, 2, 543, 7, 543, 2, 544, 7, 544, 2, 545, 7, 545, 2, 546, 7, 546, 2, 547, 7, 547, 2, 548, 7, 548, 2, 549, 7, 549, 2, 550, 7, 550, 2, 551, 7, 551, 2, 552, 7, 552, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1116, 8, 1, 10, 1, 12, 1, 1119, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 3, 2, 1129, 8, 2, 1, 2, 5, 2, 1132, 8, 2, 10, 2, 12, 2, 1135, 9, 2, 1, 2, 3, 2, 1138, 8, 2, 1, 2, 1, 2, 3, 2, 1142, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1148, 8, 2, 1, 2, 1, 2, 3, 2, 1152, 8, 2, 3, 2, 1154, 8, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 454, 1, 454, 1, 454, 1, 454, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 468, 1, 468, 1, 468, 1, 468, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 1, 471, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 502, 1, 502, 1, 502, 1, 502, 1, 502, 1, 502, 1, 502, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 505, 1, 505, 1, 505, 1, 505, 1, 505, 1, 505, 1, 506, 1, 506, 1, 506, 1, 506, 1, 506, 1, 507, 1, 507, 1, 508, 1, 508, 1, 509, 1, 509, 1, 510, 1, 510, 1, 511, 1, 511, 1, 512, 1, 512, 1, 513, 1, 513, 1, 514, 1, 514, 1, 515, 1, 515, 1, 516, 1, 516, 1, 517, 1, 517, 1, 518, 1, 518, 1, 519, 1, 519, 1, 520, 1, 520, 1, 521, 1, 521, 1, 522, 1, 522, 1, 523, 1, 523, 1, 524, 1, 524, 1, 525, 1, 525, 1, 526, 1, 526, 1, 527, 1, 527, 1, 528, 1, 528, 1, 529, 1, 529, 1, 530, 1, 530, 1, 531, 1, 531, 1, 532, 1, 532, 1, 533, 1, 533, 1, 534, 1, 534, 1, 534, 1, 535, 1, 535, 1, 535, 1, 536, 1, 536, 1, 537, 1, 537, 1, 538, 1, 538, 1, 538, 1, 539, 1, 539, 1, 539, 3, 539, 5385, 8, 539, 1, 540, 4, 540, 5388, 8, 540, 11, 540, 12, 540, 5389, 1, 541, 4, 541, 5393, 8, 541, 11, 541, 12, 541, 5394, 3, 541, 5397, 8, 541, 1, 541, 1, 541, 4, 541, 5401, 8, 541, 11, 541, 12, 541, 5402, 1, 541, 4, 541, 5406, 8, 541, 11, 541, 12, 541, 5407, 1, 541, 1, 541, 1, 541, 1, 541, 4, 541, 5414, 8, 541, 11, 541, 12, 541, 5415, 3, 541, 5418, 8, 541, 1, 541, 1, 541, 4, 541, 5422, 8, 541, 11, 541, 12, 541, 5423, 1, 541, 1, 541, 1, 541, 4, 541, 5429, 8, 541, 11, 541, 12, 541, 5430, 1, 541, 1, 541, 3, 541, 5435, 8, 541, 1, 542, 1, 542, 1, 543, 1, 543, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 5, 544, 5447, 8, 544, 10, 544, 12, 544, 5450, 9, 544, 1, 544, 1, 544, 1, 545, 1, 545, 3, 545, 5456, 8, 545, 1, 545, 4, 545, 5459, 8, 545, 11, 545, 12, 545, 5460, 1, 546, 5, 546, 5464, 8, 546, 10, 546, 12, 546, 5467, 9, 546, 1, 546, 4, 546, 5470, 8, 546, 11, 546, 12, 546, 5471, 1, 546, 5, 546, 5475, 8, 546, 10, 546, 12, 546, 5478, 9, 546, 1, 547, 1, 547, 1, 548, 1, 548, 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 5, 549, 5490, 8, 549, 10, 549, 12, 549, 5493, 9, 549, 1, 549, 1, 549, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 5, 550, 5503, 8, 550, 10, 550, 12, 550, 5506, 9, 550, 1, 550, 1, 550, 1, 551, 1, 551, 1, 551, 4, 551, 5513, 8, 551, 11, 551, 12, 551, 5514, 1, 551, 1, 551, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 5, 552, 5525, 8, 552, 10, 552, 12, 552, 5528, 9, 552, 1, 552, 1, 552, 3, 1117, 5465, 5471, 0, 553, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 201, 403, 202, 405, 203, 407, 204, 409, 205, 411, 206, 413, 207, 415, 208, 417, 209, 419, 210, 421, 211, 423, 212, 425, 213, 427, 214, 429, 215, 431, 216, 433, 217, 435, 218, 437, 219, 439, 220, 441, 221, 443, 222, 445, 223, 447, 224, 449, 225, 451, 226, 453, 227, 455, 228, 457, 229, 459, 230, 461, 231, 463, 232, 465, 233, 467, 234, 469, 235, 471, 236, 473, 237, 475, 238, 477, 239, 479, 240, 481, 241, 483, 242, 485, 243, 487, 244, 489, 245, 491, 246, 493, 247, 495, 248, 497, 249, 499, 250, 501, 251, 503, 252, 505, 253, 507, 254, 509, 255, 511, 256, 513, 257, 515, 258, 517, 259, 519, 260, 521, 261, 523, 262, 525, 263, 527, 264, 529, 265, 531, 266, 533, 267, 535, 268, 537, 269, 539, 270, 541, 271, 543, 272, 545, 273, 547, 274, 549, 275, 551, 276, 553, 277, 555, 278, 557, 279, 559, 280, 561, 281, 563, 282, 565, 283, 567, 284, 569, 285, 571, 286, 573, 287, 575, 288, 577, 289, 579, 290, 581, 291, 583, 292, 585, 293, 587, 294, 589, 295, 591, 296, 593, 297, 595, 298, 597, 299, 599, 300, 601, 301, 603, 302, 605, 303, 607, 304, 609, 305, 611, 306, 613, 307, 615, 308, 617, 309, 619, 310, 621, 311, 623, 312, 625, 313, 627, 314, 629, 315, 631, 316, 633, 317, 635, 318, 637, 319, 639, 320, 641, 321, 643, 322, 645, 323, 647, 324, 649, 325, 651, 326, 653, 327, 655, 328, 657, 329, 659, 330, 661, 331, 663, 332, 665, 333, 667, 334, 669, 335, 671, 336, 673, 337, 675, 338, 677, 339, 679, 340, 681, 341, 683, 342, 685, 343, 687, 344, 689, 345, 691, 346, 693, 347, 695, 348, 697, 349, 699, 350, 701, 351, 703, 352, 705, 353, 707, 354, 709, 355, 711, 356, 713, 357, 715, 358, 717, 359, 719, 360, 721, 361, 723, 362, 725, 363, 727, 364, 729, 365, 731, 366, 733, 367, 735, 368, 737, 369, 739, 370, 741, 371, 743, 372, 745, 373, 747, 374, 749, 375, 751, 376, 753, 377, 755, 378, 757, 379, 759, 380, 761, 381, 763, 382, 765, 383, 767, 384, 769, 385, 771, 386, 773, 387, 775, 388, 777, 389, 779, 390, 781, 391, 783, 392, 785, 393, 787, 394, 789, 395, 791, 396, 793, 397, 795, 398, 797, 399, 799, 400, 801, 401, 803, 402, 805, 403, 807, 404, 809, 405, 811, 406, 813, 407, 815, 408, 817, 409, 819, 410, 821, 411, 823, 412, 825, 413, 827, 414, 829, 415, 831, 416, 833, 417, 835, 418, 837, 419, 839, 420, 841, 421, 843, 422, 845, 423, 847, 424, 849, 425, 851, 426, 853, 427, 855, 428, 857, 429, 859, 430, 861, 431, 863, 432, 865, 433, 867, 434, 869, 435, 871, 436, 873, 437, 875, 438, 877, 439, 879, 440, 881, 441, 883, 442, 885, 443, 887, 444, 889, 445, 891, 446, 893, 447, 895, 448, 897, 449, 899, 450, 901, 451, 903, 452, 905, 453, 907, 454, 909, 455, 911, 456, 913, 457, 915, 458, 917, 459, 919, 460, 921, 461, 923, 462, 925, 463, 927, 464, 929, 465, 931, 466, 933, 467, 935, 468, 937, 469, 939, 470, 941, 471, 943, 472, 945, 473, 947, 474, 949, 475, 951, 476, 953, 477, 955, 478, 957, 479, 959, 480, 961, 481, 963, 482, 965, 483, 967, 484, 969, 485, 971, 486, 973, 487, 975, 488, 977, 489, 979, 490, 981, 491, 983, 492, 985, 493, 987, 494, 989, 495, 991, 496, 993, 497, 995, 498, 997, 499, 999, 500, 1001, 501, 1003, 502, 1005, 503, 1007, 504, 1009, 505, 1011, 506, 1013, 507, 1015, 508, 1017, 509, 1019, 510, 1021, 511, 1023, 512, 1025, 513, 1027, 514, 1029, 515, 1031, 516, 1033, 517, 1035, 518, 1037, 519, 1039, 520, 1041, 521, 1043, 522, 1045, 523, 1047, 524, 1049, 525, 1051, 526, 1053, 527, 1055, 528, 1057, 529, 1059, 530, 1061, 531, 1063, 532, 1065, 533, 1067, 534, 1069, 535, 1071, 536, 1073, 537, 1075, 538, 1077, 539, 1079, 540, 1081, 541, 1083, 542, 1085, 543, 1087, 544, 1089, 0, 1091, 0, 1093, 0, 1095, 0, 1097, 0, 1099, 0, 1101, 0, 1103, 0, 1105, 0, 1, 0, 37, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 10, 10, 13, 13, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 83, 83, 115, 115, 2, 0, 76, 76, 108, 108, 2, 0, 79, 79, 111, 111, 2, 0, 67, 67, 99, 99, 2, 0, 84, 84, 116, 116, 2, 0, 69, 69, 101, 101, 2, 0, 87, 87, 119, 119, 2, 0, 82, 82, 114, 114, 2, 0, 78, 78, 110, 110, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 2, 0, 68, 68, 100, 100, 2, 0, 71, 71, 103, 103, 2, 0, 77, 77, 109, 109, 2, 0, 88, 88, 120, 120, 2, 0, 73, 73, 105, 105, 2, 0, 86, 86, 118, 118, 2, 0, 85, 85, 117, 117, 2, 0, 72, 72, 104, 104, 2, 0, 70, 70, 102, 102, 2, 0, 80, 80, 112, 112, 2, 0, 75, 75, 107, 107, 2, 0, 81, 81, 113, 113, 2, 0, 74, 74, 106, 106, 2, 0, 92, 92, 96, 96, 2, 0, 43, 43, 45, 45, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 3, 0, 65, 90, 95, 95, 97, 122, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 1, 0, 48, 49, 5561, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 401, 1, 0, 0, 0, 0, 403, 1, 0, 0, 0, 0, 405, 1, 0, 0, 0, 0, 407, 1, 0, 0, 0, 0, 409, 1, 0, 0, 0, 0, 411, 1, 0, 0, 0, 0, 413, 1, 0, 0, 0, 0, 415, 1, 0, 0, 0, 0, 417, 1, 0, 0, 0, 0, 419, 1, 0, 0, 0, 0, 421, 1, 0, 0, 0, 0, 423, 1, 0, 0, 0, 0, 425, 1, 0, 0, 0, 0, 427, 1, 0, 0, 0, 0, 429, 1, 0, 0, 0, 0, 431, 1, 0, 0, 0, 0, 433, 1, 0, 0, 0, 0, 435, 1, 0, 0, 0, 0, 437, 1, 0, 0, 0, 0, 439, 1, 0, 0, 0, 0, 441, 1, 0, 0, 0, 0, 443, 1, 0, 0, 0, 0, 445, 1, 0, 0, 0, 0, 447, 1, 0, 0, 0, 0, 449, 1, 0, 0, 0, 0, 451, 1, 0, 0, 0, 0, 453, 1, 0, 0, 0, 0, 455, 1, 0, 0, 0, 0, 457, 1, 0, 0, 0, 0, 459, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 541, 1, 0, 0, 0, 0, 543, 1, 0, 0, 0, 0, 545, 1, 0, 0, 0, 0, 547, 1, 0, 0, 0, 0, 549, 1, 0, 0, 0, 0, 551, 1, 0, 0, 0, 0, 553, 1, 0, 0, 0, 0, 555, 1, 0, 0, 0, 0, 557, 1, 0, 0, 0, 0, 559, 1, 0, 0, 0, 0, 561, 1, 0, 0, 0, 0, 563, 1, 0, 0, 0, 0, 565, 1, 0, 0, 0, 0, 567, 1, 0, 0, 0, 0, 569, 1, 0, 0, 0, 0, 571, 1, 0, 0, 0, 0, 573, 1, 0, 0, 0, 0, 575, 1, 0, 0, 0, 0, 577, 1, 0, 0, 0, 0, 579, 1, 0, 0, 0, 0, 581, 1, 0, 0, 0, 0, 583, 1, 0, 0, 0, 0, 585, 1, 0, 0, 0, 0, 587, 1, 0, 0, 0, 0, 589, 1, 0, 0, 0, 0, 591, 1, 0, 0, 0, 0, 593, 1, 0, 0, 0, 0, 595, 1, 0, 0, 0, 0, 597, 1, 0, 0, 0, 0, 599, 1, 0, 0, 0, 0, 601, 1, 0, 0, 0, 0, 603, 1, 0, 0, 0, 0, 605, 1, 0, 0, 0, 0, 607, 1, 0, 0, 0, 0, 609, 1, 0, 0, 0, 0, 611, 1, 0, 0, 0, 0, 613, 1, 0, 0, 0, 0, 615, 1, 0, 0, 0, 0, 617, 1, 0, 0, 0, 0, 619, 1, 0, 0, 0, 0, 621, 1, 0, 0, 0, 0, 623, 1, 0, 0, 0, 0, 625, 1, 0, 0, 0, 0, 627, 1, 0, 0, 0, 0, 629, 1, 0, 0, 0, 0, 631, 1, 0, 0, 0, 0, 633, 1, 0, 0, 0, 0, 635, 1, 0, 0, 0, 0, 637, 1, 0, 0, 0, 0, 639, 1, 0, 0, 0, 0, 641, 1, 0, 0, 0, 0, 643, 1, 0, 0, 0, 0, 645, 1, 0, 0, 0, 0, 647, 1, 0, 0, 0, 0, 649, 1, 0, 0, 0, 0, 651, 1, 0, 0, 0, 0, 653, 1, 0, 0, 0, 0, 655, 1, 0, 0, 0, 0, 657, 1, 0, 0, 0, 0, 659, 1, 0, 0, 0, 0, 661, 1, 0, 0, 0, 0, 663, 1, 0, 0, 0, 0, 665, 1, 0, 0, 0, 0, 667, 1, 0, 0, 0, 0, 669, 1, 0, 0, 0, 0, 671, 1, 0, 0, 0, 0, 673, 1, 0, 0, 0, 0, 675, 1, 0, 0, 0, 0, 677, 1, 0, 0, 0, 0, 679, 1, 0, 0, 0, 0, 681, 1, 0, 0, 0, 0, 683, 1, 0, 0, 0, 0, 685, 1, 0, 0, 0, 0, 687, 1, 0, 0, 0, 0, 689, 1, 0, 0, 0, 0, 691, 1, 0, 0, 0, 0, 693, 1, 0, 0, 0, 0, 695, 1, 0, 0, 0, 0, 697, 1, 0, 0, 0, 0, 699, 1, 0, 0, 0, 0, 701, 1, 0, 0, 0, 0, 703, 1, 0, 0, 0, 0, 705, 1, 0, 0, 0, 0, 707, 1, 0, 0, 0, 0, 709, 1, 0, 0, 0, 0, 711, 1, 0, 0, 0, 0, 713, 1, 0, 0, 0, 0, 715, 1, 0, 0, 0, 0, 717, 1, 0, 0, 0, 0, 719, 1, 0, 0, 0, 0, 721, 1, 0, 0, 0, 0, 723, 1, 0, 0, 0, 0, 725, 1, 0, 0, 0, 0, 727, 1, 0, 0, 0, 0, 729, 1, 0, 0, 0, 0, 731, 1, 0, 0, 0, 0, 733, 1, 0, 0, 0, 0, 735, 1, 0, 0, 0, 0, 737, 1, 0, 0, 0, 0, 739, 1, 0, 0, 0, 0, 741, 1, 0, 0, 0, 0, 743, 1, 0, 0, 0, 0, 745, 1, 0, 0, 0, 0, 747, 1, 0, 0, 0, 0, 749, 1, 0, 0, 0, 0, 751, 1, 0, 0, 0, 0, 753, 1, 0, 0, 0, 0, 755, 1, 0, 0, 0, 0, 757, 1, 0, 0, 0, 0, 759, 1, 0, 0, 0, 0, 761, 1, 0, 0, 0, 0, 763, 1, 0, 0, 0, 0, 765, 1, 0, 0, 0, 0, 767, 1, 0, 0, 0, 0, 769, 1, 0, 0, 0, 0, 771, 1, 0, 0, 0, 0, 773, 1, 0, 0, 0, 0, 775, 1, 0, 0, 0, 0, 777, 1, 0, 0, 0, 0, 779, 1, 0, 0, 0, 0, 781, 1, 0, 0, 0, 0, 783, 1, 0, 0, 0, 0, 785, 1, 0, 0, 0, 0, 787, 1, 0, 0, 0, 0, 789, 1, 0, 0, 0, 0, 791, 1, 0, 0, 0, 0, 793, 1, 0, 0, 0, 0, 795, 1, 0, 0, 0, 0, 797, 1, 0, 0, 0, 0, 799, 1, 0, 0, 0, 0, 801, 1, 0, 0, 0, 0, 803, 1, 0, 0, 0, 0, 805, 1, 0, 0, 0, 0, 807, 1, 0, 0, 0, 0, 809, 1, 0, 0, 0, 0, 811, 1, 0, 0, 0, 0, 813, 1, 0, 0, 0, 0, 815, 1, 0, 0, 0, 0, 817, 1, 0, 0, 0, 0, 819, 1, 0, 0, 0, 0, 821, 1, 0, 0, 0, 0, 823, 1, 0, 0, 0, 0, 825, 1, 0, 0, 0, 0, 827, 1, 0, 0, 0, 0, 829, 1, 0, 0, 0, 0, 831, 1, 0, 0, 0, 0, 833, 1, 0, 0, 0, 0, 835, 1, 0, 0, 0, 0, 837, 1, 0, 0, 0, 0, 839, 1, 0, 0, 0, 0, 841, 1, 0, 0, 0, 0, 843, 1, 0, 0, 0, 0, 845, 1, 0, 0, 0, 0, 847, 1, 0, 0, 0, 0, 849, 1, 0, 0, 0, 0, 851, 1, 0, 0, 0, 0, 853, 1, 0, 0, 0, 0, 855, 1, 0, 0, 0, 0, 857, 1, 0, 0, 0, 0, 859, 1, 0, 0, 0, 0, 861, 1, 0, 0, 0, 0, 863, 1, 0, 0, 0, 0, 865, 1, 0, 0, 0, 0, 867, 1, 0, 0, 0, 0, 869, 1, 0, 0, 0, 0, 871, 1, 0, 0, 0, 0, 873, 1, 0, 0, 0, 0, 875, 1, 0, 0, 0, 0, 877, 1, 0, 0, 0, 0, 879, 1, 0, 0, 0, 0, 881, 1, 0, 0, 0, 0, 883, 1, 0, 0, 0, 0, 885, 1, 0, 0, 0, 0, 887, 1, 0, 0, 0, 0, 889, 1, 0, 0, 0, 0, 891, 1, 0, 0, 0, 0, 893, 1, 0, 0, 0, 0, 895, 1, 0, 0, 0, 0, 897, 1, 0, 0, 0, 0, 899, 1, 0, 0, 0, 0, 901, 1, 0, 0, 0, 0, 903, 1, 0, 0, 0, 0, 905, 1, 0, 0, 0, 0, 907, 1, 0, 0, 0, 0, 909, 1, 0, 0, 0, 0, 911, 1, 0, 0, 0, 0, 913, 1, 0, 0, 0, 0, 915, 1, 0, 0, 0, 0, 917, 1, 0, 0, 0, 0, 919, 1, 0, 0, 0, 0, 921, 1, 0, 0, 0, 0, 923, 1, 0, 0, 0, 0, 925, 1, 0, 0, 0, 0, 927, 1, 0, 0, 0, 0, 929, 1, 0, 0, 0, 0, 931, 1, 0, 0, 0, 0, 933, 1, 0, 0, 0, 0, 935, 1, 0, 0, 0, 0, 937, 1, 0, 0, 0, 0, 939, 1, 0, 0, 0, 0, 941, 1, 0, 0, 0, 0, 943, 1, 0, 0, 0, 0, 945, 1, 0, 0, 0, 0, 947, 1, 0, 0, 0, 0, 949, 1, 0, 0, 0, 0, 951, 1, 0, 0, 0, 0, 953, 1, 0, 0, 0, 0, 955, 1, 0, 0, 0, 0, 957, 1, 0, 0, 0, 0, 959, 1, 0, 0, 0, 0, 961, 1, 0, 0, 0, 0, 963, 1, 0, 0, 0, 0, 965, 1, 0, 0, 0, 0, 967, 1, 0, 0, 0, 0, 969, 1, 0, 0, 0, 0, 971, 1, 0, 0, 0, 0, 973, 1, 0, 0, 0, 0, 975, 1, 0, 0, 0, 0, 977, 1, 0, 0, 0, 0, 979, 1, 0, 0, 0, 0, 981, 1, 0, 0, 0, 0, 983, 1, 0, 0, 0, 0, 985, 1, 0, 0, 0, 0, 987, 1, 0, 0, 0, 0, 989, 1, 0, 0, 0, 0, 991, 1, 0, 0, 0, 0, 993, 1, 0, 0, 0, 0, 995, 1, 0, 0, 0, 0, 997, 1, 0, 0, 0, 0, 999, 1, 0, 0, 0, 0, 1001, 1, 0, 0, 0, 0, 1003, 1, 0, 0, 0, 0, 1005, 1, 0, 0, 0, 0, 1007, 1, 0, 0, 0, 0, 1009, 1, 0, 0, 0, 0, 1011, 1, 0, 0, 0, 0, 1013, 1, 0, 0, 0, 0, 1015, 1, 0, 0, 0, 0, 1017, 1, 0, 0, 0, 0, 1019, 1, 0, 0, 0, 0, 1021, 1, 0, 0, 0, 0, 1023, 1, 0, 0, 0, 0, 1025, 1, 0, 0, 0, 0, 1027, 1, 0, 0, 0, 0, 1029, 1, 0, 0, 0, 0, 1031, 1, 0, 0, 0, 0, 1033, 1, 0, 0, 0, 0, 1035, 1, 0, 0, 0, 0, 1037, 1, 0, 0, 0, 0, 1039, 1, 0, 0, 0, 0, 1041, 1, 0, 0, 0, 0, 1043, 1, 0, 0, 0, 0, 1045, 1, 0, 0, 0, 0, 1047, 1, 0, 0, 0, 0, 1049, 1, 0, 0, 0, 0, 1051, 1, 0, 0, 0, 0, 1053, 1, 0, 0, 0, 0, 1055, 1, 0, 0, 0, 0, 1057, 1, 0, 0, 0, 0, 1059, 1, 0, 0, 0, 0, 1061, 1, 0, 0, 0, 0, 1063, 1, 0, 0, 0, 0, 1065, 1, 0, 0, 0, 0, 1067, 1, 0, 0, 0, 0, 1069, 1, 0, 0, 0, 0, 1071, 1, 0, 0, 0, 0, 1073, 1, 0, 0, 0, 0, 1075, 1, 0, 0, 0, 0, 1077, 1, 0, 0, 0, 0, 1079, 1, 0, 0, 0, 0, 1081, 1, 0, 0, 0, 0, 1083, 1, 0, 0, 0, 0, 1085, 1, 0, 0, 0, 0, 1087, 1, 0, 0, 0, 1, 1107, 1, 0, 0, 0, 3, 1111, 1, 0, 0, 0, 5, 1153, 1, 0, 0, 0, 7, 1157, 1, 0, 0, 0, 9, 1161, 1, 0, 0, 0, 11, 1165, 1, 0, 0, 0, 13, 1174, 1, 0, 0, 0, 15, 1180, 1, 0, 0, 0, 17, 1186, 1, 0, 0, 0, 19, 1194, 1, 0, 0, 0, 21, 1198, 1, 0, 0, 0, 23, 1202, 1, 0, 0, 0, 25, 1206, 1, 0, 0, 0, 27, 1212, 1, 0, 0, 0, 29, 1222, 1, 0, 0, 0, 31, 1239, 1, 0, 0, 0, 33, 1261, 1, 0, 0, 0, 35, 1264, 1, 0, 0, 0, 37, 1275, 1, 0, 0, 0, 39, 1286, 1, 0, 0, 0, 41, 1289, 1, 0, 0, 0, 43, 1296, 1, 0, 0, 0, 45, 1310, 1, 0, 0, 0, 47, 1314, 1, 0, 0, 0, 49, 1320, 1, 0, 0, 0, 51, 1332, 1, 0, 0, 0, 53, 1348, 1, 0, 0, 0, 55, 1356, 1, 0, 0, 0, 57, 1363, 1, 0, 0, 0, 59, 1370, 1, 0, 0, 0, 61, 1374, 1, 0, 0, 0, 63, 1379, 1, 0, 0, 0, 65, 1387, 1, 0, 0, 0, 67, 1392, 1, 0, 0, 0, 69, 1395, 1, 0, 0, 0, 71, 1401, 1, 0, 0, 0, 73, 1406, 1, 0, 0, 0, 75, 1413, 1, 0, 0, 0, 77, 1425, 1, 0, 0, 0, 79, 1434, 1, 0, 0, 0, 81, 1439, 1, 0, 0, 0, 83, 1444, 1, 0, 0, 0, 85, 1453, 1, 0, 0, 0, 87, 1458, 1, 0, 0, 0, 89, 1466, 1, 0, 0, 0, 91, 1481, 1, 0, 0, 0, 93, 1486, 1, 0, 0, 0, 95, 1496, 1, 0, 0, 0, 97, 1513, 1, 0, 0, 0, 99, 1525, 1, 0, 0, 0, 101, 1531, 1, 0, 0, 0, 103, 1542, 1, 0, 0, 0, 105, 1547, 1, 0, 0, 0, 107, 1553, 1, 0, 0, 0, 109, 1562, 1, 0, 0, 0, 111, 1570, 1, 0, 0, 0, 113, 1578, 1, 0, 0, 0, 115, 1585, 1, 0, 0, 0, 117, 1593, 1, 0, 0, 0, 119, 1601, 1, 0, 0, 0, 121, 1608, 1, 0, 0, 0, 123, 1616, 1, 0, 0, 0, 125, 1626, 1, 0, 0, 0, 127, 1634, 1, 0, 0, 0, 129, 1645, 1, 0, 0, 0, 131, 1654, 1, 0, 0, 0, 133, 1662, 1, 0, 0, 0, 135, 1667, 1, 0, 0, 0, 137, 1681, 1, 0, 0, 0, 139, 1687, 1, 0, 0, 0, 141, 1697, 1, 0, 0, 0, 143, 1708, 1, 0, 0, 0, 145, 1715, 1, 0, 0, 0, 147, 1721, 1, 0, 0, 0, 149, 1726, 1, 0, 0, 0, 151, 1736, 1, 0, 0, 0, 153, 1744, 1, 0, 0, 0, 155, 1760, 1, 0, 0, 0, 157, 1773, 1, 0, 0, 0, 159, 1805, 1, 0, 0, 0, 161, 1818, 1, 0, 0, 0, 163, 1831, 1, 0, 0, 0, 165, 1843, 1, 0, 0, 0, 167, 1858, 1, 0, 0, 0, 169, 1871, 1, 0, 0, 0, 171, 1889, 1, 0, 0, 0, 173, 1922, 1, 0, 0, 0, 175, 1935, 1, 0, 0, 0, 177, 1942, 1, 0, 0, 0, 179, 1948, 1, 0, 0, 0, 181, 1958, 1, 0, 0, 0, 183, 1963, 1, 0, 0, 0, 185, 1972, 1, 0, 0, 0, 187, 1986, 1, 0, 0, 0, 189, 2001, 1, 0, 0, 0, 191, 2011, 1, 0, 0, 0, 193, 2022, 1, 0, 0, 0, 195, 2026, 1, 0, 0, 0, 197, 2036, 1, 0, 0, 0, 199, 2046, 1, 0, 0, 0, 201, 2057, 1, 0, 0, 0, 203, 2061, 1, 0, 0, 0, 205, 2069, 1, 0, 0, 0, 207, 2077, 1, 0, 0, 0, 209, 2085, 1, 0, 0, 0, 211, 2092, 1, 0, 0, 0, 213, 2099, 1, 0, 0, 0, 215, 2110, 1, 0, 0, 0, 217, 2116, 1, 0, 0, 0, 219, 2125, 1, 0, 0, 0, 221, 2139, 1, 0, 0, 0, 223, 2148, 1, 0, 0, 0, 225, 2159, 1, 0, 0, 0, 227, 2168, 1, 0, 0, 0, 229, 2172, 1, 0, 0, 0, 231, 2179, 1, 0, 0, 0, 233, 2184, 1, 0, 0, 0, 235, 2192, 1, 0, 0, 0, 237, 2197, 1, 0, 0, 0, 239, 2205, 1, 0, 0, 0, 241, 2210, 1, 0, 0, 0, 243, 2216, 1, 0, 0, 0, 245, 2220, 1, 0, 0, 0, 247, 2230, 1, 0, 0, 0, 249, 2244, 1, 0, 0, 0, 251, 2253, 1, 0, 0, 0, 253, 2260, 1, 0, 0, 0, 255, 2267, 1, 0, 0, 0, 257, 2282, 1, 0, 0, 0, 259, 2288, 1, 0, 0, 0, 261, 2295, 1, 0, 0, 0, 263, 2300, 1, 0, 0, 0, 265, 2308, 1, 0, 0, 0, 267, 2315, 1, 0, 0, 0, 269, 2319, 1, 0, 0, 0, 271, 2327, 1, 0, 0, 0, 273, 2334, 1, 0, 0, 0, 275, 2343, 1, 0, 0, 0, 277, 2352, 1, 0, 0, 0, 279, 2360, 1, 0, 0, 0, 281, 2366, 1, 0, 0, 0, 283, 2372, 1, 0, 0, 0, 285, 2379, 1, 0, 0, 0, 287, 2391, 1, 0, 0, 0, 289, 2397, 1, 0, 0, 0, 291, 2403, 1, 0, 0, 0, 293, 2413, 1, 0, 0, 0, 295, 2417, 1, 0, 0, 0, 297, 2425, 1, 0, 0, 0, 299, 2435, 1, 0, 0, 0, 301, 2440, 1, 0, 0, 0, 303, 2447, 1, 0, 0, 0, 305, 2452, 1, 0, 0, 0, 307, 2457, 1, 0, 0, 0, 309, 2466, 1, 0, 0, 0, 311, 2476, 1, 0, 0, 0, 313, 2483, 1, 0, 0, 0, 315, 2487, 1, 0, 0, 0, 317, 2494, 1, 0, 0, 0, 319, 2500, 1, 0, 0, 0, 321, 2506, 1, 0, 0, 0, 323, 2515, 1, 0, 0, 0, 325, 2522, 1, 0, 0, 0, 327, 2535, 1, 0, 0, 0, 329, 2542, 1, 0, 0, 0, 331, 2547, 1, 0, 0, 0, 333, 2552, 1, 0, 0, 0, 335, 2561, 1, 0, 0, 0, 337, 2564, 1, 0, 0, 0, 339, 2570, 1, 0, 0, 0, 341, 2577, 1, 0, 0, 0, 343, 2580, 1, 0, 0, 0, 345, 2588, 1, 0, 0, 0, 347, 2598, 1, 0, 0, 0, 349, 2606, 1, 0, 0, 0, 351, 2612, 1, 0, 0, 0, 353, 2618, 1, 0, 0, 0, 355, 2630, 1, 0, 0, 0, 357, 2637, 1, 0, 0, 0, 359, 2641, 1, 0, 0, 0, 361, 2649, 1, 0, 0, 0, 363, 2659, 1, 0, 0, 0, 365, 2672, 1, 0, 0, 0, 367, 2681, 1, 0, 0, 0, 369, 2686, 1, 0, 0, 0, 371, 2689, 1, 0, 0, 0, 373, 2694, 1, 0, 0, 0, 375, 2699, 1, 0, 0, 0, 377, 2710, 1, 0, 0, 0, 379, 2724, 1, 0, 0, 0, 381, 2744, 1, 0, 0, 0, 383, 2756, 1, 0, 0, 0, 385, 2768, 1, 0, 0, 0, 387, 2783, 1, 0, 0, 0, 389, 2794, 1, 0, 0, 0, 391, 2805, 1, 0, 0, 0, 393, 2809, 1, 0, 0, 0, 395, 2818, 1, 0, 0, 0, 397, 2824, 1, 0, 0, 0, 399, 2835, 1, 0, 0, 0, 401, 2843, 1, 0, 0, 0, 403, 2848, 1, 0, 0, 0, 405, 2856, 1, 0, 0, 0, 407, 2861, 1, 0, 0, 0, 409, 2866, 1, 0, 0, 0, 411, 2877, 1, 0, 0, 0, 413, 2883, 1, 0, 0, 0, 415, 2886, 1, 0, 0, 0, 417, 2892, 1, 0, 0, 0, 419, 2902, 1, 0, 0, 0, 421, 2917, 1, 0, 0, 0, 423, 2923, 1, 0, 0, 0, 425, 2929, 1, 0, 0, 0, 427, 2937, 1, 0, 0, 0, 429, 2950, 1, 0, 0, 0, 431, 2966, 1, 0, 0, 0, 433, 2970, 1, 0, 0, 0, 435, 2979, 1, 0, 0, 0, 437, 2986, 1, 0, 0, 0, 439, 2992, 1, 0, 0, 0, 441, 3001, 1, 0, 0, 0, 443, 3008, 1, 0, 0, 0, 445, 3012, 1, 0, 0, 0, 447, 3018, 1, 0, 0, 0, 449, 3025, 1, 0, 0, 0, 451, 3029, 1, 0, 0, 0, 453, 3038, 1, 0, 0, 0, 455, 3045, 1, 0, 0, 0, 457, 3052, 1, 0, 0, 0, 459, 3060, 1, 0, 0, 0, 461, 3067, 1, 0, 0, 0, 463, 3073, 1, 0, 0, 0, 465, 3078, 1, 0, 0, 0, 467, 3087, 1, 0, 0, 0, 469, 3096, 1, 0, 0, 0, 471, 3104, 1, 0, 0, 0, 473, 3110, 1, 0, 0, 0, 475, 3116, 1, 0, 0, 0, 477, 3120, 1, 0, 0, 0, 479, 3125, 1, 0, 0, 0, 481, 3128, 1, 0, 0, 0, 483, 3133, 1, 0, 0, 0, 485, 3143, 1, 0, 0, 0, 487, 3147, 1, 0, 0, 0, 489, 3157, 1, 0, 0, 0, 491, 3163, 1, 0, 0, 0, 493, 3168, 1, 0, 0, 0, 495, 3175, 1, 0, 0, 0, 497, 3183, 1, 0, 0, 0, 499, 3201, 1, 0, 0, 0, 501, 3214, 1, 0, 0, 0, 503, 3217, 1, 0, 0, 0, 505, 3224, 1, 0, 0, 0, 507, 3228, 1, 0, 0, 0, 509, 3233, 1, 0, 0, 0, 511, 3236, 1, 0, 0, 0, 513, 3240, 1, 0, 0, 0, 515, 3245, 1, 0, 0, 0, 517, 3250, 1, 0, 0, 0, 519, 3253, 1, 0, 0, 0, 521, 3259, 1, 0, 0, 0, 523, 3267, 1, 0, 0, 0, 525, 3271, 1, 0, 0, 0, 527, 3277, 1, 0, 0, 0, 529, 3282, 1, 0, 0, 0, 531, 3291, 1, 0, 0, 0, 533, 3299, 1, 0, 0, 0, 535, 3309, 1, 0, 0, 0, 537, 3321, 1, 0, 0, 0, 539, 3331, 1, 0, 0, 0, 541, 3341, 1, 0, 0, 0, 543, 3353, 1, 0, 0, 0, 545, 3364, 1, 0, 0, 0, 547, 3372, 1, 0, 0, 0, 549, 3376, 1, 0, 0, 0, 551, 3384, 1, 0, 0, 0, 553, 3400, 1, 0, 0, 0, 555, 3416, 1, 0, 0, 0, 557, 3429, 1, 0, 0, 0, 559, 3436, 1, 0, 0, 0, 561, 3444, 1, 0, 0, 0, 563, 3450, 1, 0, 0, 0, 565, 3458, 1, 0, 0, 0, 567, 3467, 1, 0, 0, 0, 569, 3482, 1, 0, 0, 0, 571, 3488, 1, 0, 0, 0, 573, 3497, 1, 0, 0, 0, 575, 3507, 1, 0, 0, 0, 577, 3515, 1, 0, 0, 0, 579, 3520, 1, 0, 0, 0, 581, 3528, 1, 0, 0, 0, 583, 3538, 1, 0, 0, 0, 585, 3546, 1, 0, 0, 0, 587, 3555, 1, 0, 0, 0, 589, 3561, 1, 0, 0, 0, 591, 3566, 1, 0, 0, 0, 593, 3570, 1, 0, 0, 0, 595, 3576, 1, 0, 0, 0, 597, 3581, 1, 0, 0, 0, 599, 3591, 1, 0, 0, 0, 601, 3595, 1, 0, 0, 0, 603, 3606, 1, 0, 0, 0, 605, 3618, 1, 0, 0, 0, 607, 3628, 1, 0, 0, 0, 609, 3638, 1, 0, 0, 0, 611, 3649, 1, 0, 0, 0, 613, 3664, 1, 0, 0, 0, 615, 3672, 1, 0, 0, 0, 617, 3683, 1, 0, 0, 0, 619, 3692, 1, 0, 0, 0, 621, 3701, 1, 0, 0, 0, 623, 3710, 1, 0, 0, 0, 625, 3718, 1, 0, 0, 0, 627, 3725, 1, 0, 0, 0, 629, 3731, 1, 0, 0, 0, 631, 3738, 1, 0, 0, 0, 633, 3745, 1, 0, 0, 0, 635, 3753, 1, 0, 0, 0, 637, 3760, 1, 0, 0, 0, 639, 3766, 1, 0, 0, 0, 641, 3772, 1, 0, 0, 0, 643, 3781, 1, 0, 0, 0, 645, 3788, 1, 0, 0, 0, 647, 3792, 1, 0, 0, 0, 649, 3797, 1, 0, 0, 0, 651, 3808, 1, 0, 0, 0, 653, 3816, 1, 0, 0, 0, 655, 3826, 1, 0, 0, 0, 657, 3838, 1, 0, 0, 0, 659, 3851, 1, 0, 0, 0, 661, 3860, 1, 0, 0, 0, 663, 3870, 1, 0, 0, 0, 665, 3876, 1, 0, 0, 0, 667, 3882, 1, 0, 0, 0, 669, 3889, 1, 0, 0, 0, 671, 3896, 1, 0, 0, 0, 673, 3903, 1, 0, 0, 0, 675, 3908, 1, 0, 0, 0, 677, 3915, 1, 0, 0, 0, 679, 3925, 1, 0, 0, 0, 681, 3935, 1, 0, 0, 0, 683, 3948, 1, 0, 0, 0, 685, 3952, 1, 0, 0, 0, 687, 3957, 1, 0, 0, 0, 689, 3965, 1, 0, 0, 0, 691, 3970, 1, 0, 0, 0, 693, 3979, 1, 0, 0, 0, 695, 3984, 1, 0, 0, 0, 697, 3993, 1, 0, 0, 0, 699, 4006, 1, 0, 0, 0, 701, 4010, 1, 0, 0, 0, 703, 4023, 1, 0, 0, 0, 705, 4032, 1, 0, 0, 0, 707, 4043, 1, 0, 0, 0, 709, 4048, 1, 0, 0, 0, 711, 4054, 1, 0, 0, 0, 713, 4064, 1, 0, 0, 0, 715, 4071, 1, 0, 0, 0, 717, 4082, 1, 0, 0, 0, 719, 4093, 1, 0, 0, 0, 721, 4105, 1, 0, 0, 0, 723, 4112, 1, 0, 0, 0, 725, 4119, 1, 0, 0, 0, 727, 4130, 1, 0, 0, 0, 729, 4142, 1, 0, 0, 0, 731, 4149, 1, 0, 0, 0, 733, 4159, 1, 0, 0, 0, 735, 4175, 1, 0, 0, 0, 737, 4184, 1, 0, 0, 0, 739, 4188, 1, 0, 0, 0, 741, 4195, 1, 0, 0, 0, 743, 4205, 1, 0, 0, 0, 745, 4212, 1, 0, 0, 0, 747, 4224, 1, 0, 0, 0, 749, 4236, 1, 0, 0, 0, 751, 4242, 1, 0, 0, 0, 753, 4249, 1, 0, 0, 0, 755, 4261, 1, 0, 0, 0, 757, 4266, 1, 0, 0, 0, 759, 4275, 1, 0, 0, 0, 761, 4280, 1, 0, 0, 0, 763, 4290, 1, 0, 0, 0, 765, 4305, 1, 0, 0, 0, 767, 4319, 1, 0, 0, 0, 769, 4335, 1, 0, 0, 0, 771, 4349, 1, 0, 0, 0, 773, 4365, 1, 0, 0, 0, 775, 4375, 1, 0, 0, 0, 777, 4386, 1, 0, 0, 0, 779, 4394, 1, 0, 0, 0, 781, 4397, 1, 0, 0, 0, 783, 4406, 1, 0, 0, 0, 785, 4416, 1, 0, 0, 0, 787, 4432, 1, 0, 0, 0, 789, 4444, 1, 0, 0, 0, 791, 4450, 1, 0, 0, 0, 793, 4458, 1, 0, 0, 0, 795, 4463, 1, 0, 0, 0, 797, 4474, 1, 0, 0, 0, 799, 4479, 1, 0, 0, 0, 801, 4488, 1, 0, 0, 0, 803, 4497, 1, 0, 0, 0, 805, 4505, 1, 0, 0, 0, 807, 4513, 1, 0, 0, 0, 809, 4523, 1, 0, 0, 0, 811, 4529, 1, 0, 0, 0, 813, 4536, 1, 0, 0, 0, 815, 4544, 1, 0, 0, 0, 817, 4551, 1, 0, 0, 0, 819, 4559, 1, 0, 0, 0, 821, 4566, 1, 0, 0, 0, 823, 4572, 1, 0, 0, 0, 825, 4579, 1, 0, 0, 0, 827, 4583, 1, 0, 0, 0, 829, 4588, 1, 0, 0, 0, 831, 4594, 1, 0, 0, 0, 833, 4600, 1, 0, 0, 0, 835, 4607, 1, 0, 0, 0, 837, 4616, 1, 0, 0, 0, 839, 4626, 1, 0, 0, 0, 841, 4634, 1, 0, 0, 0, 843, 4642, 1, 0, 0, 0, 845, 4650, 1, 0, 0, 0, 847, 4659, 1, 0, 0, 0, 849, 4670, 1, 0, 0, 0, 851, 4676, 1, 0, 0, 0, 853, 4684, 1, 0, 0, 0, 855, 4694, 1, 0, 0, 0, 857, 4705, 1, 0, 0, 0, 859, 4715, 1, 0, 0, 0, 861, 4721, 1, 0, 0, 0, 863, 4726, 1, 0, 0, 0, 865, 4735, 1, 0, 0, 0, 867, 4741, 1, 0, 0, 0, 869, 4754, 1, 0, 0, 0, 871, 4761, 1, 0, 0, 0, 873, 4766, 1, 0, 0, 0, 875, 4773, 1, 0, 0, 0, 877, 4781, 1, 0, 0, 0, 879, 4786, 1, 0, 0, 0, 881, 4790, 1, 0, 0, 0, 883, 4796, 1, 0, 0, 0, 885, 4800, 1, 0, 0, 0, 887, 4808, 1, 0, 0, 0, 889, 4816, 1, 0, 0, 0, 891, 4824, 1, 0, 0, 0, 893, 4831, 1, 0, 0, 0, 895, 4843, 1, 0, 0, 0, 897, 4852, 1, 0, 0, 0, 899, 4857, 1, 0, 0, 0, 901, 4866, 1, 0, 0, 0, 903, 4871, 1, 0, 0, 0, 905, 4878, 1, 0, 0, 0, 907, 4883, 1, 0, 0, 0, 909, 4894, 1, 0, 0, 0, 911, 4898, 1, 0, 0, 0, 913, 4905, 1, 0, 0, 0, 915, 4911, 1, 0, 0, 0, 917, 4921, 1, 0, 0, 0, 919, 4926, 1, 0, 0, 0, 921, 4932, 1, 0, 0, 0, 923, 4942, 1, 0, 0, 0, 925, 4946, 1, 0, 0, 0, 927, 4952, 1, 0, 0, 0, 929, 4959, 1, 0, 0, 0, 931, 4969, 1, 0, 0, 0, 933, 4973, 1, 0, 0, 0, 935, 4978, 1, 0, 0, 0, 937, 4983, 1, 0, 0, 0, 939, 4987, 1, 0, 0, 0, 941, 4992, 1, 0, 0, 0, 943, 4997, 1, 0, 0, 0, 945, 5001, 1, 0, 0, 0, 947, 5013, 1, 0, 0, 0, 949, 5024, 1, 0, 0, 0, 951, 5036, 1, 0, 0, 0, 953, 5044, 1, 0, 0, 0, 955, 5051, 1, 0, 0, 0, 957, 5062, 1, 0, 0, 0, 959, 5068, 1, 0, 0, 0, 961, 5076, 1, 0, 0, 0, 963, 5081, 1, 0, 0, 0, 965, 5086, 1, 0, 0, 0, 967, 5096, 1, 0, 0, 0, 969, 5103, 1, 0, 0, 0, 971, 5119, 1, 0, 0, 0, 973, 5139, 1, 0, 0, 0, 975, 5152, 1, 0, 0, 0, 977, 5163, 1, 0, 0, 0, 979, 5180, 1, 0, 0, 0, 981, 5200, 1, 0, 0, 0, 983, 5208, 1, 0, 0, 0, 985, 5215, 1, 0, 0, 0, 987, 5224, 1, 0, 0, 0, 989, 5232, 1, 0, 0, 0, 991, 5240, 1, 0, 0, 0, 993, 5245, 1, 0, 0, 0, 995, 5250, 1, 0, 0, 0, 997, 5256, 1, 0, 0, 0, 999, 5261, 1, 0, 0, 0, 1001, 5271, 1, 0, 0, 0, 1003, 5279, 1, 0, 0, 0, 1005, 5286, 1, 0, 0, 0, 1007, 5293, 1, 0, 0, 0, 1009, 5298, 1, 0, 0, 0, 1011, 5303, 1, 0, 0, 0, 1013, 5309, 1, 0, 0, 0, 1015, 5314, 1, 0, 0, 0, 1017, 5316, 1, 0, 0, 0, 1019, 5318, 1, 0, 0, 0, 1021, 5320, 1, 0, 0, 0, 1023, 5322, 1, 0, 0, 0, 1025, 5324, 1, 0, 0, 0, 1027, 5326, 1, 0, 0, 0, 1029, 5328, 1, 0, 0, 0, 1031, 5330, 1, 0, 0, 0, 1033, 5332, 1, 0, 0, 0, 1035, 5334, 1, 0, 0, 0, 1037, 5336, 1, 0, 0, 0, 1039, 5338, 1, 0, 0, 0, 1041, 5340, 1, 0, 0, 0, 1043, 5342, 1, 0, 0, 0, 1045, 5344, 1, 0, 0, 0, 1047, 5346, 1, 0, 0, 0, 1049, 5348, 1, 0, 0, 0, 1051, 5350, 1, 0, 0, 0, 1053, 5352, 1, 0, 0, 0, 1055, 5354, 1, 0, 0, 0, 1057, 5356, 1, 0, 0, 0, 1059, 5358, 1, 0, 0, 0, 1061, 5360, 1, 0, 0, 0, 1063, 5362, 1, 0, 0, 0, 1065, 5364, 1, 0, 0, 0, 1067, 5366, 1, 0, 0, 0, 1069, 5368, 1, 0, 0, 0, 1071, 5371, 1, 0, 0, 0, 1073, 5374, 1, 0, 0, 0, 1075, 5376, 1, 0, 0, 0, 1077, 5378, 1, 0, 0, 0, 1079, 5384, 1, 0, 0, 0, 1081, 5387, 1, 0, 0, 0, 1083, 5434, 1, 0, 0, 0, 1085, 5436, 1, 0, 0, 0, 1087, 5438, 1, 0, 0, 0, 1089, 5440, 1, 0, 0, 0, 1091, 5453, 1, 0, 0, 0, 1093, 5465, 1, 0, 0, 0, 1095, 5479, 1, 0, 0, 0, 1097, 5481, 1, 0, 0, 0, 1099, 5483, 1, 0, 0, 0, 1101, 5496, 1, 0, 0, 0, 1103, 5509, 1, 0, 0, 0, 1105, 5518, 1, 0, 0, 0, 1107, 1108, 7, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1110, 6, 0, 0, 0, 1110, 2, 1, 0, 0, 0, 1111, 1112, 5, 47, 0, 0, 1112, 1113, 5, 42, 0, 0, 1113, 1117, 1, 0, 0, 0, 1114, 1116, 9, 0, 0, 0, 1115, 1114, 1, 0, 0, 0, 1116, 1119, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1117, 1115, 1, 0, 0, 0, 1118, 1120, 1, 0, 0, 0, 1119, 1117, 1, 0, 0, 0, 1120, 1121, 5, 42, 0, 0, 1121, 1122, 5, 47, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 6, 1, 0, 0, 1124, 4, 1, 0, 0, 0, 1125, 1126, 5, 45, 0, 0, 1126, 1129, 5, 45, 0, 0, 1127, 1129, 5, 35, 0, 0, 1128, 1125, 1, 0, 0, 0, 1128, 1127, 1, 0, 0, 0, 1129, 1133, 1, 0, 0, 0, 1130, 1132, 8, 1, 0, 0, 1131, 1130, 1, 0, 0, 0, 1132, 1135, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1141, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1138, 5, 13, 0, 0, 1137, 1136, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1142, 5, 10, 0, 0, 1140, 1142, 5, 0, 0, 1, 1141, 1137, 1, 0, 0, 0, 1141, 1140, 1, 0, 0, 0, 1142, 1154, 1, 0, 0, 0, 1143, 1144, 5, 45, 0, 0, 1144, 1145, 5, 45, 0, 0, 1145, 1151, 1, 0, 0, 0, 1146, 1148, 5, 13, 0, 0, 1147, 1146, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1152, 5, 10, 0, 0, 1150, 1152, 5, 0, 0, 1, 1151, 1147, 1, 0, 0, 0, 1151, 1150, 1, 0, 0, 0, 1152, 1154, 1, 0, 0, 0, 1153, 1128, 1, 0, 0, 0, 1153, 1143, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1156, 6, 2, 0, 0, 1156, 6, 1, 0, 0, 0, 1157, 1158, 7, 2, 0, 0, 1158, 1159, 7, 3, 0, 0, 1159, 1160, 7, 4, 0, 0, 1160, 8, 1, 0, 0, 0, 1161, 1162, 7, 2, 0, 0, 1162, 1163, 7, 5, 0, 0, 1163, 1164, 7, 5, 0, 0, 1164, 10, 1, 0, 0, 0, 1165, 1166, 7, 2, 0, 0, 1166, 1167, 7, 5, 0, 0, 1167, 1168, 7, 5, 0, 0, 1168, 1169, 7, 6, 0, 0, 1169, 1170, 7, 7, 0, 0, 1170, 1171, 7, 2, 0, 0, 1171, 1172, 7, 8, 0, 0, 1172, 1173, 7, 9, 0, 0, 1173, 12, 1, 0, 0, 0, 1174, 1175, 7, 2, 0, 0, 1175, 1176, 7, 5, 0, 0, 1176, 1177, 7, 5, 0, 0, 1177, 1178, 7, 6, 0, 0, 1178, 1179, 7, 10, 0, 0, 1179, 14, 1, 0, 0, 0, 1180, 1181, 7, 2, 0, 0, 1181, 1182, 7, 5, 0, 0, 1182, 1183, 7, 8, 0, 0, 1183, 1184, 7, 9, 0, 0, 1184, 1185, 7, 11, 0, 0, 1185, 16, 1, 0, 0, 0, 1186, 1187, 7, 2, 0, 0, 1187, 1188, 7, 12, 0, 0, 1188, 1189, 7, 2, 0, 0, 1189, 1190, 7, 5, 0, 0, 1190, 1191, 7, 13, 0, 0, 1191, 1192, 7, 14, 0, 0, 1192, 1193, 7, 9, 0, 0, 1193, 18, 1, 0, 0, 0, 1194, 1195, 7, 2, 0, 0, 1195, 1196, 7, 12, 0, 0, 1196, 1197, 7, 15, 0, 0, 1197, 20, 1, 0, 0, 0, 1198, 1199, 7, 2, 0, 0, 1199, 1200, 7, 12, 0, 0, 1200, 1201, 7, 13, 0, 0, 1201, 22, 1, 0, 0, 0, 1202, 1203, 7, 2, 0, 0, 1203, 1204, 7, 11, 0, 0, 1204, 1205, 7, 9, 0, 0, 1205, 24, 1, 0, 0, 0, 1206, 1207, 7, 2, 0, 0, 1207, 1208, 7, 11, 0, 0, 1208, 1209, 7, 11, 0, 0, 1209, 1210, 7, 2, 0, 0, 1210, 1211, 7, 13, 0, 0, 1211, 26, 1, 0, 0, 0, 1212, 1213, 7, 2, 0, 0, 1213, 1214, 7, 11, 0, 0, 1214, 1215, 7, 11, 0, 0, 1215, 1216, 7, 2, 0, 0, 1216, 1217, 7, 13, 0, 0, 1217, 1218, 5, 95, 0, 0, 1218, 1219, 7, 2, 0, 0, 1219, 1220, 7, 16, 0, 0, 1220, 1221, 7, 16, 0, 0, 1221, 28, 1, 0, 0, 0, 1222, 1223, 7, 2, 0, 0, 1223, 1224, 7, 11, 0, 0, 1224, 1225, 7, 11, 0, 0, 1225, 1226, 7, 2, 0, 0, 1226, 1227, 7, 13, 0, 0, 1227, 1228, 5, 95, 0, 0, 1228, 1229, 7, 7, 0, 0, 1229, 1230, 7, 6, 0, 0, 1230, 1231, 7, 12, 0, 0, 1231, 1232, 7, 7, 0, 0, 1232, 1233, 7, 2, 0, 0, 1233, 1234, 7, 8, 0, 0, 1234, 1235, 5, 95, 0, 0, 1235, 1236, 7, 2, 0, 0, 1236, 1237, 7, 16, 0, 0, 1237, 1238, 7, 16, 0, 0, 1238, 30, 1, 0, 0, 0, 1239, 1240, 7, 2, 0, 0, 1240, 1241, 7, 11, 0, 0, 1241, 1242, 7, 11, 0, 0, 1242, 1243, 7, 2, 0, 0, 1243, 1244, 7, 13, 0, 0, 1244, 1245, 5, 95, 0, 0, 1245, 1246, 7, 17, 0, 0, 1246, 1247, 7, 2, 0, 0, 1247, 1248, 7, 18, 0, 0, 1248, 1249, 5, 95, 0, 0, 1249, 1250, 7, 7, 0, 0, 1250, 1251, 7, 2, 0, 0, 1251, 1252, 7, 11, 0, 0, 1252, 1253, 7, 15, 0, 0, 1253, 1254, 7, 19, 0, 0, 1254, 1255, 7, 12, 0, 0, 1255, 1256, 7, 2, 0, 0, 1256, 1257, 7, 5, 0, 0, 1257, 1258, 7, 19, 0, 0, 1258, 1259, 7, 8, 0, 0, 1259, 1260, 7, 13, 0, 0, 1260, 32, 1, 0, 0, 0, 1261, 1262, 7, 2, 0, 0, 1262, 1263, 7, 4, 0, 0, 1263, 34, 1, 0, 0, 0, 1264, 1265, 7, 2, 0, 0, 1265, 1266, 7, 4, 0, 0, 1266, 1267, 7, 9, 0, 0, 1267, 1268, 7, 12, 0, 0, 1268, 1269, 7, 4, 0, 0, 1269, 1270, 7, 19, 0, 0, 1270, 1271, 7, 8, 0, 0, 1271, 1272, 7, 19, 0, 0, 1272, 1273, 7, 20, 0, 0, 1273, 1274, 7, 9, 0, 0, 1274, 36, 1, 0, 0, 0, 1275, 1276, 7, 2, 0, 0, 1276, 1277, 7, 4, 0, 0, 1277, 1278, 7, 13, 0, 0, 1278, 1279, 7, 17, 0, 0, 1279, 1280, 7, 17, 0, 0, 1280, 1281, 7, 9, 0, 0, 1281, 1282, 7, 8, 0, 0, 1282, 1283, 7, 11, 0, 0, 1283, 1284, 7, 19, 0, 0, 1284, 1285, 7, 7, 0, 0, 1285, 38, 1, 0, 0, 0, 1286, 1287, 7, 2, 0, 0, 1287, 1288, 7, 8, 0, 0, 1288, 40, 1, 0, 0, 0, 1289, 1290, 7, 2, 0, 0, 1290, 1291, 7, 8, 0, 0, 1291, 1292, 7, 6, 0, 0, 1292, 1293, 7, 17, 0, 0, 1293, 1294, 7, 19, 0, 0, 1294, 1295, 7, 7, 0, 0, 1295, 42, 1, 0, 0, 0, 1296, 1297, 7, 2, 0, 0, 1297, 1298, 7, 21, 0, 0, 1298, 1299, 7, 8, 0, 0, 1299, 1300, 7, 22, 0, 0, 1300, 1301, 7, 6, 0, 0, 1301, 1302, 7, 11, 0, 0, 1302, 1303, 7, 19, 0, 0, 1303, 1304, 7, 14, 0, 0, 1304, 1305, 7, 2, 0, 0, 1305, 1306, 7, 8, 0, 0, 1306, 1307, 7, 19, 0, 0, 1307, 1308, 7, 6, 0, 0, 1308, 1309, 7, 12, 0, 0, 1309, 44, 1, 0, 0, 0, 1310, 1311, 7, 2, 0, 0, 1311, 1312, 7, 20, 0, 0, 1312, 1313, 7, 16, 0, 0, 1313, 46, 1, 0, 0, 0, 1314, 1315, 7, 3, 0, 0, 1315, 1316, 7, 9, 0, 0, 1316, 1317, 7, 16, 0, 0, 1317, 1318, 7, 19, 0, 0, 1318, 1319, 7, 12, 0, 0, 1319, 48, 1, 0, 0, 0, 1320, 1321, 7, 3, 0, 0, 1321, 1322, 7, 9, 0, 0, 1322, 1323, 7, 16, 0, 0, 1323, 1324, 7, 19, 0, 0, 1324, 1325, 7, 12, 0, 0, 1325, 1326, 5, 95, 0, 0, 1326, 1327, 7, 23, 0, 0, 1327, 1328, 7, 11, 0, 0, 1328, 1329, 7, 2, 0, 0, 1329, 1330, 7, 17, 0, 0, 1330, 1331, 7, 9, 0, 0, 1331, 50, 1, 0, 0, 0, 1332, 1333, 7, 3, 0, 0, 1333, 1334, 7, 9, 0, 0, 1334, 1335, 7, 16, 0, 0, 1335, 1336, 7, 19, 0, 0, 1336, 1337, 7, 12, 0, 0, 1337, 1338, 5, 95, 0, 0, 1338, 1339, 7, 24, 0, 0, 1339, 1340, 7, 2, 0, 0, 1340, 1341, 7, 11, 0, 0, 1341, 1342, 7, 8, 0, 0, 1342, 1343, 7, 19, 0, 0, 1343, 1344, 7, 8, 0, 0, 1344, 1345, 7, 19, 0, 0, 1345, 1346, 7, 6, 0, 0, 1346, 1347, 7, 12, 0, 0, 1347, 52, 1, 0, 0, 0, 1348, 1349, 7, 3, 0, 0, 1349, 1350, 7, 9, 0, 0, 1350, 1351, 7, 8, 0, 0, 1351, 1352, 7, 10, 0, 0, 1352, 1353, 7, 9, 0, 0, 1353, 1354, 7, 9, 0, 0, 1354, 1355, 7, 12, 0, 0, 1355, 54, 1, 0, 0, 0, 1356, 1357, 7, 3, 0, 0, 1357, 1358, 7, 19, 0, 0, 1358, 1359, 7, 16, 0, 0, 1359, 1360, 7, 19, 0, 0, 1360, 1361, 7, 12, 0, 0, 1361, 1362, 7, 8, 0, 0, 1362, 56, 1, 0, 0, 0, 1363, 1364, 7, 3, 0, 0, 1364, 1365, 7, 19, 0, 0, 1365, 1366, 7, 12, 0, 0, 1366, 1367, 7, 2, 0, 0, 1367, 1368, 7, 11, 0, 0, 1368, 1369, 7, 13, 0, 0, 1369, 58, 1, 0, 0, 0, 1370, 1371, 7, 3, 0, 0, 1371, 1372, 7, 19, 0, 0, 1372, 1373, 7, 8, 0, 0, 1373, 60, 1, 0, 0, 0, 1374, 1375, 7, 3, 0, 0, 1375, 1376, 7, 5, 0, 0, 1376, 1377, 7, 6, 0, 0, 1377, 1378, 7, 3, 0, 0, 1378, 62, 1, 0, 0, 0, 1379, 1380, 7, 3, 0, 0, 1380, 1381, 7, 6, 0, 0, 1381, 1382, 7, 6, 0, 0, 1382, 1383, 7, 5, 0, 0, 1383, 1384, 7, 9, 0, 0, 1384, 1385, 7, 2, 0, 0, 1385, 1386, 7, 12, 0, 0, 1386, 64, 1, 0, 0, 0, 1387, 1388, 7, 3, 0, 0, 1388, 1389, 7, 6, 0, 0, 1389, 1390, 7, 8, 0, 0, 1390, 1391, 7, 22, 0, 0, 1391, 66, 1, 0, 0, 0, 1392, 1393, 7, 3, 0, 0, 1393, 1394, 7, 13, 0, 0, 1394, 68, 1, 0, 0, 0, 1395, 1396, 7, 3, 0, 0, 1396, 1397, 7, 13, 0, 0, 1397, 1398, 7, 8, 0, 0, 1398, 1399, 7, 9, 0, 0, 1399, 1400, 7, 4, 0, 0, 1400, 70, 1, 0, 0, 0, 1401, 1402, 7, 7, 0, 0, 1402, 1403, 7, 2, 0, 0, 1403, 1404, 7, 5, 0, 0, 1404, 1405, 7, 5, 0, 0, 1405, 72, 1, 0, 0, 0, 1406, 1407, 7, 7, 0, 0, 1407, 1408, 7, 2, 0, 0, 1408, 1409, 7, 5, 0, 0, 1409, 1410, 7, 5, 0, 0, 1410, 1411, 7, 9, 0, 0, 1411, 1412, 7, 15, 0, 0, 1412, 74, 1, 0, 0, 0, 1413, 1414, 7, 7, 0, 0, 1414, 1415, 7, 2, 0, 0, 1415, 1416, 7, 11, 0, 0, 1416, 1417, 7, 15, 0, 0, 1417, 1418, 7, 19, 0, 0, 1418, 1419, 7, 12, 0, 0, 1419, 1420, 7, 2, 0, 0, 1420, 1421, 7, 5, 0, 0, 1421, 1422, 7, 19, 0, 0, 1422, 1423, 7, 8, 0, 0, 1423, 1424, 7, 13, 0, 0, 1424, 76, 1, 0, 0, 0, 1425, 1426, 7, 7, 0, 0, 1426, 1427, 7, 2, 0, 0, 1427, 1428, 7, 4, 0, 0, 1428, 1429, 7, 7, 0, 0, 1429, 1430, 7, 2, 0, 0, 1430, 1431, 7, 15, 0, 0, 1431, 1432, 7, 9, 0, 0, 1432, 1433, 7, 15, 0, 0, 1433, 78, 1, 0, 0, 0, 1434, 1435, 7, 7, 0, 0, 1435, 1436, 7, 2, 0, 0, 1436, 1437, 7, 4, 0, 0, 1437, 1438, 7, 9, 0, 0, 1438, 80, 1, 0, 0, 0, 1439, 1440, 7, 7, 0, 0, 1440, 1441, 7, 2, 0, 0, 1441, 1442, 7, 4, 0, 0, 1442, 1443, 7, 8, 0, 0, 1443, 82, 1, 0, 0, 0, 1444, 1445, 7, 7, 0, 0, 1445, 1446, 7, 2, 0, 0, 1446, 1447, 7, 8, 0, 0, 1447, 1448, 7, 2, 0, 0, 1448, 1449, 7, 5, 0, 0, 1449, 1450, 7, 6, 0, 0, 1450, 1451, 7, 16, 0, 0, 1451, 1452, 7, 4, 0, 0, 1452, 84, 1, 0, 0, 0, 1453, 1454, 7, 7, 0, 0, 1454, 1455, 7, 9, 0, 0, 1455, 1456, 7, 19, 0, 0, 1456, 1457, 7, 5, 0, 0, 1457, 86, 1, 0, 0, 0, 1458, 1459, 7, 7, 0, 0, 1459, 1460, 7, 9, 0, 0, 1460, 1461, 7, 19, 0, 0, 1461, 1462, 7, 5, 0, 0, 1462, 1463, 7, 19, 0, 0, 1463, 1464, 7, 12, 0, 0, 1464, 1465, 7, 16, 0, 0, 1465, 88, 1, 0, 0, 0, 1466, 1467, 7, 7, 0, 0, 1467, 1468, 7, 22, 0, 0, 1468, 1469, 7, 2, 0, 0, 1469, 1470, 7, 12, 0, 0, 1470, 1471, 7, 16, 0, 0, 1471, 1472, 7, 9, 0, 0, 1472, 1473, 7, 5, 0, 0, 1473, 1474, 7, 6, 0, 0, 1474, 1475, 7, 16, 0, 0, 1475, 1476, 5, 95, 0, 0, 1476, 1477, 7, 17, 0, 0, 1477, 1478, 7, 6, 0, 0, 1478, 1479, 7, 15, 0, 0, 1479, 1480, 7, 9, 0, 0, 1480, 90, 1, 0, 0, 0, 1481, 1482, 7, 7, 0, 0, 1482, 1483, 7, 22, 0, 0, 1483, 1484, 7, 2, 0, 0, 1484, 1485, 7, 11, 0, 0, 1485, 92, 1, 0, 0, 0, 1486, 1487, 7, 7, 0, 0, 1487, 1488, 7, 22, 0, 0, 1488, 1489, 7, 2, 0, 0, 1489, 1490, 7, 11, 0, 0, 1490, 1491, 7, 2, 0, 0, 1491, 1492, 7, 7, 0, 0, 1492, 1493, 7, 8, 0, 0, 1493, 1494, 7, 9, 0, 0, 1494, 1495, 7, 11, 0, 0, 1495, 94, 1, 0, 0, 0, 1496, 1497, 7, 7, 0, 0, 1497, 1498, 7, 22, 0, 0, 1498, 1499, 7, 2, 0, 0, 1499, 1500, 7, 11, 0, 0, 1500, 1501, 7, 2, 0, 0, 1501, 1502, 7, 7, 0, 0, 1502, 1503, 7, 8, 0, 0, 1503, 1504, 7, 9, 0, 0, 1504, 1505, 7, 11, 0, 0, 1505, 1506, 5, 95, 0, 0, 1506, 1507, 7, 5, 0, 0, 1507, 1508, 7, 9, 0, 0, 1508, 1509, 7, 12, 0, 0, 1509, 1510, 7, 16, 0, 0, 1510, 1511, 7, 8, 0, 0, 1511, 1512, 7, 22, 0, 0, 1512, 96, 1, 0, 0, 0, 1513, 1514, 7, 7, 0, 0, 1514, 1515, 7, 22, 0, 0, 1515, 1516, 7, 2, 0, 0, 1516, 1517, 7, 11, 0, 0, 1517, 1518, 5, 95, 0, 0, 1518, 1519, 7, 5, 0, 0, 1519, 1520, 7, 9, 0, 0, 1520, 1521, 7, 12, 0, 0, 1521, 1522, 7, 16, 0, 0, 1522, 1523, 7, 8, 0, 0, 1523, 1524, 7, 22, 0, 0, 1524, 98, 1, 0, 0, 0, 1525, 1526, 7, 7, 0, 0, 1526, 1527, 7, 22, 0, 0, 1527, 1528, 7, 9, 0, 0, 1528, 1529, 7, 7, 0, 0, 1529, 1530, 7, 25, 0, 0, 1530, 100, 1, 0, 0, 0, 1531, 1532, 7, 7, 0, 0, 1532, 1533, 7, 5, 0, 0, 1533, 1534, 7, 2, 0, 0, 1534, 1535, 7, 4, 0, 0, 1535, 1536, 7, 4, 0, 0, 1536, 1537, 7, 19, 0, 0, 1537, 1538, 7, 23, 0, 0, 1538, 1539, 7, 19, 0, 0, 1539, 1540, 7, 9, 0, 0, 1540, 1541, 7, 11, 0, 0, 1541, 102, 1, 0, 0, 0, 1542, 1543, 7, 7, 0, 0, 1543, 1544, 7, 5, 0, 0, 1544, 1545, 7, 6, 0, 0, 1545, 1546, 7, 3, 0, 0, 1546, 104, 1, 0, 0, 0, 1547, 1548, 7, 7, 0, 0, 1548, 1549, 7, 5, 0, 0, 1549, 1550, 7, 6, 0, 0, 1550, 1551, 7, 4, 0, 0, 1551, 1552, 7, 9, 0, 0, 1552, 106, 1, 0, 0, 0, 1553, 1554, 7, 7, 0, 0, 1554, 1555, 7, 6, 0, 0, 1555, 1556, 7, 2, 0, 0, 1556, 1557, 7, 5, 0, 0, 1557, 1558, 7, 9, 0, 0, 1558, 1559, 7, 4, 0, 0, 1559, 1560, 7, 7, 0, 0, 1560, 1561, 7, 9, 0, 0, 1561, 108, 1, 0, 0, 0, 1562, 1563, 7, 7, 0, 0, 1563, 1564, 7, 6, 0, 0, 1564, 1565, 7, 5, 0, 0, 1565, 1566, 7, 5, 0, 0, 1566, 1567, 7, 2, 0, 0, 1567, 1568, 7, 8, 0, 0, 1568, 1569, 7, 9, 0, 0, 1569, 110, 1, 0, 0, 0, 1570, 1571, 7, 7, 0, 0, 1571, 1572, 7, 6, 0, 0, 1572, 1573, 7, 5, 0, 0, 1573, 1574, 7, 5, 0, 0, 1574, 1575, 7, 9, 0, 0, 1575, 1576, 7, 7, 0, 0, 1576, 1577, 7, 8, 0, 0, 1577, 112, 1, 0, 0, 0, 1578, 1579, 7, 7, 0, 0, 1579, 1580, 7, 6, 0, 0, 1580, 1581, 7, 5, 0, 0, 1581, 1582, 7, 21, 0, 0, 1582, 1583, 7, 17, 0, 0, 1583, 1584, 7, 12, 0, 0, 1584, 114, 1, 0, 0, 0, 1585, 1586, 7, 7, 0, 0, 1586, 1587, 7, 6, 0, 0, 1587, 1588, 7, 5, 0, 0, 1588, 1589, 7, 21, 0, 0, 1589, 1590, 7, 17, 0, 0, 1590, 1591, 7, 12, 0, 0, 1591, 1592, 7, 4, 0, 0, 1592, 116, 1, 0, 0, 0, 1593, 1594, 7, 7, 0, 0, 1594, 1595, 7, 6, 0, 0, 1595, 1596, 7, 17, 0, 0, 1596, 1597, 7, 17, 0, 0, 1597, 1598, 7, 9, 0, 0, 1598, 1599, 7, 12, 0, 0, 1599, 1600, 7, 8, 0, 0, 1600, 118, 1, 0, 0, 0, 1601, 1602, 7, 7, 0, 0, 1602, 1603, 7, 6, 0, 0, 1603, 1604, 7, 17, 0, 0, 1604, 1605, 7, 17, 0, 0, 1605, 1606, 7, 19, 0, 0, 1606, 1607, 7, 8, 0, 0, 1607, 120, 1, 0, 0, 0, 1608, 1609, 7, 7, 0, 0, 1609, 1610, 7, 6, 0, 0, 1610, 1611, 7, 17, 0, 0, 1611, 1612, 7, 24, 0, 0, 1612, 1613, 7, 21, 0, 0, 1613, 1614, 7, 8, 0, 0, 1614, 1615, 7, 9, 0, 0, 1615, 122, 1, 0, 0, 0, 1616, 1617, 7, 7, 0, 0, 1617, 1618, 7, 6, 0, 0, 1618, 1619, 7, 12, 0, 0, 1619, 1620, 7, 15, 0, 0, 1620, 1621, 7, 19, 0, 0, 1621, 1622, 7, 8, 0, 0, 1622, 1623, 7, 19, 0, 0, 1623, 1624, 7, 6, 0, 0, 1624, 1625, 7, 12, 0, 0, 1625, 124, 1, 0, 0, 0, 1626, 1627, 7, 7, 0, 0, 1627, 1628, 7, 6, 0, 0, 1628, 1629, 7, 12, 0, 0, 1629, 1630, 7, 12, 0, 0, 1630, 1631, 7, 9, 0, 0, 1631, 1632, 7, 7, 0, 0, 1632, 1633, 7, 8, 0, 0, 1633, 126, 1, 0, 0, 0, 1634, 1635, 7, 7, 0, 0, 1635, 1636, 7, 6, 0, 0, 1636, 1637, 7, 12, 0, 0, 1637, 1638, 7, 4, 0, 0, 1638, 1639, 7, 8, 0, 0, 1639, 1640, 7, 11, 0, 0, 1640, 1641, 7, 2, 0, 0, 1641, 1642, 7, 19, 0, 0, 1642, 1643, 7, 12, 0, 0, 1643, 1644, 7, 8, 0, 0, 1644, 128, 1, 0, 0, 0, 1645, 1646, 7, 7, 0, 0, 1646, 1647, 7, 6, 0, 0, 1647, 1648, 7, 12, 0, 0, 1648, 1649, 7, 8, 0, 0, 1649, 1650, 7, 2, 0, 0, 1650, 1651, 7, 19, 0, 0, 1651, 1652, 7, 12, 0, 0, 1652, 1653, 7, 4, 0, 0, 1653, 130, 1, 0, 0, 0, 1654, 1655, 7, 7, 0, 0, 1655, 1656, 7, 6, 0, 0, 1656, 1657, 7, 12, 0, 0, 1657, 1658, 7, 20, 0, 0, 1658, 1659, 7, 9, 0, 0, 1659, 1660, 7, 11, 0, 0, 1660, 1661, 7, 8, 0, 0, 1661, 132, 1, 0, 0, 0, 1662, 1663, 7, 7, 0, 0, 1663, 1664, 7, 6, 0, 0, 1664, 1665, 7, 11, 0, 0, 1665, 1666, 7, 11, 0, 0, 1666, 134, 1, 0, 0, 0, 1667, 1668, 7, 7, 0, 0, 1668, 1669, 7, 6, 0, 0, 1669, 1670, 7, 11, 0, 0, 1670, 1671, 7, 11, 0, 0, 1671, 1672, 7, 9, 0, 0, 1672, 1673, 7, 4, 0, 0, 1673, 1674, 7, 24, 0, 0, 1674, 1675, 7, 6, 0, 0, 1675, 1676, 7, 12, 0, 0, 1676, 1677, 7, 15, 0, 0, 1677, 1678, 7, 19, 0, 0, 1678, 1679, 7, 12, 0, 0, 1679, 1680, 7, 16, 0, 0, 1680, 136, 1, 0, 0, 0, 1681, 1682, 7, 7, 0, 0, 1682, 1683, 7, 6, 0, 0, 1683, 1684, 7, 21, 0, 0, 1684, 1685, 7, 12, 0, 0, 1685, 1686, 7, 8, 0, 0, 1686, 138, 1, 0, 0, 0, 1687, 1688, 7, 7, 0, 0, 1688, 1689, 7, 6, 0, 0, 1689, 1690, 7, 20, 0, 0, 1690, 1691, 7, 2, 0, 0, 1691, 1692, 7, 11, 0, 0, 1692, 1693, 5, 95, 0, 0, 1693, 1694, 7, 24, 0, 0, 1694, 1695, 7, 6, 0, 0, 1695, 1696, 7, 24, 0, 0, 1696, 140, 1, 0, 0, 0, 1697, 1698, 7, 7, 0, 0, 1698, 1699, 7, 6, 0, 0, 1699, 1700, 7, 20, 0, 0, 1700, 1701, 7, 2, 0, 0, 1701, 1702, 7, 11, 0, 0, 1702, 1703, 5, 95, 0, 0, 1703, 1704, 7, 4, 0, 0, 1704, 1705, 7, 2, 0, 0, 1705, 1706, 7, 17, 0, 0, 1706, 1707, 7, 24, 0, 0, 1707, 142, 1, 0, 0, 0, 1708, 1709, 7, 7, 0, 0, 1709, 1710, 7, 11, 0, 0, 1710, 1711, 7, 9, 0, 0, 1711, 1712, 7, 2, 0, 0, 1712, 1713, 7, 8, 0, 0, 1713, 1714, 7, 9, 0, 0, 1714, 144, 1, 0, 0, 0, 1715, 1716, 7, 7, 0, 0, 1716, 1717, 7, 11, 0, 0, 1717, 1718, 7, 6, 0, 0, 1718, 1719, 7, 4, 0, 0, 1719, 1720, 7, 4, 0, 0, 1720, 146, 1, 0, 0, 0, 1721, 1722, 7, 7, 0, 0, 1722, 1723, 7, 21, 0, 0, 1723, 1724, 7, 3, 0, 0, 1724, 1725, 7, 9, 0, 0, 1725, 148, 1, 0, 0, 0, 1726, 1727, 7, 7, 0, 0, 1727, 1728, 7, 21, 0, 0, 1728, 1729, 7, 17, 0, 0, 1729, 1730, 7, 9, 0, 0, 1730, 1731, 5, 95, 0, 0, 1731, 1732, 7, 15, 0, 0, 1732, 1733, 7, 19, 0, 0, 1733, 1734, 7, 4, 0, 0, 1734, 1735, 7, 8, 0, 0, 1735, 150, 1, 0, 0, 0, 1736, 1737, 7, 7, 0, 0, 1737, 1738, 7, 21, 0, 0, 1738, 1739, 7, 11, 0, 0, 1739, 1740, 7, 11, 0, 0, 1740, 1741, 7, 9, 0, 0, 1741, 1742, 7, 12, 0, 0, 1742, 1743, 7, 8, 0, 0, 1743, 152, 1, 0, 0, 0, 1744, 1745, 7, 7, 0, 0, 1745, 1746, 7, 21, 0, 0, 1746, 1747, 7, 11, 0, 0, 1747, 1748, 7, 11, 0, 0, 1748, 1749, 7, 9, 0, 0, 1749, 1750, 7, 12, 0, 0, 1750, 1751, 7, 8, 0, 0, 1751, 1752, 5, 95, 0, 0, 1752, 1753, 7, 7, 0, 0, 1753, 1754, 7, 2, 0, 0, 1754, 1755, 7, 8, 0, 0, 1755, 1756, 7, 2, 0, 0, 1756, 1757, 7, 5, 0, 0, 1757, 1758, 7, 6, 0, 0, 1758, 1759, 7, 16, 0, 0, 1759, 154, 1, 0, 0, 0, 1760, 1761, 7, 7, 0, 0, 1761, 1762, 7, 21, 0, 0, 1762, 1763, 7, 11, 0, 0, 1763, 1764, 7, 11, 0, 0, 1764, 1765, 7, 9, 0, 0, 1765, 1766, 7, 12, 0, 0, 1766, 1767, 7, 8, 0, 0, 1767, 1768, 5, 95, 0, 0, 1768, 1769, 7, 15, 0, 0, 1769, 1770, 7, 2, 0, 0, 1770, 1771, 7, 8, 0, 0, 1771, 1772, 7, 9, 0, 0, 1772, 156, 1, 0, 0, 0, 1773, 1774, 7, 7, 0, 0, 1774, 1775, 7, 21, 0, 0, 1775, 1776, 7, 11, 0, 0, 1776, 1777, 7, 11, 0, 0, 1777, 1778, 7, 9, 0, 0, 1778, 1779, 7, 12, 0, 0, 1779, 1780, 7, 8, 0, 0, 1780, 1781, 5, 95, 0, 0, 1781, 1782, 7, 15, 0, 0, 1782, 1783, 7, 9, 0, 0, 1783, 1784, 7, 23, 0, 0, 1784, 1785, 7, 2, 0, 0, 1785, 1786, 7, 21, 0, 0, 1786, 1787, 7, 5, 0, 0, 1787, 1788, 7, 8, 0, 0, 1788, 1789, 5, 95, 0, 0, 1789, 1790, 7, 8, 0, 0, 1790, 1791, 7, 11, 0, 0, 1791, 1792, 7, 2, 0, 0, 1792, 1793, 7, 12, 0, 0, 1793, 1794, 7, 4, 0, 0, 1794, 1795, 7, 23, 0, 0, 1795, 1796, 7, 6, 0, 0, 1796, 1797, 7, 11, 0, 0, 1797, 1798, 7, 17, 0, 0, 1798, 1799, 5, 95, 0, 0, 1799, 1800, 7, 16, 0, 0, 1800, 1801, 7, 11, 0, 0, 1801, 1802, 7, 6, 0, 0, 1802, 1803, 7, 21, 0, 0, 1803, 1804, 7, 24, 0, 0, 1804, 158, 1, 0, 0, 0, 1805, 1806, 7, 7, 0, 0, 1806, 1807, 7, 21, 0, 0, 1807, 1808, 7, 11, 0, 0, 1808, 1809, 7, 11, 0, 0, 1809, 1810, 7, 9, 0, 0, 1810, 1811, 7, 12, 0, 0, 1811, 1812, 7, 8, 0, 0, 1812, 1813, 5, 95, 0, 0, 1813, 1814, 7, 24, 0, 0, 1814, 1815, 7, 2, 0, 0, 1815, 1816, 7, 8, 0, 0, 1816, 1817, 7, 22, 0, 0, 1817, 160, 1, 0, 0, 0, 1818, 1819, 7, 7, 0, 0, 1819, 1820, 7, 21, 0, 0, 1820, 1821, 7, 11, 0, 0, 1821, 1822, 7, 11, 0, 0, 1822, 1823, 7, 9, 0, 0, 1823, 1824, 7, 12, 0, 0, 1824, 1825, 7, 8, 0, 0, 1825, 1826, 5, 95, 0, 0, 1826, 1827, 7, 11, 0, 0, 1827, 1828, 7, 6, 0, 0, 1828, 1829, 7, 5, 0, 0, 1829, 1830, 7, 9, 0, 0, 1830, 162, 1, 0, 0, 0, 1831, 1832, 7, 7, 0, 0, 1832, 1833, 7, 21, 0, 0, 1833, 1834, 7, 11, 0, 0, 1834, 1835, 7, 11, 0, 0, 1835, 1836, 7, 9, 0, 0, 1836, 1837, 7, 12, 0, 0, 1837, 1838, 7, 8, 0, 0, 1838, 1839, 5, 95, 0, 0, 1839, 1840, 7, 11, 0, 0, 1840, 1841, 7, 6, 0, 0, 1841, 1842, 7, 10, 0, 0, 1842, 164, 1, 0, 0, 0, 1843, 1844, 7, 7, 0, 0, 1844, 1845, 7, 21, 0, 0, 1845, 1846, 7, 11, 0, 0, 1846, 1847, 7, 11, 0, 0, 1847, 1848, 7, 9, 0, 0, 1848, 1849, 7, 12, 0, 0, 1849, 1850, 7, 8, 0, 0, 1850, 1851, 5, 95, 0, 0, 1851, 1852, 7, 4, 0, 0, 1852, 1853, 7, 7, 0, 0, 1853, 1854, 7, 22, 0, 0, 1854, 1855, 7, 9, 0, 0, 1855, 1856, 7, 17, 0, 0, 1856, 1857, 7, 2, 0, 0, 1857, 166, 1, 0, 0, 0, 1858, 1859, 7, 7, 0, 0, 1859, 1860, 7, 21, 0, 0, 1860, 1861, 7, 11, 0, 0, 1861, 1862, 7, 11, 0, 0, 1862, 1863, 7, 9, 0, 0, 1863, 1864, 7, 12, 0, 0, 1864, 1865, 7, 8, 0, 0, 1865, 1866, 5, 95, 0, 0, 1866, 1867, 7, 8, 0, 0, 1867, 1868, 7, 19, 0, 0, 1868, 1869, 7, 17, 0, 0, 1869, 1870, 7, 9, 0, 0, 1870, 168, 1, 0, 0, 0, 1871, 1872, 7, 7, 0, 0, 1872, 1873, 7, 21, 0, 0, 1873, 1874, 7, 11, 0, 0, 1874, 1875, 7, 11, 0, 0, 1875, 1876, 7, 9, 0, 0, 1876, 1877, 7, 12, 0, 0, 1877, 1878, 7, 8, 0, 0, 1878, 1879, 5, 95, 0, 0, 1879, 1880, 7, 8, 0, 0, 1880, 1881, 7, 19, 0, 0, 1881, 1882, 7, 17, 0, 0, 1882, 1883, 7, 9, 0, 0, 1883, 1884, 7, 4, 0, 0, 1884, 1885, 7, 8, 0, 0, 1885, 1886, 7, 2, 0, 0, 1886, 1887, 7, 17, 0, 0, 1887, 1888, 7, 24, 0, 0, 1888, 170, 1, 0, 0, 0, 1889, 1890, 7, 7, 0, 0, 1890, 1891, 7, 21, 0, 0, 1891, 1892, 7, 11, 0, 0, 1892, 1893, 7, 11, 0, 0, 1893, 1894, 7, 9, 0, 0, 1894, 1895, 7, 12, 0, 0, 1895, 1896, 7, 8, 0, 0, 1896, 1897, 5, 95, 0, 0, 1897, 1898, 7, 8, 0, 0, 1898, 1899, 7, 11, 0, 0, 1899, 1900, 7, 2, 0, 0, 1900, 1901, 7, 12, 0, 0, 1901, 1902, 7, 4, 0, 0, 1902, 1903, 7, 23, 0, 0, 1903, 1904, 7, 6, 0, 0, 1904, 1905, 7, 11, 0, 0, 1905, 1906, 7, 17, 0, 0, 1906, 1907, 5, 95, 0, 0, 1907, 1908, 7, 16, 0, 0, 1908, 1909, 7, 11, 0, 0, 1909, 1910, 7, 6, 0, 0, 1910, 1911, 7, 21, 0, 0, 1911, 1912, 7, 24, 0, 0, 1912, 1913, 5, 95, 0, 0, 1913, 1914, 7, 23, 0, 0, 1914, 1915, 7, 6, 0, 0, 1915, 1916, 7, 11, 0, 0, 1916, 1917, 5, 95, 0, 0, 1917, 1918, 7, 8, 0, 0, 1918, 1919, 7, 13, 0, 0, 1919, 1920, 7, 24, 0, 0, 1920, 1921, 7, 9, 0, 0, 1921, 172, 1, 0, 0, 0, 1922, 1923, 7, 7, 0, 0, 1923, 1924, 7, 21, 0, 0, 1924, 1925, 7, 11, 0, 0, 1925, 1926, 7, 11, 0, 0, 1926, 1927, 7, 9, 0, 0, 1927, 1928, 7, 12, 0, 0, 1928, 1929, 7, 8, 0, 0, 1929, 1930, 5, 95, 0, 0, 1930, 1931, 7, 21, 0, 0, 1931, 1932, 7, 4, 0, 0, 1932, 1933, 7, 9, 0, 0, 1933, 1934, 7, 11, 0, 0, 1934, 174, 1, 0, 0, 0, 1935, 1936, 7, 7, 0, 0, 1936, 1937, 7, 21, 0, 0, 1937, 1938, 7, 11, 0, 0, 1938, 1939, 7, 4, 0, 0, 1939, 1940, 7, 6, 0, 0, 1940, 1941, 7, 11, 0, 0, 1941, 176, 1, 0, 0, 0, 1942, 1943, 7, 7, 0, 0, 1943, 1944, 7, 13, 0, 0, 1944, 1945, 7, 7, 0, 0, 1945, 1946, 7, 5, 0, 0, 1946, 1947, 7, 9, 0, 0, 1947, 178, 1, 0, 0, 0, 1948, 1949, 7, 15, 0, 0, 1949, 1950, 7, 2, 0, 0, 1950, 1951, 7, 8, 0, 0, 1951, 1952, 7, 2, 0, 0, 1952, 1953, 7, 3, 0, 0, 1953, 1954, 7, 2, 0, 0, 1954, 1955, 7, 4, 0, 0, 1955, 1956, 7, 9, 0, 0, 1956, 1957, 7, 4, 0, 0, 1957, 180, 1, 0, 0, 0, 1958, 1959, 7, 15, 0, 0, 1959, 1960, 7, 2, 0, 0, 1960, 1961, 7, 8, 0, 0, 1961, 1962, 7, 9, 0, 0, 1962, 182, 1, 0, 0, 0, 1963, 1964, 7, 15, 0, 0, 1964, 1965, 7, 2, 0, 0, 1965, 1966, 7, 8, 0, 0, 1966, 1967, 7, 9, 0, 0, 1967, 1968, 7, 8, 0, 0, 1968, 1969, 7, 19, 0, 0, 1969, 1970, 7, 17, 0, 0, 1970, 1971, 7, 9, 0, 0, 1971, 184, 1, 0, 0, 0, 1972, 1973, 7, 15, 0, 0, 1973, 1974, 7, 2, 0, 0, 1974, 1975, 7, 8, 0, 0, 1975, 1976, 7, 9, 0, 0, 1976, 1977, 7, 8, 0, 0, 1977, 1978, 7, 19, 0, 0, 1978, 1979, 7, 17, 0, 0, 1979, 1980, 7, 9, 0, 0, 1980, 1981, 5, 95, 0, 0, 1981, 1982, 7, 15, 0, 0, 1982, 1983, 7, 19, 0, 0, 1983, 1984, 7, 23, 0, 0, 1984, 1985, 7, 23, 0, 0, 1985, 186, 1, 0, 0, 0, 1986, 1987, 7, 15, 0, 0, 1987, 1988, 7, 2, 0, 0, 1988, 1989, 7, 8, 0, 0, 1989, 1990, 7, 9, 0, 0, 1990, 1991, 7, 8, 0, 0, 1991, 1992, 7, 19, 0, 0, 1992, 1993, 7, 17, 0, 0, 1993, 1994, 7, 9, 0, 0, 1994, 1995, 5, 95, 0, 0, 1995, 1996, 7, 8, 0, 0, 1996, 1997, 7, 11, 0, 0, 1997, 1998, 7, 21, 0, 0, 1998, 1999, 7, 12, 0, 0, 1999, 2000, 7, 7, 0, 0, 2000, 188, 1, 0, 0, 0, 2001, 2002, 7, 15, 0, 0, 2002, 2003, 7, 2, 0, 0, 2003, 2004, 7, 8, 0, 0, 2004, 2005, 7, 9, 0, 0, 2005, 2006, 5, 95, 0, 0, 2006, 2007, 7, 15, 0, 0, 2007, 2008, 7, 19, 0, 0, 2008, 2009, 7, 23, 0, 0, 2009, 2010, 7, 23, 0, 0, 2010, 190, 1, 0, 0, 0, 2011, 2012, 7, 15, 0, 0, 2012, 2013, 7, 2, 0, 0, 2013, 2014, 7, 8, 0, 0, 2014, 2015, 7, 9, 0, 0, 2015, 2016, 5, 95, 0, 0, 2016, 2017, 7, 8, 0, 0, 2017, 2018, 7, 11, 0, 0, 2018, 2019, 7, 21, 0, 0, 2019, 2020, 7, 12, 0, 0, 2020, 2021, 7, 7, 0, 0, 2021, 192, 1, 0, 0, 0, 2022, 2023, 7, 15, 0, 0, 2023, 2024, 7, 2, 0, 0, 2024, 2025, 7, 13, 0, 0, 2025, 194, 1, 0, 0, 0, 2026, 2027, 7, 15, 0, 0, 2027, 2028, 7, 2, 0, 0, 2028, 2029, 7, 13, 0, 0, 2029, 2030, 7, 6, 0, 0, 2030, 2031, 7, 23, 0, 0, 2031, 2032, 7, 10, 0, 0, 2032, 2033, 7, 9, 0, 0, 2033, 2034, 7, 9, 0, 0, 2034, 2035, 7, 25, 0, 0, 2035, 196, 1, 0, 0, 0, 2036, 2037, 7, 15, 0, 0, 2037, 2038, 7, 2, 0, 0, 2038, 2039, 7, 13, 0, 0, 2039, 2040, 7, 6, 0, 0, 2040, 2041, 7, 23, 0, 0, 2041, 2042, 7, 13, 0, 0, 2042, 2043, 7, 9, 0, 0, 2043, 2044, 7, 2, 0, 0, 2044, 2045, 7, 11, 0, 0, 2045, 198, 1, 0, 0, 0, 2046, 2047, 7, 15, 0, 0, 2047, 2048, 7, 9, 0, 0, 2048, 2049, 7, 2, 0, 0, 2049, 2050, 7, 5, 0, 0, 2050, 2051, 7, 5, 0, 0, 2051, 2052, 7, 6, 0, 0, 2052, 2053, 7, 7, 0, 0, 2053, 2054, 7, 2, 0, 0, 2054, 2055, 7, 8, 0, 0, 2055, 2056, 7, 9, 0, 0, 2056, 200, 1, 0, 0, 0, 2057, 2058, 7, 15, 0, 0, 2058, 2059, 7, 9, 0, 0, 2059, 2060, 7, 7, 0, 0, 2060, 202, 1, 0, 0, 0, 2061, 2062, 7, 15, 0, 0, 2062, 2063, 7, 9, 0, 0, 2063, 2064, 7, 7, 0, 0, 2064, 2065, 7, 19, 0, 0, 2065, 2066, 7, 17, 0, 0, 2066, 2067, 7, 2, 0, 0, 2067, 2068, 7, 5, 0, 0, 2068, 204, 1, 0, 0, 0, 2069, 2070, 7, 15, 0, 0, 2070, 2071, 7, 9, 0, 0, 2071, 2072, 7, 7, 0, 0, 2072, 2073, 7, 5, 0, 0, 2073, 2074, 7, 2, 0, 0, 2074, 2075, 7, 11, 0, 0, 2075, 2076, 7, 9, 0, 0, 2076, 206, 1, 0, 0, 0, 2077, 2078, 7, 15, 0, 0, 2078, 2079, 7, 9, 0, 0, 2079, 2080, 7, 23, 0, 0, 2080, 2081, 7, 2, 0, 0, 2081, 2082, 7, 21, 0, 0, 2082, 2083, 7, 5, 0, 0, 2083, 2084, 7, 8, 0, 0, 2084, 208, 1, 0, 0, 0, 2085, 2086, 7, 15, 0, 0, 2086, 2087, 7, 9, 0, 0, 2087, 2088, 7, 23, 0, 0, 2088, 2089, 7, 19, 0, 0, 2089, 2090, 7, 12, 0, 0, 2090, 2091, 7, 9, 0, 0, 2091, 210, 1, 0, 0, 0, 2092, 2093, 7, 15, 0, 0, 2093, 2094, 7, 9, 0, 0, 2094, 2095, 7, 5, 0, 0, 2095, 2096, 7, 9, 0, 0, 2096, 2097, 7, 8, 0, 0, 2097, 2098, 7, 9, 0, 0, 2098, 212, 1, 0, 0, 0, 2099, 2100, 7, 15, 0, 0, 2100, 2101, 7, 9, 0, 0, 2101, 2102, 7, 12, 0, 0, 2102, 2103, 7, 4, 0, 0, 2103, 2104, 7, 9, 0, 0, 2104, 2105, 5, 95, 0, 0, 2105, 2106, 7, 11, 0, 0, 2106, 2107, 7, 2, 0, 0, 2107, 2108, 7, 12, 0, 0, 2108, 2109, 7, 25, 0, 0, 2109, 214, 1, 0, 0, 0, 2110, 2111, 7, 15, 0, 0, 2111, 2112, 7, 9, 0, 0, 2112, 2113, 7, 11, 0, 0, 2113, 2114, 7, 9, 0, 0, 2114, 2115, 7, 23, 0, 0, 2115, 216, 1, 0, 0, 0, 2116, 2117, 7, 15, 0, 0, 2117, 2118, 7, 9, 0, 0, 2118, 2119, 7, 4, 0, 0, 2119, 2120, 7, 7, 0, 0, 2120, 2121, 7, 11, 0, 0, 2121, 2122, 7, 19, 0, 0, 2122, 2123, 7, 3, 0, 0, 2123, 2124, 7, 9, 0, 0, 2124, 218, 1, 0, 0, 0, 2125, 2126, 7, 15, 0, 0, 2126, 2127, 7, 9, 0, 0, 2127, 2128, 7, 8, 0, 0, 2128, 2129, 7, 9, 0, 0, 2129, 2130, 7, 11, 0, 0, 2130, 2131, 7, 17, 0, 0, 2131, 2132, 7, 19, 0, 0, 2132, 2133, 7, 12, 0, 0, 2133, 2134, 7, 19, 0, 0, 2134, 2135, 7, 4, 0, 0, 2135, 2136, 7, 8, 0, 0, 2136, 2137, 7, 19, 0, 0, 2137, 2138, 7, 7, 0, 0, 2138, 220, 1, 0, 0, 0, 2139, 2140, 7, 15, 0, 0, 2140, 2141, 7, 19, 0, 0, 2141, 2142, 7, 4, 0, 0, 2142, 2143, 7, 2, 0, 0, 2143, 2144, 7, 5, 0, 0, 2144, 2145, 7, 5, 0, 0, 2145, 2146, 7, 6, 0, 0, 2146, 2147, 7, 10, 0, 0, 2147, 222, 1, 0, 0, 0, 2148, 2149, 7, 15, 0, 0, 2149, 2150, 7, 19, 0, 0, 2150, 2151, 7, 4, 0, 0, 2151, 2152, 7, 7, 0, 0, 2152, 2153, 7, 6, 0, 0, 2153, 2154, 7, 12, 0, 0, 2154, 2155, 7, 12, 0, 0, 2155, 2156, 7, 9, 0, 0, 2156, 2157, 7, 7, 0, 0, 2157, 2158, 7, 8, 0, 0, 2158, 224, 1, 0, 0, 0, 2159, 2160, 7, 15, 0, 0, 2160, 2161, 7, 19, 0, 0, 2161, 2162, 7, 4, 0, 0, 2162, 2163, 7, 8, 0, 0, 2163, 2164, 7, 19, 0, 0, 2164, 2165, 7, 12, 0, 0, 2165, 2166, 7, 7, 0, 0, 2166, 2167, 7, 8, 0, 0, 2167, 226, 1, 0, 0, 0, 2168, 2169, 7, 15, 0, 0, 2169, 2170, 7, 6, 0, 0, 2170, 2171, 7, 8, 0, 0, 2171, 228, 1, 0, 0, 0, 2172, 2173, 7, 15, 0, 0, 2173, 2174, 7, 6, 0, 0, 2174, 2175, 7, 21, 0, 0, 2175, 2176, 7, 3, 0, 0, 2176, 2177, 7, 5, 0, 0, 2177, 2178, 7, 9, 0, 0, 2178, 230, 1, 0, 0, 0, 2179, 2180, 7, 15, 0, 0, 2180, 2181, 7, 11, 0, 0, 2181, 2182, 7, 6, 0, 0, 2182, 2183, 7, 24, 0, 0, 2183, 232, 1, 0, 0, 0, 2184, 2185, 7, 15, 0, 0, 2185, 2186, 7, 13, 0, 0, 2186, 2187, 7, 12, 0, 0, 2187, 2188, 7, 2, 0, 0, 2188, 2189, 7, 17, 0, 0, 2189, 2190, 7, 19, 0, 0, 2190, 2191, 7, 7, 0, 0, 2191, 234, 1, 0, 0, 0, 2192, 2193, 7, 9, 0, 0, 2193, 2194, 7, 2, 0, 0, 2194, 2195, 7, 7, 0, 0, 2195, 2196, 7, 22, 0, 0, 2196, 236, 1, 0, 0, 0, 2197, 2198, 7, 9, 0, 0, 2198, 2199, 7, 5, 0, 0, 2199, 2200, 7, 9, 0, 0, 2200, 2201, 7, 17, 0, 0, 2201, 2202, 7, 9, 0, 0, 2202, 2203, 7, 12, 0, 0, 2203, 2204, 7, 8, 0, 0, 2204, 238, 1, 0, 0, 0, 2205, 2206, 7, 9, 0, 0, 2206, 2207, 7, 5, 0, 0, 2207, 2208, 7, 4, 0, 0, 2208, 2209, 7, 9, 0, 0, 2209, 240, 1, 0, 0, 0, 2210, 2211, 7, 9, 0, 0, 2211, 2212, 7, 17, 0, 0, 2212, 2213, 7, 24, 0, 0, 2213, 2214, 7, 8, 0, 0, 2214, 2215, 7, 13, 0, 0, 2215, 242, 1, 0, 0, 0, 2216, 2217, 7, 9, 0, 0, 2217, 2218, 7, 12, 0, 0, 2218, 2219, 7, 15, 0, 0, 2219, 244, 1, 0, 0, 0, 2220, 2221, 7, 9, 0, 0, 2221, 2222, 7, 12, 0, 0, 2222, 2223, 7, 15, 0, 0, 2223, 2224, 5, 95, 0, 0, 2224, 2225, 7, 23, 0, 0, 2225, 2226, 7, 11, 0, 0, 2226, 2227, 7, 2, 0, 0, 2227, 2228, 7, 17, 0, 0, 2228, 2229, 7, 9, 0, 0, 2229, 246, 1, 0, 0, 0, 2230, 2231, 7, 9, 0, 0, 2231, 2232, 7, 12, 0, 0, 2232, 2233, 7, 15, 0, 0, 2233, 2234, 5, 95, 0, 0, 2234, 2235, 7, 24, 0, 0, 2235, 2236, 7, 2, 0, 0, 2236, 2237, 7, 11, 0, 0, 2237, 2238, 7, 8, 0, 0, 2238, 2239, 7, 19, 0, 0, 2239, 2240, 7, 8, 0, 0, 2240, 2241, 7, 19, 0, 0, 2241, 2242, 7, 6, 0, 0, 2242, 2243, 7, 12, 0, 0, 2243, 248, 1, 0, 0, 0, 2244, 2245, 7, 9, 0, 0, 2245, 2246, 7, 12, 0, 0, 2246, 2247, 7, 23, 0, 0, 2247, 2248, 7, 6, 0, 0, 2248, 2249, 7, 11, 0, 0, 2249, 2250, 7, 7, 0, 0, 2250, 2251, 7, 9, 0, 0, 2251, 2252, 7, 15, 0, 0, 2252, 250, 1, 0, 0, 0, 2253, 2254, 7, 9, 0, 0, 2254, 2255, 7, 26, 0, 0, 2255, 2256, 7, 21, 0, 0, 2256, 2257, 7, 2, 0, 0, 2257, 2258, 7, 5, 0, 0, 2258, 2259, 7, 4, 0, 0, 2259, 252, 1, 0, 0, 0, 2260, 2261, 7, 9, 0, 0, 2261, 2262, 7, 4, 0, 0, 2262, 2263, 7, 7, 0, 0, 2263, 2264, 7, 2, 0, 0, 2264, 2265, 7, 24, 0, 0, 2265, 2266, 7, 9, 0, 0, 2266, 254, 1, 0, 0, 0, 2267, 2268, 7, 9, 0, 0, 2268, 2269, 7, 4, 0, 0, 2269, 2270, 7, 8, 0, 0, 2270, 2271, 7, 19, 0, 0, 2271, 2272, 7, 17, 0, 0, 2272, 2273, 7, 2, 0, 0, 2273, 2274, 7, 8, 0, 0, 2274, 2275, 7, 9, 0, 0, 2275, 2276, 7, 15, 0, 0, 2276, 2277, 5, 95, 0, 0, 2277, 2278, 7, 7, 0, 0, 2278, 2279, 7, 6, 0, 0, 2279, 2280, 7, 4, 0, 0, 2280, 2281, 7, 8, 0, 0, 2281, 256, 1, 0, 0, 0, 2282, 2283, 7, 9, 0, 0, 2283, 2284, 7, 20, 0, 0, 2284, 2285, 7, 9, 0, 0, 2285, 2286, 7, 11, 0, 0, 2286, 2287, 7, 13, 0, 0, 2287, 258, 1, 0, 0, 0, 2288, 2289, 7, 9, 0, 0, 2289, 2290, 7, 18, 0, 0, 2290, 2291, 7, 7, 0, 0, 2291, 2292, 7, 9, 0, 0, 2292, 2293, 7, 24, 0, 0, 2293, 2294, 7, 8, 0, 0, 2294, 260, 1, 0, 0, 0, 2295, 2296, 7, 9, 0, 0, 2296, 2297, 7, 18, 0, 0, 2297, 2298, 7, 9, 0, 0, 2298, 2299, 7, 7, 0, 0, 2299, 262, 1, 0, 0, 0, 2300, 2301, 7, 9, 0, 0, 2301, 2302, 7, 18, 0, 0, 2302, 2303, 7, 9, 0, 0, 2303, 2304, 7, 7, 0, 0, 2304, 2305, 7, 21, 0, 0, 2305, 2306, 7, 8, 0, 0, 2306, 2307, 7, 9, 0, 0, 2307, 264, 1, 0, 0, 0, 2308, 2309, 7, 9, 0, 0, 2309, 2310, 7, 18, 0, 0, 2310, 2311, 7, 19, 0, 0, 2311, 2312, 7, 4, 0, 0, 2312, 2313, 7, 8, 0, 0, 2313, 2314, 7, 4, 0, 0, 2314, 266, 1, 0, 0, 0, 2315, 2316, 7, 9, 0, 0, 2316, 2317, 7, 18, 0, 0, 2317, 2318, 7, 24, 0, 0, 2318, 268, 1, 0, 0, 0, 2319, 2320, 7, 9, 0, 0, 2320, 2321, 7, 18, 0, 0, 2321, 2322, 7, 24, 0, 0, 2322, 2323, 7, 5, 0, 0, 2323, 2324, 7, 2, 0, 0, 2324, 2325, 7, 19, 0, 0, 2325, 2326, 7, 12, 0, 0, 2326, 270, 1, 0, 0, 0, 2327, 2328, 7, 9, 0, 0, 2328, 2329, 7, 18, 0, 0, 2329, 2330, 7, 8, 0, 0, 2330, 2331, 7, 9, 0, 0, 2331, 2332, 7, 12, 0, 0, 2332, 2333, 7, 15, 0, 0, 2333, 272, 1, 0, 0, 0, 2334, 2335, 7, 9, 0, 0, 2335, 2336, 7, 18, 0, 0, 2336, 2337, 7, 8, 0, 0, 2337, 2338, 7, 9, 0, 0, 2338, 2339, 7, 12, 0, 0, 2339, 2340, 7, 15, 0, 0, 2340, 2341, 7, 9, 0, 0, 2341, 2342, 7, 15, 0, 0, 2342, 274, 1, 0, 0, 0, 2343, 2344, 7, 9, 0, 0, 2344, 2345, 7, 18, 0, 0, 2345, 2346, 7, 8, 0, 0, 2346, 2347, 7, 9, 0, 0, 2347, 2348, 7, 11, 0, 0, 2348, 2349, 7, 12, 0, 0, 2349, 2350, 7, 2, 0, 0, 2350, 2351, 7, 5, 0, 0, 2351, 276, 1, 0, 0, 0, 2352, 2353, 7, 9, 0, 0, 2353, 2354, 7, 18, 0, 0, 2354, 2355, 7, 8, 0, 0, 2355, 2356, 7, 11, 0, 0, 2356, 2357, 7, 2, 0, 0, 2357, 2358, 7, 7, 0, 0, 2358, 2359, 7, 8, 0, 0, 2359, 278, 1, 0, 0, 0, 2360, 2361, 7, 23, 0, 0, 2361, 2362, 7, 2, 0, 0, 2362, 2363, 7, 5, 0, 0, 2363, 2364, 7, 4, 0, 0, 2364, 2365, 7, 9, 0, 0, 2365, 280, 1, 0, 0, 0, 2366, 2367, 7, 23, 0, 0, 2367, 2368, 7, 9, 0, 0, 2368, 2369, 7, 8, 0, 0, 2369, 2370, 7, 7, 0, 0, 2370, 2371, 7, 22, 0, 0, 2371, 282, 1, 0, 0, 0, 2372, 2373, 7, 23, 0, 0, 2373, 2374, 7, 19, 0, 0, 2374, 2375, 7, 5, 0, 0, 2375, 2376, 7, 8, 0, 0, 2376, 2377, 7, 9, 0, 0, 2377, 2378, 7, 11, 0, 0, 2378, 284, 1, 0, 0, 0, 2379, 2380, 7, 23, 0, 0, 2380, 2381, 7, 19, 0, 0, 2381, 2382, 7, 11, 0, 0, 2382, 2383, 7, 4, 0, 0, 2383, 2384, 7, 8, 0, 0, 2384, 2385, 5, 95, 0, 0, 2385, 2386, 7, 20, 0, 0, 2386, 2387, 7, 2, 0, 0, 2387, 2388, 7, 5, 0, 0, 2388, 2389, 7, 21, 0, 0, 2389, 2390, 7, 9, 0, 0, 2390, 286, 1, 0, 0, 0, 2391, 2392, 7, 23, 0, 0, 2392, 2393, 7, 5, 0, 0, 2393, 2394, 7, 6, 0, 0, 2394, 2395, 7, 2, 0, 0, 2395, 2396, 7, 8, 0, 0, 2396, 288, 1, 0, 0, 0, 2397, 2398, 7, 23, 0, 0, 2398, 2399, 7, 5, 0, 0, 2399, 2400, 7, 6, 0, 0, 2400, 2401, 7, 6, 0, 0, 2401, 2402, 7, 11, 0, 0, 2402, 290, 1, 0, 0, 0, 2403, 2404, 7, 23, 0, 0, 2404, 2405, 7, 6, 0, 0, 2405, 2406, 7, 5, 0, 0, 2406, 2407, 7, 5, 0, 0, 2407, 2408, 7, 6, 0, 0, 2408, 2409, 7, 10, 0, 0, 2409, 2410, 7, 19, 0, 0, 2410, 2411, 7, 12, 0, 0, 2411, 2412, 7, 16, 0, 0, 2412, 292, 1, 0, 0, 0, 2413, 2414, 7, 23, 0, 0, 2414, 2415, 7, 6, 0, 0, 2415, 2416, 7, 11, 0, 0, 2416, 294, 1, 0, 0, 0, 2417, 2418, 7, 23, 0, 0, 2418, 2419, 7, 6, 0, 0, 2419, 2420, 7, 11, 0, 0, 2420, 2421, 7, 9, 0, 0, 2421, 2422, 7, 19, 0, 0, 2422, 2423, 7, 16, 0, 0, 2423, 2424, 7, 12, 0, 0, 2424, 296, 1, 0, 0, 0, 2425, 2426, 7, 23, 0, 0, 2426, 2427, 7, 11, 0, 0, 2427, 2428, 7, 2, 0, 0, 2428, 2429, 7, 17, 0, 0, 2429, 2430, 7, 9, 0, 0, 2430, 2431, 5, 95, 0, 0, 2431, 2432, 7, 11, 0, 0, 2432, 2433, 7, 6, 0, 0, 2433, 2434, 7, 10, 0, 0, 2434, 298, 1, 0, 0, 0, 2435, 2436, 7, 23, 0, 0, 2436, 2437, 7, 11, 0, 0, 2437, 2438, 7, 9, 0, 0, 2438, 2439, 7, 9, 0, 0, 2439, 300, 1, 0, 0, 0, 2440, 2441, 7, 23, 0, 0, 2441, 2442, 7, 11, 0, 0, 2442, 2443, 7, 19, 0, 0, 2443, 2444, 7, 15, 0, 0, 2444, 2445, 7, 2, 0, 0, 2445, 2446, 7, 13, 0, 0, 2446, 302, 1, 0, 0, 0, 2447, 2448, 7, 23, 0, 0, 2448, 2449, 7, 11, 0, 0, 2449, 2450, 7, 6, 0, 0, 2450, 2451, 7, 17, 0, 0, 2451, 304, 1, 0, 0, 0, 2452, 2453, 7, 23, 0, 0, 2453, 2454, 7, 21, 0, 0, 2454, 2455, 7, 5, 0, 0, 2455, 2456, 7, 5, 0, 0, 2456, 306, 1, 0, 0, 0, 2457, 2458, 7, 23, 0, 0, 2458, 2459, 7, 21, 0, 0, 2459, 2460, 7, 12, 0, 0, 2460, 2461, 7, 7, 0, 0, 2461, 2462, 7, 8, 0, 0, 2462, 2463, 7, 19, 0, 0, 2463, 2464, 7, 6, 0, 0, 2464, 2465, 7, 12, 0, 0, 2465, 308, 1, 0, 0, 0, 2466, 2467, 7, 23, 0, 0, 2467, 2468, 7, 21, 0, 0, 2468, 2469, 7, 12, 0, 0, 2469, 2470, 7, 7, 0, 0, 2470, 2471, 7, 8, 0, 0, 2471, 2472, 7, 19, 0, 0, 2472, 2473, 7, 6, 0, 0, 2473, 2474, 7, 12, 0, 0, 2474, 2475, 7, 4, 0, 0, 2475, 310, 1, 0, 0, 0, 2476, 2477, 7, 23, 0, 0, 2477, 2478, 7, 21, 0, 0, 2478, 2479, 7, 4, 0, 0, 2479, 2480, 7, 19, 0, 0, 2480, 2481, 7, 6, 0, 0, 2481, 2482, 7, 12, 0, 0, 2482, 312, 1, 0, 0, 0, 2483, 2484, 7, 16, 0, 0, 2484, 2485, 7, 9, 0, 0, 2485, 2486, 7, 8, 0, 0, 2486, 314, 1, 0, 0, 0, 2487, 2488, 7, 16, 0, 0, 2488, 2489, 7, 5, 0, 0, 2489, 2490, 7, 6, 0, 0, 2490, 2491, 7, 3, 0, 0, 2491, 2492, 7, 2, 0, 0, 2492, 2493, 7, 5, 0, 0, 2493, 316, 1, 0, 0, 0, 2494, 2495, 7, 16, 0, 0, 2495, 2496, 7, 11, 0, 0, 2496, 2497, 7, 2, 0, 0, 2497, 2498, 7, 12, 0, 0, 2498, 2499, 7, 8, 0, 0, 2499, 318, 1, 0, 0, 0, 2500, 2501, 7, 16, 0, 0, 2501, 2502, 7, 11, 0, 0, 2502, 2503, 7, 6, 0, 0, 2503, 2504, 7, 21, 0, 0, 2504, 2505, 7, 24, 0, 0, 2505, 320, 1, 0, 0, 0, 2506, 2507, 7, 16, 0, 0, 2507, 2508, 7, 11, 0, 0, 2508, 2509, 7, 6, 0, 0, 2509, 2510, 7, 21, 0, 0, 2510, 2511, 7, 24, 0, 0, 2511, 2512, 7, 19, 0, 0, 2512, 2513, 7, 12, 0, 0, 2513, 2514, 7, 16, 0, 0, 2514, 322, 1, 0, 0, 0, 2515, 2516, 7, 16, 0, 0, 2516, 2517, 7, 11, 0, 0, 2517, 2518, 7, 6, 0, 0, 2518, 2519, 7, 21, 0, 0, 2519, 2520, 7, 24, 0, 0, 2520, 2521, 7, 4, 0, 0, 2521, 324, 1, 0, 0, 0, 2522, 2523, 7, 16, 0, 0, 2523, 2524, 7, 11, 0, 0, 2524, 2525, 7, 6, 0, 0, 2525, 2526, 7, 21, 0, 0, 2526, 2527, 7, 24, 0, 0, 2527, 2528, 5, 95, 0, 0, 2528, 2529, 7, 7, 0, 0, 2529, 2530, 7, 6, 0, 0, 2530, 2531, 7, 12, 0, 0, 2531, 2532, 7, 7, 0, 0, 2532, 2533, 7, 2, 0, 0, 2533, 2534, 7, 8, 0, 0, 2534, 326, 1, 0, 0, 0, 2535, 2536, 7, 22, 0, 0, 2536, 2537, 7, 2, 0, 0, 2537, 2538, 7, 20, 0, 0, 2538, 2539, 7, 19, 0, 0, 2539, 2540, 7, 12, 0, 0, 2540, 2541, 7, 16, 0, 0, 2541, 328, 1, 0, 0, 0, 2542, 2543, 7, 22, 0, 0, 2543, 2544, 7, 6, 0, 0, 2544, 2545, 7, 5, 0, 0, 2545, 2546, 7, 15, 0, 0, 2546, 330, 1, 0, 0, 0, 2547, 2548, 7, 22, 0, 0, 2548, 2549, 7, 6, 0, 0, 2549, 2550, 7, 21, 0, 0, 2550, 2551, 7, 11, 0, 0, 2551, 332, 1, 0, 0, 0, 2552, 2553, 7, 19, 0, 0, 2553, 2554, 7, 15, 0, 0, 2554, 2555, 7, 9, 0, 0, 2555, 2556, 7, 12, 0, 0, 2556, 2557, 7, 8, 0, 0, 2557, 2558, 7, 19, 0, 0, 2558, 2559, 7, 8, 0, 0, 2559, 2560, 7, 13, 0, 0, 2560, 334, 1, 0, 0, 0, 2561, 2562, 7, 19, 0, 0, 2562, 2563, 7, 23, 0, 0, 2563, 336, 1, 0, 0, 0, 2564, 2565, 7, 19, 0, 0, 2565, 2566, 7, 5, 0, 0, 2566, 2567, 7, 19, 0, 0, 2567, 2568, 7, 25, 0, 0, 2568, 2569, 7, 9, 0, 0, 2569, 338, 1, 0, 0, 0, 2570, 2571, 7, 19, 0, 0, 2571, 2572, 7, 17, 0, 0, 2572, 2573, 7, 24, 0, 0, 2573, 2574, 7, 6, 0, 0, 2574, 2575, 7, 11, 0, 0, 2575, 2576, 7, 8, 0, 0, 2576, 340, 1, 0, 0, 0, 2577, 2578, 7, 19, 0, 0, 2578, 2579, 7, 12, 0, 0, 2579, 342, 1, 0, 0, 0, 2580, 2581, 7, 19, 0, 0, 2581, 2582, 7, 12, 0, 0, 2582, 2583, 7, 7, 0, 0, 2583, 2584, 7, 5, 0, 0, 2584, 2585, 7, 21, 0, 0, 2585, 2586, 7, 15, 0, 0, 2586, 2587, 7, 9, 0, 0, 2587, 344, 1, 0, 0, 0, 2588, 2589, 7, 19, 0, 0, 2589, 2590, 7, 12, 0, 0, 2590, 2591, 7, 15, 0, 0, 2591, 2592, 7, 19, 0, 0, 2592, 2593, 7, 7, 0, 0, 2593, 2594, 7, 2, 0, 0, 2594, 2595, 7, 8, 0, 0, 2595, 2596, 7, 6, 0, 0, 2596, 2597, 7, 11, 0, 0, 2597, 346, 1, 0, 0, 0, 2598, 2599, 7, 19, 0, 0, 2599, 2600, 7, 12, 0, 0, 2600, 2601, 7, 19, 0, 0, 2601, 2602, 7, 8, 0, 0, 2602, 2603, 7, 19, 0, 0, 2603, 2604, 7, 2, 0, 0, 2604, 2605, 7, 5, 0, 0, 2605, 348, 1, 0, 0, 0, 2606, 2607, 7, 19, 0, 0, 2607, 2608, 7, 12, 0, 0, 2608, 2609, 7, 12, 0, 0, 2609, 2610, 7, 9, 0, 0, 2610, 2611, 7, 11, 0, 0, 2611, 350, 1, 0, 0, 0, 2612, 2613, 7, 19, 0, 0, 2613, 2614, 7, 12, 0, 0, 2614, 2615, 7, 6, 0, 0, 2615, 2616, 7, 21, 0, 0, 2616, 2617, 7, 8, 0, 0, 2617, 352, 1, 0, 0, 0, 2618, 2619, 7, 19, 0, 0, 2619, 2620, 7, 12, 0, 0, 2620, 2621, 7, 4, 0, 0, 2621, 2622, 7, 9, 0, 0, 2622, 2623, 7, 12, 0, 0, 2623, 2624, 7, 4, 0, 0, 2624, 2625, 7, 19, 0, 0, 2625, 2626, 7, 8, 0, 0, 2626, 2627, 7, 19, 0, 0, 2627, 2628, 7, 20, 0, 0, 2628, 2629, 7, 9, 0, 0, 2629, 354, 1, 0, 0, 0, 2630, 2631, 7, 19, 0, 0, 2631, 2632, 7, 12, 0, 0, 2632, 2633, 7, 4, 0, 0, 2633, 2634, 7, 9, 0, 0, 2634, 2635, 7, 11, 0, 0, 2635, 2636, 7, 8, 0, 0, 2636, 356, 1, 0, 0, 0, 2637, 2638, 7, 19, 0, 0, 2638, 2639, 7, 12, 0, 0, 2639, 2640, 7, 8, 0, 0, 2640, 358, 1, 0, 0, 0, 2641, 2642, 7, 19, 0, 0, 2642, 2643, 7, 12, 0, 0, 2643, 2644, 7, 8, 0, 0, 2644, 2645, 7, 9, 0, 0, 2645, 2646, 7, 16, 0, 0, 2646, 2647, 7, 9, 0, 0, 2647, 2648, 7, 11, 0, 0, 2648, 360, 1, 0, 0, 0, 2649, 2650, 7, 19, 0, 0, 2650, 2651, 7, 12, 0, 0, 2651, 2652, 7, 8, 0, 0, 2652, 2653, 7, 9, 0, 0, 2653, 2654, 7, 11, 0, 0, 2654, 2655, 7, 4, 0, 0, 2655, 2656, 7, 9, 0, 0, 2656, 2657, 7, 7, 0, 0, 2657, 2658, 7, 8, 0, 0, 2658, 362, 1, 0, 0, 0, 2659, 2660, 7, 19, 0, 0, 2660, 2661, 7, 12, 0, 0, 2661, 2662, 7, 8, 0, 0, 2662, 2663, 7, 9, 0, 0, 2663, 2664, 7, 11, 0, 0, 2664, 2665, 7, 4, 0, 0, 2665, 2666, 7, 9, 0, 0, 2666, 2667, 7, 7, 0, 0, 2667, 2668, 7, 8, 0, 0, 2668, 2669, 7, 19, 0, 0, 2669, 2670, 7, 6, 0, 0, 2670, 2671, 7, 12, 0, 0, 2671, 364, 1, 0, 0, 0, 2672, 2673, 7, 19, 0, 0, 2673, 2674, 7, 12, 0, 0, 2674, 2675, 7, 8, 0, 0, 2675, 2676, 7, 9, 0, 0, 2676, 2677, 7, 11, 0, 0, 2677, 2678, 7, 20, 0, 0, 2678, 2679, 7, 2, 0, 0, 2679, 2680, 7, 5, 0, 0, 2680, 366, 1, 0, 0, 0, 2681, 2682, 7, 19, 0, 0, 2682, 2683, 7, 12, 0, 0, 2683, 2684, 7, 8, 0, 0, 2684, 2685, 7, 6, 0, 0, 2685, 368, 1, 0, 0, 0, 2686, 2687, 7, 19, 0, 0, 2687, 2688, 7, 4, 0, 0, 2688, 370, 1, 0, 0, 0, 2689, 2690, 7, 27, 0, 0, 2690, 2691, 7, 6, 0, 0, 2691, 2692, 7, 19, 0, 0, 2692, 2693, 7, 12, 0, 0, 2693, 372, 1, 0, 0, 0, 2694, 2695, 7, 27, 0, 0, 2695, 2696, 7, 4, 0, 0, 2696, 2697, 7, 6, 0, 0, 2697, 2698, 7, 12, 0, 0, 2698, 374, 1, 0, 0, 0, 2699, 2700, 7, 27, 0, 0, 2700, 2701, 7, 4, 0, 0, 2701, 2702, 7, 6, 0, 0, 2702, 2703, 7, 12, 0, 0, 2703, 2704, 5, 95, 0, 0, 2704, 2705, 7, 2, 0, 0, 2705, 2706, 7, 11, 0, 0, 2706, 2707, 7, 11, 0, 0, 2707, 2708, 7, 2, 0, 0, 2708, 2709, 7, 13, 0, 0, 2709, 376, 1, 0, 0, 0, 2710, 2711, 7, 27, 0, 0, 2711, 2712, 7, 4, 0, 0, 2712, 2713, 7, 6, 0, 0, 2713, 2714, 7, 12, 0, 0, 2714, 2715, 5, 95, 0, 0, 2715, 2716, 7, 2, 0, 0, 2716, 2717, 7, 11, 0, 0, 2717, 2718, 7, 11, 0, 0, 2718, 2719, 7, 2, 0, 0, 2719, 2720, 7, 13, 0, 0, 2720, 2721, 7, 2, 0, 0, 2721, 2722, 7, 16, 0, 0, 2722, 2723, 7, 16, 0, 0, 2723, 378, 1, 0, 0, 0, 2724, 2725, 7, 27, 0, 0, 2725, 2726, 7, 4, 0, 0, 2726, 2727, 7, 6, 0, 0, 2727, 2728, 7, 12, 0, 0, 2728, 2729, 5, 95, 0, 0, 2729, 2730, 7, 9, 0, 0, 2730, 2731, 7, 18, 0, 0, 2731, 2732, 7, 9, 0, 0, 2732, 2733, 7, 7, 0, 0, 2733, 2734, 7, 21, 0, 0, 2734, 2735, 7, 8, 0, 0, 2735, 2736, 7, 19, 0, 0, 2736, 2737, 7, 6, 0, 0, 2737, 2738, 7, 12, 0, 0, 2738, 2739, 5, 95, 0, 0, 2739, 2740, 7, 24, 0, 0, 2740, 2741, 7, 5, 0, 0, 2741, 2742, 7, 2, 0, 0, 2742, 2743, 7, 12, 0, 0, 2743, 380, 1, 0, 0, 0, 2744, 2745, 7, 27, 0, 0, 2745, 2746, 7, 4, 0, 0, 2746, 2747, 7, 6, 0, 0, 2747, 2748, 7, 12, 0, 0, 2748, 2749, 5, 95, 0, 0, 2749, 2750, 7, 9, 0, 0, 2750, 2751, 7, 18, 0, 0, 2751, 2752, 7, 19, 0, 0, 2752, 2753, 7, 4, 0, 0, 2753, 2754, 7, 8, 0, 0, 2754, 2755, 7, 4, 0, 0, 2755, 382, 1, 0, 0, 0, 2756, 2757, 7, 27, 0, 0, 2757, 2758, 7, 4, 0, 0, 2758, 2759, 7, 6, 0, 0, 2759, 2760, 7, 12, 0, 0, 2760, 2761, 5, 95, 0, 0, 2761, 2762, 7, 6, 0, 0, 2762, 2763, 7, 3, 0, 0, 2763, 2764, 7, 27, 0, 0, 2764, 2765, 7, 9, 0, 0, 2765, 2766, 7, 7, 0, 0, 2766, 2767, 7, 8, 0, 0, 2767, 384, 1, 0, 0, 0, 2768, 2769, 7, 27, 0, 0, 2769, 2770, 7, 4, 0, 0, 2770, 2771, 7, 6, 0, 0, 2771, 2772, 7, 12, 0, 0, 2772, 2773, 5, 95, 0, 0, 2773, 2774, 7, 6, 0, 0, 2774, 2775, 7, 3, 0, 0, 2775, 2776, 7, 27, 0, 0, 2776, 2777, 7, 9, 0, 0, 2777, 2778, 7, 7, 0, 0, 2778, 2779, 7, 8, 0, 0, 2779, 2780, 7, 2, 0, 0, 2780, 2781, 7, 16, 0, 0, 2781, 2782, 7, 16, 0, 0, 2782, 386, 1, 0, 0, 0, 2783, 2784, 7, 27, 0, 0, 2784, 2785, 7, 4, 0, 0, 2785, 2786, 7, 6, 0, 0, 2786, 2787, 7, 12, 0, 0, 2787, 2788, 5, 95, 0, 0, 2788, 2789, 7, 26, 0, 0, 2789, 2790, 7, 21, 0, 0, 2790, 2791, 7, 9, 0, 0, 2791, 2792, 7, 11, 0, 0, 2792, 2793, 7, 13, 0, 0, 2793, 388, 1, 0, 0, 0, 2794, 2795, 7, 27, 0, 0, 2795, 2796, 7, 4, 0, 0, 2796, 2797, 7, 6, 0, 0, 2797, 2798, 7, 12, 0, 0, 2798, 2799, 5, 95, 0, 0, 2799, 2800, 7, 20, 0, 0, 2800, 2801, 7, 2, 0, 0, 2801, 2802, 7, 5, 0, 0, 2802, 2803, 7, 21, 0, 0, 2803, 2804, 7, 9, 0, 0, 2804, 390, 1, 0, 0, 0, 2805, 2806, 7, 5, 0, 0, 2806, 2807, 7, 2, 0, 0, 2807, 2808, 7, 16, 0, 0, 2808, 392, 1, 0, 0, 0, 2809, 2810, 7, 5, 0, 0, 2810, 2811, 7, 2, 0, 0, 2811, 2812, 7, 12, 0, 0, 2812, 2813, 7, 16, 0, 0, 2813, 2814, 7, 21, 0, 0, 2814, 2815, 7, 2, 0, 0, 2815, 2816, 7, 16, 0, 0, 2816, 2817, 7, 9, 0, 0, 2817, 394, 1, 0, 0, 0, 2818, 2819, 7, 5, 0, 0, 2819, 2820, 7, 2, 0, 0, 2820, 2821, 7, 11, 0, 0, 2821, 2822, 7, 16, 0, 0, 2822, 2823, 7, 9, 0, 0, 2823, 396, 1, 0, 0, 0, 2824, 2825, 7, 5, 0, 0, 2825, 2826, 7, 2, 0, 0, 2826, 2827, 7, 4, 0, 0, 2827, 2828, 7, 8, 0, 0, 2828, 2829, 5, 95, 0, 0, 2829, 2830, 7, 20, 0, 0, 2830, 2831, 7, 2, 0, 0, 2831, 2832, 7, 5, 0, 0, 2832, 2833, 7, 21, 0, 0, 2833, 2834, 7, 9, 0, 0, 2834, 398, 1, 0, 0, 0, 2835, 2836, 7, 5, 0, 0, 2836, 2837, 7, 2, 0, 0, 2837, 2838, 7, 8, 0, 0, 2838, 2839, 7, 9, 0, 0, 2839, 2840, 7, 11, 0, 0, 2840, 2841, 7, 2, 0, 0, 2841, 2842, 7, 5, 0, 0, 2842, 400, 1, 0, 0, 0, 2843, 2844, 7, 5, 0, 0, 2844, 2845, 7, 9, 0, 0, 2845, 2846, 7, 2, 0, 0, 2846, 2847, 7, 15, 0, 0, 2847, 402, 1, 0, 0, 0, 2848, 2849, 7, 5, 0, 0, 2849, 2850, 7, 9, 0, 0, 2850, 2851, 7, 2, 0, 0, 2851, 2852, 7, 15, 0, 0, 2852, 2853, 7, 19, 0, 0, 2853, 2854, 7, 12, 0, 0, 2854, 2855, 7, 16, 0, 0, 2855, 404, 1, 0, 0, 0, 2856, 2857, 7, 5, 0, 0, 2857, 2858, 7, 9, 0, 0, 2858, 2859, 7, 23, 0, 0, 2859, 2860, 7, 8, 0, 0, 2860, 406, 1, 0, 0, 0, 2861, 2862, 7, 5, 0, 0, 2862, 2863, 7, 19, 0, 0, 2863, 2864, 7, 25, 0, 0, 2864, 2865, 7, 9, 0, 0, 2865, 408, 1, 0, 0, 0, 2866, 2867, 7, 5, 0, 0, 2867, 2868, 7, 19, 0, 0, 2868, 2869, 7, 25, 0, 0, 2869, 2870, 7, 9, 0, 0, 2870, 2871, 5, 95, 0, 0, 2871, 2872, 7, 11, 0, 0, 2872, 2873, 7, 9, 0, 0, 2873, 2874, 7, 16, 0, 0, 2874, 2875, 7, 9, 0, 0, 2875, 2876, 7, 18, 0, 0, 2876, 410, 1, 0, 0, 0, 2877, 2878, 7, 5, 0, 0, 2878, 2879, 7, 19, 0, 0, 2879, 2880, 7, 17, 0, 0, 2880, 2881, 7, 19, 0, 0, 2881, 2882, 7, 8, 0, 0, 2882, 412, 1, 0, 0, 0, 2883, 2884, 7, 5, 0, 0, 2884, 2885, 7, 12, 0, 0, 2885, 414, 1, 0, 0, 0, 2886, 2887, 7, 5, 0, 0, 2887, 2888, 7, 6, 0, 0, 2888, 2889, 7, 7, 0, 0, 2889, 2890, 7, 2, 0, 0, 2890, 2891, 7, 5, 0, 0, 2891, 416, 1, 0, 0, 0, 2892, 2893, 7, 5, 0, 0, 2893, 2894, 7, 6, 0, 0, 2894, 2895, 7, 7, 0, 0, 2895, 2896, 7, 2, 0, 0, 2896, 2897, 7, 5, 0, 0, 2897, 2898, 7, 8, 0, 0, 2898, 2899, 7, 19, 0, 0, 2899, 2900, 7, 17, 0, 0, 2900, 2901, 7, 9, 0, 0, 2901, 418, 1, 0, 0, 0, 2902, 2903, 7, 5, 0, 0, 2903, 2904, 7, 6, 0, 0, 2904, 2905, 7, 7, 0, 0, 2905, 2906, 7, 2, 0, 0, 2906, 2907, 7, 5, 0, 0, 2907, 2908, 7, 8, 0, 0, 2908, 2909, 7, 19, 0, 0, 2909, 2910, 7, 17, 0, 0, 2910, 2911, 7, 9, 0, 0, 2911, 2912, 7, 4, 0, 0, 2912, 2913, 7, 8, 0, 0, 2913, 2914, 7, 2, 0, 0, 2914, 2915, 7, 17, 0, 0, 2915, 2916, 7, 24, 0, 0, 2916, 420, 1, 0, 0, 0, 2917, 2918, 7, 5, 0, 0, 2918, 2919, 7, 6, 0, 0, 2919, 2920, 7, 10, 0, 0, 2920, 2921, 7, 9, 0, 0, 2921, 2922, 7, 11, 0, 0, 2922, 422, 1, 0, 0, 0, 2923, 2924, 7, 17, 0, 0, 2924, 2925, 7, 2, 0, 0, 2925, 2926, 7, 8, 0, 0, 2926, 2927, 7, 7, 0, 0, 2927, 2928, 7, 22, 0, 0, 2928, 424, 1, 0, 0, 0, 2929, 2930, 7, 17, 0, 0, 2930, 2931, 7, 2, 0, 0, 2931, 2932, 7, 8, 0, 0, 2932, 2933, 7, 7, 0, 0, 2933, 2934, 7, 22, 0, 0, 2934, 2935, 7, 9, 0, 0, 2935, 2936, 7, 4, 0, 0, 2936, 426, 1, 0, 0, 0, 2937, 2938, 7, 17, 0, 0, 2938, 2939, 7, 2, 0, 0, 2939, 2940, 7, 8, 0, 0, 2940, 2941, 7, 7, 0, 0, 2941, 2942, 7, 22, 0, 0, 2942, 2943, 5, 95, 0, 0, 2943, 2944, 7, 12, 0, 0, 2944, 2945, 7, 21, 0, 0, 2945, 2946, 7, 17, 0, 0, 2946, 2947, 7, 3, 0, 0, 2947, 2948, 7, 9, 0, 0, 2948, 2949, 7, 11, 0, 0, 2949, 428, 1, 0, 0, 0, 2950, 2951, 7, 17, 0, 0, 2951, 2952, 7, 2, 0, 0, 2952, 2953, 7, 8, 0, 0, 2953, 2954, 7, 7, 0, 0, 2954, 2955, 7, 22, 0, 0, 2955, 2956, 5, 95, 0, 0, 2956, 2957, 7, 11, 0, 0, 2957, 2958, 7, 9, 0, 0, 2958, 2959, 7, 7, 0, 0, 2959, 2960, 7, 6, 0, 0, 2960, 2961, 7, 16, 0, 0, 2961, 2962, 7, 12, 0, 0, 2962, 2963, 7, 19, 0, 0, 2963, 2964, 7, 14, 0, 0, 2964, 2965, 7, 9, 0, 0, 2965, 430, 1, 0, 0, 0, 2966, 2967, 7, 17, 0, 0, 2967, 2968, 7, 2, 0, 0, 2968, 2969, 7, 18, 0, 0, 2969, 432, 1, 0, 0, 0, 2970, 2971, 7, 17, 0, 0, 2971, 2972, 7, 9, 0, 0, 2972, 2973, 7, 2, 0, 0, 2973, 2974, 7, 4, 0, 0, 2974, 2975, 7, 21, 0, 0, 2975, 2976, 7, 11, 0, 0, 2976, 2977, 7, 9, 0, 0, 2977, 2978, 7, 4, 0, 0, 2978, 434, 1, 0, 0, 0, 2979, 2980, 7, 17, 0, 0, 2980, 2981, 7, 9, 0, 0, 2981, 2982, 7, 17, 0, 0, 2982, 2983, 7, 3, 0, 0, 2983, 2984, 7, 9, 0, 0, 2984, 2985, 7, 11, 0, 0, 2985, 436, 1, 0, 0, 0, 2986, 2987, 7, 17, 0, 0, 2987, 2988, 7, 9, 0, 0, 2988, 2989, 7, 11, 0, 0, 2989, 2990, 7, 16, 0, 0, 2990, 2991, 7, 9, 0, 0, 2991, 438, 1, 0, 0, 0, 2992, 2993, 7, 17, 0, 0, 2993, 2994, 7, 9, 0, 0, 2994, 2995, 7, 8, 0, 0, 2995, 2996, 7, 2, 0, 0, 2996, 2997, 7, 15, 0, 0, 2997, 2998, 7, 2, 0, 0, 2998, 2999, 7, 8, 0, 0, 2999, 3000, 7, 2, 0, 0, 3000, 440, 1, 0, 0, 0, 3001, 3002, 7, 17, 0, 0, 3002, 3003, 7, 9, 0, 0, 3003, 3004, 7, 8, 0, 0, 3004, 3005, 7, 22, 0, 0, 3005, 3006, 7, 6, 0, 0, 3006, 3007, 7, 15, 0, 0, 3007, 442, 1, 0, 0, 0, 3008, 3009, 7, 17, 0, 0, 3009, 3010, 7, 19, 0, 0, 3010, 3011, 7, 12, 0, 0, 3011, 444, 1, 0, 0, 0, 3012, 3013, 7, 17, 0, 0, 3013, 3014, 7, 19, 0, 0, 3014, 3015, 7, 12, 0, 0, 3015, 3016, 7, 21, 0, 0, 3016, 3017, 7, 4, 0, 0, 3017, 446, 1, 0, 0, 0, 3018, 3019, 7, 17, 0, 0, 3019, 3020, 7, 19, 0, 0, 3020, 3021, 7, 12, 0, 0, 3021, 3022, 7, 21, 0, 0, 3022, 3023, 7, 8, 0, 0, 3023, 3024, 7, 9, 0, 0, 3024, 448, 1, 0, 0, 0, 3025, 3026, 7, 17, 0, 0, 3026, 3027, 7, 6, 0, 0, 3027, 3028, 7, 15, 0, 0, 3028, 450, 1, 0, 0, 0, 3029, 3030, 7, 17, 0, 0, 3030, 3031, 7, 6, 0, 0, 3031, 3032, 7, 15, 0, 0, 3032, 3033, 7, 19, 0, 0, 3033, 3034, 7, 23, 0, 0, 3034, 3035, 7, 19, 0, 0, 3035, 3036, 7, 9, 0, 0, 3036, 3037, 7, 4, 0, 0, 3037, 452, 1, 0, 0, 0, 3038, 3039, 7, 17, 0, 0, 3039, 3040, 7, 6, 0, 0, 3040, 3041, 7, 15, 0, 0, 3041, 3042, 7, 19, 0, 0, 3042, 3043, 7, 23, 0, 0, 3043, 3044, 7, 13, 0, 0, 3044, 454, 1, 0, 0, 0, 3045, 3046, 7, 17, 0, 0, 3046, 3047, 7, 6, 0, 0, 3047, 3048, 7, 15, 0, 0, 3048, 3049, 7, 21, 0, 0, 3049, 3050, 7, 5, 0, 0, 3050, 3051, 7, 9, 0, 0, 3051, 456, 1, 0, 0, 0, 3052, 3053, 7, 17, 0, 0, 3053, 3054, 7, 6, 0, 0, 3054, 3055, 7, 15, 0, 0, 3055, 3056, 7, 21, 0, 0, 3056, 3057, 7, 5, 0, 0, 3057, 3058, 7, 9, 0, 0, 3058, 3059, 7, 4, 0, 0, 3059, 458, 1, 0, 0, 0, 3060, 3061, 7, 17, 0, 0, 3061, 3062, 7, 6, 0, 0, 3062, 3063, 7, 12, 0, 0, 3063, 3064, 7, 15, 0, 0, 3064, 3065, 7, 2, 0, 0, 3065, 3066, 7, 13, 0, 0, 3066, 460, 1, 0, 0, 0, 3067, 3068, 7, 17, 0, 0, 3068, 3069, 7, 6, 0, 0, 3069, 3070, 7, 12, 0, 0, 3070, 3071, 7, 8, 0, 0, 3071, 3072, 7, 22, 0, 0, 3072, 462, 1, 0, 0, 0, 3073, 3074, 7, 17, 0, 0, 3074, 3075, 7, 6, 0, 0, 3075, 3076, 7, 11, 0, 0, 3076, 3077, 7, 9, 0, 0, 3077, 464, 1, 0, 0, 0, 3078, 3079, 7, 17, 0, 0, 3079, 3080, 7, 21, 0, 0, 3080, 3081, 7, 5, 0, 0, 3081, 3082, 7, 8, 0, 0, 3082, 3083, 7, 19, 0, 0, 3083, 3084, 7, 4, 0, 0, 3084, 3085, 7, 9, 0, 0, 3085, 3086, 7, 8, 0, 0, 3086, 466, 1, 0, 0, 0, 3087, 3088, 7, 12, 0, 0, 3088, 3089, 7, 2, 0, 0, 3089, 3090, 7, 8, 0, 0, 3090, 3091, 7, 19, 0, 0, 3091, 3092, 7, 6, 0, 0, 3092, 3093, 7, 12, 0, 0, 3093, 3094, 7, 2, 0, 0, 3094, 3095, 7, 5, 0, 0, 3095, 468, 1, 0, 0, 0, 3096, 3097, 7, 12, 0, 0, 3097, 3098, 7, 2, 0, 0, 3098, 3099, 7, 8, 0, 0, 3099, 3100, 7, 21, 0, 0, 3100, 3101, 7, 11, 0, 0, 3101, 3102, 7, 2, 0, 0, 3102, 3103, 7, 5, 0, 0, 3103, 470, 1, 0, 0, 0, 3104, 3105, 7, 12, 0, 0, 3105, 3106, 7, 7, 0, 0, 3106, 3107, 7, 22, 0, 0, 3107, 3108, 7, 2, 0, 0, 3108, 3109, 7, 11, 0, 0, 3109, 472, 1, 0, 0, 0, 3110, 3111, 7, 12, 0, 0, 3111, 3112, 7, 7, 0, 0, 3112, 3113, 7, 5, 0, 0, 3113, 3114, 7, 6, 0, 0, 3114, 3115, 7, 3, 0, 0, 3115, 474, 1, 0, 0, 0, 3116, 3117, 7, 12, 0, 0, 3117, 3118, 7, 9, 0, 0, 3118, 3119, 7, 10, 0, 0, 3119, 476, 1, 0, 0, 0, 3120, 3121, 7, 12, 0, 0, 3121, 3122, 7, 9, 0, 0, 3122, 3123, 7, 18, 0, 0, 3123, 3124, 7, 8, 0, 0, 3124, 478, 1, 0, 0, 0, 3125, 3126, 7, 12, 0, 0, 3126, 3127, 7, 6, 0, 0, 3127, 480, 1, 0, 0, 0, 3128, 3129, 7, 12, 0, 0, 3129, 3130, 7, 6, 0, 0, 3130, 3131, 7, 12, 0, 0, 3131, 3132, 7, 9, 0, 0, 3132, 482, 1, 0, 0, 0, 3133, 3134, 7, 12, 0, 0, 3134, 3135, 7, 6, 0, 0, 3135, 3136, 7, 11, 0, 0, 3136, 3137, 7, 17, 0, 0, 3137, 3138, 7, 2, 0, 0, 3138, 3139, 7, 5, 0, 0, 3139, 3140, 7, 19, 0, 0, 3140, 3141, 7, 14, 0, 0, 3141, 3142, 7, 9, 0, 0, 3142, 484, 1, 0, 0, 0, 3143, 3144, 7, 12, 0, 0, 3144, 3145, 7, 6, 0, 0, 3145, 3146, 7, 8, 0, 0, 3146, 486, 1, 0, 0, 0, 3147, 3148, 7, 12, 0, 0, 3148, 3149, 7, 8, 0, 0, 3149, 3150, 7, 22, 0, 0, 3150, 3151, 5, 95, 0, 0, 3151, 3152, 7, 20, 0, 0, 3152, 3153, 7, 2, 0, 0, 3153, 3154, 7, 5, 0, 0, 3154, 3155, 7, 21, 0, 0, 3155, 3156, 7, 9, 0, 0, 3156, 488, 1, 0, 0, 0, 3157, 3158, 7, 12, 0, 0, 3158, 3159, 7, 8, 0, 0, 3159, 3160, 7, 19, 0, 0, 3160, 3161, 7, 5, 0, 0, 3161, 3162, 7, 9, 0, 0, 3162, 490, 1, 0, 0, 0, 3163, 3164, 7, 12, 0, 0, 3164, 3165, 7, 21, 0, 0, 3165, 3166, 7, 5, 0, 0, 3166, 3167, 7, 5, 0, 0, 3167, 492, 1, 0, 0, 0, 3168, 3169, 7, 12, 0, 0, 3169, 3170, 7, 21, 0, 0, 3170, 3171, 7, 5, 0, 0, 3171, 3172, 7, 5, 0, 0, 3172, 3173, 7, 19, 0, 0, 3173, 3174, 7, 23, 0, 0, 3174, 494, 1, 0, 0, 0, 3175, 3176, 7, 12, 0, 0, 3176, 3177, 7, 21, 0, 0, 3177, 3178, 7, 17, 0, 0, 3178, 3179, 7, 9, 0, 0, 3179, 3180, 7, 11, 0, 0, 3180, 3181, 7, 19, 0, 0, 3181, 3182, 7, 7, 0, 0, 3182, 496, 1, 0, 0, 0, 3183, 3184, 7, 6, 0, 0, 3184, 3185, 7, 7, 0, 0, 3185, 3186, 7, 7, 0, 0, 3186, 3187, 7, 21, 0, 0, 3187, 3188, 7, 11, 0, 0, 3188, 3189, 7, 11, 0, 0, 3189, 3190, 7, 9, 0, 0, 3190, 3191, 7, 12, 0, 0, 3191, 3192, 7, 7, 0, 0, 3192, 3193, 7, 9, 0, 0, 3193, 3194, 7, 4, 0, 0, 3194, 3195, 5, 95, 0, 0, 3195, 3196, 7, 11, 0, 0, 3196, 3197, 7, 9, 0, 0, 3197, 3198, 7, 16, 0, 0, 3198, 3199, 7, 9, 0, 0, 3199, 3200, 7, 18, 0, 0, 3200, 498, 1, 0, 0, 0, 3201, 3202, 7, 6, 0, 0, 3202, 3203, 7, 7, 0, 0, 3203, 3204, 7, 8, 0, 0, 3204, 3205, 7, 9, 0, 0, 3205, 3206, 7, 8, 0, 0, 3206, 3207, 5, 95, 0, 0, 3207, 3208, 7, 5, 0, 0, 3208, 3209, 7, 9, 0, 0, 3209, 3210, 7, 12, 0, 0, 3210, 3211, 7, 16, 0, 0, 3211, 3212, 7, 8, 0, 0, 3212, 3213, 7, 22, 0, 0, 3213, 500, 1, 0, 0, 0, 3214, 3215, 7, 6, 0, 0, 3215, 3216, 7, 23, 0, 0, 3216, 502, 1, 0, 0, 0, 3217, 3218, 7, 6, 0, 0, 3218, 3219, 7, 23, 0, 0, 3219, 3220, 7, 23, 0, 0, 3220, 3221, 7, 4, 0, 0, 3221, 3222, 7, 9, 0, 0, 3222, 3223, 7, 8, 0, 0, 3223, 504, 1, 0, 0, 0, 3224, 3225, 7, 6, 0, 0, 3225, 3226, 7, 5, 0, 0, 3226, 3227, 7, 15, 0, 0, 3227, 506, 1, 0, 0, 0, 3228, 3229, 7, 6, 0, 0, 3229, 3230, 7, 17, 0, 0, 3230, 3231, 7, 19, 0, 0, 3231, 3232, 7, 8, 0, 0, 3232, 508, 1, 0, 0, 0, 3233, 3234, 7, 6, 0, 0, 3234, 3235, 7, 12, 0, 0, 3235, 510, 1, 0, 0, 0, 3236, 3237, 7, 6, 0, 0, 3237, 3238, 7, 12, 0, 0, 3238, 3239, 7, 9, 0, 0, 3239, 512, 1, 0, 0, 0, 3240, 3241, 7, 6, 0, 0, 3241, 3242, 7, 12, 0, 0, 3242, 3243, 7, 5, 0, 0, 3243, 3244, 7, 13, 0, 0, 3244, 514, 1, 0, 0, 0, 3245, 3246, 7, 6, 0, 0, 3246, 3247, 7, 24, 0, 0, 3247, 3248, 7, 9, 0, 0, 3248, 3249, 7, 12, 0, 0, 3249, 516, 1, 0, 0, 0, 3250, 3251, 7, 6, 0, 0, 3251, 3252, 7, 11, 0, 0, 3252, 518, 1, 0, 0, 0, 3253, 3254, 7, 6, 0, 0, 3254, 3255, 7, 11, 0, 0, 3255, 3256, 7, 15, 0, 0, 3256, 3257, 7, 9, 0, 0, 3257, 3258, 7, 11, 0, 0, 3258, 520, 1, 0, 0, 0, 3259, 3260, 7, 6, 0, 0, 3260, 3261, 7, 11, 0, 0, 3261, 3262, 7, 15, 0, 0, 3262, 3263, 7, 19, 0, 0, 3263, 3264, 7, 12, 0, 0, 3264, 3265, 7, 2, 0, 0, 3265, 3266, 7, 5, 0, 0, 3266, 522, 1, 0, 0, 0, 3267, 3268, 7, 6, 0, 0, 3268, 3269, 7, 21, 0, 0, 3269, 3270, 7, 8, 0, 0, 3270, 524, 1, 0, 0, 0, 3271, 3272, 7, 6, 0, 0, 3272, 3273, 7, 21, 0, 0, 3273, 3274, 7, 8, 0, 0, 3274, 3275, 7, 9, 0, 0, 3275, 3276, 7, 11, 0, 0, 3276, 526, 1, 0, 0, 0, 3277, 3278, 7, 6, 0, 0, 3278, 3279, 7, 20, 0, 0, 3279, 3280, 7, 9, 0, 0, 3280, 3281, 7, 11, 0, 0, 3281, 528, 1, 0, 0, 0, 3282, 3283, 7, 6, 0, 0, 3283, 3284, 7, 20, 0, 0, 3284, 3285, 7, 9, 0, 0, 3285, 3286, 7, 11, 0, 0, 3286, 3287, 7, 5, 0, 0, 3287, 3288, 7, 2, 0, 0, 3288, 3289, 7, 24, 0, 0, 3289, 3290, 7, 4, 0, 0, 3290, 530, 1, 0, 0, 0, 3291, 3292, 7, 6, 0, 0, 3292, 3293, 7, 20, 0, 0, 3293, 3294, 7, 9, 0, 0, 3294, 3295, 7, 11, 0, 0, 3295, 3296, 7, 5, 0, 0, 3296, 3297, 7, 2, 0, 0, 3297, 3298, 7, 13, 0, 0, 3298, 532, 1, 0, 0, 0, 3299, 3300, 7, 6, 0, 0, 3300, 3301, 7, 20, 0, 0, 3301, 3302, 7, 9, 0, 0, 3302, 3303, 7, 11, 0, 0, 3303, 3304, 7, 10, 0, 0, 3304, 3305, 7, 11, 0, 0, 3305, 3306, 7, 19, 0, 0, 3306, 3307, 7, 8, 0, 0, 3307, 3308, 7, 9, 0, 0, 3308, 534, 1, 0, 0, 0, 3309, 3310, 7, 6, 0, 0, 3310, 3311, 7, 20, 0, 0, 3311, 3312, 7, 9, 0, 0, 3312, 3313, 7, 11, 0, 0, 3313, 3314, 7, 10, 0, 0, 3314, 3315, 7, 11, 0, 0, 3315, 3316, 7, 19, 0, 0, 3316, 3317, 7, 8, 0, 0, 3317, 3318, 7, 19, 0, 0, 3318, 3319, 7, 12, 0, 0, 3319, 3320, 7, 16, 0, 0, 3320, 536, 1, 0, 0, 0, 3321, 3322, 7, 24, 0, 0, 3322, 3323, 7, 2, 0, 0, 3323, 3324, 7, 11, 0, 0, 3324, 3325, 7, 2, 0, 0, 3325, 3326, 7, 17, 0, 0, 3326, 3327, 7, 9, 0, 0, 3327, 3328, 7, 8, 0, 0, 3328, 3329, 7, 9, 0, 0, 3329, 3330, 7, 11, 0, 0, 3330, 538, 1, 0, 0, 0, 3331, 3332, 7, 24, 0, 0, 3332, 3333, 7, 2, 0, 0, 3333, 3334, 7, 11, 0, 0, 3334, 3335, 7, 8, 0, 0, 3335, 3336, 7, 19, 0, 0, 3336, 3337, 7, 8, 0, 0, 3337, 3338, 7, 19, 0, 0, 3338, 3339, 7, 6, 0, 0, 3339, 3340, 7, 12, 0, 0, 3340, 540, 1, 0, 0, 0, 3341, 3342, 7, 24, 0, 0, 3342, 3343, 7, 2, 0, 0, 3343, 3344, 7, 11, 0, 0, 3344, 3345, 7, 8, 0, 0, 3345, 3346, 7, 19, 0, 0, 3346, 3347, 7, 8, 0, 0, 3347, 3348, 7, 19, 0, 0, 3348, 3349, 7, 6, 0, 0, 3349, 3350, 7, 12, 0, 0, 3350, 3351, 7, 9, 0, 0, 3351, 3352, 7, 15, 0, 0, 3352, 542, 1, 0, 0, 0, 3353, 3354, 7, 24, 0, 0, 3354, 3355, 7, 2, 0, 0, 3355, 3356, 7, 11, 0, 0, 3356, 3357, 7, 8, 0, 0, 3357, 3358, 7, 19, 0, 0, 3358, 3359, 7, 8, 0, 0, 3359, 3360, 7, 19, 0, 0, 3360, 3361, 7, 6, 0, 0, 3361, 3362, 7, 12, 0, 0, 3362, 3363, 7, 4, 0, 0, 3363, 544, 1, 0, 0, 0, 3364, 3365, 7, 24, 0, 0, 3365, 3366, 7, 2, 0, 0, 3366, 3367, 7, 8, 0, 0, 3367, 3368, 7, 8, 0, 0, 3368, 3369, 7, 9, 0, 0, 3369, 3370, 7, 11, 0, 0, 3370, 3371, 7, 12, 0, 0, 3371, 546, 1, 0, 0, 0, 3372, 3373, 7, 24, 0, 0, 3373, 3374, 7, 9, 0, 0, 3374, 3375, 7, 11, 0, 0, 3375, 548, 1, 0, 0, 0, 3376, 3377, 7, 24, 0, 0, 3377, 3378, 7, 9, 0, 0, 3378, 3379, 7, 11, 0, 0, 3379, 3380, 7, 7, 0, 0, 3380, 3381, 7, 9, 0, 0, 3381, 3382, 7, 12, 0, 0, 3382, 3383, 7, 8, 0, 0, 3383, 550, 1, 0, 0, 0, 3384, 3385, 7, 24, 0, 0, 3385, 3386, 7, 9, 0, 0, 3386, 3387, 7, 11, 0, 0, 3387, 3388, 7, 7, 0, 0, 3388, 3389, 7, 9, 0, 0, 3389, 3390, 7, 12, 0, 0, 3390, 3391, 7, 8, 0, 0, 3391, 3392, 7, 19, 0, 0, 3392, 3393, 7, 5, 0, 0, 3393, 3394, 7, 9, 0, 0, 3394, 3395, 5, 95, 0, 0, 3395, 3396, 7, 7, 0, 0, 3396, 3397, 7, 6, 0, 0, 3397, 3398, 7, 12, 0, 0, 3398, 3399, 7, 8, 0, 0, 3399, 552, 1, 0, 0, 0, 3400, 3401, 7, 24, 0, 0, 3401, 3402, 7, 9, 0, 0, 3402, 3403, 7, 11, 0, 0, 3403, 3404, 7, 7, 0, 0, 3404, 3405, 7, 9, 0, 0, 3405, 3406, 7, 12, 0, 0, 3406, 3407, 7, 8, 0, 0, 3407, 3408, 7, 19, 0, 0, 3408, 3409, 7, 5, 0, 0, 3409, 3410, 7, 9, 0, 0, 3410, 3411, 5, 95, 0, 0, 3411, 3412, 7, 15, 0, 0, 3412, 3413, 7, 19, 0, 0, 3413, 3414, 7, 4, 0, 0, 3414, 3415, 7, 7, 0, 0, 3415, 554, 1, 0, 0, 0, 3416, 3417, 7, 24, 0, 0, 3417, 3418, 7, 9, 0, 0, 3418, 3419, 7, 11, 0, 0, 3419, 3420, 7, 7, 0, 0, 3420, 3421, 7, 9, 0, 0, 3421, 3422, 7, 12, 0, 0, 3422, 3423, 7, 8, 0, 0, 3423, 3424, 5, 95, 0, 0, 3424, 3425, 7, 11, 0, 0, 3425, 3426, 7, 2, 0, 0, 3426, 3427, 7, 12, 0, 0, 3427, 3428, 7, 25, 0, 0, 3428, 556, 1, 0, 0, 0, 3429, 3430, 7, 24, 0, 0, 3430, 3431, 7, 9, 0, 0, 3431, 3432, 7, 11, 0, 0, 3432, 3433, 7, 19, 0, 0, 3433, 3434, 7, 6, 0, 0, 3434, 3435, 7, 15, 0, 0, 3435, 558, 1, 0, 0, 0, 3436, 3437, 7, 24, 0, 0, 3437, 3438, 7, 9, 0, 0, 3438, 3439, 7, 11, 0, 0, 3439, 3440, 7, 17, 0, 0, 3440, 3441, 7, 21, 0, 0, 3441, 3442, 7, 8, 0, 0, 3442, 3443, 7, 9, 0, 0, 3443, 560, 1, 0, 0, 0, 3444, 3445, 7, 24, 0, 0, 3445, 3446, 7, 19, 0, 0, 3446, 3447, 7, 20, 0, 0, 3447, 3448, 7, 6, 0, 0, 3448, 3449, 7, 8, 0, 0, 3449, 562, 1, 0, 0, 0, 3450, 3451, 7, 24, 0, 0, 3451, 3452, 7, 6, 0, 0, 3452, 3453, 7, 11, 0, 0, 3453, 3454, 7, 8, 0, 0, 3454, 3455, 7, 19, 0, 0, 3455, 3456, 7, 6, 0, 0, 3456, 3457, 7, 12, 0, 0, 3457, 564, 1, 0, 0, 0, 3458, 3459, 7, 24, 0, 0, 3459, 3460, 7, 6, 0, 0, 3460, 3461, 7, 4, 0, 0, 3461, 3462, 7, 19, 0, 0, 3462, 3463, 7, 8, 0, 0, 3463, 3464, 7, 19, 0, 0, 3464, 3465, 7, 6, 0, 0, 3465, 3466, 7, 12, 0, 0, 3466, 566, 1, 0, 0, 0, 3467, 3468, 7, 24, 0, 0, 3468, 3469, 7, 6, 0, 0, 3469, 3470, 7, 4, 0, 0, 3470, 3471, 7, 19, 0, 0, 3471, 3472, 7, 8, 0, 0, 3472, 3473, 7, 19, 0, 0, 3473, 3474, 7, 6, 0, 0, 3474, 3475, 7, 12, 0, 0, 3475, 3476, 5, 95, 0, 0, 3476, 3477, 7, 11, 0, 0, 3477, 3478, 7, 9, 0, 0, 3478, 3479, 7, 16, 0, 0, 3479, 3480, 7, 9, 0, 0, 3480, 3481, 7, 18, 0, 0, 3481, 568, 1, 0, 0, 0, 3482, 3483, 7, 24, 0, 0, 3483, 3484, 7, 6, 0, 0, 3484, 3485, 7, 10, 0, 0, 3485, 3486, 7, 9, 0, 0, 3486, 3487, 7, 11, 0, 0, 3487, 570, 1, 0, 0, 0, 3488, 3489, 7, 24, 0, 0, 3489, 3490, 7, 11, 0, 0, 3490, 3491, 7, 9, 0, 0, 3491, 3492, 7, 7, 0, 0, 3492, 3493, 7, 9, 0, 0, 3493, 3494, 7, 15, 0, 0, 3494, 3495, 7, 9, 0, 0, 3495, 3496, 7, 4, 0, 0, 3496, 572, 1, 0, 0, 0, 3497, 3498, 7, 24, 0, 0, 3498, 3499, 7, 11, 0, 0, 3499, 3500, 7, 9, 0, 0, 3500, 3501, 7, 7, 0, 0, 3501, 3502, 7, 19, 0, 0, 3502, 3503, 7, 4, 0, 0, 3503, 3504, 7, 19, 0, 0, 3504, 3505, 7, 6, 0, 0, 3505, 3506, 7, 12, 0, 0, 3506, 574, 1, 0, 0, 0, 3507, 3508, 7, 24, 0, 0, 3508, 3509, 7, 11, 0, 0, 3509, 3510, 7, 9, 0, 0, 3510, 3511, 7, 24, 0, 0, 3511, 3512, 7, 2, 0, 0, 3512, 3513, 7, 11, 0, 0, 3513, 3514, 7, 9, 0, 0, 3514, 576, 1, 0, 0, 0, 3515, 3516, 7, 24, 0, 0, 3516, 3517, 7, 11, 0, 0, 3517, 3518, 7, 9, 0, 0, 3518, 3519, 7, 20, 0, 0, 3519, 578, 1, 0, 0, 0, 3520, 3521, 7, 24, 0, 0, 3521, 3522, 7, 11, 0, 0, 3522, 3523, 7, 19, 0, 0, 3523, 3524, 7, 17, 0, 0, 3524, 3525, 7, 2, 0, 0, 3525, 3526, 7, 11, 0, 0, 3526, 3527, 7, 13, 0, 0, 3527, 580, 1, 0, 0, 0, 3528, 3529, 7, 24, 0, 0, 3529, 3530, 7, 11, 0, 0, 3530, 3531, 7, 6, 0, 0, 3531, 3532, 7, 7, 0, 0, 3532, 3533, 7, 9, 0, 0, 3533, 3534, 7, 15, 0, 0, 3534, 3535, 7, 21, 0, 0, 3535, 3536, 7, 11, 0, 0, 3536, 3537, 7, 9, 0, 0, 3537, 582, 1, 0, 0, 0, 3538, 3539, 7, 26, 0, 0, 3539, 3540, 7, 21, 0, 0, 3540, 3541, 7, 2, 0, 0, 3541, 3542, 7, 5, 0, 0, 3542, 3543, 7, 19, 0, 0, 3543, 3544, 7, 23, 0, 0, 3544, 3545, 7, 13, 0, 0, 3545, 584, 1, 0, 0, 0, 3546, 3547, 7, 26, 0, 0, 3547, 3548, 7, 21, 0, 0, 3548, 3549, 7, 2, 0, 0, 3549, 3550, 7, 11, 0, 0, 3550, 3551, 7, 8, 0, 0, 3551, 3552, 7, 9, 0, 0, 3552, 3553, 7, 11, 0, 0, 3553, 3554, 7, 4, 0, 0, 3554, 586, 1, 0, 0, 0, 3555, 3556, 7, 11, 0, 0, 3556, 3557, 7, 2, 0, 0, 3557, 3558, 7, 12, 0, 0, 3558, 3559, 7, 16, 0, 0, 3559, 3560, 7, 9, 0, 0, 3560, 588, 1, 0, 0, 0, 3561, 3562, 7, 11, 0, 0, 3562, 3563, 7, 2, 0, 0, 3563, 3564, 7, 12, 0, 0, 3564, 3565, 7, 25, 0, 0, 3565, 590, 1, 0, 0, 0, 3566, 3567, 7, 11, 0, 0, 3567, 3568, 7, 2, 0, 0, 3568, 3569, 7, 10, 0, 0, 3569, 592, 1, 0, 0, 0, 3570, 3571, 7, 11, 0, 0, 3571, 3572, 7, 9, 0, 0, 3572, 3573, 7, 2, 0, 0, 3573, 3574, 7, 15, 0, 0, 3574, 3575, 7, 4, 0, 0, 3575, 594, 1, 0, 0, 0, 3576, 3577, 7, 11, 0, 0, 3577, 3578, 7, 9, 0, 0, 3578, 3579, 7, 2, 0, 0, 3579, 3580, 7, 5, 0, 0, 3580, 596, 1, 0, 0, 0, 3581, 3582, 7, 11, 0, 0, 3582, 3583, 7, 9, 0, 0, 3583, 3584, 7, 7, 0, 0, 3584, 3585, 7, 21, 0, 0, 3585, 3586, 7, 11, 0, 0, 3586, 3587, 7, 4, 0, 0, 3587, 3588, 7, 19, 0, 0, 3588, 3589, 7, 20, 0, 0, 3589, 3590, 7, 9, 0, 0, 3590, 598, 1, 0, 0, 0, 3591, 3592, 7, 11, 0, 0, 3592, 3593, 7, 9, 0, 0, 3593, 3594, 7, 23, 0, 0, 3594, 600, 1, 0, 0, 0, 3595, 3596, 7, 11, 0, 0, 3596, 3597, 7, 9, 0, 0, 3597, 3598, 7, 23, 0, 0, 3598, 3599, 7, 9, 0, 0, 3599, 3600, 7, 11, 0, 0, 3600, 3601, 7, 9, 0, 0, 3601, 3602, 7, 12, 0, 0, 3602, 3603, 7, 7, 0, 0, 3603, 3604, 7, 9, 0, 0, 3604, 3605, 7, 4, 0, 0, 3605, 602, 1, 0, 0, 0, 3606, 3607, 7, 11, 0, 0, 3607, 3608, 7, 9, 0, 0, 3608, 3609, 7, 23, 0, 0, 3609, 3610, 7, 9, 0, 0, 3610, 3611, 7, 11, 0, 0, 3611, 3612, 7, 9, 0, 0, 3612, 3613, 7, 12, 0, 0, 3613, 3614, 7, 7, 0, 0, 3614, 3615, 7, 19, 0, 0, 3615, 3616, 7, 12, 0, 0, 3616, 3617, 7, 16, 0, 0, 3617, 604, 1, 0, 0, 0, 3618, 3619, 7, 11, 0, 0, 3619, 3620, 7, 9, 0, 0, 3620, 3621, 7, 16, 0, 0, 3621, 3622, 7, 11, 0, 0, 3622, 3623, 5, 95, 0, 0, 3623, 3624, 7, 2, 0, 0, 3624, 3625, 7, 20, 0, 0, 3625, 3626, 7, 16, 0, 0, 3626, 3627, 7, 18, 0, 0, 3627, 606, 1, 0, 0, 0, 3628, 3629, 7, 11, 0, 0, 3629, 3630, 7, 9, 0, 0, 3630, 3631, 7, 16, 0, 0, 3631, 3632, 7, 11, 0, 0, 3632, 3633, 5, 95, 0, 0, 3633, 3634, 7, 2, 0, 0, 3634, 3635, 7, 20, 0, 0, 3635, 3636, 7, 16, 0, 0, 3636, 3637, 7, 13, 0, 0, 3637, 608, 1, 0, 0, 0, 3638, 3639, 7, 11, 0, 0, 3639, 3640, 7, 9, 0, 0, 3640, 3641, 7, 16, 0, 0, 3641, 3642, 7, 11, 0, 0, 3642, 3643, 5, 95, 0, 0, 3643, 3644, 7, 7, 0, 0, 3644, 3645, 7, 6, 0, 0, 3645, 3646, 7, 21, 0, 0, 3646, 3647, 7, 12, 0, 0, 3647, 3648, 7, 8, 0, 0, 3648, 610, 1, 0, 0, 0, 3649, 3650, 7, 11, 0, 0, 3650, 3651, 7, 9, 0, 0, 3651, 3652, 7, 16, 0, 0, 3652, 3653, 7, 11, 0, 0, 3653, 3654, 5, 95, 0, 0, 3654, 3655, 7, 19, 0, 0, 3655, 3656, 7, 12, 0, 0, 3656, 3657, 7, 8, 0, 0, 3657, 3658, 7, 9, 0, 0, 3658, 3659, 7, 11, 0, 0, 3659, 3660, 7, 7, 0, 0, 3660, 3661, 7, 9, 0, 0, 3661, 3662, 7, 24, 0, 0, 3662, 3663, 7, 8, 0, 0, 3663, 612, 1, 0, 0, 0, 3664, 3665, 7, 11, 0, 0, 3665, 3666, 7, 9, 0, 0, 3666, 3667, 7, 16, 0, 0, 3667, 3668, 7, 11, 0, 0, 3668, 3669, 5, 95, 0, 0, 3669, 3670, 7, 11, 0, 0, 3670, 3671, 5, 50, 0, 0, 3671, 614, 1, 0, 0, 0, 3672, 3673, 7, 11, 0, 0, 3673, 3674, 7, 9, 0, 0, 3674, 3675, 7, 16, 0, 0, 3675, 3676, 7, 11, 0, 0, 3676, 3677, 5, 95, 0, 0, 3677, 3678, 7, 4, 0, 0, 3678, 3679, 7, 5, 0, 0, 3679, 3680, 7, 6, 0, 0, 3680, 3681, 7, 24, 0, 0, 3681, 3682, 7, 9, 0, 0, 3682, 616, 1, 0, 0, 0, 3683, 3684, 7, 11, 0, 0, 3684, 3685, 7, 9, 0, 0, 3685, 3686, 7, 16, 0, 0, 3686, 3687, 7, 11, 0, 0, 3687, 3688, 5, 95, 0, 0, 3688, 3689, 7, 4, 0, 0, 3689, 3690, 7, 18, 0, 0, 3690, 3691, 7, 18, 0, 0, 3691, 618, 1, 0, 0, 0, 3692, 3693, 7, 11, 0, 0, 3693, 3694, 7, 9, 0, 0, 3694, 3695, 7, 16, 0, 0, 3695, 3696, 7, 11, 0, 0, 3696, 3697, 5, 95, 0, 0, 3697, 3698, 7, 4, 0, 0, 3698, 3699, 7, 18, 0, 0, 3699, 3700, 7, 13, 0, 0, 3700, 620, 1, 0, 0, 0, 3701, 3702, 7, 11, 0, 0, 3702, 3703, 7, 9, 0, 0, 3703, 3704, 7, 16, 0, 0, 3704, 3705, 7, 11, 0, 0, 3705, 3706, 5, 95, 0, 0, 3706, 3707, 7, 4, 0, 0, 3707, 3708, 7, 13, 0, 0, 3708, 3709, 7, 13, 0, 0, 3709, 622, 1, 0, 0, 0, 3710, 3711, 7, 11, 0, 0, 3711, 3712, 7, 9, 0, 0, 3712, 3713, 7, 5, 0, 0, 3713, 3714, 7, 9, 0, 0, 3714, 3715, 7, 2, 0, 0, 3715, 3716, 7, 4, 0, 0, 3716, 3717, 7, 9, 0, 0, 3717, 624, 1, 0, 0, 0, 3718, 3719, 7, 11, 0, 0, 3719, 3720, 7, 9, 0, 0, 3720, 3721, 7, 12, 0, 0, 3721, 3722, 7, 2, 0, 0, 3722, 3723, 7, 17, 0, 0, 3723, 3724, 7, 9, 0, 0, 3724, 626, 1, 0, 0, 0, 3725, 3726, 7, 11, 0, 0, 3726, 3727, 7, 9, 0, 0, 3727, 3728, 7, 4, 0, 0, 3728, 3729, 7, 9, 0, 0, 3729, 3730, 7, 8, 0, 0, 3730, 628, 1, 0, 0, 0, 3731, 3732, 7, 11, 0, 0, 3732, 3733, 7, 9, 0, 0, 3733, 3734, 7, 4, 0, 0, 3734, 3735, 7, 21, 0, 0, 3735, 3736, 7, 5, 0, 0, 3736, 3737, 7, 8, 0, 0, 3737, 630, 1, 0, 0, 0, 3738, 3739, 7, 11, 0, 0, 3739, 3740, 7, 9, 0, 0, 3740, 3741, 7, 8, 0, 0, 3741, 3742, 7, 21, 0, 0, 3742, 3743, 7, 11, 0, 0, 3743, 3744, 7, 12, 0, 0, 3744, 632, 1, 0, 0, 0, 3745, 3746, 7, 11, 0, 0, 3746, 3747, 7, 9, 0, 0, 3747, 3748, 7, 8, 0, 0, 3748, 3749, 7, 21, 0, 0, 3749, 3750, 7, 11, 0, 0, 3750, 3751, 7, 12, 0, 0, 3751, 3752, 7, 4, 0, 0, 3752, 634, 1, 0, 0, 0, 3753, 3754, 7, 11, 0, 0, 3754, 3755, 7, 9, 0, 0, 3755, 3756, 7, 20, 0, 0, 3756, 3757, 7, 6, 0, 0, 3757, 3758, 7, 25, 0, 0, 3758, 3759, 7, 9, 0, 0, 3759, 636, 1, 0, 0, 0, 3760, 3761, 7, 11, 0, 0, 3761, 3762, 7, 19, 0, 0, 3762, 3763, 7, 16, 0, 0, 3763, 3764, 7, 22, 0, 0, 3764, 3765, 7, 8, 0, 0, 3765, 638, 1, 0, 0, 0, 3766, 3767, 7, 11, 0, 0, 3767, 3768, 7, 5, 0, 0, 3768, 3769, 7, 19, 0, 0, 3769, 3770, 7, 25, 0, 0, 3770, 3771, 7, 9, 0, 0, 3771, 640, 1, 0, 0, 0, 3772, 3773, 7, 11, 0, 0, 3773, 3774, 7, 6, 0, 0, 3774, 3775, 7, 5, 0, 0, 3775, 3776, 7, 5, 0, 0, 3776, 3777, 7, 3, 0, 0, 3777, 3778, 7, 2, 0, 0, 3778, 3779, 7, 7, 0, 0, 3779, 3780, 7, 25, 0, 0, 3780, 642, 1, 0, 0, 0, 3781, 3782, 7, 11, 0, 0, 3782, 3783, 7, 6, 0, 0, 3783, 3784, 7, 5, 0, 0, 3784, 3785, 7, 5, 0, 0, 3785, 3786, 7, 21, 0, 0, 3786, 3787, 7, 24, 0, 0, 3787, 644, 1, 0, 0, 0, 3788, 3789, 7, 11, 0, 0, 3789, 3790, 7, 6, 0, 0, 3790, 3791, 7, 10, 0, 0, 3791, 646, 1, 0, 0, 0, 3792, 3793, 7, 11, 0, 0, 3793, 3794, 7, 6, 0, 0, 3794, 3795, 7, 10, 0, 0, 3795, 3796, 7, 4, 0, 0, 3796, 648, 1, 0, 0, 0, 3797, 3798, 7, 11, 0, 0, 3798, 3799, 7, 6, 0, 0, 3799, 3800, 7, 10, 0, 0, 3800, 3801, 5, 95, 0, 0, 3801, 3802, 7, 12, 0, 0, 3802, 3803, 7, 21, 0, 0, 3803, 3804, 7, 17, 0, 0, 3804, 3805, 7, 3, 0, 0, 3805, 3806, 7, 9, 0, 0, 3806, 3807, 7, 11, 0, 0, 3807, 650, 1, 0, 0, 0, 3808, 3809, 7, 11, 0, 0, 3809, 3810, 7, 21, 0, 0, 3810, 3811, 7, 12, 0, 0, 3811, 3812, 7, 12, 0, 0, 3812, 3813, 7, 19, 0, 0, 3813, 3814, 7, 12, 0, 0, 3814, 3815, 7, 16, 0, 0, 3815, 652, 1, 0, 0, 0, 3816, 3817, 7, 4, 0, 0, 3817, 3818, 7, 2, 0, 0, 3818, 3819, 7, 23, 0, 0, 3819, 3820, 7, 9, 0, 0, 3820, 3821, 5, 95, 0, 0, 3821, 3822, 7, 7, 0, 0, 3822, 3823, 7, 2, 0, 0, 3823, 3824, 7, 4, 0, 0, 3824, 3825, 7, 8, 0, 0, 3825, 654, 1, 0, 0, 0, 3826, 3827, 7, 4, 0, 0, 3827, 3828, 7, 2, 0, 0, 3828, 3829, 7, 23, 0, 0, 3829, 3830, 7, 9, 0, 0, 3830, 3831, 5, 95, 0, 0, 3831, 3832, 7, 6, 0, 0, 3832, 3833, 7, 23, 0, 0, 3833, 3834, 7, 23, 0, 0, 3834, 3835, 7, 4, 0, 0, 3835, 3836, 7, 9, 0, 0, 3836, 3837, 7, 8, 0, 0, 3837, 656, 1, 0, 0, 0, 3838, 3839, 7, 4, 0, 0, 3839, 3840, 7, 2, 0, 0, 3840, 3841, 7, 23, 0, 0, 3841, 3842, 7, 9, 0, 0, 3842, 3843, 5, 95, 0, 0, 3843, 3844, 7, 6, 0, 0, 3844, 3845, 7, 11, 0, 0, 3845, 3846, 7, 15, 0, 0, 3846, 3847, 7, 19, 0, 0, 3847, 3848, 7, 12, 0, 0, 3848, 3849, 7, 2, 0, 0, 3849, 3850, 7, 5, 0, 0, 3850, 658, 1, 0, 0, 0, 3851, 3852, 7, 4, 0, 0, 3852, 3853, 7, 2, 0, 0, 3853, 3854, 7, 8, 0, 0, 3854, 3855, 7, 21, 0, 0, 3855, 3856, 7, 11, 0, 0, 3856, 3857, 7, 15, 0, 0, 3857, 3858, 7, 2, 0, 0, 3858, 3859, 7, 13, 0, 0, 3859, 660, 1, 0, 0, 0, 3860, 3861, 7, 4, 0, 0, 3861, 3862, 7, 2, 0, 0, 3862, 3863, 7, 20, 0, 0, 3863, 3864, 7, 9, 0, 0, 3864, 3865, 7, 24, 0, 0, 3865, 3866, 7, 6, 0, 0, 3866, 3867, 7, 19, 0, 0, 3867, 3868, 7, 12, 0, 0, 3868, 3869, 7, 8, 0, 0, 3869, 662, 1, 0, 0, 0, 3870, 3871, 7, 4, 0, 0, 3871, 3872, 7, 7, 0, 0, 3872, 3873, 7, 2, 0, 0, 3873, 3874, 7, 5, 0, 0, 3874, 3875, 7, 2, 0, 0, 3875, 664, 1, 0, 0, 0, 3876, 3877, 7, 4, 0, 0, 3877, 3878, 7, 7, 0, 0, 3878, 3879, 7, 6, 0, 0, 3879, 3880, 7, 24, 0, 0, 3880, 3881, 7, 9, 0, 0, 3881, 666, 1, 0, 0, 0, 3882, 3883, 7, 4, 0, 0, 3883, 3884, 7, 7, 0, 0, 3884, 3885, 7, 11, 0, 0, 3885, 3886, 7, 6, 0, 0, 3886, 3887, 7, 5, 0, 0, 3887, 3888, 7, 5, 0, 0, 3888, 668, 1, 0, 0, 0, 3889, 3890, 7, 4, 0, 0, 3890, 3891, 7, 9, 0, 0, 3891, 3892, 7, 2, 0, 0, 3892, 3893, 7, 11, 0, 0, 3893, 3894, 7, 7, 0, 0, 3894, 3895, 7, 22, 0, 0, 3895, 670, 1, 0, 0, 0, 3896, 3897, 7, 4, 0, 0, 3897, 3898, 7, 9, 0, 0, 3898, 3899, 7, 7, 0, 0, 3899, 3900, 7, 6, 0, 0, 3900, 3901, 7, 12, 0, 0, 3901, 3902, 7, 15, 0, 0, 3902, 672, 1, 0, 0, 0, 3903, 3904, 7, 4, 0, 0, 3904, 3905, 7, 9, 0, 0, 3905, 3906, 7, 9, 0, 0, 3906, 3907, 7, 25, 0, 0, 3907, 674, 1, 0, 0, 0, 3908, 3909, 7, 4, 0, 0, 3909, 3910, 7, 9, 0, 0, 3910, 3911, 7, 5, 0, 0, 3911, 3912, 7, 9, 0, 0, 3912, 3913, 7, 7, 0, 0, 3913, 3914, 7, 8, 0, 0, 3914, 676, 1, 0, 0, 0, 3915, 3916, 7, 4, 0, 0, 3916, 3917, 7, 9, 0, 0, 3917, 3918, 7, 12, 0, 0, 3918, 3919, 7, 4, 0, 0, 3919, 3920, 7, 19, 0, 0, 3920, 3921, 7, 8, 0, 0, 3921, 3922, 7, 19, 0, 0, 3922, 3923, 7, 20, 0, 0, 3923, 3924, 7, 9, 0, 0, 3924, 678, 1, 0, 0, 0, 3925, 3926, 7, 4, 0, 0, 3926, 3927, 7, 9, 0, 0, 3927, 3928, 7, 24, 0, 0, 3928, 3929, 7, 2, 0, 0, 3929, 3930, 7, 11, 0, 0, 3930, 3931, 7, 2, 0, 0, 3931, 3932, 7, 8, 0, 0, 3932, 3933, 7, 6, 0, 0, 3933, 3934, 7, 11, 0, 0, 3934, 680, 1, 0, 0, 0, 3935, 3936, 7, 4, 0, 0, 3936, 3937, 7, 9, 0, 0, 3937, 3938, 7, 4, 0, 0, 3938, 3939, 7, 4, 0, 0, 3939, 3940, 7, 19, 0, 0, 3940, 3941, 7, 6, 0, 0, 3941, 3942, 7, 12, 0, 0, 3942, 3943, 5, 95, 0, 0, 3943, 3944, 7, 21, 0, 0, 3944, 3945, 7, 4, 0, 0, 3945, 3946, 7, 9, 0, 0, 3946, 3947, 7, 11, 0, 0, 3947, 682, 1, 0, 0, 0, 3948, 3949, 7, 4, 0, 0, 3949, 3950, 7, 9, 0, 0, 3950, 3951, 7, 8, 0, 0, 3951, 684, 1, 0, 0, 0, 3952, 3953, 7, 4, 0, 0, 3953, 3954, 7, 22, 0, 0, 3954, 3955, 7, 6, 0, 0, 3955, 3956, 7, 10, 0, 0, 3956, 686, 1, 0, 0, 0, 3957, 3958, 7, 4, 0, 0, 3958, 3959, 7, 19, 0, 0, 3959, 3960, 7, 17, 0, 0, 3960, 3961, 7, 19, 0, 0, 3961, 3962, 7, 5, 0, 0, 3962, 3963, 7, 2, 0, 0, 3963, 3964, 7, 11, 0, 0, 3964, 688, 1, 0, 0, 0, 3965, 3966, 7, 4, 0, 0, 3966, 3967, 7, 25, 0, 0, 3967, 3968, 7, 19, 0, 0, 3968, 3969, 7, 24, 0, 0, 3969, 690, 1, 0, 0, 0, 3970, 3971, 7, 4, 0, 0, 3971, 3972, 7, 17, 0, 0, 3972, 3973, 7, 2, 0, 0, 3973, 3974, 7, 5, 0, 0, 3974, 3975, 7, 5, 0, 0, 3975, 3976, 7, 19, 0, 0, 3976, 3977, 7, 12, 0, 0, 3977, 3978, 7, 8, 0, 0, 3978, 692, 1, 0, 0, 0, 3979, 3980, 7, 4, 0, 0, 3980, 3981, 7, 6, 0, 0, 3981, 3982, 7, 17, 0, 0, 3982, 3983, 7, 9, 0, 0, 3983, 694, 1, 0, 0, 0, 3984, 3985, 7, 4, 0, 0, 3985, 3986, 7, 24, 0, 0, 3986, 3987, 7, 9, 0, 0, 3987, 3988, 7, 7, 0, 0, 3988, 3989, 7, 19, 0, 0, 3989, 3990, 7, 23, 0, 0, 3990, 3991, 7, 19, 0, 0, 3991, 3992, 7, 7, 0, 0, 3992, 696, 1, 0, 0, 0, 3993, 3994, 7, 4, 0, 0, 3994, 3995, 7, 24, 0, 0, 3995, 3996, 7, 9, 0, 0, 3996, 3997, 7, 7, 0, 0, 3997, 3998, 7, 19, 0, 0, 3998, 3999, 7, 23, 0, 0, 3999, 4000, 7, 19, 0, 0, 4000, 4001, 7, 7, 0, 0, 4001, 4002, 7, 8, 0, 0, 4002, 4003, 7, 13, 0, 0, 4003, 4004, 7, 24, 0, 0, 4004, 4005, 7, 9, 0, 0, 4005, 698, 1, 0, 0, 0, 4006, 4007, 7, 4, 0, 0, 4007, 4008, 7, 26, 0, 0, 4008, 4009, 7, 5, 0, 0, 4009, 700, 1, 0, 0, 0, 4010, 4011, 7, 4, 0, 0, 4011, 4012, 7, 26, 0, 0, 4012, 4013, 7, 5, 0, 0, 4013, 4014, 7, 9, 0, 0, 4014, 4015, 7, 18, 0, 0, 4015, 4016, 7, 7, 0, 0, 4016, 4017, 7, 9, 0, 0, 4017, 4018, 7, 24, 0, 0, 4018, 4019, 7, 8, 0, 0, 4019, 4020, 7, 19, 0, 0, 4020, 4021, 7, 6, 0, 0, 4021, 4022, 7, 12, 0, 0, 4022, 702, 1, 0, 0, 0, 4023, 4024, 7, 4, 0, 0, 4024, 4025, 7, 26, 0, 0, 4025, 4026, 7, 5, 0, 0, 4026, 4027, 7, 4, 0, 0, 4027, 4028, 7, 8, 0, 0, 4028, 4029, 7, 2, 0, 0, 4029, 4030, 7, 8, 0, 0, 4030, 4031, 7, 9, 0, 0, 4031, 704, 1, 0, 0, 0, 4032, 4033, 7, 4, 0, 0, 4033, 4034, 7, 26, 0, 0, 4034, 4035, 7, 5, 0, 0, 4035, 4036, 7, 10, 0, 0, 4036, 4037, 7, 2, 0, 0, 4037, 4038, 7, 11, 0, 0, 4038, 4039, 7, 12, 0, 0, 4039, 4040, 7, 19, 0, 0, 4040, 4041, 7, 12, 0, 0, 4041, 4042, 7, 16, 0, 0, 4042, 706, 1, 0, 0, 0, 4043, 4044, 7, 4, 0, 0, 4044, 4045, 7, 26, 0, 0, 4045, 4046, 7, 11, 0, 0, 4046, 4047, 7, 8, 0, 0, 4047, 708, 1, 0, 0, 0, 4048, 4049, 7, 4, 0, 0, 4049, 4050, 7, 8, 0, 0, 4050, 4051, 7, 2, 0, 0, 4051, 4052, 7, 11, 0, 0, 4052, 4053, 7, 8, 0, 0, 4053, 710, 1, 0, 0, 0, 4054, 4055, 7, 4, 0, 0, 4055, 4056, 7, 8, 0, 0, 4056, 4057, 7, 2, 0, 0, 4057, 4058, 7, 8, 0, 0, 4058, 4059, 7, 9, 0, 0, 4059, 4060, 7, 17, 0, 0, 4060, 4061, 7, 9, 0, 0, 4061, 4062, 7, 12, 0, 0, 4062, 4063, 7, 8, 0, 0, 4063, 712, 1, 0, 0, 0, 4064, 4065, 7, 4, 0, 0, 4065, 4066, 7, 8, 0, 0, 4066, 4067, 7, 2, 0, 0, 4067, 4068, 7, 8, 0, 0, 4068, 4069, 7, 19, 0, 0, 4069, 4070, 7, 7, 0, 0, 4070, 714, 1, 0, 0, 0, 4071, 4072, 7, 4, 0, 0, 4072, 4073, 7, 8, 0, 0, 4073, 4074, 7, 2, 0, 0, 4074, 4075, 7, 8, 0, 0, 4075, 4076, 7, 19, 0, 0, 4076, 4077, 7, 4, 0, 0, 4077, 4078, 7, 8, 0, 0, 4078, 4079, 7, 19, 0, 0, 4079, 4080, 7, 7, 0, 0, 4080, 4081, 7, 4, 0, 0, 4081, 716, 1, 0, 0, 0, 4082, 4083, 7, 4, 0, 0, 4083, 4084, 7, 8, 0, 0, 4084, 4085, 7, 15, 0, 0, 4085, 4086, 7, 15, 0, 0, 4086, 4087, 7, 9, 0, 0, 4087, 4088, 7, 20, 0, 0, 4088, 4089, 5, 95, 0, 0, 4089, 4090, 7, 24, 0, 0, 4090, 4091, 7, 6, 0, 0, 4091, 4092, 7, 24, 0, 0, 4092, 718, 1, 0, 0, 0, 4093, 4094, 7, 4, 0, 0, 4094, 4095, 7, 8, 0, 0, 4095, 4096, 7, 15, 0, 0, 4096, 4097, 7, 15, 0, 0, 4097, 4098, 7, 9, 0, 0, 4098, 4099, 7, 20, 0, 0, 4099, 4100, 5, 95, 0, 0, 4100, 4101, 7, 4, 0, 0, 4101, 4102, 7, 2, 0, 0, 4102, 4103, 7, 17, 0, 0, 4103, 4104, 7, 24, 0, 0, 4104, 720, 1, 0, 0, 0, 4105, 4106, 7, 4, 0, 0, 4106, 4107, 7, 8, 0, 0, 4107, 4108, 7, 11, 0, 0, 4108, 4109, 7, 9, 0, 0, 4109, 4110, 7, 2, 0, 0, 4110, 4111, 7, 17, 0, 0, 4111, 722, 1, 0, 0, 0, 4112, 4113, 7, 4, 0, 0, 4113, 4114, 7, 8, 0, 0, 4114, 4115, 7, 11, 0, 0, 4115, 4116, 7, 19, 0, 0, 4116, 4117, 7, 12, 0, 0, 4117, 4118, 7, 16, 0, 0, 4118, 724, 1, 0, 0, 0, 4119, 4120, 7, 4, 0, 0, 4120, 4121, 7, 8, 0, 0, 4121, 4122, 7, 11, 0, 0, 4122, 4123, 7, 19, 0, 0, 4123, 4124, 7, 12, 0, 0, 4124, 4125, 7, 16, 0, 0, 4125, 4126, 5, 95, 0, 0, 4126, 4127, 7, 2, 0, 0, 4127, 4128, 7, 16, 0, 0, 4128, 4129, 7, 16, 0, 0, 4129, 726, 1, 0, 0, 0, 4130, 4131, 7, 4, 0, 0, 4131, 4132, 7, 21, 0, 0, 4132, 4133, 7, 3, 0, 0, 4133, 4134, 7, 17, 0, 0, 4134, 4135, 7, 21, 0, 0, 4135, 4136, 7, 5, 0, 0, 4136, 4137, 7, 8, 0, 0, 4137, 4138, 7, 19, 0, 0, 4138, 4139, 7, 4, 0, 0, 4139, 4140, 7, 9, 0, 0, 4140, 4141, 7, 8, 0, 0, 4141, 728, 1, 0, 0, 0, 4142, 4143, 7, 4, 0, 0, 4143, 4144, 7, 21, 0, 0, 4144, 4145, 7, 3, 0, 0, 4145, 4146, 7, 4, 0, 0, 4146, 4147, 7, 9, 0, 0, 4147, 4148, 7, 8, 0, 0, 4148, 730, 1, 0, 0, 0, 4149, 4150, 7, 4, 0, 0, 4150, 4151, 7, 21, 0, 0, 4151, 4152, 7, 3, 0, 0, 4152, 4153, 7, 4, 0, 0, 4153, 4154, 7, 8, 0, 0, 4154, 4155, 7, 11, 0, 0, 4155, 4156, 7, 19, 0, 0, 4156, 4157, 7, 12, 0, 0, 4157, 4158, 7, 16, 0, 0, 4158, 732, 1, 0, 0, 0, 4159, 4160, 7, 4, 0, 0, 4160, 4161, 7, 21, 0, 0, 4161, 4162, 7, 3, 0, 0, 4162, 4163, 7, 4, 0, 0, 4163, 4164, 7, 8, 0, 0, 4164, 4165, 7, 11, 0, 0, 4165, 4166, 7, 19, 0, 0, 4166, 4167, 7, 12, 0, 0, 4167, 4168, 7, 16, 0, 0, 4168, 4169, 5, 95, 0, 0, 4169, 4170, 7, 11, 0, 0, 4170, 4171, 7, 9, 0, 0, 4171, 4172, 7, 16, 0, 0, 4172, 4173, 7, 9, 0, 0, 4173, 4174, 7, 18, 0, 0, 4174, 734, 1, 0, 0, 0, 4175, 4176, 7, 4, 0, 0, 4176, 4177, 7, 21, 0, 0, 4177, 4178, 7, 7, 0, 0, 4178, 4179, 7, 7, 0, 0, 4179, 4180, 7, 9, 0, 0, 4180, 4181, 7, 9, 0, 0, 4181, 4182, 7, 15, 0, 0, 4182, 4183, 7, 4, 0, 0, 4183, 736, 1, 0, 0, 0, 4184, 4185, 7, 4, 0, 0, 4185, 4186, 7, 21, 0, 0, 4186, 4187, 7, 17, 0, 0, 4187, 738, 1, 0, 0, 0, 4188, 4189, 7, 4, 0, 0, 4189, 4190, 7, 21, 0, 0, 4190, 4191, 7, 12, 0, 0, 4191, 4192, 7, 15, 0, 0, 4192, 4193, 7, 2, 0, 0, 4193, 4194, 7, 13, 0, 0, 4194, 740, 1, 0, 0, 0, 4195, 4196, 7, 4, 0, 0, 4196, 4197, 7, 13, 0, 0, 4197, 4198, 7, 17, 0, 0, 4198, 4199, 7, 17, 0, 0, 4199, 4200, 7, 9, 0, 0, 4200, 4201, 7, 8, 0, 0, 4201, 4202, 7, 11, 0, 0, 4202, 4203, 7, 19, 0, 0, 4203, 4204, 7, 7, 0, 0, 4204, 742, 1, 0, 0, 0, 4205, 4206, 7, 4, 0, 0, 4206, 4207, 7, 13, 0, 0, 4207, 4208, 7, 4, 0, 0, 4208, 4209, 7, 8, 0, 0, 4209, 4210, 7, 9, 0, 0, 4210, 4211, 7, 17, 0, 0, 4211, 744, 1, 0, 0, 0, 4212, 4213, 7, 4, 0, 0, 4213, 4214, 7, 13, 0, 0, 4214, 4215, 7, 4, 0, 0, 4215, 4216, 7, 8, 0, 0, 4216, 4217, 7, 9, 0, 0, 4217, 4218, 7, 17, 0, 0, 4218, 4219, 5, 95, 0, 0, 4219, 4220, 7, 8, 0, 0, 4220, 4221, 7, 19, 0, 0, 4221, 4222, 7, 17, 0, 0, 4222, 4223, 7, 9, 0, 0, 4223, 746, 1, 0, 0, 0, 4224, 4225, 7, 4, 0, 0, 4225, 4226, 7, 13, 0, 0, 4226, 4227, 7, 4, 0, 0, 4227, 4228, 7, 8, 0, 0, 4228, 4229, 7, 9, 0, 0, 4229, 4230, 7, 17, 0, 0, 4230, 4231, 5, 95, 0, 0, 4231, 4232, 7, 21, 0, 0, 4232, 4233, 7, 4, 0, 0, 4233, 4234, 7, 9, 0, 0, 4234, 4235, 7, 11, 0, 0, 4235, 748, 1, 0, 0, 0, 4236, 4237, 7, 8, 0, 0, 4237, 4238, 7, 2, 0, 0, 4238, 4239, 7, 3, 0, 0, 4239, 4240, 7, 5, 0, 0, 4240, 4241, 7, 9, 0, 0, 4241, 750, 1, 0, 0, 0, 4242, 4243, 7, 8, 0, 0, 4243, 4244, 7, 2, 0, 0, 4244, 4245, 7, 3, 0, 0, 4245, 4246, 7, 5, 0, 0, 4246, 4247, 7, 9, 0, 0, 4247, 4248, 7, 4, 0, 0, 4248, 752, 1, 0, 0, 0, 4249, 4250, 7, 8, 0, 0, 4250, 4251, 7, 2, 0, 0, 4251, 4252, 7, 3, 0, 0, 4252, 4253, 7, 5, 0, 0, 4253, 4254, 7, 9, 0, 0, 4254, 4255, 7, 4, 0, 0, 4255, 4256, 7, 2, 0, 0, 4256, 4257, 7, 17, 0, 0, 4257, 4258, 7, 24, 0, 0, 4258, 4259, 7, 5, 0, 0, 4259, 4260, 7, 9, 0, 0, 4260, 754, 1, 0, 0, 0, 4261, 4262, 7, 8, 0, 0, 4262, 4263, 7, 22, 0, 0, 4263, 4264, 7, 9, 0, 0, 4264, 4265, 7, 12, 0, 0, 4265, 756, 1, 0, 0, 0, 4266, 4267, 7, 8, 0, 0, 4267, 4268, 7, 22, 0, 0, 4268, 4269, 7, 21, 0, 0, 4269, 4270, 7, 11, 0, 0, 4270, 4271, 7, 4, 0, 0, 4271, 4272, 7, 15, 0, 0, 4272, 4273, 7, 2, 0, 0, 4273, 4274, 7, 13, 0, 0, 4274, 758, 1, 0, 0, 0, 4275, 4276, 7, 8, 0, 0, 4276, 4277, 7, 19, 0, 0, 4277, 4278, 7, 17, 0, 0, 4278, 4279, 7, 9, 0, 0, 4279, 760, 1, 0, 0, 0, 4280, 4281, 7, 8, 0, 0, 4281, 4282, 7, 19, 0, 0, 4282, 4283, 7, 17, 0, 0, 4283, 4284, 7, 9, 0, 0, 4284, 4285, 7, 4, 0, 0, 4285, 4286, 7, 8, 0, 0, 4286, 4287, 7, 2, 0, 0, 4287, 4288, 7, 17, 0, 0, 4288, 4289, 7, 24, 0, 0, 4289, 762, 1, 0, 0, 0, 4290, 4291, 7, 8, 0, 0, 4291, 4292, 7, 19, 0, 0, 4292, 4293, 7, 17, 0, 0, 4293, 4294, 7, 9, 0, 0, 4294, 4295, 7, 4, 0, 0, 4295, 4296, 7, 8, 0, 0, 4296, 4297, 7, 2, 0, 0, 4297, 4298, 7, 17, 0, 0, 4298, 4299, 7, 24, 0, 0, 4299, 4300, 5, 95, 0, 0, 4300, 4301, 7, 15, 0, 0, 4301, 4302, 7, 19, 0, 0, 4302, 4303, 7, 23, 0, 0, 4303, 4304, 7, 23, 0, 0, 4304, 764, 1, 0, 0, 0, 4305, 4306, 7, 8, 0, 0, 4306, 4307, 7, 19, 0, 0, 4307, 4308, 7, 17, 0, 0, 4308, 4309, 7, 9, 0, 0, 4309, 4310, 7, 4, 0, 0, 4310, 4311, 7, 8, 0, 0, 4311, 4312, 7, 2, 0, 0, 4312, 4313, 7, 17, 0, 0, 4313, 4314, 7, 24, 0, 0, 4314, 4315, 5, 95, 0, 0, 4315, 4316, 7, 5, 0, 0, 4316, 4317, 7, 8, 0, 0, 4317, 4318, 7, 14, 0, 0, 4318, 766, 1, 0, 0, 0, 4319, 4320, 7, 8, 0, 0, 4320, 4321, 7, 19, 0, 0, 4321, 4322, 7, 17, 0, 0, 4322, 4323, 7, 9, 0, 0, 4323, 4324, 7, 4, 0, 0, 4324, 4325, 7, 8, 0, 0, 4325, 4326, 7, 2, 0, 0, 4326, 4327, 7, 17, 0, 0, 4327, 4328, 7, 24, 0, 0, 4328, 4329, 5, 95, 0, 0, 4329, 4330, 7, 8, 0, 0, 4330, 4331, 7, 11, 0, 0, 4331, 4332, 7, 21, 0, 0, 4332, 4333, 7, 12, 0, 0, 4333, 4334, 7, 7, 0, 0, 4334, 768, 1, 0, 0, 0, 4335, 4336, 7, 8, 0, 0, 4336, 4337, 7, 19, 0, 0, 4337, 4338, 7, 17, 0, 0, 4338, 4339, 7, 9, 0, 0, 4339, 4340, 7, 14, 0, 0, 4340, 4341, 7, 6, 0, 0, 4341, 4342, 7, 12, 0, 0, 4342, 4343, 7, 9, 0, 0, 4343, 4344, 5, 95, 0, 0, 4344, 4345, 7, 22, 0, 0, 4345, 4346, 7, 6, 0, 0, 4346, 4347, 7, 21, 0, 0, 4347, 4348, 7, 11, 0, 0, 4348, 770, 1, 0, 0, 0, 4349, 4350, 7, 8, 0, 0, 4350, 4351, 7, 19, 0, 0, 4351, 4352, 7, 17, 0, 0, 4352, 4353, 7, 9, 0, 0, 4353, 4354, 7, 14, 0, 0, 4354, 4355, 7, 6, 0, 0, 4355, 4356, 7, 12, 0, 0, 4356, 4357, 7, 9, 0, 0, 4357, 4358, 5, 95, 0, 0, 4358, 4359, 7, 17, 0, 0, 4359, 4360, 7, 19, 0, 0, 4360, 4361, 7, 12, 0, 0, 4361, 4362, 7, 21, 0, 0, 4362, 4363, 7, 8, 0, 0, 4363, 4364, 7, 9, 0, 0, 4364, 772, 1, 0, 0, 0, 4365, 4366, 7, 8, 0, 0, 4366, 4367, 7, 19, 0, 0, 4367, 4368, 7, 17, 0, 0, 4368, 4369, 7, 9, 0, 0, 4369, 4370, 5, 95, 0, 0, 4370, 4371, 7, 15, 0, 0, 4371, 4372, 7, 19, 0, 0, 4372, 4373, 7, 23, 0, 0, 4373, 4374, 7, 23, 0, 0, 4374, 774, 1, 0, 0, 0, 4375, 4376, 7, 8, 0, 0, 4376, 4377, 7, 19, 0, 0, 4377, 4378, 7, 17, 0, 0, 4378, 4379, 7, 9, 0, 0, 4379, 4380, 5, 95, 0, 0, 4380, 4381, 7, 8, 0, 0, 4381, 4382, 7, 11, 0, 0, 4382, 4383, 7, 21, 0, 0, 4383, 4384, 7, 12, 0, 0, 4384, 4385, 7, 7, 0, 0, 4385, 776, 1, 0, 0, 0, 4386, 4387, 7, 8, 0, 0, 4387, 4388, 7, 19, 0, 0, 4388, 4389, 7, 12, 0, 0, 4389, 4390, 7, 13, 0, 0, 4390, 4391, 7, 19, 0, 0, 4391, 4392, 7, 12, 0, 0, 4392, 4393, 7, 8, 0, 0, 4393, 778, 1, 0, 0, 0, 4394, 4395, 7, 8, 0, 0, 4395, 4396, 7, 6, 0, 0, 4396, 780, 1, 0, 0, 0, 4397, 4398, 7, 8, 0, 0, 4398, 4399, 7, 11, 0, 0, 4399, 4400, 7, 2, 0, 0, 4400, 4401, 7, 19, 0, 0, 4401, 4402, 7, 5, 0, 0, 4402, 4403, 7, 19, 0, 0, 4403, 4404, 7, 12, 0, 0, 4404, 4405, 7, 16, 0, 0, 4405, 782, 1, 0, 0, 0, 4406, 4407, 7, 8, 0, 0, 4407, 4408, 7, 11, 0, 0, 4408, 4409, 7, 2, 0, 0, 4409, 4410, 7, 12, 0, 0, 4410, 4411, 7, 4, 0, 0, 4411, 4412, 7, 5, 0, 0, 4412, 4413, 7, 2, 0, 0, 4413, 4414, 7, 8, 0, 0, 4414, 4415, 7, 9, 0, 0, 4415, 784, 1, 0, 0, 0, 4416, 4417, 7, 8, 0, 0, 4417, 4418, 7, 11, 0, 0, 4418, 4419, 7, 2, 0, 0, 4419, 4420, 7, 12, 0, 0, 4420, 4421, 7, 4, 0, 0, 4421, 4422, 7, 5, 0, 0, 4422, 4423, 7, 2, 0, 0, 4423, 4424, 7, 8, 0, 0, 4424, 4425, 7, 9, 0, 0, 4425, 4426, 5, 95, 0, 0, 4426, 4427, 7, 11, 0, 0, 4427, 4428, 7, 9, 0, 0, 4428, 4429, 7, 16, 0, 0, 4429, 4430, 7, 9, 0, 0, 4430, 4431, 7, 18, 0, 0, 4431, 786, 1, 0, 0, 0, 4432, 4433, 7, 8, 0, 0, 4433, 4434, 7, 11, 0, 0, 4434, 4435, 7, 2, 0, 0, 4435, 4436, 7, 12, 0, 0, 4436, 4437, 7, 4, 0, 0, 4437, 4438, 7, 5, 0, 0, 4438, 4439, 7, 2, 0, 0, 4439, 4440, 7, 8, 0, 0, 4440, 4441, 7, 19, 0, 0, 4441, 4442, 7, 6, 0, 0, 4442, 4443, 7, 12, 0, 0, 4443, 788, 1, 0, 0, 0, 4444, 4445, 7, 8, 0, 0, 4445, 4446, 7, 11, 0, 0, 4446, 4447, 7, 9, 0, 0, 4447, 4448, 7, 2, 0, 0, 4448, 4449, 7, 8, 0, 0, 4449, 790, 1, 0, 0, 0, 4450, 4451, 7, 8, 0, 0, 4451, 4452, 7, 11, 0, 0, 4452, 4453, 7, 19, 0, 0, 4453, 4454, 7, 16, 0, 0, 4454, 4455, 7, 16, 0, 0, 4455, 4456, 7, 9, 0, 0, 4456, 4457, 7, 11, 0, 0, 4457, 792, 1, 0, 0, 0, 4458, 4459, 7, 8, 0, 0, 4459, 4460, 7, 11, 0, 0, 4460, 4461, 7, 19, 0, 0, 4461, 4462, 7, 17, 0, 0, 4462, 794, 1, 0, 0, 0, 4463, 4464, 7, 8, 0, 0, 4464, 4465, 7, 11, 0, 0, 4465, 4466, 7, 19, 0, 0, 4466, 4467, 7, 17, 0, 0, 4467, 4468, 5, 95, 0, 0, 4468, 4469, 7, 2, 0, 0, 4469, 4470, 7, 11, 0, 0, 4470, 4471, 7, 11, 0, 0, 4471, 4472, 7, 2, 0, 0, 4472, 4473, 7, 13, 0, 0, 4473, 796, 1, 0, 0, 0, 4474, 4475, 7, 8, 0, 0, 4475, 4476, 7, 11, 0, 0, 4476, 4477, 7, 21, 0, 0, 4477, 4478, 7, 9, 0, 0, 4478, 798, 1, 0, 0, 0, 4479, 4480, 7, 8, 0, 0, 4480, 4481, 7, 11, 0, 0, 4481, 4482, 7, 21, 0, 0, 4482, 4483, 7, 12, 0, 0, 4483, 4484, 7, 7, 0, 0, 4484, 4485, 7, 2, 0, 0, 4485, 4486, 7, 8, 0, 0, 4486, 4487, 7, 9, 0, 0, 4487, 800, 1, 0, 0, 0, 4488, 4489, 7, 8, 0, 0, 4489, 4490, 7, 11, 0, 0, 4490, 4491, 7, 13, 0, 0, 4491, 4492, 5, 95, 0, 0, 4492, 4493, 7, 7, 0, 0, 4493, 4494, 7, 2, 0, 0, 4494, 4495, 7, 4, 0, 0, 4495, 4496, 7, 8, 0, 0, 4496, 802, 1, 0, 0, 0, 4497, 4498, 7, 8, 0, 0, 4498, 4499, 7, 21, 0, 0, 4499, 4500, 7, 9, 0, 0, 4500, 4501, 7, 4, 0, 0, 4501, 4502, 7, 15, 0, 0, 4502, 4503, 7, 2, 0, 0, 4503, 4504, 7, 13, 0, 0, 4504, 804, 1, 0, 0, 0, 4505, 4506, 7, 21, 0, 0, 4506, 4507, 7, 9, 0, 0, 4507, 4508, 7, 4, 0, 0, 4508, 4509, 7, 7, 0, 0, 4509, 4510, 7, 2, 0, 0, 4510, 4511, 7, 24, 0, 0, 4511, 4512, 7, 9, 0, 0, 4512, 806, 1, 0, 0, 0, 4513, 4514, 7, 21, 0, 0, 4514, 4515, 7, 12, 0, 0, 4515, 4516, 7, 3, 0, 0, 4516, 4517, 7, 6, 0, 0, 4517, 4518, 7, 21, 0, 0, 4518, 4519, 7, 12, 0, 0, 4519, 4520, 7, 15, 0, 0, 4520, 4521, 7, 9, 0, 0, 4521, 4522, 7, 15, 0, 0, 4522, 808, 1, 0, 0, 0, 4523, 4524, 7, 21, 0, 0, 4524, 4525, 7, 12, 0, 0, 4525, 4526, 7, 19, 0, 0, 4526, 4527, 7, 6, 0, 0, 4527, 4528, 7, 12, 0, 0, 4528, 810, 1, 0, 0, 0, 4529, 4530, 7, 21, 0, 0, 4530, 4531, 7, 12, 0, 0, 4531, 4532, 7, 19, 0, 0, 4532, 4533, 7, 26, 0, 0, 4533, 4534, 7, 21, 0, 0, 4534, 4535, 7, 9, 0, 0, 4535, 812, 1, 0, 0, 0, 4536, 4537, 7, 21, 0, 0, 4537, 4538, 7, 12, 0, 0, 4538, 4539, 7, 25, 0, 0, 4539, 4540, 7, 12, 0, 0, 4540, 4541, 7, 6, 0, 0, 4541, 4542, 7, 10, 0, 0, 4542, 4543, 7, 12, 0, 0, 4543, 814, 1, 0, 0, 0, 4544, 4545, 7, 21, 0, 0, 4545, 4546, 7, 12, 0, 0, 4546, 4547, 7, 12, 0, 0, 4547, 4548, 7, 9, 0, 0, 4548, 4549, 7, 4, 0, 0, 4549, 4550, 7, 8, 0, 0, 4550, 816, 1, 0, 0, 0, 4551, 4552, 7, 21, 0, 0, 4552, 4553, 7, 12, 0, 0, 4553, 4554, 7, 24, 0, 0, 4554, 4555, 7, 19, 0, 0, 4555, 4556, 7, 20, 0, 0, 4556, 4557, 7, 6, 0, 0, 4557, 4558, 7, 8, 0, 0, 4558, 818, 1, 0, 0, 0, 4559, 4560, 7, 21, 0, 0, 4560, 4561, 7, 24, 0, 0, 4561, 4562, 7, 15, 0, 0, 4562, 4563, 7, 2, 0, 0, 4563, 4564, 7, 8, 0, 0, 4564, 4565, 7, 9, 0, 0, 4565, 820, 1, 0, 0, 0, 4566, 4567, 7, 21, 0, 0, 4567, 4568, 7, 24, 0, 0, 4568, 4569, 7, 24, 0, 0, 4569, 4570, 7, 9, 0, 0, 4570, 4571, 7, 11, 0, 0, 4571, 822, 1, 0, 0, 0, 4572, 4573, 7, 21, 0, 0, 4573, 4574, 7, 24, 0, 0, 4574, 4575, 7, 4, 0, 0, 4575, 4576, 7, 9, 0, 0, 4576, 4577, 7, 11, 0, 0, 4577, 4578, 7, 8, 0, 0, 4578, 824, 1, 0, 0, 0, 4579, 4580, 7, 21, 0, 0, 4580, 4581, 7, 4, 0, 0, 4581, 4582, 7, 9, 0, 0, 4582, 826, 1, 0, 0, 0, 4583, 4584, 7, 21, 0, 0, 4584, 4585, 7, 4, 0, 0, 4585, 4586, 7, 9, 0, 0, 4586, 4587, 7, 11, 0, 0, 4587, 828, 1, 0, 0, 0, 4588, 4589, 7, 21, 0, 0, 4589, 4590, 7, 4, 0, 0, 4590, 4591, 7, 19, 0, 0, 4591, 4592, 7, 12, 0, 0, 4592, 4593, 7, 16, 0, 0, 4593, 830, 1, 0, 0, 0, 4594, 4595, 7, 20, 0, 0, 4595, 4596, 7, 2, 0, 0, 4596, 4597, 7, 5, 0, 0, 4597, 4598, 7, 21, 0, 0, 4598, 4599, 7, 9, 0, 0, 4599, 832, 1, 0, 0, 0, 4600, 4601, 7, 20, 0, 0, 4601, 4602, 7, 2, 0, 0, 4602, 4603, 7, 5, 0, 0, 4603, 4604, 7, 21, 0, 0, 4604, 4605, 7, 9, 0, 0, 4605, 4606, 7, 4, 0, 0, 4606, 834, 1, 0, 0, 0, 4607, 4608, 7, 20, 0, 0, 4608, 4609, 7, 2, 0, 0, 4609, 4610, 7, 5, 0, 0, 4610, 4611, 7, 21, 0, 0, 4611, 4612, 7, 9, 0, 0, 4612, 4613, 5, 95, 0, 0, 4613, 4614, 7, 6, 0, 0, 4614, 4615, 7, 23, 0, 0, 4615, 836, 1, 0, 0, 0, 4616, 4617, 7, 20, 0, 0, 4617, 4618, 7, 2, 0, 0, 4618, 4619, 7, 11, 0, 0, 4619, 4620, 7, 3, 0, 0, 4620, 4621, 7, 19, 0, 0, 4621, 4622, 7, 12, 0, 0, 4622, 4623, 7, 2, 0, 0, 4623, 4624, 7, 11, 0, 0, 4624, 4625, 7, 13, 0, 0, 4625, 838, 1, 0, 0, 0, 4626, 4627, 7, 20, 0, 0, 4627, 4628, 7, 2, 0, 0, 4628, 4629, 7, 11, 0, 0, 4629, 4630, 7, 7, 0, 0, 4630, 4631, 7, 22, 0, 0, 4631, 4632, 7, 2, 0, 0, 4632, 4633, 7, 11, 0, 0, 4633, 840, 1, 0, 0, 0, 4634, 4635, 7, 20, 0, 0, 4635, 4636, 7, 2, 0, 0, 4636, 4637, 7, 11, 0, 0, 4637, 4638, 7, 13, 0, 0, 4638, 4639, 7, 19, 0, 0, 4639, 4640, 7, 12, 0, 0, 4640, 4641, 7, 16, 0, 0, 4641, 842, 1, 0, 0, 0, 4642, 4643, 7, 20, 0, 0, 4643, 4644, 7, 2, 0, 0, 4644, 4645, 7, 11, 0, 0, 4645, 4646, 5, 95, 0, 0, 4646, 4647, 7, 24, 0, 0, 4647, 4648, 7, 6, 0, 0, 4648, 4649, 7, 24, 0, 0, 4649, 844, 1, 0, 0, 0, 4650, 4651, 7, 20, 0, 0, 4651, 4652, 7, 2, 0, 0, 4652, 4653, 7, 11, 0, 0, 4653, 4654, 5, 95, 0, 0, 4654, 4655, 7, 4, 0, 0, 4655, 4656, 7, 2, 0, 0, 4656, 4657, 7, 17, 0, 0, 4657, 4658, 7, 24, 0, 0, 4658, 846, 1, 0, 0, 0, 4659, 4660, 7, 20, 0, 0, 4660, 4661, 7, 9, 0, 0, 4661, 4662, 7, 11, 0, 0, 4662, 4663, 7, 4, 0, 0, 4663, 4664, 7, 19, 0, 0, 4664, 4665, 7, 6, 0, 0, 4665, 4666, 7, 12, 0, 0, 4666, 4667, 7, 19, 0, 0, 4667, 4668, 7, 12, 0, 0, 4668, 4669, 7, 16, 0, 0, 4669, 848, 1, 0, 0, 0, 4670, 4671, 7, 20, 0, 0, 4671, 4672, 7, 19, 0, 0, 4672, 4673, 7, 9, 0, 0, 4673, 4674, 7, 10, 0, 0, 4674, 4675, 7, 4, 0, 0, 4675, 850, 1, 0, 0, 0, 4676, 4677, 7, 20, 0, 0, 4677, 4678, 7, 19, 0, 0, 4678, 4679, 7, 11, 0, 0, 4679, 4680, 7, 8, 0, 0, 4680, 4681, 7, 21, 0, 0, 4681, 4682, 7, 2, 0, 0, 4682, 4683, 7, 5, 0, 0, 4683, 852, 1, 0, 0, 0, 4684, 4685, 7, 10, 0, 0, 4685, 4686, 7, 2, 0, 0, 4686, 4687, 7, 8, 0, 0, 4687, 4688, 7, 9, 0, 0, 4688, 4689, 7, 11, 0, 0, 4689, 4690, 7, 17, 0, 0, 4690, 4691, 7, 2, 0, 0, 4691, 4692, 7, 11, 0, 0, 4692, 4693, 7, 25, 0, 0, 4693, 854, 1, 0, 0, 0, 4694, 4695, 7, 10, 0, 0, 4695, 4696, 7, 2, 0, 0, 4696, 4697, 7, 8, 0, 0, 4697, 4698, 7, 9, 0, 0, 4698, 4699, 7, 11, 0, 0, 4699, 4700, 7, 17, 0, 0, 4700, 4701, 7, 2, 0, 0, 4701, 4702, 7, 11, 0, 0, 4702, 4703, 7, 25, 0, 0, 4703, 4704, 7, 4, 0, 0, 4704, 856, 1, 0, 0, 0, 4705, 4706, 7, 10, 0, 0, 4706, 4707, 7, 9, 0, 0, 4707, 4708, 7, 15, 0, 0, 4708, 4709, 7, 12, 0, 0, 4709, 4710, 7, 9, 0, 0, 4710, 4711, 7, 4, 0, 0, 4711, 4712, 7, 15, 0, 0, 4712, 4713, 7, 2, 0, 0, 4713, 4714, 7, 13, 0, 0, 4714, 858, 1, 0, 0, 0, 4715, 4716, 7, 10, 0, 0, 4716, 4717, 7, 9, 0, 0, 4717, 4718, 7, 9, 0, 0, 4718, 4719, 7, 25, 0, 0, 4719, 4720, 7, 4, 0, 0, 4720, 860, 1, 0, 0, 0, 4721, 4722, 7, 10, 0, 0, 4722, 4723, 7, 22, 0, 0, 4723, 4724, 7, 9, 0, 0, 4724, 4725, 7, 12, 0, 0, 4725, 862, 1, 0, 0, 0, 4726, 4727, 7, 10, 0, 0, 4727, 4728, 7, 22, 0, 0, 4728, 4729, 7, 9, 0, 0, 4729, 4730, 7, 12, 0, 0, 4730, 4731, 7, 9, 0, 0, 4731, 4732, 7, 20, 0, 0, 4732, 4733, 7, 9, 0, 0, 4733, 4734, 7, 11, 0, 0, 4734, 864, 1, 0, 0, 0, 4735, 4736, 7, 10, 0, 0, 4736, 4737, 7, 22, 0, 0, 4737, 4738, 7, 9, 0, 0, 4738, 4739, 7, 11, 0, 0, 4739, 4740, 7, 9, 0, 0, 4740, 866, 1, 0, 0, 0, 4741, 4742, 7, 10, 0, 0, 4742, 4743, 7, 19, 0, 0, 4743, 4744, 7, 15, 0, 0, 4744, 4745, 7, 8, 0, 0, 4745, 4746, 7, 22, 0, 0, 4746, 4747, 5, 95, 0, 0, 4747, 4748, 7, 3, 0, 0, 4748, 4749, 7, 21, 0, 0, 4749, 4750, 7, 7, 0, 0, 4750, 4751, 7, 25, 0, 0, 4751, 4752, 7, 9, 0, 0, 4752, 4753, 7, 8, 0, 0, 4753, 868, 1, 0, 0, 0, 4754, 4755, 7, 10, 0, 0, 4755, 4756, 7, 19, 0, 0, 4756, 4757, 7, 12, 0, 0, 4757, 4758, 7, 15, 0, 0, 4758, 4759, 7, 6, 0, 0, 4759, 4760, 7, 10, 0, 0, 4760, 870, 1, 0, 0, 0, 4761, 4762, 7, 10, 0, 0, 4762, 4763, 7, 19, 0, 0, 4763, 4764, 7, 8, 0, 0, 4764, 4765, 7, 22, 0, 0, 4765, 872, 1, 0, 0, 0, 4766, 4767, 7, 10, 0, 0, 4767, 4768, 7, 19, 0, 0, 4768, 4769, 7, 8, 0, 0, 4769, 4770, 7, 22, 0, 0, 4770, 4771, 7, 19, 0, 0, 4771, 4772, 7, 12, 0, 0, 4772, 874, 1, 0, 0, 0, 4773, 4774, 7, 10, 0, 0, 4774, 4775, 7, 19, 0, 0, 4775, 4776, 7, 8, 0, 0, 4776, 4777, 7, 22, 0, 0, 4777, 4778, 7, 6, 0, 0, 4778, 4779, 7, 21, 0, 0, 4779, 4780, 7, 8, 0, 0, 4780, 876, 1, 0, 0, 0, 4781, 4782, 7, 13, 0, 0, 4782, 4783, 7, 9, 0, 0, 4783, 4784, 7, 2, 0, 0, 4784, 4785, 7, 11, 0, 0, 4785, 878, 1, 0, 0, 0, 4786, 4787, 7, 2, 0, 0, 4787, 4788, 7, 15, 0, 0, 4788, 4789, 7, 15, 0, 0, 4789, 880, 1, 0, 0, 0, 4790, 4791, 7, 2, 0, 0, 4791, 4792, 7, 23, 0, 0, 4792, 4793, 7, 8, 0, 0, 4793, 4794, 7, 9, 0, 0, 4794, 4795, 7, 11, 0, 0, 4795, 882, 1, 0, 0, 0, 4796, 4797, 7, 2, 0, 0, 4797, 4798, 7, 4, 0, 0, 4798, 4799, 7, 7, 0, 0, 4799, 884, 1, 0, 0, 0, 4800, 4801, 7, 7, 0, 0, 4801, 4802, 7, 2, 0, 0, 4802, 4803, 7, 4, 0, 0, 4803, 4804, 7, 7, 0, 0, 4804, 4805, 7, 2, 0, 0, 4805, 4806, 7, 15, 0, 0, 4806, 4807, 7, 9, 0, 0, 4807, 886, 1, 0, 0, 0, 4808, 4809, 7, 7, 0, 0, 4809, 4810, 7, 2, 0, 0, 4810, 4811, 7, 8, 0, 0, 4811, 4812, 7, 2, 0, 0, 4812, 4813, 7, 5, 0, 0, 4813, 4814, 7, 6, 0, 0, 4814, 4815, 7, 16, 0, 0, 4815, 888, 1, 0, 0, 0, 4816, 4817, 7, 7, 0, 0, 4817, 4818, 7, 9, 0, 0, 4818, 4819, 7, 12, 0, 0, 4819, 4820, 7, 8, 0, 0, 4820, 4821, 7, 21, 0, 0, 4821, 4822, 7, 11, 0, 0, 4822, 4823, 7, 13, 0, 0, 4823, 890, 1, 0, 0, 0, 4824, 4825, 7, 7, 0, 0, 4825, 4826, 7, 6, 0, 0, 4826, 4827, 7, 12, 0, 0, 4827, 4828, 7, 23, 0, 0, 4828, 4829, 7, 19, 0, 0, 4829, 4830, 7, 16, 0, 0, 4830, 892, 1, 0, 0, 0, 4831, 4832, 7, 7, 0, 0, 4832, 4833, 7, 6, 0, 0, 4833, 4834, 7, 12, 0, 0, 4834, 4835, 7, 4, 0, 0, 4835, 4836, 7, 8, 0, 0, 4836, 4837, 7, 11, 0, 0, 4837, 4838, 7, 2, 0, 0, 4838, 4839, 7, 19, 0, 0, 4839, 4840, 7, 12, 0, 0, 4840, 4841, 7, 8, 0, 0, 4841, 4842, 7, 4, 0, 0, 4842, 894, 1, 0, 0, 0, 4843, 4844, 7, 7, 0, 0, 4844, 4845, 7, 21, 0, 0, 4845, 4846, 7, 17, 0, 0, 4846, 4847, 7, 21, 0, 0, 4847, 4848, 7, 5, 0, 0, 4848, 4849, 7, 2, 0, 0, 4849, 4850, 7, 8, 0, 0, 4850, 4851, 7, 9, 0, 0, 4851, 896, 1, 0, 0, 0, 4852, 4853, 7, 15, 0, 0, 4853, 4854, 7, 2, 0, 0, 4854, 4855, 7, 8, 0, 0, 4855, 4856, 7, 2, 0, 0, 4856, 898, 1, 0, 0, 0, 4857, 4858, 7, 15, 0, 0, 4858, 4859, 7, 2, 0, 0, 4859, 4860, 7, 8, 0, 0, 4860, 4861, 7, 2, 0, 0, 4861, 4862, 7, 3, 0, 0, 4862, 4863, 7, 2, 0, 0, 4863, 4864, 7, 4, 0, 0, 4864, 4865, 7, 9, 0, 0, 4865, 900, 1, 0, 0, 0, 4866, 4867, 7, 15, 0, 0, 4867, 4868, 7, 2, 0, 0, 4868, 4869, 7, 13, 0, 0, 4869, 4870, 7, 4, 0, 0, 4870, 902, 1, 0, 0, 0, 4871, 4872, 7, 15, 0, 0, 4872, 4873, 7, 9, 0, 0, 4873, 4874, 7, 7, 0, 0, 4874, 4875, 7, 2, 0, 0, 4875, 4876, 7, 15, 0, 0, 4876, 4877, 7, 9, 0, 0, 4877, 904, 1, 0, 0, 0, 4878, 4879, 7, 15, 0, 0, 4879, 4880, 7, 9, 0, 0, 4880, 4881, 7, 4, 0, 0, 4881, 4882, 7, 7, 0, 0, 4882, 906, 1, 0, 0, 0, 4883, 4884, 7, 15, 0, 0, 4884, 4885, 7, 9, 0, 0, 4885, 4886, 7, 4, 0, 0, 4886, 4887, 7, 7, 0, 0, 4887, 4888, 7, 11, 0, 0, 4888, 4889, 7, 19, 0, 0, 4889, 4890, 7, 24, 0, 0, 4890, 4891, 7, 8, 0, 0, 4891, 4892, 7, 6, 0, 0, 4892, 4893, 7, 11, 0, 0, 4893, 908, 1, 0, 0, 0, 4894, 4895, 7, 15, 0, 0, 4895, 4896, 7, 19, 0, 0, 4896, 4897, 7, 20, 0, 0, 4897, 910, 1, 0, 0, 0, 4898, 4899, 7, 9, 0, 0, 4899, 4900, 7, 12, 0, 0, 4900, 4901, 7, 16, 0, 0, 4901, 4902, 7, 19, 0, 0, 4902, 4903, 7, 12, 0, 0, 4903, 4904, 7, 9, 0, 0, 4904, 912, 1, 0, 0, 0, 4905, 4906, 7, 9, 0, 0, 4906, 4907, 7, 24, 0, 0, 4907, 4908, 7, 6, 0, 0, 4908, 4909, 7, 7, 0, 0, 4909, 4910, 7, 22, 0, 0, 4910, 914, 1, 0, 0, 0, 4911, 4912, 7, 9, 0, 0, 4912, 4913, 7, 18, 0, 0, 4913, 4914, 7, 7, 0, 0, 4914, 4915, 7, 5, 0, 0, 4915, 4916, 7, 21, 0, 0, 4916, 4917, 7, 15, 0, 0, 4917, 4918, 7, 19, 0, 0, 4918, 4919, 7, 12, 0, 0, 4919, 4920, 7, 16, 0, 0, 4920, 916, 1, 0, 0, 0, 4921, 4922, 7, 23, 0, 0, 4922, 4923, 7, 19, 0, 0, 4923, 4924, 7, 5, 0, 0, 4924, 4925, 7, 9, 0, 0, 4925, 918, 1, 0, 0, 0, 4926, 4927, 7, 23, 0, 0, 4927, 4928, 7, 19, 0, 0, 4928, 4929, 7, 11, 0, 0, 4929, 4930, 7, 4, 0, 0, 4930, 4931, 7, 8, 0, 0, 4931, 920, 1, 0, 0, 0, 4932, 4933, 7, 16, 0, 0, 4933, 4934, 7, 9, 0, 0, 4934, 4935, 7, 12, 0, 0, 4935, 4936, 7, 9, 0, 0, 4936, 4937, 7, 11, 0, 0, 4937, 4938, 7, 2, 0, 0, 4938, 4939, 7, 8, 0, 0, 4939, 4940, 7, 9, 0, 0, 4940, 4941, 7, 15, 0, 0, 4941, 922, 1, 0, 0, 0, 4942, 4943, 7, 22, 0, 0, 4943, 4944, 7, 6, 0, 0, 4944, 4945, 7, 24, 0, 0, 4945, 924, 1, 0, 0, 0, 4946, 4947, 7, 22, 0, 0, 4947, 4948, 7, 6, 0, 0, 4948, 4949, 7, 21, 0, 0, 4949, 4950, 7, 11, 0, 0, 4950, 4951, 7, 4, 0, 0, 4951, 926, 1, 0, 0, 0, 4952, 4953, 7, 19, 0, 0, 4953, 4954, 7, 16, 0, 0, 4954, 4955, 7, 12, 0, 0, 4955, 4956, 7, 6, 0, 0, 4956, 4957, 7, 11, 0, 0, 4957, 4958, 7, 9, 0, 0, 4958, 928, 1, 0, 0, 0, 4959, 4960, 7, 19, 0, 0, 4960, 4961, 7, 12, 0, 0, 4961, 4962, 7, 7, 0, 0, 4962, 4963, 7, 5, 0, 0, 4963, 4964, 7, 21, 0, 0, 4964, 4965, 7, 15, 0, 0, 4965, 4966, 7, 19, 0, 0, 4966, 4967, 7, 12, 0, 0, 4967, 4968, 7, 16, 0, 0, 4968, 930, 1, 0, 0, 0, 4969, 4970, 7, 27, 0, 0, 4970, 4971, 7, 2, 0, 0, 4971, 4972, 7, 11, 0, 0, 4972, 932, 1, 0, 0, 0, 4973, 4974, 7, 27, 0, 0, 4974, 4975, 7, 2, 0, 0, 4975, 4976, 7, 11, 0, 0, 4976, 4977, 7, 4, 0, 0, 4977, 934, 1, 0, 0, 0, 4978, 4979, 7, 27, 0, 0, 4979, 4980, 7, 2, 0, 0, 4980, 4981, 7, 20, 0, 0, 4981, 4982, 7, 2, 0, 0, 4982, 936, 1, 0, 0, 0, 4983, 4984, 7, 25, 0, 0, 4984, 4985, 7, 9, 0, 0, 4985, 4986, 7, 13, 0, 0, 4986, 938, 1, 0, 0, 0, 4987, 4988, 7, 5, 0, 0, 4988, 4989, 7, 2, 0, 0, 4989, 4990, 7, 4, 0, 0, 4990, 4991, 7, 8, 0, 0, 4991, 940, 1, 0, 0, 0, 4992, 4993, 7, 5, 0, 0, 4993, 4994, 7, 6, 0, 0, 4994, 4995, 7, 2, 0, 0, 4995, 4996, 7, 15, 0, 0, 4996, 942, 1, 0, 0, 0, 4997, 4998, 7, 17, 0, 0, 4998, 4999, 7, 2, 0, 0, 4999, 5000, 7, 24, 0, 0, 5000, 944, 1, 0, 0, 0, 5001, 5002, 7, 17, 0, 0, 5002, 5003, 7, 19, 0, 0, 5003, 5004, 7, 7, 0, 0, 5004, 5005, 7, 11, 0, 0, 5005, 5006, 7, 6, 0, 0, 5006, 5007, 7, 4, 0, 0, 5007, 5008, 7, 9, 0, 0, 5008, 5009, 7, 7, 0, 0, 5009, 5010, 7, 6, 0, 0, 5010, 5011, 7, 12, 0, 0, 5011, 5012, 7, 15, 0, 0, 5012, 946, 1, 0, 0, 0, 5013, 5014, 7, 17, 0, 0, 5014, 5015, 7, 19, 0, 0, 5015, 5016, 7, 5, 0, 0, 5016, 5017, 7, 5, 0, 0, 5017, 5018, 7, 9, 0, 0, 5018, 5019, 7, 12, 0, 0, 5019, 5020, 7, 12, 0, 0, 5020, 5021, 7, 19, 0, 0, 5021, 5022, 7, 21, 0, 0, 5022, 5023, 7, 17, 0, 0, 5023, 948, 1, 0, 0, 0, 5024, 5025, 7, 17, 0, 0, 5025, 5026, 7, 19, 0, 0, 5026, 5027, 7, 5, 0, 0, 5027, 5028, 7, 5, 0, 0, 5028, 5029, 7, 19, 0, 0, 5029, 5030, 7, 4, 0, 0, 5030, 5031, 7, 9, 0, 0, 5031, 5032, 7, 7, 0, 0, 5032, 5033, 7, 6, 0, 0, 5033, 5034, 7, 12, 0, 0, 5034, 5035, 7, 15, 0, 0, 5035, 950, 1, 0, 0, 0, 5036, 5037, 7, 17, 0, 0, 5037, 5038, 7, 19, 0, 0, 5038, 5039, 7, 12, 0, 0, 5039, 5040, 7, 21, 0, 0, 5040, 5041, 7, 8, 0, 0, 5041, 5042, 7, 9, 0, 0, 5042, 5043, 7, 4, 0, 0, 5043, 952, 1, 0, 0, 0, 5044, 5045, 7, 17, 0, 0, 5045, 5046, 7, 6, 0, 0, 5046, 5047, 7, 12, 0, 0, 5047, 5048, 7, 8, 0, 0, 5048, 5049, 7, 22, 0, 0, 5049, 5050, 7, 4, 0, 0, 5050, 954, 1, 0, 0, 0, 5051, 5052, 7, 12, 0, 0, 5052, 5053, 7, 2, 0, 0, 5053, 5054, 7, 12, 0, 0, 5054, 5055, 7, 6, 0, 0, 5055, 5056, 7, 4, 0, 0, 5056, 5057, 7, 9, 0, 0, 5057, 5058, 7, 7, 0, 0, 5058, 5059, 7, 6, 0, 0, 5059, 5060, 7, 12, 0, 0, 5060, 5061, 7, 15, 0, 0, 5061, 956, 1, 0, 0, 0, 5062, 5063, 7, 12, 0, 0, 5063, 5064, 7, 21, 0, 0, 5064, 5065, 7, 5, 0, 0, 5065, 5066, 7, 5, 0, 0, 5066, 5067, 7, 4, 0, 0, 5067, 958, 1, 0, 0, 0, 5068, 5069, 7, 6, 0, 0, 5069, 5070, 7, 24, 0, 0, 5070, 5071, 7, 8, 0, 0, 5071, 5072, 7, 19, 0, 0, 5072, 5073, 7, 6, 0, 0, 5073, 5074, 7, 12, 0, 0, 5074, 5075, 7, 4, 0, 0, 5075, 960, 1, 0, 0, 0, 5076, 5077, 7, 24, 0, 0, 5077, 5078, 7, 2, 0, 0, 5078, 5079, 7, 4, 0, 0, 5079, 5080, 7, 8, 0, 0, 5080, 962, 1, 0, 0, 0, 5081, 5082, 7, 24, 0, 0, 5082, 5083, 7, 5, 0, 0, 5083, 5084, 7, 2, 0, 0, 5084, 5085, 7, 12, 0, 0, 5085, 964, 1, 0, 0, 0, 5086, 5087, 7, 24, 0, 0, 5087, 5088, 7, 11, 0, 0, 5088, 5089, 7, 9, 0, 0, 5089, 5090, 7, 7, 0, 0, 5090, 5091, 7, 9, 0, 0, 5091, 5092, 7, 15, 0, 0, 5092, 5093, 7, 19, 0, 0, 5093, 5094, 7, 12, 0, 0, 5094, 5095, 7, 16, 0, 0, 5095, 966, 1, 0, 0, 0, 5096, 5097, 7, 24, 0, 0, 5097, 5098, 7, 13, 0, 0, 5098, 5099, 7, 8, 0, 0, 5099, 5100, 7, 22, 0, 0, 5100, 5101, 7, 6, 0, 0, 5101, 5102, 7, 12, 0, 0, 5102, 968, 1, 0, 0, 0, 5103, 5104, 7, 24, 0, 0, 5104, 5105, 7, 13, 0, 0, 5105, 5106, 7, 8, 0, 0, 5106, 5107, 7, 22, 0, 0, 5107, 5108, 7, 6, 0, 0, 5108, 5109, 7, 12, 0, 0, 5109, 5110, 5, 95, 0, 0, 5110, 5111, 7, 2, 0, 0, 5111, 5112, 7, 11, 0, 0, 5112, 5113, 7, 7, 0, 0, 5113, 5114, 7, 22, 0, 0, 5114, 5115, 7, 19, 0, 0, 5115, 5116, 7, 20, 0, 0, 5116, 5117, 7, 9, 0, 0, 5117, 5118, 7, 4, 0, 0, 5118, 970, 1, 0, 0, 0, 5119, 5120, 7, 24, 0, 0, 5120, 5121, 7, 13, 0, 0, 5121, 5122, 7, 8, 0, 0, 5122, 5123, 7, 22, 0, 0, 5123, 5124, 7, 6, 0, 0, 5124, 5125, 7, 12, 0, 0, 5125, 5126, 5, 95, 0, 0, 5126, 5127, 7, 15, 0, 0, 5127, 5128, 7, 9, 0, 0, 5128, 5129, 7, 24, 0, 0, 5129, 5130, 7, 9, 0, 0, 5130, 5131, 7, 12, 0, 0, 5131, 5132, 7, 15, 0, 0, 5132, 5133, 7, 9, 0, 0, 5133, 5134, 7, 12, 0, 0, 5134, 5135, 7, 7, 0, 0, 5135, 5136, 7, 19, 0, 0, 5136, 5137, 7, 9, 0, 0, 5137, 5138, 7, 4, 0, 0, 5138, 972, 1, 0, 0, 0, 5139, 5140, 7, 24, 0, 0, 5140, 5141, 7, 13, 0, 0, 5141, 5142, 7, 8, 0, 0, 5142, 5143, 7, 22, 0, 0, 5143, 5144, 7, 6, 0, 0, 5144, 5145, 7, 12, 0, 0, 5145, 5146, 5, 95, 0, 0, 5146, 5147, 7, 23, 0, 0, 5147, 5148, 7, 19, 0, 0, 5148, 5149, 7, 5, 0, 0, 5149, 5150, 7, 9, 0, 0, 5150, 5151, 7, 4, 0, 0, 5151, 974, 1, 0, 0, 0, 5152, 5153, 7, 24, 0, 0, 5153, 5154, 7, 13, 0, 0, 5154, 5155, 7, 8, 0, 0, 5155, 5156, 7, 22, 0, 0, 5156, 5157, 7, 6, 0, 0, 5157, 5158, 7, 12, 0, 0, 5158, 5159, 5, 95, 0, 0, 5159, 5160, 7, 27, 0, 0, 5160, 5161, 7, 2, 0, 0, 5161, 5162, 7, 11, 0, 0, 5162, 976, 1, 0, 0, 0, 5163, 5164, 7, 24, 0, 0, 5164, 5165, 7, 13, 0, 0, 5165, 5166, 7, 8, 0, 0, 5166, 5167, 7, 22, 0, 0, 5167, 5168, 7, 6, 0, 0, 5168, 5169, 7, 12, 0, 0, 5169, 5170, 5, 95, 0, 0, 5170, 5171, 7, 24, 0, 0, 5171, 5172, 7, 2, 0, 0, 5172, 5173, 7, 11, 0, 0, 5173, 5174, 7, 2, 0, 0, 5174, 5175, 7, 17, 0, 0, 5175, 5176, 7, 9, 0, 0, 5176, 5177, 7, 8, 0, 0, 5177, 5178, 7, 9, 0, 0, 5178, 5179, 7, 11, 0, 0, 5179, 978, 1, 0, 0, 0, 5180, 5181, 7, 24, 0, 0, 5181, 5182, 7, 13, 0, 0, 5182, 5183, 7, 8, 0, 0, 5183, 5184, 7, 22, 0, 0, 5184, 5185, 7, 6, 0, 0, 5185, 5186, 7, 12, 0, 0, 5186, 5187, 5, 95, 0, 0, 5187, 5188, 7, 11, 0, 0, 5188, 5189, 7, 9, 0, 0, 5189, 5190, 7, 26, 0, 0, 5190, 5191, 7, 21, 0, 0, 5191, 5192, 7, 19, 0, 0, 5192, 5193, 7, 11, 0, 0, 5193, 5194, 7, 9, 0, 0, 5194, 5195, 7, 17, 0, 0, 5195, 5196, 7, 9, 0, 0, 5196, 5197, 7, 12, 0, 0, 5197, 5198, 7, 8, 0, 0, 5198, 5199, 7, 4, 0, 0, 5199, 980, 1, 0, 0, 0, 5200, 5201, 7, 26, 0, 0, 5201, 5202, 7, 21, 0, 0, 5202, 5203, 7, 2, 0, 0, 5203, 5204, 7, 11, 0, 0, 5204, 5205, 7, 8, 0, 0, 5205, 5206, 7, 9, 0, 0, 5206, 5207, 7, 11, 0, 0, 5207, 982, 1, 0, 0, 0, 5208, 5209, 7, 11, 0, 0, 5209, 5210, 7, 9, 0, 0, 5210, 5211, 7, 17, 0, 0, 5211, 5212, 7, 6, 0, 0, 5212, 5213, 7, 20, 0, 0, 5213, 5214, 7, 9, 0, 0, 5214, 984, 1, 0, 0, 0, 5215, 5216, 7, 11, 0, 0, 5216, 5217, 7, 9, 0, 0, 5217, 5218, 7, 4, 0, 0, 5218, 5219, 7, 8, 0, 0, 5219, 5220, 7, 11, 0, 0, 5220, 5221, 7, 19, 0, 0, 5221, 5222, 7, 7, 0, 0, 5222, 5223, 7, 8, 0, 0, 5223, 986, 1, 0, 0, 0, 5224, 5225, 7, 4, 0, 0, 5225, 5226, 7, 9, 0, 0, 5226, 5227, 7, 7, 0, 0, 5227, 5228, 7, 6, 0, 0, 5228, 5229, 7, 12, 0, 0, 5229, 5230, 7, 15, 0, 0, 5230, 5231, 7, 4, 0, 0, 5231, 988, 1, 0, 0, 0, 5232, 5233, 7, 4, 0, 0, 5233, 5234, 7, 9, 0, 0, 5234, 5235, 7, 4, 0, 0, 5235, 5236, 7, 4, 0, 0, 5236, 5237, 7, 19, 0, 0, 5237, 5238, 7, 6, 0, 0, 5238, 5239, 7, 12, 0, 0, 5239, 990, 1, 0, 0, 0, 5240, 5241, 7, 4, 0, 0, 5241, 5242, 7, 9, 0, 0, 5242, 5243, 7, 8, 0, 0, 5243, 5244, 7, 4, 0, 0, 5244, 992, 1, 0, 0, 0, 5245, 5246, 7, 4, 0, 0, 5246, 5247, 7, 19, 0, 0, 5247, 5248, 7, 14, 0, 0, 5248, 5249, 7, 9, 0, 0, 5249, 994, 1, 0, 0, 0, 5250, 5251, 7, 4, 0, 0, 5251, 5252, 7, 5, 0, 0, 5252, 5253, 7, 19, 0, 0, 5253, 5254, 7, 15, 0, 0, 5254, 5255, 7, 9, 0, 0, 5255, 996, 1, 0, 0, 0, 5256, 5257, 7, 4, 0, 0, 5257, 5258, 7, 8, 0, 0, 5258, 5259, 7, 9, 0, 0, 5259, 5260, 7, 24, 0, 0, 5260, 998, 1, 0, 0, 0, 5261, 5262, 7, 8, 0, 0, 5262, 5263, 7, 9, 0, 0, 5263, 5264, 7, 17, 0, 0, 5264, 5265, 7, 24, 0, 0, 5265, 5266, 7, 6, 0, 0, 5266, 5267, 7, 11, 0, 0, 5267, 5268, 7, 2, 0, 0, 5268, 5269, 7, 11, 0, 0, 5269, 5270, 7, 13, 0, 0, 5270, 1000, 1, 0, 0, 0, 5271, 5272, 7, 8, 0, 0, 5272, 5273, 7, 19, 0, 0, 5273, 5274, 7, 17, 0, 0, 5274, 5275, 7, 9, 0, 0, 5275, 5276, 7, 7, 0, 0, 5276, 5277, 7, 6, 0, 0, 5277, 5278, 7, 5, 0, 0, 5278, 1002, 1, 0, 0, 0, 5279, 5280, 7, 8, 0, 0, 5280, 5281, 7, 21, 0, 0, 5281, 5282, 7, 17, 0, 0, 5282, 5283, 7, 3, 0, 0, 5283, 5284, 7, 5, 0, 0, 5284, 5285, 7, 9, 0, 0, 5285, 1004, 1, 0, 0, 0, 5286, 5287, 7, 21, 0, 0, 5287, 5288, 7, 12, 0, 0, 5288, 5289, 7, 5, 0, 0, 5289, 5290, 7, 6, 0, 0, 5290, 5291, 7, 2, 0, 0, 5291, 5292, 7, 15, 0, 0, 5292, 1006, 1, 0, 0, 0, 5293, 5294, 7, 20, 0, 0, 5294, 5295, 7, 19, 0, 0, 5295, 5296, 7, 9, 0, 0, 5296, 5297, 7, 10, 0, 0, 5297, 1008, 1, 0, 0, 0, 5298, 5299, 7, 10, 0, 0, 5299, 5300, 7, 9, 0, 0, 5300, 5301, 7, 9, 0, 0, 5301, 5302, 7, 25, 0, 0, 5302, 1010, 1, 0, 0, 0, 5303, 5304, 7, 13, 0, 0, 5304, 5305, 7, 9, 0, 0, 5305, 5306, 7, 2, 0, 0, 5306, 5307, 7, 11, 0, 0, 5307, 5308, 7, 4, 0, 0, 5308, 1012, 1, 0, 0, 0, 5309, 5310, 7, 14, 0, 0, 5310, 5311, 7, 6, 0, 0, 5311, 5312, 7, 12, 0, 0, 5312, 5313, 7, 9, 0, 0, 5313, 1014, 1, 0, 0, 0, 5314, 5315, 5, 61, 0, 0, 5315, 1016, 1, 0, 0, 0, 5316, 5317, 5, 62, 0, 0, 5317, 1018, 1, 0, 0, 0, 5318, 5319, 5, 60, 0, 0, 5319, 1020, 1, 0, 0, 0, 5320, 5321, 5, 33, 0, 0, 5321, 1022, 1, 0, 0, 0, 5322, 5323, 5, 126, 0, 0, 5323, 1024, 1, 0, 0, 0, 5324, 5325, 5, 124, 0, 0, 5325, 1026, 1, 0, 0, 0, 5326, 5327, 5, 38, 0, 0, 5327, 1028, 1, 0, 0, 0, 5328, 5329, 5, 94, 0, 0, 5329, 1030, 1, 0, 0, 0, 5330, 5331, 5, 46, 0, 0, 5331, 1032, 1, 0, 0, 0, 5332, 5333, 5, 91, 0, 0, 5333, 1034, 1, 0, 0, 0, 5334, 5335, 5, 93, 0, 0, 5335, 1036, 1, 0, 0, 0, 5336, 5337, 5, 40, 0, 0, 5337, 1038, 1, 0, 0, 0, 5338, 5339, 5, 41, 0, 0, 5339, 1040, 1, 0, 0, 0, 5340, 5341, 5, 123, 0, 0, 5341, 1042, 1, 0, 0, 0, 5342, 5343, 5, 125, 0, 0, 5343, 1044, 1, 0, 0, 0, 5344, 5345, 5, 44, 0, 0, 5345, 1046, 1, 0, 0, 0, 5346, 5347, 5, 59, 0, 0, 5347, 1048, 1, 0, 0, 0, 5348, 5349, 5, 64, 0, 0, 5349, 1050, 1, 0, 0, 0, 5350, 5351, 5, 39, 0, 0, 5351, 1052, 1, 0, 0, 0, 5352, 5353, 5, 34, 0, 0, 5353, 1054, 1, 0, 0, 0, 5354, 5355, 5, 96, 0, 0, 5355, 1056, 1, 0, 0, 0, 5356, 5357, 5, 58, 0, 0, 5357, 1058, 1, 0, 0, 0, 5358, 5359, 5, 42, 0, 0, 5359, 1060, 1, 0, 0, 0, 5360, 5361, 5, 95, 0, 0, 5361, 1062, 1, 0, 0, 0, 5362, 5363, 5, 45, 0, 0, 5363, 1064, 1, 0, 0, 0, 5364, 5365, 5, 43, 0, 0, 5365, 1066, 1, 0, 0, 0, 5366, 5367, 5, 37, 0, 0, 5367, 1068, 1, 0, 0, 0, 5368, 5369, 5, 124, 0, 0, 5369, 5370, 5, 124, 0, 0, 5370, 1070, 1, 0, 0, 0, 5371, 5372, 5, 45, 0, 0, 5372, 5373, 5, 45, 0, 0, 5373, 1072, 1, 0, 0, 0, 5374, 5375, 5, 47, 0, 0, 5375, 1074, 1, 0, 0, 0, 5376, 5377, 5, 63, 0, 0, 5377, 1076, 1, 0, 0, 0, 5378, 5379, 5, 61, 0, 0, 5379, 5380, 5, 62, 0, 0, 5380, 1078, 1, 0, 0, 0, 5381, 5385, 3, 1099, 549, 0, 5382, 5385, 3, 1101, 550, 0, 5383, 5385, 3, 1105, 552, 0, 5384, 5381, 1, 0, 0, 0, 5384, 5382, 1, 0, 0, 0, 5384, 5383, 1, 0, 0, 0, 5385, 1080, 1, 0, 0, 0, 5386, 5388, 3, 1095, 547, 0, 5387, 5386, 1, 0, 0, 0, 5388, 5389, 1, 0, 0, 0, 5389, 5387, 1, 0, 0, 0, 5389, 5390, 1, 0, 0, 0, 5390, 1082, 1, 0, 0, 0, 5391, 5393, 3, 1095, 547, 0, 5392, 5391, 1, 0, 0, 0, 5393, 5394, 1, 0, 0, 0, 5394, 5392, 1, 0, 0, 0, 5394, 5395, 1, 0, 0, 0, 5395, 5397, 1, 0, 0, 0, 5396, 5392, 1, 0, 0, 0, 5396, 5397, 1, 0, 0, 0, 5397, 5398, 1, 0, 0, 0, 5398, 5400, 5, 46, 0, 0, 5399, 5401, 3, 1095, 547, 0, 5400, 5399, 1, 0, 0, 0, 5401, 5402, 1, 0, 0, 0, 5402, 5400, 1, 0, 0, 0, 5402, 5403, 1, 0, 0, 0, 5403, 5435, 1, 0, 0, 0, 5404, 5406, 3, 1095, 547, 0, 5405, 5404, 1, 0, 0, 0, 5406, 5407, 1, 0, 0, 0, 5407, 5405, 1, 0, 0, 0, 5407, 5408, 1, 0, 0, 0, 5408, 5409, 1, 0, 0, 0, 5409, 5410, 5, 46, 0, 0, 5410, 5411, 3, 1091, 545, 0, 5411, 5435, 1, 0, 0, 0, 5412, 5414, 3, 1095, 547, 0, 5413, 5412, 1, 0, 0, 0, 5414, 5415, 1, 0, 0, 0, 5415, 5413, 1, 0, 0, 0, 5415, 5416, 1, 0, 0, 0, 5416, 5418, 1, 0, 0, 0, 5417, 5413, 1, 0, 0, 0, 5417, 5418, 1, 0, 0, 0, 5418, 5419, 1, 0, 0, 0, 5419, 5421, 5, 46, 0, 0, 5420, 5422, 3, 1095, 547, 0, 5421, 5420, 1, 0, 0, 0, 5422, 5423, 1, 0, 0, 0, 5423, 5421, 1, 0, 0, 0, 5423, 5424, 1, 0, 0, 0, 5424, 5425, 1, 0, 0, 0, 5425, 5426, 3, 1091, 545, 0, 5426, 5435, 1, 0, 0, 0, 5427, 5429, 3, 1095, 547, 0, 5428, 5427, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5428, 1, 0, 0, 0, 5430, 5431, 1, 0, 0, 0, 5431, 5432, 1, 0, 0, 0, 5432, 5433, 3, 1091, 545, 0, 5433, 5435, 1, 0, 0, 0, 5434, 5396, 1, 0, 0, 0, 5434, 5405, 1, 0, 0, 0, 5434, 5417, 1, 0, 0, 0, 5434, 5428, 1, 0, 0, 0, 5435, 1084, 1, 0, 0, 0, 5436, 5437, 3, 1103, 551, 0, 5437, 1086, 1, 0, 0, 0, 5438, 5439, 3, 1093, 546, 0, 5439, 1088, 1, 0, 0, 0, 5440, 5448, 5, 96, 0, 0, 5441, 5442, 5, 92, 0, 0, 5442, 5447, 9, 0, 0, 0, 5443, 5444, 5, 96, 0, 0, 5444, 5447, 5, 96, 0, 0, 5445, 5447, 8, 28, 0, 0, 5446, 5441, 1, 0, 0, 0, 5446, 5443, 1, 0, 0, 0, 5446, 5445, 1, 0, 0, 0, 5447, 5450, 1, 0, 0, 0, 5448, 5446, 1, 0, 0, 0, 5448, 5449, 1, 0, 0, 0, 5449, 5451, 1, 0, 0, 0, 5450, 5448, 1, 0, 0, 0, 5451, 5452, 5, 96, 0, 0, 5452, 1090, 1, 0, 0, 0, 5453, 5455, 7, 9, 0, 0, 5454, 5456, 7, 29, 0, 0, 5455, 5454, 1, 0, 0, 0, 5455, 5456, 1, 0, 0, 0, 5456, 5458, 1, 0, 0, 0, 5457, 5459, 3, 1095, 547, 0, 5458, 5457, 1, 0, 0, 0, 5459, 5460, 1, 0, 0, 0, 5460, 5458, 1, 0, 0, 0, 5460, 5461, 1, 0, 0, 0, 5461, 1092, 1, 0, 0, 0, 5462, 5464, 7, 30, 0, 0, 5463, 5462, 1, 0, 0, 0, 5464, 5467, 1, 0, 0, 0, 5465, 5466, 1, 0, 0, 0, 5465, 5463, 1, 0, 0, 0, 5466, 5469, 1, 0, 0, 0, 5467, 5465, 1, 0, 0, 0, 5468, 5470, 7, 31, 0, 0, 5469, 5468, 1, 0, 0, 0, 5470, 5471, 1, 0, 0, 0, 5471, 5472, 1, 0, 0, 0, 5471, 5469, 1, 0, 0, 0, 5472, 5476, 1, 0, 0, 0, 5473, 5475, 7, 30, 0, 0, 5474, 5473, 1, 0, 0, 0, 5475, 5478, 1, 0, 0, 0, 5476, 5474, 1, 0, 0, 0, 5476, 5477, 1, 0, 0, 0, 5477, 1094, 1, 0, 0, 0, 5478, 5476, 1, 0, 0, 0, 5479, 5480, 7, 32, 0, 0, 5480, 1096, 1, 0, 0, 0, 5481, 5482, 7, 33, 0, 0, 5482, 1098, 1, 0, 0, 0, 5483, 5491, 5, 34, 0, 0, 5484, 5485, 5, 92, 0, 0, 5485, 5490, 9, 0, 0, 0, 5486, 5487, 5, 34, 0, 0, 5487, 5490, 5, 34, 0, 0, 5488, 5490, 8, 34, 0, 0, 5489, 5484, 1, 0, 0, 0, 5489, 5486, 1, 0, 0, 0, 5489, 5488, 1, 0, 0, 0, 5490, 5493, 1, 0, 0, 0, 5491, 5489, 1, 0, 0, 0, 5491, 5492, 1, 0, 0, 0, 5492, 5494, 1, 0, 0, 0, 5493, 5491, 1, 0, 0, 0, 5494, 5495, 5, 34, 0, 0, 5495, 1100, 1, 0, 0, 0, 5496, 5504, 5, 39, 0, 0, 5497, 5498, 5, 92, 0, 0, 5498, 5503, 9, 0, 0, 0, 5499, 5500, 5, 39, 0, 0, 5500, 5503, 5, 39, 0, 0, 5501, 5503, 8, 35, 0, 0, 5502, 5497, 1, 0, 0, 0, 5502, 5499, 1, 0, 0, 0, 5502, 5501, 1, 0, 0, 0, 5503, 5506, 1, 0, 0, 0, 5504, 5502, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 5507, 1, 0, 0, 0, 5506, 5504, 1, 0, 0, 0, 5507, 5508, 5, 39, 0, 0, 5508, 1102, 1, 0, 0, 0, 5509, 5510, 7, 3, 0, 0, 5510, 5512, 5, 39, 0, 0, 5511, 5513, 7, 36, 0, 0, 5512, 5511, 1, 0, 0, 0, 5513, 5514, 1, 0, 0, 0, 5514, 5512, 1, 0, 0, 0, 5514, 5515, 1, 0, 0, 0, 5515, 5516, 1, 0, 0, 0, 5516, 5517, 5, 39, 0, 0, 5517, 1104, 1, 0, 0, 0, 5518, 5526, 5, 96, 0, 0, 5519, 5520, 5, 92, 0, 0, 5520, 5525, 9, 0, 0, 0, 5521, 5522, 5, 96, 0, 0, 5522, 5525, 5, 96, 0, 0, 5523, 5525, 8, 28, 0, 0, 5524, 5519, 1, 0, 0, 0, 5524, 5521, 1, 0, 0, 0, 5524, 5523, 1, 0, 0, 0, 5525, 5528, 1, 0, 0, 0, 5526, 5524, 1, 0, 0, 0, 5526, 5527, 1, 0, 0, 0, 5527, 5529, 1, 0, 0, 0, 5528, 5526, 1, 0, 0, 0, 5529, 5530, 5, 96, 0, 0, 5530, 1106, 1, 0, 0, 0, 34, 0, 1117, 1128, 1133, 1137, 1141, 1147, 1151, 1153, 5384, 5389, 5394, 5396, 5402, 5407, 5415, 5417, 5423, 5430, 5434, 5446, 5448, 5455, 5460, 5465, 5471, 5476, 5489, 5491, 5502, 5504, 5514, 5524, 5526, 1, 0, 1, 0] \ No newline at end of file diff --git a/src/lib/flink/FlinkSqlLexer.tokens b/src/lib/flink/FlinkSqlLexer.tokens index 48749ead..d76db2a5 100644 --- a/src/lib/flink/FlinkSqlLexer.tokens +++ b/src/lib/flink/FlinkSqlLexer.tokens @@ -143,403 +143,405 @@ KW_FILTER=142 KW_FIRST_VALUE=143 KW_FLOAT=144 KW_FLOOR=145 -KW_FOR=146 -KW_FOREIGN=147 -KW_FRAME_ROW=148 -KW_FREE=149 -KW_FRIDAY=150 -KW_FROM=151 -KW_FULL=152 -KW_FUNCTION=153 -KW_FUNCTIONS=154 -KW_FUSION=155 -KW_GET=156 -KW_GLOBAL=157 -KW_GRANT=158 -KW_GROUP=159 -KW_GROUPING=160 -KW_GROUPS=161 -KW_GROUP_CONCAT=162 -KW_HAVING=163 -KW_HOLD=164 -KW_HOUR=165 -KW_IDENTITY=166 -KW_IF=167 -KW_ILIKE=168 -KW_IMPORT=169 -KW_IN=170 -KW_INCLUDE=171 -KW_INDICATOR=172 -KW_INITIAL=173 -KW_INNER=174 -KW_INOUT=175 -KW_INSENSITIVE=176 -KW_INSERT=177 -KW_INT=178 -KW_INTEGER=179 -KW_INTERSECT=180 -KW_INTERSECTION=181 -KW_INTERVAL=182 -KW_INTO=183 -KW_IS=184 -KW_JOIN=185 -KW_JSON=186 -KW_JSON_ARRAY=187 -KW_JSON_ARRAYAGG=188 -KW_JSON_EXECUTION_PLAN=189 -KW_JSON_EXISTS=190 -KW_JSON_OBJECT=191 -KW_JSON_OBJECTAGG=192 -KW_JSON_QUERY=193 -KW_JSON_VALUE=194 -KW_LAG=195 -KW_LANGUAGE=196 -KW_LARGE=197 -KW_LAST_VALUE=198 -KW_LATERAL=199 -KW_LEAD=200 -KW_LEADING=201 -KW_LEFT=202 -KW_LIKE=203 -KW_LIKE_REGEX=204 -KW_LIMIT=205 -KW_LN=206 -KW_LOCAL=207 -KW_LOCALTIME=208 -KW_LOCALTIMESTAMP=209 -KW_LOWER=210 -KW_MATCH=211 -KW_MATCHES=212 -KW_MATCH_NUMBER=213 -KW_MATCH_RECOGNIZE=214 -KW_MAX=215 -KW_MEASURES=216 -KW_MEMBER=217 -KW_MERGE=218 -KW_METADATA=219 -KW_METHOD=220 -KW_MIN=221 -KW_MINUS=222 -KW_MINUTE=223 -KW_MOD=224 -KW_MODIFIES=225 -KW_MODIFY=226 -KW_MODULE=227 -KW_MODULES=228 -KW_MONDAY=229 -KW_MONTH=230 -KW_MORE=231 -KW_MULTISET=232 -KW_NATIONAL=233 -KW_NATURAL=234 -KW_NCHAR=235 -KW_NCLOB=236 -KW_NEW=237 -KW_NEXT=238 -KW_NO=239 -KW_NONE=240 -KW_NORMALIZE=241 -KW_NOT=242 -KW_NTH_VALUE=243 -KW_NTILE=244 -KW_NULL=245 -KW_NULLIF=246 -KW_NUMERIC=247 -KW_OCCURRENCES_REGEX=248 -KW_OCTET_LENGTH=249 -KW_OF=250 -KW_OFFSET=251 -KW_OLD=252 -KW_OMIT=253 -KW_ON=254 -KW_ONE=255 -KW_ONLY=256 -KW_OPEN=257 -KW_OR=258 -KW_ORDER=259 -KW_ORDINAL=260 -KW_OUT=261 -KW_OUTER=262 -KW_OVER=263 -KW_OVERLAPS=264 -KW_OVERLAY=265 -KW_OVERWRITE=266 -KW_OVERWRITING=267 -KW_PARAMETER=268 -KW_PARTITION=269 -KW_PARTITIONED=270 -KW_PARTITIONS=271 -KW_PATTERN=272 -KW_PER=273 -KW_PERCENT=274 -KW_PERCENTILE_CONT=275 -KW_PERCENTILE_DISC=276 -KW_PERCENT_RANK=277 -KW_PERIOD=278 -KW_PERMUTE=279 -KW_PIVOT=280 -KW_PORTION=281 -KW_POSITION=282 -KW_POSITION_REGEX=283 -KW_POWER=284 -KW_PRECEDES=285 -KW_PRECISION=286 -KW_PREPARE=287 -KW_PREV=288 -KW_PRIMARY=289 -KW_PROCEDURE=290 -KW_QUALIFY=291 -KW_QUARTERS=292 -KW_RANGE=293 -KW_RANK=294 -KW_RAW=295 -KW_READS=296 -KW_REAL=297 -KW_RECURSIVE=298 -KW_REF=299 -KW_REFERENCES=300 -KW_REFERENCING=301 -KW_REGR_AVGX=302 -KW_REGR_AVGY=303 -KW_REGR_COUNT=304 -KW_REGR_INTERCEPT=305 -KW_REGR_R2=306 -KW_REGR_SLOPE=307 -KW_REGR_SXX=308 -KW_REGR_SXY=309 -KW_REGR_SYY=310 -KW_RELEASE=311 -KW_RENAME=312 -KW_RESET=313 -KW_RESULT=314 -KW_RETURN=315 -KW_RETURNS=316 -KW_REVOKE=317 -KW_RIGHT=318 -KW_RLIKE=319 -KW_ROLLBACK=320 -KW_ROLLUP=321 -KW_ROW=322 -KW_ROWS=323 -KW_ROW_NUMBER=324 -KW_RUNNING=325 -KW_SAFE_CAST=326 -KW_SAFE_OFFSET=327 -KW_SAFE_ORDINAL=328 -KW_SATURDAY=329 -KW_SAVEPOINT=330 -KW_SCALA=331 -KW_SCOPE=332 -KW_SCROLL=333 -KW_SEARCH=334 -KW_SECOND=335 -KW_SEEK=336 -KW_SELECT=337 -KW_SENSITIVE=338 -KW_SEPARATOR=339 -KW_SESSION_USER=340 -KW_SET=341 -KW_SHOW=342 -KW_SIMILAR=343 -KW_SKIP=344 -KW_SMALLINT=345 -KW_SOME=346 -KW_SPECIFIC=347 -KW_SPECIFICTYPE=348 -KW_SQL=349 -KW_SQLEXCEPTION=350 -KW_SQLSTATE=351 -KW_SQLWARNING=352 -KW_SQRT=353 -KW_START=354 -KW_STATEMENT=355 -KW_STATIC=356 -KW_STATISTICS=357 -KW_STDDEV_POP=358 -KW_STDDEV_SAMP=359 -KW_STREAM=360 -KW_STRING=361 -KW_STRING_AGG=362 -KW_SUBMULTISET=363 -KW_SUBSET=364 -KW_SUBSTRING=365 -KW_SUBSTRING_REGEX=366 -KW_SUCCEEDS=367 -KW_SUM=368 -KW_SUNDAY=369 -KW_SYMMETRIC=370 -KW_SYSTEM=371 -KW_SYSTEM_TIME=372 -KW_SYSTEM_USER=373 -KW_TABLE=374 -KW_TABLES=375 -KW_TABLESAMPLE=376 -KW_THEN=377 -KW_THURSDAY=378 -KW_TIME=379 -KW_TIMESTAMP=380 -KW_TIMESTAMP_DIFF=381 -KW_TIMESTAMP_LTZ=382 -KW_TIMESTAMP_TRUNC=383 -KW_TIMEZONE_HOUR=384 -KW_TIMEZONE_MINUTE=385 -KW_TIME_DIFF=386 -KW_TIME_TRUNC=387 -KW_TINYINT=388 -KW_TO=389 -KW_TRAILING=390 -KW_TRANSLATE=391 -KW_TRANSLATE_REGEX=392 -KW_TRANSLATION=393 -KW_TREAT=394 -KW_TRIGGER=395 -KW_TRIM=396 -KW_TRIM_ARRAY=397 -KW_TRUE=398 -KW_TRUNCATE=399 -KW_TRY_CAST=400 -KW_TUESDAY=401 -KW_UESCAPE=402 -KW_UNION=403 -KW_UNIQUE=404 -KW_UNKNOWN=405 -KW_UNNEST=406 -KW_UNPIVOT=407 -KW_UPDATE=408 -KW_UPPER=409 -KW_UPSERT=410 -KW_USE=411 -KW_USER=412 -KW_USING=413 -KW_VALUE=414 -KW_VALUES=415 -KW_VALUE_OF=416 -KW_VARBINARY=417 -KW_VARCHAR=418 -KW_VARYING=419 -KW_VAR_POP=420 -KW_VAR_SAMP=421 -KW_VERSIONING=422 -KW_VIEWS=423 -KW_VIRTUAL=424 -KW_WATERMARK=425 -KW_WATERMARKS=426 -KW_WEDNESDAY=427 -KW_WEEKS=428 -KW_WHEN=429 -KW_WHENEVER=430 -KW_WHERE=431 -KW_WIDTH_BUCKET=432 -KW_WINDOW=433 -KW_WITH=434 -KW_WITHIN=435 -KW_WITHOUT=436 -KW_YEAR=437 -KW_ADD=438 -KW_AFTER=439 -KW_ASC=440 -KW_CASCADE=441 -KW_CATALOG=442 -KW_CENTURY=443 -KW_CONFIG=444 -KW_CONSTRAINTS=445 -KW_CUMULATE=446 -KW_DATA=447 -KW_DATABASE=448 -KW_DAYS=449 -KW_DECADE=450 -KW_DESC=451 -KW_DESCRIPTOR=452 -KW_DIV=453 -KW_ENGINE=454 -KW_EPOCH=455 -KW_EXCLUDING=456 -KW_FILE=457 -KW_FIRST=458 -KW_GENERATED=459 -KW_HOP=460 -KW_HOURS=461 -KW_IGNORE=462 -KW_INCLUDING=463 -KW_JAR=464 -KW_JARS=465 -KW_JAVA=466 -KW_KEY=467 -KW_LAST=468 -KW_LOAD=469 -KW_MAP=470 -KW_MICROSECOND=471 -KW_MILLENNIUM=472 -KW_MILLISECOND=473 -KW_MINUTES=474 -KW_MONTHS=475 -KW_NANOSECOND=476 -KW_NULLS=477 -KW_OPTIONS=478 -KW_PAST=479 -KW_PLAN=480 -KW_PRECEDING=481 -KW_PYTHON=482 -KW_PYTHON_ARCHIVES=483 -KW_PYTHON_DEPENDENCIES=484 -KW_PYTHON_FILES=485 -KW_PYTHON_JAR=486 -KW_PYTHON_PARAMETER=487 -KW_PYTHON_REQUIREMENTS=488 -KW_QUARTER=489 -KW_REMOVE=490 -KW_RESTRICT=491 -KW_SECONDS=492 -KW_SESSION=493 -KW_SETS=494 -KW_SIZE=495 -KW_SLIDE=496 -KW_STEP=497 -KW_TEMPORARY=498 -KW_TIMECOL=499 -KW_TUMBLE=500 -KW_UNLOAD=501 -KW_VIEW=502 -KW_WEEK=503 -KW_YEARS=504 -KW_ZONE=505 -EQUAL_SYMBOL=506 -GREATER_SYMBOL=507 -LESS_SYMBOL=508 -EXCLAMATION_SYMBOL=509 -BIT_NOT_OP=510 -BIT_OR_OP=511 -BIT_AND_OP=512 -BIT_XOR_OP=513 -DOT=514 -LS_BRACKET=515 -RS_BRACKET=516 -LR_BRACKET=517 -RR_BRACKET=518 -LB_BRACKET=519 -RB_BRACKET=520 -COMMA=521 -SEMICOLON=522 -AT_SIGN=523 -SINGLE_QUOTE_SYMB=524 -DOUBLE_QUOTE_SYMB=525 -REVERSE_QUOTE_SYMB=526 -COLON_SYMB=527 -ASTERISK_SIGN=528 -UNDERLINE_SIGN=529 -HYPHEN_SIGN=530 -ADD_SIGN=531 -PERCENT_SIGN=532 -DOUBLE_VERTICAL_SIGN=533 -DOUBLE_HYPHEN_SIGN=534 -SLASH_SIGN=535 -QUESTION_MARK_SIGN=536 -DOUBLE_RIGHT_ARROW=537 -STRING_LITERAL=538 -DIG_LITERAL=539 -REAL_LITERAL=540 -BIT_STRING=541 -ID_LITERAL=542 +KW_FOLLOWING=146 +KW_FOR=147 +KW_FOREIGN=148 +KW_FRAME_ROW=149 +KW_FREE=150 +KW_FRIDAY=151 +KW_FROM=152 +KW_FULL=153 +KW_FUNCTION=154 +KW_FUNCTIONS=155 +KW_FUSION=156 +KW_GET=157 +KW_GLOBAL=158 +KW_GRANT=159 +KW_GROUP=160 +KW_GROUPING=161 +KW_GROUPS=162 +KW_GROUP_CONCAT=163 +KW_HAVING=164 +KW_HOLD=165 +KW_HOUR=166 +KW_IDENTITY=167 +KW_IF=168 +KW_ILIKE=169 +KW_IMPORT=170 +KW_IN=171 +KW_INCLUDE=172 +KW_INDICATOR=173 +KW_INITIAL=174 +KW_INNER=175 +KW_INOUT=176 +KW_INSENSITIVE=177 +KW_INSERT=178 +KW_INT=179 +KW_INTEGER=180 +KW_INTERSECT=181 +KW_INTERSECTION=182 +KW_INTERVAL=183 +KW_INTO=184 +KW_IS=185 +KW_JOIN=186 +KW_JSON=187 +KW_JSON_ARRAY=188 +KW_JSON_ARRAYAGG=189 +KW_JSON_EXECUTION_PLAN=190 +KW_JSON_EXISTS=191 +KW_JSON_OBJECT=192 +KW_JSON_OBJECTAGG=193 +KW_JSON_QUERY=194 +KW_JSON_VALUE=195 +KW_LAG=196 +KW_LANGUAGE=197 +KW_LARGE=198 +KW_LAST_VALUE=199 +KW_LATERAL=200 +KW_LEAD=201 +KW_LEADING=202 +KW_LEFT=203 +KW_LIKE=204 +KW_LIKE_REGEX=205 +KW_LIMIT=206 +KW_LN=207 +KW_LOCAL=208 +KW_LOCALTIME=209 +KW_LOCALTIMESTAMP=210 +KW_LOWER=211 +KW_MATCH=212 +KW_MATCHES=213 +KW_MATCH_NUMBER=214 +KW_MATCH_RECOGNIZE=215 +KW_MAX=216 +KW_MEASURES=217 +KW_MEMBER=218 +KW_MERGE=219 +KW_METADATA=220 +KW_METHOD=221 +KW_MIN=222 +KW_MINUS=223 +KW_MINUTE=224 +KW_MOD=225 +KW_MODIFIES=226 +KW_MODIFY=227 +KW_MODULE=228 +KW_MODULES=229 +KW_MONDAY=230 +KW_MONTH=231 +KW_MORE=232 +KW_MULTISET=233 +KW_NATIONAL=234 +KW_NATURAL=235 +KW_NCHAR=236 +KW_NCLOB=237 +KW_NEW=238 +KW_NEXT=239 +KW_NO=240 +KW_NONE=241 +KW_NORMALIZE=242 +KW_NOT=243 +KW_NTH_VALUE=244 +KW_NTILE=245 +KW_NULL=246 +KW_NULLIF=247 +KW_NUMERIC=248 +KW_OCCURRENCES_REGEX=249 +KW_OCTET_LENGTH=250 +KW_OF=251 +KW_OFFSET=252 +KW_OLD=253 +KW_OMIT=254 +KW_ON=255 +KW_ONE=256 +KW_ONLY=257 +KW_OPEN=258 +KW_OR=259 +KW_ORDER=260 +KW_ORDINAL=261 +KW_OUT=262 +KW_OUTER=263 +KW_OVER=264 +KW_OVERLAPS=265 +KW_OVERLAY=266 +KW_OVERWRITE=267 +KW_OVERWRITING=268 +KW_PARAMETER=269 +KW_PARTITION=270 +KW_PARTITIONED=271 +KW_PARTITIONS=272 +KW_PATTERN=273 +KW_PER=274 +KW_PERCENT=275 +KW_PERCENTILE_CONT=276 +KW_PERCENTILE_DISC=277 +KW_PERCENT_RANK=278 +KW_PERIOD=279 +KW_PERMUTE=280 +KW_PIVOT=281 +KW_PORTION=282 +KW_POSITION=283 +KW_POSITION_REGEX=284 +KW_POWER=285 +KW_PRECEDES=286 +KW_PRECISION=287 +KW_PREPARE=288 +KW_PREV=289 +KW_PRIMARY=290 +KW_PROCEDURE=291 +KW_QUALIFY=292 +KW_QUARTERS=293 +KW_RANGE=294 +KW_RANK=295 +KW_RAW=296 +KW_READS=297 +KW_REAL=298 +KW_RECURSIVE=299 +KW_REF=300 +KW_REFERENCES=301 +KW_REFERENCING=302 +KW_REGR_AVGX=303 +KW_REGR_AVGY=304 +KW_REGR_COUNT=305 +KW_REGR_INTERCEPT=306 +KW_REGR_R2=307 +KW_REGR_SLOPE=308 +KW_REGR_SXX=309 +KW_REGR_SXY=310 +KW_REGR_SYY=311 +KW_RELEASE=312 +KW_RENAME=313 +KW_RESET=314 +KW_RESULT=315 +KW_RETURN=316 +KW_RETURNS=317 +KW_REVOKE=318 +KW_RIGHT=319 +KW_RLIKE=320 +KW_ROLLBACK=321 +KW_ROLLUP=322 +KW_ROW=323 +KW_ROWS=324 +KW_ROW_NUMBER=325 +KW_RUNNING=326 +KW_SAFE_CAST=327 +KW_SAFE_OFFSET=328 +KW_SAFE_ORDINAL=329 +KW_SATURDAY=330 +KW_SAVEPOINT=331 +KW_SCALA=332 +KW_SCOPE=333 +KW_SCROLL=334 +KW_SEARCH=335 +KW_SECOND=336 +KW_SEEK=337 +KW_SELECT=338 +KW_SENSITIVE=339 +KW_SEPARATOR=340 +KW_SESSION_USER=341 +KW_SET=342 +KW_SHOW=343 +KW_SIMILAR=344 +KW_SKIP=345 +KW_SMALLINT=346 +KW_SOME=347 +KW_SPECIFIC=348 +KW_SPECIFICTYPE=349 +KW_SQL=350 +KW_SQLEXCEPTION=351 +KW_SQLSTATE=352 +KW_SQLWARNING=353 +KW_SQRT=354 +KW_START=355 +KW_STATEMENT=356 +KW_STATIC=357 +KW_STATISTICS=358 +KW_STDDEV_POP=359 +KW_STDDEV_SAMP=360 +KW_STREAM=361 +KW_STRING=362 +KW_STRING_AGG=363 +KW_SUBMULTISET=364 +KW_SUBSET=365 +KW_SUBSTRING=366 +KW_SUBSTRING_REGEX=367 +KW_SUCCEEDS=368 +KW_SUM=369 +KW_SUNDAY=370 +KW_SYMMETRIC=371 +KW_SYSTEM=372 +KW_SYSTEM_TIME=373 +KW_SYSTEM_USER=374 +KW_TABLE=375 +KW_TABLES=376 +KW_TABLESAMPLE=377 +KW_THEN=378 +KW_THURSDAY=379 +KW_TIME=380 +KW_TIMESTAMP=381 +KW_TIMESTAMP_DIFF=382 +KW_TIMESTAMP_LTZ=383 +KW_TIMESTAMP_TRUNC=384 +KW_TIMEZONE_HOUR=385 +KW_TIMEZONE_MINUTE=386 +KW_TIME_DIFF=387 +KW_TIME_TRUNC=388 +KW_TINYINT=389 +KW_TO=390 +KW_TRAILING=391 +KW_TRANSLATE=392 +KW_TRANSLATE_REGEX=393 +KW_TRANSLATION=394 +KW_TREAT=395 +KW_TRIGGER=396 +KW_TRIM=397 +KW_TRIM_ARRAY=398 +KW_TRUE=399 +KW_TRUNCATE=400 +KW_TRY_CAST=401 +KW_TUESDAY=402 +KW_UESCAPE=403 +KW_UNBOUNDED=404 +KW_UNION=405 +KW_UNIQUE=406 +KW_UNKNOWN=407 +KW_UNNEST=408 +KW_UNPIVOT=409 +KW_UPDATE=410 +KW_UPPER=411 +KW_UPSERT=412 +KW_USE=413 +KW_USER=414 +KW_USING=415 +KW_VALUE=416 +KW_VALUES=417 +KW_VALUE_OF=418 +KW_VARBINARY=419 +KW_VARCHAR=420 +KW_VARYING=421 +KW_VAR_POP=422 +KW_VAR_SAMP=423 +KW_VERSIONING=424 +KW_VIEWS=425 +KW_VIRTUAL=426 +KW_WATERMARK=427 +KW_WATERMARKS=428 +KW_WEDNESDAY=429 +KW_WEEKS=430 +KW_WHEN=431 +KW_WHENEVER=432 +KW_WHERE=433 +KW_WIDTH_BUCKET=434 +KW_WINDOW=435 +KW_WITH=436 +KW_WITHIN=437 +KW_WITHOUT=438 +KW_YEAR=439 +KW_ADD=440 +KW_AFTER=441 +KW_ASC=442 +KW_CASCADE=443 +KW_CATALOG=444 +KW_CENTURY=445 +KW_CONFIG=446 +KW_CONSTRAINTS=447 +KW_CUMULATE=448 +KW_DATA=449 +KW_DATABASE=450 +KW_DAYS=451 +KW_DECADE=452 +KW_DESC=453 +KW_DESCRIPTOR=454 +KW_DIV=455 +KW_ENGINE=456 +KW_EPOCH=457 +KW_EXCLUDING=458 +KW_FILE=459 +KW_FIRST=460 +KW_GENERATED=461 +KW_HOP=462 +KW_HOURS=463 +KW_IGNORE=464 +KW_INCLUDING=465 +KW_JAR=466 +KW_JARS=467 +KW_JAVA=468 +KW_KEY=469 +KW_LAST=470 +KW_LOAD=471 +KW_MAP=472 +KW_MICROSECOND=473 +KW_MILLENNIUM=474 +KW_MILLISECOND=475 +KW_MINUTES=476 +KW_MONTHS=477 +KW_NANOSECOND=478 +KW_NULLS=479 +KW_OPTIONS=480 +KW_PAST=481 +KW_PLAN=482 +KW_PRECEDING=483 +KW_PYTHON=484 +KW_PYTHON_ARCHIVES=485 +KW_PYTHON_DEPENDENCIES=486 +KW_PYTHON_FILES=487 +KW_PYTHON_JAR=488 +KW_PYTHON_PARAMETER=489 +KW_PYTHON_REQUIREMENTS=490 +KW_QUARTER=491 +KW_REMOVE=492 +KW_RESTRICT=493 +KW_SECONDS=494 +KW_SESSION=495 +KW_SETS=496 +KW_SIZE=497 +KW_SLIDE=498 +KW_STEP=499 +KW_TEMPORARY=500 +KW_TIMECOL=501 +KW_TUMBLE=502 +KW_UNLOAD=503 +KW_VIEW=504 +KW_WEEK=505 +KW_YEARS=506 +KW_ZONE=507 +EQUAL_SYMBOL=508 +GREATER_SYMBOL=509 +LESS_SYMBOL=510 +EXCLAMATION_SYMBOL=511 +BIT_NOT_OP=512 +BIT_OR_OP=513 +BIT_AND_OP=514 +BIT_XOR_OP=515 +DOT=516 +LS_BRACKET=517 +RS_BRACKET=518 +LR_BRACKET=519 +RR_BRACKET=520 +LB_BRACKET=521 +RB_BRACKET=522 +COMMA=523 +SEMICOLON=524 +AT_SIGN=525 +SINGLE_QUOTE_SYMB=526 +DOUBLE_QUOTE_SYMB=527 +REVERSE_QUOTE_SYMB=528 +COLON_SYMB=529 +ASTERISK_SIGN=530 +UNDERLINE_SIGN=531 +HYPHEN_SIGN=532 +ADD_SIGN=533 +PERCENT_SIGN=534 +DOUBLE_VERTICAL_SIGN=535 +DOUBLE_HYPHEN_SIGN=536 +SLASH_SIGN=537 +QUESTION_MARK_SIGN=538 +DOUBLE_RIGHT_ARROW=539 +STRING_LITERAL=540 +DIG_LITERAL=541 +REAL_LITERAL=542 +BIT_STRING=543 +ID_LITERAL=544 'ABS'=4 'ALL'=5 'ALLOCATE'=6 @@ -682,395 +684,397 @@ ID_LITERAL=542 'FIRST_VALUE'=143 'FLOAT'=144 'FLOOR'=145 -'FOR'=146 -'FOREIGN'=147 -'FRAME_ROW'=148 -'FREE'=149 -'FRIDAY'=150 -'FROM'=151 -'FULL'=152 -'FUNCTION'=153 -'FUNCTIONS'=154 -'FUSION'=155 -'GET'=156 -'GLOBAL'=157 -'GRANT'=158 -'GROUP'=159 -'GROUPING'=160 -'GROUPS'=161 -'GROUP_CONCAT'=162 -'HAVING'=163 -'HOLD'=164 -'HOUR'=165 -'IDENTITY'=166 -'IF'=167 -'ILIKE'=168 -'IMPORT'=169 -'IN'=170 -'INCLUDE'=171 -'INDICATOR'=172 -'INITIAL'=173 -'INNER'=174 -'INOUT'=175 -'INSENSITIVE'=176 -'INSERT'=177 -'INT'=178 -'INTEGER'=179 -'INTERSECT'=180 -'INTERSECTION'=181 -'INTERVAL'=182 -'INTO'=183 -'IS'=184 -'JOIN'=185 -'JSON'=186 -'JSON_ARRAY'=187 -'JSON_ARRAYAGG'=188 -'JSON_EXECUTION_PLAN'=189 -'JSON_EXISTS'=190 -'JSON_OBJECT'=191 -'JSON_OBJECTAGG'=192 -'JSON_QUERY'=193 -'JSON_VALUE'=194 -'LAG'=195 -'LANGUAGE'=196 -'LARGE'=197 -'LAST_VALUE'=198 -'LATERAL'=199 -'LEAD'=200 -'LEADING'=201 -'LEFT'=202 -'LIKE'=203 -'LIKE_REGEX'=204 -'LIMIT'=205 -'LN'=206 -'LOCAL'=207 -'LOCALTIME'=208 -'LOCALTIMESTAMP'=209 -'LOWER'=210 -'MATCH'=211 -'MATCHES'=212 -'MATCH_NUMBER'=213 -'MATCH_RECOGNIZE'=214 -'MAX'=215 -'MEASURES'=216 -'MEMBER'=217 -'MERGE'=218 -'METADATA'=219 -'METHOD'=220 -'MIN'=221 -'MINUS'=222 -'MINUTE'=223 -'MOD'=224 -'MODIFIES'=225 -'MODIFY'=226 -'MODULE'=227 -'MODULES'=228 -'MONDAY'=229 -'MONTH'=230 -'MORE'=231 -'MULTISET'=232 -'NATIONAL'=233 -'NATURAL'=234 -'NCHAR'=235 -'NCLOB'=236 -'NEW'=237 -'NEXT'=238 -'NO'=239 -'NONE'=240 -'NORMALIZE'=241 -'NOT'=242 -'NTH_VALUE'=243 -'NTILE'=244 -'NULL'=245 -'NULLIF'=246 -'NUMERIC'=247 -'OCCURRENCES_REGEX'=248 -'OCTET_LENGTH'=249 -'OF'=250 -'OFFSET'=251 -'OLD'=252 -'OMIT'=253 -'ON'=254 -'ONE'=255 -'ONLY'=256 -'OPEN'=257 -'OR'=258 -'ORDER'=259 -'ORDINAL'=260 -'OUT'=261 -'OUTER'=262 -'OVER'=263 -'OVERLAPS'=264 -'OVERLAY'=265 -'OVERWRITE'=266 -'OVERWRITING'=267 -'PARAMETER'=268 -'PARTITION'=269 -'PARTITIONED'=270 -'PARTITIONS'=271 -'PATTERN'=272 -'PER'=273 -'PERCENT'=274 -'PERCENTILE_CONT'=275 -'PERCENTILE_DISC'=276 -'PERCENT_RANK'=277 -'PERIOD'=278 -'PERMUTE'=279 -'PIVOT'=280 -'PORTION'=281 -'POSITION'=282 -'POSITION_REGEX'=283 -'POWER'=284 -'PRECEDES'=285 -'PRECISION'=286 -'PREPARE'=287 -'PREV'=288 -'PRIMARY'=289 -'PROCEDURE'=290 -'QUALIFY'=291 -'QUARTERS'=292 -'RANGE'=293 -'RANK'=294 -'RAW'=295 -'READS'=296 -'REAL'=297 -'RECURSIVE'=298 -'REF'=299 -'REFERENCES'=300 -'REFERENCING'=301 -'REGR_AVGX'=302 -'REGR_AVGY'=303 -'REGR_COUNT'=304 -'REGR_INTERCEPT'=305 -'REGR_R2'=306 -'REGR_SLOPE'=307 -'REGR_SXX'=308 -'REGR_SXY'=309 -'REGR_SYY'=310 -'RELEASE'=311 -'RENAME'=312 -'RESET'=313 -'RESULT'=314 -'RETURN'=315 -'RETURNS'=316 -'REVOKE'=317 -'RIGHT'=318 -'RLIKE'=319 -'ROLLBACK'=320 -'ROLLUP'=321 -'ROW'=322 -'ROWS'=323 -'ROW_NUMBER'=324 -'RUNNING'=325 -'SAFE_CAST'=326 -'SAFE_OFFSET'=327 -'SAFE_ORDINAL'=328 -'SATURDAY'=329 -'SAVEPOINT'=330 -'SCALA'=331 -'SCOPE'=332 -'SCROLL'=333 -'SEARCH'=334 -'SECOND'=335 -'SEEK'=336 -'SELECT'=337 -'SENSITIVE'=338 -'SEPARATOR'=339 -'SESSION_USER'=340 -'SET'=341 -'SHOW'=342 -'SIMILAR'=343 -'SKIP'=344 -'SMALLINT'=345 -'SOME'=346 -'SPECIFIC'=347 -'SPECIFICTYPE'=348 -'SQL'=349 -'SQLEXCEPTION'=350 -'SQLSTATE'=351 -'SQLWARNING'=352 -'SQRT'=353 -'START'=354 -'STATEMENT'=355 -'STATIC'=356 -'STATISTICS'=357 -'STDDEV_POP'=358 -'STDDEV_SAMP'=359 -'STREAM'=360 -'STRING'=361 -'STRING_AGG'=362 -'SUBMULTISET'=363 -'SUBSET'=364 -'SUBSTRING'=365 -'SUBSTRING_REGEX'=366 -'SUCCEEDS'=367 -'SUM'=368 -'SUNDAY'=369 -'SYMMETRIC'=370 -'SYSTEM'=371 -'SYSTEM_TIME'=372 -'SYSTEM_USER'=373 -'TABLE'=374 -'TABLES'=375 -'TABLESAMPLE'=376 -'THEN'=377 -'THURSDAY'=378 -'TIME'=379 -'TIMESTAMP'=380 -'TIMESTAMP_DIFF'=381 -'TIMESTAMP_LTZ'=382 -'TIMESTAMP_TRUNC'=383 -'TIMEZONE_HOUR'=384 -'TIMEZONE_MINUTE'=385 -'TIME_DIFF'=386 -'TIME_TRUNC'=387 -'TINYINT'=388 -'TO'=389 -'TRAILING'=390 -'TRANSLATE'=391 -'TRANSLATE_REGEX'=392 -'TRANSLATION'=393 -'TREAT'=394 -'TRIGGER'=395 -'TRIM'=396 -'TRIM_ARRAY'=397 -'TRUE'=398 -'TRUNCATE'=399 -'TRY_CAST'=400 -'TUESDAY'=401 -'UESCAPE'=402 -'UNION'=403 -'UNIQUE'=404 -'UNKNOWN'=405 -'UNNEST'=406 -'UNPIVOT'=407 -'UPDATE'=408 -'UPPER'=409 -'UPSERT'=410 -'USE'=411 -'USER'=412 -'USING'=413 -'VALUE'=414 -'VALUES'=415 -'VALUE_OF'=416 -'VARBINARY'=417 -'VARCHAR'=418 -'VARYING'=419 -'VAR_POP'=420 -'VAR_SAMP'=421 -'VERSIONING'=422 -'VIEWS'=423 -'VIRTUAL'=424 -'WATERMARK'=425 -'WATERMARKS'=426 -'WEDNESDAY'=427 -'WEEKS'=428 -'WHEN'=429 -'WHENEVER'=430 -'WHERE'=431 -'WIDTH_BUCKET'=432 -'WINDOW'=433 -'WITH'=434 -'WITHIN'=435 -'WITHOUT'=436 -'YEAR'=437 -'ADD'=438 -'AFTER'=439 -'ASC'=440 -'CASCADE'=441 -'CATALOG'=442 -'CENTURY'=443 -'CONFIG'=444 -'CONSTRAINTS'=445 -'CUMULATE'=446 -'DATA'=447 -'DATABASE'=448 -'DAYS'=449 -'DECADE'=450 -'DESC'=451 -'DESCRIPTOR'=452 -'DIV'=453 -'ENGINE'=454 -'EPOCH'=455 -'EXCLUDING'=456 -'FILE'=457 -'FIRST'=458 -'GENERATED'=459 -'HOP'=460 -'HOURS'=461 -'IGNORE'=462 -'INCLUDING'=463 -'JAR'=464 -'JARS'=465 -'JAVA'=466 -'KEY'=467 -'LAST'=468 -'LOAD'=469 -'MAP'=470 -'MICROSECOND'=471 -'MILLENNIUM'=472 -'MILLISECOND'=473 -'MINUTES'=474 -'MONTHS'=475 -'NANOSECOND'=476 -'NULLS'=477 -'OPTIONS'=478 -'PAST'=479 -'PLAN'=480 -'PRECEDING'=481 -'PYTHON'=482 -'PYTHON_ARCHIVES'=483 -'PYTHON_DEPENDENCIES'=484 -'PYTHON_FILES'=485 -'PYTHON_JAR'=486 -'PYTHON_PARAMETER'=487 -'PYTHON_REQUIREMENTS'=488 -'QUARTER'=489 -'REMOVE'=490 -'RESTRICT'=491 -'SECONDS'=492 -'SESSION'=493 -'SETS'=494 -'SIZE'=495 -'SLIDE'=496 -'STEP'=497 -'TEMPORARY'=498 -'TIMECOL'=499 -'TUMBLE'=500 -'UNLOAD'=501 -'VIEW'=502 -'WEEK'=503 -'YEARS'=504 -'ZONE'=505 -'='=506 -'>'=507 -'<'=508 -'!'=509 -'~'=510 -'|'=511 -'&'=512 -'^'=513 -'.'=514 -'['=515 -']'=516 -'('=517 -')'=518 -'{'=519 -'}'=520 -','=521 -';'=522 -'@'=523 -'\''=524 -'"'=525 -'`'=526 -':'=527 -'*'=528 -'_'=529 -'-'=530 -'+'=531 -'%'=532 -'||'=533 -'--'=534 -'/'=535 -'?'=536 -'=>'=537 +'FOLLOWING'=146 +'FOR'=147 +'FOREIGN'=148 +'FRAME_ROW'=149 +'FREE'=150 +'FRIDAY'=151 +'FROM'=152 +'FULL'=153 +'FUNCTION'=154 +'FUNCTIONS'=155 +'FUSION'=156 +'GET'=157 +'GLOBAL'=158 +'GRANT'=159 +'GROUP'=160 +'GROUPING'=161 +'GROUPS'=162 +'GROUP_CONCAT'=163 +'HAVING'=164 +'HOLD'=165 +'HOUR'=166 +'IDENTITY'=167 +'IF'=168 +'ILIKE'=169 +'IMPORT'=170 +'IN'=171 +'INCLUDE'=172 +'INDICATOR'=173 +'INITIAL'=174 +'INNER'=175 +'INOUT'=176 +'INSENSITIVE'=177 +'INSERT'=178 +'INT'=179 +'INTEGER'=180 +'INTERSECT'=181 +'INTERSECTION'=182 +'INTERVAL'=183 +'INTO'=184 +'IS'=185 +'JOIN'=186 +'JSON'=187 +'JSON_ARRAY'=188 +'JSON_ARRAYAGG'=189 +'JSON_EXECUTION_PLAN'=190 +'JSON_EXISTS'=191 +'JSON_OBJECT'=192 +'JSON_OBJECTAGG'=193 +'JSON_QUERY'=194 +'JSON_VALUE'=195 +'LAG'=196 +'LANGUAGE'=197 +'LARGE'=198 +'LAST_VALUE'=199 +'LATERAL'=200 +'LEAD'=201 +'LEADING'=202 +'LEFT'=203 +'LIKE'=204 +'LIKE_REGEX'=205 +'LIMIT'=206 +'LN'=207 +'LOCAL'=208 +'LOCALTIME'=209 +'LOCALTIMESTAMP'=210 +'LOWER'=211 +'MATCH'=212 +'MATCHES'=213 +'MATCH_NUMBER'=214 +'MATCH_RECOGNIZE'=215 +'MAX'=216 +'MEASURES'=217 +'MEMBER'=218 +'MERGE'=219 +'METADATA'=220 +'METHOD'=221 +'MIN'=222 +'MINUS'=223 +'MINUTE'=224 +'MOD'=225 +'MODIFIES'=226 +'MODIFY'=227 +'MODULE'=228 +'MODULES'=229 +'MONDAY'=230 +'MONTH'=231 +'MORE'=232 +'MULTISET'=233 +'NATIONAL'=234 +'NATURAL'=235 +'NCHAR'=236 +'NCLOB'=237 +'NEW'=238 +'NEXT'=239 +'NO'=240 +'NONE'=241 +'NORMALIZE'=242 +'NOT'=243 +'NTH_VALUE'=244 +'NTILE'=245 +'NULL'=246 +'NULLIF'=247 +'NUMERIC'=248 +'OCCURRENCES_REGEX'=249 +'OCTET_LENGTH'=250 +'OF'=251 +'OFFSET'=252 +'OLD'=253 +'OMIT'=254 +'ON'=255 +'ONE'=256 +'ONLY'=257 +'OPEN'=258 +'OR'=259 +'ORDER'=260 +'ORDINAL'=261 +'OUT'=262 +'OUTER'=263 +'OVER'=264 +'OVERLAPS'=265 +'OVERLAY'=266 +'OVERWRITE'=267 +'OVERWRITING'=268 +'PARAMETER'=269 +'PARTITION'=270 +'PARTITIONED'=271 +'PARTITIONS'=272 +'PATTERN'=273 +'PER'=274 +'PERCENT'=275 +'PERCENTILE_CONT'=276 +'PERCENTILE_DISC'=277 +'PERCENT_RANK'=278 +'PERIOD'=279 +'PERMUTE'=280 +'PIVOT'=281 +'PORTION'=282 +'POSITION'=283 +'POSITION_REGEX'=284 +'POWER'=285 +'PRECEDES'=286 +'PRECISION'=287 +'PREPARE'=288 +'PREV'=289 +'PRIMARY'=290 +'PROCEDURE'=291 +'QUALIFY'=292 +'QUARTERS'=293 +'RANGE'=294 +'RANK'=295 +'RAW'=296 +'READS'=297 +'REAL'=298 +'RECURSIVE'=299 +'REF'=300 +'REFERENCES'=301 +'REFERENCING'=302 +'REGR_AVGX'=303 +'REGR_AVGY'=304 +'REGR_COUNT'=305 +'REGR_INTERCEPT'=306 +'REGR_R2'=307 +'REGR_SLOPE'=308 +'REGR_SXX'=309 +'REGR_SXY'=310 +'REGR_SYY'=311 +'RELEASE'=312 +'RENAME'=313 +'RESET'=314 +'RESULT'=315 +'RETURN'=316 +'RETURNS'=317 +'REVOKE'=318 +'RIGHT'=319 +'RLIKE'=320 +'ROLLBACK'=321 +'ROLLUP'=322 +'ROW'=323 +'ROWS'=324 +'ROW_NUMBER'=325 +'RUNNING'=326 +'SAFE_CAST'=327 +'SAFE_OFFSET'=328 +'SAFE_ORDINAL'=329 +'SATURDAY'=330 +'SAVEPOINT'=331 +'SCALA'=332 +'SCOPE'=333 +'SCROLL'=334 +'SEARCH'=335 +'SECOND'=336 +'SEEK'=337 +'SELECT'=338 +'SENSITIVE'=339 +'SEPARATOR'=340 +'SESSION_USER'=341 +'SET'=342 +'SHOW'=343 +'SIMILAR'=344 +'SKIP'=345 +'SMALLINT'=346 +'SOME'=347 +'SPECIFIC'=348 +'SPECIFICTYPE'=349 +'SQL'=350 +'SQLEXCEPTION'=351 +'SQLSTATE'=352 +'SQLWARNING'=353 +'SQRT'=354 +'START'=355 +'STATEMENT'=356 +'STATIC'=357 +'STATISTICS'=358 +'STDDEV_POP'=359 +'STDDEV_SAMP'=360 +'STREAM'=361 +'STRING'=362 +'STRING_AGG'=363 +'SUBMULTISET'=364 +'SUBSET'=365 +'SUBSTRING'=366 +'SUBSTRING_REGEX'=367 +'SUCCEEDS'=368 +'SUM'=369 +'SUNDAY'=370 +'SYMMETRIC'=371 +'SYSTEM'=372 +'SYSTEM_TIME'=373 +'SYSTEM_USER'=374 +'TABLE'=375 +'TABLES'=376 +'TABLESAMPLE'=377 +'THEN'=378 +'THURSDAY'=379 +'TIME'=380 +'TIMESTAMP'=381 +'TIMESTAMP_DIFF'=382 +'TIMESTAMP_LTZ'=383 +'TIMESTAMP_TRUNC'=384 +'TIMEZONE_HOUR'=385 +'TIMEZONE_MINUTE'=386 +'TIME_DIFF'=387 +'TIME_TRUNC'=388 +'TINYINT'=389 +'TO'=390 +'TRAILING'=391 +'TRANSLATE'=392 +'TRANSLATE_REGEX'=393 +'TRANSLATION'=394 +'TREAT'=395 +'TRIGGER'=396 +'TRIM'=397 +'TRIM_ARRAY'=398 +'TRUE'=399 +'TRUNCATE'=400 +'TRY_CAST'=401 +'TUESDAY'=402 +'UESCAPE'=403 +'UNBOUNDED'=404 +'UNION'=405 +'UNIQUE'=406 +'UNKNOWN'=407 +'UNNEST'=408 +'UNPIVOT'=409 +'UPDATE'=410 +'UPPER'=411 +'UPSERT'=412 +'USE'=413 +'USER'=414 +'USING'=415 +'VALUE'=416 +'VALUES'=417 +'VALUE_OF'=418 +'VARBINARY'=419 +'VARCHAR'=420 +'VARYING'=421 +'VAR_POP'=422 +'VAR_SAMP'=423 +'VERSIONING'=424 +'VIEWS'=425 +'VIRTUAL'=426 +'WATERMARK'=427 +'WATERMARKS'=428 +'WEDNESDAY'=429 +'WEEKS'=430 +'WHEN'=431 +'WHENEVER'=432 +'WHERE'=433 +'WIDTH_BUCKET'=434 +'WINDOW'=435 +'WITH'=436 +'WITHIN'=437 +'WITHOUT'=438 +'YEAR'=439 +'ADD'=440 +'AFTER'=441 +'ASC'=442 +'CASCADE'=443 +'CATALOG'=444 +'CENTURY'=445 +'CONFIG'=446 +'CONSTRAINTS'=447 +'CUMULATE'=448 +'DATA'=449 +'DATABASE'=450 +'DAYS'=451 +'DECADE'=452 +'DESC'=453 +'DESCRIPTOR'=454 +'DIV'=455 +'ENGINE'=456 +'EPOCH'=457 +'EXCLUDING'=458 +'FILE'=459 +'FIRST'=460 +'GENERATED'=461 +'HOP'=462 +'HOURS'=463 +'IGNORE'=464 +'INCLUDING'=465 +'JAR'=466 +'JARS'=467 +'JAVA'=468 +'KEY'=469 +'LAST'=470 +'LOAD'=471 +'MAP'=472 +'MICROSECOND'=473 +'MILLENNIUM'=474 +'MILLISECOND'=475 +'MINUTES'=476 +'MONTHS'=477 +'NANOSECOND'=478 +'NULLS'=479 +'OPTIONS'=480 +'PAST'=481 +'PLAN'=482 +'PRECEDING'=483 +'PYTHON'=484 +'PYTHON_ARCHIVES'=485 +'PYTHON_DEPENDENCIES'=486 +'PYTHON_FILES'=487 +'PYTHON_JAR'=488 +'PYTHON_PARAMETER'=489 +'PYTHON_REQUIREMENTS'=490 +'QUARTER'=491 +'REMOVE'=492 +'RESTRICT'=493 +'SECONDS'=494 +'SESSION'=495 +'SETS'=496 +'SIZE'=497 +'SLIDE'=498 +'STEP'=499 +'TEMPORARY'=500 +'TIMECOL'=501 +'TUMBLE'=502 +'UNLOAD'=503 +'VIEW'=504 +'WEEK'=505 +'YEARS'=506 +'ZONE'=507 +'='=508 +'>'=509 +'<'=510 +'!'=511 +'~'=512 +'|'=513 +'&'=514 +'^'=515 +'.'=516 +'['=517 +']'=518 +'('=519 +')'=520 +'{'=521 +'}'=522 +','=523 +';'=524 +'@'=525 +'\''=526 +'"'=527 +'`'=528 +':'=529 +'*'=530 +'_'=531 +'-'=532 +'+'=533 +'%'=534 +'||'=535 +'--'=536 +'/'=537 +'?'=538 +'=>'=539 diff --git a/src/lib/flink/FlinkSqlLexer.ts b/src/lib/flink/FlinkSqlLexer.ts index 3b455190..0ad84e54 100644 --- a/src/lib/flink/FlinkSqlLexer.ts +++ b/src/lib/flink/FlinkSqlLexer.ts @@ -152,403 +152,405 @@ export class FlinkSqlLexer extends antlr.Lexer { public static readonly KW_FIRST_VALUE = 143; public static readonly KW_FLOAT = 144; public static readonly KW_FLOOR = 145; - public static readonly KW_FOR = 146; - public static readonly KW_FOREIGN = 147; - public static readonly KW_FRAME_ROW = 148; - public static readonly KW_FREE = 149; - public static readonly KW_FRIDAY = 150; - public static readonly KW_FROM = 151; - public static readonly KW_FULL = 152; - public static readonly KW_FUNCTION = 153; - public static readonly KW_FUNCTIONS = 154; - public static readonly KW_FUSION = 155; - public static readonly KW_GET = 156; - public static readonly KW_GLOBAL = 157; - public static readonly KW_GRANT = 158; - public static readonly KW_GROUP = 159; - public static readonly KW_GROUPING = 160; - public static readonly KW_GROUPS = 161; - public static readonly KW_GROUP_CONCAT = 162; - public static readonly KW_HAVING = 163; - public static readonly KW_HOLD = 164; - public static readonly KW_HOUR = 165; - public static readonly KW_IDENTITY = 166; - public static readonly KW_IF = 167; - public static readonly KW_ILIKE = 168; - public static readonly KW_IMPORT = 169; - public static readonly KW_IN = 170; - public static readonly KW_INCLUDE = 171; - public static readonly KW_INDICATOR = 172; - public static readonly KW_INITIAL = 173; - public static readonly KW_INNER = 174; - public static readonly KW_INOUT = 175; - public static readonly KW_INSENSITIVE = 176; - public static readonly KW_INSERT = 177; - public static readonly KW_INT = 178; - public static readonly KW_INTEGER = 179; - public static readonly KW_INTERSECT = 180; - public static readonly KW_INTERSECTION = 181; - public static readonly KW_INTERVAL = 182; - public static readonly KW_INTO = 183; - public static readonly KW_IS = 184; - public static readonly KW_JOIN = 185; - public static readonly KW_JSON = 186; - public static readonly KW_JSON_ARRAY = 187; - public static readonly KW_JSON_ARRAYAGG = 188; - public static readonly KW_JSON_EXECUTION_PLAN = 189; - public static readonly KW_JSON_EXISTS = 190; - public static readonly KW_JSON_OBJECT = 191; - public static readonly KW_JSON_OBJECTAGG = 192; - public static readonly KW_JSON_QUERY = 193; - public static readonly KW_JSON_VALUE = 194; - public static readonly KW_LAG = 195; - public static readonly KW_LANGUAGE = 196; - public static readonly KW_LARGE = 197; - public static readonly KW_LAST_VALUE = 198; - public static readonly KW_LATERAL = 199; - public static readonly KW_LEAD = 200; - public static readonly KW_LEADING = 201; - public static readonly KW_LEFT = 202; - public static readonly KW_LIKE = 203; - public static readonly KW_LIKE_REGEX = 204; - public static readonly KW_LIMIT = 205; - public static readonly KW_LN = 206; - public static readonly KW_LOCAL = 207; - public static readonly KW_LOCALTIME = 208; - public static readonly KW_LOCALTIMESTAMP = 209; - public static readonly KW_LOWER = 210; - public static readonly KW_MATCH = 211; - public static readonly KW_MATCHES = 212; - public static readonly KW_MATCH_NUMBER = 213; - public static readonly KW_MATCH_RECOGNIZE = 214; - public static readonly KW_MAX = 215; - public static readonly KW_MEASURES = 216; - public static readonly KW_MEMBER = 217; - public static readonly KW_MERGE = 218; - public static readonly KW_METADATA = 219; - public static readonly KW_METHOD = 220; - public static readonly KW_MIN = 221; - public static readonly KW_MINUS = 222; - public static readonly KW_MINUTE = 223; - public static readonly KW_MOD = 224; - public static readonly KW_MODIFIES = 225; - public static readonly KW_MODIFY = 226; - public static readonly KW_MODULE = 227; - public static readonly KW_MODULES = 228; - public static readonly KW_MONDAY = 229; - public static readonly KW_MONTH = 230; - public static readonly KW_MORE = 231; - public static readonly KW_MULTISET = 232; - public static readonly KW_NATIONAL = 233; - public static readonly KW_NATURAL = 234; - public static readonly KW_NCHAR = 235; - public static readonly KW_NCLOB = 236; - public static readonly KW_NEW = 237; - public static readonly KW_NEXT = 238; - public static readonly KW_NO = 239; - public static readonly KW_NONE = 240; - public static readonly KW_NORMALIZE = 241; - public static readonly KW_NOT = 242; - public static readonly KW_NTH_VALUE = 243; - public static readonly KW_NTILE = 244; - public static readonly KW_NULL = 245; - public static readonly KW_NULLIF = 246; - public static readonly KW_NUMERIC = 247; - public static readonly KW_OCCURRENCES_REGEX = 248; - public static readonly KW_OCTET_LENGTH = 249; - public static readonly KW_OF = 250; - public static readonly KW_OFFSET = 251; - public static readonly KW_OLD = 252; - public static readonly KW_OMIT = 253; - public static readonly KW_ON = 254; - public static readonly KW_ONE = 255; - public static readonly KW_ONLY = 256; - public static readonly KW_OPEN = 257; - public static readonly KW_OR = 258; - public static readonly KW_ORDER = 259; - public static readonly KW_ORDINAL = 260; - public static readonly KW_OUT = 261; - public static readonly KW_OUTER = 262; - public static readonly KW_OVER = 263; - public static readonly KW_OVERLAPS = 264; - public static readonly KW_OVERLAY = 265; - public static readonly KW_OVERWRITE = 266; - public static readonly KW_OVERWRITING = 267; - public static readonly KW_PARAMETER = 268; - public static readonly KW_PARTITION = 269; - public static readonly KW_PARTITIONED = 270; - public static readonly KW_PARTITIONS = 271; - public static readonly KW_PATTERN = 272; - public static readonly KW_PER = 273; - public static readonly KW_PERCENT = 274; - public static readonly KW_PERCENTILE_CONT = 275; - public static readonly KW_PERCENTILE_DISC = 276; - public static readonly KW_PERCENT_RANK = 277; - public static readonly KW_PERIOD = 278; - public static readonly KW_PERMUTE = 279; - public static readonly KW_PIVOT = 280; - public static readonly KW_PORTION = 281; - public static readonly KW_POSITION = 282; - public static readonly KW_POSITION_REGEX = 283; - public static readonly KW_POWER = 284; - public static readonly KW_PRECEDES = 285; - public static readonly KW_PRECISION = 286; - public static readonly KW_PREPARE = 287; - public static readonly KW_PREV = 288; - public static readonly KW_PRIMARY = 289; - public static readonly KW_PROCEDURE = 290; - public static readonly KW_QUALIFY = 291; - public static readonly KW_QUARTERS = 292; - public static readonly KW_RANGE = 293; - public static readonly KW_RANK = 294; - public static readonly KW_RAW = 295; - public static readonly KW_READS = 296; - public static readonly KW_REAL = 297; - public static readonly KW_RECURSIVE = 298; - public static readonly KW_REF = 299; - public static readonly KW_REFERENCES = 300; - public static readonly KW_REFERENCING = 301; - public static readonly KW_REGR_AVGX = 302; - public static readonly KW_REGR_AVGY = 303; - public static readonly KW_REGR_COUNT = 304; - public static readonly KW_REGR_INTERCEPT = 305; - public static readonly KW_REGR_R2 = 306; - public static readonly KW_REGR_SLOPE = 307; - public static readonly KW_REGR_SXX = 308; - public static readonly KW_REGR_SXY = 309; - public static readonly KW_REGR_SYY = 310; - public static readonly KW_RELEASE = 311; - public static readonly KW_RENAME = 312; - public static readonly KW_RESET = 313; - public static readonly KW_RESULT = 314; - public static readonly KW_RETURN = 315; - public static readonly KW_RETURNS = 316; - public static readonly KW_REVOKE = 317; - public static readonly KW_RIGHT = 318; - public static readonly KW_RLIKE = 319; - public static readonly KW_ROLLBACK = 320; - public static readonly KW_ROLLUP = 321; - public static readonly KW_ROW = 322; - public static readonly KW_ROWS = 323; - public static readonly KW_ROW_NUMBER = 324; - public static readonly KW_RUNNING = 325; - public static readonly KW_SAFE_CAST = 326; - public static readonly KW_SAFE_OFFSET = 327; - public static readonly KW_SAFE_ORDINAL = 328; - public static readonly KW_SATURDAY = 329; - public static readonly KW_SAVEPOINT = 330; - public static readonly KW_SCALA = 331; - public static readonly KW_SCOPE = 332; - public static readonly KW_SCROLL = 333; - public static readonly KW_SEARCH = 334; - public static readonly KW_SECOND = 335; - public static readonly KW_SEEK = 336; - public static readonly KW_SELECT = 337; - public static readonly KW_SENSITIVE = 338; - public static readonly KW_SEPARATOR = 339; - public static readonly KW_SESSION_USER = 340; - public static readonly KW_SET = 341; - public static readonly KW_SHOW = 342; - public static readonly KW_SIMILAR = 343; - public static readonly KW_SKIP = 344; - public static readonly KW_SMALLINT = 345; - public static readonly KW_SOME = 346; - public static readonly KW_SPECIFIC = 347; - public static readonly KW_SPECIFICTYPE = 348; - public static readonly KW_SQL = 349; - public static readonly KW_SQLEXCEPTION = 350; - public static readonly KW_SQLSTATE = 351; - public static readonly KW_SQLWARNING = 352; - public static readonly KW_SQRT = 353; - public static readonly KW_START = 354; - public static readonly KW_STATEMENT = 355; - public static readonly KW_STATIC = 356; - public static readonly KW_STATISTICS = 357; - public static readonly KW_STDDEV_POP = 358; - public static readonly KW_STDDEV_SAMP = 359; - public static readonly KW_STREAM = 360; - public static readonly KW_STRING = 361; - public static readonly KW_STRING_AGG = 362; - public static readonly KW_SUBMULTISET = 363; - public static readonly KW_SUBSET = 364; - public static readonly KW_SUBSTRING = 365; - public static readonly KW_SUBSTRING_REGEX = 366; - public static readonly KW_SUCCEEDS = 367; - public static readonly KW_SUM = 368; - public static readonly KW_SUNDAY = 369; - public static readonly KW_SYMMETRIC = 370; - public static readonly KW_SYSTEM = 371; - public static readonly KW_SYSTEM_TIME = 372; - public static readonly KW_SYSTEM_USER = 373; - public static readonly KW_TABLE = 374; - public static readonly KW_TABLES = 375; - public static readonly KW_TABLESAMPLE = 376; - public static readonly KW_THEN = 377; - public static readonly KW_THURSDAY = 378; - public static readonly KW_TIME = 379; - public static readonly KW_TIMESTAMP = 380; - public static readonly KW_TIMESTAMP_DIFF = 381; - public static readonly KW_TIMESTAMP_LTZ = 382; - public static readonly KW_TIMESTAMP_TRUNC = 383; - public static readonly KW_TIMEZONE_HOUR = 384; - public static readonly KW_TIMEZONE_MINUTE = 385; - public static readonly KW_TIME_DIFF = 386; - public static readonly KW_TIME_TRUNC = 387; - public static readonly KW_TINYINT = 388; - public static readonly KW_TO = 389; - public static readonly KW_TRAILING = 390; - public static readonly KW_TRANSLATE = 391; - public static readonly KW_TRANSLATE_REGEX = 392; - public static readonly KW_TRANSLATION = 393; - public static readonly KW_TREAT = 394; - public static readonly KW_TRIGGER = 395; - public static readonly KW_TRIM = 396; - public static readonly KW_TRIM_ARRAY = 397; - public static readonly KW_TRUE = 398; - public static readonly KW_TRUNCATE = 399; - public static readonly KW_TRY_CAST = 400; - public static readonly KW_TUESDAY = 401; - public static readonly KW_UESCAPE = 402; - public static readonly KW_UNION = 403; - public static readonly KW_UNIQUE = 404; - public static readonly KW_UNKNOWN = 405; - public static readonly KW_UNNEST = 406; - public static readonly KW_UNPIVOT = 407; - public static readonly KW_UPDATE = 408; - public static readonly KW_UPPER = 409; - public static readonly KW_UPSERT = 410; - public static readonly KW_USE = 411; - public static readonly KW_USER = 412; - public static readonly KW_USING = 413; - public static readonly KW_VALUE = 414; - public static readonly KW_VALUES = 415; - public static readonly KW_VALUE_OF = 416; - public static readonly KW_VARBINARY = 417; - public static readonly KW_VARCHAR = 418; - public static readonly KW_VARYING = 419; - public static readonly KW_VAR_POP = 420; - public static readonly KW_VAR_SAMP = 421; - public static readonly KW_VERSIONING = 422; - public static readonly KW_VIEWS = 423; - public static readonly KW_VIRTUAL = 424; - public static readonly KW_WATERMARK = 425; - public static readonly KW_WATERMARKS = 426; - public static readonly KW_WEDNESDAY = 427; - public static readonly KW_WEEKS = 428; - public static readonly KW_WHEN = 429; - public static readonly KW_WHENEVER = 430; - public static readonly KW_WHERE = 431; - public static readonly KW_WIDTH_BUCKET = 432; - public static readonly KW_WINDOW = 433; - public static readonly KW_WITH = 434; - public static readonly KW_WITHIN = 435; - public static readonly KW_WITHOUT = 436; - public static readonly KW_YEAR = 437; - public static readonly KW_ADD = 438; - public static readonly KW_AFTER = 439; - public static readonly KW_ASC = 440; - public static readonly KW_CASCADE = 441; - public static readonly KW_CATALOG = 442; - public static readonly KW_CENTURY = 443; - public static readonly KW_CONFIG = 444; - public static readonly KW_CONSTRAINTS = 445; - public static readonly KW_CUMULATE = 446; - public static readonly KW_DATA = 447; - public static readonly KW_DATABASE = 448; - public static readonly KW_DAYS = 449; - public static readonly KW_DECADE = 450; - public static readonly KW_DESC = 451; - public static readonly KW_DESCRIPTOR = 452; - public static readonly KW_DIV = 453; - public static readonly KW_ENGINE = 454; - public static readonly KW_EPOCH = 455; - public static readonly KW_EXCLUDING = 456; - public static readonly KW_FILE = 457; - public static readonly KW_FIRST = 458; - public static readonly KW_GENERATED = 459; - public static readonly KW_HOP = 460; - public static readonly KW_HOURS = 461; - public static readonly KW_IGNORE = 462; - public static readonly KW_INCLUDING = 463; - public static readonly KW_JAR = 464; - public static readonly KW_JARS = 465; - public static readonly KW_JAVA = 466; - public static readonly KW_KEY = 467; - public static readonly KW_LAST = 468; - public static readonly KW_LOAD = 469; - public static readonly KW_MAP = 470; - public static readonly KW_MICROSECOND = 471; - public static readonly KW_MILLENNIUM = 472; - public static readonly KW_MILLISECOND = 473; - public static readonly KW_MINUTES = 474; - public static readonly KW_MONTHS = 475; - public static readonly KW_NANOSECOND = 476; - public static readonly KW_NULLS = 477; - public static readonly KW_OPTIONS = 478; - public static readonly KW_PAST = 479; - public static readonly KW_PLAN = 480; - public static readonly KW_PRECEDING = 481; - public static readonly KW_PYTHON = 482; - public static readonly KW_PYTHON_ARCHIVES = 483; - public static readonly KW_PYTHON_DEPENDENCIES = 484; - public static readonly KW_PYTHON_FILES = 485; - public static readonly KW_PYTHON_JAR = 486; - public static readonly KW_PYTHON_PARAMETER = 487; - public static readonly KW_PYTHON_REQUIREMENTS = 488; - public static readonly KW_QUARTER = 489; - public static readonly KW_REMOVE = 490; - public static readonly KW_RESTRICT = 491; - public static readonly KW_SECONDS = 492; - public static readonly KW_SESSION = 493; - public static readonly KW_SETS = 494; - public static readonly KW_SIZE = 495; - public static readonly KW_SLIDE = 496; - public static readonly KW_STEP = 497; - public static readonly KW_TEMPORARY = 498; - public static readonly KW_TIMECOL = 499; - public static readonly KW_TUMBLE = 500; - public static readonly KW_UNLOAD = 501; - public static readonly KW_VIEW = 502; - public static readonly KW_WEEK = 503; - public static readonly KW_YEARS = 504; - public static readonly KW_ZONE = 505; - public static readonly EQUAL_SYMBOL = 506; - public static readonly GREATER_SYMBOL = 507; - public static readonly LESS_SYMBOL = 508; - public static readonly EXCLAMATION_SYMBOL = 509; - public static readonly BIT_NOT_OP = 510; - public static readonly BIT_OR_OP = 511; - public static readonly BIT_AND_OP = 512; - public static readonly BIT_XOR_OP = 513; - public static readonly DOT = 514; - public static readonly LS_BRACKET = 515; - public static readonly RS_BRACKET = 516; - public static readonly LR_BRACKET = 517; - public static readonly RR_BRACKET = 518; - public static readonly LB_BRACKET = 519; - public static readonly RB_BRACKET = 520; - public static readonly COMMA = 521; - public static readonly SEMICOLON = 522; - public static readonly AT_SIGN = 523; - public static readonly SINGLE_QUOTE_SYMB = 524; - public static readonly DOUBLE_QUOTE_SYMB = 525; - public static readonly REVERSE_QUOTE_SYMB = 526; - public static readonly COLON_SYMB = 527; - public static readonly ASTERISK_SIGN = 528; - public static readonly UNDERLINE_SIGN = 529; - public static readonly HYPHEN_SIGN = 530; - public static readonly ADD_SIGN = 531; - public static readonly PERCENT_SIGN = 532; - public static readonly DOUBLE_VERTICAL_SIGN = 533; - public static readonly DOUBLE_HYPHEN_SIGN = 534; - public static readonly SLASH_SIGN = 535; - public static readonly QUESTION_MARK_SIGN = 536; - public static readonly DOUBLE_RIGHT_ARROW = 537; - public static readonly STRING_LITERAL = 538; - public static readonly DIG_LITERAL = 539; - public static readonly REAL_LITERAL = 540; - public static readonly BIT_STRING = 541; - public static readonly ID_LITERAL = 542; + public static readonly KW_FOLLOWING = 146; + public static readonly KW_FOR = 147; + public static readonly KW_FOREIGN = 148; + public static readonly KW_FRAME_ROW = 149; + public static readonly KW_FREE = 150; + public static readonly KW_FRIDAY = 151; + public static readonly KW_FROM = 152; + public static readonly KW_FULL = 153; + public static readonly KW_FUNCTION = 154; + public static readonly KW_FUNCTIONS = 155; + public static readonly KW_FUSION = 156; + public static readonly KW_GET = 157; + public static readonly KW_GLOBAL = 158; + public static readonly KW_GRANT = 159; + public static readonly KW_GROUP = 160; + public static readonly KW_GROUPING = 161; + public static readonly KW_GROUPS = 162; + public static readonly KW_GROUP_CONCAT = 163; + public static readonly KW_HAVING = 164; + public static readonly KW_HOLD = 165; + public static readonly KW_HOUR = 166; + public static readonly KW_IDENTITY = 167; + public static readonly KW_IF = 168; + public static readonly KW_ILIKE = 169; + public static readonly KW_IMPORT = 170; + public static readonly KW_IN = 171; + public static readonly KW_INCLUDE = 172; + public static readonly KW_INDICATOR = 173; + public static readonly KW_INITIAL = 174; + public static readonly KW_INNER = 175; + public static readonly KW_INOUT = 176; + public static readonly KW_INSENSITIVE = 177; + public static readonly KW_INSERT = 178; + public static readonly KW_INT = 179; + public static readonly KW_INTEGER = 180; + public static readonly KW_INTERSECT = 181; + public static readonly KW_INTERSECTION = 182; + public static readonly KW_INTERVAL = 183; + public static readonly KW_INTO = 184; + public static readonly KW_IS = 185; + public static readonly KW_JOIN = 186; + public static readonly KW_JSON = 187; + public static readonly KW_JSON_ARRAY = 188; + public static readonly KW_JSON_ARRAYAGG = 189; + public static readonly KW_JSON_EXECUTION_PLAN = 190; + public static readonly KW_JSON_EXISTS = 191; + public static readonly KW_JSON_OBJECT = 192; + public static readonly KW_JSON_OBJECTAGG = 193; + public static readonly KW_JSON_QUERY = 194; + public static readonly KW_JSON_VALUE = 195; + public static readonly KW_LAG = 196; + public static readonly KW_LANGUAGE = 197; + public static readonly KW_LARGE = 198; + public static readonly KW_LAST_VALUE = 199; + public static readonly KW_LATERAL = 200; + public static readonly KW_LEAD = 201; + public static readonly KW_LEADING = 202; + public static readonly KW_LEFT = 203; + public static readonly KW_LIKE = 204; + public static readonly KW_LIKE_REGEX = 205; + public static readonly KW_LIMIT = 206; + public static readonly KW_LN = 207; + public static readonly KW_LOCAL = 208; + public static readonly KW_LOCALTIME = 209; + public static readonly KW_LOCALTIMESTAMP = 210; + public static readonly KW_LOWER = 211; + public static readonly KW_MATCH = 212; + public static readonly KW_MATCHES = 213; + public static readonly KW_MATCH_NUMBER = 214; + public static readonly KW_MATCH_RECOGNIZE = 215; + public static readonly KW_MAX = 216; + public static readonly KW_MEASURES = 217; + public static readonly KW_MEMBER = 218; + public static readonly KW_MERGE = 219; + public static readonly KW_METADATA = 220; + public static readonly KW_METHOD = 221; + public static readonly KW_MIN = 222; + public static readonly KW_MINUS = 223; + public static readonly KW_MINUTE = 224; + public static readonly KW_MOD = 225; + public static readonly KW_MODIFIES = 226; + public static readonly KW_MODIFY = 227; + public static readonly KW_MODULE = 228; + public static readonly KW_MODULES = 229; + public static readonly KW_MONDAY = 230; + public static readonly KW_MONTH = 231; + public static readonly KW_MORE = 232; + public static readonly KW_MULTISET = 233; + public static readonly KW_NATIONAL = 234; + public static readonly KW_NATURAL = 235; + public static readonly KW_NCHAR = 236; + public static readonly KW_NCLOB = 237; + public static readonly KW_NEW = 238; + public static readonly KW_NEXT = 239; + public static readonly KW_NO = 240; + public static readonly KW_NONE = 241; + public static readonly KW_NORMALIZE = 242; + public static readonly KW_NOT = 243; + public static readonly KW_NTH_VALUE = 244; + public static readonly KW_NTILE = 245; + public static readonly KW_NULL = 246; + public static readonly KW_NULLIF = 247; + public static readonly KW_NUMERIC = 248; + public static readonly KW_OCCURRENCES_REGEX = 249; + public static readonly KW_OCTET_LENGTH = 250; + public static readonly KW_OF = 251; + public static readonly KW_OFFSET = 252; + public static readonly KW_OLD = 253; + public static readonly KW_OMIT = 254; + public static readonly KW_ON = 255; + public static readonly KW_ONE = 256; + public static readonly KW_ONLY = 257; + public static readonly KW_OPEN = 258; + public static readonly KW_OR = 259; + public static readonly KW_ORDER = 260; + public static readonly KW_ORDINAL = 261; + public static readonly KW_OUT = 262; + public static readonly KW_OUTER = 263; + public static readonly KW_OVER = 264; + public static readonly KW_OVERLAPS = 265; + public static readonly KW_OVERLAY = 266; + public static readonly KW_OVERWRITE = 267; + public static readonly KW_OVERWRITING = 268; + public static readonly KW_PARAMETER = 269; + public static readonly KW_PARTITION = 270; + public static readonly KW_PARTITIONED = 271; + public static readonly KW_PARTITIONS = 272; + public static readonly KW_PATTERN = 273; + public static readonly KW_PER = 274; + public static readonly KW_PERCENT = 275; + public static readonly KW_PERCENTILE_CONT = 276; + public static readonly KW_PERCENTILE_DISC = 277; + public static readonly KW_PERCENT_RANK = 278; + public static readonly KW_PERIOD = 279; + public static readonly KW_PERMUTE = 280; + public static readonly KW_PIVOT = 281; + public static readonly KW_PORTION = 282; + public static readonly KW_POSITION = 283; + public static readonly KW_POSITION_REGEX = 284; + public static readonly KW_POWER = 285; + public static readonly KW_PRECEDES = 286; + public static readonly KW_PRECISION = 287; + public static readonly KW_PREPARE = 288; + public static readonly KW_PREV = 289; + public static readonly KW_PRIMARY = 290; + public static readonly KW_PROCEDURE = 291; + public static readonly KW_QUALIFY = 292; + public static readonly KW_QUARTERS = 293; + public static readonly KW_RANGE = 294; + public static readonly KW_RANK = 295; + public static readonly KW_RAW = 296; + public static readonly KW_READS = 297; + public static readonly KW_REAL = 298; + public static readonly KW_RECURSIVE = 299; + public static readonly KW_REF = 300; + public static readonly KW_REFERENCES = 301; + public static readonly KW_REFERENCING = 302; + public static readonly KW_REGR_AVGX = 303; + public static readonly KW_REGR_AVGY = 304; + public static readonly KW_REGR_COUNT = 305; + public static readonly KW_REGR_INTERCEPT = 306; + public static readonly KW_REGR_R2 = 307; + public static readonly KW_REGR_SLOPE = 308; + public static readonly KW_REGR_SXX = 309; + public static readonly KW_REGR_SXY = 310; + public static readonly KW_REGR_SYY = 311; + public static readonly KW_RELEASE = 312; + public static readonly KW_RENAME = 313; + public static readonly KW_RESET = 314; + public static readonly KW_RESULT = 315; + public static readonly KW_RETURN = 316; + public static readonly KW_RETURNS = 317; + public static readonly KW_REVOKE = 318; + public static readonly KW_RIGHT = 319; + public static readonly KW_RLIKE = 320; + public static readonly KW_ROLLBACK = 321; + public static readonly KW_ROLLUP = 322; + public static readonly KW_ROW = 323; + public static readonly KW_ROWS = 324; + public static readonly KW_ROW_NUMBER = 325; + public static readonly KW_RUNNING = 326; + public static readonly KW_SAFE_CAST = 327; + public static readonly KW_SAFE_OFFSET = 328; + public static readonly KW_SAFE_ORDINAL = 329; + public static readonly KW_SATURDAY = 330; + public static readonly KW_SAVEPOINT = 331; + public static readonly KW_SCALA = 332; + public static readonly KW_SCOPE = 333; + public static readonly KW_SCROLL = 334; + public static readonly KW_SEARCH = 335; + public static readonly KW_SECOND = 336; + public static readonly KW_SEEK = 337; + public static readonly KW_SELECT = 338; + public static readonly KW_SENSITIVE = 339; + public static readonly KW_SEPARATOR = 340; + public static readonly KW_SESSION_USER = 341; + public static readonly KW_SET = 342; + public static readonly KW_SHOW = 343; + public static readonly KW_SIMILAR = 344; + public static readonly KW_SKIP = 345; + public static readonly KW_SMALLINT = 346; + public static readonly KW_SOME = 347; + public static readonly KW_SPECIFIC = 348; + public static readonly KW_SPECIFICTYPE = 349; + public static readonly KW_SQL = 350; + public static readonly KW_SQLEXCEPTION = 351; + public static readonly KW_SQLSTATE = 352; + public static readonly KW_SQLWARNING = 353; + public static readonly KW_SQRT = 354; + public static readonly KW_START = 355; + public static readonly KW_STATEMENT = 356; + public static readonly KW_STATIC = 357; + public static readonly KW_STATISTICS = 358; + public static readonly KW_STDDEV_POP = 359; + public static readonly KW_STDDEV_SAMP = 360; + public static readonly KW_STREAM = 361; + public static readonly KW_STRING = 362; + public static readonly KW_STRING_AGG = 363; + public static readonly KW_SUBMULTISET = 364; + public static readonly KW_SUBSET = 365; + public static readonly KW_SUBSTRING = 366; + public static readonly KW_SUBSTRING_REGEX = 367; + public static readonly KW_SUCCEEDS = 368; + public static readonly KW_SUM = 369; + public static readonly KW_SUNDAY = 370; + public static readonly KW_SYMMETRIC = 371; + public static readonly KW_SYSTEM = 372; + public static readonly KW_SYSTEM_TIME = 373; + public static readonly KW_SYSTEM_USER = 374; + public static readonly KW_TABLE = 375; + public static readonly KW_TABLES = 376; + public static readonly KW_TABLESAMPLE = 377; + public static readonly KW_THEN = 378; + public static readonly KW_THURSDAY = 379; + public static readonly KW_TIME = 380; + public static readonly KW_TIMESTAMP = 381; + public static readonly KW_TIMESTAMP_DIFF = 382; + public static readonly KW_TIMESTAMP_LTZ = 383; + public static readonly KW_TIMESTAMP_TRUNC = 384; + public static readonly KW_TIMEZONE_HOUR = 385; + public static readonly KW_TIMEZONE_MINUTE = 386; + public static readonly KW_TIME_DIFF = 387; + public static readonly KW_TIME_TRUNC = 388; + public static readonly KW_TINYINT = 389; + public static readonly KW_TO = 390; + public static readonly KW_TRAILING = 391; + public static readonly KW_TRANSLATE = 392; + public static readonly KW_TRANSLATE_REGEX = 393; + public static readonly KW_TRANSLATION = 394; + public static readonly KW_TREAT = 395; + public static readonly KW_TRIGGER = 396; + public static readonly KW_TRIM = 397; + public static readonly KW_TRIM_ARRAY = 398; + public static readonly KW_TRUE = 399; + public static readonly KW_TRUNCATE = 400; + public static readonly KW_TRY_CAST = 401; + public static readonly KW_TUESDAY = 402; + public static readonly KW_UESCAPE = 403; + public static readonly KW_UNBOUNDED = 404; + public static readonly KW_UNION = 405; + public static readonly KW_UNIQUE = 406; + public static readonly KW_UNKNOWN = 407; + public static readonly KW_UNNEST = 408; + public static readonly KW_UNPIVOT = 409; + public static readonly KW_UPDATE = 410; + public static readonly KW_UPPER = 411; + public static readonly KW_UPSERT = 412; + public static readonly KW_USE = 413; + public static readonly KW_USER = 414; + public static readonly KW_USING = 415; + public static readonly KW_VALUE = 416; + public static readonly KW_VALUES = 417; + public static readonly KW_VALUE_OF = 418; + public static readonly KW_VARBINARY = 419; + public static readonly KW_VARCHAR = 420; + public static readonly KW_VARYING = 421; + public static readonly KW_VAR_POP = 422; + public static readonly KW_VAR_SAMP = 423; + public static readonly KW_VERSIONING = 424; + public static readonly KW_VIEWS = 425; + public static readonly KW_VIRTUAL = 426; + public static readonly KW_WATERMARK = 427; + public static readonly KW_WATERMARKS = 428; + public static readonly KW_WEDNESDAY = 429; + public static readonly KW_WEEKS = 430; + public static readonly KW_WHEN = 431; + public static readonly KW_WHENEVER = 432; + public static readonly KW_WHERE = 433; + public static readonly KW_WIDTH_BUCKET = 434; + public static readonly KW_WINDOW = 435; + public static readonly KW_WITH = 436; + public static readonly KW_WITHIN = 437; + public static readonly KW_WITHOUT = 438; + public static readonly KW_YEAR = 439; + public static readonly KW_ADD = 440; + public static readonly KW_AFTER = 441; + public static readonly KW_ASC = 442; + public static readonly KW_CASCADE = 443; + public static readonly KW_CATALOG = 444; + public static readonly KW_CENTURY = 445; + public static readonly KW_CONFIG = 446; + public static readonly KW_CONSTRAINTS = 447; + public static readonly KW_CUMULATE = 448; + public static readonly KW_DATA = 449; + public static readonly KW_DATABASE = 450; + public static readonly KW_DAYS = 451; + public static readonly KW_DECADE = 452; + public static readonly KW_DESC = 453; + public static readonly KW_DESCRIPTOR = 454; + public static readonly KW_DIV = 455; + public static readonly KW_ENGINE = 456; + public static readonly KW_EPOCH = 457; + public static readonly KW_EXCLUDING = 458; + public static readonly KW_FILE = 459; + public static readonly KW_FIRST = 460; + public static readonly KW_GENERATED = 461; + public static readonly KW_HOP = 462; + public static readonly KW_HOURS = 463; + public static readonly KW_IGNORE = 464; + public static readonly KW_INCLUDING = 465; + public static readonly KW_JAR = 466; + public static readonly KW_JARS = 467; + public static readonly KW_JAVA = 468; + public static readonly KW_KEY = 469; + public static readonly KW_LAST = 470; + public static readonly KW_LOAD = 471; + public static readonly KW_MAP = 472; + public static readonly KW_MICROSECOND = 473; + public static readonly KW_MILLENNIUM = 474; + public static readonly KW_MILLISECOND = 475; + public static readonly KW_MINUTES = 476; + public static readonly KW_MONTHS = 477; + public static readonly KW_NANOSECOND = 478; + public static readonly KW_NULLS = 479; + public static readonly KW_OPTIONS = 480; + public static readonly KW_PAST = 481; + public static readonly KW_PLAN = 482; + public static readonly KW_PRECEDING = 483; + public static readonly KW_PYTHON = 484; + public static readonly KW_PYTHON_ARCHIVES = 485; + public static readonly KW_PYTHON_DEPENDENCIES = 486; + public static readonly KW_PYTHON_FILES = 487; + public static readonly KW_PYTHON_JAR = 488; + public static readonly KW_PYTHON_PARAMETER = 489; + public static readonly KW_PYTHON_REQUIREMENTS = 490; + public static readonly KW_QUARTER = 491; + public static readonly KW_REMOVE = 492; + public static readonly KW_RESTRICT = 493; + public static readonly KW_SECONDS = 494; + public static readonly KW_SESSION = 495; + public static readonly KW_SETS = 496; + public static readonly KW_SIZE = 497; + public static readonly KW_SLIDE = 498; + public static readonly KW_STEP = 499; + public static readonly KW_TEMPORARY = 500; + public static readonly KW_TIMECOL = 501; + public static readonly KW_TUMBLE = 502; + public static readonly KW_UNLOAD = 503; + public static readonly KW_VIEW = 504; + public static readonly KW_WEEK = 505; + public static readonly KW_YEARS = 506; + public static readonly KW_ZONE = 507; + public static readonly EQUAL_SYMBOL = 508; + public static readonly GREATER_SYMBOL = 509; + public static readonly LESS_SYMBOL = 510; + public static readonly EXCLAMATION_SYMBOL = 511; + public static readonly BIT_NOT_OP = 512; + public static readonly BIT_OR_OP = 513; + public static readonly BIT_AND_OP = 514; + public static readonly BIT_XOR_OP = 515; + public static readonly DOT = 516; + public static readonly LS_BRACKET = 517; + public static readonly RS_BRACKET = 518; + public static readonly LR_BRACKET = 519; + public static readonly RR_BRACKET = 520; + public static readonly LB_BRACKET = 521; + public static readonly RB_BRACKET = 522; + public static readonly COMMA = 523; + public static readonly SEMICOLON = 524; + public static readonly AT_SIGN = 525; + public static readonly SINGLE_QUOTE_SYMB = 526; + public static readonly DOUBLE_QUOTE_SYMB = 527; + public static readonly REVERSE_QUOTE_SYMB = 528; + public static readonly COLON_SYMB = 529; + public static readonly ASTERISK_SIGN = 530; + public static readonly UNDERLINE_SIGN = 531; + public static readonly HYPHEN_SIGN = 532; + public static readonly ADD_SIGN = 533; + public static readonly PERCENT_SIGN = 534; + public static readonly DOUBLE_VERTICAL_SIGN = 535; + public static readonly DOUBLE_HYPHEN_SIGN = 536; + public static readonly SLASH_SIGN = 537; + public static readonly QUESTION_MARK_SIGN = 538; + public static readonly DOUBLE_RIGHT_ARROW = 539; + public static readonly STRING_LITERAL = 540; + public static readonly DIG_LITERAL = 541; + public static readonly REAL_LITERAL = 542; + public static readonly BIT_STRING = 543; + public static readonly ID_LITERAL = 544; public static readonly channelNames = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" @@ -582,13 +584,13 @@ export class FlinkSqlLexer extends antlr.Lexer { "'ENFORCED'", "'EQUALS'", "'ESCAPE'", "'ESTIMATED_COST'", "'EVERY'", "'EXCEPT'", "'EXEC'", "'EXECUTE'", "'EXISTS'", "'EXP'", "'EXPLAIN'", "'EXTEND'", "'EXTENDED'", "'EXTERNAL'", "'EXTRACT'", "'FALSE'", - "'FETCH'", "'FILTER'", "'FIRST_VALUE'", "'FLOAT'", "'FLOOR'", "'FOR'", - "'FOREIGN'", "'FRAME_ROW'", "'FREE'", "'FRIDAY'", "'FROM'", "'FULL'", - "'FUNCTION'", "'FUNCTIONS'", "'FUSION'", "'GET'", "'GLOBAL'", "'GRANT'", - "'GROUP'", "'GROUPING'", "'GROUPS'", "'GROUP_CONCAT'", "'HAVING'", - "'HOLD'", "'HOUR'", "'IDENTITY'", "'IF'", "'ILIKE'", "'IMPORT'", - "'IN'", "'INCLUDE'", "'INDICATOR'", "'INITIAL'", "'INNER'", "'INOUT'", - "'INSENSITIVE'", "'INSERT'", "'INT'", "'INTEGER'", "'INTERSECT'", + "'FETCH'", "'FILTER'", "'FIRST_VALUE'", "'FLOAT'", "'FLOOR'", "'FOLLOWING'", + "'FOR'", "'FOREIGN'", "'FRAME_ROW'", "'FREE'", "'FRIDAY'", "'FROM'", + "'FULL'", "'FUNCTION'", "'FUNCTIONS'", "'FUSION'", "'GET'", "'GLOBAL'", + "'GRANT'", "'GROUP'", "'GROUPING'", "'GROUPS'", "'GROUP_CONCAT'", + "'HAVING'", "'HOLD'", "'HOUR'", "'IDENTITY'", "'IF'", "'ILIKE'", + "'IMPORT'", "'IN'", "'INCLUDE'", "'INDICATOR'", "'INITIAL'", "'INNER'", + "'INOUT'", "'INSENSITIVE'", "'INSERT'", "'INT'", "'INTEGER'", "'INTERSECT'", "'INTERSECTION'", "'INTERVAL'", "'INTO'", "'IS'", "'JOIN'", "'JSON'", "'JSON_ARRAY'", "'JSON_ARRAYAGG'", "'JSON_EXECUTION_PLAN'", "'JSON_EXISTS'", "'JSON_OBJECT'", "'JSON_OBJECTAGG'", "'JSON_QUERY'", "'JSON_VALUE'", @@ -631,28 +633,29 @@ export class FlinkSqlLexer extends antlr.Lexer { "'TIME_TRUNC'", "'TINYINT'", "'TO'", "'TRAILING'", "'TRANSLATE'", "'TRANSLATE_REGEX'", "'TRANSLATION'", "'TREAT'", "'TRIGGER'", "'TRIM'", "'TRIM_ARRAY'", "'TRUE'", "'TRUNCATE'", "'TRY_CAST'", "'TUESDAY'", - "'UESCAPE'", "'UNION'", "'UNIQUE'", "'UNKNOWN'", "'UNNEST'", "'UNPIVOT'", - "'UPDATE'", "'UPPER'", "'UPSERT'", "'USE'", "'USER'", "'USING'", - "'VALUE'", "'VALUES'", "'VALUE_OF'", "'VARBINARY'", "'VARCHAR'", - "'VARYING'", "'VAR_POP'", "'VAR_SAMP'", "'VERSIONING'", "'VIEWS'", - "'VIRTUAL'", "'WATERMARK'", "'WATERMARKS'", "'WEDNESDAY'", "'WEEKS'", - "'WHEN'", "'WHENEVER'", "'WHERE'", "'WIDTH_BUCKET'", "'WINDOW'", - "'WITH'", "'WITHIN'", "'WITHOUT'", "'YEAR'", "'ADD'", "'AFTER'", - "'ASC'", "'CASCADE'", "'CATALOG'", "'CENTURY'", "'CONFIG'", "'CONSTRAINTS'", - "'CUMULATE'", "'DATA'", "'DATABASE'", "'DAYS'", "'DECADE'", "'DESC'", - "'DESCRIPTOR'", "'DIV'", "'ENGINE'", "'EPOCH'", "'EXCLUDING'", "'FILE'", - "'FIRST'", "'GENERATED'", "'HOP'", "'HOURS'", "'IGNORE'", "'INCLUDING'", - "'JAR'", "'JARS'", "'JAVA'", "'KEY'", "'LAST'", "'LOAD'", "'MAP'", - "'MICROSECOND'", "'MILLENNIUM'", "'MILLISECOND'", "'MINUTES'", "'MONTHS'", - "'NANOSECOND'", "'NULLS'", "'OPTIONS'", "'PAST'", "'PLAN'", "'PRECEDING'", - "'PYTHON'", "'PYTHON_ARCHIVES'", "'PYTHON_DEPENDENCIES'", "'PYTHON_FILES'", - "'PYTHON_JAR'", "'PYTHON_PARAMETER'", "'PYTHON_REQUIREMENTS'", "'QUARTER'", - "'REMOVE'", "'RESTRICT'", "'SECONDS'", "'SESSION'", "'SETS'", "'SIZE'", - "'SLIDE'", "'STEP'", "'TEMPORARY'", "'TIMECOL'", "'TUMBLE'", "'UNLOAD'", - "'VIEW'", "'WEEK'", "'YEARS'", "'ZONE'", "'='", "'>'", "'<'", "'!'", - "'~'", "'|'", "'&'", "'^'", "'.'", "'['", "']'", "'('", "')'", "'{'", - "'}'", "','", "';'", "'@'", "'''", "'\"'", "'`'", "':'", "'*'", - "'_'", "'-'", "'+'", "'%'", "'||'", "'--'", "'/'", "'?'", "'=>'" + "'UESCAPE'", "'UNBOUNDED'", "'UNION'", "'UNIQUE'", "'UNKNOWN'", + "'UNNEST'", "'UNPIVOT'", "'UPDATE'", "'UPPER'", "'UPSERT'", "'USE'", + "'USER'", "'USING'", "'VALUE'", "'VALUES'", "'VALUE_OF'", "'VARBINARY'", + "'VARCHAR'", "'VARYING'", "'VAR_POP'", "'VAR_SAMP'", "'VERSIONING'", + "'VIEWS'", "'VIRTUAL'", "'WATERMARK'", "'WATERMARKS'", "'WEDNESDAY'", + "'WEEKS'", "'WHEN'", "'WHENEVER'", "'WHERE'", "'WIDTH_BUCKET'", + "'WINDOW'", "'WITH'", "'WITHIN'", "'WITHOUT'", "'YEAR'", "'ADD'", + "'AFTER'", "'ASC'", "'CASCADE'", "'CATALOG'", "'CENTURY'", "'CONFIG'", + "'CONSTRAINTS'", "'CUMULATE'", "'DATA'", "'DATABASE'", "'DAYS'", + "'DECADE'", "'DESC'", "'DESCRIPTOR'", "'DIV'", "'ENGINE'", "'EPOCH'", + "'EXCLUDING'", "'FILE'", "'FIRST'", "'GENERATED'", "'HOP'", "'HOURS'", + "'IGNORE'", "'INCLUDING'", "'JAR'", "'JARS'", "'JAVA'", "'KEY'", + "'LAST'", "'LOAD'", "'MAP'", "'MICROSECOND'", "'MILLENNIUM'", "'MILLISECOND'", + "'MINUTES'", "'MONTHS'", "'NANOSECOND'", "'NULLS'", "'OPTIONS'", + "'PAST'", "'PLAN'", "'PRECEDING'", "'PYTHON'", "'PYTHON_ARCHIVES'", + "'PYTHON_DEPENDENCIES'", "'PYTHON_FILES'", "'PYTHON_JAR'", "'PYTHON_PARAMETER'", + "'PYTHON_REQUIREMENTS'", "'QUARTER'", "'REMOVE'", "'RESTRICT'", + "'SECONDS'", "'SESSION'", "'SETS'", "'SIZE'", "'SLIDE'", "'STEP'", + "'TEMPORARY'", "'TIMECOL'", "'TUMBLE'", "'UNLOAD'", "'VIEW'", "'WEEK'", + "'YEARS'", "'ZONE'", "'='", "'>'", "'<'", "'!'", "'~'", "'|'", "'&'", + "'^'", "'.'", "'['", "']'", "'('", "')'", "'{'", "'}'", "','", "';'", + "'@'", "'''", "'\"'", "'`'", "':'", "'*'", "'_'", "'-'", "'+'", + "'%'", "'||'", "'--'", "'/'", "'?'", "'=>'" ]; public static readonly symbolicNames = [ @@ -686,31 +689,32 @@ export class FlinkSqlLexer extends antlr.Lexer { "KW_EXCEPT", "KW_EXEC", "KW_EXECUTE", "KW_EXISTS", "KW_EXP", "KW_EXPLAIN", "KW_EXTEND", "KW_EXTENDED", "KW_EXTERNAL", "KW_EXTRACT", "KW_FALSE", "KW_FETCH", "KW_FILTER", "KW_FIRST_VALUE", "KW_FLOAT", "KW_FLOOR", - "KW_FOR", "KW_FOREIGN", "KW_FRAME_ROW", "KW_FREE", "KW_FRIDAY", - "KW_FROM", "KW_FULL", "KW_FUNCTION", "KW_FUNCTIONS", "KW_FUSION", - "KW_GET", "KW_GLOBAL", "KW_GRANT", "KW_GROUP", "KW_GROUPING", "KW_GROUPS", - "KW_GROUP_CONCAT", "KW_HAVING", "KW_HOLD", "KW_HOUR", "KW_IDENTITY", - "KW_IF", "KW_ILIKE", "KW_IMPORT", "KW_IN", "KW_INCLUDE", "KW_INDICATOR", - "KW_INITIAL", "KW_INNER", "KW_INOUT", "KW_INSENSITIVE", "KW_INSERT", - "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERSECTION", "KW_INTERVAL", - "KW_INTO", "KW_IS", "KW_JOIN", "KW_JSON", "KW_JSON_ARRAY", "KW_JSON_ARRAYAGG", - "KW_JSON_EXECUTION_PLAN", "KW_JSON_EXISTS", "KW_JSON_OBJECT", "KW_JSON_OBJECTAGG", - "KW_JSON_QUERY", "KW_JSON_VALUE", "KW_LAG", "KW_LANGUAGE", "KW_LARGE", - "KW_LAST_VALUE", "KW_LATERAL", "KW_LEAD", "KW_LEADING", "KW_LEFT", - "KW_LIKE", "KW_LIKE_REGEX", "KW_LIMIT", "KW_LN", "KW_LOCAL", "KW_LOCALTIME", - "KW_LOCALTIMESTAMP", "KW_LOWER", "KW_MATCH", "KW_MATCHES", "KW_MATCH_NUMBER", - "KW_MATCH_RECOGNIZE", "KW_MAX", "KW_MEASURES", "KW_MEMBER", "KW_MERGE", - "KW_METADATA", "KW_METHOD", "KW_MIN", "KW_MINUS", "KW_MINUTE", "KW_MOD", - "KW_MODIFIES", "KW_MODIFY", "KW_MODULE", "KW_MODULES", "KW_MONDAY", - "KW_MONTH", "KW_MORE", "KW_MULTISET", "KW_NATIONAL", "KW_NATURAL", - "KW_NCHAR", "KW_NCLOB", "KW_NEW", "KW_NEXT", "KW_NO", "KW_NONE", - "KW_NORMALIZE", "KW_NOT", "KW_NTH_VALUE", "KW_NTILE", "KW_NULL", - "KW_NULLIF", "KW_NUMERIC", "KW_OCCURRENCES_REGEX", "KW_OCTET_LENGTH", - "KW_OF", "KW_OFFSET", "KW_OLD", "KW_OMIT", "KW_ON", "KW_ONE", "KW_ONLY", - "KW_OPEN", "KW_OR", "KW_ORDER", "KW_ORDINAL", "KW_OUT", "KW_OUTER", - "KW_OVER", "KW_OVERLAPS", "KW_OVERLAY", "KW_OVERWRITE", "KW_OVERWRITING", - "KW_PARAMETER", "KW_PARTITION", "KW_PARTITIONED", "KW_PARTITIONS", - "KW_PATTERN", "KW_PER", "KW_PERCENT", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", + "KW_FOLLOWING", "KW_FOR", "KW_FOREIGN", "KW_FRAME_ROW", "KW_FREE", + "KW_FRIDAY", "KW_FROM", "KW_FULL", "KW_FUNCTION", "KW_FUNCTIONS", + "KW_FUSION", "KW_GET", "KW_GLOBAL", "KW_GRANT", "KW_GROUP", "KW_GROUPING", + "KW_GROUPS", "KW_GROUP_CONCAT", "KW_HAVING", "KW_HOLD", "KW_HOUR", + "KW_IDENTITY", "KW_IF", "KW_ILIKE", "KW_IMPORT", "KW_IN", "KW_INCLUDE", + "KW_INDICATOR", "KW_INITIAL", "KW_INNER", "KW_INOUT", "KW_INSENSITIVE", + "KW_INSERT", "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERSECTION", + "KW_INTERVAL", "KW_INTO", "KW_IS", "KW_JOIN", "KW_JSON", "KW_JSON_ARRAY", + "KW_JSON_ARRAYAGG", "KW_JSON_EXECUTION_PLAN", "KW_JSON_EXISTS", + "KW_JSON_OBJECT", "KW_JSON_OBJECTAGG", "KW_JSON_QUERY", "KW_JSON_VALUE", + "KW_LAG", "KW_LANGUAGE", "KW_LARGE", "KW_LAST_VALUE", "KW_LATERAL", + "KW_LEAD", "KW_LEADING", "KW_LEFT", "KW_LIKE", "KW_LIKE_REGEX", + "KW_LIMIT", "KW_LN", "KW_LOCAL", "KW_LOCALTIME", "KW_LOCALTIMESTAMP", + "KW_LOWER", "KW_MATCH", "KW_MATCHES", "KW_MATCH_NUMBER", "KW_MATCH_RECOGNIZE", + "KW_MAX", "KW_MEASURES", "KW_MEMBER", "KW_MERGE", "KW_METADATA", + "KW_METHOD", "KW_MIN", "KW_MINUS", "KW_MINUTE", "KW_MOD", "KW_MODIFIES", + "KW_MODIFY", "KW_MODULE", "KW_MODULES", "KW_MONDAY", "KW_MONTH", + "KW_MORE", "KW_MULTISET", "KW_NATIONAL", "KW_NATURAL", "KW_NCHAR", + "KW_NCLOB", "KW_NEW", "KW_NEXT", "KW_NO", "KW_NONE", "KW_NORMALIZE", + "KW_NOT", "KW_NTH_VALUE", "KW_NTILE", "KW_NULL", "KW_NULLIF", "KW_NUMERIC", + "KW_OCCURRENCES_REGEX", "KW_OCTET_LENGTH", "KW_OF", "KW_OFFSET", + "KW_OLD", "KW_OMIT", "KW_ON", "KW_ONE", "KW_ONLY", "KW_OPEN", "KW_OR", + "KW_ORDER", "KW_ORDINAL", "KW_OUT", "KW_OUTER", "KW_OVER", "KW_OVERLAPS", + "KW_OVERLAY", "KW_OVERWRITE", "KW_OVERWRITING", "KW_PARAMETER", + "KW_PARTITION", "KW_PARTITIONED", "KW_PARTITIONS", "KW_PATTERN", + "KW_PER", "KW_PERCENT", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", "KW_PERCENT_RANK", "KW_PERIOD", "KW_PERMUTE", "KW_PIVOT", "KW_PORTION", "KW_POSITION", "KW_POSITION_REGEX", "KW_POWER", "KW_PRECEDES", "KW_PRECISION", "KW_PREPARE", "KW_PREV", "KW_PRIMARY", "KW_PROCEDURE", "KW_QUALIFY", @@ -736,35 +740,35 @@ export class FlinkSqlLexer extends antlr.Lexer { "KW_TIMEZONE_MINUTE", "KW_TIME_DIFF", "KW_TIME_TRUNC", "KW_TINYINT", "KW_TO", "KW_TRAILING", "KW_TRANSLATE", "KW_TRANSLATE_REGEX", "KW_TRANSLATION", "KW_TREAT", "KW_TRIGGER", "KW_TRIM", "KW_TRIM_ARRAY", "KW_TRUE", - "KW_TRUNCATE", "KW_TRY_CAST", "KW_TUESDAY", "KW_UESCAPE", "KW_UNION", - "KW_UNIQUE", "KW_UNKNOWN", "KW_UNNEST", "KW_UNPIVOT", "KW_UPDATE", - "KW_UPPER", "KW_UPSERT", "KW_USE", "KW_USER", "KW_USING", "KW_VALUE", - "KW_VALUES", "KW_VALUE_OF", "KW_VARBINARY", "KW_VARCHAR", "KW_VARYING", - "KW_VAR_POP", "KW_VAR_SAMP", "KW_VERSIONING", "KW_VIEWS", "KW_VIRTUAL", - "KW_WATERMARK", "KW_WATERMARKS", "KW_WEDNESDAY", "KW_WEEKS", "KW_WHEN", - "KW_WHENEVER", "KW_WHERE", "KW_WIDTH_BUCKET", "KW_WINDOW", "KW_WITH", - "KW_WITHIN", "KW_WITHOUT", "KW_YEAR", "KW_ADD", "KW_AFTER", "KW_ASC", - "KW_CASCADE", "KW_CATALOG", "KW_CENTURY", "KW_CONFIG", "KW_CONSTRAINTS", - "KW_CUMULATE", "KW_DATA", "KW_DATABASE", "KW_DAYS", "KW_DECADE", - "KW_DESC", "KW_DESCRIPTOR", "KW_DIV", "KW_ENGINE", "KW_EPOCH", "KW_EXCLUDING", - "KW_FILE", "KW_FIRST", "KW_GENERATED", "KW_HOP", "KW_HOURS", "KW_IGNORE", - "KW_INCLUDING", "KW_JAR", "KW_JARS", "KW_JAVA", "KW_KEY", "KW_LAST", - "KW_LOAD", "KW_MAP", "KW_MICROSECOND", "KW_MILLENNIUM", "KW_MILLISECOND", - "KW_MINUTES", "KW_MONTHS", "KW_NANOSECOND", "KW_NULLS", "KW_OPTIONS", - "KW_PAST", "KW_PLAN", "KW_PRECEDING", "KW_PYTHON", "KW_PYTHON_ARCHIVES", - "KW_PYTHON_DEPENDENCIES", "KW_PYTHON_FILES", "KW_PYTHON_JAR", "KW_PYTHON_PARAMETER", - "KW_PYTHON_REQUIREMENTS", "KW_QUARTER", "KW_REMOVE", "KW_RESTRICT", - "KW_SECONDS", "KW_SESSION", "KW_SETS", "KW_SIZE", "KW_SLIDE", "KW_STEP", - "KW_TEMPORARY", "KW_TIMECOL", "KW_TUMBLE", "KW_UNLOAD", "KW_VIEW", - "KW_WEEK", "KW_YEARS", "KW_ZONE", "EQUAL_SYMBOL", "GREATER_SYMBOL", - "LESS_SYMBOL", "EXCLAMATION_SYMBOL", "BIT_NOT_OP", "BIT_OR_OP", - "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", "RS_BRACKET", "LR_BRACKET", - "RR_BRACKET", "LB_BRACKET", "RB_BRACKET", "COMMA", "SEMICOLON", - "AT_SIGN", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", - "COLON_SYMB", "ASTERISK_SIGN", "UNDERLINE_SIGN", "HYPHEN_SIGN", - "ADD_SIGN", "PERCENT_SIGN", "DOUBLE_VERTICAL_SIGN", "DOUBLE_HYPHEN_SIGN", - "SLASH_SIGN", "QUESTION_MARK_SIGN", "DOUBLE_RIGHT_ARROW", "STRING_LITERAL", - "DIG_LITERAL", "REAL_LITERAL", "BIT_STRING", "ID_LITERAL" + "KW_TRUNCATE", "KW_TRY_CAST", "KW_TUESDAY", "KW_UESCAPE", "KW_UNBOUNDED", + "KW_UNION", "KW_UNIQUE", "KW_UNKNOWN", "KW_UNNEST", "KW_UNPIVOT", + "KW_UPDATE", "KW_UPPER", "KW_UPSERT", "KW_USE", "KW_USER", "KW_USING", + "KW_VALUE", "KW_VALUES", "KW_VALUE_OF", "KW_VARBINARY", "KW_VARCHAR", + "KW_VARYING", "KW_VAR_POP", "KW_VAR_SAMP", "KW_VERSIONING", "KW_VIEWS", + "KW_VIRTUAL", "KW_WATERMARK", "KW_WATERMARKS", "KW_WEDNESDAY", "KW_WEEKS", + "KW_WHEN", "KW_WHENEVER", "KW_WHERE", "KW_WIDTH_BUCKET", "KW_WINDOW", + "KW_WITH", "KW_WITHIN", "KW_WITHOUT", "KW_YEAR", "KW_ADD", "KW_AFTER", + "KW_ASC", "KW_CASCADE", "KW_CATALOG", "KW_CENTURY", "KW_CONFIG", + "KW_CONSTRAINTS", "KW_CUMULATE", "KW_DATA", "KW_DATABASE", "KW_DAYS", + "KW_DECADE", "KW_DESC", "KW_DESCRIPTOR", "KW_DIV", "KW_ENGINE", + "KW_EPOCH", "KW_EXCLUDING", "KW_FILE", "KW_FIRST", "KW_GENERATED", + "KW_HOP", "KW_HOURS", "KW_IGNORE", "KW_INCLUDING", "KW_JAR", "KW_JARS", + "KW_JAVA", "KW_KEY", "KW_LAST", "KW_LOAD", "KW_MAP", "KW_MICROSECOND", + "KW_MILLENNIUM", "KW_MILLISECOND", "KW_MINUTES", "KW_MONTHS", "KW_NANOSECOND", + "KW_NULLS", "KW_OPTIONS", "KW_PAST", "KW_PLAN", "KW_PRECEDING", + "KW_PYTHON", "KW_PYTHON_ARCHIVES", "KW_PYTHON_DEPENDENCIES", "KW_PYTHON_FILES", + "KW_PYTHON_JAR", "KW_PYTHON_PARAMETER", "KW_PYTHON_REQUIREMENTS", + "KW_QUARTER", "KW_REMOVE", "KW_RESTRICT", "KW_SECONDS", "KW_SESSION", + "KW_SETS", "KW_SIZE", "KW_SLIDE", "KW_STEP", "KW_TEMPORARY", "KW_TIMECOL", + "KW_TUMBLE", "KW_UNLOAD", "KW_VIEW", "KW_WEEK", "KW_YEARS", "KW_ZONE", + "EQUAL_SYMBOL", "GREATER_SYMBOL", "LESS_SYMBOL", "EXCLAMATION_SYMBOL", + "BIT_NOT_OP", "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", + "RS_BRACKET", "LR_BRACKET", "RR_BRACKET", "LB_BRACKET", "RB_BRACKET", + "COMMA", "SEMICOLON", "AT_SIGN", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", + "REVERSE_QUOTE_SYMB", "COLON_SYMB", "ASTERISK_SIGN", "UNDERLINE_SIGN", + "HYPHEN_SIGN", "ADD_SIGN", "PERCENT_SIGN", "DOUBLE_VERTICAL_SIGN", + "DOUBLE_HYPHEN_SIGN", "SLASH_SIGN", "QUESTION_MARK_SIGN", "DOUBLE_RIGHT_ARROW", + "STRING_LITERAL", "DIG_LITERAL", "REAL_LITERAL", "BIT_STRING", "ID_LITERAL" ]; public static readonly modeNames = [ @@ -801,31 +805,32 @@ export class FlinkSqlLexer extends antlr.Lexer { "KW_EXCEPT", "KW_EXEC", "KW_EXECUTE", "KW_EXISTS", "KW_EXP", "KW_EXPLAIN", "KW_EXTEND", "KW_EXTENDED", "KW_EXTERNAL", "KW_EXTRACT", "KW_FALSE", "KW_FETCH", "KW_FILTER", "KW_FIRST_VALUE", "KW_FLOAT", "KW_FLOOR", - "KW_FOR", "KW_FOREIGN", "KW_FRAME_ROW", "KW_FREE", "KW_FRIDAY", - "KW_FROM", "KW_FULL", "KW_FUNCTION", "KW_FUNCTIONS", "KW_FUSION", - "KW_GET", "KW_GLOBAL", "KW_GRANT", "KW_GROUP", "KW_GROUPING", "KW_GROUPS", - "KW_GROUP_CONCAT", "KW_HAVING", "KW_HOLD", "KW_HOUR", "KW_IDENTITY", - "KW_IF", "KW_ILIKE", "KW_IMPORT", "KW_IN", "KW_INCLUDE", "KW_INDICATOR", - "KW_INITIAL", "KW_INNER", "KW_INOUT", "KW_INSENSITIVE", "KW_INSERT", - "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERSECTION", "KW_INTERVAL", - "KW_INTO", "KW_IS", "KW_JOIN", "KW_JSON", "KW_JSON_ARRAY", "KW_JSON_ARRAYAGG", - "KW_JSON_EXECUTION_PLAN", "KW_JSON_EXISTS", "KW_JSON_OBJECT", "KW_JSON_OBJECTAGG", - "KW_JSON_QUERY", "KW_JSON_VALUE", "KW_LAG", "KW_LANGUAGE", "KW_LARGE", - "KW_LAST_VALUE", "KW_LATERAL", "KW_LEAD", "KW_LEADING", "KW_LEFT", - "KW_LIKE", "KW_LIKE_REGEX", "KW_LIMIT", "KW_LN", "KW_LOCAL", "KW_LOCALTIME", - "KW_LOCALTIMESTAMP", "KW_LOWER", "KW_MATCH", "KW_MATCHES", "KW_MATCH_NUMBER", - "KW_MATCH_RECOGNIZE", "KW_MAX", "KW_MEASURES", "KW_MEMBER", "KW_MERGE", - "KW_METADATA", "KW_METHOD", "KW_MIN", "KW_MINUS", "KW_MINUTE", "KW_MOD", - "KW_MODIFIES", "KW_MODIFY", "KW_MODULE", "KW_MODULES", "KW_MONDAY", - "KW_MONTH", "KW_MORE", "KW_MULTISET", "KW_NATIONAL", "KW_NATURAL", - "KW_NCHAR", "KW_NCLOB", "KW_NEW", "KW_NEXT", "KW_NO", "KW_NONE", - "KW_NORMALIZE", "KW_NOT", "KW_NTH_VALUE", "KW_NTILE", "KW_NULL", - "KW_NULLIF", "KW_NUMERIC", "KW_OCCURRENCES_REGEX", "KW_OCTET_LENGTH", - "KW_OF", "KW_OFFSET", "KW_OLD", "KW_OMIT", "KW_ON", "KW_ONE", "KW_ONLY", - "KW_OPEN", "KW_OR", "KW_ORDER", "KW_ORDINAL", "KW_OUT", "KW_OUTER", - "KW_OVER", "KW_OVERLAPS", "KW_OVERLAY", "KW_OVERWRITE", "KW_OVERWRITING", - "KW_PARAMETER", "KW_PARTITION", "KW_PARTITIONED", "KW_PARTITIONS", - "KW_PATTERN", "KW_PER", "KW_PERCENT", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", + "KW_FOLLOWING", "KW_FOR", "KW_FOREIGN", "KW_FRAME_ROW", "KW_FREE", + "KW_FRIDAY", "KW_FROM", "KW_FULL", "KW_FUNCTION", "KW_FUNCTIONS", + "KW_FUSION", "KW_GET", "KW_GLOBAL", "KW_GRANT", "KW_GROUP", "KW_GROUPING", + "KW_GROUPS", "KW_GROUP_CONCAT", "KW_HAVING", "KW_HOLD", "KW_HOUR", + "KW_IDENTITY", "KW_IF", "KW_ILIKE", "KW_IMPORT", "KW_IN", "KW_INCLUDE", + "KW_INDICATOR", "KW_INITIAL", "KW_INNER", "KW_INOUT", "KW_INSENSITIVE", + "KW_INSERT", "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERSECTION", + "KW_INTERVAL", "KW_INTO", "KW_IS", "KW_JOIN", "KW_JSON", "KW_JSON_ARRAY", + "KW_JSON_ARRAYAGG", "KW_JSON_EXECUTION_PLAN", "KW_JSON_EXISTS", + "KW_JSON_OBJECT", "KW_JSON_OBJECTAGG", "KW_JSON_QUERY", "KW_JSON_VALUE", + "KW_LAG", "KW_LANGUAGE", "KW_LARGE", "KW_LAST_VALUE", "KW_LATERAL", + "KW_LEAD", "KW_LEADING", "KW_LEFT", "KW_LIKE", "KW_LIKE_REGEX", + "KW_LIMIT", "KW_LN", "KW_LOCAL", "KW_LOCALTIME", "KW_LOCALTIMESTAMP", + "KW_LOWER", "KW_MATCH", "KW_MATCHES", "KW_MATCH_NUMBER", "KW_MATCH_RECOGNIZE", + "KW_MAX", "KW_MEASURES", "KW_MEMBER", "KW_MERGE", "KW_METADATA", + "KW_METHOD", "KW_MIN", "KW_MINUS", "KW_MINUTE", "KW_MOD", "KW_MODIFIES", + "KW_MODIFY", "KW_MODULE", "KW_MODULES", "KW_MONDAY", "KW_MONTH", + "KW_MORE", "KW_MULTISET", "KW_NATIONAL", "KW_NATURAL", "KW_NCHAR", + "KW_NCLOB", "KW_NEW", "KW_NEXT", "KW_NO", "KW_NONE", "KW_NORMALIZE", + "KW_NOT", "KW_NTH_VALUE", "KW_NTILE", "KW_NULL", "KW_NULLIF", "KW_NUMERIC", + "KW_OCCURRENCES_REGEX", "KW_OCTET_LENGTH", "KW_OF", "KW_OFFSET", + "KW_OLD", "KW_OMIT", "KW_ON", "KW_ONE", "KW_ONLY", "KW_OPEN", "KW_OR", + "KW_ORDER", "KW_ORDINAL", "KW_OUT", "KW_OUTER", "KW_OVER", "KW_OVERLAPS", + "KW_OVERLAY", "KW_OVERWRITE", "KW_OVERWRITING", "KW_PARAMETER", + "KW_PARTITION", "KW_PARTITIONED", "KW_PARTITIONS", "KW_PATTERN", + "KW_PER", "KW_PERCENT", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", "KW_PERCENT_RANK", "KW_PERIOD", "KW_PERMUTE", "KW_PIVOT", "KW_PORTION", "KW_POSITION", "KW_POSITION_REGEX", "KW_POWER", "KW_PRECEDES", "KW_PRECISION", "KW_PREPARE", "KW_PREV", "KW_PRIMARY", "KW_PROCEDURE", "KW_QUALIFY", @@ -851,37 +856,38 @@ export class FlinkSqlLexer extends antlr.Lexer { "KW_TIMEZONE_MINUTE", "KW_TIME_DIFF", "KW_TIME_TRUNC", "KW_TINYINT", "KW_TO", "KW_TRAILING", "KW_TRANSLATE", "KW_TRANSLATE_REGEX", "KW_TRANSLATION", "KW_TREAT", "KW_TRIGGER", "KW_TRIM", "KW_TRIM_ARRAY", "KW_TRUE", - "KW_TRUNCATE", "KW_TRY_CAST", "KW_TUESDAY", "KW_UESCAPE", "KW_UNION", - "KW_UNIQUE", "KW_UNKNOWN", "KW_UNNEST", "KW_UNPIVOT", "KW_UPDATE", - "KW_UPPER", "KW_UPSERT", "KW_USE", "KW_USER", "KW_USING", "KW_VALUE", - "KW_VALUES", "KW_VALUE_OF", "KW_VARBINARY", "KW_VARCHAR", "KW_VARYING", - "KW_VAR_POP", "KW_VAR_SAMP", "KW_VERSIONING", "KW_VIEWS", "KW_VIRTUAL", - "KW_WATERMARK", "KW_WATERMARKS", "KW_WEDNESDAY", "KW_WEEKS", "KW_WHEN", - "KW_WHENEVER", "KW_WHERE", "KW_WIDTH_BUCKET", "KW_WINDOW", "KW_WITH", - "KW_WITHIN", "KW_WITHOUT", "KW_YEAR", "KW_ADD", "KW_AFTER", "KW_ASC", - "KW_CASCADE", "KW_CATALOG", "KW_CENTURY", "KW_CONFIG", "KW_CONSTRAINTS", - "KW_CUMULATE", "KW_DATA", "KW_DATABASE", "KW_DAYS", "KW_DECADE", - "KW_DESC", "KW_DESCRIPTOR", "KW_DIV", "KW_ENGINE", "KW_EPOCH", "KW_EXCLUDING", - "KW_FILE", "KW_FIRST", "KW_GENERATED", "KW_HOP", "KW_HOURS", "KW_IGNORE", - "KW_INCLUDING", "KW_JAR", "KW_JARS", "KW_JAVA", "KW_KEY", "KW_LAST", - "KW_LOAD", "KW_MAP", "KW_MICROSECOND", "KW_MILLENNIUM", "KW_MILLISECOND", - "KW_MINUTES", "KW_MONTHS", "KW_NANOSECOND", "KW_NULLS", "KW_OPTIONS", - "KW_PAST", "KW_PLAN", "KW_PRECEDING", "KW_PYTHON", "KW_PYTHON_ARCHIVES", - "KW_PYTHON_DEPENDENCIES", "KW_PYTHON_FILES", "KW_PYTHON_JAR", "KW_PYTHON_PARAMETER", - "KW_PYTHON_REQUIREMENTS", "KW_QUARTER", "KW_REMOVE", "KW_RESTRICT", - "KW_SECONDS", "KW_SESSION", "KW_SETS", "KW_SIZE", "KW_SLIDE", "KW_STEP", - "KW_TEMPORARY", "KW_TIMECOL", "KW_TUMBLE", "KW_UNLOAD", "KW_VIEW", - "KW_WEEK", "KW_YEARS", "KW_ZONE", "EQUAL_SYMBOL", "GREATER_SYMBOL", - "LESS_SYMBOL", "EXCLAMATION_SYMBOL", "BIT_NOT_OP", "BIT_OR_OP", - "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", "RS_BRACKET", "LR_BRACKET", - "RR_BRACKET", "LB_BRACKET", "RB_BRACKET", "COMMA", "SEMICOLON", - "AT_SIGN", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", - "COLON_SYMB", "ASTERISK_SIGN", "UNDERLINE_SIGN", "HYPHEN_SIGN", - "ADD_SIGN", "PERCENT_SIGN", "DOUBLE_VERTICAL_SIGN", "DOUBLE_HYPHEN_SIGN", - "SLASH_SIGN", "QUESTION_MARK_SIGN", "DOUBLE_RIGHT_ARROW", "STRING_LITERAL", - "DIG_LITERAL", "REAL_LITERAL", "BIT_STRING", "ID_LITERAL", "JAR_FILE_PARTTARN", - "EXPONENT_NUM_PART", "ID_LITERAL_FRAG", "DEC_DIGIT", "DEC_LETTER", - "DQUOTA_STRING", "SQUOTA_STRING", "BIT_STRING_L", "BQUOTA_STRING", + "KW_TRUNCATE", "KW_TRY_CAST", "KW_TUESDAY", "KW_UESCAPE", "KW_UNBOUNDED", + "KW_UNION", "KW_UNIQUE", "KW_UNKNOWN", "KW_UNNEST", "KW_UNPIVOT", + "KW_UPDATE", "KW_UPPER", "KW_UPSERT", "KW_USE", "KW_USER", "KW_USING", + "KW_VALUE", "KW_VALUES", "KW_VALUE_OF", "KW_VARBINARY", "KW_VARCHAR", + "KW_VARYING", "KW_VAR_POP", "KW_VAR_SAMP", "KW_VERSIONING", "KW_VIEWS", + "KW_VIRTUAL", "KW_WATERMARK", "KW_WATERMARKS", "KW_WEDNESDAY", "KW_WEEKS", + "KW_WHEN", "KW_WHENEVER", "KW_WHERE", "KW_WIDTH_BUCKET", "KW_WINDOW", + "KW_WITH", "KW_WITHIN", "KW_WITHOUT", "KW_YEAR", "KW_ADD", "KW_AFTER", + "KW_ASC", "KW_CASCADE", "KW_CATALOG", "KW_CENTURY", "KW_CONFIG", + "KW_CONSTRAINTS", "KW_CUMULATE", "KW_DATA", "KW_DATABASE", "KW_DAYS", + "KW_DECADE", "KW_DESC", "KW_DESCRIPTOR", "KW_DIV", "KW_ENGINE", + "KW_EPOCH", "KW_EXCLUDING", "KW_FILE", "KW_FIRST", "KW_GENERATED", + "KW_HOP", "KW_HOURS", "KW_IGNORE", "KW_INCLUDING", "KW_JAR", "KW_JARS", + "KW_JAVA", "KW_KEY", "KW_LAST", "KW_LOAD", "KW_MAP", "KW_MICROSECOND", + "KW_MILLENNIUM", "KW_MILLISECOND", "KW_MINUTES", "KW_MONTHS", "KW_NANOSECOND", + "KW_NULLS", "KW_OPTIONS", "KW_PAST", "KW_PLAN", "KW_PRECEDING", + "KW_PYTHON", "KW_PYTHON_ARCHIVES", "KW_PYTHON_DEPENDENCIES", "KW_PYTHON_FILES", + "KW_PYTHON_JAR", "KW_PYTHON_PARAMETER", "KW_PYTHON_REQUIREMENTS", + "KW_QUARTER", "KW_REMOVE", "KW_RESTRICT", "KW_SECONDS", "KW_SESSION", + "KW_SETS", "KW_SIZE", "KW_SLIDE", "KW_STEP", "KW_TEMPORARY", "KW_TIMECOL", + "KW_TUMBLE", "KW_UNLOAD", "KW_VIEW", "KW_WEEK", "KW_YEARS", "KW_ZONE", + "EQUAL_SYMBOL", "GREATER_SYMBOL", "LESS_SYMBOL", "EXCLAMATION_SYMBOL", + "BIT_NOT_OP", "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", + "RS_BRACKET", "LR_BRACKET", "RR_BRACKET", "LB_BRACKET", "RB_BRACKET", + "COMMA", "SEMICOLON", "AT_SIGN", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", + "REVERSE_QUOTE_SYMB", "COLON_SYMB", "ASTERISK_SIGN", "UNDERLINE_SIGN", + "HYPHEN_SIGN", "ADD_SIGN", "PERCENT_SIGN", "DOUBLE_VERTICAL_SIGN", + "DOUBLE_HYPHEN_SIGN", "SLASH_SIGN", "QUESTION_MARK_SIGN", "DOUBLE_RIGHT_ARROW", + "STRING_LITERAL", "DIG_LITERAL", "REAL_LITERAL", "BIT_STRING", "ID_LITERAL", + "JAR_FILE_PARTTARN", "EXPONENT_NUM_PART", "ID_LITERAL_FRAG", "DEC_DIGIT", + "DEC_LETTER", "DQUOTA_STRING", "SQUOTA_STRING", "BIT_STRING_L", + "BQUOTA_STRING", ]; @@ -903,7 +909,7 @@ export class FlinkSqlLexer extends antlr.Lexer { public get modeNames(): string[] { return FlinkSqlLexer.modeNames; } public static readonly _serializedATN: number[] = [ - 4,0,542,5507,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7, + 4,0,544,5531,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7, 5,2,6,7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12, 2,13,7,13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19, 7,19,2,20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25, @@ -1000,1975 +1006,1984 @@ export class FlinkSqlLexer extends antlr.Lexer { 7,532,2,533,7,533,2,534,7,534,2,535,7,535,2,536,7,536,2,537,7,537, 2,538,7,538,2,539,7,539,2,540,7,540,2,541,7,541,2,542,7,542,2,543, 7,543,2,544,7,544,2,545,7,545,2,546,7,546,2,547,7,547,2,548,7,548, - 2,549,7,549,2,550,7,550,1,0,1,0,1,0,1,0,1,1,1,1,1,1,1,1,5,1,1112, - 8,1,10,1,12,1,1115,9,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,2,3,2,1125, - 8,2,1,2,5,2,1128,8,2,10,2,12,2,1131,9,2,1,2,3,2,1134,8,2,1,2,1,2, - 3,2,1138,8,2,1,2,1,2,1,2,1,2,3,2,1144,8,2,1,2,1,2,3,2,1148,8,2,3, - 2,1150,8,2,1,2,1,2,1,3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,5,1,5,1,5,1, - 5,1,5,1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7,1, - 7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,10,1,10, - 1,10,1,10,1,11,1,11,1,11,1,11,1,12,1,12,1,12,1,12,1,12,1,12,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,14,1,14,1,14,1,14, - 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, + 2,549,7,549,2,550,7,550,2,551,7,551,2,552,7,552,1,0,1,0,1,0,1,0, + 1,1,1,1,1,1,1,1,5,1,1116,8,1,10,1,12,1,1119,9,1,1,1,1,1,1,1,1,1, + 1,1,1,2,1,2,1,2,3,2,1129,8,2,1,2,5,2,1132,8,2,10,2,12,2,1135,9,2, + 1,2,3,2,1138,8,2,1,2,1,2,3,2,1142,8,2,1,2,1,2,1,2,1,2,3,2,1148,8, + 2,1,2,1,2,3,2,1152,8,2,3,2,1154,8,2,1,2,1,2,1,3,1,3,1,3,1,3,1,4, + 1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6, + 1,6,1,6,1,7,1,7,1,7,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,11,1,11,1,11,1,11,1,12,1,12, + 1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, + 1,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, + 1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, - 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,16,1,16,1,16,1,17, - 1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,18,1,18,1,18, - 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,19,1,19,1,19,1,20,1,20, - 1,20,1,20,1,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21, - 1,21,1,21,1,21,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,23,1,23,1,23, - 1,23,1,23,1,23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24, - 1,24,1,24,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25, - 1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26, - 1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,28,1,28,1,28,1,28,1,28,1,28, - 1,28,1,29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31, - 1,31,1,31,1,31,1,31,1,31,1,32,1,32,1,32,1,32,1,32,1,33,1,33,1,33, - 1,34,1,34,1,34,1,34,1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,36,1,36, - 1,36,1,36,1,36,1,36,1,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37, - 1,37,1,37,1,37,1,37,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38, - 1,39,1,39,1,39,1,39,1,39,1,40,1,40,1,40,1,40,1,40,1,41,1,41,1,41, - 1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,42,1,43,1,43, - 1,43,1,43,1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,1,44,1,44, - 1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,45, - 1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,47,1,47,1,47, - 1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47, - 1,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48, - 1,49,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,50,1,50,1,50,1,50, - 1,50,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52, - 1,52,1,52,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,54,1,54, - 1,54,1,54,1,54,1,54,1,54,1,54,1,55,1,55,1,55,1,55,1,55,1,55,1,55, - 1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,57,1,57,1,57,1,57,1,57, - 1,57,1,57,1,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,59,1,59, - 1,59,1,59,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, - 1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,62,1,62,1,62, - 1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63, - 1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,65, - 1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,66,1,67, - 1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67, - 1,68,1,68,1,68,1,68,1,68,1,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69, - 1,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70, - 1,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,72,1,72,1,72,1,72,1,72, - 1,72,1,73,1,73,1,73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74, - 1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,76,1,76, - 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76, - 1,76,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77, - 1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78, + 1,15,1,16,1,16,1,16,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17, + 1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, + 1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,21,1,21,1,21, + 1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,22,1,22, + 1,22,1,22,1,23,1,23,1,23,1,23,1,23,1,23,1,24,1,24,1,24,1,24,1,24, + 1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,25,1,25,1,25,1,25,1,25,1,25, + 1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26, + 1,26,1,26,1,26,1,26,1,26,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,28, + 1,28,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,30,1,30,1,30, + 1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,32,1,32,1,32, + 1,32,1,32,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,35,1,35, + 1,35,1,35,1,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,37,1,37,1,37, + 1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,38,1,38,1,38,1,38, + 1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,1,40,1,40,1,40, + 1,40,1,40,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42, + 1,42,1,42,1,42,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,44,1,44, + 1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44, + 1,45,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46, + 1,46,1,46,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47, + 1,47,1,47,1,47,1,47,1,47,1,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48, + 1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49,1,49,1,49,1,50,1,50, + 1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,51,1,51,1,51,1,51, + 1,51,1,52,1,52,1,52,1,52,1,52,1,52,1,53,1,53,1,53,1,53,1,53,1,53, + 1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,55,1,55, + 1,55,1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56, + 1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,60,1,60,1,60, + 1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61, + 1,61,1,61,1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63, + 1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,64, + 1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,66, + 1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67, + 1,67,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,68,1,69,1,69, + 1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70, + 1,70,1,70,1,70,1,70,1,70,1,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71, + 1,72,1,72,1,72,1,72,1,72,1,72,1,73,1,73,1,73,1,73,1,73,1,74,1,74, + 1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,75, + 1,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76, + 1,76,1,76,1,76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,1,77, + 1,77,1,77,1,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78, 1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78, - 1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79, - 1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,1,80, - 1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81, - 1,81,1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,82,1,82,1,82,1,82,1,82, - 1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83, - 1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,1,84,1,84, + 1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,79, + 1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80, + 1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,81, + 1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,82,1,82, + 1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82, + 1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83, 1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84, + 1,84,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85, 1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85, - 1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85, - 1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,86, - 1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1,87,1,87,1,87, - 1,87,1,88,1,88,1,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,1,89,1,89, - 1,89,1,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90,1,91,1,91,1,91,1,91, - 1,91,1,91,1,91,1,91,1,91,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92, - 1,92,1,92,1,92,1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,1,93,1,93, - 1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,94,1,94,1,94,1,94,1,94, - 1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95, - 1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,1,97, - 1,97,1,97,1,97,1,97,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98, - 1,98,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,100, - 1,100,1,100,1,100,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101, - 1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,103,1,103,1,103, - 1,103,1,103,1,103,1,103,1,103,1,104,1,104,1,104,1,104,1,104,1,104, - 1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,106,1,106,1,106, - 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,107,1,107,1,107, - 1,107,1,107,1,107,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108, - 1,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109, - 1,109,1,109,1,109,1,109,1,110,1,110,1,110,1,110,1,110,1,110,1,110, - 1,110,1,110,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111, - 1,111,1,111,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112, - 1,113,1,113,1,113,1,113,1,114,1,114,1,114,1,114,1,114,1,114,1,114, - 1,115,1,115,1,115,1,115,1,115,1,116,1,116,1,116,1,116,1,116,1,116, - 1,116,1,116,1,117,1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118, - 1,118,1,118,1,118,1,118,1,119,1,119,1,119,1,119,1,119,1,120,1,120, - 1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,122,1,122,1,122, - 1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,123,1,123,1,123,1,123, - 1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,125,1,125,1,125, - 1,125,1,125,1,125,1,125,1,126,1,126,1,126,1,126,1,126,1,126,1,126, - 1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127, - 1,127,1,127,1,127,1,127,1,128,1,128,1,128,1,128,1,128,1,128,1,129, - 1,129,1,129,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,130,1,130, - 1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,133,1,133,1,133,1,133,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,137, - 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,1,139,1,139,1,139,1,139,1,139,1,139, - 1,140,1,140,1,140,1,140,1,140,1,140,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,143,1,143,1,143,1,143,1,143,1,143,1,144,1,144, - 1,144,1,144,1,144,1,144,1,145,1,145,1,145,1,145,1,146,1,146,1,146, - 1,146,1,146,1,146,1,146,1,146,1,147,1,147,1,147,1,147,1,147,1,147, - 1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,148,1,149,1,149, - 1,149,1,149,1,149,1,149,1,149,1,150,1,150,1,150,1,150,1,150,1,151, - 1,151,1,151,1,151,1,151,1,152,1,152,1,152,1,152,1,152,1,152,1,152, - 1,152,1,152,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153, - 1,153,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,155,1,155,1,155, - 1,155,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,157,1,157,1,157, - 1,157,1,157,1,157,1,158,1,158,1,158,1,158,1,158,1,158,1,159,1,159, - 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,160,1,160,1,160,1,160, - 1,160,1,160,1,160,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,1,161,1,161,1,161,1,161,1,162,1,162,1,162,1,162,1,162,1,162, - 1,162,1,163,1,163,1,163,1,163,1,163,1,164,1,164,1,164,1,164,1,164, - 1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,166,1,166, - 1,166,1,167,1,167,1,167,1,167,1,167,1,167,1,168,1,168,1,168,1,168, - 1,168,1,168,1,168,1,169,1,169,1,169,1,170,1,170,1,170,1,170,1,170, - 1,170,1,170,1,170,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171, - 1,171,1,171,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,173, - 1,173,1,173,1,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174,1,174, - 1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, - 1,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,177,1,177,1,177, - 1,177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,179,1,179, - 1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,180,1,180,1,180, - 1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,181, - 1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,182,1,182,1,182, - 1,182,1,182,1,183,1,183,1,183,1,184,1,184,1,184,1,184,1,184,1,185, - 1,185,1,185,1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,186,1,186, - 1,186,1,186,1,186,1,186,1,187,1,187,1,187,1,187,1,187,1,187,1,187, - 1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,188,1,188,1,188,1,188, + 1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,86, + 1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,87, + 1,87,1,87,1,87,1,87,1,87,1,87,1,88,1,88,1,88,1,88,1,88,1,88,1,89, + 1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,90,1,90,1,90,1,90, + 1,90,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,92,1,92,1,92, + 1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,93,1,93, + 1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93, + 1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95, + 1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,97, + 1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,98,1,98,1,98,1,98, + 1,98,1,98,1,98,1,98,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,99,1,99, + 1,99,1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,101,1,101,1,101,1, + 101,1,101,1,101,1,101,1,101,1,102,1,102,1,102,1,102,1,102,1,102, + 1,102,1,102,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,104, + 1,104,1,104,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105, + 1,105,1,105,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106, + 1,106,1,106,1,107,1,107,1,107,1,107,1,107,1,107,1,108,1,108,1,108, + 1,108,1,108,1,108,1,108,1,108,1,108,1,109,1,109,1,109,1,109,1,109, + 1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,110,1,110, + 1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,111,1,111,1,111,1,111, + 1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,112,1,112,1,112,1,112, + 1,112,1,112,1,112,1,112,1,112,1,113,1,113,1,113,1,113,1,114,1,114, + 1,114,1,114,1,114,1,114,1,114,1,115,1,115,1,115,1,115,1,115,1,116, + 1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117, + 1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,119,1,119, + 1,119,1,119,1,119,1,120,1,120,1,120,1,120,1,120,1,120,1,121,1,121, + 1,121,1,121,1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122, + 1,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123, + 1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,124,1,124,1,124,1,124, + 1,124,1,124,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,126,1,126, + 1,126,1,126,1,126,1,126,1,126,1,127,1,127,1,127,1,127,1,127,1,127, + 1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,128,1,128, + 1,128,1,128,1,128,1,128,1,129,1,129,1,129,1,129,1,129,1,129,1,129, + 1,130,1,130,1,130,1,130,1,130,1,131,1,131,1,131,1,131,1,131,1,131, + 1,131,1,131,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,133,1,133, + 1,133,1,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,136,1,136,1,136,1,136,1,136, + 1,136,1,136,1,136,1,136,1,137,1,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,139, + 1,139,1,139,1,139,1,139,1,139,1,140,1,140,1,140,1,140,1,140,1,140, + 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,142,1,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,143,1,143,1,143, + 1,143,1,143,1,143,1,144,1,144,1,144,1,144,1,144,1,144,1,145,1,145, + 1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,146,1,146,1,146, + 1,146,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,149,1,149,1,149, + 1,149,1,149,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,151,1,151, + 1,151,1,151,1,151,1,152,1,152,1,152,1,152,1,152,1,153,1,153,1,153, + 1,153,1,153,1,153,1,153,1,153,1,153,1,154,1,154,1,154,1,154,1,154, + 1,154,1,154,1,154,1,154,1,154,1,155,1,155,1,155,1,155,1,155,1,155, + 1,155,1,156,1,156,1,156,1,156,1,157,1,157,1,157,1,157,1,157,1,157, + 1,157,1,158,1,158,1,158,1,158,1,158,1,158,1,159,1,159,1,159,1,159, + 1,159,1,159,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160, + 1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,162,1,162,1,162,1,162, + 1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,163,1,163, + 1,163,1,163,1,163,1,163,1,163,1,164,1,164,1,164,1,164,1,164,1,165, + 1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,166,1,166,1,166,1,166, + 1,166,1,166,1,167,1,167,1,167,1,168,1,168,1,168,1,168,1,168,1,168, + 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,170,1,170,1,170,1,171, + 1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,172,1,172,1,172,1,172, + 1,172,1,172,1,172,1,172,1,172,1,172,1,173,1,173,1,173,1,173,1,173, + 1,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174,1,174,1,175,1,175, + 1,175,1,175,1,175,1,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176, + 1,176,1,176,1,176,1,176,1,176,1,177,1,177,1,177,1,177,1,177,1,177, + 1,177,1,178,1,178,1,178,1,178,1,179,1,179,1,179,1,179,1,179,1,179, + 1,179,1,179,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180, + 1,180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181, + 1,181,1,181,1,181,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, + 1,182,1,183,1,183,1,183,1,183,1,183,1,184,1,184,1,184,1,185,1,185, + 1,185,1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,187,1,187,1,187, + 1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,188,1,188,1,188, 1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188, - 1,188,1,188,1,188,1,188,1,188,1,189,1,189,1,189,1,189,1,189,1,189, - 1,189,1,189,1,189,1,189,1,189,1,189,1,190,1,190,1,190,1,190,1,190, - 1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,191,1,191,1,191,1,191, + 1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189, + 1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,190,1,190, + 1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,191, 1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191, 1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192, - 1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193, - 1,194,1,194,1,194,1,194,1,195,1,195,1,195,1,195,1,195,1,195,1,195, - 1,195,1,195,1,196,1,196,1,196,1,196,1,196,1,196,1,197,1,197,1,197, - 1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,198,1,198,1,198, - 1,198,1,198,1,198,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,200, - 1,200,1,200,1,200,1,200,1,200,1,200,1,200,1,201,1,201,1,201,1,201, - 1,201,1,202,1,202,1,202,1,202,1,202,1,203,1,203,1,203,1,203,1,203, - 1,203,1,203,1,203,1,203,1,203,1,203,1,204,1,204,1,204,1,204,1,204, - 1,204,1,205,1,205,1,205,1,206,1,206,1,206,1,206,1,206,1,206,1,207, - 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,208,1,208, - 1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 1,208,1,208,1,209,1,209,1,209,1,209,1,209,1,209,1,210,1,210,1,210, - 1,210,1,210,1,210,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211, - 1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212, - 1,212,1,212,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,214,1,214,1,214,1,214, - 1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,216,1,216, - 1,216,1,216,1,216,1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,217, - 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,219,1,219, - 1,219,1,219,1,219,1,219,1,219,1,220,1,220,1,220,1,220,1,221,1,221, - 1,221,1,221,1,221,1,221,1,222,1,222,1,222,1,222,1,222,1,222,1,222, - 1,223,1,223,1,223,1,223,1,224,1,224,1,224,1,224,1,224,1,224,1,224, - 1,224,1,224,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,226,1,226, - 1,226,1,226,1,226,1,226,1,226,1,227,1,227,1,227,1,227,1,227,1,227, - 1,227,1,227,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,229,1,229, - 1,229,1,229,1,229,1,229,1,230,1,230,1,230,1,230,1,230,1,231,1,231, - 1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,232,1,232,1,232,1,232, - 1,232,1,232,1,232,1,232,1,232,1,233,1,233,1,233,1,233,1,233,1,233, - 1,233,1,233,1,234,1,234,1,234,1,234,1,234,1,234,1,235,1,235,1,235, - 1,235,1,235,1,235,1,236,1,236,1,236,1,236,1,237,1,237,1,237,1,237, - 1,237,1,238,1,238,1,238,1,239,1,239,1,239,1,239,1,239,1,240,1,240, - 1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,241,1,241,1,241, - 1,241,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242, - 1,243,1,243,1,243,1,243,1,243,1,243,1,244,1,244,1,244,1,244,1,244, - 1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,1,246,1,247,1,247,1,247,1,247,1,247,1,247,1,247, - 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, + 1,192,1,192,1,192,1,192,1,193,1,193,1,193,1,193,1,193,1,193,1,193, + 1,193,1,193,1,193,1,193,1,194,1,194,1,194,1,194,1,194,1,194,1,194, + 1,194,1,194,1,194,1,194,1,195,1,195,1,195,1,195,1,196,1,196,1,196, + 1,196,1,196,1,196,1,196,1,196,1,196,1,197,1,197,1,197,1,197,1,197, + 1,197,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,198, + 1,198,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,200,1,200, + 1,200,1,200,1,200,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, + 1,202,1,202,1,202,1,202,1,202,1,203,1,203,1,203,1,203,1,203,1,204, + 1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,205, + 1,205,1,205,1,205,1,205,1,205,1,206,1,206,1,206,1,207,1,207,1,207, + 1,207,1,207,1,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, + 1,208,1,208,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, + 1,209,1,209,1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,210,1,210, + 1,210,1,211,1,211,1,211,1,211,1,211,1,211,1,212,1,212,1,212,1,212, + 1,212,1,212,1,212,1,212,1,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,213,1,213,1,213,1,213,1,213,1,213,1,214,1,214,1,214,1,214,1,214, + 1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214, + 1,215,1,215,1,215,1,215,1,216,1,216,1,216,1,216,1,216,1,216,1,216, + 1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,217,1,217,1,218,1,218, + 1,218,1,218,1,218,1,218,1,219,1,219,1,219,1,219,1,219,1,219,1,219, + 1,219,1,219,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,221,1,221, + 1,221,1,221,1,222,1,222,1,222,1,222,1,222,1,222,1,223,1,223,1,223, + 1,223,1,223,1,223,1,223,1,224,1,224,1,224,1,224,1,225,1,225,1,225, + 1,225,1,225,1,225,1,225,1,225,1,225,1,226,1,226,1,226,1,226,1,226, + 1,226,1,226,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,228,1,228, + 1,228,1,228,1,228,1,228,1,228,1,228,1,229,1,229,1,229,1,229,1,229, + 1,229,1,229,1,230,1,230,1,230,1,230,1,230,1,230,1,231,1,231,1,231, + 1,231,1,231,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232, + 1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,234,1,234, + 1,234,1,234,1,234,1,234,1,234,1,234,1,235,1,235,1,235,1,235,1,235, + 1,235,1,236,1,236,1,236,1,236,1,236,1,236,1,237,1,237,1,237,1,237, + 1,238,1,238,1,238,1,238,1,238,1,239,1,239,1,239,1,240,1,240,1,240, + 1,240,1,240,1,241,1,241,1,241,1,241,1,241,1,241,1,241,1,241,1,241, + 1,241,1,242,1,242,1,242,1,242,1,243,1,243,1,243,1,243,1,243,1,243, + 1,243,1,243,1,243,1,243,1,244,1,244,1,244,1,244,1,244,1,244,1,245, + 1,245,1,245,1,245,1,245,1,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,248,1,248,1,248, 1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248, - 1,248,1,248,1,249,1,249,1,249,1,250,1,250,1,250,1,250,1,250,1,250, - 1,250,1,251,1,251,1,251,1,251,1,252,1,252,1,252,1,252,1,252,1,253, - 1,253,1,253,1,254,1,254,1,254,1,254,1,255,1,255,1,255,1,255,1,255, - 1,256,1,256,1,256,1,256,1,256,1,257,1,257,1,257,1,258,1,258,1,258, - 1,258,1,258,1,258,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259, - 1,260,1,260,1,260,1,260,1,261,1,261,1,261,1,261,1,261,1,261,1,262, - 1,262,1,262,1,262,1,262,1,263,1,263,1,263,1,263,1,263,1,263,1,263, - 1,263,1,263,1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,265, - 1,265,1,265,1,265,1,265,1,265,1,265,1,265,1,265,1,265,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,267, - 1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,268,1,268, - 1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,269,1,269,1,269, - 1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,270,1,270, - 1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,271,1,271, - 1,271,1,271,1,271,1,271,1,271,1,271,1,272,1,272,1,272,1,272,1,273, - 1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,274,1,274,1,274,1,274, - 1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274, - 1,274,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275, - 1,275,1,275,1,275,1,275,1,275,1,275,1,276,1,276,1,276,1,276,1,276, - 1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,277,1,277,1,277, - 1,277,1,277,1,277,1,277,1,278,1,278,1,278,1,278,1,278,1,278,1,278, - 1,278,1,279,1,279,1,279,1,279,1,279,1,279,1,280,1,280,1,280,1,280, - 1,280,1,280,1,280,1,280,1,281,1,281,1,281,1,281,1,281,1,281,1,281, - 1,281,1,281,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282, + 1,248,1,248,1,248,1,248,1,249,1,249,1,249,1,249,1,249,1,249,1,249, + 1,249,1,249,1,249,1,249,1,249,1,249,1,250,1,250,1,250,1,251,1,251, + 1,251,1,251,1,251,1,251,1,251,1,252,1,252,1,252,1,252,1,253,1,253, + 1,253,1,253,1,253,1,254,1,254,1,254,1,255,1,255,1,255,1,255,1,256, + 1,256,1,256,1,256,1,256,1,257,1,257,1,257,1,257,1,257,1,258,1,258, + 1,258,1,259,1,259,1,259,1,259,1,259,1,259,1,260,1,260,1,260,1,260, + 1,260,1,260,1,260,1,260,1,261,1,261,1,261,1,261,1,262,1,262,1,262, + 1,262,1,262,1,262,1,263,1,263,1,263,1,263,1,263,1,264,1,264,1,264, + 1,264,1,264,1,264,1,264,1,264,1,264,1,265,1,265,1,265,1,265,1,265, + 1,265,1,265,1,265,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267, + 1,267,1,267,1,267,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268, + 1,268,1,268,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269, + 1,269,1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270, + 1,270,1,270,1,271,1,271,1,271,1,271,1,271,1,271,1,271,1,271,1,271, + 1,271,1,271,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,273, + 1,273,1,273,1,273,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274, + 1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275, + 1,275,1,275,1,275,1,275,1,275,1,276,1,276,1,276,1,276,1,276,1,276, + 1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,277, + 1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277, + 1,277,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,279,1,279,1,279, + 1,279,1,279,1,279,1,279,1,279,1,280,1,280,1,280,1,280,1,280,1,280, + 1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,282,1,282,1,282, 1,282,1,282,1,282,1,282,1,282,1,282,1,283,1,283,1,283,1,283,1,283, - 1,283,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,285, - 1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,286,1,286, - 1,286,1,286,1,286,1,286,1,286,1,286,1,287,1,287,1,287,1,287,1,287, - 1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,289,1,289,1,289, - 1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,290,1,290,1,290,1,290, - 1,290,1,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291,1,291,1,291, - 1,291,1,291,1,292,1,292,1,292,1,292,1,292,1,292,1,293,1,293,1,293, - 1,293,1,293,1,294,1,294,1,294,1,294,1,295,1,295,1,295,1,295,1,295, - 1,295,1,296,1,296,1,296,1,296,1,296,1,297,1,297,1,297,1,297,1,297, - 1,297,1,297,1,297,1,297,1,297,1,298,1,298,1,298,1,298,1,299,1,299, - 1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,300,1,300, - 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,301, - 1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,302,1,302, - 1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,303,1,303,1,303, - 1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,304,1,304,1,304, - 1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304, - 1,304,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,306,1,306, - 1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,307,1,307, - 1,307,1,307,1,307,1,307,1,307,1,307,1,307,1,308,1,308,1,308,1,308, - 1,308,1,308,1,308,1,308,1,308,1,309,1,309,1,309,1,309,1,309,1,309, - 1,309,1,309,1,309,1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310, - 1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,312,1,312,1,312,1,312, - 1,312,1,312,1,313,1,313,1,313,1,313,1,313,1,313,1,313,1,314,1,314, - 1,314,1,314,1,314,1,314,1,314,1,315,1,315,1,315,1,315,1,315,1,315, - 1,315,1,315,1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,317,1,317, - 1,317,1,317,1,317,1,317,1,318,1,318,1,318,1,318,1,318,1,318,1,319, - 1,319,1,319,1,319,1,319,1,319,1,319,1,319,1,319,1,320,1,320,1,320, - 1,320,1,320,1,320,1,320,1,321,1,321,1,321,1,321,1,322,1,322,1,322, - 1,322,1,322,1,323,1,323,1,323,1,323,1,323,1,323,1,323,1,323,1,323, - 1,323,1,323,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,325, - 1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,326,1,326, - 1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,327, - 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, - 1,327,1,328,1,328,1,328,1,328,1,328,1,328,1,328,1,328,1,328,1,329, - 1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,329,1,330,1,330, - 1,330,1,330,1,330,1,330,1,331,1,331,1,331,1,331,1,331,1,331,1,332, - 1,332,1,332,1,332,1,332,1,332,1,332,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,335,1,335, - 1,335,1,335,1,335,1,336,1,336,1,336,1,336,1,336,1,336,1,336,1,337, - 1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,338,1,338, - 1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,339,1,339,1,339, - 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,340, - 1,340,1,340,1,340,1,341,1,341,1,341,1,341,1,341,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,1,343,1,343,1,343,1,343,1,343,1,344, - 1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,345,1,345,1,345, - 1,345,1,345,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346, - 1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347, - 1,347,1,347,1,348,1,348,1,348,1,348,1,349,1,349,1,349,1,349,1,349, - 1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,350,1,350,1,350, - 1,350,1,350,1,350,1,350,1,350,1,350,1,351,1,351,1,351,1,351,1,351, - 1,351,1,351,1,351,1,351,1,351,1,351,1,352,1,352,1,352,1,352,1,352, - 1,353,1,353,1,353,1,353,1,353,1,353,1,354,1,354,1,354,1,354,1,354, - 1,354,1,354,1,354,1,354,1,354,1,355,1,355,1,355,1,355,1,355,1,355, - 1,355,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356, - 1,356,1,357,1,357,1,357,1,357,1,357,1,357,1,357,1,357,1,357,1,357, - 1,357,1,358,1,358,1,358,1,358,1,358,1,358,1,358,1,358,1,358,1,358, - 1,358,1,358,1,359,1,359,1,359,1,359,1,359,1,359,1,359,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,361,1,361,1,361,1,361,1,361,1,361, - 1,361,1,361,1,361,1,361,1,361,1,362,1,362,1,362,1,362,1,362,1,362, - 1,362,1,362,1,362,1,362,1,362,1,362,1,363,1,363,1,363,1,363,1,363, - 1,363,1,363,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364, - 1,364,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, - 1,365,1,365,1,365,1,365,1,365,1,365,1,366,1,366,1,366,1,366,1,366, - 1,366,1,366,1,366,1,366,1,367,1,367,1,367,1,367,1,368,1,368,1,368, - 1,368,1,368,1,368,1,368,1,369,1,369,1,369,1,369,1,369,1,369,1,369, - 1,369,1,369,1,369,1,370,1,370,1,370,1,370,1,370,1,370,1,370,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372, - 1,372,1,373,1,373,1,373,1,373,1,373,1,373,1,374,1,374,1,374,1,374, - 1,374,1,374,1,374,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375, - 1,375,1,375,1,375,1,375,1,376,1,376,1,376,1,376,1,376,1,377,1,377, - 1,377,1,377,1,377,1,377,1,377,1,377,1,377,1,378,1,378,1,378,1,378, - 1,378,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379, - 1,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,284, + 1,284,1,284,1,284,1,284,1,284,1,285,1,285,1,285,1,285,1,285,1,285, + 1,285,1,285,1,285,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286, + 1,286,1,286,1,287,1,287,1,287,1,287,1,287,1,287,1,287,1,287,1,288, + 1,288,1,288,1,288,1,288,1,289,1,289,1,289,1,289,1,289,1,289,1,289, + 1,289,1,290,1,290,1,290,1,290,1,290,1,290,1,290,1,290,1,290,1,290, + 1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,292,1,292,1,292, + 1,292,1,292,1,292,1,292,1,292,1,292,1,293,1,293,1,293,1,293,1,293, + 1,293,1,294,1,294,1,294,1,294,1,294,1,295,1,295,1,295,1,295,1,296, + 1,296,1,296,1,296,1,296,1,296,1,297,1,297,1,297,1,297,1,297,1,298, + 1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,299,1,299, + 1,299,1,299,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300, + 1,300,1,300,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301, + 1,301,1,301,1,301,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302, + 1,302,1,302,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303, + 1,303,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304, + 1,304,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305, + 1,305,1,305,1,305,1,305,1,305,1,306,1,306,1,306,1,306,1,306,1,306, + 1,306,1,306,1,307,1,307,1,307,1,307,1,307,1,307,1,307,1,307,1,307, + 1,307,1,307,1,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308, + 1,309,1,309,1,309,1,309,1,309,1,309,1,309,1,309,1,309,1,310,1,310, + 1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,311,1,311,1,311,1,311, + 1,311,1,311,1,311,1,311,1,312,1,312,1,312,1,312,1,312,1,312,1,312, + 1,313,1,313,1,313,1,313,1,313,1,313,1,314,1,314,1,314,1,314,1,314, + 1,314,1,314,1,315,1,315,1,315,1,315,1,315,1,315,1,315,1,316,1,316, + 1,316,1,316,1,316,1,316,1,316,1,316,1,317,1,317,1,317,1,317,1,317, + 1,317,1,317,1,318,1,318,1,318,1,318,1,318,1,318,1,319,1,319,1,319, + 1,319,1,319,1,319,1,320,1,320,1,320,1,320,1,320,1,320,1,320,1,320, + 1,320,1,321,1,321,1,321,1,321,1,321,1,321,1,321,1,322,1,322,1,322, + 1,322,1,323,1,323,1,323,1,323,1,323,1,324,1,324,1,324,1,324,1,324, + 1,324,1,324,1,324,1,324,1,324,1,324,1,325,1,325,1,325,1,325,1,325, + 1,325,1,325,1,325,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326, + 1,326,1,326,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, + 1,327,1,327,1,327,1,328,1,328,1,328,1,328,1,328,1,328,1,328,1,328, + 1,328,1,328,1,328,1,328,1,328,1,329,1,329,1,329,1,329,1,329,1,329, + 1,329,1,329,1,329,1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330, + 1,330,1,330,1,331,1,331,1,331,1,331,1,331,1,331,1,332,1,332,1,332, + 1,332,1,332,1,332,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,334, + 1,334,1,334,1,334,1,334,1,334,1,334,1,335,1,335,1,335,1,335,1,335, + 1,335,1,335,1,336,1,336,1,336,1,336,1,336,1,337,1,337,1,337,1,337, + 1,337,1,337,1,337,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, + 1,338,1,338,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340, + 1,340,1,340,1,340,1,341,1,341,1,341,1,341,1,342,1,342,1,342,1,342, + 1,342,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,344,1,344, + 1,344,1,344,1,344,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345, + 1,345,1,346,1,346,1,346,1,346,1,346,1,347,1,347,1,347,1,347,1,347, + 1,347,1,347,1,347,1,347,1,348,1,348,1,348,1,348,1,348,1,348,1,348, + 1,348,1,348,1,348,1,348,1,348,1,348,1,349,1,349,1,349,1,349,1,350, + 1,350,1,350,1,350,1,350,1,350,1,350,1,350,1,350,1,350,1,350,1,350, + 1,350,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,352, + 1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,353, + 1,353,1,353,1,353,1,353,1,354,1,354,1,354,1,354,1,354,1,354,1,355, + 1,355,1,355,1,355,1,355,1,355,1,355,1,355,1,355,1,355,1,356,1,356, + 1,356,1,356,1,356,1,356,1,356,1,357,1,357,1,357,1,357,1,357,1,357, + 1,357,1,357,1,357,1,357,1,357,1,358,1,358,1,358,1,358,1,358,1,358, + 1,358,1,358,1,358,1,358,1,358,1,359,1,359,1,359,1,359,1,359,1,359, + 1,359,1,359,1,359,1,359,1,359,1,359,1,360,1,360,1,360,1,360,1,360, + 1,360,1,360,1,361,1,361,1,361,1,361,1,361,1,361,1,361,1,362,1,362, + 1,362,1,362,1,362,1,362,1,362,1,362,1,362,1,362,1,362,1,363,1,363, + 1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,364, + 1,364,1,364,1,364,1,364,1,364,1,364,1,365,1,365,1,365,1,365,1,365, + 1,365,1,365,1,365,1,365,1,365,1,366,1,366,1,366,1,366,1,366,1,366, + 1,366,1,366,1,366,1,366,1,366,1,366,1,366,1,366,1,366,1,366,1,367, + 1,367,1,367,1,367,1,367,1,367,1,367,1,367,1,367,1,368,1,368,1,368, + 1,368,1,369,1,369,1,369,1,369,1,369,1,369,1,369,1,370,1,370,1,370, + 1,370,1,370,1,370,1,370,1,370,1,370,1,370,1,371,1,371,1,371,1,371, + 1,371,1,371,1,371,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372, + 1,372,1,372,1,372,1,372,1,373,1,373,1,373,1,373,1,373,1,373,1,373, + 1,373,1,373,1,373,1,373,1,373,1,374,1,374,1,374,1,374,1,374,1,374, + 1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,376,1,376,1,376,1,376, + 1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,377,1,377,1,377, + 1,377,1,377,1,378,1,378,1,378,1,378,1,378,1,378,1,378,1,378,1,378, + 1,379,1,379,1,379,1,379,1,379,1,380,1,380,1,380,1,380,1,380,1,380, 1,380,1,380,1,380,1,380,1,381,1,381,1,381,1,381,1,381,1,381,1,381, - 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,382,1,382,1,382,1,382, + 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,382,1,382,1,382, 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,384,1,384,1,384,1,384,1,384,1,384,1,384, - 1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,385,1,385, - 1,385,1,385,1,385,1,385,1,385,1,385,1,385,1,385,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,387,1,387,1,387, - 1,387,1,387,1,387,1,387,1,387,1,388,1,388,1,388,1,389,1,389,1,389, - 1,389,1,389,1,389,1,389,1,389,1,389,1,390,1,390,1,390,1,390,1,390, - 1,390,1,390,1,390,1,390,1,390,1,391,1,391,1,391,1,391,1,391,1,391, - 1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,392, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,384,1,384,1,384,1,384,1,384,1,384, + 1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,385,1,385,1,385, + 1,385,1,385,1,385,1,385,1,385,1,385,1,385,1,385,1,385,1,385,1,385, + 1,385,1,385,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386, + 1,386,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,389,1,389, + 1,389,1,390,1,390,1,390,1,390,1,390,1,390,1,390,1,390,1,390,1,391, + 1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,392,1,392, 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,393,1,393,1,393,1,393,1,393,1,393,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,394,1,395,1,395,1,395,1,395,1,395,1,396,1,396,1,396, - 1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,397,1,397,1,397, - 1,397,1,397,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398, - 1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,400,1,400, - 1,400,1,400,1,400,1,400,1,400,1,400,1,401,1,401,1,401,1,401,1,401, - 1,401,1,401,1,401,1,402,1,402,1,402,1,402,1,402,1,402,1,403,1,403, - 1,403,1,403,1,403,1,403,1,403,1,404,1,404,1,404,1,404,1,404,1,404, - 1,404,1,404,1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,406,1,406, - 1,406,1,406,1,406,1,406,1,406,1,406,1,407,1,407,1,407,1,407,1,407, - 1,407,1,407,1,408,1,408,1,408,1,408,1,408,1,408,1,409,1,409,1,409, - 1,409,1,409,1,409,1,409,1,410,1,410,1,410,1,410,1,411,1,411,1,411, - 1,411,1,411,1,412,1,412,1,412,1,412,1,412,1,412,1,413,1,413,1,413, - 1,413,1,413,1,413,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,415, - 1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,416,1,416,1,416, - 1,416,1,416,1,416,1,416,1,416,1,416,1,416,1,417,1,417,1,417,1,417, - 1,417,1,417,1,417,1,417,1,418,1,418,1,418,1,418,1,418,1,418,1,418, - 1,418,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,420,1,420, - 1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,421,1,421,1,421,1,421, - 1,421,1,421,1,421,1,421,1,421,1,421,1,421,1,422,1,422,1,422,1,422, - 1,422,1,422,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,424, - 1,424,1,424,1,424,1,424,1,424,1,424,1,424,1,424,1,424,1,425,1,425, - 1,425,1,425,1,425,1,425,1,425,1,425,1,425,1,425,1,425,1,426,1,426, - 1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,427,1,427,1,427, - 1,427,1,427,1,427,1,428,1,428,1,428,1,428,1,428,1,429,1,429,1,429, + 1,392,1,392,1,392,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,394,1,394,1,394,1,394,1,394,1,394,1,395, + 1,395,1,395,1,395,1,395,1,395,1,395,1,395,1,396,1,396,1,396,1,396, + 1,396,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397, + 1,397,1,398,1,398,1,398,1,398,1,398,1,399,1,399,1,399,1,399,1,399, + 1,399,1,399,1,399,1,399,1,400,1,400,1,400,1,400,1,400,1,400,1,400, + 1,400,1,400,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,402, + 1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,403,1,403,1,403,1,403, + 1,403,1,403,1,403,1,403,1,403,1,403,1,404,1,404,1,404,1,404,1,404, + 1,404,1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,406,1,406,1,406, + 1,406,1,406,1,406,1,406,1,406,1,407,1,407,1,407,1,407,1,407,1,407, + 1,407,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,409,1,409, + 1,409,1,409,1,409,1,409,1,409,1,410,1,410,1,410,1,410,1,410,1,410, + 1,411,1,411,1,411,1,411,1,411,1,411,1,411,1,412,1,412,1,412,1,412, + 1,413,1,413,1,413,1,413,1,413,1,414,1,414,1,414,1,414,1,414,1,414, + 1,415,1,415,1,415,1,415,1,415,1,415,1,416,1,416,1,416,1,416,1,416, + 1,416,1,416,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417, + 1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,419, + 1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,420,1,420,1,420,1,420, + 1,420,1,420,1,420,1,420,1,421,1,421,1,421,1,421,1,421,1,421,1,421, + 1,421,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,422,1,423, + 1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,424, + 1,424,1,424,1,424,1,424,1,424,1,425,1,425,1,425,1,425,1,425,1,425, + 1,425,1,425,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426, + 1,426,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427, + 1,427,1,428,1,428,1,428,1,428,1,428,1,428,1,428,1,428,1,428,1,428, 1,429,1,429,1,429,1,429,1,429,1,429,1,430,1,430,1,430,1,430,1,430, - 1,430,1,431,1,431,1,431,1,431,1,431,1,431,1,431,1,431,1,431,1,431, - 1,431,1,431,1,431,1,432,1,432,1,432,1,432,1,432,1,432,1,432,1,433, - 1,433,1,433,1,433,1,433,1,434,1,434,1,434,1,434,1,434,1,434,1,434, - 1,435,1,435,1,435,1,435,1,435,1,435,1,435,1,435,1,436,1,436,1,436, - 1,436,1,436,1,437,1,437,1,437,1,437,1,438,1,438,1,438,1,438,1,438, - 1,438,1,439,1,439,1,439,1,439,1,440,1,440,1,440,1,440,1,440,1,440, - 1,440,1,440,1,441,1,441,1,441,1,441,1,441,1,441,1,441,1,441,1,442, - 1,442,1,442,1,442,1,442,1,442,1,442,1,442,1,443,1,443,1,443,1,443, - 1,443,1,443,1,443,1,444,1,444,1,444,1,444,1,444,1,444,1,444,1,444, - 1,444,1,444,1,444,1,444,1,445,1,445,1,445,1,445,1,445,1,445,1,445, - 1,445,1,445,1,446,1,446,1,446,1,446,1,446,1,447,1,447,1,447,1,447, + 1,431,1,431,1,431,1,431,1,431,1,431,1,431,1,431,1,431,1,432,1,432, + 1,432,1,432,1,432,1,432,1,433,1,433,1,433,1,433,1,433,1,433,1,433, + 1,433,1,433,1,433,1,433,1,433,1,433,1,434,1,434,1,434,1,434,1,434, + 1,434,1,434,1,435,1,435,1,435,1,435,1,435,1,436,1,436,1,436,1,436, + 1,436,1,436,1,436,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437, + 1,438,1,438,1,438,1,438,1,438,1,439,1,439,1,439,1,439,1,440,1,440, + 1,440,1,440,1,440,1,440,1,441,1,441,1,441,1,441,1,442,1,442,1,442, + 1,442,1,442,1,442,1,442,1,442,1,443,1,443,1,443,1,443,1,443,1,443, + 1,443,1,443,1,444,1,444,1,444,1,444,1,444,1,444,1,444,1,444,1,445, + 1,445,1,445,1,445,1,445,1,445,1,445,1,446,1,446,1,446,1,446,1,446, + 1,446,1,446,1,446,1,446,1,446,1,446,1,446,1,447,1,447,1,447,1,447, 1,447,1,447,1,447,1,447,1,447,1,448,1,448,1,448,1,448,1,448,1,449, - 1,449,1,449,1,449,1,449,1,449,1,449,1,450,1,450,1,450,1,450,1,450, - 1,451,1,451,1,451,1,451,1,451,1,451,1,451,1,451,1,451,1,451,1,451, - 1,452,1,452,1,452,1,452,1,453,1,453,1,453,1,453,1,453,1,453,1,453, - 1,454,1,454,1,454,1,454,1,454,1,454,1,455,1,455,1,455,1,455,1,455, - 1,455,1,455,1,455,1,455,1,455,1,456,1,456,1,456,1,456,1,456,1,457, - 1,457,1,457,1,457,1,457,1,457,1,458,1,458,1,458,1,458,1,458,1,458, - 1,458,1,458,1,458,1,458,1,459,1,459,1,459,1,459,1,460,1,460,1,460, - 1,460,1,460,1,460,1,461,1,461,1,461,1,461,1,461,1,461,1,461,1,462, - 1,462,1,462,1,462,1,462,1,462,1,462,1,462,1,462,1,462,1,463,1,463, - 1,463,1,463,1,464,1,464,1,464,1,464,1,464,1,465,1,465,1,465,1,465, - 1,465,1,466,1,466,1,466,1,466,1,467,1,467,1,467,1,467,1,467,1,468, - 1,468,1,468,1,468,1,468,1,469,1,469,1,469,1,469,1,470,1,470,1,470, - 1,470,1,470,1,470,1,470,1,470,1,470,1,470,1,470,1,470,1,471,1,471, - 1,471,1,471,1,471,1,471,1,471,1,471,1,471,1,471,1,471,1,472,1,472, - 1,472,1,472,1,472,1,472,1,472,1,472,1,472,1,472,1,472,1,472,1,473, - 1,473,1,473,1,473,1,473,1,473,1,473,1,473,1,474,1,474,1,474,1,474, - 1,474,1,474,1,474,1,475,1,475,1,475,1,475,1,475,1,475,1,475,1,475, - 1,475,1,475,1,475,1,476,1,476,1,476,1,476,1,476,1,476,1,477,1,477, + 1,449,1,449,1,449,1,449,1,449,1,449,1,449,1,449,1,450,1,450,1,450, + 1,450,1,450,1,451,1,451,1,451,1,451,1,451,1,451,1,451,1,452,1,452, + 1,452,1,452,1,452,1,453,1,453,1,453,1,453,1,453,1,453,1,453,1,453, + 1,453,1,453,1,453,1,454,1,454,1,454,1,454,1,455,1,455,1,455,1,455, + 1,455,1,455,1,455,1,456,1,456,1,456,1,456,1,456,1,456,1,457,1,457, + 1,457,1,457,1,457,1,457,1,457,1,457,1,457,1,457,1,458,1,458,1,458, + 1,458,1,458,1,459,1,459,1,459,1,459,1,459,1,459,1,460,1,460,1,460, + 1,460,1,460,1,460,1,460,1,460,1,460,1,460,1,461,1,461,1,461,1,461, + 1,462,1,462,1,462,1,462,1,462,1,462,1,463,1,463,1,463,1,463,1,463, + 1,463,1,463,1,464,1,464,1,464,1,464,1,464,1,464,1,464,1,464,1,464, + 1,464,1,465,1,465,1,465,1,465,1,466,1,466,1,466,1,466,1,466,1,467, + 1,467,1,467,1,467,1,467,1,468,1,468,1,468,1,468,1,469,1,469,1,469, + 1,469,1,469,1,470,1,470,1,470,1,470,1,470,1,471,1,471,1,471,1,471, + 1,472,1,472,1,472,1,472,1,472,1,472,1,472,1,472,1,472,1,472,1,472, + 1,472,1,473,1,473,1,473,1,473,1,473,1,473,1,473,1,473,1,473,1,473, + 1,473,1,474,1,474,1,474,1,474,1,474,1,474,1,474,1,474,1,474,1,474, + 1,474,1,474,1,475,1,475,1,475,1,475,1,475,1,475,1,475,1,475,1,476, + 1,476,1,476,1,476,1,476,1,476,1,476,1,477,1,477,1,477,1,477,1,477, 1,477,1,477,1,477,1,477,1,477,1,477,1,478,1,478,1,478,1,478,1,478, - 1,479,1,479,1,479,1,479,1,479,1,480,1,480,1,480,1,480,1,480,1,480, - 1,480,1,480,1,480,1,480,1,481,1,481,1,481,1,481,1,481,1,481,1,481, - 1,482,1,482,1,482,1,482,1,482,1,482,1,482,1,482,1,482,1,482,1,482, - 1,482,1,482,1,482,1,482,1,482,1,483,1,483,1,483,1,483,1,483,1,483, - 1,483,1,483,1,483,1,483,1,483,1,483,1,483,1,483,1,483,1,483,1,483, + 1,478,1,479,1,479,1,479,1,479,1,479,1,479,1,479,1,479,1,480,1,480, + 1,480,1,480,1,480,1,481,1,481,1,481,1,481,1,481,1,482,1,482,1,482, + 1,482,1,482,1,482,1,482,1,482,1,482,1,482,1,483,1,483,1,483,1,483, 1,483,1,483,1,483,1,484,1,484,1,484,1,484,1,484,1,484,1,484,1,484, - 1,484,1,484,1,484,1,484,1,484,1,485,1,485,1,485,1,485,1,485,1,485, - 1,485,1,485,1,485,1,485,1,485,1,486,1,486,1,486,1,486,1,486,1,486, - 1,486,1,486,1,486,1,486,1,486,1,486,1,486,1,486,1,486,1,486,1,486, - 1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487, - 1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,488,1,488, - 1,488,1,488,1,488,1,488,1,488,1,488,1,489,1,489,1,489,1,489,1,489, - 1,489,1,489,1,490,1,490,1,490,1,490,1,490,1,490,1,490,1,490,1,490, - 1,491,1,491,1,491,1,491,1,491,1,491,1,491,1,491,1,492,1,492,1,492, - 1,492,1,492,1,492,1,492,1,492,1,493,1,493,1,493,1,493,1,493,1,494, - 1,494,1,494,1,494,1,494,1,495,1,495,1,495,1,495,1,495,1,495,1,496, - 1,496,1,496,1,496,1,496,1,497,1,497,1,497,1,497,1,497,1,497,1,497, - 1,497,1,497,1,497,1,498,1,498,1,498,1,498,1,498,1,498,1,498,1,498, - 1,499,1,499,1,499,1,499,1,499,1,499,1,499,1,500,1,500,1,500,1,500, - 1,500,1,500,1,500,1,501,1,501,1,501,1,501,1,501,1,502,1,502,1,502, - 1,502,1,502,1,503,1,503,1,503,1,503,1,503,1,503,1,504,1,504,1,504, - 1,504,1,504,1,505,1,505,1,506,1,506,1,507,1,507,1,508,1,508,1,509, - 1,509,1,510,1,510,1,511,1,511,1,512,1,512,1,513,1,513,1,514,1,514, - 1,515,1,515,1,516,1,516,1,517,1,517,1,518,1,518,1,519,1,519,1,520, - 1,520,1,521,1,521,1,522,1,522,1,523,1,523,1,524,1,524,1,525,1,525, - 1,526,1,526,1,527,1,527,1,528,1,528,1,529,1,529,1,530,1,530,1,531, - 1,531,1,532,1,532,1,532,1,533,1,533,1,533,1,534,1,534,1,535,1,535, - 1,536,1,536,1,536,1,537,1,537,1,537,3,537,5361,8,537,1,538,4,538, - 5364,8,538,11,538,12,538,5365,1,539,4,539,5369,8,539,11,539,12,539, - 5370,3,539,5373,8,539,1,539,1,539,4,539,5377,8,539,11,539,12,539, - 5378,1,539,4,539,5382,8,539,11,539,12,539,5383,1,539,1,539,1,539, - 1,539,4,539,5390,8,539,11,539,12,539,5391,3,539,5394,8,539,1,539, - 1,539,4,539,5398,8,539,11,539,12,539,5399,1,539,1,539,1,539,4,539, - 5405,8,539,11,539,12,539,5406,1,539,1,539,3,539,5411,8,539,1,540, - 1,540,1,541,1,541,1,542,1,542,1,542,1,542,1,542,1,542,5,542,5423, - 8,542,10,542,12,542,5426,9,542,1,542,1,542,1,543,1,543,3,543,5432, - 8,543,1,543,4,543,5435,8,543,11,543,12,543,5436,1,544,5,544,5440, - 8,544,10,544,12,544,5443,9,544,1,544,4,544,5446,8,544,11,544,12, - 544,5447,1,544,5,544,5451,8,544,10,544,12,544,5454,9,544,1,545,1, - 545,1,546,1,546,1,547,1,547,1,547,1,547,1,547,1,547,5,547,5466,8, - 547,10,547,12,547,5469,9,547,1,547,1,547,1,548,1,548,1,548,1,548, - 1,548,1,548,5,548,5479,8,548,10,548,12,548,5482,9,548,1,548,1,548, - 1,549,1,549,1,549,4,549,5489,8,549,11,549,12,549,5490,1,549,1,549, - 1,550,1,550,1,550,1,550,1,550,1,550,5,550,5501,8,550,10,550,12,550, - 5504,9,550,1,550,1,550,3,1113,5441,5447,0,551,1,1,3,2,5,3,7,4,9, - 5,11,6,13,7,15,8,17,9,19,10,21,11,23,12,25,13,27,14,29,15,31,16, - 33,17,35,18,37,19,39,20,41,21,43,22,45,23,47,24,49,25,51,26,53,27, - 55,28,57,29,59,30,61,31,63,32,65,33,67,34,69,35,71,36,73,37,75,38, - 77,39,79,40,81,41,83,42,85,43,87,44,89,45,91,46,93,47,95,48,97,49, - 99,50,101,51,103,52,105,53,107,54,109,55,111,56,113,57,115,58,117, - 59,119,60,121,61,123,62,125,63,127,64,129,65,131,66,133,67,135,68, - 137,69,139,70,141,71,143,72,145,73,147,74,149,75,151,76,153,77,155, - 78,157,79,159,80,161,81,163,82,165,83,167,84,169,85,171,86,173,87, - 175,88,177,89,179,90,181,91,183,92,185,93,187,94,189,95,191,96,193, - 97,195,98,197,99,199,100,201,101,203,102,205,103,207,104,209,105, - 211,106,213,107,215,108,217,109,219,110,221,111,223,112,225,113, - 227,114,229,115,231,116,233,117,235,118,237,119,239,120,241,121, - 243,122,245,123,247,124,249,125,251,126,253,127,255,128,257,129, - 259,130,261,131,263,132,265,133,267,134,269,135,271,136,273,137, - 275,138,277,139,279,140,281,141,283,142,285,143,287,144,289,145, - 291,146,293,147,295,148,297,149,299,150,301,151,303,152,305,153, - 307,154,309,155,311,156,313,157,315,158,317,159,319,160,321,161, - 323,162,325,163,327,164,329,165,331,166,333,167,335,168,337,169, - 339,170,341,171,343,172,345,173,347,174,349,175,351,176,353,177, - 355,178,357,179,359,180,361,181,363,182,365,183,367,184,369,185, - 371,186,373,187,375,188,377,189,379,190,381,191,383,192,385,193, - 387,194,389,195,391,196,393,197,395,198,397,199,399,200,401,201, - 403,202,405,203,407,204,409,205,411,206,413,207,415,208,417,209, - 419,210,421,211,423,212,425,213,427,214,429,215,431,216,433,217, - 435,218,437,219,439,220,441,221,443,222,445,223,447,224,449,225, - 451,226,453,227,455,228,457,229,459,230,461,231,463,232,465,233, - 467,234,469,235,471,236,473,237,475,238,477,239,479,240,481,241, - 483,242,485,243,487,244,489,245,491,246,493,247,495,248,497,249, - 499,250,501,251,503,252,505,253,507,254,509,255,511,256,513,257, - 515,258,517,259,519,260,521,261,523,262,525,263,527,264,529,265, - 531,266,533,267,535,268,537,269,539,270,541,271,543,272,545,273, - 547,274,549,275,551,276,553,277,555,278,557,279,559,280,561,281, - 563,282,565,283,567,284,569,285,571,286,573,287,575,288,577,289, - 579,290,581,291,583,292,585,293,587,294,589,295,591,296,593,297, - 595,298,597,299,599,300,601,301,603,302,605,303,607,304,609,305, - 611,306,613,307,615,308,617,309,619,310,621,311,623,312,625,313, - 627,314,629,315,631,316,633,317,635,318,637,319,639,320,641,321, - 643,322,645,323,647,324,649,325,651,326,653,327,655,328,657,329, - 659,330,661,331,663,332,665,333,667,334,669,335,671,336,673,337, - 675,338,677,339,679,340,681,341,683,342,685,343,687,344,689,345, - 691,346,693,347,695,348,697,349,699,350,701,351,703,352,705,353, - 707,354,709,355,711,356,713,357,715,358,717,359,719,360,721,361, - 723,362,725,363,727,364,729,365,731,366,733,367,735,368,737,369, - 739,370,741,371,743,372,745,373,747,374,749,375,751,376,753,377, - 755,378,757,379,759,380,761,381,763,382,765,383,767,384,769,385, - 771,386,773,387,775,388,777,389,779,390,781,391,783,392,785,393, - 787,394,789,395,791,396,793,397,795,398,797,399,799,400,801,401, - 803,402,805,403,807,404,809,405,811,406,813,407,815,408,817,409, - 819,410,821,411,823,412,825,413,827,414,829,415,831,416,833,417, - 835,418,837,419,839,420,841,421,843,422,845,423,847,424,849,425, - 851,426,853,427,855,428,857,429,859,430,861,431,863,432,865,433, - 867,434,869,435,871,436,873,437,875,438,877,439,879,440,881,441, - 883,442,885,443,887,444,889,445,891,446,893,447,895,448,897,449, - 899,450,901,451,903,452,905,453,907,454,909,455,911,456,913,457, - 915,458,917,459,919,460,921,461,923,462,925,463,927,464,929,465, - 931,466,933,467,935,468,937,469,939,470,941,471,943,472,945,473, - 947,474,949,475,951,476,953,477,955,478,957,479,959,480,961,481, - 963,482,965,483,967,484,969,485,971,486,973,487,975,488,977,489, - 979,490,981,491,983,492,985,493,987,494,989,495,991,496,993,497, - 995,498,997,499,999,500,1001,501,1003,502,1005,503,1007,504,1009, - 505,1011,506,1013,507,1015,508,1017,509,1019,510,1021,511,1023,512, - 1025,513,1027,514,1029,515,1031,516,1033,517,1035,518,1037,519,1039, - 520,1041,521,1043,522,1045,523,1047,524,1049,525,1051,526,1053,527, - 1055,528,1057,529,1059,530,1061,531,1063,532,1065,533,1067,534,1069, - 535,1071,536,1073,537,1075,538,1077,539,1079,540,1081,541,1083,542, - 1085,0,1087,0,1089,0,1091,0,1093,0,1095,0,1097,0,1099,0,1101,0,1, - 0,37,3,0,9,10,13,13,32,32,2,0,10,10,13,13,2,0,65,65,97,97,2,0,66, - 66,98,98,2,0,83,83,115,115,2,0,76,76,108,108,2,0,79,79,111,111,2, - 0,67,67,99,99,2,0,84,84,116,116,2,0,69,69,101,101,2,0,87,87,119, - 119,2,0,82,82,114,114,2,0,78,78,110,110,2,0,89,89,121,121,2,0,90, - 90,122,122,2,0,68,68,100,100,2,0,71,71,103,103,2,0,77,77,109,109, - 2,0,88,88,120,120,2,0,73,73,105,105,2,0,86,86,118,118,2,0,85,85, - 117,117,2,0,72,72,104,104,2,0,70,70,102,102,2,0,80,80,112,112,2, - 0,75,75,107,107,2,0,81,81,113,113,2,0,74,74,106,106,2,0,92,92,96, - 96,2,0,43,43,45,45,4,0,48,57,65,90,95,95,97,122,3,0,65,90,95,95, - 97,122,1,0,48,57,2,0,65,90,97,122,2,0,34,34,92,92,2,0,39,39,92,92, - 1,0,48,49,5537,0,1,1,0,0,0,0,3,1,0,0,0,0,5,1,0,0,0,0,7,1,0,0,0,0, - 9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0,0,0,15,1,0,0,0,0,17,1,0,0,0,0, - 19,1,0,0,0,0,21,1,0,0,0,0,23,1,0,0,0,0,25,1,0,0,0,0,27,1,0,0,0,0, - 29,1,0,0,0,0,31,1,0,0,0,0,33,1,0,0,0,0,35,1,0,0,0,0,37,1,0,0,0,0, - 39,1,0,0,0,0,41,1,0,0,0,0,43,1,0,0,0,0,45,1,0,0,0,0,47,1,0,0,0,0, - 49,1,0,0,0,0,51,1,0,0,0,0,53,1,0,0,0,0,55,1,0,0,0,0,57,1,0,0,0,0, - 59,1,0,0,0,0,61,1,0,0,0,0,63,1,0,0,0,0,65,1,0,0,0,0,67,1,0,0,0,0, - 69,1,0,0,0,0,71,1,0,0,0,0,73,1,0,0,0,0,75,1,0,0,0,0,77,1,0,0,0,0, - 79,1,0,0,0,0,81,1,0,0,0,0,83,1,0,0,0,0,85,1,0,0,0,0,87,1,0,0,0,0, - 89,1,0,0,0,0,91,1,0,0,0,0,93,1,0,0,0,0,95,1,0,0,0,0,97,1,0,0,0,0, - 99,1,0,0,0,0,101,1,0,0,0,0,103,1,0,0,0,0,105,1,0,0,0,0,107,1,0,0, - 0,0,109,1,0,0,0,0,111,1,0,0,0,0,113,1,0,0,0,0,115,1,0,0,0,0,117, - 1,0,0,0,0,119,1,0,0,0,0,121,1,0,0,0,0,123,1,0,0,0,0,125,1,0,0,0, - 0,127,1,0,0,0,0,129,1,0,0,0,0,131,1,0,0,0,0,133,1,0,0,0,0,135,1, - 0,0,0,0,137,1,0,0,0,0,139,1,0,0,0,0,141,1,0,0,0,0,143,1,0,0,0,0, - 145,1,0,0,0,0,147,1,0,0,0,0,149,1,0,0,0,0,151,1,0,0,0,0,153,1,0, - 0,0,0,155,1,0,0,0,0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0,0,0,0,163, - 1,0,0,0,0,165,1,0,0,0,0,167,1,0,0,0,0,169,1,0,0,0,0,171,1,0,0,0, - 0,173,1,0,0,0,0,175,1,0,0,0,0,177,1,0,0,0,0,179,1,0,0,0,0,181,1, - 0,0,0,0,183,1,0,0,0,0,185,1,0,0,0,0,187,1,0,0,0,0,189,1,0,0,0,0, - 191,1,0,0,0,0,193,1,0,0,0,0,195,1,0,0,0,0,197,1,0,0,0,0,199,1,0, - 0,0,0,201,1,0,0,0,0,203,1,0,0,0,0,205,1,0,0,0,0,207,1,0,0,0,0,209, - 1,0,0,0,0,211,1,0,0,0,0,213,1,0,0,0,0,215,1,0,0,0,0,217,1,0,0,0, - 0,219,1,0,0,0,0,221,1,0,0,0,0,223,1,0,0,0,0,225,1,0,0,0,0,227,1, - 0,0,0,0,229,1,0,0,0,0,231,1,0,0,0,0,233,1,0,0,0,0,235,1,0,0,0,0, - 237,1,0,0,0,0,239,1,0,0,0,0,241,1,0,0,0,0,243,1,0,0,0,0,245,1,0, - 0,0,0,247,1,0,0,0,0,249,1,0,0,0,0,251,1,0,0,0,0,253,1,0,0,0,0,255, - 1,0,0,0,0,257,1,0,0,0,0,259,1,0,0,0,0,261,1,0,0,0,0,263,1,0,0,0, - 0,265,1,0,0,0,0,267,1,0,0,0,0,269,1,0,0,0,0,271,1,0,0,0,0,273,1, - 0,0,0,0,275,1,0,0,0,0,277,1,0,0,0,0,279,1,0,0,0,0,281,1,0,0,0,0, - 283,1,0,0,0,0,285,1,0,0,0,0,287,1,0,0,0,0,289,1,0,0,0,0,291,1,0, - 0,0,0,293,1,0,0,0,0,295,1,0,0,0,0,297,1,0,0,0,0,299,1,0,0,0,0,301, - 1,0,0,0,0,303,1,0,0,0,0,305,1,0,0,0,0,307,1,0,0,0,0,309,1,0,0,0, - 0,311,1,0,0,0,0,313,1,0,0,0,0,315,1,0,0,0,0,317,1,0,0,0,0,319,1, - 0,0,0,0,321,1,0,0,0,0,323,1,0,0,0,0,325,1,0,0,0,0,327,1,0,0,0,0, - 329,1,0,0,0,0,331,1,0,0,0,0,333,1,0,0,0,0,335,1,0,0,0,0,337,1,0, - 0,0,0,339,1,0,0,0,0,341,1,0,0,0,0,343,1,0,0,0,0,345,1,0,0,0,0,347, - 1,0,0,0,0,349,1,0,0,0,0,351,1,0,0,0,0,353,1,0,0,0,0,355,1,0,0,0, - 0,357,1,0,0,0,0,359,1,0,0,0,0,361,1,0,0,0,0,363,1,0,0,0,0,365,1, - 0,0,0,0,367,1,0,0,0,0,369,1,0,0,0,0,371,1,0,0,0,0,373,1,0,0,0,0, - 375,1,0,0,0,0,377,1,0,0,0,0,379,1,0,0,0,0,381,1,0,0,0,0,383,1,0, - 0,0,0,385,1,0,0,0,0,387,1,0,0,0,0,389,1,0,0,0,0,391,1,0,0,0,0,393, - 1,0,0,0,0,395,1,0,0,0,0,397,1,0,0,0,0,399,1,0,0,0,0,401,1,0,0,0, - 0,403,1,0,0,0,0,405,1,0,0,0,0,407,1,0,0,0,0,409,1,0,0,0,0,411,1, - 0,0,0,0,413,1,0,0,0,0,415,1,0,0,0,0,417,1,0,0,0,0,419,1,0,0,0,0, - 421,1,0,0,0,0,423,1,0,0,0,0,425,1,0,0,0,0,427,1,0,0,0,0,429,1,0, - 0,0,0,431,1,0,0,0,0,433,1,0,0,0,0,435,1,0,0,0,0,437,1,0,0,0,0,439, - 1,0,0,0,0,441,1,0,0,0,0,443,1,0,0,0,0,445,1,0,0,0,0,447,1,0,0,0, - 0,449,1,0,0,0,0,451,1,0,0,0,0,453,1,0,0,0,0,455,1,0,0,0,0,457,1, - 0,0,0,0,459,1,0,0,0,0,461,1,0,0,0,0,463,1,0,0,0,0,465,1,0,0,0,0, - 467,1,0,0,0,0,469,1,0,0,0,0,471,1,0,0,0,0,473,1,0,0,0,0,475,1,0, - 0,0,0,477,1,0,0,0,0,479,1,0,0,0,0,481,1,0,0,0,0,483,1,0,0,0,0,485, - 1,0,0,0,0,487,1,0,0,0,0,489,1,0,0,0,0,491,1,0,0,0,0,493,1,0,0,0, - 0,495,1,0,0,0,0,497,1,0,0,0,0,499,1,0,0,0,0,501,1,0,0,0,0,503,1, - 0,0,0,0,505,1,0,0,0,0,507,1,0,0,0,0,509,1,0,0,0,0,511,1,0,0,0,0, - 513,1,0,0,0,0,515,1,0,0,0,0,517,1,0,0,0,0,519,1,0,0,0,0,521,1,0, - 0,0,0,523,1,0,0,0,0,525,1,0,0,0,0,527,1,0,0,0,0,529,1,0,0,0,0,531, - 1,0,0,0,0,533,1,0,0,0,0,535,1,0,0,0,0,537,1,0,0,0,0,539,1,0,0,0, - 0,541,1,0,0,0,0,543,1,0,0,0,0,545,1,0,0,0,0,547,1,0,0,0,0,549,1, - 0,0,0,0,551,1,0,0,0,0,553,1,0,0,0,0,555,1,0,0,0,0,557,1,0,0,0,0, - 559,1,0,0,0,0,561,1,0,0,0,0,563,1,0,0,0,0,565,1,0,0,0,0,567,1,0, - 0,0,0,569,1,0,0,0,0,571,1,0,0,0,0,573,1,0,0,0,0,575,1,0,0,0,0,577, - 1,0,0,0,0,579,1,0,0,0,0,581,1,0,0,0,0,583,1,0,0,0,0,585,1,0,0,0, - 0,587,1,0,0,0,0,589,1,0,0,0,0,591,1,0,0,0,0,593,1,0,0,0,0,595,1, - 0,0,0,0,597,1,0,0,0,0,599,1,0,0,0,0,601,1,0,0,0,0,603,1,0,0,0,0, - 605,1,0,0,0,0,607,1,0,0,0,0,609,1,0,0,0,0,611,1,0,0,0,0,613,1,0, - 0,0,0,615,1,0,0,0,0,617,1,0,0,0,0,619,1,0,0,0,0,621,1,0,0,0,0,623, - 1,0,0,0,0,625,1,0,0,0,0,627,1,0,0,0,0,629,1,0,0,0,0,631,1,0,0,0, - 0,633,1,0,0,0,0,635,1,0,0,0,0,637,1,0,0,0,0,639,1,0,0,0,0,641,1, - 0,0,0,0,643,1,0,0,0,0,645,1,0,0,0,0,647,1,0,0,0,0,649,1,0,0,0,0, - 651,1,0,0,0,0,653,1,0,0,0,0,655,1,0,0,0,0,657,1,0,0,0,0,659,1,0, - 0,0,0,661,1,0,0,0,0,663,1,0,0,0,0,665,1,0,0,0,0,667,1,0,0,0,0,669, - 1,0,0,0,0,671,1,0,0,0,0,673,1,0,0,0,0,675,1,0,0,0,0,677,1,0,0,0, - 0,679,1,0,0,0,0,681,1,0,0,0,0,683,1,0,0,0,0,685,1,0,0,0,0,687,1, - 0,0,0,0,689,1,0,0,0,0,691,1,0,0,0,0,693,1,0,0,0,0,695,1,0,0,0,0, - 697,1,0,0,0,0,699,1,0,0,0,0,701,1,0,0,0,0,703,1,0,0,0,0,705,1,0, - 0,0,0,707,1,0,0,0,0,709,1,0,0,0,0,711,1,0,0,0,0,713,1,0,0,0,0,715, - 1,0,0,0,0,717,1,0,0,0,0,719,1,0,0,0,0,721,1,0,0,0,0,723,1,0,0,0, - 0,725,1,0,0,0,0,727,1,0,0,0,0,729,1,0,0,0,0,731,1,0,0,0,0,733,1, - 0,0,0,0,735,1,0,0,0,0,737,1,0,0,0,0,739,1,0,0,0,0,741,1,0,0,0,0, - 743,1,0,0,0,0,745,1,0,0,0,0,747,1,0,0,0,0,749,1,0,0,0,0,751,1,0, - 0,0,0,753,1,0,0,0,0,755,1,0,0,0,0,757,1,0,0,0,0,759,1,0,0,0,0,761, - 1,0,0,0,0,763,1,0,0,0,0,765,1,0,0,0,0,767,1,0,0,0,0,769,1,0,0,0, - 0,771,1,0,0,0,0,773,1,0,0,0,0,775,1,0,0,0,0,777,1,0,0,0,0,779,1, - 0,0,0,0,781,1,0,0,0,0,783,1,0,0,0,0,785,1,0,0,0,0,787,1,0,0,0,0, - 789,1,0,0,0,0,791,1,0,0,0,0,793,1,0,0,0,0,795,1,0,0,0,0,797,1,0, - 0,0,0,799,1,0,0,0,0,801,1,0,0,0,0,803,1,0,0,0,0,805,1,0,0,0,0,807, - 1,0,0,0,0,809,1,0,0,0,0,811,1,0,0,0,0,813,1,0,0,0,0,815,1,0,0,0, - 0,817,1,0,0,0,0,819,1,0,0,0,0,821,1,0,0,0,0,823,1,0,0,0,0,825,1, - 0,0,0,0,827,1,0,0,0,0,829,1,0,0,0,0,831,1,0,0,0,0,833,1,0,0,0,0, - 835,1,0,0,0,0,837,1,0,0,0,0,839,1,0,0,0,0,841,1,0,0,0,0,843,1,0, - 0,0,0,845,1,0,0,0,0,847,1,0,0,0,0,849,1,0,0,0,0,851,1,0,0,0,0,853, - 1,0,0,0,0,855,1,0,0,0,0,857,1,0,0,0,0,859,1,0,0,0,0,861,1,0,0,0, - 0,863,1,0,0,0,0,865,1,0,0,0,0,867,1,0,0,0,0,869,1,0,0,0,0,871,1, - 0,0,0,0,873,1,0,0,0,0,875,1,0,0,0,0,877,1,0,0,0,0,879,1,0,0,0,0, - 881,1,0,0,0,0,883,1,0,0,0,0,885,1,0,0,0,0,887,1,0,0,0,0,889,1,0, - 0,0,0,891,1,0,0,0,0,893,1,0,0,0,0,895,1,0,0,0,0,897,1,0,0,0,0,899, - 1,0,0,0,0,901,1,0,0,0,0,903,1,0,0,0,0,905,1,0,0,0,0,907,1,0,0,0, - 0,909,1,0,0,0,0,911,1,0,0,0,0,913,1,0,0,0,0,915,1,0,0,0,0,917,1, - 0,0,0,0,919,1,0,0,0,0,921,1,0,0,0,0,923,1,0,0,0,0,925,1,0,0,0,0, - 927,1,0,0,0,0,929,1,0,0,0,0,931,1,0,0,0,0,933,1,0,0,0,0,935,1,0, - 0,0,0,937,1,0,0,0,0,939,1,0,0,0,0,941,1,0,0,0,0,943,1,0,0,0,0,945, - 1,0,0,0,0,947,1,0,0,0,0,949,1,0,0,0,0,951,1,0,0,0,0,953,1,0,0,0, - 0,955,1,0,0,0,0,957,1,0,0,0,0,959,1,0,0,0,0,961,1,0,0,0,0,963,1, - 0,0,0,0,965,1,0,0,0,0,967,1,0,0,0,0,969,1,0,0,0,0,971,1,0,0,0,0, - 973,1,0,0,0,0,975,1,0,0,0,0,977,1,0,0,0,0,979,1,0,0,0,0,981,1,0, - 0,0,0,983,1,0,0,0,0,985,1,0,0,0,0,987,1,0,0,0,0,989,1,0,0,0,0,991, - 1,0,0,0,0,993,1,0,0,0,0,995,1,0,0,0,0,997,1,0,0,0,0,999,1,0,0,0, - 0,1001,1,0,0,0,0,1003,1,0,0,0,0,1005,1,0,0,0,0,1007,1,0,0,0,0,1009, - 1,0,0,0,0,1011,1,0,0,0,0,1013,1,0,0,0,0,1015,1,0,0,0,0,1017,1,0, - 0,0,0,1019,1,0,0,0,0,1021,1,0,0,0,0,1023,1,0,0,0,0,1025,1,0,0,0, - 0,1027,1,0,0,0,0,1029,1,0,0,0,0,1031,1,0,0,0,0,1033,1,0,0,0,0,1035, - 1,0,0,0,0,1037,1,0,0,0,0,1039,1,0,0,0,0,1041,1,0,0,0,0,1043,1,0, - 0,0,0,1045,1,0,0,0,0,1047,1,0,0,0,0,1049,1,0,0,0,0,1051,1,0,0,0, - 0,1053,1,0,0,0,0,1055,1,0,0,0,0,1057,1,0,0,0,0,1059,1,0,0,0,0,1061, - 1,0,0,0,0,1063,1,0,0,0,0,1065,1,0,0,0,0,1067,1,0,0,0,0,1069,1,0, - 0,0,0,1071,1,0,0,0,0,1073,1,0,0,0,0,1075,1,0,0,0,0,1077,1,0,0,0, - 0,1079,1,0,0,0,0,1081,1,0,0,0,0,1083,1,0,0,0,1,1103,1,0,0,0,3,1107, - 1,0,0,0,5,1149,1,0,0,0,7,1153,1,0,0,0,9,1157,1,0,0,0,11,1161,1,0, - 0,0,13,1170,1,0,0,0,15,1176,1,0,0,0,17,1182,1,0,0,0,19,1190,1,0, - 0,0,21,1194,1,0,0,0,23,1198,1,0,0,0,25,1202,1,0,0,0,27,1208,1,0, - 0,0,29,1218,1,0,0,0,31,1235,1,0,0,0,33,1257,1,0,0,0,35,1260,1,0, - 0,0,37,1271,1,0,0,0,39,1282,1,0,0,0,41,1285,1,0,0,0,43,1292,1,0, - 0,0,45,1306,1,0,0,0,47,1310,1,0,0,0,49,1316,1,0,0,0,51,1328,1,0, - 0,0,53,1344,1,0,0,0,55,1352,1,0,0,0,57,1359,1,0,0,0,59,1366,1,0, - 0,0,61,1370,1,0,0,0,63,1375,1,0,0,0,65,1383,1,0,0,0,67,1388,1,0, - 0,0,69,1391,1,0,0,0,71,1397,1,0,0,0,73,1402,1,0,0,0,75,1409,1,0, - 0,0,77,1421,1,0,0,0,79,1430,1,0,0,0,81,1435,1,0,0,0,83,1440,1,0, - 0,0,85,1449,1,0,0,0,87,1454,1,0,0,0,89,1462,1,0,0,0,91,1477,1,0, - 0,0,93,1482,1,0,0,0,95,1492,1,0,0,0,97,1509,1,0,0,0,99,1521,1,0, - 0,0,101,1527,1,0,0,0,103,1538,1,0,0,0,105,1543,1,0,0,0,107,1549, - 1,0,0,0,109,1558,1,0,0,0,111,1566,1,0,0,0,113,1574,1,0,0,0,115,1581, - 1,0,0,0,117,1589,1,0,0,0,119,1597,1,0,0,0,121,1604,1,0,0,0,123,1612, - 1,0,0,0,125,1622,1,0,0,0,127,1630,1,0,0,0,129,1641,1,0,0,0,131,1650, - 1,0,0,0,133,1658,1,0,0,0,135,1663,1,0,0,0,137,1677,1,0,0,0,139,1683, - 1,0,0,0,141,1693,1,0,0,0,143,1704,1,0,0,0,145,1711,1,0,0,0,147,1717, - 1,0,0,0,149,1722,1,0,0,0,151,1732,1,0,0,0,153,1740,1,0,0,0,155,1756, - 1,0,0,0,157,1769,1,0,0,0,159,1801,1,0,0,0,161,1814,1,0,0,0,163,1827, - 1,0,0,0,165,1839,1,0,0,0,167,1854,1,0,0,0,169,1867,1,0,0,0,171,1885, - 1,0,0,0,173,1918,1,0,0,0,175,1931,1,0,0,0,177,1938,1,0,0,0,179,1944, - 1,0,0,0,181,1954,1,0,0,0,183,1959,1,0,0,0,185,1968,1,0,0,0,187,1982, - 1,0,0,0,189,1997,1,0,0,0,191,2007,1,0,0,0,193,2018,1,0,0,0,195,2022, - 1,0,0,0,197,2032,1,0,0,0,199,2042,1,0,0,0,201,2053,1,0,0,0,203,2057, - 1,0,0,0,205,2065,1,0,0,0,207,2073,1,0,0,0,209,2081,1,0,0,0,211,2088, - 1,0,0,0,213,2095,1,0,0,0,215,2106,1,0,0,0,217,2112,1,0,0,0,219,2121, - 1,0,0,0,221,2135,1,0,0,0,223,2144,1,0,0,0,225,2155,1,0,0,0,227,2164, - 1,0,0,0,229,2168,1,0,0,0,231,2175,1,0,0,0,233,2180,1,0,0,0,235,2188, - 1,0,0,0,237,2193,1,0,0,0,239,2201,1,0,0,0,241,2206,1,0,0,0,243,2212, - 1,0,0,0,245,2216,1,0,0,0,247,2226,1,0,0,0,249,2240,1,0,0,0,251,2249, - 1,0,0,0,253,2256,1,0,0,0,255,2263,1,0,0,0,257,2278,1,0,0,0,259,2284, - 1,0,0,0,261,2291,1,0,0,0,263,2296,1,0,0,0,265,2304,1,0,0,0,267,2311, - 1,0,0,0,269,2315,1,0,0,0,271,2323,1,0,0,0,273,2330,1,0,0,0,275,2339, - 1,0,0,0,277,2348,1,0,0,0,279,2356,1,0,0,0,281,2362,1,0,0,0,283,2368, - 1,0,0,0,285,2375,1,0,0,0,287,2387,1,0,0,0,289,2393,1,0,0,0,291,2399, - 1,0,0,0,293,2403,1,0,0,0,295,2411,1,0,0,0,297,2421,1,0,0,0,299,2426, - 1,0,0,0,301,2433,1,0,0,0,303,2438,1,0,0,0,305,2443,1,0,0,0,307,2452, - 1,0,0,0,309,2462,1,0,0,0,311,2469,1,0,0,0,313,2473,1,0,0,0,315,2480, - 1,0,0,0,317,2486,1,0,0,0,319,2492,1,0,0,0,321,2501,1,0,0,0,323,2508, - 1,0,0,0,325,2521,1,0,0,0,327,2528,1,0,0,0,329,2533,1,0,0,0,331,2538, - 1,0,0,0,333,2547,1,0,0,0,335,2550,1,0,0,0,337,2556,1,0,0,0,339,2563, - 1,0,0,0,341,2566,1,0,0,0,343,2574,1,0,0,0,345,2584,1,0,0,0,347,2592, - 1,0,0,0,349,2598,1,0,0,0,351,2604,1,0,0,0,353,2616,1,0,0,0,355,2623, - 1,0,0,0,357,2627,1,0,0,0,359,2635,1,0,0,0,361,2645,1,0,0,0,363,2658, - 1,0,0,0,365,2667,1,0,0,0,367,2672,1,0,0,0,369,2675,1,0,0,0,371,2680, - 1,0,0,0,373,2685,1,0,0,0,375,2696,1,0,0,0,377,2710,1,0,0,0,379,2730, - 1,0,0,0,381,2742,1,0,0,0,383,2754,1,0,0,0,385,2769,1,0,0,0,387,2780, - 1,0,0,0,389,2791,1,0,0,0,391,2795,1,0,0,0,393,2804,1,0,0,0,395,2810, - 1,0,0,0,397,2821,1,0,0,0,399,2829,1,0,0,0,401,2834,1,0,0,0,403,2842, - 1,0,0,0,405,2847,1,0,0,0,407,2852,1,0,0,0,409,2863,1,0,0,0,411,2869, - 1,0,0,0,413,2872,1,0,0,0,415,2878,1,0,0,0,417,2888,1,0,0,0,419,2903, - 1,0,0,0,421,2909,1,0,0,0,423,2915,1,0,0,0,425,2923,1,0,0,0,427,2936, - 1,0,0,0,429,2952,1,0,0,0,431,2956,1,0,0,0,433,2965,1,0,0,0,435,2972, - 1,0,0,0,437,2978,1,0,0,0,439,2987,1,0,0,0,441,2994,1,0,0,0,443,2998, - 1,0,0,0,445,3004,1,0,0,0,447,3011,1,0,0,0,449,3015,1,0,0,0,451,3024, - 1,0,0,0,453,3031,1,0,0,0,455,3038,1,0,0,0,457,3046,1,0,0,0,459,3053, - 1,0,0,0,461,3059,1,0,0,0,463,3064,1,0,0,0,465,3073,1,0,0,0,467,3082, - 1,0,0,0,469,3090,1,0,0,0,471,3096,1,0,0,0,473,3102,1,0,0,0,475,3106, - 1,0,0,0,477,3111,1,0,0,0,479,3114,1,0,0,0,481,3119,1,0,0,0,483,3129, - 1,0,0,0,485,3133,1,0,0,0,487,3143,1,0,0,0,489,3149,1,0,0,0,491,3154, - 1,0,0,0,493,3161,1,0,0,0,495,3169,1,0,0,0,497,3187,1,0,0,0,499,3200, - 1,0,0,0,501,3203,1,0,0,0,503,3210,1,0,0,0,505,3214,1,0,0,0,507,3219, - 1,0,0,0,509,3222,1,0,0,0,511,3226,1,0,0,0,513,3231,1,0,0,0,515,3236, - 1,0,0,0,517,3239,1,0,0,0,519,3245,1,0,0,0,521,3253,1,0,0,0,523,3257, - 1,0,0,0,525,3263,1,0,0,0,527,3268,1,0,0,0,529,3277,1,0,0,0,531,3285, - 1,0,0,0,533,3295,1,0,0,0,535,3307,1,0,0,0,537,3317,1,0,0,0,539,3327, - 1,0,0,0,541,3339,1,0,0,0,543,3350,1,0,0,0,545,3358,1,0,0,0,547,3362, - 1,0,0,0,549,3370,1,0,0,0,551,3386,1,0,0,0,553,3402,1,0,0,0,555,3415, - 1,0,0,0,557,3422,1,0,0,0,559,3430,1,0,0,0,561,3436,1,0,0,0,563,3444, - 1,0,0,0,565,3453,1,0,0,0,567,3468,1,0,0,0,569,3474,1,0,0,0,571,3483, - 1,0,0,0,573,3493,1,0,0,0,575,3501,1,0,0,0,577,3506,1,0,0,0,579,3514, - 1,0,0,0,581,3524,1,0,0,0,583,3532,1,0,0,0,585,3541,1,0,0,0,587,3547, - 1,0,0,0,589,3552,1,0,0,0,591,3556,1,0,0,0,593,3562,1,0,0,0,595,3567, - 1,0,0,0,597,3577,1,0,0,0,599,3581,1,0,0,0,601,3592,1,0,0,0,603,3604, - 1,0,0,0,605,3614,1,0,0,0,607,3624,1,0,0,0,609,3635,1,0,0,0,611,3650, - 1,0,0,0,613,3658,1,0,0,0,615,3669,1,0,0,0,617,3678,1,0,0,0,619,3687, - 1,0,0,0,621,3696,1,0,0,0,623,3704,1,0,0,0,625,3711,1,0,0,0,627,3717, - 1,0,0,0,629,3724,1,0,0,0,631,3731,1,0,0,0,633,3739,1,0,0,0,635,3746, - 1,0,0,0,637,3752,1,0,0,0,639,3758,1,0,0,0,641,3767,1,0,0,0,643,3774, - 1,0,0,0,645,3778,1,0,0,0,647,3783,1,0,0,0,649,3794,1,0,0,0,651,3802, - 1,0,0,0,653,3812,1,0,0,0,655,3824,1,0,0,0,657,3837,1,0,0,0,659,3846, - 1,0,0,0,661,3856,1,0,0,0,663,3862,1,0,0,0,665,3868,1,0,0,0,667,3875, - 1,0,0,0,669,3882,1,0,0,0,671,3889,1,0,0,0,673,3894,1,0,0,0,675,3901, - 1,0,0,0,677,3911,1,0,0,0,679,3921,1,0,0,0,681,3934,1,0,0,0,683,3938, - 1,0,0,0,685,3943,1,0,0,0,687,3951,1,0,0,0,689,3956,1,0,0,0,691,3965, - 1,0,0,0,693,3970,1,0,0,0,695,3979,1,0,0,0,697,3992,1,0,0,0,699,3996, - 1,0,0,0,701,4009,1,0,0,0,703,4018,1,0,0,0,705,4029,1,0,0,0,707,4034, - 1,0,0,0,709,4040,1,0,0,0,711,4050,1,0,0,0,713,4057,1,0,0,0,715,4068, - 1,0,0,0,717,4079,1,0,0,0,719,4091,1,0,0,0,721,4098,1,0,0,0,723,4105, - 1,0,0,0,725,4116,1,0,0,0,727,4128,1,0,0,0,729,4135,1,0,0,0,731,4145, - 1,0,0,0,733,4161,1,0,0,0,735,4170,1,0,0,0,737,4174,1,0,0,0,739,4181, - 1,0,0,0,741,4191,1,0,0,0,743,4198,1,0,0,0,745,4210,1,0,0,0,747,4222, - 1,0,0,0,749,4228,1,0,0,0,751,4235,1,0,0,0,753,4247,1,0,0,0,755,4252, - 1,0,0,0,757,4261,1,0,0,0,759,4266,1,0,0,0,761,4276,1,0,0,0,763,4291, - 1,0,0,0,765,4305,1,0,0,0,767,4321,1,0,0,0,769,4335,1,0,0,0,771,4351, - 1,0,0,0,773,4361,1,0,0,0,775,4372,1,0,0,0,777,4380,1,0,0,0,779,4383, - 1,0,0,0,781,4392,1,0,0,0,783,4402,1,0,0,0,785,4418,1,0,0,0,787,4430, - 1,0,0,0,789,4436,1,0,0,0,791,4444,1,0,0,0,793,4449,1,0,0,0,795,4460, - 1,0,0,0,797,4465,1,0,0,0,799,4474,1,0,0,0,801,4483,1,0,0,0,803,4491, - 1,0,0,0,805,4499,1,0,0,0,807,4505,1,0,0,0,809,4512,1,0,0,0,811,4520, - 1,0,0,0,813,4527,1,0,0,0,815,4535,1,0,0,0,817,4542,1,0,0,0,819,4548, - 1,0,0,0,821,4555,1,0,0,0,823,4559,1,0,0,0,825,4564,1,0,0,0,827,4570, - 1,0,0,0,829,4576,1,0,0,0,831,4583,1,0,0,0,833,4592,1,0,0,0,835,4602, - 1,0,0,0,837,4610,1,0,0,0,839,4618,1,0,0,0,841,4626,1,0,0,0,843,4635, - 1,0,0,0,845,4646,1,0,0,0,847,4652,1,0,0,0,849,4660,1,0,0,0,851,4670, - 1,0,0,0,853,4681,1,0,0,0,855,4691,1,0,0,0,857,4697,1,0,0,0,859,4702, - 1,0,0,0,861,4711,1,0,0,0,863,4717,1,0,0,0,865,4730,1,0,0,0,867,4737, - 1,0,0,0,869,4742,1,0,0,0,871,4749,1,0,0,0,873,4757,1,0,0,0,875,4762, - 1,0,0,0,877,4766,1,0,0,0,879,4772,1,0,0,0,881,4776,1,0,0,0,883,4784, - 1,0,0,0,885,4792,1,0,0,0,887,4800,1,0,0,0,889,4807,1,0,0,0,891,4819, - 1,0,0,0,893,4828,1,0,0,0,895,4833,1,0,0,0,897,4842,1,0,0,0,899,4847, - 1,0,0,0,901,4854,1,0,0,0,903,4859,1,0,0,0,905,4870,1,0,0,0,907,4874, - 1,0,0,0,909,4881,1,0,0,0,911,4887,1,0,0,0,913,4897,1,0,0,0,915,4902, - 1,0,0,0,917,4908,1,0,0,0,919,4918,1,0,0,0,921,4922,1,0,0,0,923,4928, - 1,0,0,0,925,4935,1,0,0,0,927,4945,1,0,0,0,929,4949,1,0,0,0,931,4954, - 1,0,0,0,933,4959,1,0,0,0,935,4963,1,0,0,0,937,4968,1,0,0,0,939,4973, - 1,0,0,0,941,4977,1,0,0,0,943,4989,1,0,0,0,945,5000,1,0,0,0,947,5012, - 1,0,0,0,949,5020,1,0,0,0,951,5027,1,0,0,0,953,5038,1,0,0,0,955,5044, - 1,0,0,0,957,5052,1,0,0,0,959,5057,1,0,0,0,961,5062,1,0,0,0,963,5072, - 1,0,0,0,965,5079,1,0,0,0,967,5095,1,0,0,0,969,5115,1,0,0,0,971,5128, - 1,0,0,0,973,5139,1,0,0,0,975,5156,1,0,0,0,977,5176,1,0,0,0,979,5184, - 1,0,0,0,981,5191,1,0,0,0,983,5200,1,0,0,0,985,5208,1,0,0,0,987,5216, - 1,0,0,0,989,5221,1,0,0,0,991,5226,1,0,0,0,993,5232,1,0,0,0,995,5237, - 1,0,0,0,997,5247,1,0,0,0,999,5255,1,0,0,0,1001,5262,1,0,0,0,1003, - 5269,1,0,0,0,1005,5274,1,0,0,0,1007,5279,1,0,0,0,1009,5285,1,0,0, - 0,1011,5290,1,0,0,0,1013,5292,1,0,0,0,1015,5294,1,0,0,0,1017,5296, - 1,0,0,0,1019,5298,1,0,0,0,1021,5300,1,0,0,0,1023,5302,1,0,0,0,1025, - 5304,1,0,0,0,1027,5306,1,0,0,0,1029,5308,1,0,0,0,1031,5310,1,0,0, - 0,1033,5312,1,0,0,0,1035,5314,1,0,0,0,1037,5316,1,0,0,0,1039,5318, - 1,0,0,0,1041,5320,1,0,0,0,1043,5322,1,0,0,0,1045,5324,1,0,0,0,1047, - 5326,1,0,0,0,1049,5328,1,0,0,0,1051,5330,1,0,0,0,1053,5332,1,0,0, - 0,1055,5334,1,0,0,0,1057,5336,1,0,0,0,1059,5338,1,0,0,0,1061,5340, - 1,0,0,0,1063,5342,1,0,0,0,1065,5344,1,0,0,0,1067,5347,1,0,0,0,1069, - 5350,1,0,0,0,1071,5352,1,0,0,0,1073,5354,1,0,0,0,1075,5360,1,0,0, - 0,1077,5363,1,0,0,0,1079,5410,1,0,0,0,1081,5412,1,0,0,0,1083,5414, - 1,0,0,0,1085,5416,1,0,0,0,1087,5429,1,0,0,0,1089,5441,1,0,0,0,1091, - 5455,1,0,0,0,1093,5457,1,0,0,0,1095,5459,1,0,0,0,1097,5472,1,0,0, - 0,1099,5485,1,0,0,0,1101,5494,1,0,0,0,1103,1104,7,0,0,0,1104,1105, - 1,0,0,0,1105,1106,6,0,0,0,1106,2,1,0,0,0,1107,1108,5,47,0,0,1108, - 1109,5,42,0,0,1109,1113,1,0,0,0,1110,1112,9,0,0,0,1111,1110,1,0, - 0,0,1112,1115,1,0,0,0,1113,1114,1,0,0,0,1113,1111,1,0,0,0,1114,1116, - 1,0,0,0,1115,1113,1,0,0,0,1116,1117,5,42,0,0,1117,1118,5,47,0,0, - 1118,1119,1,0,0,0,1119,1120,6,1,0,0,1120,4,1,0,0,0,1121,1122,5,45, - 0,0,1122,1125,5,45,0,0,1123,1125,5,35,0,0,1124,1121,1,0,0,0,1124, - 1123,1,0,0,0,1125,1129,1,0,0,0,1126,1128,8,1,0,0,1127,1126,1,0,0, - 0,1128,1131,1,0,0,0,1129,1127,1,0,0,0,1129,1130,1,0,0,0,1130,1137, - 1,0,0,0,1131,1129,1,0,0,0,1132,1134,5,13,0,0,1133,1132,1,0,0,0,1133, - 1134,1,0,0,0,1134,1135,1,0,0,0,1135,1138,5,10,0,0,1136,1138,5,0, - 0,1,1137,1133,1,0,0,0,1137,1136,1,0,0,0,1138,1150,1,0,0,0,1139,1140, - 5,45,0,0,1140,1141,5,45,0,0,1141,1147,1,0,0,0,1142,1144,5,13,0,0, - 1143,1142,1,0,0,0,1143,1144,1,0,0,0,1144,1145,1,0,0,0,1145,1148, - 5,10,0,0,1146,1148,5,0,0,1,1147,1143,1,0,0,0,1147,1146,1,0,0,0,1148, - 1150,1,0,0,0,1149,1124,1,0,0,0,1149,1139,1,0,0,0,1150,1151,1,0,0, - 0,1151,1152,6,2,0,0,1152,6,1,0,0,0,1153,1154,7,2,0,0,1154,1155,7, - 3,0,0,1155,1156,7,4,0,0,1156,8,1,0,0,0,1157,1158,7,2,0,0,1158,1159, - 7,5,0,0,1159,1160,7,5,0,0,1160,10,1,0,0,0,1161,1162,7,2,0,0,1162, - 1163,7,5,0,0,1163,1164,7,5,0,0,1164,1165,7,6,0,0,1165,1166,7,7,0, - 0,1166,1167,7,2,0,0,1167,1168,7,8,0,0,1168,1169,7,9,0,0,1169,12, - 1,0,0,0,1170,1171,7,2,0,0,1171,1172,7,5,0,0,1172,1173,7,5,0,0,1173, - 1174,7,6,0,0,1174,1175,7,10,0,0,1175,14,1,0,0,0,1176,1177,7,2,0, - 0,1177,1178,7,5,0,0,1178,1179,7,8,0,0,1179,1180,7,9,0,0,1180,1181, - 7,11,0,0,1181,16,1,0,0,0,1182,1183,7,2,0,0,1183,1184,7,12,0,0,1184, - 1185,7,2,0,0,1185,1186,7,5,0,0,1186,1187,7,13,0,0,1187,1188,7,14, - 0,0,1188,1189,7,9,0,0,1189,18,1,0,0,0,1190,1191,7,2,0,0,1191,1192, - 7,12,0,0,1192,1193,7,15,0,0,1193,20,1,0,0,0,1194,1195,7,2,0,0,1195, - 1196,7,12,0,0,1196,1197,7,13,0,0,1197,22,1,0,0,0,1198,1199,7,2,0, - 0,1199,1200,7,11,0,0,1200,1201,7,9,0,0,1201,24,1,0,0,0,1202,1203, - 7,2,0,0,1203,1204,7,11,0,0,1204,1205,7,11,0,0,1205,1206,7,2,0,0, - 1206,1207,7,13,0,0,1207,26,1,0,0,0,1208,1209,7,2,0,0,1209,1210,7, - 11,0,0,1210,1211,7,11,0,0,1211,1212,7,2,0,0,1212,1213,7,13,0,0,1213, - 1214,5,95,0,0,1214,1215,7,2,0,0,1215,1216,7,16,0,0,1216,1217,7,16, - 0,0,1217,28,1,0,0,0,1218,1219,7,2,0,0,1219,1220,7,11,0,0,1220,1221, - 7,11,0,0,1221,1222,7,2,0,0,1222,1223,7,13,0,0,1223,1224,5,95,0,0, - 1224,1225,7,7,0,0,1225,1226,7,6,0,0,1226,1227,7,12,0,0,1227,1228, - 7,7,0,0,1228,1229,7,2,0,0,1229,1230,7,8,0,0,1230,1231,5,95,0,0,1231, - 1232,7,2,0,0,1232,1233,7,16,0,0,1233,1234,7,16,0,0,1234,30,1,0,0, - 0,1235,1236,7,2,0,0,1236,1237,7,11,0,0,1237,1238,7,11,0,0,1238,1239, - 7,2,0,0,1239,1240,7,13,0,0,1240,1241,5,95,0,0,1241,1242,7,17,0,0, - 1242,1243,7,2,0,0,1243,1244,7,18,0,0,1244,1245,5,95,0,0,1245,1246, - 7,7,0,0,1246,1247,7,2,0,0,1247,1248,7,11,0,0,1248,1249,7,15,0,0, - 1249,1250,7,19,0,0,1250,1251,7,12,0,0,1251,1252,7,2,0,0,1252,1253, - 7,5,0,0,1253,1254,7,19,0,0,1254,1255,7,8,0,0,1255,1256,7,13,0,0, - 1256,32,1,0,0,0,1257,1258,7,2,0,0,1258,1259,7,4,0,0,1259,34,1,0, - 0,0,1260,1261,7,2,0,0,1261,1262,7,4,0,0,1262,1263,7,9,0,0,1263,1264, - 7,12,0,0,1264,1265,7,4,0,0,1265,1266,7,19,0,0,1266,1267,7,8,0,0, - 1267,1268,7,19,0,0,1268,1269,7,20,0,0,1269,1270,7,9,0,0,1270,36, - 1,0,0,0,1271,1272,7,2,0,0,1272,1273,7,4,0,0,1273,1274,7,13,0,0,1274, - 1275,7,17,0,0,1275,1276,7,17,0,0,1276,1277,7,9,0,0,1277,1278,7,8, - 0,0,1278,1279,7,11,0,0,1279,1280,7,19,0,0,1280,1281,7,7,0,0,1281, - 38,1,0,0,0,1282,1283,7,2,0,0,1283,1284,7,8,0,0,1284,40,1,0,0,0,1285, - 1286,7,2,0,0,1286,1287,7,8,0,0,1287,1288,7,6,0,0,1288,1289,7,17, - 0,0,1289,1290,7,19,0,0,1290,1291,7,7,0,0,1291,42,1,0,0,0,1292,1293, - 7,2,0,0,1293,1294,7,21,0,0,1294,1295,7,8,0,0,1295,1296,7,22,0,0, - 1296,1297,7,6,0,0,1297,1298,7,11,0,0,1298,1299,7,19,0,0,1299,1300, - 7,14,0,0,1300,1301,7,2,0,0,1301,1302,7,8,0,0,1302,1303,7,19,0,0, - 1303,1304,7,6,0,0,1304,1305,7,12,0,0,1305,44,1,0,0,0,1306,1307,7, - 2,0,0,1307,1308,7,20,0,0,1308,1309,7,16,0,0,1309,46,1,0,0,0,1310, - 1311,7,3,0,0,1311,1312,7,9,0,0,1312,1313,7,16,0,0,1313,1314,7,19, - 0,0,1314,1315,7,12,0,0,1315,48,1,0,0,0,1316,1317,7,3,0,0,1317,1318, - 7,9,0,0,1318,1319,7,16,0,0,1319,1320,7,19,0,0,1320,1321,7,12,0,0, - 1321,1322,5,95,0,0,1322,1323,7,23,0,0,1323,1324,7,11,0,0,1324,1325, - 7,2,0,0,1325,1326,7,17,0,0,1326,1327,7,9,0,0,1327,50,1,0,0,0,1328, - 1329,7,3,0,0,1329,1330,7,9,0,0,1330,1331,7,16,0,0,1331,1332,7,19, - 0,0,1332,1333,7,12,0,0,1333,1334,5,95,0,0,1334,1335,7,24,0,0,1335, - 1336,7,2,0,0,1336,1337,7,11,0,0,1337,1338,7,8,0,0,1338,1339,7,19, - 0,0,1339,1340,7,8,0,0,1340,1341,7,19,0,0,1341,1342,7,6,0,0,1342, - 1343,7,12,0,0,1343,52,1,0,0,0,1344,1345,7,3,0,0,1345,1346,7,9,0, - 0,1346,1347,7,8,0,0,1347,1348,7,10,0,0,1348,1349,7,9,0,0,1349,1350, - 7,9,0,0,1350,1351,7,12,0,0,1351,54,1,0,0,0,1352,1353,7,3,0,0,1353, - 1354,7,19,0,0,1354,1355,7,16,0,0,1355,1356,7,19,0,0,1356,1357,7, - 12,0,0,1357,1358,7,8,0,0,1358,56,1,0,0,0,1359,1360,7,3,0,0,1360, - 1361,7,19,0,0,1361,1362,7,12,0,0,1362,1363,7,2,0,0,1363,1364,7,11, - 0,0,1364,1365,7,13,0,0,1365,58,1,0,0,0,1366,1367,7,3,0,0,1367,1368, - 7,19,0,0,1368,1369,7,8,0,0,1369,60,1,0,0,0,1370,1371,7,3,0,0,1371, - 1372,7,5,0,0,1372,1373,7,6,0,0,1373,1374,7,3,0,0,1374,62,1,0,0,0, - 1375,1376,7,3,0,0,1376,1377,7,6,0,0,1377,1378,7,6,0,0,1378,1379, - 7,5,0,0,1379,1380,7,9,0,0,1380,1381,7,2,0,0,1381,1382,7,12,0,0,1382, - 64,1,0,0,0,1383,1384,7,3,0,0,1384,1385,7,6,0,0,1385,1386,7,8,0,0, - 1386,1387,7,22,0,0,1387,66,1,0,0,0,1388,1389,7,3,0,0,1389,1390,7, - 13,0,0,1390,68,1,0,0,0,1391,1392,7,3,0,0,1392,1393,7,13,0,0,1393, - 1394,7,8,0,0,1394,1395,7,9,0,0,1395,1396,7,4,0,0,1396,70,1,0,0,0, - 1397,1398,7,7,0,0,1398,1399,7,2,0,0,1399,1400,7,5,0,0,1400,1401, - 7,5,0,0,1401,72,1,0,0,0,1402,1403,7,7,0,0,1403,1404,7,2,0,0,1404, - 1405,7,5,0,0,1405,1406,7,5,0,0,1406,1407,7,9,0,0,1407,1408,7,15, - 0,0,1408,74,1,0,0,0,1409,1410,7,7,0,0,1410,1411,7,2,0,0,1411,1412, - 7,11,0,0,1412,1413,7,15,0,0,1413,1414,7,19,0,0,1414,1415,7,12,0, - 0,1415,1416,7,2,0,0,1416,1417,7,5,0,0,1417,1418,7,19,0,0,1418,1419, - 7,8,0,0,1419,1420,7,13,0,0,1420,76,1,0,0,0,1421,1422,7,7,0,0,1422, - 1423,7,2,0,0,1423,1424,7,4,0,0,1424,1425,7,7,0,0,1425,1426,7,2,0, - 0,1426,1427,7,15,0,0,1427,1428,7,9,0,0,1428,1429,7,15,0,0,1429,78, - 1,0,0,0,1430,1431,7,7,0,0,1431,1432,7,2,0,0,1432,1433,7,4,0,0,1433, - 1434,7,9,0,0,1434,80,1,0,0,0,1435,1436,7,7,0,0,1436,1437,7,2,0,0, - 1437,1438,7,4,0,0,1438,1439,7,8,0,0,1439,82,1,0,0,0,1440,1441,7, - 7,0,0,1441,1442,7,2,0,0,1442,1443,7,8,0,0,1443,1444,7,2,0,0,1444, - 1445,7,5,0,0,1445,1446,7,6,0,0,1446,1447,7,16,0,0,1447,1448,7,4, - 0,0,1448,84,1,0,0,0,1449,1450,7,7,0,0,1450,1451,7,9,0,0,1451,1452, - 7,19,0,0,1452,1453,7,5,0,0,1453,86,1,0,0,0,1454,1455,7,7,0,0,1455, - 1456,7,9,0,0,1456,1457,7,19,0,0,1457,1458,7,5,0,0,1458,1459,7,19, - 0,0,1459,1460,7,12,0,0,1460,1461,7,16,0,0,1461,88,1,0,0,0,1462,1463, - 7,7,0,0,1463,1464,7,22,0,0,1464,1465,7,2,0,0,1465,1466,7,12,0,0, - 1466,1467,7,16,0,0,1467,1468,7,9,0,0,1468,1469,7,5,0,0,1469,1470, - 7,6,0,0,1470,1471,7,16,0,0,1471,1472,5,95,0,0,1472,1473,7,17,0,0, - 1473,1474,7,6,0,0,1474,1475,7,15,0,0,1475,1476,7,9,0,0,1476,90,1, - 0,0,0,1477,1478,7,7,0,0,1478,1479,7,22,0,0,1479,1480,7,2,0,0,1480, - 1481,7,11,0,0,1481,92,1,0,0,0,1482,1483,7,7,0,0,1483,1484,7,22,0, - 0,1484,1485,7,2,0,0,1485,1486,7,11,0,0,1486,1487,7,2,0,0,1487,1488, - 7,7,0,0,1488,1489,7,8,0,0,1489,1490,7,9,0,0,1490,1491,7,11,0,0,1491, - 94,1,0,0,0,1492,1493,7,7,0,0,1493,1494,7,22,0,0,1494,1495,7,2,0, - 0,1495,1496,7,11,0,0,1496,1497,7,2,0,0,1497,1498,7,7,0,0,1498,1499, - 7,8,0,0,1499,1500,7,9,0,0,1500,1501,7,11,0,0,1501,1502,5,95,0,0, - 1502,1503,7,5,0,0,1503,1504,7,9,0,0,1504,1505,7,12,0,0,1505,1506, - 7,16,0,0,1506,1507,7,8,0,0,1507,1508,7,22,0,0,1508,96,1,0,0,0,1509, - 1510,7,7,0,0,1510,1511,7,22,0,0,1511,1512,7,2,0,0,1512,1513,7,11, - 0,0,1513,1514,5,95,0,0,1514,1515,7,5,0,0,1515,1516,7,9,0,0,1516, - 1517,7,12,0,0,1517,1518,7,16,0,0,1518,1519,7,8,0,0,1519,1520,7,22, - 0,0,1520,98,1,0,0,0,1521,1522,7,7,0,0,1522,1523,7,22,0,0,1523,1524, - 7,9,0,0,1524,1525,7,7,0,0,1525,1526,7,25,0,0,1526,100,1,0,0,0,1527, - 1528,7,7,0,0,1528,1529,7,5,0,0,1529,1530,7,2,0,0,1530,1531,7,4,0, - 0,1531,1532,7,4,0,0,1532,1533,7,19,0,0,1533,1534,7,23,0,0,1534,1535, - 7,19,0,0,1535,1536,7,9,0,0,1536,1537,7,11,0,0,1537,102,1,0,0,0,1538, - 1539,7,7,0,0,1539,1540,7,5,0,0,1540,1541,7,6,0,0,1541,1542,7,3,0, - 0,1542,104,1,0,0,0,1543,1544,7,7,0,0,1544,1545,7,5,0,0,1545,1546, - 7,6,0,0,1546,1547,7,4,0,0,1547,1548,7,9,0,0,1548,106,1,0,0,0,1549, - 1550,7,7,0,0,1550,1551,7,6,0,0,1551,1552,7,2,0,0,1552,1553,7,5,0, - 0,1553,1554,7,9,0,0,1554,1555,7,4,0,0,1555,1556,7,7,0,0,1556,1557, - 7,9,0,0,1557,108,1,0,0,0,1558,1559,7,7,0,0,1559,1560,7,6,0,0,1560, - 1561,7,5,0,0,1561,1562,7,5,0,0,1562,1563,7,2,0,0,1563,1564,7,8,0, - 0,1564,1565,7,9,0,0,1565,110,1,0,0,0,1566,1567,7,7,0,0,1567,1568, - 7,6,0,0,1568,1569,7,5,0,0,1569,1570,7,5,0,0,1570,1571,7,9,0,0,1571, - 1572,7,7,0,0,1572,1573,7,8,0,0,1573,112,1,0,0,0,1574,1575,7,7,0, - 0,1575,1576,7,6,0,0,1576,1577,7,5,0,0,1577,1578,7,21,0,0,1578,1579, - 7,17,0,0,1579,1580,7,12,0,0,1580,114,1,0,0,0,1581,1582,7,7,0,0,1582, - 1583,7,6,0,0,1583,1584,7,5,0,0,1584,1585,7,21,0,0,1585,1586,7,17, - 0,0,1586,1587,7,12,0,0,1587,1588,7,4,0,0,1588,116,1,0,0,0,1589,1590, - 7,7,0,0,1590,1591,7,6,0,0,1591,1592,7,17,0,0,1592,1593,7,17,0,0, - 1593,1594,7,9,0,0,1594,1595,7,12,0,0,1595,1596,7,8,0,0,1596,118, - 1,0,0,0,1597,1598,7,7,0,0,1598,1599,7,6,0,0,1599,1600,7,17,0,0,1600, - 1601,7,17,0,0,1601,1602,7,19,0,0,1602,1603,7,8,0,0,1603,120,1,0, - 0,0,1604,1605,7,7,0,0,1605,1606,7,6,0,0,1606,1607,7,17,0,0,1607, - 1608,7,24,0,0,1608,1609,7,21,0,0,1609,1610,7,8,0,0,1610,1611,7,9, - 0,0,1611,122,1,0,0,0,1612,1613,7,7,0,0,1613,1614,7,6,0,0,1614,1615, - 7,12,0,0,1615,1616,7,15,0,0,1616,1617,7,19,0,0,1617,1618,7,8,0,0, - 1618,1619,7,19,0,0,1619,1620,7,6,0,0,1620,1621,7,12,0,0,1621,124, - 1,0,0,0,1622,1623,7,7,0,0,1623,1624,7,6,0,0,1624,1625,7,12,0,0,1625, - 1626,7,12,0,0,1626,1627,7,9,0,0,1627,1628,7,7,0,0,1628,1629,7,8, - 0,0,1629,126,1,0,0,0,1630,1631,7,7,0,0,1631,1632,7,6,0,0,1632,1633, - 7,12,0,0,1633,1634,7,4,0,0,1634,1635,7,8,0,0,1635,1636,7,11,0,0, - 1636,1637,7,2,0,0,1637,1638,7,19,0,0,1638,1639,7,12,0,0,1639,1640, - 7,8,0,0,1640,128,1,0,0,0,1641,1642,7,7,0,0,1642,1643,7,6,0,0,1643, - 1644,7,12,0,0,1644,1645,7,8,0,0,1645,1646,7,2,0,0,1646,1647,7,19, - 0,0,1647,1648,7,12,0,0,1648,1649,7,4,0,0,1649,130,1,0,0,0,1650,1651, - 7,7,0,0,1651,1652,7,6,0,0,1652,1653,7,12,0,0,1653,1654,7,20,0,0, - 1654,1655,7,9,0,0,1655,1656,7,11,0,0,1656,1657,7,8,0,0,1657,132, - 1,0,0,0,1658,1659,7,7,0,0,1659,1660,7,6,0,0,1660,1661,7,11,0,0,1661, - 1662,7,11,0,0,1662,134,1,0,0,0,1663,1664,7,7,0,0,1664,1665,7,6,0, - 0,1665,1666,7,11,0,0,1666,1667,7,11,0,0,1667,1668,7,9,0,0,1668,1669, - 7,4,0,0,1669,1670,7,24,0,0,1670,1671,7,6,0,0,1671,1672,7,12,0,0, - 1672,1673,7,15,0,0,1673,1674,7,19,0,0,1674,1675,7,12,0,0,1675,1676, - 7,16,0,0,1676,136,1,0,0,0,1677,1678,7,7,0,0,1678,1679,7,6,0,0,1679, - 1680,7,21,0,0,1680,1681,7,12,0,0,1681,1682,7,8,0,0,1682,138,1,0, - 0,0,1683,1684,7,7,0,0,1684,1685,7,6,0,0,1685,1686,7,20,0,0,1686, - 1687,7,2,0,0,1687,1688,7,11,0,0,1688,1689,5,95,0,0,1689,1690,7,24, - 0,0,1690,1691,7,6,0,0,1691,1692,7,24,0,0,1692,140,1,0,0,0,1693,1694, - 7,7,0,0,1694,1695,7,6,0,0,1695,1696,7,20,0,0,1696,1697,7,2,0,0,1697, - 1698,7,11,0,0,1698,1699,5,95,0,0,1699,1700,7,4,0,0,1700,1701,7,2, - 0,0,1701,1702,7,17,0,0,1702,1703,7,24,0,0,1703,142,1,0,0,0,1704, - 1705,7,7,0,0,1705,1706,7,11,0,0,1706,1707,7,9,0,0,1707,1708,7,2, - 0,0,1708,1709,7,8,0,0,1709,1710,7,9,0,0,1710,144,1,0,0,0,1711,1712, - 7,7,0,0,1712,1713,7,11,0,0,1713,1714,7,6,0,0,1714,1715,7,4,0,0,1715, - 1716,7,4,0,0,1716,146,1,0,0,0,1717,1718,7,7,0,0,1718,1719,7,21,0, - 0,1719,1720,7,3,0,0,1720,1721,7,9,0,0,1721,148,1,0,0,0,1722,1723, - 7,7,0,0,1723,1724,7,21,0,0,1724,1725,7,17,0,0,1725,1726,7,9,0,0, - 1726,1727,5,95,0,0,1727,1728,7,15,0,0,1728,1729,7,19,0,0,1729,1730, - 7,4,0,0,1730,1731,7,8,0,0,1731,150,1,0,0,0,1732,1733,7,7,0,0,1733, - 1734,7,21,0,0,1734,1735,7,11,0,0,1735,1736,7,11,0,0,1736,1737,7, - 9,0,0,1737,1738,7,12,0,0,1738,1739,7,8,0,0,1739,152,1,0,0,0,1740, - 1741,7,7,0,0,1741,1742,7,21,0,0,1742,1743,7,11,0,0,1743,1744,7,11, - 0,0,1744,1745,7,9,0,0,1745,1746,7,12,0,0,1746,1747,7,8,0,0,1747, - 1748,5,95,0,0,1748,1749,7,7,0,0,1749,1750,7,2,0,0,1750,1751,7,8, - 0,0,1751,1752,7,2,0,0,1752,1753,7,5,0,0,1753,1754,7,6,0,0,1754,1755, - 7,16,0,0,1755,154,1,0,0,0,1756,1757,7,7,0,0,1757,1758,7,21,0,0,1758, - 1759,7,11,0,0,1759,1760,7,11,0,0,1760,1761,7,9,0,0,1761,1762,7,12, - 0,0,1762,1763,7,8,0,0,1763,1764,5,95,0,0,1764,1765,7,15,0,0,1765, - 1766,7,2,0,0,1766,1767,7,8,0,0,1767,1768,7,9,0,0,1768,156,1,0,0, - 0,1769,1770,7,7,0,0,1770,1771,7,21,0,0,1771,1772,7,11,0,0,1772,1773, - 7,11,0,0,1773,1774,7,9,0,0,1774,1775,7,12,0,0,1775,1776,7,8,0,0, - 1776,1777,5,95,0,0,1777,1778,7,15,0,0,1778,1779,7,9,0,0,1779,1780, - 7,23,0,0,1780,1781,7,2,0,0,1781,1782,7,21,0,0,1782,1783,7,5,0,0, - 1783,1784,7,8,0,0,1784,1785,5,95,0,0,1785,1786,7,8,0,0,1786,1787, - 7,11,0,0,1787,1788,7,2,0,0,1788,1789,7,12,0,0,1789,1790,7,4,0,0, - 1790,1791,7,23,0,0,1791,1792,7,6,0,0,1792,1793,7,11,0,0,1793,1794, - 7,17,0,0,1794,1795,5,95,0,0,1795,1796,7,16,0,0,1796,1797,7,11,0, - 0,1797,1798,7,6,0,0,1798,1799,7,21,0,0,1799,1800,7,24,0,0,1800,158, - 1,0,0,0,1801,1802,7,7,0,0,1802,1803,7,21,0,0,1803,1804,7,11,0,0, - 1804,1805,7,11,0,0,1805,1806,7,9,0,0,1806,1807,7,12,0,0,1807,1808, - 7,8,0,0,1808,1809,5,95,0,0,1809,1810,7,24,0,0,1810,1811,7,2,0,0, - 1811,1812,7,8,0,0,1812,1813,7,22,0,0,1813,160,1,0,0,0,1814,1815, - 7,7,0,0,1815,1816,7,21,0,0,1816,1817,7,11,0,0,1817,1818,7,11,0,0, - 1818,1819,7,9,0,0,1819,1820,7,12,0,0,1820,1821,7,8,0,0,1821,1822, - 5,95,0,0,1822,1823,7,11,0,0,1823,1824,7,6,0,0,1824,1825,7,5,0,0, - 1825,1826,7,9,0,0,1826,162,1,0,0,0,1827,1828,7,7,0,0,1828,1829,7, - 21,0,0,1829,1830,7,11,0,0,1830,1831,7,11,0,0,1831,1832,7,9,0,0,1832, - 1833,7,12,0,0,1833,1834,7,8,0,0,1834,1835,5,95,0,0,1835,1836,7,11, - 0,0,1836,1837,7,6,0,0,1837,1838,7,10,0,0,1838,164,1,0,0,0,1839,1840, - 7,7,0,0,1840,1841,7,21,0,0,1841,1842,7,11,0,0,1842,1843,7,11,0,0, - 1843,1844,7,9,0,0,1844,1845,7,12,0,0,1845,1846,7,8,0,0,1846,1847, - 5,95,0,0,1847,1848,7,4,0,0,1848,1849,7,7,0,0,1849,1850,7,22,0,0, - 1850,1851,7,9,0,0,1851,1852,7,17,0,0,1852,1853,7,2,0,0,1853,166, - 1,0,0,0,1854,1855,7,7,0,0,1855,1856,7,21,0,0,1856,1857,7,11,0,0, - 1857,1858,7,11,0,0,1858,1859,7,9,0,0,1859,1860,7,12,0,0,1860,1861, - 7,8,0,0,1861,1862,5,95,0,0,1862,1863,7,8,0,0,1863,1864,7,19,0,0, - 1864,1865,7,17,0,0,1865,1866,7,9,0,0,1866,168,1,0,0,0,1867,1868, - 7,7,0,0,1868,1869,7,21,0,0,1869,1870,7,11,0,0,1870,1871,7,11,0,0, - 1871,1872,7,9,0,0,1872,1873,7,12,0,0,1873,1874,7,8,0,0,1874,1875, - 5,95,0,0,1875,1876,7,8,0,0,1876,1877,7,19,0,0,1877,1878,7,17,0,0, - 1878,1879,7,9,0,0,1879,1880,7,4,0,0,1880,1881,7,8,0,0,1881,1882, - 7,2,0,0,1882,1883,7,17,0,0,1883,1884,7,24,0,0,1884,170,1,0,0,0,1885, - 1886,7,7,0,0,1886,1887,7,21,0,0,1887,1888,7,11,0,0,1888,1889,7,11, - 0,0,1889,1890,7,9,0,0,1890,1891,7,12,0,0,1891,1892,7,8,0,0,1892, - 1893,5,95,0,0,1893,1894,7,8,0,0,1894,1895,7,11,0,0,1895,1896,7,2, - 0,0,1896,1897,7,12,0,0,1897,1898,7,4,0,0,1898,1899,7,23,0,0,1899, - 1900,7,6,0,0,1900,1901,7,11,0,0,1901,1902,7,17,0,0,1902,1903,5,95, - 0,0,1903,1904,7,16,0,0,1904,1905,7,11,0,0,1905,1906,7,6,0,0,1906, - 1907,7,21,0,0,1907,1908,7,24,0,0,1908,1909,5,95,0,0,1909,1910,7, - 23,0,0,1910,1911,7,6,0,0,1911,1912,7,11,0,0,1912,1913,5,95,0,0,1913, - 1914,7,8,0,0,1914,1915,7,13,0,0,1915,1916,7,24,0,0,1916,1917,7,9, - 0,0,1917,172,1,0,0,0,1918,1919,7,7,0,0,1919,1920,7,21,0,0,1920,1921, - 7,11,0,0,1921,1922,7,11,0,0,1922,1923,7,9,0,0,1923,1924,7,12,0,0, - 1924,1925,7,8,0,0,1925,1926,5,95,0,0,1926,1927,7,21,0,0,1927,1928, - 7,4,0,0,1928,1929,7,9,0,0,1929,1930,7,11,0,0,1930,174,1,0,0,0,1931, - 1932,7,7,0,0,1932,1933,7,21,0,0,1933,1934,7,11,0,0,1934,1935,7,4, - 0,0,1935,1936,7,6,0,0,1936,1937,7,11,0,0,1937,176,1,0,0,0,1938,1939, - 7,7,0,0,1939,1940,7,13,0,0,1940,1941,7,7,0,0,1941,1942,7,5,0,0,1942, - 1943,7,9,0,0,1943,178,1,0,0,0,1944,1945,7,15,0,0,1945,1946,7,2,0, - 0,1946,1947,7,8,0,0,1947,1948,7,2,0,0,1948,1949,7,3,0,0,1949,1950, - 7,2,0,0,1950,1951,7,4,0,0,1951,1952,7,9,0,0,1952,1953,7,4,0,0,1953, - 180,1,0,0,0,1954,1955,7,15,0,0,1955,1956,7,2,0,0,1956,1957,7,8,0, - 0,1957,1958,7,9,0,0,1958,182,1,0,0,0,1959,1960,7,15,0,0,1960,1961, - 7,2,0,0,1961,1962,7,8,0,0,1962,1963,7,9,0,0,1963,1964,7,8,0,0,1964, - 1965,7,19,0,0,1965,1966,7,17,0,0,1966,1967,7,9,0,0,1967,184,1,0, - 0,0,1968,1969,7,15,0,0,1969,1970,7,2,0,0,1970,1971,7,8,0,0,1971, - 1972,7,9,0,0,1972,1973,7,8,0,0,1973,1974,7,19,0,0,1974,1975,7,17, - 0,0,1975,1976,7,9,0,0,1976,1977,5,95,0,0,1977,1978,7,15,0,0,1978, - 1979,7,19,0,0,1979,1980,7,23,0,0,1980,1981,7,23,0,0,1981,186,1,0, - 0,0,1982,1983,7,15,0,0,1983,1984,7,2,0,0,1984,1985,7,8,0,0,1985, - 1986,7,9,0,0,1986,1987,7,8,0,0,1987,1988,7,19,0,0,1988,1989,7,17, - 0,0,1989,1990,7,9,0,0,1990,1991,5,95,0,0,1991,1992,7,8,0,0,1992, - 1993,7,11,0,0,1993,1994,7,21,0,0,1994,1995,7,12,0,0,1995,1996,7, - 7,0,0,1996,188,1,0,0,0,1997,1998,7,15,0,0,1998,1999,7,2,0,0,1999, - 2000,7,8,0,0,2000,2001,7,9,0,0,2001,2002,5,95,0,0,2002,2003,7,15, - 0,0,2003,2004,7,19,0,0,2004,2005,7,23,0,0,2005,2006,7,23,0,0,2006, - 190,1,0,0,0,2007,2008,7,15,0,0,2008,2009,7,2,0,0,2009,2010,7,8,0, - 0,2010,2011,7,9,0,0,2011,2012,5,95,0,0,2012,2013,7,8,0,0,2013,2014, - 7,11,0,0,2014,2015,7,21,0,0,2015,2016,7,12,0,0,2016,2017,7,7,0,0, - 2017,192,1,0,0,0,2018,2019,7,15,0,0,2019,2020,7,2,0,0,2020,2021, - 7,13,0,0,2021,194,1,0,0,0,2022,2023,7,15,0,0,2023,2024,7,2,0,0,2024, - 2025,7,13,0,0,2025,2026,7,6,0,0,2026,2027,7,23,0,0,2027,2028,7,10, - 0,0,2028,2029,7,9,0,0,2029,2030,7,9,0,0,2030,2031,7,25,0,0,2031, - 196,1,0,0,0,2032,2033,7,15,0,0,2033,2034,7,2,0,0,2034,2035,7,13, - 0,0,2035,2036,7,6,0,0,2036,2037,7,23,0,0,2037,2038,7,13,0,0,2038, - 2039,7,9,0,0,2039,2040,7,2,0,0,2040,2041,7,11,0,0,2041,198,1,0,0, - 0,2042,2043,7,15,0,0,2043,2044,7,9,0,0,2044,2045,7,2,0,0,2045,2046, - 7,5,0,0,2046,2047,7,5,0,0,2047,2048,7,6,0,0,2048,2049,7,7,0,0,2049, - 2050,7,2,0,0,2050,2051,7,8,0,0,2051,2052,7,9,0,0,2052,200,1,0,0, - 0,2053,2054,7,15,0,0,2054,2055,7,9,0,0,2055,2056,7,7,0,0,2056,202, - 1,0,0,0,2057,2058,7,15,0,0,2058,2059,7,9,0,0,2059,2060,7,7,0,0,2060, - 2061,7,19,0,0,2061,2062,7,17,0,0,2062,2063,7,2,0,0,2063,2064,7,5, - 0,0,2064,204,1,0,0,0,2065,2066,7,15,0,0,2066,2067,7,9,0,0,2067,2068, - 7,7,0,0,2068,2069,7,5,0,0,2069,2070,7,2,0,0,2070,2071,7,11,0,0,2071, - 2072,7,9,0,0,2072,206,1,0,0,0,2073,2074,7,15,0,0,2074,2075,7,9,0, - 0,2075,2076,7,23,0,0,2076,2077,7,2,0,0,2077,2078,7,21,0,0,2078,2079, - 7,5,0,0,2079,2080,7,8,0,0,2080,208,1,0,0,0,2081,2082,7,15,0,0,2082, - 2083,7,9,0,0,2083,2084,7,23,0,0,2084,2085,7,19,0,0,2085,2086,7,12, - 0,0,2086,2087,7,9,0,0,2087,210,1,0,0,0,2088,2089,7,15,0,0,2089,2090, - 7,9,0,0,2090,2091,7,5,0,0,2091,2092,7,9,0,0,2092,2093,7,8,0,0,2093, - 2094,7,9,0,0,2094,212,1,0,0,0,2095,2096,7,15,0,0,2096,2097,7,9,0, - 0,2097,2098,7,12,0,0,2098,2099,7,4,0,0,2099,2100,7,9,0,0,2100,2101, - 5,95,0,0,2101,2102,7,11,0,0,2102,2103,7,2,0,0,2103,2104,7,12,0,0, - 2104,2105,7,25,0,0,2105,214,1,0,0,0,2106,2107,7,15,0,0,2107,2108, - 7,9,0,0,2108,2109,7,11,0,0,2109,2110,7,9,0,0,2110,2111,7,23,0,0, - 2111,216,1,0,0,0,2112,2113,7,15,0,0,2113,2114,7,9,0,0,2114,2115, - 7,4,0,0,2115,2116,7,7,0,0,2116,2117,7,11,0,0,2117,2118,7,19,0,0, - 2118,2119,7,3,0,0,2119,2120,7,9,0,0,2120,218,1,0,0,0,2121,2122,7, - 15,0,0,2122,2123,7,9,0,0,2123,2124,7,8,0,0,2124,2125,7,9,0,0,2125, - 2126,7,11,0,0,2126,2127,7,17,0,0,2127,2128,7,19,0,0,2128,2129,7, - 12,0,0,2129,2130,7,19,0,0,2130,2131,7,4,0,0,2131,2132,7,8,0,0,2132, - 2133,7,19,0,0,2133,2134,7,7,0,0,2134,220,1,0,0,0,2135,2136,7,15, - 0,0,2136,2137,7,19,0,0,2137,2138,7,4,0,0,2138,2139,7,2,0,0,2139, - 2140,7,5,0,0,2140,2141,7,5,0,0,2141,2142,7,6,0,0,2142,2143,7,10, - 0,0,2143,222,1,0,0,0,2144,2145,7,15,0,0,2145,2146,7,19,0,0,2146, - 2147,7,4,0,0,2147,2148,7,7,0,0,2148,2149,7,6,0,0,2149,2150,7,12, - 0,0,2150,2151,7,12,0,0,2151,2152,7,9,0,0,2152,2153,7,7,0,0,2153, - 2154,7,8,0,0,2154,224,1,0,0,0,2155,2156,7,15,0,0,2156,2157,7,19, - 0,0,2157,2158,7,4,0,0,2158,2159,7,8,0,0,2159,2160,7,19,0,0,2160, - 2161,7,12,0,0,2161,2162,7,7,0,0,2162,2163,7,8,0,0,2163,226,1,0,0, - 0,2164,2165,7,15,0,0,2165,2166,7,6,0,0,2166,2167,7,8,0,0,2167,228, - 1,0,0,0,2168,2169,7,15,0,0,2169,2170,7,6,0,0,2170,2171,7,21,0,0, - 2171,2172,7,3,0,0,2172,2173,7,5,0,0,2173,2174,7,9,0,0,2174,230,1, - 0,0,0,2175,2176,7,15,0,0,2176,2177,7,11,0,0,2177,2178,7,6,0,0,2178, - 2179,7,24,0,0,2179,232,1,0,0,0,2180,2181,7,15,0,0,2181,2182,7,13, - 0,0,2182,2183,7,12,0,0,2183,2184,7,2,0,0,2184,2185,7,17,0,0,2185, - 2186,7,19,0,0,2186,2187,7,7,0,0,2187,234,1,0,0,0,2188,2189,7,9,0, - 0,2189,2190,7,2,0,0,2190,2191,7,7,0,0,2191,2192,7,22,0,0,2192,236, - 1,0,0,0,2193,2194,7,9,0,0,2194,2195,7,5,0,0,2195,2196,7,9,0,0,2196, - 2197,7,17,0,0,2197,2198,7,9,0,0,2198,2199,7,12,0,0,2199,2200,7,8, - 0,0,2200,238,1,0,0,0,2201,2202,7,9,0,0,2202,2203,7,5,0,0,2203,2204, - 7,4,0,0,2204,2205,7,9,0,0,2205,240,1,0,0,0,2206,2207,7,9,0,0,2207, - 2208,7,17,0,0,2208,2209,7,24,0,0,2209,2210,7,8,0,0,2210,2211,7,13, - 0,0,2211,242,1,0,0,0,2212,2213,7,9,0,0,2213,2214,7,12,0,0,2214,2215, - 7,15,0,0,2215,244,1,0,0,0,2216,2217,7,9,0,0,2217,2218,7,12,0,0,2218, - 2219,7,15,0,0,2219,2220,5,95,0,0,2220,2221,7,23,0,0,2221,2222,7, - 11,0,0,2222,2223,7,2,0,0,2223,2224,7,17,0,0,2224,2225,7,9,0,0,2225, - 246,1,0,0,0,2226,2227,7,9,0,0,2227,2228,7,12,0,0,2228,2229,7,15, - 0,0,2229,2230,5,95,0,0,2230,2231,7,24,0,0,2231,2232,7,2,0,0,2232, - 2233,7,11,0,0,2233,2234,7,8,0,0,2234,2235,7,19,0,0,2235,2236,7,8, - 0,0,2236,2237,7,19,0,0,2237,2238,7,6,0,0,2238,2239,7,12,0,0,2239, - 248,1,0,0,0,2240,2241,7,9,0,0,2241,2242,7,12,0,0,2242,2243,7,23, - 0,0,2243,2244,7,6,0,0,2244,2245,7,11,0,0,2245,2246,7,7,0,0,2246, - 2247,7,9,0,0,2247,2248,7,15,0,0,2248,250,1,0,0,0,2249,2250,7,9,0, - 0,2250,2251,7,26,0,0,2251,2252,7,21,0,0,2252,2253,7,2,0,0,2253,2254, - 7,5,0,0,2254,2255,7,4,0,0,2255,252,1,0,0,0,2256,2257,7,9,0,0,2257, - 2258,7,4,0,0,2258,2259,7,7,0,0,2259,2260,7,2,0,0,2260,2261,7,24, - 0,0,2261,2262,7,9,0,0,2262,254,1,0,0,0,2263,2264,7,9,0,0,2264,2265, - 7,4,0,0,2265,2266,7,8,0,0,2266,2267,7,19,0,0,2267,2268,7,17,0,0, - 2268,2269,7,2,0,0,2269,2270,7,8,0,0,2270,2271,7,9,0,0,2271,2272, - 7,15,0,0,2272,2273,5,95,0,0,2273,2274,7,7,0,0,2274,2275,7,6,0,0, - 2275,2276,7,4,0,0,2276,2277,7,8,0,0,2277,256,1,0,0,0,2278,2279,7, - 9,0,0,2279,2280,7,20,0,0,2280,2281,7,9,0,0,2281,2282,7,11,0,0,2282, - 2283,7,13,0,0,2283,258,1,0,0,0,2284,2285,7,9,0,0,2285,2286,7,18, - 0,0,2286,2287,7,7,0,0,2287,2288,7,9,0,0,2288,2289,7,24,0,0,2289, - 2290,7,8,0,0,2290,260,1,0,0,0,2291,2292,7,9,0,0,2292,2293,7,18,0, - 0,2293,2294,7,9,0,0,2294,2295,7,7,0,0,2295,262,1,0,0,0,2296,2297, - 7,9,0,0,2297,2298,7,18,0,0,2298,2299,7,9,0,0,2299,2300,7,7,0,0,2300, - 2301,7,21,0,0,2301,2302,7,8,0,0,2302,2303,7,9,0,0,2303,264,1,0,0, - 0,2304,2305,7,9,0,0,2305,2306,7,18,0,0,2306,2307,7,19,0,0,2307,2308, - 7,4,0,0,2308,2309,7,8,0,0,2309,2310,7,4,0,0,2310,266,1,0,0,0,2311, - 2312,7,9,0,0,2312,2313,7,18,0,0,2313,2314,7,24,0,0,2314,268,1,0, - 0,0,2315,2316,7,9,0,0,2316,2317,7,18,0,0,2317,2318,7,24,0,0,2318, - 2319,7,5,0,0,2319,2320,7,2,0,0,2320,2321,7,19,0,0,2321,2322,7,12, - 0,0,2322,270,1,0,0,0,2323,2324,7,9,0,0,2324,2325,7,18,0,0,2325,2326, - 7,8,0,0,2326,2327,7,9,0,0,2327,2328,7,12,0,0,2328,2329,7,15,0,0, - 2329,272,1,0,0,0,2330,2331,7,9,0,0,2331,2332,7,18,0,0,2332,2333, - 7,8,0,0,2333,2334,7,9,0,0,2334,2335,7,12,0,0,2335,2336,7,15,0,0, - 2336,2337,7,9,0,0,2337,2338,7,15,0,0,2338,274,1,0,0,0,2339,2340, - 7,9,0,0,2340,2341,7,18,0,0,2341,2342,7,8,0,0,2342,2343,7,9,0,0,2343, - 2344,7,11,0,0,2344,2345,7,12,0,0,2345,2346,7,2,0,0,2346,2347,7,5, - 0,0,2347,276,1,0,0,0,2348,2349,7,9,0,0,2349,2350,7,18,0,0,2350,2351, - 7,8,0,0,2351,2352,7,11,0,0,2352,2353,7,2,0,0,2353,2354,7,7,0,0,2354, - 2355,7,8,0,0,2355,278,1,0,0,0,2356,2357,7,23,0,0,2357,2358,7,2,0, - 0,2358,2359,7,5,0,0,2359,2360,7,4,0,0,2360,2361,7,9,0,0,2361,280, - 1,0,0,0,2362,2363,7,23,0,0,2363,2364,7,9,0,0,2364,2365,7,8,0,0,2365, - 2366,7,7,0,0,2366,2367,7,22,0,0,2367,282,1,0,0,0,2368,2369,7,23, - 0,0,2369,2370,7,19,0,0,2370,2371,7,5,0,0,2371,2372,7,8,0,0,2372, - 2373,7,9,0,0,2373,2374,7,11,0,0,2374,284,1,0,0,0,2375,2376,7,23, - 0,0,2376,2377,7,19,0,0,2377,2378,7,11,0,0,2378,2379,7,4,0,0,2379, - 2380,7,8,0,0,2380,2381,5,95,0,0,2381,2382,7,20,0,0,2382,2383,7,2, - 0,0,2383,2384,7,5,0,0,2384,2385,7,21,0,0,2385,2386,7,9,0,0,2386, - 286,1,0,0,0,2387,2388,7,23,0,0,2388,2389,7,5,0,0,2389,2390,7,6,0, - 0,2390,2391,7,2,0,0,2391,2392,7,8,0,0,2392,288,1,0,0,0,2393,2394, - 7,23,0,0,2394,2395,7,5,0,0,2395,2396,7,6,0,0,2396,2397,7,6,0,0,2397, - 2398,7,11,0,0,2398,290,1,0,0,0,2399,2400,7,23,0,0,2400,2401,7,6, - 0,0,2401,2402,7,11,0,0,2402,292,1,0,0,0,2403,2404,7,23,0,0,2404, - 2405,7,6,0,0,2405,2406,7,11,0,0,2406,2407,7,9,0,0,2407,2408,7,19, - 0,0,2408,2409,7,16,0,0,2409,2410,7,12,0,0,2410,294,1,0,0,0,2411, - 2412,7,23,0,0,2412,2413,7,11,0,0,2413,2414,7,2,0,0,2414,2415,7,17, - 0,0,2415,2416,7,9,0,0,2416,2417,5,95,0,0,2417,2418,7,11,0,0,2418, - 2419,7,6,0,0,2419,2420,7,10,0,0,2420,296,1,0,0,0,2421,2422,7,23, - 0,0,2422,2423,7,11,0,0,2423,2424,7,9,0,0,2424,2425,7,9,0,0,2425, - 298,1,0,0,0,2426,2427,7,23,0,0,2427,2428,7,11,0,0,2428,2429,7,19, - 0,0,2429,2430,7,15,0,0,2430,2431,7,2,0,0,2431,2432,7,13,0,0,2432, - 300,1,0,0,0,2433,2434,7,23,0,0,2434,2435,7,11,0,0,2435,2436,7,6, - 0,0,2436,2437,7,17,0,0,2437,302,1,0,0,0,2438,2439,7,23,0,0,2439, - 2440,7,21,0,0,2440,2441,7,5,0,0,2441,2442,7,5,0,0,2442,304,1,0,0, - 0,2443,2444,7,23,0,0,2444,2445,7,21,0,0,2445,2446,7,12,0,0,2446, - 2447,7,7,0,0,2447,2448,7,8,0,0,2448,2449,7,19,0,0,2449,2450,7,6, - 0,0,2450,2451,7,12,0,0,2451,306,1,0,0,0,2452,2453,7,23,0,0,2453, - 2454,7,21,0,0,2454,2455,7,12,0,0,2455,2456,7,7,0,0,2456,2457,7,8, - 0,0,2457,2458,7,19,0,0,2458,2459,7,6,0,0,2459,2460,7,12,0,0,2460, - 2461,7,4,0,0,2461,308,1,0,0,0,2462,2463,7,23,0,0,2463,2464,7,21, - 0,0,2464,2465,7,4,0,0,2465,2466,7,19,0,0,2466,2467,7,6,0,0,2467, - 2468,7,12,0,0,2468,310,1,0,0,0,2469,2470,7,16,0,0,2470,2471,7,9, - 0,0,2471,2472,7,8,0,0,2472,312,1,0,0,0,2473,2474,7,16,0,0,2474,2475, - 7,5,0,0,2475,2476,7,6,0,0,2476,2477,7,3,0,0,2477,2478,7,2,0,0,2478, - 2479,7,5,0,0,2479,314,1,0,0,0,2480,2481,7,16,0,0,2481,2482,7,11, - 0,0,2482,2483,7,2,0,0,2483,2484,7,12,0,0,2484,2485,7,8,0,0,2485, - 316,1,0,0,0,2486,2487,7,16,0,0,2487,2488,7,11,0,0,2488,2489,7,6, - 0,0,2489,2490,7,21,0,0,2490,2491,7,24,0,0,2491,318,1,0,0,0,2492, - 2493,7,16,0,0,2493,2494,7,11,0,0,2494,2495,7,6,0,0,2495,2496,7,21, - 0,0,2496,2497,7,24,0,0,2497,2498,7,19,0,0,2498,2499,7,12,0,0,2499, - 2500,7,16,0,0,2500,320,1,0,0,0,2501,2502,7,16,0,0,2502,2503,7,11, - 0,0,2503,2504,7,6,0,0,2504,2505,7,21,0,0,2505,2506,7,24,0,0,2506, - 2507,7,4,0,0,2507,322,1,0,0,0,2508,2509,7,16,0,0,2509,2510,7,11, - 0,0,2510,2511,7,6,0,0,2511,2512,7,21,0,0,2512,2513,7,24,0,0,2513, - 2514,5,95,0,0,2514,2515,7,7,0,0,2515,2516,7,6,0,0,2516,2517,7,12, - 0,0,2517,2518,7,7,0,0,2518,2519,7,2,0,0,2519,2520,7,8,0,0,2520,324, - 1,0,0,0,2521,2522,7,22,0,0,2522,2523,7,2,0,0,2523,2524,7,20,0,0, - 2524,2525,7,19,0,0,2525,2526,7,12,0,0,2526,2527,7,16,0,0,2527,326, - 1,0,0,0,2528,2529,7,22,0,0,2529,2530,7,6,0,0,2530,2531,7,5,0,0,2531, - 2532,7,15,0,0,2532,328,1,0,0,0,2533,2534,7,22,0,0,2534,2535,7,6, - 0,0,2535,2536,7,21,0,0,2536,2537,7,11,0,0,2537,330,1,0,0,0,2538, - 2539,7,19,0,0,2539,2540,7,15,0,0,2540,2541,7,9,0,0,2541,2542,7,12, - 0,0,2542,2543,7,8,0,0,2543,2544,7,19,0,0,2544,2545,7,8,0,0,2545, - 2546,7,13,0,0,2546,332,1,0,0,0,2547,2548,7,19,0,0,2548,2549,7,23, - 0,0,2549,334,1,0,0,0,2550,2551,7,19,0,0,2551,2552,7,5,0,0,2552,2553, - 7,19,0,0,2553,2554,7,25,0,0,2554,2555,7,9,0,0,2555,336,1,0,0,0,2556, - 2557,7,19,0,0,2557,2558,7,17,0,0,2558,2559,7,24,0,0,2559,2560,7, - 6,0,0,2560,2561,7,11,0,0,2561,2562,7,8,0,0,2562,338,1,0,0,0,2563, - 2564,7,19,0,0,2564,2565,7,12,0,0,2565,340,1,0,0,0,2566,2567,7,19, - 0,0,2567,2568,7,12,0,0,2568,2569,7,7,0,0,2569,2570,7,5,0,0,2570, - 2571,7,21,0,0,2571,2572,7,15,0,0,2572,2573,7,9,0,0,2573,342,1,0, - 0,0,2574,2575,7,19,0,0,2575,2576,7,12,0,0,2576,2577,7,15,0,0,2577, - 2578,7,19,0,0,2578,2579,7,7,0,0,2579,2580,7,2,0,0,2580,2581,7,8, - 0,0,2581,2582,7,6,0,0,2582,2583,7,11,0,0,2583,344,1,0,0,0,2584,2585, - 7,19,0,0,2585,2586,7,12,0,0,2586,2587,7,19,0,0,2587,2588,7,8,0,0, - 2588,2589,7,19,0,0,2589,2590,7,2,0,0,2590,2591,7,5,0,0,2591,346, - 1,0,0,0,2592,2593,7,19,0,0,2593,2594,7,12,0,0,2594,2595,7,12,0,0, - 2595,2596,7,9,0,0,2596,2597,7,11,0,0,2597,348,1,0,0,0,2598,2599, - 7,19,0,0,2599,2600,7,12,0,0,2600,2601,7,6,0,0,2601,2602,7,21,0,0, - 2602,2603,7,8,0,0,2603,350,1,0,0,0,2604,2605,7,19,0,0,2605,2606, - 7,12,0,0,2606,2607,7,4,0,0,2607,2608,7,9,0,0,2608,2609,7,12,0,0, - 2609,2610,7,4,0,0,2610,2611,7,19,0,0,2611,2612,7,8,0,0,2612,2613, - 7,19,0,0,2613,2614,7,20,0,0,2614,2615,7,9,0,0,2615,352,1,0,0,0,2616, - 2617,7,19,0,0,2617,2618,7,12,0,0,2618,2619,7,4,0,0,2619,2620,7,9, - 0,0,2620,2621,7,11,0,0,2621,2622,7,8,0,0,2622,354,1,0,0,0,2623,2624, - 7,19,0,0,2624,2625,7,12,0,0,2625,2626,7,8,0,0,2626,356,1,0,0,0,2627, - 2628,7,19,0,0,2628,2629,7,12,0,0,2629,2630,7,8,0,0,2630,2631,7,9, - 0,0,2631,2632,7,16,0,0,2632,2633,7,9,0,0,2633,2634,7,11,0,0,2634, - 358,1,0,0,0,2635,2636,7,19,0,0,2636,2637,7,12,0,0,2637,2638,7,8, - 0,0,2638,2639,7,9,0,0,2639,2640,7,11,0,0,2640,2641,7,4,0,0,2641, - 2642,7,9,0,0,2642,2643,7,7,0,0,2643,2644,7,8,0,0,2644,360,1,0,0, - 0,2645,2646,7,19,0,0,2646,2647,7,12,0,0,2647,2648,7,8,0,0,2648,2649, - 7,9,0,0,2649,2650,7,11,0,0,2650,2651,7,4,0,0,2651,2652,7,9,0,0,2652, - 2653,7,7,0,0,2653,2654,7,8,0,0,2654,2655,7,19,0,0,2655,2656,7,6, - 0,0,2656,2657,7,12,0,0,2657,362,1,0,0,0,2658,2659,7,19,0,0,2659, - 2660,7,12,0,0,2660,2661,7,8,0,0,2661,2662,7,9,0,0,2662,2663,7,11, - 0,0,2663,2664,7,20,0,0,2664,2665,7,2,0,0,2665,2666,7,5,0,0,2666, - 364,1,0,0,0,2667,2668,7,19,0,0,2668,2669,7,12,0,0,2669,2670,7,8, - 0,0,2670,2671,7,6,0,0,2671,366,1,0,0,0,2672,2673,7,19,0,0,2673,2674, - 7,4,0,0,2674,368,1,0,0,0,2675,2676,7,27,0,0,2676,2677,7,6,0,0,2677, - 2678,7,19,0,0,2678,2679,7,12,0,0,2679,370,1,0,0,0,2680,2681,7,27, - 0,0,2681,2682,7,4,0,0,2682,2683,7,6,0,0,2683,2684,7,12,0,0,2684, - 372,1,0,0,0,2685,2686,7,27,0,0,2686,2687,7,4,0,0,2687,2688,7,6,0, - 0,2688,2689,7,12,0,0,2689,2690,5,95,0,0,2690,2691,7,2,0,0,2691,2692, - 7,11,0,0,2692,2693,7,11,0,0,2693,2694,7,2,0,0,2694,2695,7,13,0,0, - 2695,374,1,0,0,0,2696,2697,7,27,0,0,2697,2698,7,4,0,0,2698,2699, - 7,6,0,0,2699,2700,7,12,0,0,2700,2701,5,95,0,0,2701,2702,7,2,0,0, - 2702,2703,7,11,0,0,2703,2704,7,11,0,0,2704,2705,7,2,0,0,2705,2706, - 7,13,0,0,2706,2707,7,2,0,0,2707,2708,7,16,0,0,2708,2709,7,16,0,0, + 1,484,1,484,1,484,1,484,1,484,1,484,1,484,1,484,1,485,1,485,1,485, + 1,485,1,485,1,485,1,485,1,485,1,485,1,485,1,485,1,485,1,485,1,485, + 1,485,1,485,1,485,1,485,1,485,1,485,1,486,1,486,1,486,1,486,1,486, + 1,486,1,486,1,486,1,486,1,486,1,486,1,486,1,486,1,487,1,487,1,487, + 1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,488,1,488,1,488, + 1,488,1,488,1,488,1,488,1,488,1,488,1,488,1,488,1,488,1,488,1,488, + 1,488,1,488,1,488,1,489,1,489,1,489,1,489,1,489,1,489,1,489,1,489, + 1,489,1,489,1,489,1,489,1,489,1,489,1,489,1,489,1,489,1,489,1,489, + 1,489,1,490,1,490,1,490,1,490,1,490,1,490,1,490,1,490,1,491,1,491, + 1,491,1,491,1,491,1,491,1,491,1,492,1,492,1,492,1,492,1,492,1,492, + 1,492,1,492,1,492,1,493,1,493,1,493,1,493,1,493,1,493,1,493,1,493, + 1,494,1,494,1,494,1,494,1,494,1,494,1,494,1,494,1,495,1,495,1,495, + 1,495,1,495,1,496,1,496,1,496,1,496,1,496,1,497,1,497,1,497,1,497, + 1,497,1,497,1,498,1,498,1,498,1,498,1,498,1,499,1,499,1,499,1,499, + 1,499,1,499,1,499,1,499,1,499,1,499,1,500,1,500,1,500,1,500,1,500, + 1,500,1,500,1,500,1,501,1,501,1,501,1,501,1,501,1,501,1,501,1,502, + 1,502,1,502,1,502,1,502,1,502,1,502,1,503,1,503,1,503,1,503,1,503, + 1,504,1,504,1,504,1,504,1,504,1,505,1,505,1,505,1,505,1,505,1,505, + 1,506,1,506,1,506,1,506,1,506,1,507,1,507,1,508,1,508,1,509,1,509, + 1,510,1,510,1,511,1,511,1,512,1,512,1,513,1,513,1,514,1,514,1,515, + 1,515,1,516,1,516,1,517,1,517,1,518,1,518,1,519,1,519,1,520,1,520, + 1,521,1,521,1,522,1,522,1,523,1,523,1,524,1,524,1,525,1,525,1,526, + 1,526,1,527,1,527,1,528,1,528,1,529,1,529,1,530,1,530,1,531,1,531, + 1,532,1,532,1,533,1,533,1,534,1,534,1,534,1,535,1,535,1,535,1,536, + 1,536,1,537,1,537,1,538,1,538,1,538,1,539,1,539,1,539,3,539,5385, + 8,539,1,540,4,540,5388,8,540,11,540,12,540,5389,1,541,4,541,5393, + 8,541,11,541,12,541,5394,3,541,5397,8,541,1,541,1,541,4,541,5401, + 8,541,11,541,12,541,5402,1,541,4,541,5406,8,541,11,541,12,541,5407, + 1,541,1,541,1,541,1,541,4,541,5414,8,541,11,541,12,541,5415,3,541, + 5418,8,541,1,541,1,541,4,541,5422,8,541,11,541,12,541,5423,1,541, + 1,541,1,541,4,541,5429,8,541,11,541,12,541,5430,1,541,1,541,3,541, + 5435,8,541,1,542,1,542,1,543,1,543,1,544,1,544,1,544,1,544,1,544, + 1,544,5,544,5447,8,544,10,544,12,544,5450,9,544,1,544,1,544,1,545, + 1,545,3,545,5456,8,545,1,545,4,545,5459,8,545,11,545,12,545,5460, + 1,546,5,546,5464,8,546,10,546,12,546,5467,9,546,1,546,4,546,5470, + 8,546,11,546,12,546,5471,1,546,5,546,5475,8,546,10,546,12,546,5478, + 9,546,1,547,1,547,1,548,1,548,1,549,1,549,1,549,1,549,1,549,1,549, + 5,549,5490,8,549,10,549,12,549,5493,9,549,1,549,1,549,1,550,1,550, + 1,550,1,550,1,550,1,550,5,550,5503,8,550,10,550,12,550,5506,9,550, + 1,550,1,550,1,551,1,551,1,551,4,551,5513,8,551,11,551,12,551,5514, + 1,551,1,551,1,552,1,552,1,552,1,552,1,552,1,552,5,552,5525,8,552, + 10,552,12,552,5528,9,552,1,552,1,552,3,1117,5465,5471,0,553,1,1, + 3,2,5,3,7,4,9,5,11,6,13,7,15,8,17,9,19,10,21,11,23,12,25,13,27,14, + 29,15,31,16,33,17,35,18,37,19,39,20,41,21,43,22,45,23,47,24,49,25, + 51,26,53,27,55,28,57,29,59,30,61,31,63,32,65,33,67,34,69,35,71,36, + 73,37,75,38,77,39,79,40,81,41,83,42,85,43,87,44,89,45,91,46,93,47, + 95,48,97,49,99,50,101,51,103,52,105,53,107,54,109,55,111,56,113, + 57,115,58,117,59,119,60,121,61,123,62,125,63,127,64,129,65,131,66, + 133,67,135,68,137,69,139,70,141,71,143,72,145,73,147,74,149,75,151, + 76,153,77,155,78,157,79,159,80,161,81,163,82,165,83,167,84,169,85, + 171,86,173,87,175,88,177,89,179,90,181,91,183,92,185,93,187,94,189, + 95,191,96,193,97,195,98,197,99,199,100,201,101,203,102,205,103,207, + 104,209,105,211,106,213,107,215,108,217,109,219,110,221,111,223, + 112,225,113,227,114,229,115,231,116,233,117,235,118,237,119,239, + 120,241,121,243,122,245,123,247,124,249,125,251,126,253,127,255, + 128,257,129,259,130,261,131,263,132,265,133,267,134,269,135,271, + 136,273,137,275,138,277,139,279,140,281,141,283,142,285,143,287, + 144,289,145,291,146,293,147,295,148,297,149,299,150,301,151,303, + 152,305,153,307,154,309,155,311,156,313,157,315,158,317,159,319, + 160,321,161,323,162,325,163,327,164,329,165,331,166,333,167,335, + 168,337,169,339,170,341,171,343,172,345,173,347,174,349,175,351, + 176,353,177,355,178,357,179,359,180,361,181,363,182,365,183,367, + 184,369,185,371,186,373,187,375,188,377,189,379,190,381,191,383, + 192,385,193,387,194,389,195,391,196,393,197,395,198,397,199,399, + 200,401,201,403,202,405,203,407,204,409,205,411,206,413,207,415, + 208,417,209,419,210,421,211,423,212,425,213,427,214,429,215,431, + 216,433,217,435,218,437,219,439,220,441,221,443,222,445,223,447, + 224,449,225,451,226,453,227,455,228,457,229,459,230,461,231,463, + 232,465,233,467,234,469,235,471,236,473,237,475,238,477,239,479, + 240,481,241,483,242,485,243,487,244,489,245,491,246,493,247,495, + 248,497,249,499,250,501,251,503,252,505,253,507,254,509,255,511, + 256,513,257,515,258,517,259,519,260,521,261,523,262,525,263,527, + 264,529,265,531,266,533,267,535,268,537,269,539,270,541,271,543, + 272,545,273,547,274,549,275,551,276,553,277,555,278,557,279,559, + 280,561,281,563,282,565,283,567,284,569,285,571,286,573,287,575, + 288,577,289,579,290,581,291,583,292,585,293,587,294,589,295,591, + 296,593,297,595,298,597,299,599,300,601,301,603,302,605,303,607, + 304,609,305,611,306,613,307,615,308,617,309,619,310,621,311,623, + 312,625,313,627,314,629,315,631,316,633,317,635,318,637,319,639, + 320,641,321,643,322,645,323,647,324,649,325,651,326,653,327,655, + 328,657,329,659,330,661,331,663,332,665,333,667,334,669,335,671, + 336,673,337,675,338,677,339,679,340,681,341,683,342,685,343,687, + 344,689,345,691,346,693,347,695,348,697,349,699,350,701,351,703, + 352,705,353,707,354,709,355,711,356,713,357,715,358,717,359,719, + 360,721,361,723,362,725,363,727,364,729,365,731,366,733,367,735, + 368,737,369,739,370,741,371,743,372,745,373,747,374,749,375,751, + 376,753,377,755,378,757,379,759,380,761,381,763,382,765,383,767, + 384,769,385,771,386,773,387,775,388,777,389,779,390,781,391,783, + 392,785,393,787,394,789,395,791,396,793,397,795,398,797,399,799, + 400,801,401,803,402,805,403,807,404,809,405,811,406,813,407,815, + 408,817,409,819,410,821,411,823,412,825,413,827,414,829,415,831, + 416,833,417,835,418,837,419,839,420,841,421,843,422,845,423,847, + 424,849,425,851,426,853,427,855,428,857,429,859,430,861,431,863, + 432,865,433,867,434,869,435,871,436,873,437,875,438,877,439,879, + 440,881,441,883,442,885,443,887,444,889,445,891,446,893,447,895, + 448,897,449,899,450,901,451,903,452,905,453,907,454,909,455,911, + 456,913,457,915,458,917,459,919,460,921,461,923,462,925,463,927, + 464,929,465,931,466,933,467,935,468,937,469,939,470,941,471,943, + 472,945,473,947,474,949,475,951,476,953,477,955,478,957,479,959, + 480,961,481,963,482,965,483,967,484,969,485,971,486,973,487,975, + 488,977,489,979,490,981,491,983,492,985,493,987,494,989,495,991, + 496,993,497,995,498,997,499,999,500,1001,501,1003,502,1005,503,1007, + 504,1009,505,1011,506,1013,507,1015,508,1017,509,1019,510,1021,511, + 1023,512,1025,513,1027,514,1029,515,1031,516,1033,517,1035,518,1037, + 519,1039,520,1041,521,1043,522,1045,523,1047,524,1049,525,1051,526, + 1053,527,1055,528,1057,529,1059,530,1061,531,1063,532,1065,533,1067, + 534,1069,535,1071,536,1073,537,1075,538,1077,539,1079,540,1081,541, + 1083,542,1085,543,1087,544,1089,0,1091,0,1093,0,1095,0,1097,0,1099, + 0,1101,0,1103,0,1105,0,1,0,37,3,0,9,10,13,13,32,32,2,0,10,10,13, + 13,2,0,65,65,97,97,2,0,66,66,98,98,2,0,83,83,115,115,2,0,76,76,108, + 108,2,0,79,79,111,111,2,0,67,67,99,99,2,0,84,84,116,116,2,0,69,69, + 101,101,2,0,87,87,119,119,2,0,82,82,114,114,2,0,78,78,110,110,2, + 0,89,89,121,121,2,0,90,90,122,122,2,0,68,68,100,100,2,0,71,71,103, + 103,2,0,77,77,109,109,2,0,88,88,120,120,2,0,73,73,105,105,2,0,86, + 86,118,118,2,0,85,85,117,117,2,0,72,72,104,104,2,0,70,70,102,102, + 2,0,80,80,112,112,2,0,75,75,107,107,2,0,81,81,113,113,2,0,74,74, + 106,106,2,0,92,92,96,96,2,0,43,43,45,45,4,0,48,57,65,90,95,95,97, + 122,3,0,65,90,95,95,97,122,1,0,48,57,2,0,65,90,97,122,2,0,34,34, + 92,92,2,0,39,39,92,92,1,0,48,49,5561,0,1,1,0,0,0,0,3,1,0,0,0,0,5, + 1,0,0,0,0,7,1,0,0,0,0,9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0,0,0,15,1, + 0,0,0,0,17,1,0,0,0,0,19,1,0,0,0,0,21,1,0,0,0,0,23,1,0,0,0,0,25,1, + 0,0,0,0,27,1,0,0,0,0,29,1,0,0,0,0,31,1,0,0,0,0,33,1,0,0,0,0,35,1, + 0,0,0,0,37,1,0,0,0,0,39,1,0,0,0,0,41,1,0,0,0,0,43,1,0,0,0,0,45,1, + 0,0,0,0,47,1,0,0,0,0,49,1,0,0,0,0,51,1,0,0,0,0,53,1,0,0,0,0,55,1, + 0,0,0,0,57,1,0,0,0,0,59,1,0,0,0,0,61,1,0,0,0,0,63,1,0,0,0,0,65,1, + 0,0,0,0,67,1,0,0,0,0,69,1,0,0,0,0,71,1,0,0,0,0,73,1,0,0,0,0,75,1, + 0,0,0,0,77,1,0,0,0,0,79,1,0,0,0,0,81,1,0,0,0,0,83,1,0,0,0,0,85,1, + 0,0,0,0,87,1,0,0,0,0,89,1,0,0,0,0,91,1,0,0,0,0,93,1,0,0,0,0,95,1, + 0,0,0,0,97,1,0,0,0,0,99,1,0,0,0,0,101,1,0,0,0,0,103,1,0,0,0,0,105, + 1,0,0,0,0,107,1,0,0,0,0,109,1,0,0,0,0,111,1,0,0,0,0,113,1,0,0,0, + 0,115,1,0,0,0,0,117,1,0,0,0,0,119,1,0,0,0,0,121,1,0,0,0,0,123,1, + 0,0,0,0,125,1,0,0,0,0,127,1,0,0,0,0,129,1,0,0,0,0,131,1,0,0,0,0, + 133,1,0,0,0,0,135,1,0,0,0,0,137,1,0,0,0,0,139,1,0,0,0,0,141,1,0, + 0,0,0,143,1,0,0,0,0,145,1,0,0,0,0,147,1,0,0,0,0,149,1,0,0,0,0,151, + 1,0,0,0,0,153,1,0,0,0,0,155,1,0,0,0,0,157,1,0,0,0,0,159,1,0,0,0, + 0,161,1,0,0,0,0,163,1,0,0,0,0,165,1,0,0,0,0,167,1,0,0,0,0,169,1, + 0,0,0,0,171,1,0,0,0,0,173,1,0,0,0,0,175,1,0,0,0,0,177,1,0,0,0,0, + 179,1,0,0,0,0,181,1,0,0,0,0,183,1,0,0,0,0,185,1,0,0,0,0,187,1,0, + 0,0,0,189,1,0,0,0,0,191,1,0,0,0,0,193,1,0,0,0,0,195,1,0,0,0,0,197, + 1,0,0,0,0,199,1,0,0,0,0,201,1,0,0,0,0,203,1,0,0,0,0,205,1,0,0,0, + 0,207,1,0,0,0,0,209,1,0,0,0,0,211,1,0,0,0,0,213,1,0,0,0,0,215,1, + 0,0,0,0,217,1,0,0,0,0,219,1,0,0,0,0,221,1,0,0,0,0,223,1,0,0,0,0, + 225,1,0,0,0,0,227,1,0,0,0,0,229,1,0,0,0,0,231,1,0,0,0,0,233,1,0, + 0,0,0,235,1,0,0,0,0,237,1,0,0,0,0,239,1,0,0,0,0,241,1,0,0,0,0,243, + 1,0,0,0,0,245,1,0,0,0,0,247,1,0,0,0,0,249,1,0,0,0,0,251,1,0,0,0, + 0,253,1,0,0,0,0,255,1,0,0,0,0,257,1,0,0,0,0,259,1,0,0,0,0,261,1, + 0,0,0,0,263,1,0,0,0,0,265,1,0,0,0,0,267,1,0,0,0,0,269,1,0,0,0,0, + 271,1,0,0,0,0,273,1,0,0,0,0,275,1,0,0,0,0,277,1,0,0,0,0,279,1,0, + 0,0,0,281,1,0,0,0,0,283,1,0,0,0,0,285,1,0,0,0,0,287,1,0,0,0,0,289, + 1,0,0,0,0,291,1,0,0,0,0,293,1,0,0,0,0,295,1,0,0,0,0,297,1,0,0,0, + 0,299,1,0,0,0,0,301,1,0,0,0,0,303,1,0,0,0,0,305,1,0,0,0,0,307,1, + 0,0,0,0,309,1,0,0,0,0,311,1,0,0,0,0,313,1,0,0,0,0,315,1,0,0,0,0, + 317,1,0,0,0,0,319,1,0,0,0,0,321,1,0,0,0,0,323,1,0,0,0,0,325,1,0, + 0,0,0,327,1,0,0,0,0,329,1,0,0,0,0,331,1,0,0,0,0,333,1,0,0,0,0,335, + 1,0,0,0,0,337,1,0,0,0,0,339,1,0,0,0,0,341,1,0,0,0,0,343,1,0,0,0, + 0,345,1,0,0,0,0,347,1,0,0,0,0,349,1,0,0,0,0,351,1,0,0,0,0,353,1, + 0,0,0,0,355,1,0,0,0,0,357,1,0,0,0,0,359,1,0,0,0,0,361,1,0,0,0,0, + 363,1,0,0,0,0,365,1,0,0,0,0,367,1,0,0,0,0,369,1,0,0,0,0,371,1,0, + 0,0,0,373,1,0,0,0,0,375,1,0,0,0,0,377,1,0,0,0,0,379,1,0,0,0,0,381, + 1,0,0,0,0,383,1,0,0,0,0,385,1,0,0,0,0,387,1,0,0,0,0,389,1,0,0,0, + 0,391,1,0,0,0,0,393,1,0,0,0,0,395,1,0,0,0,0,397,1,0,0,0,0,399,1, + 0,0,0,0,401,1,0,0,0,0,403,1,0,0,0,0,405,1,0,0,0,0,407,1,0,0,0,0, + 409,1,0,0,0,0,411,1,0,0,0,0,413,1,0,0,0,0,415,1,0,0,0,0,417,1,0, + 0,0,0,419,1,0,0,0,0,421,1,0,0,0,0,423,1,0,0,0,0,425,1,0,0,0,0,427, + 1,0,0,0,0,429,1,0,0,0,0,431,1,0,0,0,0,433,1,0,0,0,0,435,1,0,0,0, + 0,437,1,0,0,0,0,439,1,0,0,0,0,441,1,0,0,0,0,443,1,0,0,0,0,445,1, + 0,0,0,0,447,1,0,0,0,0,449,1,0,0,0,0,451,1,0,0,0,0,453,1,0,0,0,0, + 455,1,0,0,0,0,457,1,0,0,0,0,459,1,0,0,0,0,461,1,0,0,0,0,463,1,0, + 0,0,0,465,1,0,0,0,0,467,1,0,0,0,0,469,1,0,0,0,0,471,1,0,0,0,0,473, + 1,0,0,0,0,475,1,0,0,0,0,477,1,0,0,0,0,479,1,0,0,0,0,481,1,0,0,0, + 0,483,1,0,0,0,0,485,1,0,0,0,0,487,1,0,0,0,0,489,1,0,0,0,0,491,1, + 0,0,0,0,493,1,0,0,0,0,495,1,0,0,0,0,497,1,0,0,0,0,499,1,0,0,0,0, + 501,1,0,0,0,0,503,1,0,0,0,0,505,1,0,0,0,0,507,1,0,0,0,0,509,1,0, + 0,0,0,511,1,0,0,0,0,513,1,0,0,0,0,515,1,0,0,0,0,517,1,0,0,0,0,519, + 1,0,0,0,0,521,1,0,0,0,0,523,1,0,0,0,0,525,1,0,0,0,0,527,1,0,0,0, + 0,529,1,0,0,0,0,531,1,0,0,0,0,533,1,0,0,0,0,535,1,0,0,0,0,537,1, + 0,0,0,0,539,1,0,0,0,0,541,1,0,0,0,0,543,1,0,0,0,0,545,1,0,0,0,0, + 547,1,0,0,0,0,549,1,0,0,0,0,551,1,0,0,0,0,553,1,0,0,0,0,555,1,0, + 0,0,0,557,1,0,0,0,0,559,1,0,0,0,0,561,1,0,0,0,0,563,1,0,0,0,0,565, + 1,0,0,0,0,567,1,0,0,0,0,569,1,0,0,0,0,571,1,0,0,0,0,573,1,0,0,0, + 0,575,1,0,0,0,0,577,1,0,0,0,0,579,1,0,0,0,0,581,1,0,0,0,0,583,1, + 0,0,0,0,585,1,0,0,0,0,587,1,0,0,0,0,589,1,0,0,0,0,591,1,0,0,0,0, + 593,1,0,0,0,0,595,1,0,0,0,0,597,1,0,0,0,0,599,1,0,0,0,0,601,1,0, + 0,0,0,603,1,0,0,0,0,605,1,0,0,0,0,607,1,0,0,0,0,609,1,0,0,0,0,611, + 1,0,0,0,0,613,1,0,0,0,0,615,1,0,0,0,0,617,1,0,0,0,0,619,1,0,0,0, + 0,621,1,0,0,0,0,623,1,0,0,0,0,625,1,0,0,0,0,627,1,0,0,0,0,629,1, + 0,0,0,0,631,1,0,0,0,0,633,1,0,0,0,0,635,1,0,0,0,0,637,1,0,0,0,0, + 639,1,0,0,0,0,641,1,0,0,0,0,643,1,0,0,0,0,645,1,0,0,0,0,647,1,0, + 0,0,0,649,1,0,0,0,0,651,1,0,0,0,0,653,1,0,0,0,0,655,1,0,0,0,0,657, + 1,0,0,0,0,659,1,0,0,0,0,661,1,0,0,0,0,663,1,0,0,0,0,665,1,0,0,0, + 0,667,1,0,0,0,0,669,1,0,0,0,0,671,1,0,0,0,0,673,1,0,0,0,0,675,1, + 0,0,0,0,677,1,0,0,0,0,679,1,0,0,0,0,681,1,0,0,0,0,683,1,0,0,0,0, + 685,1,0,0,0,0,687,1,0,0,0,0,689,1,0,0,0,0,691,1,0,0,0,0,693,1,0, + 0,0,0,695,1,0,0,0,0,697,1,0,0,0,0,699,1,0,0,0,0,701,1,0,0,0,0,703, + 1,0,0,0,0,705,1,0,0,0,0,707,1,0,0,0,0,709,1,0,0,0,0,711,1,0,0,0, + 0,713,1,0,0,0,0,715,1,0,0,0,0,717,1,0,0,0,0,719,1,0,0,0,0,721,1, + 0,0,0,0,723,1,0,0,0,0,725,1,0,0,0,0,727,1,0,0,0,0,729,1,0,0,0,0, + 731,1,0,0,0,0,733,1,0,0,0,0,735,1,0,0,0,0,737,1,0,0,0,0,739,1,0, + 0,0,0,741,1,0,0,0,0,743,1,0,0,0,0,745,1,0,0,0,0,747,1,0,0,0,0,749, + 1,0,0,0,0,751,1,0,0,0,0,753,1,0,0,0,0,755,1,0,0,0,0,757,1,0,0,0, + 0,759,1,0,0,0,0,761,1,0,0,0,0,763,1,0,0,0,0,765,1,0,0,0,0,767,1, + 0,0,0,0,769,1,0,0,0,0,771,1,0,0,0,0,773,1,0,0,0,0,775,1,0,0,0,0, + 777,1,0,0,0,0,779,1,0,0,0,0,781,1,0,0,0,0,783,1,0,0,0,0,785,1,0, + 0,0,0,787,1,0,0,0,0,789,1,0,0,0,0,791,1,0,0,0,0,793,1,0,0,0,0,795, + 1,0,0,0,0,797,1,0,0,0,0,799,1,0,0,0,0,801,1,0,0,0,0,803,1,0,0,0, + 0,805,1,0,0,0,0,807,1,0,0,0,0,809,1,0,0,0,0,811,1,0,0,0,0,813,1, + 0,0,0,0,815,1,0,0,0,0,817,1,0,0,0,0,819,1,0,0,0,0,821,1,0,0,0,0, + 823,1,0,0,0,0,825,1,0,0,0,0,827,1,0,0,0,0,829,1,0,0,0,0,831,1,0, + 0,0,0,833,1,0,0,0,0,835,1,0,0,0,0,837,1,0,0,0,0,839,1,0,0,0,0,841, + 1,0,0,0,0,843,1,0,0,0,0,845,1,0,0,0,0,847,1,0,0,0,0,849,1,0,0,0, + 0,851,1,0,0,0,0,853,1,0,0,0,0,855,1,0,0,0,0,857,1,0,0,0,0,859,1, + 0,0,0,0,861,1,0,0,0,0,863,1,0,0,0,0,865,1,0,0,0,0,867,1,0,0,0,0, + 869,1,0,0,0,0,871,1,0,0,0,0,873,1,0,0,0,0,875,1,0,0,0,0,877,1,0, + 0,0,0,879,1,0,0,0,0,881,1,0,0,0,0,883,1,0,0,0,0,885,1,0,0,0,0,887, + 1,0,0,0,0,889,1,0,0,0,0,891,1,0,0,0,0,893,1,0,0,0,0,895,1,0,0,0, + 0,897,1,0,0,0,0,899,1,0,0,0,0,901,1,0,0,0,0,903,1,0,0,0,0,905,1, + 0,0,0,0,907,1,0,0,0,0,909,1,0,0,0,0,911,1,0,0,0,0,913,1,0,0,0,0, + 915,1,0,0,0,0,917,1,0,0,0,0,919,1,0,0,0,0,921,1,0,0,0,0,923,1,0, + 0,0,0,925,1,0,0,0,0,927,1,0,0,0,0,929,1,0,0,0,0,931,1,0,0,0,0,933, + 1,0,0,0,0,935,1,0,0,0,0,937,1,0,0,0,0,939,1,0,0,0,0,941,1,0,0,0, + 0,943,1,0,0,0,0,945,1,0,0,0,0,947,1,0,0,0,0,949,1,0,0,0,0,951,1, + 0,0,0,0,953,1,0,0,0,0,955,1,0,0,0,0,957,1,0,0,0,0,959,1,0,0,0,0, + 961,1,0,0,0,0,963,1,0,0,0,0,965,1,0,0,0,0,967,1,0,0,0,0,969,1,0, + 0,0,0,971,1,0,0,0,0,973,1,0,0,0,0,975,1,0,0,0,0,977,1,0,0,0,0,979, + 1,0,0,0,0,981,1,0,0,0,0,983,1,0,0,0,0,985,1,0,0,0,0,987,1,0,0,0, + 0,989,1,0,0,0,0,991,1,0,0,0,0,993,1,0,0,0,0,995,1,0,0,0,0,997,1, + 0,0,0,0,999,1,0,0,0,0,1001,1,0,0,0,0,1003,1,0,0,0,0,1005,1,0,0,0, + 0,1007,1,0,0,0,0,1009,1,0,0,0,0,1011,1,0,0,0,0,1013,1,0,0,0,0,1015, + 1,0,0,0,0,1017,1,0,0,0,0,1019,1,0,0,0,0,1021,1,0,0,0,0,1023,1,0, + 0,0,0,1025,1,0,0,0,0,1027,1,0,0,0,0,1029,1,0,0,0,0,1031,1,0,0,0, + 0,1033,1,0,0,0,0,1035,1,0,0,0,0,1037,1,0,0,0,0,1039,1,0,0,0,0,1041, + 1,0,0,0,0,1043,1,0,0,0,0,1045,1,0,0,0,0,1047,1,0,0,0,0,1049,1,0, + 0,0,0,1051,1,0,0,0,0,1053,1,0,0,0,0,1055,1,0,0,0,0,1057,1,0,0,0, + 0,1059,1,0,0,0,0,1061,1,0,0,0,0,1063,1,0,0,0,0,1065,1,0,0,0,0,1067, + 1,0,0,0,0,1069,1,0,0,0,0,1071,1,0,0,0,0,1073,1,0,0,0,0,1075,1,0, + 0,0,0,1077,1,0,0,0,0,1079,1,0,0,0,0,1081,1,0,0,0,0,1083,1,0,0,0, + 0,1085,1,0,0,0,0,1087,1,0,0,0,1,1107,1,0,0,0,3,1111,1,0,0,0,5,1153, + 1,0,0,0,7,1157,1,0,0,0,9,1161,1,0,0,0,11,1165,1,0,0,0,13,1174,1, + 0,0,0,15,1180,1,0,0,0,17,1186,1,0,0,0,19,1194,1,0,0,0,21,1198,1, + 0,0,0,23,1202,1,0,0,0,25,1206,1,0,0,0,27,1212,1,0,0,0,29,1222,1, + 0,0,0,31,1239,1,0,0,0,33,1261,1,0,0,0,35,1264,1,0,0,0,37,1275,1, + 0,0,0,39,1286,1,0,0,0,41,1289,1,0,0,0,43,1296,1,0,0,0,45,1310,1, + 0,0,0,47,1314,1,0,0,0,49,1320,1,0,0,0,51,1332,1,0,0,0,53,1348,1, + 0,0,0,55,1356,1,0,0,0,57,1363,1,0,0,0,59,1370,1,0,0,0,61,1374,1, + 0,0,0,63,1379,1,0,0,0,65,1387,1,0,0,0,67,1392,1,0,0,0,69,1395,1, + 0,0,0,71,1401,1,0,0,0,73,1406,1,0,0,0,75,1413,1,0,0,0,77,1425,1, + 0,0,0,79,1434,1,0,0,0,81,1439,1,0,0,0,83,1444,1,0,0,0,85,1453,1, + 0,0,0,87,1458,1,0,0,0,89,1466,1,0,0,0,91,1481,1,0,0,0,93,1486,1, + 0,0,0,95,1496,1,0,0,0,97,1513,1,0,0,0,99,1525,1,0,0,0,101,1531,1, + 0,0,0,103,1542,1,0,0,0,105,1547,1,0,0,0,107,1553,1,0,0,0,109,1562, + 1,0,0,0,111,1570,1,0,0,0,113,1578,1,0,0,0,115,1585,1,0,0,0,117,1593, + 1,0,0,0,119,1601,1,0,0,0,121,1608,1,0,0,0,123,1616,1,0,0,0,125,1626, + 1,0,0,0,127,1634,1,0,0,0,129,1645,1,0,0,0,131,1654,1,0,0,0,133,1662, + 1,0,0,0,135,1667,1,0,0,0,137,1681,1,0,0,0,139,1687,1,0,0,0,141,1697, + 1,0,0,0,143,1708,1,0,0,0,145,1715,1,0,0,0,147,1721,1,0,0,0,149,1726, + 1,0,0,0,151,1736,1,0,0,0,153,1744,1,0,0,0,155,1760,1,0,0,0,157,1773, + 1,0,0,0,159,1805,1,0,0,0,161,1818,1,0,0,0,163,1831,1,0,0,0,165,1843, + 1,0,0,0,167,1858,1,0,0,0,169,1871,1,0,0,0,171,1889,1,0,0,0,173,1922, + 1,0,0,0,175,1935,1,0,0,0,177,1942,1,0,0,0,179,1948,1,0,0,0,181,1958, + 1,0,0,0,183,1963,1,0,0,0,185,1972,1,0,0,0,187,1986,1,0,0,0,189,2001, + 1,0,0,0,191,2011,1,0,0,0,193,2022,1,0,0,0,195,2026,1,0,0,0,197,2036, + 1,0,0,0,199,2046,1,0,0,0,201,2057,1,0,0,0,203,2061,1,0,0,0,205,2069, + 1,0,0,0,207,2077,1,0,0,0,209,2085,1,0,0,0,211,2092,1,0,0,0,213,2099, + 1,0,0,0,215,2110,1,0,0,0,217,2116,1,0,0,0,219,2125,1,0,0,0,221,2139, + 1,0,0,0,223,2148,1,0,0,0,225,2159,1,0,0,0,227,2168,1,0,0,0,229,2172, + 1,0,0,0,231,2179,1,0,0,0,233,2184,1,0,0,0,235,2192,1,0,0,0,237,2197, + 1,0,0,0,239,2205,1,0,0,0,241,2210,1,0,0,0,243,2216,1,0,0,0,245,2220, + 1,0,0,0,247,2230,1,0,0,0,249,2244,1,0,0,0,251,2253,1,0,0,0,253,2260, + 1,0,0,0,255,2267,1,0,0,0,257,2282,1,0,0,0,259,2288,1,0,0,0,261,2295, + 1,0,0,0,263,2300,1,0,0,0,265,2308,1,0,0,0,267,2315,1,0,0,0,269,2319, + 1,0,0,0,271,2327,1,0,0,0,273,2334,1,0,0,0,275,2343,1,0,0,0,277,2352, + 1,0,0,0,279,2360,1,0,0,0,281,2366,1,0,0,0,283,2372,1,0,0,0,285,2379, + 1,0,0,0,287,2391,1,0,0,0,289,2397,1,0,0,0,291,2403,1,0,0,0,293,2413, + 1,0,0,0,295,2417,1,0,0,0,297,2425,1,0,0,0,299,2435,1,0,0,0,301,2440, + 1,0,0,0,303,2447,1,0,0,0,305,2452,1,0,0,0,307,2457,1,0,0,0,309,2466, + 1,0,0,0,311,2476,1,0,0,0,313,2483,1,0,0,0,315,2487,1,0,0,0,317,2494, + 1,0,0,0,319,2500,1,0,0,0,321,2506,1,0,0,0,323,2515,1,0,0,0,325,2522, + 1,0,0,0,327,2535,1,0,0,0,329,2542,1,0,0,0,331,2547,1,0,0,0,333,2552, + 1,0,0,0,335,2561,1,0,0,0,337,2564,1,0,0,0,339,2570,1,0,0,0,341,2577, + 1,0,0,0,343,2580,1,0,0,0,345,2588,1,0,0,0,347,2598,1,0,0,0,349,2606, + 1,0,0,0,351,2612,1,0,0,0,353,2618,1,0,0,0,355,2630,1,0,0,0,357,2637, + 1,0,0,0,359,2641,1,0,0,0,361,2649,1,0,0,0,363,2659,1,0,0,0,365,2672, + 1,0,0,0,367,2681,1,0,0,0,369,2686,1,0,0,0,371,2689,1,0,0,0,373,2694, + 1,0,0,0,375,2699,1,0,0,0,377,2710,1,0,0,0,379,2724,1,0,0,0,381,2744, + 1,0,0,0,383,2756,1,0,0,0,385,2768,1,0,0,0,387,2783,1,0,0,0,389,2794, + 1,0,0,0,391,2805,1,0,0,0,393,2809,1,0,0,0,395,2818,1,0,0,0,397,2824, + 1,0,0,0,399,2835,1,0,0,0,401,2843,1,0,0,0,403,2848,1,0,0,0,405,2856, + 1,0,0,0,407,2861,1,0,0,0,409,2866,1,0,0,0,411,2877,1,0,0,0,413,2883, + 1,0,0,0,415,2886,1,0,0,0,417,2892,1,0,0,0,419,2902,1,0,0,0,421,2917, + 1,0,0,0,423,2923,1,0,0,0,425,2929,1,0,0,0,427,2937,1,0,0,0,429,2950, + 1,0,0,0,431,2966,1,0,0,0,433,2970,1,0,0,0,435,2979,1,0,0,0,437,2986, + 1,0,0,0,439,2992,1,0,0,0,441,3001,1,0,0,0,443,3008,1,0,0,0,445,3012, + 1,0,0,0,447,3018,1,0,0,0,449,3025,1,0,0,0,451,3029,1,0,0,0,453,3038, + 1,0,0,0,455,3045,1,0,0,0,457,3052,1,0,0,0,459,3060,1,0,0,0,461,3067, + 1,0,0,0,463,3073,1,0,0,0,465,3078,1,0,0,0,467,3087,1,0,0,0,469,3096, + 1,0,0,0,471,3104,1,0,0,0,473,3110,1,0,0,0,475,3116,1,0,0,0,477,3120, + 1,0,0,0,479,3125,1,0,0,0,481,3128,1,0,0,0,483,3133,1,0,0,0,485,3143, + 1,0,0,0,487,3147,1,0,0,0,489,3157,1,0,0,0,491,3163,1,0,0,0,493,3168, + 1,0,0,0,495,3175,1,0,0,0,497,3183,1,0,0,0,499,3201,1,0,0,0,501,3214, + 1,0,0,0,503,3217,1,0,0,0,505,3224,1,0,0,0,507,3228,1,0,0,0,509,3233, + 1,0,0,0,511,3236,1,0,0,0,513,3240,1,0,0,0,515,3245,1,0,0,0,517,3250, + 1,0,0,0,519,3253,1,0,0,0,521,3259,1,0,0,0,523,3267,1,0,0,0,525,3271, + 1,0,0,0,527,3277,1,0,0,0,529,3282,1,0,0,0,531,3291,1,0,0,0,533,3299, + 1,0,0,0,535,3309,1,0,0,0,537,3321,1,0,0,0,539,3331,1,0,0,0,541,3341, + 1,0,0,0,543,3353,1,0,0,0,545,3364,1,0,0,0,547,3372,1,0,0,0,549,3376, + 1,0,0,0,551,3384,1,0,0,0,553,3400,1,0,0,0,555,3416,1,0,0,0,557,3429, + 1,0,0,0,559,3436,1,0,0,0,561,3444,1,0,0,0,563,3450,1,0,0,0,565,3458, + 1,0,0,0,567,3467,1,0,0,0,569,3482,1,0,0,0,571,3488,1,0,0,0,573,3497, + 1,0,0,0,575,3507,1,0,0,0,577,3515,1,0,0,0,579,3520,1,0,0,0,581,3528, + 1,0,0,0,583,3538,1,0,0,0,585,3546,1,0,0,0,587,3555,1,0,0,0,589,3561, + 1,0,0,0,591,3566,1,0,0,0,593,3570,1,0,0,0,595,3576,1,0,0,0,597,3581, + 1,0,0,0,599,3591,1,0,0,0,601,3595,1,0,0,0,603,3606,1,0,0,0,605,3618, + 1,0,0,0,607,3628,1,0,0,0,609,3638,1,0,0,0,611,3649,1,0,0,0,613,3664, + 1,0,0,0,615,3672,1,0,0,0,617,3683,1,0,0,0,619,3692,1,0,0,0,621,3701, + 1,0,0,0,623,3710,1,0,0,0,625,3718,1,0,0,0,627,3725,1,0,0,0,629,3731, + 1,0,0,0,631,3738,1,0,0,0,633,3745,1,0,0,0,635,3753,1,0,0,0,637,3760, + 1,0,0,0,639,3766,1,0,0,0,641,3772,1,0,0,0,643,3781,1,0,0,0,645,3788, + 1,0,0,0,647,3792,1,0,0,0,649,3797,1,0,0,0,651,3808,1,0,0,0,653,3816, + 1,0,0,0,655,3826,1,0,0,0,657,3838,1,0,0,0,659,3851,1,0,0,0,661,3860, + 1,0,0,0,663,3870,1,0,0,0,665,3876,1,0,0,0,667,3882,1,0,0,0,669,3889, + 1,0,0,0,671,3896,1,0,0,0,673,3903,1,0,0,0,675,3908,1,0,0,0,677,3915, + 1,0,0,0,679,3925,1,0,0,0,681,3935,1,0,0,0,683,3948,1,0,0,0,685,3952, + 1,0,0,0,687,3957,1,0,0,0,689,3965,1,0,0,0,691,3970,1,0,0,0,693,3979, + 1,0,0,0,695,3984,1,0,0,0,697,3993,1,0,0,0,699,4006,1,0,0,0,701,4010, + 1,0,0,0,703,4023,1,0,0,0,705,4032,1,0,0,0,707,4043,1,0,0,0,709,4048, + 1,0,0,0,711,4054,1,0,0,0,713,4064,1,0,0,0,715,4071,1,0,0,0,717,4082, + 1,0,0,0,719,4093,1,0,0,0,721,4105,1,0,0,0,723,4112,1,0,0,0,725,4119, + 1,0,0,0,727,4130,1,0,0,0,729,4142,1,0,0,0,731,4149,1,0,0,0,733,4159, + 1,0,0,0,735,4175,1,0,0,0,737,4184,1,0,0,0,739,4188,1,0,0,0,741,4195, + 1,0,0,0,743,4205,1,0,0,0,745,4212,1,0,0,0,747,4224,1,0,0,0,749,4236, + 1,0,0,0,751,4242,1,0,0,0,753,4249,1,0,0,0,755,4261,1,0,0,0,757,4266, + 1,0,0,0,759,4275,1,0,0,0,761,4280,1,0,0,0,763,4290,1,0,0,0,765,4305, + 1,0,0,0,767,4319,1,0,0,0,769,4335,1,0,0,0,771,4349,1,0,0,0,773,4365, + 1,0,0,0,775,4375,1,0,0,0,777,4386,1,0,0,0,779,4394,1,0,0,0,781,4397, + 1,0,0,0,783,4406,1,0,0,0,785,4416,1,0,0,0,787,4432,1,0,0,0,789,4444, + 1,0,0,0,791,4450,1,0,0,0,793,4458,1,0,0,0,795,4463,1,0,0,0,797,4474, + 1,0,0,0,799,4479,1,0,0,0,801,4488,1,0,0,0,803,4497,1,0,0,0,805,4505, + 1,0,0,0,807,4513,1,0,0,0,809,4523,1,0,0,0,811,4529,1,0,0,0,813,4536, + 1,0,0,0,815,4544,1,0,0,0,817,4551,1,0,0,0,819,4559,1,0,0,0,821,4566, + 1,0,0,0,823,4572,1,0,0,0,825,4579,1,0,0,0,827,4583,1,0,0,0,829,4588, + 1,0,0,0,831,4594,1,0,0,0,833,4600,1,0,0,0,835,4607,1,0,0,0,837,4616, + 1,0,0,0,839,4626,1,0,0,0,841,4634,1,0,0,0,843,4642,1,0,0,0,845,4650, + 1,0,0,0,847,4659,1,0,0,0,849,4670,1,0,0,0,851,4676,1,0,0,0,853,4684, + 1,0,0,0,855,4694,1,0,0,0,857,4705,1,0,0,0,859,4715,1,0,0,0,861,4721, + 1,0,0,0,863,4726,1,0,0,0,865,4735,1,0,0,0,867,4741,1,0,0,0,869,4754, + 1,0,0,0,871,4761,1,0,0,0,873,4766,1,0,0,0,875,4773,1,0,0,0,877,4781, + 1,0,0,0,879,4786,1,0,0,0,881,4790,1,0,0,0,883,4796,1,0,0,0,885,4800, + 1,0,0,0,887,4808,1,0,0,0,889,4816,1,0,0,0,891,4824,1,0,0,0,893,4831, + 1,0,0,0,895,4843,1,0,0,0,897,4852,1,0,0,0,899,4857,1,0,0,0,901,4866, + 1,0,0,0,903,4871,1,0,0,0,905,4878,1,0,0,0,907,4883,1,0,0,0,909,4894, + 1,0,0,0,911,4898,1,0,0,0,913,4905,1,0,0,0,915,4911,1,0,0,0,917,4921, + 1,0,0,0,919,4926,1,0,0,0,921,4932,1,0,0,0,923,4942,1,0,0,0,925,4946, + 1,0,0,0,927,4952,1,0,0,0,929,4959,1,0,0,0,931,4969,1,0,0,0,933,4973, + 1,0,0,0,935,4978,1,0,0,0,937,4983,1,0,0,0,939,4987,1,0,0,0,941,4992, + 1,0,0,0,943,4997,1,0,0,0,945,5001,1,0,0,0,947,5013,1,0,0,0,949,5024, + 1,0,0,0,951,5036,1,0,0,0,953,5044,1,0,0,0,955,5051,1,0,0,0,957,5062, + 1,0,0,0,959,5068,1,0,0,0,961,5076,1,0,0,0,963,5081,1,0,0,0,965,5086, + 1,0,0,0,967,5096,1,0,0,0,969,5103,1,0,0,0,971,5119,1,0,0,0,973,5139, + 1,0,0,0,975,5152,1,0,0,0,977,5163,1,0,0,0,979,5180,1,0,0,0,981,5200, + 1,0,0,0,983,5208,1,0,0,0,985,5215,1,0,0,0,987,5224,1,0,0,0,989,5232, + 1,0,0,0,991,5240,1,0,0,0,993,5245,1,0,0,0,995,5250,1,0,0,0,997,5256, + 1,0,0,0,999,5261,1,0,0,0,1001,5271,1,0,0,0,1003,5279,1,0,0,0,1005, + 5286,1,0,0,0,1007,5293,1,0,0,0,1009,5298,1,0,0,0,1011,5303,1,0,0, + 0,1013,5309,1,0,0,0,1015,5314,1,0,0,0,1017,5316,1,0,0,0,1019,5318, + 1,0,0,0,1021,5320,1,0,0,0,1023,5322,1,0,0,0,1025,5324,1,0,0,0,1027, + 5326,1,0,0,0,1029,5328,1,0,0,0,1031,5330,1,0,0,0,1033,5332,1,0,0, + 0,1035,5334,1,0,0,0,1037,5336,1,0,0,0,1039,5338,1,0,0,0,1041,5340, + 1,0,0,0,1043,5342,1,0,0,0,1045,5344,1,0,0,0,1047,5346,1,0,0,0,1049, + 5348,1,0,0,0,1051,5350,1,0,0,0,1053,5352,1,0,0,0,1055,5354,1,0,0, + 0,1057,5356,1,0,0,0,1059,5358,1,0,0,0,1061,5360,1,0,0,0,1063,5362, + 1,0,0,0,1065,5364,1,0,0,0,1067,5366,1,0,0,0,1069,5368,1,0,0,0,1071, + 5371,1,0,0,0,1073,5374,1,0,0,0,1075,5376,1,0,0,0,1077,5378,1,0,0, + 0,1079,5384,1,0,0,0,1081,5387,1,0,0,0,1083,5434,1,0,0,0,1085,5436, + 1,0,0,0,1087,5438,1,0,0,0,1089,5440,1,0,0,0,1091,5453,1,0,0,0,1093, + 5465,1,0,0,0,1095,5479,1,0,0,0,1097,5481,1,0,0,0,1099,5483,1,0,0, + 0,1101,5496,1,0,0,0,1103,5509,1,0,0,0,1105,5518,1,0,0,0,1107,1108, + 7,0,0,0,1108,1109,1,0,0,0,1109,1110,6,0,0,0,1110,2,1,0,0,0,1111, + 1112,5,47,0,0,1112,1113,5,42,0,0,1113,1117,1,0,0,0,1114,1116,9,0, + 0,0,1115,1114,1,0,0,0,1116,1119,1,0,0,0,1117,1118,1,0,0,0,1117,1115, + 1,0,0,0,1118,1120,1,0,0,0,1119,1117,1,0,0,0,1120,1121,5,42,0,0,1121, + 1122,5,47,0,0,1122,1123,1,0,0,0,1123,1124,6,1,0,0,1124,4,1,0,0,0, + 1125,1126,5,45,0,0,1126,1129,5,45,0,0,1127,1129,5,35,0,0,1128,1125, + 1,0,0,0,1128,1127,1,0,0,0,1129,1133,1,0,0,0,1130,1132,8,1,0,0,1131, + 1130,1,0,0,0,1132,1135,1,0,0,0,1133,1131,1,0,0,0,1133,1134,1,0,0, + 0,1134,1141,1,0,0,0,1135,1133,1,0,0,0,1136,1138,5,13,0,0,1137,1136, + 1,0,0,0,1137,1138,1,0,0,0,1138,1139,1,0,0,0,1139,1142,5,10,0,0,1140, + 1142,5,0,0,1,1141,1137,1,0,0,0,1141,1140,1,0,0,0,1142,1154,1,0,0, + 0,1143,1144,5,45,0,0,1144,1145,5,45,0,0,1145,1151,1,0,0,0,1146,1148, + 5,13,0,0,1147,1146,1,0,0,0,1147,1148,1,0,0,0,1148,1149,1,0,0,0,1149, + 1152,5,10,0,0,1150,1152,5,0,0,1,1151,1147,1,0,0,0,1151,1150,1,0, + 0,0,1152,1154,1,0,0,0,1153,1128,1,0,0,0,1153,1143,1,0,0,0,1154,1155, + 1,0,0,0,1155,1156,6,2,0,0,1156,6,1,0,0,0,1157,1158,7,2,0,0,1158, + 1159,7,3,0,0,1159,1160,7,4,0,0,1160,8,1,0,0,0,1161,1162,7,2,0,0, + 1162,1163,7,5,0,0,1163,1164,7,5,0,0,1164,10,1,0,0,0,1165,1166,7, + 2,0,0,1166,1167,7,5,0,0,1167,1168,7,5,0,0,1168,1169,7,6,0,0,1169, + 1170,7,7,0,0,1170,1171,7,2,0,0,1171,1172,7,8,0,0,1172,1173,7,9,0, + 0,1173,12,1,0,0,0,1174,1175,7,2,0,0,1175,1176,7,5,0,0,1176,1177, + 7,5,0,0,1177,1178,7,6,0,0,1178,1179,7,10,0,0,1179,14,1,0,0,0,1180, + 1181,7,2,0,0,1181,1182,7,5,0,0,1182,1183,7,8,0,0,1183,1184,7,9,0, + 0,1184,1185,7,11,0,0,1185,16,1,0,0,0,1186,1187,7,2,0,0,1187,1188, + 7,12,0,0,1188,1189,7,2,0,0,1189,1190,7,5,0,0,1190,1191,7,13,0,0, + 1191,1192,7,14,0,0,1192,1193,7,9,0,0,1193,18,1,0,0,0,1194,1195,7, + 2,0,0,1195,1196,7,12,0,0,1196,1197,7,15,0,0,1197,20,1,0,0,0,1198, + 1199,7,2,0,0,1199,1200,7,12,0,0,1200,1201,7,13,0,0,1201,22,1,0,0, + 0,1202,1203,7,2,0,0,1203,1204,7,11,0,0,1204,1205,7,9,0,0,1205,24, + 1,0,0,0,1206,1207,7,2,0,0,1207,1208,7,11,0,0,1208,1209,7,11,0,0, + 1209,1210,7,2,0,0,1210,1211,7,13,0,0,1211,26,1,0,0,0,1212,1213,7, + 2,0,0,1213,1214,7,11,0,0,1214,1215,7,11,0,0,1215,1216,7,2,0,0,1216, + 1217,7,13,0,0,1217,1218,5,95,0,0,1218,1219,7,2,0,0,1219,1220,7,16, + 0,0,1220,1221,7,16,0,0,1221,28,1,0,0,0,1222,1223,7,2,0,0,1223,1224, + 7,11,0,0,1224,1225,7,11,0,0,1225,1226,7,2,0,0,1226,1227,7,13,0,0, + 1227,1228,5,95,0,0,1228,1229,7,7,0,0,1229,1230,7,6,0,0,1230,1231, + 7,12,0,0,1231,1232,7,7,0,0,1232,1233,7,2,0,0,1233,1234,7,8,0,0,1234, + 1235,5,95,0,0,1235,1236,7,2,0,0,1236,1237,7,16,0,0,1237,1238,7,16, + 0,0,1238,30,1,0,0,0,1239,1240,7,2,0,0,1240,1241,7,11,0,0,1241,1242, + 7,11,0,0,1242,1243,7,2,0,0,1243,1244,7,13,0,0,1244,1245,5,95,0,0, + 1245,1246,7,17,0,0,1246,1247,7,2,0,0,1247,1248,7,18,0,0,1248,1249, + 5,95,0,0,1249,1250,7,7,0,0,1250,1251,7,2,0,0,1251,1252,7,11,0,0, + 1252,1253,7,15,0,0,1253,1254,7,19,0,0,1254,1255,7,12,0,0,1255,1256, + 7,2,0,0,1256,1257,7,5,0,0,1257,1258,7,19,0,0,1258,1259,7,8,0,0,1259, + 1260,7,13,0,0,1260,32,1,0,0,0,1261,1262,7,2,0,0,1262,1263,7,4,0, + 0,1263,34,1,0,0,0,1264,1265,7,2,0,0,1265,1266,7,4,0,0,1266,1267, + 7,9,0,0,1267,1268,7,12,0,0,1268,1269,7,4,0,0,1269,1270,7,19,0,0, + 1270,1271,7,8,0,0,1271,1272,7,19,0,0,1272,1273,7,20,0,0,1273,1274, + 7,9,0,0,1274,36,1,0,0,0,1275,1276,7,2,0,0,1276,1277,7,4,0,0,1277, + 1278,7,13,0,0,1278,1279,7,17,0,0,1279,1280,7,17,0,0,1280,1281,7, + 9,0,0,1281,1282,7,8,0,0,1282,1283,7,11,0,0,1283,1284,7,19,0,0,1284, + 1285,7,7,0,0,1285,38,1,0,0,0,1286,1287,7,2,0,0,1287,1288,7,8,0,0, + 1288,40,1,0,0,0,1289,1290,7,2,0,0,1290,1291,7,8,0,0,1291,1292,7, + 6,0,0,1292,1293,7,17,0,0,1293,1294,7,19,0,0,1294,1295,7,7,0,0,1295, + 42,1,0,0,0,1296,1297,7,2,0,0,1297,1298,7,21,0,0,1298,1299,7,8,0, + 0,1299,1300,7,22,0,0,1300,1301,7,6,0,0,1301,1302,7,11,0,0,1302,1303, + 7,19,0,0,1303,1304,7,14,0,0,1304,1305,7,2,0,0,1305,1306,7,8,0,0, + 1306,1307,7,19,0,0,1307,1308,7,6,0,0,1308,1309,7,12,0,0,1309,44, + 1,0,0,0,1310,1311,7,2,0,0,1311,1312,7,20,0,0,1312,1313,7,16,0,0, + 1313,46,1,0,0,0,1314,1315,7,3,0,0,1315,1316,7,9,0,0,1316,1317,7, + 16,0,0,1317,1318,7,19,0,0,1318,1319,7,12,0,0,1319,48,1,0,0,0,1320, + 1321,7,3,0,0,1321,1322,7,9,0,0,1322,1323,7,16,0,0,1323,1324,7,19, + 0,0,1324,1325,7,12,0,0,1325,1326,5,95,0,0,1326,1327,7,23,0,0,1327, + 1328,7,11,0,0,1328,1329,7,2,0,0,1329,1330,7,17,0,0,1330,1331,7,9, + 0,0,1331,50,1,0,0,0,1332,1333,7,3,0,0,1333,1334,7,9,0,0,1334,1335, + 7,16,0,0,1335,1336,7,19,0,0,1336,1337,7,12,0,0,1337,1338,5,95,0, + 0,1338,1339,7,24,0,0,1339,1340,7,2,0,0,1340,1341,7,11,0,0,1341,1342, + 7,8,0,0,1342,1343,7,19,0,0,1343,1344,7,8,0,0,1344,1345,7,19,0,0, + 1345,1346,7,6,0,0,1346,1347,7,12,0,0,1347,52,1,0,0,0,1348,1349,7, + 3,0,0,1349,1350,7,9,0,0,1350,1351,7,8,0,0,1351,1352,7,10,0,0,1352, + 1353,7,9,0,0,1353,1354,7,9,0,0,1354,1355,7,12,0,0,1355,54,1,0,0, + 0,1356,1357,7,3,0,0,1357,1358,7,19,0,0,1358,1359,7,16,0,0,1359,1360, + 7,19,0,0,1360,1361,7,12,0,0,1361,1362,7,8,0,0,1362,56,1,0,0,0,1363, + 1364,7,3,0,0,1364,1365,7,19,0,0,1365,1366,7,12,0,0,1366,1367,7,2, + 0,0,1367,1368,7,11,0,0,1368,1369,7,13,0,0,1369,58,1,0,0,0,1370,1371, + 7,3,0,0,1371,1372,7,19,0,0,1372,1373,7,8,0,0,1373,60,1,0,0,0,1374, + 1375,7,3,0,0,1375,1376,7,5,0,0,1376,1377,7,6,0,0,1377,1378,7,3,0, + 0,1378,62,1,0,0,0,1379,1380,7,3,0,0,1380,1381,7,6,0,0,1381,1382, + 7,6,0,0,1382,1383,7,5,0,0,1383,1384,7,9,0,0,1384,1385,7,2,0,0,1385, + 1386,7,12,0,0,1386,64,1,0,0,0,1387,1388,7,3,0,0,1388,1389,7,6,0, + 0,1389,1390,7,8,0,0,1390,1391,7,22,0,0,1391,66,1,0,0,0,1392,1393, + 7,3,0,0,1393,1394,7,13,0,0,1394,68,1,0,0,0,1395,1396,7,3,0,0,1396, + 1397,7,13,0,0,1397,1398,7,8,0,0,1398,1399,7,9,0,0,1399,1400,7,4, + 0,0,1400,70,1,0,0,0,1401,1402,7,7,0,0,1402,1403,7,2,0,0,1403,1404, + 7,5,0,0,1404,1405,7,5,0,0,1405,72,1,0,0,0,1406,1407,7,7,0,0,1407, + 1408,7,2,0,0,1408,1409,7,5,0,0,1409,1410,7,5,0,0,1410,1411,7,9,0, + 0,1411,1412,7,15,0,0,1412,74,1,0,0,0,1413,1414,7,7,0,0,1414,1415, + 7,2,0,0,1415,1416,7,11,0,0,1416,1417,7,15,0,0,1417,1418,7,19,0,0, + 1418,1419,7,12,0,0,1419,1420,7,2,0,0,1420,1421,7,5,0,0,1421,1422, + 7,19,0,0,1422,1423,7,8,0,0,1423,1424,7,13,0,0,1424,76,1,0,0,0,1425, + 1426,7,7,0,0,1426,1427,7,2,0,0,1427,1428,7,4,0,0,1428,1429,7,7,0, + 0,1429,1430,7,2,0,0,1430,1431,7,15,0,0,1431,1432,7,9,0,0,1432,1433, + 7,15,0,0,1433,78,1,0,0,0,1434,1435,7,7,0,0,1435,1436,7,2,0,0,1436, + 1437,7,4,0,0,1437,1438,7,9,0,0,1438,80,1,0,0,0,1439,1440,7,7,0,0, + 1440,1441,7,2,0,0,1441,1442,7,4,0,0,1442,1443,7,8,0,0,1443,82,1, + 0,0,0,1444,1445,7,7,0,0,1445,1446,7,2,0,0,1446,1447,7,8,0,0,1447, + 1448,7,2,0,0,1448,1449,7,5,0,0,1449,1450,7,6,0,0,1450,1451,7,16, + 0,0,1451,1452,7,4,0,0,1452,84,1,0,0,0,1453,1454,7,7,0,0,1454,1455, + 7,9,0,0,1455,1456,7,19,0,0,1456,1457,7,5,0,0,1457,86,1,0,0,0,1458, + 1459,7,7,0,0,1459,1460,7,9,0,0,1460,1461,7,19,0,0,1461,1462,7,5, + 0,0,1462,1463,7,19,0,0,1463,1464,7,12,0,0,1464,1465,7,16,0,0,1465, + 88,1,0,0,0,1466,1467,7,7,0,0,1467,1468,7,22,0,0,1468,1469,7,2,0, + 0,1469,1470,7,12,0,0,1470,1471,7,16,0,0,1471,1472,7,9,0,0,1472,1473, + 7,5,0,0,1473,1474,7,6,0,0,1474,1475,7,16,0,0,1475,1476,5,95,0,0, + 1476,1477,7,17,0,0,1477,1478,7,6,0,0,1478,1479,7,15,0,0,1479,1480, + 7,9,0,0,1480,90,1,0,0,0,1481,1482,7,7,0,0,1482,1483,7,22,0,0,1483, + 1484,7,2,0,0,1484,1485,7,11,0,0,1485,92,1,0,0,0,1486,1487,7,7,0, + 0,1487,1488,7,22,0,0,1488,1489,7,2,0,0,1489,1490,7,11,0,0,1490,1491, + 7,2,0,0,1491,1492,7,7,0,0,1492,1493,7,8,0,0,1493,1494,7,9,0,0,1494, + 1495,7,11,0,0,1495,94,1,0,0,0,1496,1497,7,7,0,0,1497,1498,7,22,0, + 0,1498,1499,7,2,0,0,1499,1500,7,11,0,0,1500,1501,7,2,0,0,1501,1502, + 7,7,0,0,1502,1503,7,8,0,0,1503,1504,7,9,0,0,1504,1505,7,11,0,0,1505, + 1506,5,95,0,0,1506,1507,7,5,0,0,1507,1508,7,9,0,0,1508,1509,7,12, + 0,0,1509,1510,7,16,0,0,1510,1511,7,8,0,0,1511,1512,7,22,0,0,1512, + 96,1,0,0,0,1513,1514,7,7,0,0,1514,1515,7,22,0,0,1515,1516,7,2,0, + 0,1516,1517,7,11,0,0,1517,1518,5,95,0,0,1518,1519,7,5,0,0,1519,1520, + 7,9,0,0,1520,1521,7,12,0,0,1521,1522,7,16,0,0,1522,1523,7,8,0,0, + 1523,1524,7,22,0,0,1524,98,1,0,0,0,1525,1526,7,7,0,0,1526,1527,7, + 22,0,0,1527,1528,7,9,0,0,1528,1529,7,7,0,0,1529,1530,7,25,0,0,1530, + 100,1,0,0,0,1531,1532,7,7,0,0,1532,1533,7,5,0,0,1533,1534,7,2,0, + 0,1534,1535,7,4,0,0,1535,1536,7,4,0,0,1536,1537,7,19,0,0,1537,1538, + 7,23,0,0,1538,1539,7,19,0,0,1539,1540,7,9,0,0,1540,1541,7,11,0,0, + 1541,102,1,0,0,0,1542,1543,7,7,0,0,1543,1544,7,5,0,0,1544,1545,7, + 6,0,0,1545,1546,7,3,0,0,1546,104,1,0,0,0,1547,1548,7,7,0,0,1548, + 1549,7,5,0,0,1549,1550,7,6,0,0,1550,1551,7,4,0,0,1551,1552,7,9,0, + 0,1552,106,1,0,0,0,1553,1554,7,7,0,0,1554,1555,7,6,0,0,1555,1556, + 7,2,0,0,1556,1557,7,5,0,0,1557,1558,7,9,0,0,1558,1559,7,4,0,0,1559, + 1560,7,7,0,0,1560,1561,7,9,0,0,1561,108,1,0,0,0,1562,1563,7,7,0, + 0,1563,1564,7,6,0,0,1564,1565,7,5,0,0,1565,1566,7,5,0,0,1566,1567, + 7,2,0,0,1567,1568,7,8,0,0,1568,1569,7,9,0,0,1569,110,1,0,0,0,1570, + 1571,7,7,0,0,1571,1572,7,6,0,0,1572,1573,7,5,0,0,1573,1574,7,5,0, + 0,1574,1575,7,9,0,0,1575,1576,7,7,0,0,1576,1577,7,8,0,0,1577,112, + 1,0,0,0,1578,1579,7,7,0,0,1579,1580,7,6,0,0,1580,1581,7,5,0,0,1581, + 1582,7,21,0,0,1582,1583,7,17,0,0,1583,1584,7,12,0,0,1584,114,1,0, + 0,0,1585,1586,7,7,0,0,1586,1587,7,6,0,0,1587,1588,7,5,0,0,1588,1589, + 7,21,0,0,1589,1590,7,17,0,0,1590,1591,7,12,0,0,1591,1592,7,4,0,0, + 1592,116,1,0,0,0,1593,1594,7,7,0,0,1594,1595,7,6,0,0,1595,1596,7, + 17,0,0,1596,1597,7,17,0,0,1597,1598,7,9,0,0,1598,1599,7,12,0,0,1599, + 1600,7,8,0,0,1600,118,1,0,0,0,1601,1602,7,7,0,0,1602,1603,7,6,0, + 0,1603,1604,7,17,0,0,1604,1605,7,17,0,0,1605,1606,7,19,0,0,1606, + 1607,7,8,0,0,1607,120,1,0,0,0,1608,1609,7,7,0,0,1609,1610,7,6,0, + 0,1610,1611,7,17,0,0,1611,1612,7,24,0,0,1612,1613,7,21,0,0,1613, + 1614,7,8,0,0,1614,1615,7,9,0,0,1615,122,1,0,0,0,1616,1617,7,7,0, + 0,1617,1618,7,6,0,0,1618,1619,7,12,0,0,1619,1620,7,15,0,0,1620,1621, + 7,19,0,0,1621,1622,7,8,0,0,1622,1623,7,19,0,0,1623,1624,7,6,0,0, + 1624,1625,7,12,0,0,1625,124,1,0,0,0,1626,1627,7,7,0,0,1627,1628, + 7,6,0,0,1628,1629,7,12,0,0,1629,1630,7,12,0,0,1630,1631,7,9,0,0, + 1631,1632,7,7,0,0,1632,1633,7,8,0,0,1633,126,1,0,0,0,1634,1635,7, + 7,0,0,1635,1636,7,6,0,0,1636,1637,7,12,0,0,1637,1638,7,4,0,0,1638, + 1639,7,8,0,0,1639,1640,7,11,0,0,1640,1641,7,2,0,0,1641,1642,7,19, + 0,0,1642,1643,7,12,0,0,1643,1644,7,8,0,0,1644,128,1,0,0,0,1645,1646, + 7,7,0,0,1646,1647,7,6,0,0,1647,1648,7,12,0,0,1648,1649,7,8,0,0,1649, + 1650,7,2,0,0,1650,1651,7,19,0,0,1651,1652,7,12,0,0,1652,1653,7,4, + 0,0,1653,130,1,0,0,0,1654,1655,7,7,0,0,1655,1656,7,6,0,0,1656,1657, + 7,12,0,0,1657,1658,7,20,0,0,1658,1659,7,9,0,0,1659,1660,7,11,0,0, + 1660,1661,7,8,0,0,1661,132,1,0,0,0,1662,1663,7,7,0,0,1663,1664,7, + 6,0,0,1664,1665,7,11,0,0,1665,1666,7,11,0,0,1666,134,1,0,0,0,1667, + 1668,7,7,0,0,1668,1669,7,6,0,0,1669,1670,7,11,0,0,1670,1671,7,11, + 0,0,1671,1672,7,9,0,0,1672,1673,7,4,0,0,1673,1674,7,24,0,0,1674, + 1675,7,6,0,0,1675,1676,7,12,0,0,1676,1677,7,15,0,0,1677,1678,7,19, + 0,0,1678,1679,7,12,0,0,1679,1680,7,16,0,0,1680,136,1,0,0,0,1681, + 1682,7,7,0,0,1682,1683,7,6,0,0,1683,1684,7,21,0,0,1684,1685,7,12, + 0,0,1685,1686,7,8,0,0,1686,138,1,0,0,0,1687,1688,7,7,0,0,1688,1689, + 7,6,0,0,1689,1690,7,20,0,0,1690,1691,7,2,0,0,1691,1692,7,11,0,0, + 1692,1693,5,95,0,0,1693,1694,7,24,0,0,1694,1695,7,6,0,0,1695,1696, + 7,24,0,0,1696,140,1,0,0,0,1697,1698,7,7,0,0,1698,1699,7,6,0,0,1699, + 1700,7,20,0,0,1700,1701,7,2,0,0,1701,1702,7,11,0,0,1702,1703,5,95, + 0,0,1703,1704,7,4,0,0,1704,1705,7,2,0,0,1705,1706,7,17,0,0,1706, + 1707,7,24,0,0,1707,142,1,0,0,0,1708,1709,7,7,0,0,1709,1710,7,11, + 0,0,1710,1711,7,9,0,0,1711,1712,7,2,0,0,1712,1713,7,8,0,0,1713,1714, + 7,9,0,0,1714,144,1,0,0,0,1715,1716,7,7,0,0,1716,1717,7,11,0,0,1717, + 1718,7,6,0,0,1718,1719,7,4,0,0,1719,1720,7,4,0,0,1720,146,1,0,0, + 0,1721,1722,7,7,0,0,1722,1723,7,21,0,0,1723,1724,7,3,0,0,1724,1725, + 7,9,0,0,1725,148,1,0,0,0,1726,1727,7,7,0,0,1727,1728,7,21,0,0,1728, + 1729,7,17,0,0,1729,1730,7,9,0,0,1730,1731,5,95,0,0,1731,1732,7,15, + 0,0,1732,1733,7,19,0,0,1733,1734,7,4,0,0,1734,1735,7,8,0,0,1735, + 150,1,0,0,0,1736,1737,7,7,0,0,1737,1738,7,21,0,0,1738,1739,7,11, + 0,0,1739,1740,7,11,0,0,1740,1741,7,9,0,0,1741,1742,7,12,0,0,1742, + 1743,7,8,0,0,1743,152,1,0,0,0,1744,1745,7,7,0,0,1745,1746,7,21,0, + 0,1746,1747,7,11,0,0,1747,1748,7,11,0,0,1748,1749,7,9,0,0,1749,1750, + 7,12,0,0,1750,1751,7,8,0,0,1751,1752,5,95,0,0,1752,1753,7,7,0,0, + 1753,1754,7,2,0,0,1754,1755,7,8,0,0,1755,1756,7,2,0,0,1756,1757, + 7,5,0,0,1757,1758,7,6,0,0,1758,1759,7,16,0,0,1759,154,1,0,0,0,1760, + 1761,7,7,0,0,1761,1762,7,21,0,0,1762,1763,7,11,0,0,1763,1764,7,11, + 0,0,1764,1765,7,9,0,0,1765,1766,7,12,0,0,1766,1767,7,8,0,0,1767, + 1768,5,95,0,0,1768,1769,7,15,0,0,1769,1770,7,2,0,0,1770,1771,7,8, + 0,0,1771,1772,7,9,0,0,1772,156,1,0,0,0,1773,1774,7,7,0,0,1774,1775, + 7,21,0,0,1775,1776,7,11,0,0,1776,1777,7,11,0,0,1777,1778,7,9,0,0, + 1778,1779,7,12,0,0,1779,1780,7,8,0,0,1780,1781,5,95,0,0,1781,1782, + 7,15,0,0,1782,1783,7,9,0,0,1783,1784,7,23,0,0,1784,1785,7,2,0,0, + 1785,1786,7,21,0,0,1786,1787,7,5,0,0,1787,1788,7,8,0,0,1788,1789, + 5,95,0,0,1789,1790,7,8,0,0,1790,1791,7,11,0,0,1791,1792,7,2,0,0, + 1792,1793,7,12,0,0,1793,1794,7,4,0,0,1794,1795,7,23,0,0,1795,1796, + 7,6,0,0,1796,1797,7,11,0,0,1797,1798,7,17,0,0,1798,1799,5,95,0,0, + 1799,1800,7,16,0,0,1800,1801,7,11,0,0,1801,1802,7,6,0,0,1802,1803, + 7,21,0,0,1803,1804,7,24,0,0,1804,158,1,0,0,0,1805,1806,7,7,0,0,1806, + 1807,7,21,0,0,1807,1808,7,11,0,0,1808,1809,7,11,0,0,1809,1810,7, + 9,0,0,1810,1811,7,12,0,0,1811,1812,7,8,0,0,1812,1813,5,95,0,0,1813, + 1814,7,24,0,0,1814,1815,7,2,0,0,1815,1816,7,8,0,0,1816,1817,7,22, + 0,0,1817,160,1,0,0,0,1818,1819,7,7,0,0,1819,1820,7,21,0,0,1820,1821, + 7,11,0,0,1821,1822,7,11,0,0,1822,1823,7,9,0,0,1823,1824,7,12,0,0, + 1824,1825,7,8,0,0,1825,1826,5,95,0,0,1826,1827,7,11,0,0,1827,1828, + 7,6,0,0,1828,1829,7,5,0,0,1829,1830,7,9,0,0,1830,162,1,0,0,0,1831, + 1832,7,7,0,0,1832,1833,7,21,0,0,1833,1834,7,11,0,0,1834,1835,7,11, + 0,0,1835,1836,7,9,0,0,1836,1837,7,12,0,0,1837,1838,7,8,0,0,1838, + 1839,5,95,0,0,1839,1840,7,11,0,0,1840,1841,7,6,0,0,1841,1842,7,10, + 0,0,1842,164,1,0,0,0,1843,1844,7,7,0,0,1844,1845,7,21,0,0,1845,1846, + 7,11,0,0,1846,1847,7,11,0,0,1847,1848,7,9,0,0,1848,1849,7,12,0,0, + 1849,1850,7,8,0,0,1850,1851,5,95,0,0,1851,1852,7,4,0,0,1852,1853, + 7,7,0,0,1853,1854,7,22,0,0,1854,1855,7,9,0,0,1855,1856,7,17,0,0, + 1856,1857,7,2,0,0,1857,166,1,0,0,0,1858,1859,7,7,0,0,1859,1860,7, + 21,0,0,1860,1861,7,11,0,0,1861,1862,7,11,0,0,1862,1863,7,9,0,0,1863, + 1864,7,12,0,0,1864,1865,7,8,0,0,1865,1866,5,95,0,0,1866,1867,7,8, + 0,0,1867,1868,7,19,0,0,1868,1869,7,17,0,0,1869,1870,7,9,0,0,1870, + 168,1,0,0,0,1871,1872,7,7,0,0,1872,1873,7,21,0,0,1873,1874,7,11, + 0,0,1874,1875,7,11,0,0,1875,1876,7,9,0,0,1876,1877,7,12,0,0,1877, + 1878,7,8,0,0,1878,1879,5,95,0,0,1879,1880,7,8,0,0,1880,1881,7,19, + 0,0,1881,1882,7,17,0,0,1882,1883,7,9,0,0,1883,1884,7,4,0,0,1884, + 1885,7,8,0,0,1885,1886,7,2,0,0,1886,1887,7,17,0,0,1887,1888,7,24, + 0,0,1888,170,1,0,0,0,1889,1890,7,7,0,0,1890,1891,7,21,0,0,1891,1892, + 7,11,0,0,1892,1893,7,11,0,0,1893,1894,7,9,0,0,1894,1895,7,12,0,0, + 1895,1896,7,8,0,0,1896,1897,5,95,0,0,1897,1898,7,8,0,0,1898,1899, + 7,11,0,0,1899,1900,7,2,0,0,1900,1901,7,12,0,0,1901,1902,7,4,0,0, + 1902,1903,7,23,0,0,1903,1904,7,6,0,0,1904,1905,7,11,0,0,1905,1906, + 7,17,0,0,1906,1907,5,95,0,0,1907,1908,7,16,0,0,1908,1909,7,11,0, + 0,1909,1910,7,6,0,0,1910,1911,7,21,0,0,1911,1912,7,24,0,0,1912,1913, + 5,95,0,0,1913,1914,7,23,0,0,1914,1915,7,6,0,0,1915,1916,7,11,0,0, + 1916,1917,5,95,0,0,1917,1918,7,8,0,0,1918,1919,7,13,0,0,1919,1920, + 7,24,0,0,1920,1921,7,9,0,0,1921,172,1,0,0,0,1922,1923,7,7,0,0,1923, + 1924,7,21,0,0,1924,1925,7,11,0,0,1925,1926,7,11,0,0,1926,1927,7, + 9,0,0,1927,1928,7,12,0,0,1928,1929,7,8,0,0,1929,1930,5,95,0,0,1930, + 1931,7,21,0,0,1931,1932,7,4,0,0,1932,1933,7,9,0,0,1933,1934,7,11, + 0,0,1934,174,1,0,0,0,1935,1936,7,7,0,0,1936,1937,7,21,0,0,1937,1938, + 7,11,0,0,1938,1939,7,4,0,0,1939,1940,7,6,0,0,1940,1941,7,11,0,0, + 1941,176,1,0,0,0,1942,1943,7,7,0,0,1943,1944,7,13,0,0,1944,1945, + 7,7,0,0,1945,1946,7,5,0,0,1946,1947,7,9,0,0,1947,178,1,0,0,0,1948, + 1949,7,15,0,0,1949,1950,7,2,0,0,1950,1951,7,8,0,0,1951,1952,7,2, + 0,0,1952,1953,7,3,0,0,1953,1954,7,2,0,0,1954,1955,7,4,0,0,1955,1956, + 7,9,0,0,1956,1957,7,4,0,0,1957,180,1,0,0,0,1958,1959,7,15,0,0,1959, + 1960,7,2,0,0,1960,1961,7,8,0,0,1961,1962,7,9,0,0,1962,182,1,0,0, + 0,1963,1964,7,15,0,0,1964,1965,7,2,0,0,1965,1966,7,8,0,0,1966,1967, + 7,9,0,0,1967,1968,7,8,0,0,1968,1969,7,19,0,0,1969,1970,7,17,0,0, + 1970,1971,7,9,0,0,1971,184,1,0,0,0,1972,1973,7,15,0,0,1973,1974, + 7,2,0,0,1974,1975,7,8,0,0,1975,1976,7,9,0,0,1976,1977,7,8,0,0,1977, + 1978,7,19,0,0,1978,1979,7,17,0,0,1979,1980,7,9,0,0,1980,1981,5,95, + 0,0,1981,1982,7,15,0,0,1982,1983,7,19,0,0,1983,1984,7,23,0,0,1984, + 1985,7,23,0,0,1985,186,1,0,0,0,1986,1987,7,15,0,0,1987,1988,7,2, + 0,0,1988,1989,7,8,0,0,1989,1990,7,9,0,0,1990,1991,7,8,0,0,1991,1992, + 7,19,0,0,1992,1993,7,17,0,0,1993,1994,7,9,0,0,1994,1995,5,95,0,0, + 1995,1996,7,8,0,0,1996,1997,7,11,0,0,1997,1998,7,21,0,0,1998,1999, + 7,12,0,0,1999,2000,7,7,0,0,2000,188,1,0,0,0,2001,2002,7,15,0,0,2002, + 2003,7,2,0,0,2003,2004,7,8,0,0,2004,2005,7,9,0,0,2005,2006,5,95, + 0,0,2006,2007,7,15,0,0,2007,2008,7,19,0,0,2008,2009,7,23,0,0,2009, + 2010,7,23,0,0,2010,190,1,0,0,0,2011,2012,7,15,0,0,2012,2013,7,2, + 0,0,2013,2014,7,8,0,0,2014,2015,7,9,0,0,2015,2016,5,95,0,0,2016, + 2017,7,8,0,0,2017,2018,7,11,0,0,2018,2019,7,21,0,0,2019,2020,7,12, + 0,0,2020,2021,7,7,0,0,2021,192,1,0,0,0,2022,2023,7,15,0,0,2023,2024, + 7,2,0,0,2024,2025,7,13,0,0,2025,194,1,0,0,0,2026,2027,7,15,0,0,2027, + 2028,7,2,0,0,2028,2029,7,13,0,0,2029,2030,7,6,0,0,2030,2031,7,23, + 0,0,2031,2032,7,10,0,0,2032,2033,7,9,0,0,2033,2034,7,9,0,0,2034, + 2035,7,25,0,0,2035,196,1,0,0,0,2036,2037,7,15,0,0,2037,2038,7,2, + 0,0,2038,2039,7,13,0,0,2039,2040,7,6,0,0,2040,2041,7,23,0,0,2041, + 2042,7,13,0,0,2042,2043,7,9,0,0,2043,2044,7,2,0,0,2044,2045,7,11, + 0,0,2045,198,1,0,0,0,2046,2047,7,15,0,0,2047,2048,7,9,0,0,2048,2049, + 7,2,0,0,2049,2050,7,5,0,0,2050,2051,7,5,0,0,2051,2052,7,6,0,0,2052, + 2053,7,7,0,0,2053,2054,7,2,0,0,2054,2055,7,8,0,0,2055,2056,7,9,0, + 0,2056,200,1,0,0,0,2057,2058,7,15,0,0,2058,2059,7,9,0,0,2059,2060, + 7,7,0,0,2060,202,1,0,0,0,2061,2062,7,15,0,0,2062,2063,7,9,0,0,2063, + 2064,7,7,0,0,2064,2065,7,19,0,0,2065,2066,7,17,0,0,2066,2067,7,2, + 0,0,2067,2068,7,5,0,0,2068,204,1,0,0,0,2069,2070,7,15,0,0,2070,2071, + 7,9,0,0,2071,2072,7,7,0,0,2072,2073,7,5,0,0,2073,2074,7,2,0,0,2074, + 2075,7,11,0,0,2075,2076,7,9,0,0,2076,206,1,0,0,0,2077,2078,7,15, + 0,0,2078,2079,7,9,0,0,2079,2080,7,23,0,0,2080,2081,7,2,0,0,2081, + 2082,7,21,0,0,2082,2083,7,5,0,0,2083,2084,7,8,0,0,2084,208,1,0,0, + 0,2085,2086,7,15,0,0,2086,2087,7,9,0,0,2087,2088,7,23,0,0,2088,2089, + 7,19,0,0,2089,2090,7,12,0,0,2090,2091,7,9,0,0,2091,210,1,0,0,0,2092, + 2093,7,15,0,0,2093,2094,7,9,0,0,2094,2095,7,5,0,0,2095,2096,7,9, + 0,0,2096,2097,7,8,0,0,2097,2098,7,9,0,0,2098,212,1,0,0,0,2099,2100, + 7,15,0,0,2100,2101,7,9,0,0,2101,2102,7,12,0,0,2102,2103,7,4,0,0, + 2103,2104,7,9,0,0,2104,2105,5,95,0,0,2105,2106,7,11,0,0,2106,2107, + 7,2,0,0,2107,2108,7,12,0,0,2108,2109,7,25,0,0,2109,214,1,0,0,0,2110, + 2111,7,15,0,0,2111,2112,7,9,0,0,2112,2113,7,11,0,0,2113,2114,7,9, + 0,0,2114,2115,7,23,0,0,2115,216,1,0,0,0,2116,2117,7,15,0,0,2117, + 2118,7,9,0,0,2118,2119,7,4,0,0,2119,2120,7,7,0,0,2120,2121,7,11, + 0,0,2121,2122,7,19,0,0,2122,2123,7,3,0,0,2123,2124,7,9,0,0,2124, + 218,1,0,0,0,2125,2126,7,15,0,0,2126,2127,7,9,0,0,2127,2128,7,8,0, + 0,2128,2129,7,9,0,0,2129,2130,7,11,0,0,2130,2131,7,17,0,0,2131,2132, + 7,19,0,0,2132,2133,7,12,0,0,2133,2134,7,19,0,0,2134,2135,7,4,0,0, + 2135,2136,7,8,0,0,2136,2137,7,19,0,0,2137,2138,7,7,0,0,2138,220, + 1,0,0,0,2139,2140,7,15,0,0,2140,2141,7,19,0,0,2141,2142,7,4,0,0, + 2142,2143,7,2,0,0,2143,2144,7,5,0,0,2144,2145,7,5,0,0,2145,2146, + 7,6,0,0,2146,2147,7,10,0,0,2147,222,1,0,0,0,2148,2149,7,15,0,0,2149, + 2150,7,19,0,0,2150,2151,7,4,0,0,2151,2152,7,7,0,0,2152,2153,7,6, + 0,0,2153,2154,7,12,0,0,2154,2155,7,12,0,0,2155,2156,7,9,0,0,2156, + 2157,7,7,0,0,2157,2158,7,8,0,0,2158,224,1,0,0,0,2159,2160,7,15,0, + 0,2160,2161,7,19,0,0,2161,2162,7,4,0,0,2162,2163,7,8,0,0,2163,2164, + 7,19,0,0,2164,2165,7,12,0,0,2165,2166,7,7,0,0,2166,2167,7,8,0,0, + 2167,226,1,0,0,0,2168,2169,7,15,0,0,2169,2170,7,6,0,0,2170,2171, + 7,8,0,0,2171,228,1,0,0,0,2172,2173,7,15,0,0,2173,2174,7,6,0,0,2174, + 2175,7,21,0,0,2175,2176,7,3,0,0,2176,2177,7,5,0,0,2177,2178,7,9, + 0,0,2178,230,1,0,0,0,2179,2180,7,15,0,0,2180,2181,7,11,0,0,2181, + 2182,7,6,0,0,2182,2183,7,24,0,0,2183,232,1,0,0,0,2184,2185,7,15, + 0,0,2185,2186,7,13,0,0,2186,2187,7,12,0,0,2187,2188,7,2,0,0,2188, + 2189,7,17,0,0,2189,2190,7,19,0,0,2190,2191,7,7,0,0,2191,234,1,0, + 0,0,2192,2193,7,9,0,0,2193,2194,7,2,0,0,2194,2195,7,7,0,0,2195,2196, + 7,22,0,0,2196,236,1,0,0,0,2197,2198,7,9,0,0,2198,2199,7,5,0,0,2199, + 2200,7,9,0,0,2200,2201,7,17,0,0,2201,2202,7,9,0,0,2202,2203,7,12, + 0,0,2203,2204,7,8,0,0,2204,238,1,0,0,0,2205,2206,7,9,0,0,2206,2207, + 7,5,0,0,2207,2208,7,4,0,0,2208,2209,7,9,0,0,2209,240,1,0,0,0,2210, + 2211,7,9,0,0,2211,2212,7,17,0,0,2212,2213,7,24,0,0,2213,2214,7,8, + 0,0,2214,2215,7,13,0,0,2215,242,1,0,0,0,2216,2217,7,9,0,0,2217,2218, + 7,12,0,0,2218,2219,7,15,0,0,2219,244,1,0,0,0,2220,2221,7,9,0,0,2221, + 2222,7,12,0,0,2222,2223,7,15,0,0,2223,2224,5,95,0,0,2224,2225,7, + 23,0,0,2225,2226,7,11,0,0,2226,2227,7,2,0,0,2227,2228,7,17,0,0,2228, + 2229,7,9,0,0,2229,246,1,0,0,0,2230,2231,7,9,0,0,2231,2232,7,12,0, + 0,2232,2233,7,15,0,0,2233,2234,5,95,0,0,2234,2235,7,24,0,0,2235, + 2236,7,2,0,0,2236,2237,7,11,0,0,2237,2238,7,8,0,0,2238,2239,7,19, + 0,0,2239,2240,7,8,0,0,2240,2241,7,19,0,0,2241,2242,7,6,0,0,2242, + 2243,7,12,0,0,2243,248,1,0,0,0,2244,2245,7,9,0,0,2245,2246,7,12, + 0,0,2246,2247,7,23,0,0,2247,2248,7,6,0,0,2248,2249,7,11,0,0,2249, + 2250,7,7,0,0,2250,2251,7,9,0,0,2251,2252,7,15,0,0,2252,250,1,0,0, + 0,2253,2254,7,9,0,0,2254,2255,7,26,0,0,2255,2256,7,21,0,0,2256,2257, + 7,2,0,0,2257,2258,7,5,0,0,2258,2259,7,4,0,0,2259,252,1,0,0,0,2260, + 2261,7,9,0,0,2261,2262,7,4,0,0,2262,2263,7,7,0,0,2263,2264,7,2,0, + 0,2264,2265,7,24,0,0,2265,2266,7,9,0,0,2266,254,1,0,0,0,2267,2268, + 7,9,0,0,2268,2269,7,4,0,0,2269,2270,7,8,0,0,2270,2271,7,19,0,0,2271, + 2272,7,17,0,0,2272,2273,7,2,0,0,2273,2274,7,8,0,0,2274,2275,7,9, + 0,0,2275,2276,7,15,0,0,2276,2277,5,95,0,0,2277,2278,7,7,0,0,2278, + 2279,7,6,0,0,2279,2280,7,4,0,0,2280,2281,7,8,0,0,2281,256,1,0,0, + 0,2282,2283,7,9,0,0,2283,2284,7,20,0,0,2284,2285,7,9,0,0,2285,2286, + 7,11,0,0,2286,2287,7,13,0,0,2287,258,1,0,0,0,2288,2289,7,9,0,0,2289, + 2290,7,18,0,0,2290,2291,7,7,0,0,2291,2292,7,9,0,0,2292,2293,7,24, + 0,0,2293,2294,7,8,0,0,2294,260,1,0,0,0,2295,2296,7,9,0,0,2296,2297, + 7,18,0,0,2297,2298,7,9,0,0,2298,2299,7,7,0,0,2299,262,1,0,0,0,2300, + 2301,7,9,0,0,2301,2302,7,18,0,0,2302,2303,7,9,0,0,2303,2304,7,7, + 0,0,2304,2305,7,21,0,0,2305,2306,7,8,0,0,2306,2307,7,9,0,0,2307, + 264,1,0,0,0,2308,2309,7,9,0,0,2309,2310,7,18,0,0,2310,2311,7,19, + 0,0,2311,2312,7,4,0,0,2312,2313,7,8,0,0,2313,2314,7,4,0,0,2314,266, + 1,0,0,0,2315,2316,7,9,0,0,2316,2317,7,18,0,0,2317,2318,7,24,0,0, + 2318,268,1,0,0,0,2319,2320,7,9,0,0,2320,2321,7,18,0,0,2321,2322, + 7,24,0,0,2322,2323,7,5,0,0,2323,2324,7,2,0,0,2324,2325,7,19,0,0, + 2325,2326,7,12,0,0,2326,270,1,0,0,0,2327,2328,7,9,0,0,2328,2329, + 7,18,0,0,2329,2330,7,8,0,0,2330,2331,7,9,0,0,2331,2332,7,12,0,0, + 2332,2333,7,15,0,0,2333,272,1,0,0,0,2334,2335,7,9,0,0,2335,2336, + 7,18,0,0,2336,2337,7,8,0,0,2337,2338,7,9,0,0,2338,2339,7,12,0,0, + 2339,2340,7,15,0,0,2340,2341,7,9,0,0,2341,2342,7,15,0,0,2342,274, + 1,0,0,0,2343,2344,7,9,0,0,2344,2345,7,18,0,0,2345,2346,7,8,0,0,2346, + 2347,7,9,0,0,2347,2348,7,11,0,0,2348,2349,7,12,0,0,2349,2350,7,2, + 0,0,2350,2351,7,5,0,0,2351,276,1,0,0,0,2352,2353,7,9,0,0,2353,2354, + 7,18,0,0,2354,2355,7,8,0,0,2355,2356,7,11,0,0,2356,2357,7,2,0,0, + 2357,2358,7,7,0,0,2358,2359,7,8,0,0,2359,278,1,0,0,0,2360,2361,7, + 23,0,0,2361,2362,7,2,0,0,2362,2363,7,5,0,0,2363,2364,7,4,0,0,2364, + 2365,7,9,0,0,2365,280,1,0,0,0,2366,2367,7,23,0,0,2367,2368,7,9,0, + 0,2368,2369,7,8,0,0,2369,2370,7,7,0,0,2370,2371,7,22,0,0,2371,282, + 1,0,0,0,2372,2373,7,23,0,0,2373,2374,7,19,0,0,2374,2375,7,5,0,0, + 2375,2376,7,8,0,0,2376,2377,7,9,0,0,2377,2378,7,11,0,0,2378,284, + 1,0,0,0,2379,2380,7,23,0,0,2380,2381,7,19,0,0,2381,2382,7,11,0,0, + 2382,2383,7,4,0,0,2383,2384,7,8,0,0,2384,2385,5,95,0,0,2385,2386, + 7,20,0,0,2386,2387,7,2,0,0,2387,2388,7,5,0,0,2388,2389,7,21,0,0, + 2389,2390,7,9,0,0,2390,286,1,0,0,0,2391,2392,7,23,0,0,2392,2393, + 7,5,0,0,2393,2394,7,6,0,0,2394,2395,7,2,0,0,2395,2396,7,8,0,0,2396, + 288,1,0,0,0,2397,2398,7,23,0,0,2398,2399,7,5,0,0,2399,2400,7,6,0, + 0,2400,2401,7,6,0,0,2401,2402,7,11,0,0,2402,290,1,0,0,0,2403,2404, + 7,23,0,0,2404,2405,7,6,0,0,2405,2406,7,5,0,0,2406,2407,7,5,0,0,2407, + 2408,7,6,0,0,2408,2409,7,10,0,0,2409,2410,7,19,0,0,2410,2411,7,12, + 0,0,2411,2412,7,16,0,0,2412,292,1,0,0,0,2413,2414,7,23,0,0,2414, + 2415,7,6,0,0,2415,2416,7,11,0,0,2416,294,1,0,0,0,2417,2418,7,23, + 0,0,2418,2419,7,6,0,0,2419,2420,7,11,0,0,2420,2421,7,9,0,0,2421, + 2422,7,19,0,0,2422,2423,7,16,0,0,2423,2424,7,12,0,0,2424,296,1,0, + 0,0,2425,2426,7,23,0,0,2426,2427,7,11,0,0,2427,2428,7,2,0,0,2428, + 2429,7,17,0,0,2429,2430,7,9,0,0,2430,2431,5,95,0,0,2431,2432,7,11, + 0,0,2432,2433,7,6,0,0,2433,2434,7,10,0,0,2434,298,1,0,0,0,2435,2436, + 7,23,0,0,2436,2437,7,11,0,0,2437,2438,7,9,0,0,2438,2439,7,9,0,0, + 2439,300,1,0,0,0,2440,2441,7,23,0,0,2441,2442,7,11,0,0,2442,2443, + 7,19,0,0,2443,2444,7,15,0,0,2444,2445,7,2,0,0,2445,2446,7,13,0,0, + 2446,302,1,0,0,0,2447,2448,7,23,0,0,2448,2449,7,11,0,0,2449,2450, + 7,6,0,0,2450,2451,7,17,0,0,2451,304,1,0,0,0,2452,2453,7,23,0,0,2453, + 2454,7,21,0,0,2454,2455,7,5,0,0,2455,2456,7,5,0,0,2456,306,1,0,0, + 0,2457,2458,7,23,0,0,2458,2459,7,21,0,0,2459,2460,7,12,0,0,2460, + 2461,7,7,0,0,2461,2462,7,8,0,0,2462,2463,7,19,0,0,2463,2464,7,6, + 0,0,2464,2465,7,12,0,0,2465,308,1,0,0,0,2466,2467,7,23,0,0,2467, + 2468,7,21,0,0,2468,2469,7,12,0,0,2469,2470,7,7,0,0,2470,2471,7,8, + 0,0,2471,2472,7,19,0,0,2472,2473,7,6,0,0,2473,2474,7,12,0,0,2474, + 2475,7,4,0,0,2475,310,1,0,0,0,2476,2477,7,23,0,0,2477,2478,7,21, + 0,0,2478,2479,7,4,0,0,2479,2480,7,19,0,0,2480,2481,7,6,0,0,2481, + 2482,7,12,0,0,2482,312,1,0,0,0,2483,2484,7,16,0,0,2484,2485,7,9, + 0,0,2485,2486,7,8,0,0,2486,314,1,0,0,0,2487,2488,7,16,0,0,2488,2489, + 7,5,0,0,2489,2490,7,6,0,0,2490,2491,7,3,0,0,2491,2492,7,2,0,0,2492, + 2493,7,5,0,0,2493,316,1,0,0,0,2494,2495,7,16,0,0,2495,2496,7,11, + 0,0,2496,2497,7,2,0,0,2497,2498,7,12,0,0,2498,2499,7,8,0,0,2499, + 318,1,0,0,0,2500,2501,7,16,0,0,2501,2502,7,11,0,0,2502,2503,7,6, + 0,0,2503,2504,7,21,0,0,2504,2505,7,24,0,0,2505,320,1,0,0,0,2506, + 2507,7,16,0,0,2507,2508,7,11,0,0,2508,2509,7,6,0,0,2509,2510,7,21, + 0,0,2510,2511,7,24,0,0,2511,2512,7,19,0,0,2512,2513,7,12,0,0,2513, + 2514,7,16,0,0,2514,322,1,0,0,0,2515,2516,7,16,0,0,2516,2517,7,11, + 0,0,2517,2518,7,6,0,0,2518,2519,7,21,0,0,2519,2520,7,24,0,0,2520, + 2521,7,4,0,0,2521,324,1,0,0,0,2522,2523,7,16,0,0,2523,2524,7,11, + 0,0,2524,2525,7,6,0,0,2525,2526,7,21,0,0,2526,2527,7,24,0,0,2527, + 2528,5,95,0,0,2528,2529,7,7,0,0,2529,2530,7,6,0,0,2530,2531,7,12, + 0,0,2531,2532,7,7,0,0,2532,2533,7,2,0,0,2533,2534,7,8,0,0,2534,326, + 1,0,0,0,2535,2536,7,22,0,0,2536,2537,7,2,0,0,2537,2538,7,20,0,0, + 2538,2539,7,19,0,0,2539,2540,7,12,0,0,2540,2541,7,16,0,0,2541,328, + 1,0,0,0,2542,2543,7,22,0,0,2543,2544,7,6,0,0,2544,2545,7,5,0,0,2545, + 2546,7,15,0,0,2546,330,1,0,0,0,2547,2548,7,22,0,0,2548,2549,7,6, + 0,0,2549,2550,7,21,0,0,2550,2551,7,11,0,0,2551,332,1,0,0,0,2552, + 2553,7,19,0,0,2553,2554,7,15,0,0,2554,2555,7,9,0,0,2555,2556,7,12, + 0,0,2556,2557,7,8,0,0,2557,2558,7,19,0,0,2558,2559,7,8,0,0,2559, + 2560,7,13,0,0,2560,334,1,0,0,0,2561,2562,7,19,0,0,2562,2563,7,23, + 0,0,2563,336,1,0,0,0,2564,2565,7,19,0,0,2565,2566,7,5,0,0,2566,2567, + 7,19,0,0,2567,2568,7,25,0,0,2568,2569,7,9,0,0,2569,338,1,0,0,0,2570, + 2571,7,19,0,0,2571,2572,7,17,0,0,2572,2573,7,24,0,0,2573,2574,7, + 6,0,0,2574,2575,7,11,0,0,2575,2576,7,8,0,0,2576,340,1,0,0,0,2577, + 2578,7,19,0,0,2578,2579,7,12,0,0,2579,342,1,0,0,0,2580,2581,7,19, + 0,0,2581,2582,7,12,0,0,2582,2583,7,7,0,0,2583,2584,7,5,0,0,2584, + 2585,7,21,0,0,2585,2586,7,15,0,0,2586,2587,7,9,0,0,2587,344,1,0, + 0,0,2588,2589,7,19,0,0,2589,2590,7,12,0,0,2590,2591,7,15,0,0,2591, + 2592,7,19,0,0,2592,2593,7,7,0,0,2593,2594,7,2,0,0,2594,2595,7,8, + 0,0,2595,2596,7,6,0,0,2596,2597,7,11,0,0,2597,346,1,0,0,0,2598,2599, + 7,19,0,0,2599,2600,7,12,0,0,2600,2601,7,19,0,0,2601,2602,7,8,0,0, + 2602,2603,7,19,0,0,2603,2604,7,2,0,0,2604,2605,7,5,0,0,2605,348, + 1,0,0,0,2606,2607,7,19,0,0,2607,2608,7,12,0,0,2608,2609,7,12,0,0, + 2609,2610,7,9,0,0,2610,2611,7,11,0,0,2611,350,1,0,0,0,2612,2613, + 7,19,0,0,2613,2614,7,12,0,0,2614,2615,7,6,0,0,2615,2616,7,21,0,0, + 2616,2617,7,8,0,0,2617,352,1,0,0,0,2618,2619,7,19,0,0,2619,2620, + 7,12,0,0,2620,2621,7,4,0,0,2621,2622,7,9,0,0,2622,2623,7,12,0,0, + 2623,2624,7,4,0,0,2624,2625,7,19,0,0,2625,2626,7,8,0,0,2626,2627, + 7,19,0,0,2627,2628,7,20,0,0,2628,2629,7,9,0,0,2629,354,1,0,0,0,2630, + 2631,7,19,0,0,2631,2632,7,12,0,0,2632,2633,7,4,0,0,2633,2634,7,9, + 0,0,2634,2635,7,11,0,0,2635,2636,7,8,0,0,2636,356,1,0,0,0,2637,2638, + 7,19,0,0,2638,2639,7,12,0,0,2639,2640,7,8,0,0,2640,358,1,0,0,0,2641, + 2642,7,19,0,0,2642,2643,7,12,0,0,2643,2644,7,8,0,0,2644,2645,7,9, + 0,0,2645,2646,7,16,0,0,2646,2647,7,9,0,0,2647,2648,7,11,0,0,2648, + 360,1,0,0,0,2649,2650,7,19,0,0,2650,2651,7,12,0,0,2651,2652,7,8, + 0,0,2652,2653,7,9,0,0,2653,2654,7,11,0,0,2654,2655,7,4,0,0,2655, + 2656,7,9,0,0,2656,2657,7,7,0,0,2657,2658,7,8,0,0,2658,362,1,0,0, + 0,2659,2660,7,19,0,0,2660,2661,7,12,0,0,2661,2662,7,8,0,0,2662,2663, + 7,9,0,0,2663,2664,7,11,0,0,2664,2665,7,4,0,0,2665,2666,7,9,0,0,2666, + 2667,7,7,0,0,2667,2668,7,8,0,0,2668,2669,7,19,0,0,2669,2670,7,6, + 0,0,2670,2671,7,12,0,0,2671,364,1,0,0,0,2672,2673,7,19,0,0,2673, + 2674,7,12,0,0,2674,2675,7,8,0,0,2675,2676,7,9,0,0,2676,2677,7,11, + 0,0,2677,2678,7,20,0,0,2678,2679,7,2,0,0,2679,2680,7,5,0,0,2680, + 366,1,0,0,0,2681,2682,7,19,0,0,2682,2683,7,12,0,0,2683,2684,7,8, + 0,0,2684,2685,7,6,0,0,2685,368,1,0,0,0,2686,2687,7,19,0,0,2687,2688, + 7,4,0,0,2688,370,1,0,0,0,2689,2690,7,27,0,0,2690,2691,7,6,0,0,2691, + 2692,7,19,0,0,2692,2693,7,12,0,0,2693,372,1,0,0,0,2694,2695,7,27, + 0,0,2695,2696,7,4,0,0,2696,2697,7,6,0,0,2697,2698,7,12,0,0,2698, + 374,1,0,0,0,2699,2700,7,27,0,0,2700,2701,7,4,0,0,2701,2702,7,6,0, + 0,2702,2703,7,12,0,0,2703,2704,5,95,0,0,2704,2705,7,2,0,0,2705,2706, + 7,11,0,0,2706,2707,7,11,0,0,2707,2708,7,2,0,0,2708,2709,7,13,0,0, 2709,376,1,0,0,0,2710,2711,7,27,0,0,2711,2712,7,4,0,0,2712,2713, - 7,6,0,0,2713,2714,7,12,0,0,2714,2715,5,95,0,0,2715,2716,7,9,0,0, - 2716,2717,7,18,0,0,2717,2718,7,9,0,0,2718,2719,7,7,0,0,2719,2720, - 7,21,0,0,2720,2721,7,8,0,0,2721,2722,7,19,0,0,2722,2723,7,6,0,0, - 2723,2724,7,12,0,0,2724,2725,5,95,0,0,2725,2726,7,24,0,0,2726,2727, - 7,5,0,0,2727,2728,7,2,0,0,2728,2729,7,12,0,0,2729,378,1,0,0,0,2730, - 2731,7,27,0,0,2731,2732,7,4,0,0,2732,2733,7,6,0,0,2733,2734,7,12, - 0,0,2734,2735,5,95,0,0,2735,2736,7,9,0,0,2736,2737,7,18,0,0,2737, - 2738,7,19,0,0,2738,2739,7,4,0,0,2739,2740,7,8,0,0,2740,2741,7,4, - 0,0,2741,380,1,0,0,0,2742,2743,7,27,0,0,2743,2744,7,4,0,0,2744,2745, - 7,6,0,0,2745,2746,7,12,0,0,2746,2747,5,95,0,0,2747,2748,7,6,0,0, - 2748,2749,7,3,0,0,2749,2750,7,27,0,0,2750,2751,7,9,0,0,2751,2752, - 7,7,0,0,2752,2753,7,8,0,0,2753,382,1,0,0,0,2754,2755,7,27,0,0,2755, - 2756,7,4,0,0,2756,2757,7,6,0,0,2757,2758,7,12,0,0,2758,2759,5,95, - 0,0,2759,2760,7,6,0,0,2760,2761,7,3,0,0,2761,2762,7,27,0,0,2762, - 2763,7,9,0,0,2763,2764,7,7,0,0,2764,2765,7,8,0,0,2765,2766,7,2,0, - 0,2766,2767,7,16,0,0,2767,2768,7,16,0,0,2768,384,1,0,0,0,2769,2770, - 7,27,0,0,2770,2771,7,4,0,0,2771,2772,7,6,0,0,2772,2773,7,12,0,0, - 2773,2774,5,95,0,0,2774,2775,7,26,0,0,2775,2776,7,21,0,0,2776,2777, - 7,9,0,0,2777,2778,7,11,0,0,2778,2779,7,13,0,0,2779,386,1,0,0,0,2780, - 2781,7,27,0,0,2781,2782,7,4,0,0,2782,2783,7,6,0,0,2783,2784,7,12, - 0,0,2784,2785,5,95,0,0,2785,2786,7,20,0,0,2786,2787,7,2,0,0,2787, - 2788,7,5,0,0,2788,2789,7,21,0,0,2789,2790,7,9,0,0,2790,388,1,0,0, - 0,2791,2792,7,5,0,0,2792,2793,7,2,0,0,2793,2794,7,16,0,0,2794,390, - 1,0,0,0,2795,2796,7,5,0,0,2796,2797,7,2,0,0,2797,2798,7,12,0,0,2798, - 2799,7,16,0,0,2799,2800,7,21,0,0,2800,2801,7,2,0,0,2801,2802,7,16, - 0,0,2802,2803,7,9,0,0,2803,392,1,0,0,0,2804,2805,7,5,0,0,2805,2806, - 7,2,0,0,2806,2807,7,11,0,0,2807,2808,7,16,0,0,2808,2809,7,9,0,0, - 2809,394,1,0,0,0,2810,2811,7,5,0,0,2811,2812,7,2,0,0,2812,2813,7, - 4,0,0,2813,2814,7,8,0,0,2814,2815,5,95,0,0,2815,2816,7,20,0,0,2816, - 2817,7,2,0,0,2817,2818,7,5,0,0,2818,2819,7,21,0,0,2819,2820,7,9, - 0,0,2820,396,1,0,0,0,2821,2822,7,5,0,0,2822,2823,7,2,0,0,2823,2824, - 7,8,0,0,2824,2825,7,9,0,0,2825,2826,7,11,0,0,2826,2827,7,2,0,0,2827, - 2828,7,5,0,0,2828,398,1,0,0,0,2829,2830,7,5,0,0,2830,2831,7,9,0, - 0,2831,2832,7,2,0,0,2832,2833,7,15,0,0,2833,400,1,0,0,0,2834,2835, - 7,5,0,0,2835,2836,7,9,0,0,2836,2837,7,2,0,0,2837,2838,7,15,0,0,2838, - 2839,7,19,0,0,2839,2840,7,12,0,0,2840,2841,7,16,0,0,2841,402,1,0, - 0,0,2842,2843,7,5,0,0,2843,2844,7,9,0,0,2844,2845,7,23,0,0,2845, - 2846,7,8,0,0,2846,404,1,0,0,0,2847,2848,7,5,0,0,2848,2849,7,19,0, - 0,2849,2850,7,25,0,0,2850,2851,7,9,0,0,2851,406,1,0,0,0,2852,2853, - 7,5,0,0,2853,2854,7,19,0,0,2854,2855,7,25,0,0,2855,2856,7,9,0,0, - 2856,2857,5,95,0,0,2857,2858,7,11,0,0,2858,2859,7,9,0,0,2859,2860, - 7,16,0,0,2860,2861,7,9,0,0,2861,2862,7,18,0,0,2862,408,1,0,0,0,2863, - 2864,7,5,0,0,2864,2865,7,19,0,0,2865,2866,7,17,0,0,2866,2867,7,19, - 0,0,2867,2868,7,8,0,0,2868,410,1,0,0,0,2869,2870,7,5,0,0,2870,2871, - 7,12,0,0,2871,412,1,0,0,0,2872,2873,7,5,0,0,2873,2874,7,6,0,0,2874, - 2875,7,7,0,0,2875,2876,7,2,0,0,2876,2877,7,5,0,0,2877,414,1,0,0, - 0,2878,2879,7,5,0,0,2879,2880,7,6,0,0,2880,2881,7,7,0,0,2881,2882, - 7,2,0,0,2882,2883,7,5,0,0,2883,2884,7,8,0,0,2884,2885,7,19,0,0,2885, - 2886,7,17,0,0,2886,2887,7,9,0,0,2887,416,1,0,0,0,2888,2889,7,5,0, - 0,2889,2890,7,6,0,0,2890,2891,7,7,0,0,2891,2892,7,2,0,0,2892,2893, - 7,5,0,0,2893,2894,7,8,0,0,2894,2895,7,19,0,0,2895,2896,7,17,0,0, - 2896,2897,7,9,0,0,2897,2898,7,4,0,0,2898,2899,7,8,0,0,2899,2900, - 7,2,0,0,2900,2901,7,17,0,0,2901,2902,7,24,0,0,2902,418,1,0,0,0,2903, - 2904,7,5,0,0,2904,2905,7,6,0,0,2905,2906,7,10,0,0,2906,2907,7,9, - 0,0,2907,2908,7,11,0,0,2908,420,1,0,0,0,2909,2910,7,17,0,0,2910, - 2911,7,2,0,0,2911,2912,7,8,0,0,2912,2913,7,7,0,0,2913,2914,7,22, - 0,0,2914,422,1,0,0,0,2915,2916,7,17,0,0,2916,2917,7,2,0,0,2917,2918, - 7,8,0,0,2918,2919,7,7,0,0,2919,2920,7,22,0,0,2920,2921,7,9,0,0,2921, - 2922,7,4,0,0,2922,424,1,0,0,0,2923,2924,7,17,0,0,2924,2925,7,2,0, - 0,2925,2926,7,8,0,0,2926,2927,7,7,0,0,2927,2928,7,22,0,0,2928,2929, - 5,95,0,0,2929,2930,7,12,0,0,2930,2931,7,21,0,0,2931,2932,7,17,0, - 0,2932,2933,7,3,0,0,2933,2934,7,9,0,0,2934,2935,7,11,0,0,2935,426, - 1,0,0,0,2936,2937,7,17,0,0,2937,2938,7,2,0,0,2938,2939,7,8,0,0,2939, - 2940,7,7,0,0,2940,2941,7,22,0,0,2941,2942,5,95,0,0,2942,2943,7,11, - 0,0,2943,2944,7,9,0,0,2944,2945,7,7,0,0,2945,2946,7,6,0,0,2946,2947, - 7,16,0,0,2947,2948,7,12,0,0,2948,2949,7,19,0,0,2949,2950,7,14,0, - 0,2950,2951,7,9,0,0,2951,428,1,0,0,0,2952,2953,7,17,0,0,2953,2954, - 7,2,0,0,2954,2955,7,18,0,0,2955,430,1,0,0,0,2956,2957,7,17,0,0,2957, - 2958,7,9,0,0,2958,2959,7,2,0,0,2959,2960,7,4,0,0,2960,2961,7,21, - 0,0,2961,2962,7,11,0,0,2962,2963,7,9,0,0,2963,2964,7,4,0,0,2964, - 432,1,0,0,0,2965,2966,7,17,0,0,2966,2967,7,9,0,0,2967,2968,7,17, - 0,0,2968,2969,7,3,0,0,2969,2970,7,9,0,0,2970,2971,7,11,0,0,2971, - 434,1,0,0,0,2972,2973,7,17,0,0,2973,2974,7,9,0,0,2974,2975,7,11, - 0,0,2975,2976,7,16,0,0,2976,2977,7,9,0,0,2977,436,1,0,0,0,2978,2979, - 7,17,0,0,2979,2980,7,9,0,0,2980,2981,7,8,0,0,2981,2982,7,2,0,0,2982, - 2983,7,15,0,0,2983,2984,7,2,0,0,2984,2985,7,8,0,0,2985,2986,7,2, - 0,0,2986,438,1,0,0,0,2987,2988,7,17,0,0,2988,2989,7,9,0,0,2989,2990, - 7,8,0,0,2990,2991,7,22,0,0,2991,2992,7,6,0,0,2992,2993,7,15,0,0, - 2993,440,1,0,0,0,2994,2995,7,17,0,0,2995,2996,7,19,0,0,2996,2997, - 7,12,0,0,2997,442,1,0,0,0,2998,2999,7,17,0,0,2999,3000,7,19,0,0, - 3000,3001,7,12,0,0,3001,3002,7,21,0,0,3002,3003,7,4,0,0,3003,444, - 1,0,0,0,3004,3005,7,17,0,0,3005,3006,7,19,0,0,3006,3007,7,12,0,0, - 3007,3008,7,21,0,0,3008,3009,7,8,0,0,3009,3010,7,9,0,0,3010,446, - 1,0,0,0,3011,3012,7,17,0,0,3012,3013,7,6,0,0,3013,3014,7,15,0,0, - 3014,448,1,0,0,0,3015,3016,7,17,0,0,3016,3017,7,6,0,0,3017,3018, - 7,15,0,0,3018,3019,7,19,0,0,3019,3020,7,23,0,0,3020,3021,7,19,0, - 0,3021,3022,7,9,0,0,3022,3023,7,4,0,0,3023,450,1,0,0,0,3024,3025, - 7,17,0,0,3025,3026,7,6,0,0,3026,3027,7,15,0,0,3027,3028,7,19,0,0, - 3028,3029,7,23,0,0,3029,3030,7,13,0,0,3030,452,1,0,0,0,3031,3032, - 7,17,0,0,3032,3033,7,6,0,0,3033,3034,7,15,0,0,3034,3035,7,21,0,0, - 3035,3036,7,5,0,0,3036,3037,7,9,0,0,3037,454,1,0,0,0,3038,3039,7, - 17,0,0,3039,3040,7,6,0,0,3040,3041,7,15,0,0,3041,3042,7,21,0,0,3042, - 3043,7,5,0,0,3043,3044,7,9,0,0,3044,3045,7,4,0,0,3045,456,1,0,0, - 0,3046,3047,7,17,0,0,3047,3048,7,6,0,0,3048,3049,7,12,0,0,3049,3050, - 7,15,0,0,3050,3051,7,2,0,0,3051,3052,7,13,0,0,3052,458,1,0,0,0,3053, - 3054,7,17,0,0,3054,3055,7,6,0,0,3055,3056,7,12,0,0,3056,3057,7,8, - 0,0,3057,3058,7,22,0,0,3058,460,1,0,0,0,3059,3060,7,17,0,0,3060, - 3061,7,6,0,0,3061,3062,7,11,0,0,3062,3063,7,9,0,0,3063,462,1,0,0, - 0,3064,3065,7,17,0,0,3065,3066,7,21,0,0,3066,3067,7,5,0,0,3067,3068, - 7,8,0,0,3068,3069,7,19,0,0,3069,3070,7,4,0,0,3070,3071,7,9,0,0,3071, - 3072,7,8,0,0,3072,464,1,0,0,0,3073,3074,7,12,0,0,3074,3075,7,2,0, - 0,3075,3076,7,8,0,0,3076,3077,7,19,0,0,3077,3078,7,6,0,0,3078,3079, - 7,12,0,0,3079,3080,7,2,0,0,3080,3081,7,5,0,0,3081,466,1,0,0,0,3082, - 3083,7,12,0,0,3083,3084,7,2,0,0,3084,3085,7,8,0,0,3085,3086,7,21, - 0,0,3086,3087,7,11,0,0,3087,3088,7,2,0,0,3088,3089,7,5,0,0,3089, - 468,1,0,0,0,3090,3091,7,12,0,0,3091,3092,7,7,0,0,3092,3093,7,22, - 0,0,3093,3094,7,2,0,0,3094,3095,7,11,0,0,3095,470,1,0,0,0,3096,3097, - 7,12,0,0,3097,3098,7,7,0,0,3098,3099,7,5,0,0,3099,3100,7,6,0,0,3100, - 3101,7,3,0,0,3101,472,1,0,0,0,3102,3103,7,12,0,0,3103,3104,7,9,0, - 0,3104,3105,7,10,0,0,3105,474,1,0,0,0,3106,3107,7,12,0,0,3107,3108, - 7,9,0,0,3108,3109,7,18,0,0,3109,3110,7,8,0,0,3110,476,1,0,0,0,3111, - 3112,7,12,0,0,3112,3113,7,6,0,0,3113,478,1,0,0,0,3114,3115,7,12, - 0,0,3115,3116,7,6,0,0,3116,3117,7,12,0,0,3117,3118,7,9,0,0,3118, - 480,1,0,0,0,3119,3120,7,12,0,0,3120,3121,7,6,0,0,3121,3122,7,11, - 0,0,3122,3123,7,17,0,0,3123,3124,7,2,0,0,3124,3125,7,5,0,0,3125, - 3126,7,19,0,0,3126,3127,7,14,0,0,3127,3128,7,9,0,0,3128,482,1,0, - 0,0,3129,3130,7,12,0,0,3130,3131,7,6,0,0,3131,3132,7,8,0,0,3132, - 484,1,0,0,0,3133,3134,7,12,0,0,3134,3135,7,8,0,0,3135,3136,7,22, - 0,0,3136,3137,5,95,0,0,3137,3138,7,20,0,0,3138,3139,7,2,0,0,3139, - 3140,7,5,0,0,3140,3141,7,21,0,0,3141,3142,7,9,0,0,3142,486,1,0,0, - 0,3143,3144,7,12,0,0,3144,3145,7,8,0,0,3145,3146,7,19,0,0,3146,3147, - 7,5,0,0,3147,3148,7,9,0,0,3148,488,1,0,0,0,3149,3150,7,12,0,0,3150, - 3151,7,21,0,0,3151,3152,7,5,0,0,3152,3153,7,5,0,0,3153,490,1,0,0, - 0,3154,3155,7,12,0,0,3155,3156,7,21,0,0,3156,3157,7,5,0,0,3157,3158, - 7,5,0,0,3158,3159,7,19,0,0,3159,3160,7,23,0,0,3160,492,1,0,0,0,3161, - 3162,7,12,0,0,3162,3163,7,21,0,0,3163,3164,7,17,0,0,3164,3165,7, - 9,0,0,3165,3166,7,11,0,0,3166,3167,7,19,0,0,3167,3168,7,7,0,0,3168, - 494,1,0,0,0,3169,3170,7,6,0,0,3170,3171,7,7,0,0,3171,3172,7,7,0, - 0,3172,3173,7,21,0,0,3173,3174,7,11,0,0,3174,3175,7,11,0,0,3175, - 3176,7,9,0,0,3176,3177,7,12,0,0,3177,3178,7,7,0,0,3178,3179,7,9, - 0,0,3179,3180,7,4,0,0,3180,3181,5,95,0,0,3181,3182,7,11,0,0,3182, - 3183,7,9,0,0,3183,3184,7,16,0,0,3184,3185,7,9,0,0,3185,3186,7,18, - 0,0,3186,496,1,0,0,0,3187,3188,7,6,0,0,3188,3189,7,7,0,0,3189,3190, - 7,8,0,0,3190,3191,7,9,0,0,3191,3192,7,8,0,0,3192,3193,5,95,0,0,3193, - 3194,7,5,0,0,3194,3195,7,9,0,0,3195,3196,7,12,0,0,3196,3197,7,16, - 0,0,3197,3198,7,8,0,0,3198,3199,7,22,0,0,3199,498,1,0,0,0,3200,3201, - 7,6,0,0,3201,3202,7,23,0,0,3202,500,1,0,0,0,3203,3204,7,6,0,0,3204, - 3205,7,23,0,0,3205,3206,7,23,0,0,3206,3207,7,4,0,0,3207,3208,7,9, - 0,0,3208,3209,7,8,0,0,3209,502,1,0,0,0,3210,3211,7,6,0,0,3211,3212, - 7,5,0,0,3212,3213,7,15,0,0,3213,504,1,0,0,0,3214,3215,7,6,0,0,3215, - 3216,7,17,0,0,3216,3217,7,19,0,0,3217,3218,7,8,0,0,3218,506,1,0, - 0,0,3219,3220,7,6,0,0,3220,3221,7,12,0,0,3221,508,1,0,0,0,3222,3223, - 7,6,0,0,3223,3224,7,12,0,0,3224,3225,7,9,0,0,3225,510,1,0,0,0,3226, - 3227,7,6,0,0,3227,3228,7,12,0,0,3228,3229,7,5,0,0,3229,3230,7,13, - 0,0,3230,512,1,0,0,0,3231,3232,7,6,0,0,3232,3233,7,24,0,0,3233,3234, - 7,9,0,0,3234,3235,7,12,0,0,3235,514,1,0,0,0,3236,3237,7,6,0,0,3237, - 3238,7,11,0,0,3238,516,1,0,0,0,3239,3240,7,6,0,0,3240,3241,7,11, - 0,0,3241,3242,7,15,0,0,3242,3243,7,9,0,0,3243,3244,7,11,0,0,3244, - 518,1,0,0,0,3245,3246,7,6,0,0,3246,3247,7,11,0,0,3247,3248,7,15, - 0,0,3248,3249,7,19,0,0,3249,3250,7,12,0,0,3250,3251,7,2,0,0,3251, - 3252,7,5,0,0,3252,520,1,0,0,0,3253,3254,7,6,0,0,3254,3255,7,21,0, - 0,3255,3256,7,8,0,0,3256,522,1,0,0,0,3257,3258,7,6,0,0,3258,3259, - 7,21,0,0,3259,3260,7,8,0,0,3260,3261,7,9,0,0,3261,3262,7,11,0,0, - 3262,524,1,0,0,0,3263,3264,7,6,0,0,3264,3265,7,20,0,0,3265,3266, - 7,9,0,0,3266,3267,7,11,0,0,3267,526,1,0,0,0,3268,3269,7,6,0,0,3269, - 3270,7,20,0,0,3270,3271,7,9,0,0,3271,3272,7,11,0,0,3272,3273,7,5, - 0,0,3273,3274,7,2,0,0,3274,3275,7,24,0,0,3275,3276,7,4,0,0,3276, - 528,1,0,0,0,3277,3278,7,6,0,0,3278,3279,7,20,0,0,3279,3280,7,9,0, - 0,3280,3281,7,11,0,0,3281,3282,7,5,0,0,3282,3283,7,2,0,0,3283,3284, - 7,13,0,0,3284,530,1,0,0,0,3285,3286,7,6,0,0,3286,3287,7,20,0,0,3287, - 3288,7,9,0,0,3288,3289,7,11,0,0,3289,3290,7,10,0,0,3290,3291,7,11, - 0,0,3291,3292,7,19,0,0,3292,3293,7,8,0,0,3293,3294,7,9,0,0,3294, - 532,1,0,0,0,3295,3296,7,6,0,0,3296,3297,7,20,0,0,3297,3298,7,9,0, - 0,3298,3299,7,11,0,0,3299,3300,7,10,0,0,3300,3301,7,11,0,0,3301, - 3302,7,19,0,0,3302,3303,7,8,0,0,3303,3304,7,19,0,0,3304,3305,7,12, - 0,0,3305,3306,7,16,0,0,3306,534,1,0,0,0,3307,3308,7,24,0,0,3308, - 3309,7,2,0,0,3309,3310,7,11,0,0,3310,3311,7,2,0,0,3311,3312,7,17, - 0,0,3312,3313,7,9,0,0,3313,3314,7,8,0,0,3314,3315,7,9,0,0,3315,3316, - 7,11,0,0,3316,536,1,0,0,0,3317,3318,7,24,0,0,3318,3319,7,2,0,0,3319, - 3320,7,11,0,0,3320,3321,7,8,0,0,3321,3322,7,19,0,0,3322,3323,7,8, - 0,0,3323,3324,7,19,0,0,3324,3325,7,6,0,0,3325,3326,7,12,0,0,3326, - 538,1,0,0,0,3327,3328,7,24,0,0,3328,3329,7,2,0,0,3329,3330,7,11, - 0,0,3330,3331,7,8,0,0,3331,3332,7,19,0,0,3332,3333,7,8,0,0,3333, - 3334,7,19,0,0,3334,3335,7,6,0,0,3335,3336,7,12,0,0,3336,3337,7,9, - 0,0,3337,3338,7,15,0,0,3338,540,1,0,0,0,3339,3340,7,24,0,0,3340, - 3341,7,2,0,0,3341,3342,7,11,0,0,3342,3343,7,8,0,0,3343,3344,7,19, - 0,0,3344,3345,7,8,0,0,3345,3346,7,19,0,0,3346,3347,7,6,0,0,3347, - 3348,7,12,0,0,3348,3349,7,4,0,0,3349,542,1,0,0,0,3350,3351,7,24, - 0,0,3351,3352,7,2,0,0,3352,3353,7,8,0,0,3353,3354,7,8,0,0,3354,3355, - 7,9,0,0,3355,3356,7,11,0,0,3356,3357,7,12,0,0,3357,544,1,0,0,0,3358, - 3359,7,24,0,0,3359,3360,7,9,0,0,3360,3361,7,11,0,0,3361,546,1,0, - 0,0,3362,3363,7,24,0,0,3363,3364,7,9,0,0,3364,3365,7,11,0,0,3365, - 3366,7,7,0,0,3366,3367,7,9,0,0,3367,3368,7,12,0,0,3368,3369,7,8, - 0,0,3369,548,1,0,0,0,3370,3371,7,24,0,0,3371,3372,7,9,0,0,3372,3373, - 7,11,0,0,3373,3374,7,7,0,0,3374,3375,7,9,0,0,3375,3376,7,12,0,0, - 3376,3377,7,8,0,0,3377,3378,7,19,0,0,3378,3379,7,5,0,0,3379,3380, - 7,9,0,0,3380,3381,5,95,0,0,3381,3382,7,7,0,0,3382,3383,7,6,0,0,3383, - 3384,7,12,0,0,3384,3385,7,8,0,0,3385,550,1,0,0,0,3386,3387,7,24, - 0,0,3387,3388,7,9,0,0,3388,3389,7,11,0,0,3389,3390,7,7,0,0,3390, - 3391,7,9,0,0,3391,3392,7,12,0,0,3392,3393,7,8,0,0,3393,3394,7,19, - 0,0,3394,3395,7,5,0,0,3395,3396,7,9,0,0,3396,3397,5,95,0,0,3397, - 3398,7,15,0,0,3398,3399,7,19,0,0,3399,3400,7,4,0,0,3400,3401,7,7, - 0,0,3401,552,1,0,0,0,3402,3403,7,24,0,0,3403,3404,7,9,0,0,3404,3405, - 7,11,0,0,3405,3406,7,7,0,0,3406,3407,7,9,0,0,3407,3408,7,12,0,0, - 3408,3409,7,8,0,0,3409,3410,5,95,0,0,3410,3411,7,11,0,0,3411,3412, - 7,2,0,0,3412,3413,7,12,0,0,3413,3414,7,25,0,0,3414,554,1,0,0,0,3415, - 3416,7,24,0,0,3416,3417,7,9,0,0,3417,3418,7,11,0,0,3418,3419,7,19, - 0,0,3419,3420,7,6,0,0,3420,3421,7,15,0,0,3421,556,1,0,0,0,3422,3423, - 7,24,0,0,3423,3424,7,9,0,0,3424,3425,7,11,0,0,3425,3426,7,17,0,0, - 3426,3427,7,21,0,0,3427,3428,7,8,0,0,3428,3429,7,9,0,0,3429,558, - 1,0,0,0,3430,3431,7,24,0,0,3431,3432,7,19,0,0,3432,3433,7,20,0,0, - 3433,3434,7,6,0,0,3434,3435,7,8,0,0,3435,560,1,0,0,0,3436,3437,7, - 24,0,0,3437,3438,7,6,0,0,3438,3439,7,11,0,0,3439,3440,7,8,0,0,3440, - 3441,7,19,0,0,3441,3442,7,6,0,0,3442,3443,7,12,0,0,3443,562,1,0, - 0,0,3444,3445,7,24,0,0,3445,3446,7,6,0,0,3446,3447,7,4,0,0,3447, - 3448,7,19,0,0,3448,3449,7,8,0,0,3449,3450,7,19,0,0,3450,3451,7,6, - 0,0,3451,3452,7,12,0,0,3452,564,1,0,0,0,3453,3454,7,24,0,0,3454, - 3455,7,6,0,0,3455,3456,7,4,0,0,3456,3457,7,19,0,0,3457,3458,7,8, - 0,0,3458,3459,7,19,0,0,3459,3460,7,6,0,0,3460,3461,7,12,0,0,3461, - 3462,5,95,0,0,3462,3463,7,11,0,0,3463,3464,7,9,0,0,3464,3465,7,16, - 0,0,3465,3466,7,9,0,0,3466,3467,7,18,0,0,3467,566,1,0,0,0,3468,3469, - 7,24,0,0,3469,3470,7,6,0,0,3470,3471,7,10,0,0,3471,3472,7,9,0,0, - 3472,3473,7,11,0,0,3473,568,1,0,0,0,3474,3475,7,24,0,0,3475,3476, - 7,11,0,0,3476,3477,7,9,0,0,3477,3478,7,7,0,0,3478,3479,7,9,0,0,3479, - 3480,7,15,0,0,3480,3481,7,9,0,0,3481,3482,7,4,0,0,3482,570,1,0,0, - 0,3483,3484,7,24,0,0,3484,3485,7,11,0,0,3485,3486,7,9,0,0,3486,3487, - 7,7,0,0,3487,3488,7,19,0,0,3488,3489,7,4,0,0,3489,3490,7,19,0,0, - 3490,3491,7,6,0,0,3491,3492,7,12,0,0,3492,572,1,0,0,0,3493,3494, - 7,24,0,0,3494,3495,7,11,0,0,3495,3496,7,9,0,0,3496,3497,7,24,0,0, - 3497,3498,7,2,0,0,3498,3499,7,11,0,0,3499,3500,7,9,0,0,3500,574, - 1,0,0,0,3501,3502,7,24,0,0,3502,3503,7,11,0,0,3503,3504,7,9,0,0, - 3504,3505,7,20,0,0,3505,576,1,0,0,0,3506,3507,7,24,0,0,3507,3508, - 7,11,0,0,3508,3509,7,19,0,0,3509,3510,7,17,0,0,3510,3511,7,2,0,0, - 3511,3512,7,11,0,0,3512,3513,7,13,0,0,3513,578,1,0,0,0,3514,3515, - 7,24,0,0,3515,3516,7,11,0,0,3516,3517,7,6,0,0,3517,3518,7,7,0,0, - 3518,3519,7,9,0,0,3519,3520,7,15,0,0,3520,3521,7,21,0,0,3521,3522, - 7,11,0,0,3522,3523,7,9,0,0,3523,580,1,0,0,0,3524,3525,7,26,0,0,3525, - 3526,7,21,0,0,3526,3527,7,2,0,0,3527,3528,7,5,0,0,3528,3529,7,19, - 0,0,3529,3530,7,23,0,0,3530,3531,7,13,0,0,3531,582,1,0,0,0,3532, - 3533,7,26,0,0,3533,3534,7,21,0,0,3534,3535,7,2,0,0,3535,3536,7,11, - 0,0,3536,3537,7,8,0,0,3537,3538,7,9,0,0,3538,3539,7,11,0,0,3539, - 3540,7,4,0,0,3540,584,1,0,0,0,3541,3542,7,11,0,0,3542,3543,7,2,0, - 0,3543,3544,7,12,0,0,3544,3545,7,16,0,0,3545,3546,7,9,0,0,3546,586, - 1,0,0,0,3547,3548,7,11,0,0,3548,3549,7,2,0,0,3549,3550,7,12,0,0, - 3550,3551,7,25,0,0,3551,588,1,0,0,0,3552,3553,7,11,0,0,3553,3554, - 7,2,0,0,3554,3555,7,10,0,0,3555,590,1,0,0,0,3556,3557,7,11,0,0,3557, - 3558,7,9,0,0,3558,3559,7,2,0,0,3559,3560,7,15,0,0,3560,3561,7,4, - 0,0,3561,592,1,0,0,0,3562,3563,7,11,0,0,3563,3564,7,9,0,0,3564,3565, - 7,2,0,0,3565,3566,7,5,0,0,3566,594,1,0,0,0,3567,3568,7,11,0,0,3568, - 3569,7,9,0,0,3569,3570,7,7,0,0,3570,3571,7,21,0,0,3571,3572,7,11, - 0,0,3572,3573,7,4,0,0,3573,3574,7,19,0,0,3574,3575,7,20,0,0,3575, - 3576,7,9,0,0,3576,596,1,0,0,0,3577,3578,7,11,0,0,3578,3579,7,9,0, - 0,3579,3580,7,23,0,0,3580,598,1,0,0,0,3581,3582,7,11,0,0,3582,3583, - 7,9,0,0,3583,3584,7,23,0,0,3584,3585,7,9,0,0,3585,3586,7,11,0,0, - 3586,3587,7,9,0,0,3587,3588,7,12,0,0,3588,3589,7,7,0,0,3589,3590, - 7,9,0,0,3590,3591,7,4,0,0,3591,600,1,0,0,0,3592,3593,7,11,0,0,3593, - 3594,7,9,0,0,3594,3595,7,23,0,0,3595,3596,7,9,0,0,3596,3597,7,11, - 0,0,3597,3598,7,9,0,0,3598,3599,7,12,0,0,3599,3600,7,7,0,0,3600, - 3601,7,19,0,0,3601,3602,7,12,0,0,3602,3603,7,16,0,0,3603,602,1,0, - 0,0,3604,3605,7,11,0,0,3605,3606,7,9,0,0,3606,3607,7,16,0,0,3607, - 3608,7,11,0,0,3608,3609,5,95,0,0,3609,3610,7,2,0,0,3610,3611,7,20, - 0,0,3611,3612,7,16,0,0,3612,3613,7,18,0,0,3613,604,1,0,0,0,3614, - 3615,7,11,0,0,3615,3616,7,9,0,0,3616,3617,7,16,0,0,3617,3618,7,11, - 0,0,3618,3619,5,95,0,0,3619,3620,7,2,0,0,3620,3621,7,20,0,0,3621, - 3622,7,16,0,0,3622,3623,7,13,0,0,3623,606,1,0,0,0,3624,3625,7,11, - 0,0,3625,3626,7,9,0,0,3626,3627,7,16,0,0,3627,3628,7,11,0,0,3628, - 3629,5,95,0,0,3629,3630,7,7,0,0,3630,3631,7,6,0,0,3631,3632,7,21, - 0,0,3632,3633,7,12,0,0,3633,3634,7,8,0,0,3634,608,1,0,0,0,3635,3636, - 7,11,0,0,3636,3637,7,9,0,0,3637,3638,7,16,0,0,3638,3639,7,11,0,0, - 3639,3640,5,95,0,0,3640,3641,7,19,0,0,3641,3642,7,12,0,0,3642,3643, - 7,8,0,0,3643,3644,7,9,0,0,3644,3645,7,11,0,0,3645,3646,7,7,0,0,3646, - 3647,7,9,0,0,3647,3648,7,24,0,0,3648,3649,7,8,0,0,3649,610,1,0,0, - 0,3650,3651,7,11,0,0,3651,3652,7,9,0,0,3652,3653,7,16,0,0,3653,3654, - 7,11,0,0,3654,3655,5,95,0,0,3655,3656,7,11,0,0,3656,3657,5,50,0, - 0,3657,612,1,0,0,0,3658,3659,7,11,0,0,3659,3660,7,9,0,0,3660,3661, - 7,16,0,0,3661,3662,7,11,0,0,3662,3663,5,95,0,0,3663,3664,7,4,0,0, - 3664,3665,7,5,0,0,3665,3666,7,6,0,0,3666,3667,7,24,0,0,3667,3668, - 7,9,0,0,3668,614,1,0,0,0,3669,3670,7,11,0,0,3670,3671,7,9,0,0,3671, - 3672,7,16,0,0,3672,3673,7,11,0,0,3673,3674,5,95,0,0,3674,3675,7, - 4,0,0,3675,3676,7,18,0,0,3676,3677,7,18,0,0,3677,616,1,0,0,0,3678, - 3679,7,11,0,0,3679,3680,7,9,0,0,3680,3681,7,16,0,0,3681,3682,7,11, - 0,0,3682,3683,5,95,0,0,3683,3684,7,4,0,0,3684,3685,7,18,0,0,3685, - 3686,7,13,0,0,3686,618,1,0,0,0,3687,3688,7,11,0,0,3688,3689,7,9, - 0,0,3689,3690,7,16,0,0,3690,3691,7,11,0,0,3691,3692,5,95,0,0,3692, - 3693,7,4,0,0,3693,3694,7,13,0,0,3694,3695,7,13,0,0,3695,620,1,0, - 0,0,3696,3697,7,11,0,0,3697,3698,7,9,0,0,3698,3699,7,5,0,0,3699, - 3700,7,9,0,0,3700,3701,7,2,0,0,3701,3702,7,4,0,0,3702,3703,7,9,0, - 0,3703,622,1,0,0,0,3704,3705,7,11,0,0,3705,3706,7,9,0,0,3706,3707, - 7,12,0,0,3707,3708,7,2,0,0,3708,3709,7,17,0,0,3709,3710,7,9,0,0, - 3710,624,1,0,0,0,3711,3712,7,11,0,0,3712,3713,7,9,0,0,3713,3714, - 7,4,0,0,3714,3715,7,9,0,0,3715,3716,7,8,0,0,3716,626,1,0,0,0,3717, - 3718,7,11,0,0,3718,3719,7,9,0,0,3719,3720,7,4,0,0,3720,3721,7,21, - 0,0,3721,3722,7,5,0,0,3722,3723,7,8,0,0,3723,628,1,0,0,0,3724,3725, - 7,11,0,0,3725,3726,7,9,0,0,3726,3727,7,8,0,0,3727,3728,7,21,0,0, - 3728,3729,7,11,0,0,3729,3730,7,12,0,0,3730,630,1,0,0,0,3731,3732, - 7,11,0,0,3732,3733,7,9,0,0,3733,3734,7,8,0,0,3734,3735,7,21,0,0, - 3735,3736,7,11,0,0,3736,3737,7,12,0,0,3737,3738,7,4,0,0,3738,632, - 1,0,0,0,3739,3740,7,11,0,0,3740,3741,7,9,0,0,3741,3742,7,20,0,0, - 3742,3743,7,6,0,0,3743,3744,7,25,0,0,3744,3745,7,9,0,0,3745,634, - 1,0,0,0,3746,3747,7,11,0,0,3747,3748,7,19,0,0,3748,3749,7,16,0,0, - 3749,3750,7,22,0,0,3750,3751,7,8,0,0,3751,636,1,0,0,0,3752,3753, - 7,11,0,0,3753,3754,7,5,0,0,3754,3755,7,19,0,0,3755,3756,7,25,0,0, - 3756,3757,7,9,0,0,3757,638,1,0,0,0,3758,3759,7,11,0,0,3759,3760, - 7,6,0,0,3760,3761,7,5,0,0,3761,3762,7,5,0,0,3762,3763,7,3,0,0,3763, - 3764,7,2,0,0,3764,3765,7,7,0,0,3765,3766,7,25,0,0,3766,640,1,0,0, - 0,3767,3768,7,11,0,0,3768,3769,7,6,0,0,3769,3770,7,5,0,0,3770,3771, - 7,5,0,0,3771,3772,7,21,0,0,3772,3773,7,24,0,0,3773,642,1,0,0,0,3774, - 3775,7,11,0,0,3775,3776,7,6,0,0,3776,3777,7,10,0,0,3777,644,1,0, - 0,0,3778,3779,7,11,0,0,3779,3780,7,6,0,0,3780,3781,7,10,0,0,3781, - 3782,7,4,0,0,3782,646,1,0,0,0,3783,3784,7,11,0,0,3784,3785,7,6,0, - 0,3785,3786,7,10,0,0,3786,3787,5,95,0,0,3787,3788,7,12,0,0,3788, - 3789,7,21,0,0,3789,3790,7,17,0,0,3790,3791,7,3,0,0,3791,3792,7,9, - 0,0,3792,3793,7,11,0,0,3793,648,1,0,0,0,3794,3795,7,11,0,0,3795, - 3796,7,21,0,0,3796,3797,7,12,0,0,3797,3798,7,12,0,0,3798,3799,7, - 19,0,0,3799,3800,7,12,0,0,3800,3801,7,16,0,0,3801,650,1,0,0,0,3802, - 3803,7,4,0,0,3803,3804,7,2,0,0,3804,3805,7,23,0,0,3805,3806,7,9, - 0,0,3806,3807,5,95,0,0,3807,3808,7,7,0,0,3808,3809,7,2,0,0,3809, - 3810,7,4,0,0,3810,3811,7,8,0,0,3811,652,1,0,0,0,3812,3813,7,4,0, - 0,3813,3814,7,2,0,0,3814,3815,7,23,0,0,3815,3816,7,9,0,0,3816,3817, - 5,95,0,0,3817,3818,7,6,0,0,3818,3819,7,23,0,0,3819,3820,7,23,0,0, - 3820,3821,7,4,0,0,3821,3822,7,9,0,0,3822,3823,7,8,0,0,3823,654,1, - 0,0,0,3824,3825,7,4,0,0,3825,3826,7,2,0,0,3826,3827,7,23,0,0,3827, - 3828,7,9,0,0,3828,3829,5,95,0,0,3829,3830,7,6,0,0,3830,3831,7,11, - 0,0,3831,3832,7,15,0,0,3832,3833,7,19,0,0,3833,3834,7,12,0,0,3834, - 3835,7,2,0,0,3835,3836,7,5,0,0,3836,656,1,0,0,0,3837,3838,7,4,0, - 0,3838,3839,7,2,0,0,3839,3840,7,8,0,0,3840,3841,7,21,0,0,3841,3842, - 7,11,0,0,3842,3843,7,15,0,0,3843,3844,7,2,0,0,3844,3845,7,13,0,0, - 3845,658,1,0,0,0,3846,3847,7,4,0,0,3847,3848,7,2,0,0,3848,3849,7, - 20,0,0,3849,3850,7,9,0,0,3850,3851,7,24,0,0,3851,3852,7,6,0,0,3852, - 3853,7,19,0,0,3853,3854,7,12,0,0,3854,3855,7,8,0,0,3855,660,1,0, - 0,0,3856,3857,7,4,0,0,3857,3858,7,7,0,0,3858,3859,7,2,0,0,3859,3860, - 7,5,0,0,3860,3861,7,2,0,0,3861,662,1,0,0,0,3862,3863,7,4,0,0,3863, - 3864,7,7,0,0,3864,3865,7,6,0,0,3865,3866,7,24,0,0,3866,3867,7,9, - 0,0,3867,664,1,0,0,0,3868,3869,7,4,0,0,3869,3870,7,7,0,0,3870,3871, - 7,11,0,0,3871,3872,7,6,0,0,3872,3873,7,5,0,0,3873,3874,7,5,0,0,3874, - 666,1,0,0,0,3875,3876,7,4,0,0,3876,3877,7,9,0,0,3877,3878,7,2,0, - 0,3878,3879,7,11,0,0,3879,3880,7,7,0,0,3880,3881,7,22,0,0,3881,668, - 1,0,0,0,3882,3883,7,4,0,0,3883,3884,7,9,0,0,3884,3885,7,7,0,0,3885, - 3886,7,6,0,0,3886,3887,7,12,0,0,3887,3888,7,15,0,0,3888,670,1,0, - 0,0,3889,3890,7,4,0,0,3890,3891,7,9,0,0,3891,3892,7,9,0,0,3892,3893, - 7,25,0,0,3893,672,1,0,0,0,3894,3895,7,4,0,0,3895,3896,7,9,0,0,3896, - 3897,7,5,0,0,3897,3898,7,9,0,0,3898,3899,7,7,0,0,3899,3900,7,8,0, - 0,3900,674,1,0,0,0,3901,3902,7,4,0,0,3902,3903,7,9,0,0,3903,3904, - 7,12,0,0,3904,3905,7,4,0,0,3905,3906,7,19,0,0,3906,3907,7,8,0,0, - 3907,3908,7,19,0,0,3908,3909,7,20,0,0,3909,3910,7,9,0,0,3910,676, - 1,0,0,0,3911,3912,7,4,0,0,3912,3913,7,9,0,0,3913,3914,7,24,0,0,3914, - 3915,7,2,0,0,3915,3916,7,11,0,0,3916,3917,7,2,0,0,3917,3918,7,8, - 0,0,3918,3919,7,6,0,0,3919,3920,7,11,0,0,3920,678,1,0,0,0,3921,3922, - 7,4,0,0,3922,3923,7,9,0,0,3923,3924,7,4,0,0,3924,3925,7,4,0,0,3925, - 3926,7,19,0,0,3926,3927,7,6,0,0,3927,3928,7,12,0,0,3928,3929,5,95, - 0,0,3929,3930,7,21,0,0,3930,3931,7,4,0,0,3931,3932,7,9,0,0,3932, - 3933,7,11,0,0,3933,680,1,0,0,0,3934,3935,7,4,0,0,3935,3936,7,9,0, - 0,3936,3937,7,8,0,0,3937,682,1,0,0,0,3938,3939,7,4,0,0,3939,3940, - 7,22,0,0,3940,3941,7,6,0,0,3941,3942,7,10,0,0,3942,684,1,0,0,0,3943, - 3944,7,4,0,0,3944,3945,7,19,0,0,3945,3946,7,17,0,0,3946,3947,7,19, - 0,0,3947,3948,7,5,0,0,3948,3949,7,2,0,0,3949,3950,7,11,0,0,3950, - 686,1,0,0,0,3951,3952,7,4,0,0,3952,3953,7,25,0,0,3953,3954,7,19, - 0,0,3954,3955,7,24,0,0,3955,688,1,0,0,0,3956,3957,7,4,0,0,3957,3958, - 7,17,0,0,3958,3959,7,2,0,0,3959,3960,7,5,0,0,3960,3961,7,5,0,0,3961, - 3962,7,19,0,0,3962,3963,7,12,0,0,3963,3964,7,8,0,0,3964,690,1,0, - 0,0,3965,3966,7,4,0,0,3966,3967,7,6,0,0,3967,3968,7,17,0,0,3968, - 3969,7,9,0,0,3969,692,1,0,0,0,3970,3971,7,4,0,0,3971,3972,7,24,0, - 0,3972,3973,7,9,0,0,3973,3974,7,7,0,0,3974,3975,7,19,0,0,3975,3976, - 7,23,0,0,3976,3977,7,19,0,0,3977,3978,7,7,0,0,3978,694,1,0,0,0,3979, - 3980,7,4,0,0,3980,3981,7,24,0,0,3981,3982,7,9,0,0,3982,3983,7,7, - 0,0,3983,3984,7,19,0,0,3984,3985,7,23,0,0,3985,3986,7,19,0,0,3986, - 3987,7,7,0,0,3987,3988,7,8,0,0,3988,3989,7,13,0,0,3989,3990,7,24, - 0,0,3990,3991,7,9,0,0,3991,696,1,0,0,0,3992,3993,7,4,0,0,3993,3994, - 7,26,0,0,3994,3995,7,5,0,0,3995,698,1,0,0,0,3996,3997,7,4,0,0,3997, - 3998,7,26,0,0,3998,3999,7,5,0,0,3999,4000,7,9,0,0,4000,4001,7,18, - 0,0,4001,4002,7,7,0,0,4002,4003,7,9,0,0,4003,4004,7,24,0,0,4004, - 4005,7,8,0,0,4005,4006,7,19,0,0,4006,4007,7,6,0,0,4007,4008,7,12, - 0,0,4008,700,1,0,0,0,4009,4010,7,4,0,0,4010,4011,7,26,0,0,4011,4012, - 7,5,0,0,4012,4013,7,4,0,0,4013,4014,7,8,0,0,4014,4015,7,2,0,0,4015, - 4016,7,8,0,0,4016,4017,7,9,0,0,4017,702,1,0,0,0,4018,4019,7,4,0, - 0,4019,4020,7,26,0,0,4020,4021,7,5,0,0,4021,4022,7,10,0,0,4022,4023, - 7,2,0,0,4023,4024,7,11,0,0,4024,4025,7,12,0,0,4025,4026,7,19,0,0, - 4026,4027,7,12,0,0,4027,4028,7,16,0,0,4028,704,1,0,0,0,4029,4030, - 7,4,0,0,4030,4031,7,26,0,0,4031,4032,7,11,0,0,4032,4033,7,8,0,0, - 4033,706,1,0,0,0,4034,4035,7,4,0,0,4035,4036,7,8,0,0,4036,4037,7, - 2,0,0,4037,4038,7,11,0,0,4038,4039,7,8,0,0,4039,708,1,0,0,0,4040, - 4041,7,4,0,0,4041,4042,7,8,0,0,4042,4043,7,2,0,0,4043,4044,7,8,0, - 0,4044,4045,7,9,0,0,4045,4046,7,17,0,0,4046,4047,7,9,0,0,4047,4048, - 7,12,0,0,4048,4049,7,8,0,0,4049,710,1,0,0,0,4050,4051,7,4,0,0,4051, - 4052,7,8,0,0,4052,4053,7,2,0,0,4053,4054,7,8,0,0,4054,4055,7,19, - 0,0,4055,4056,7,7,0,0,4056,712,1,0,0,0,4057,4058,7,4,0,0,4058,4059, - 7,8,0,0,4059,4060,7,2,0,0,4060,4061,7,8,0,0,4061,4062,7,19,0,0,4062, - 4063,7,4,0,0,4063,4064,7,8,0,0,4064,4065,7,19,0,0,4065,4066,7,7, - 0,0,4066,4067,7,4,0,0,4067,714,1,0,0,0,4068,4069,7,4,0,0,4069,4070, - 7,8,0,0,4070,4071,7,15,0,0,4071,4072,7,15,0,0,4072,4073,7,9,0,0, - 4073,4074,7,20,0,0,4074,4075,5,95,0,0,4075,4076,7,24,0,0,4076,4077, - 7,6,0,0,4077,4078,7,24,0,0,4078,716,1,0,0,0,4079,4080,7,4,0,0,4080, - 4081,7,8,0,0,4081,4082,7,15,0,0,4082,4083,7,15,0,0,4083,4084,7,9, - 0,0,4084,4085,7,20,0,0,4085,4086,5,95,0,0,4086,4087,7,4,0,0,4087, - 4088,7,2,0,0,4088,4089,7,17,0,0,4089,4090,7,24,0,0,4090,718,1,0, - 0,0,4091,4092,7,4,0,0,4092,4093,7,8,0,0,4093,4094,7,11,0,0,4094, - 4095,7,9,0,0,4095,4096,7,2,0,0,4096,4097,7,17,0,0,4097,720,1,0,0, - 0,4098,4099,7,4,0,0,4099,4100,7,8,0,0,4100,4101,7,11,0,0,4101,4102, - 7,19,0,0,4102,4103,7,12,0,0,4103,4104,7,16,0,0,4104,722,1,0,0,0, - 4105,4106,7,4,0,0,4106,4107,7,8,0,0,4107,4108,7,11,0,0,4108,4109, - 7,19,0,0,4109,4110,7,12,0,0,4110,4111,7,16,0,0,4111,4112,5,95,0, - 0,4112,4113,7,2,0,0,4113,4114,7,16,0,0,4114,4115,7,16,0,0,4115,724, - 1,0,0,0,4116,4117,7,4,0,0,4117,4118,7,21,0,0,4118,4119,7,3,0,0,4119, - 4120,7,17,0,0,4120,4121,7,21,0,0,4121,4122,7,5,0,0,4122,4123,7,8, - 0,0,4123,4124,7,19,0,0,4124,4125,7,4,0,0,4125,4126,7,9,0,0,4126, - 4127,7,8,0,0,4127,726,1,0,0,0,4128,4129,7,4,0,0,4129,4130,7,21,0, - 0,4130,4131,7,3,0,0,4131,4132,7,4,0,0,4132,4133,7,9,0,0,4133,4134, - 7,8,0,0,4134,728,1,0,0,0,4135,4136,7,4,0,0,4136,4137,7,21,0,0,4137, - 4138,7,3,0,0,4138,4139,7,4,0,0,4139,4140,7,8,0,0,4140,4141,7,11, - 0,0,4141,4142,7,19,0,0,4142,4143,7,12,0,0,4143,4144,7,16,0,0,4144, - 730,1,0,0,0,4145,4146,7,4,0,0,4146,4147,7,21,0,0,4147,4148,7,3,0, - 0,4148,4149,7,4,0,0,4149,4150,7,8,0,0,4150,4151,7,11,0,0,4151,4152, - 7,19,0,0,4152,4153,7,12,0,0,4153,4154,7,16,0,0,4154,4155,5,95,0, - 0,4155,4156,7,11,0,0,4156,4157,7,9,0,0,4157,4158,7,16,0,0,4158,4159, - 7,9,0,0,4159,4160,7,18,0,0,4160,732,1,0,0,0,4161,4162,7,4,0,0,4162, - 4163,7,21,0,0,4163,4164,7,7,0,0,4164,4165,7,7,0,0,4165,4166,7,9, - 0,0,4166,4167,7,9,0,0,4167,4168,7,15,0,0,4168,4169,7,4,0,0,4169, - 734,1,0,0,0,4170,4171,7,4,0,0,4171,4172,7,21,0,0,4172,4173,7,17, - 0,0,4173,736,1,0,0,0,4174,4175,7,4,0,0,4175,4176,7,21,0,0,4176,4177, - 7,12,0,0,4177,4178,7,15,0,0,4178,4179,7,2,0,0,4179,4180,7,13,0,0, - 4180,738,1,0,0,0,4181,4182,7,4,0,0,4182,4183,7,13,0,0,4183,4184, - 7,17,0,0,4184,4185,7,17,0,0,4185,4186,7,9,0,0,4186,4187,7,8,0,0, - 4187,4188,7,11,0,0,4188,4189,7,19,0,0,4189,4190,7,7,0,0,4190,740, - 1,0,0,0,4191,4192,7,4,0,0,4192,4193,7,13,0,0,4193,4194,7,4,0,0,4194, - 4195,7,8,0,0,4195,4196,7,9,0,0,4196,4197,7,17,0,0,4197,742,1,0,0, - 0,4198,4199,7,4,0,0,4199,4200,7,13,0,0,4200,4201,7,4,0,0,4201,4202, - 7,8,0,0,4202,4203,7,9,0,0,4203,4204,7,17,0,0,4204,4205,5,95,0,0, - 4205,4206,7,8,0,0,4206,4207,7,19,0,0,4207,4208,7,17,0,0,4208,4209, - 7,9,0,0,4209,744,1,0,0,0,4210,4211,7,4,0,0,4211,4212,7,13,0,0,4212, - 4213,7,4,0,0,4213,4214,7,8,0,0,4214,4215,7,9,0,0,4215,4216,7,17, - 0,0,4216,4217,5,95,0,0,4217,4218,7,21,0,0,4218,4219,7,4,0,0,4219, - 4220,7,9,0,0,4220,4221,7,11,0,0,4221,746,1,0,0,0,4222,4223,7,8,0, - 0,4223,4224,7,2,0,0,4224,4225,7,3,0,0,4225,4226,7,5,0,0,4226,4227, - 7,9,0,0,4227,748,1,0,0,0,4228,4229,7,8,0,0,4229,4230,7,2,0,0,4230, - 4231,7,3,0,0,4231,4232,7,5,0,0,4232,4233,7,9,0,0,4233,4234,7,4,0, - 0,4234,750,1,0,0,0,4235,4236,7,8,0,0,4236,4237,7,2,0,0,4237,4238, - 7,3,0,0,4238,4239,7,5,0,0,4239,4240,7,9,0,0,4240,4241,7,4,0,0,4241, - 4242,7,2,0,0,4242,4243,7,17,0,0,4243,4244,7,24,0,0,4244,4245,7,5, - 0,0,4245,4246,7,9,0,0,4246,752,1,0,0,0,4247,4248,7,8,0,0,4248,4249, - 7,22,0,0,4249,4250,7,9,0,0,4250,4251,7,12,0,0,4251,754,1,0,0,0,4252, - 4253,7,8,0,0,4253,4254,7,22,0,0,4254,4255,7,21,0,0,4255,4256,7,11, - 0,0,4256,4257,7,4,0,0,4257,4258,7,15,0,0,4258,4259,7,2,0,0,4259, - 4260,7,13,0,0,4260,756,1,0,0,0,4261,4262,7,8,0,0,4262,4263,7,19, - 0,0,4263,4264,7,17,0,0,4264,4265,7,9,0,0,4265,758,1,0,0,0,4266,4267, - 7,8,0,0,4267,4268,7,19,0,0,4268,4269,7,17,0,0,4269,4270,7,9,0,0, - 4270,4271,7,4,0,0,4271,4272,7,8,0,0,4272,4273,7,2,0,0,4273,4274, - 7,17,0,0,4274,4275,7,24,0,0,4275,760,1,0,0,0,4276,4277,7,8,0,0,4277, - 4278,7,19,0,0,4278,4279,7,17,0,0,4279,4280,7,9,0,0,4280,4281,7,4, - 0,0,4281,4282,7,8,0,0,4282,4283,7,2,0,0,4283,4284,7,17,0,0,4284, - 4285,7,24,0,0,4285,4286,5,95,0,0,4286,4287,7,15,0,0,4287,4288,7, - 19,0,0,4288,4289,7,23,0,0,4289,4290,7,23,0,0,4290,762,1,0,0,0,4291, - 4292,7,8,0,0,4292,4293,7,19,0,0,4293,4294,7,17,0,0,4294,4295,7,9, - 0,0,4295,4296,7,4,0,0,4296,4297,7,8,0,0,4297,4298,7,2,0,0,4298,4299, - 7,17,0,0,4299,4300,7,24,0,0,4300,4301,5,95,0,0,4301,4302,7,5,0,0, - 4302,4303,7,8,0,0,4303,4304,7,14,0,0,4304,764,1,0,0,0,4305,4306, - 7,8,0,0,4306,4307,7,19,0,0,4307,4308,7,17,0,0,4308,4309,7,9,0,0, - 4309,4310,7,4,0,0,4310,4311,7,8,0,0,4311,4312,7,2,0,0,4312,4313, - 7,17,0,0,4313,4314,7,24,0,0,4314,4315,5,95,0,0,4315,4316,7,8,0,0, - 4316,4317,7,11,0,0,4317,4318,7,21,0,0,4318,4319,7,12,0,0,4319,4320, - 7,7,0,0,4320,766,1,0,0,0,4321,4322,7,8,0,0,4322,4323,7,19,0,0,4323, - 4324,7,17,0,0,4324,4325,7,9,0,0,4325,4326,7,14,0,0,4326,4327,7,6, - 0,0,4327,4328,7,12,0,0,4328,4329,7,9,0,0,4329,4330,5,95,0,0,4330, - 4331,7,22,0,0,4331,4332,7,6,0,0,4332,4333,7,21,0,0,4333,4334,7,11, - 0,0,4334,768,1,0,0,0,4335,4336,7,8,0,0,4336,4337,7,19,0,0,4337,4338, - 7,17,0,0,4338,4339,7,9,0,0,4339,4340,7,14,0,0,4340,4341,7,6,0,0, - 4341,4342,7,12,0,0,4342,4343,7,9,0,0,4343,4344,5,95,0,0,4344,4345, - 7,17,0,0,4345,4346,7,19,0,0,4346,4347,7,12,0,0,4347,4348,7,21,0, - 0,4348,4349,7,8,0,0,4349,4350,7,9,0,0,4350,770,1,0,0,0,4351,4352, - 7,8,0,0,4352,4353,7,19,0,0,4353,4354,7,17,0,0,4354,4355,7,9,0,0, - 4355,4356,5,95,0,0,4356,4357,7,15,0,0,4357,4358,7,19,0,0,4358,4359, - 7,23,0,0,4359,4360,7,23,0,0,4360,772,1,0,0,0,4361,4362,7,8,0,0,4362, - 4363,7,19,0,0,4363,4364,7,17,0,0,4364,4365,7,9,0,0,4365,4366,5,95, - 0,0,4366,4367,7,8,0,0,4367,4368,7,11,0,0,4368,4369,7,21,0,0,4369, - 4370,7,12,0,0,4370,4371,7,7,0,0,4371,774,1,0,0,0,4372,4373,7,8,0, - 0,4373,4374,7,19,0,0,4374,4375,7,12,0,0,4375,4376,7,13,0,0,4376, - 4377,7,19,0,0,4377,4378,7,12,0,0,4378,4379,7,8,0,0,4379,776,1,0, - 0,0,4380,4381,7,8,0,0,4381,4382,7,6,0,0,4382,778,1,0,0,0,4383,4384, - 7,8,0,0,4384,4385,7,11,0,0,4385,4386,7,2,0,0,4386,4387,7,19,0,0, - 4387,4388,7,5,0,0,4388,4389,7,19,0,0,4389,4390,7,12,0,0,4390,4391, - 7,16,0,0,4391,780,1,0,0,0,4392,4393,7,8,0,0,4393,4394,7,11,0,0,4394, - 4395,7,2,0,0,4395,4396,7,12,0,0,4396,4397,7,4,0,0,4397,4398,7,5, - 0,0,4398,4399,7,2,0,0,4399,4400,7,8,0,0,4400,4401,7,9,0,0,4401,782, - 1,0,0,0,4402,4403,7,8,0,0,4403,4404,7,11,0,0,4404,4405,7,2,0,0,4405, - 4406,7,12,0,0,4406,4407,7,4,0,0,4407,4408,7,5,0,0,4408,4409,7,2, - 0,0,4409,4410,7,8,0,0,4410,4411,7,9,0,0,4411,4412,5,95,0,0,4412, - 4413,7,11,0,0,4413,4414,7,9,0,0,4414,4415,7,16,0,0,4415,4416,7,9, - 0,0,4416,4417,7,18,0,0,4417,784,1,0,0,0,4418,4419,7,8,0,0,4419,4420, - 7,11,0,0,4420,4421,7,2,0,0,4421,4422,7,12,0,0,4422,4423,7,4,0,0, - 4423,4424,7,5,0,0,4424,4425,7,2,0,0,4425,4426,7,8,0,0,4426,4427, - 7,19,0,0,4427,4428,7,6,0,0,4428,4429,7,12,0,0,4429,786,1,0,0,0,4430, - 4431,7,8,0,0,4431,4432,7,11,0,0,4432,4433,7,9,0,0,4433,4434,7,2, - 0,0,4434,4435,7,8,0,0,4435,788,1,0,0,0,4436,4437,7,8,0,0,4437,4438, - 7,11,0,0,4438,4439,7,19,0,0,4439,4440,7,16,0,0,4440,4441,7,16,0, - 0,4441,4442,7,9,0,0,4442,4443,7,11,0,0,4443,790,1,0,0,0,4444,4445, - 7,8,0,0,4445,4446,7,11,0,0,4446,4447,7,19,0,0,4447,4448,7,17,0,0, - 4448,792,1,0,0,0,4449,4450,7,8,0,0,4450,4451,7,11,0,0,4451,4452, - 7,19,0,0,4452,4453,7,17,0,0,4453,4454,5,95,0,0,4454,4455,7,2,0,0, - 4455,4456,7,11,0,0,4456,4457,7,11,0,0,4457,4458,7,2,0,0,4458,4459, - 7,13,0,0,4459,794,1,0,0,0,4460,4461,7,8,0,0,4461,4462,7,11,0,0,4462, - 4463,7,21,0,0,4463,4464,7,9,0,0,4464,796,1,0,0,0,4465,4466,7,8,0, - 0,4466,4467,7,11,0,0,4467,4468,7,21,0,0,4468,4469,7,12,0,0,4469, - 4470,7,7,0,0,4470,4471,7,2,0,0,4471,4472,7,8,0,0,4472,4473,7,9,0, - 0,4473,798,1,0,0,0,4474,4475,7,8,0,0,4475,4476,7,11,0,0,4476,4477, - 7,13,0,0,4477,4478,5,95,0,0,4478,4479,7,7,0,0,4479,4480,7,2,0,0, - 4480,4481,7,4,0,0,4481,4482,7,8,0,0,4482,800,1,0,0,0,4483,4484,7, - 8,0,0,4484,4485,7,21,0,0,4485,4486,7,9,0,0,4486,4487,7,4,0,0,4487, - 4488,7,15,0,0,4488,4489,7,2,0,0,4489,4490,7,13,0,0,4490,802,1,0, - 0,0,4491,4492,7,21,0,0,4492,4493,7,9,0,0,4493,4494,7,4,0,0,4494, - 4495,7,7,0,0,4495,4496,7,2,0,0,4496,4497,7,24,0,0,4497,4498,7,9, - 0,0,4498,804,1,0,0,0,4499,4500,7,21,0,0,4500,4501,7,12,0,0,4501, - 4502,7,19,0,0,4502,4503,7,6,0,0,4503,4504,7,12,0,0,4504,806,1,0, - 0,0,4505,4506,7,21,0,0,4506,4507,7,12,0,0,4507,4508,7,19,0,0,4508, - 4509,7,26,0,0,4509,4510,7,21,0,0,4510,4511,7,9,0,0,4511,808,1,0, - 0,0,4512,4513,7,21,0,0,4513,4514,7,12,0,0,4514,4515,7,25,0,0,4515, - 4516,7,12,0,0,4516,4517,7,6,0,0,4517,4518,7,10,0,0,4518,4519,7,12, - 0,0,4519,810,1,0,0,0,4520,4521,7,21,0,0,4521,4522,7,12,0,0,4522, - 4523,7,12,0,0,4523,4524,7,9,0,0,4524,4525,7,4,0,0,4525,4526,7,8, - 0,0,4526,812,1,0,0,0,4527,4528,7,21,0,0,4528,4529,7,12,0,0,4529, - 4530,7,24,0,0,4530,4531,7,19,0,0,4531,4532,7,20,0,0,4532,4533,7, - 6,0,0,4533,4534,7,8,0,0,4534,814,1,0,0,0,4535,4536,7,21,0,0,4536, - 4537,7,24,0,0,4537,4538,7,15,0,0,4538,4539,7,2,0,0,4539,4540,7,8, - 0,0,4540,4541,7,9,0,0,4541,816,1,0,0,0,4542,4543,7,21,0,0,4543,4544, - 7,24,0,0,4544,4545,7,24,0,0,4545,4546,7,9,0,0,4546,4547,7,11,0,0, - 4547,818,1,0,0,0,4548,4549,7,21,0,0,4549,4550,7,24,0,0,4550,4551, - 7,4,0,0,4551,4552,7,9,0,0,4552,4553,7,11,0,0,4553,4554,7,8,0,0,4554, - 820,1,0,0,0,4555,4556,7,21,0,0,4556,4557,7,4,0,0,4557,4558,7,9,0, - 0,4558,822,1,0,0,0,4559,4560,7,21,0,0,4560,4561,7,4,0,0,4561,4562, - 7,9,0,0,4562,4563,7,11,0,0,4563,824,1,0,0,0,4564,4565,7,21,0,0,4565, - 4566,7,4,0,0,4566,4567,7,19,0,0,4567,4568,7,12,0,0,4568,4569,7,16, - 0,0,4569,826,1,0,0,0,4570,4571,7,20,0,0,4571,4572,7,2,0,0,4572,4573, - 7,5,0,0,4573,4574,7,21,0,0,4574,4575,7,9,0,0,4575,828,1,0,0,0,4576, - 4577,7,20,0,0,4577,4578,7,2,0,0,4578,4579,7,5,0,0,4579,4580,7,21, - 0,0,4580,4581,7,9,0,0,4581,4582,7,4,0,0,4582,830,1,0,0,0,4583,4584, - 7,20,0,0,4584,4585,7,2,0,0,4585,4586,7,5,0,0,4586,4587,7,21,0,0, - 4587,4588,7,9,0,0,4588,4589,5,95,0,0,4589,4590,7,6,0,0,4590,4591, - 7,23,0,0,4591,832,1,0,0,0,4592,4593,7,20,0,0,4593,4594,7,2,0,0,4594, - 4595,7,11,0,0,4595,4596,7,3,0,0,4596,4597,7,19,0,0,4597,4598,7,12, - 0,0,4598,4599,7,2,0,0,4599,4600,7,11,0,0,4600,4601,7,13,0,0,4601, - 834,1,0,0,0,4602,4603,7,20,0,0,4603,4604,7,2,0,0,4604,4605,7,11, - 0,0,4605,4606,7,7,0,0,4606,4607,7,22,0,0,4607,4608,7,2,0,0,4608, - 4609,7,11,0,0,4609,836,1,0,0,0,4610,4611,7,20,0,0,4611,4612,7,2, - 0,0,4612,4613,7,11,0,0,4613,4614,7,13,0,0,4614,4615,7,19,0,0,4615, - 4616,7,12,0,0,4616,4617,7,16,0,0,4617,838,1,0,0,0,4618,4619,7,20, - 0,0,4619,4620,7,2,0,0,4620,4621,7,11,0,0,4621,4622,5,95,0,0,4622, - 4623,7,24,0,0,4623,4624,7,6,0,0,4624,4625,7,24,0,0,4625,840,1,0, - 0,0,4626,4627,7,20,0,0,4627,4628,7,2,0,0,4628,4629,7,11,0,0,4629, - 4630,5,95,0,0,4630,4631,7,4,0,0,4631,4632,7,2,0,0,4632,4633,7,17, - 0,0,4633,4634,7,24,0,0,4634,842,1,0,0,0,4635,4636,7,20,0,0,4636, - 4637,7,9,0,0,4637,4638,7,11,0,0,4638,4639,7,4,0,0,4639,4640,7,19, - 0,0,4640,4641,7,6,0,0,4641,4642,7,12,0,0,4642,4643,7,19,0,0,4643, - 4644,7,12,0,0,4644,4645,7,16,0,0,4645,844,1,0,0,0,4646,4647,7,20, - 0,0,4647,4648,7,19,0,0,4648,4649,7,9,0,0,4649,4650,7,10,0,0,4650, - 4651,7,4,0,0,4651,846,1,0,0,0,4652,4653,7,20,0,0,4653,4654,7,19, - 0,0,4654,4655,7,11,0,0,4655,4656,7,8,0,0,4656,4657,7,21,0,0,4657, - 4658,7,2,0,0,4658,4659,7,5,0,0,4659,848,1,0,0,0,4660,4661,7,10,0, - 0,4661,4662,7,2,0,0,4662,4663,7,8,0,0,4663,4664,7,9,0,0,4664,4665, - 7,11,0,0,4665,4666,7,17,0,0,4666,4667,7,2,0,0,4667,4668,7,11,0,0, - 4668,4669,7,25,0,0,4669,850,1,0,0,0,4670,4671,7,10,0,0,4671,4672, - 7,2,0,0,4672,4673,7,8,0,0,4673,4674,7,9,0,0,4674,4675,7,11,0,0,4675, - 4676,7,17,0,0,4676,4677,7,2,0,0,4677,4678,7,11,0,0,4678,4679,7,25, - 0,0,4679,4680,7,4,0,0,4680,852,1,0,0,0,4681,4682,7,10,0,0,4682,4683, - 7,9,0,0,4683,4684,7,15,0,0,4684,4685,7,12,0,0,4685,4686,7,9,0,0, - 4686,4687,7,4,0,0,4687,4688,7,15,0,0,4688,4689,7,2,0,0,4689,4690, - 7,13,0,0,4690,854,1,0,0,0,4691,4692,7,10,0,0,4692,4693,7,9,0,0,4693, - 4694,7,9,0,0,4694,4695,7,25,0,0,4695,4696,7,4,0,0,4696,856,1,0,0, - 0,4697,4698,7,10,0,0,4698,4699,7,22,0,0,4699,4700,7,9,0,0,4700,4701, - 7,12,0,0,4701,858,1,0,0,0,4702,4703,7,10,0,0,4703,4704,7,22,0,0, - 4704,4705,7,9,0,0,4705,4706,7,12,0,0,4706,4707,7,9,0,0,4707,4708, - 7,20,0,0,4708,4709,7,9,0,0,4709,4710,7,11,0,0,4710,860,1,0,0,0,4711, - 4712,7,10,0,0,4712,4713,7,22,0,0,4713,4714,7,9,0,0,4714,4715,7,11, - 0,0,4715,4716,7,9,0,0,4716,862,1,0,0,0,4717,4718,7,10,0,0,4718,4719, - 7,19,0,0,4719,4720,7,15,0,0,4720,4721,7,8,0,0,4721,4722,7,22,0,0, - 4722,4723,5,95,0,0,4723,4724,7,3,0,0,4724,4725,7,21,0,0,4725,4726, - 7,7,0,0,4726,4727,7,25,0,0,4727,4728,7,9,0,0,4728,4729,7,8,0,0,4729, - 864,1,0,0,0,4730,4731,7,10,0,0,4731,4732,7,19,0,0,4732,4733,7,12, - 0,0,4733,4734,7,15,0,0,4734,4735,7,6,0,0,4735,4736,7,10,0,0,4736, - 866,1,0,0,0,4737,4738,7,10,0,0,4738,4739,7,19,0,0,4739,4740,7,8, - 0,0,4740,4741,7,22,0,0,4741,868,1,0,0,0,4742,4743,7,10,0,0,4743, - 4744,7,19,0,0,4744,4745,7,8,0,0,4745,4746,7,22,0,0,4746,4747,7,19, - 0,0,4747,4748,7,12,0,0,4748,870,1,0,0,0,4749,4750,7,10,0,0,4750, - 4751,7,19,0,0,4751,4752,7,8,0,0,4752,4753,7,22,0,0,4753,4754,7,6, - 0,0,4754,4755,7,21,0,0,4755,4756,7,8,0,0,4756,872,1,0,0,0,4757,4758, - 7,13,0,0,4758,4759,7,9,0,0,4759,4760,7,2,0,0,4760,4761,7,11,0,0, - 4761,874,1,0,0,0,4762,4763,7,2,0,0,4763,4764,7,15,0,0,4764,4765, - 7,15,0,0,4765,876,1,0,0,0,4766,4767,7,2,0,0,4767,4768,7,23,0,0,4768, - 4769,7,8,0,0,4769,4770,7,9,0,0,4770,4771,7,11,0,0,4771,878,1,0,0, - 0,4772,4773,7,2,0,0,4773,4774,7,4,0,0,4774,4775,7,7,0,0,4775,880, - 1,0,0,0,4776,4777,7,7,0,0,4777,4778,7,2,0,0,4778,4779,7,4,0,0,4779, - 4780,7,7,0,0,4780,4781,7,2,0,0,4781,4782,7,15,0,0,4782,4783,7,9, - 0,0,4783,882,1,0,0,0,4784,4785,7,7,0,0,4785,4786,7,2,0,0,4786,4787, - 7,8,0,0,4787,4788,7,2,0,0,4788,4789,7,5,0,0,4789,4790,7,6,0,0,4790, - 4791,7,16,0,0,4791,884,1,0,0,0,4792,4793,7,7,0,0,4793,4794,7,9,0, - 0,4794,4795,7,12,0,0,4795,4796,7,8,0,0,4796,4797,7,21,0,0,4797,4798, - 7,11,0,0,4798,4799,7,13,0,0,4799,886,1,0,0,0,4800,4801,7,7,0,0,4801, - 4802,7,6,0,0,4802,4803,7,12,0,0,4803,4804,7,23,0,0,4804,4805,7,19, - 0,0,4805,4806,7,16,0,0,4806,888,1,0,0,0,4807,4808,7,7,0,0,4808,4809, - 7,6,0,0,4809,4810,7,12,0,0,4810,4811,7,4,0,0,4811,4812,7,8,0,0,4812, - 4813,7,11,0,0,4813,4814,7,2,0,0,4814,4815,7,19,0,0,4815,4816,7,12, - 0,0,4816,4817,7,8,0,0,4817,4818,7,4,0,0,4818,890,1,0,0,0,4819,4820, - 7,7,0,0,4820,4821,7,21,0,0,4821,4822,7,17,0,0,4822,4823,7,21,0,0, - 4823,4824,7,5,0,0,4824,4825,7,2,0,0,4825,4826,7,8,0,0,4826,4827, - 7,9,0,0,4827,892,1,0,0,0,4828,4829,7,15,0,0,4829,4830,7,2,0,0,4830, - 4831,7,8,0,0,4831,4832,7,2,0,0,4832,894,1,0,0,0,4833,4834,7,15,0, - 0,4834,4835,7,2,0,0,4835,4836,7,8,0,0,4836,4837,7,2,0,0,4837,4838, - 7,3,0,0,4838,4839,7,2,0,0,4839,4840,7,4,0,0,4840,4841,7,9,0,0,4841, - 896,1,0,0,0,4842,4843,7,15,0,0,4843,4844,7,2,0,0,4844,4845,7,13, - 0,0,4845,4846,7,4,0,0,4846,898,1,0,0,0,4847,4848,7,15,0,0,4848,4849, - 7,9,0,0,4849,4850,7,7,0,0,4850,4851,7,2,0,0,4851,4852,7,15,0,0,4852, - 4853,7,9,0,0,4853,900,1,0,0,0,4854,4855,7,15,0,0,4855,4856,7,9,0, - 0,4856,4857,7,4,0,0,4857,4858,7,7,0,0,4858,902,1,0,0,0,4859,4860, - 7,15,0,0,4860,4861,7,9,0,0,4861,4862,7,4,0,0,4862,4863,7,7,0,0,4863, - 4864,7,11,0,0,4864,4865,7,19,0,0,4865,4866,7,24,0,0,4866,4867,7, - 8,0,0,4867,4868,7,6,0,0,4868,4869,7,11,0,0,4869,904,1,0,0,0,4870, - 4871,7,15,0,0,4871,4872,7,19,0,0,4872,4873,7,20,0,0,4873,906,1,0, - 0,0,4874,4875,7,9,0,0,4875,4876,7,12,0,0,4876,4877,7,16,0,0,4877, - 4878,7,19,0,0,4878,4879,7,12,0,0,4879,4880,7,9,0,0,4880,908,1,0, - 0,0,4881,4882,7,9,0,0,4882,4883,7,24,0,0,4883,4884,7,6,0,0,4884, - 4885,7,7,0,0,4885,4886,7,22,0,0,4886,910,1,0,0,0,4887,4888,7,9,0, - 0,4888,4889,7,18,0,0,4889,4890,7,7,0,0,4890,4891,7,5,0,0,4891,4892, - 7,21,0,0,4892,4893,7,15,0,0,4893,4894,7,19,0,0,4894,4895,7,12,0, - 0,4895,4896,7,16,0,0,4896,912,1,0,0,0,4897,4898,7,23,0,0,4898,4899, - 7,19,0,0,4899,4900,7,5,0,0,4900,4901,7,9,0,0,4901,914,1,0,0,0,4902, - 4903,7,23,0,0,4903,4904,7,19,0,0,4904,4905,7,11,0,0,4905,4906,7, - 4,0,0,4906,4907,7,8,0,0,4907,916,1,0,0,0,4908,4909,7,16,0,0,4909, - 4910,7,9,0,0,4910,4911,7,12,0,0,4911,4912,7,9,0,0,4912,4913,7,11, - 0,0,4913,4914,7,2,0,0,4914,4915,7,8,0,0,4915,4916,7,9,0,0,4916,4917, - 7,15,0,0,4917,918,1,0,0,0,4918,4919,7,22,0,0,4919,4920,7,6,0,0,4920, - 4921,7,24,0,0,4921,920,1,0,0,0,4922,4923,7,22,0,0,4923,4924,7,6, - 0,0,4924,4925,7,21,0,0,4925,4926,7,11,0,0,4926,4927,7,4,0,0,4927, - 922,1,0,0,0,4928,4929,7,19,0,0,4929,4930,7,16,0,0,4930,4931,7,12, - 0,0,4931,4932,7,6,0,0,4932,4933,7,11,0,0,4933,4934,7,9,0,0,4934, - 924,1,0,0,0,4935,4936,7,19,0,0,4936,4937,7,12,0,0,4937,4938,7,7, - 0,0,4938,4939,7,5,0,0,4939,4940,7,21,0,0,4940,4941,7,15,0,0,4941, - 4942,7,19,0,0,4942,4943,7,12,0,0,4943,4944,7,16,0,0,4944,926,1,0, - 0,0,4945,4946,7,27,0,0,4946,4947,7,2,0,0,4947,4948,7,11,0,0,4948, - 928,1,0,0,0,4949,4950,7,27,0,0,4950,4951,7,2,0,0,4951,4952,7,11, - 0,0,4952,4953,7,4,0,0,4953,930,1,0,0,0,4954,4955,7,27,0,0,4955,4956, - 7,2,0,0,4956,4957,7,20,0,0,4957,4958,7,2,0,0,4958,932,1,0,0,0,4959, - 4960,7,25,0,0,4960,4961,7,9,0,0,4961,4962,7,13,0,0,4962,934,1,0, - 0,0,4963,4964,7,5,0,0,4964,4965,7,2,0,0,4965,4966,7,4,0,0,4966,4967, - 7,8,0,0,4967,936,1,0,0,0,4968,4969,7,5,0,0,4969,4970,7,6,0,0,4970, - 4971,7,2,0,0,4971,4972,7,15,0,0,4972,938,1,0,0,0,4973,4974,7,17, - 0,0,4974,4975,7,2,0,0,4975,4976,7,24,0,0,4976,940,1,0,0,0,4977,4978, - 7,17,0,0,4978,4979,7,19,0,0,4979,4980,7,7,0,0,4980,4981,7,11,0,0, - 4981,4982,7,6,0,0,4982,4983,7,4,0,0,4983,4984,7,9,0,0,4984,4985, - 7,7,0,0,4985,4986,7,6,0,0,4986,4987,7,12,0,0,4987,4988,7,15,0,0, - 4988,942,1,0,0,0,4989,4990,7,17,0,0,4990,4991,7,19,0,0,4991,4992, - 7,5,0,0,4992,4993,7,5,0,0,4993,4994,7,9,0,0,4994,4995,7,12,0,0,4995, - 4996,7,12,0,0,4996,4997,7,19,0,0,4997,4998,7,21,0,0,4998,4999,7, - 17,0,0,4999,944,1,0,0,0,5000,5001,7,17,0,0,5001,5002,7,19,0,0,5002, - 5003,7,5,0,0,5003,5004,7,5,0,0,5004,5005,7,19,0,0,5005,5006,7,4, - 0,0,5006,5007,7,9,0,0,5007,5008,7,7,0,0,5008,5009,7,6,0,0,5009,5010, - 7,12,0,0,5010,5011,7,15,0,0,5011,946,1,0,0,0,5012,5013,7,17,0,0, - 5013,5014,7,19,0,0,5014,5015,7,12,0,0,5015,5016,7,21,0,0,5016,5017, - 7,8,0,0,5017,5018,7,9,0,0,5018,5019,7,4,0,0,5019,948,1,0,0,0,5020, - 5021,7,17,0,0,5021,5022,7,6,0,0,5022,5023,7,12,0,0,5023,5024,7,8, - 0,0,5024,5025,7,22,0,0,5025,5026,7,4,0,0,5026,950,1,0,0,0,5027,5028, - 7,12,0,0,5028,5029,7,2,0,0,5029,5030,7,12,0,0,5030,5031,7,6,0,0, - 5031,5032,7,4,0,0,5032,5033,7,9,0,0,5033,5034,7,7,0,0,5034,5035, - 7,6,0,0,5035,5036,7,12,0,0,5036,5037,7,15,0,0,5037,952,1,0,0,0,5038, - 5039,7,12,0,0,5039,5040,7,21,0,0,5040,5041,7,5,0,0,5041,5042,7,5, - 0,0,5042,5043,7,4,0,0,5043,954,1,0,0,0,5044,5045,7,6,0,0,5045,5046, - 7,24,0,0,5046,5047,7,8,0,0,5047,5048,7,19,0,0,5048,5049,7,6,0,0, - 5049,5050,7,12,0,0,5050,5051,7,4,0,0,5051,956,1,0,0,0,5052,5053, - 7,24,0,0,5053,5054,7,2,0,0,5054,5055,7,4,0,0,5055,5056,7,8,0,0,5056, - 958,1,0,0,0,5057,5058,7,24,0,0,5058,5059,7,5,0,0,5059,5060,7,2,0, - 0,5060,5061,7,12,0,0,5061,960,1,0,0,0,5062,5063,7,24,0,0,5063,5064, - 7,11,0,0,5064,5065,7,9,0,0,5065,5066,7,7,0,0,5066,5067,7,9,0,0,5067, - 5068,7,15,0,0,5068,5069,7,19,0,0,5069,5070,7,12,0,0,5070,5071,7, - 16,0,0,5071,962,1,0,0,0,5072,5073,7,24,0,0,5073,5074,7,13,0,0,5074, - 5075,7,8,0,0,5075,5076,7,22,0,0,5076,5077,7,6,0,0,5077,5078,7,12, - 0,0,5078,964,1,0,0,0,5079,5080,7,24,0,0,5080,5081,7,13,0,0,5081, - 5082,7,8,0,0,5082,5083,7,22,0,0,5083,5084,7,6,0,0,5084,5085,7,12, - 0,0,5085,5086,5,95,0,0,5086,5087,7,2,0,0,5087,5088,7,11,0,0,5088, - 5089,7,7,0,0,5089,5090,7,22,0,0,5090,5091,7,19,0,0,5091,5092,7,20, - 0,0,5092,5093,7,9,0,0,5093,5094,7,4,0,0,5094,966,1,0,0,0,5095,5096, - 7,24,0,0,5096,5097,7,13,0,0,5097,5098,7,8,0,0,5098,5099,7,22,0,0, - 5099,5100,7,6,0,0,5100,5101,7,12,0,0,5101,5102,5,95,0,0,5102,5103, - 7,15,0,0,5103,5104,7,9,0,0,5104,5105,7,24,0,0,5105,5106,7,9,0,0, - 5106,5107,7,12,0,0,5107,5108,7,15,0,0,5108,5109,7,9,0,0,5109,5110, - 7,12,0,0,5110,5111,7,7,0,0,5111,5112,7,19,0,0,5112,5113,7,9,0,0, - 5113,5114,7,4,0,0,5114,968,1,0,0,0,5115,5116,7,24,0,0,5116,5117, - 7,13,0,0,5117,5118,7,8,0,0,5118,5119,7,22,0,0,5119,5120,7,6,0,0, - 5120,5121,7,12,0,0,5121,5122,5,95,0,0,5122,5123,7,23,0,0,5123,5124, - 7,19,0,0,5124,5125,7,5,0,0,5125,5126,7,9,0,0,5126,5127,7,4,0,0,5127, - 970,1,0,0,0,5128,5129,7,24,0,0,5129,5130,7,13,0,0,5130,5131,7,8, - 0,0,5131,5132,7,22,0,0,5132,5133,7,6,0,0,5133,5134,7,12,0,0,5134, - 5135,5,95,0,0,5135,5136,7,27,0,0,5136,5137,7,2,0,0,5137,5138,7,11, - 0,0,5138,972,1,0,0,0,5139,5140,7,24,0,0,5140,5141,7,13,0,0,5141, - 5142,7,8,0,0,5142,5143,7,22,0,0,5143,5144,7,6,0,0,5144,5145,7,12, - 0,0,5145,5146,5,95,0,0,5146,5147,7,24,0,0,5147,5148,7,2,0,0,5148, - 5149,7,11,0,0,5149,5150,7,2,0,0,5150,5151,7,17,0,0,5151,5152,7,9, - 0,0,5152,5153,7,8,0,0,5153,5154,7,9,0,0,5154,5155,7,11,0,0,5155, - 974,1,0,0,0,5156,5157,7,24,0,0,5157,5158,7,13,0,0,5158,5159,7,8, - 0,0,5159,5160,7,22,0,0,5160,5161,7,6,0,0,5161,5162,7,12,0,0,5162, - 5163,5,95,0,0,5163,5164,7,11,0,0,5164,5165,7,9,0,0,5165,5166,7,26, - 0,0,5166,5167,7,21,0,0,5167,5168,7,19,0,0,5168,5169,7,11,0,0,5169, - 5170,7,9,0,0,5170,5171,7,17,0,0,5171,5172,7,9,0,0,5172,5173,7,12, - 0,0,5173,5174,7,8,0,0,5174,5175,7,4,0,0,5175,976,1,0,0,0,5176,5177, - 7,26,0,0,5177,5178,7,21,0,0,5178,5179,7,2,0,0,5179,5180,7,11,0,0, - 5180,5181,7,8,0,0,5181,5182,7,9,0,0,5182,5183,7,11,0,0,5183,978, - 1,0,0,0,5184,5185,7,11,0,0,5185,5186,7,9,0,0,5186,5187,7,17,0,0, - 5187,5188,7,6,0,0,5188,5189,7,20,0,0,5189,5190,7,9,0,0,5190,980, - 1,0,0,0,5191,5192,7,11,0,0,5192,5193,7,9,0,0,5193,5194,7,4,0,0,5194, - 5195,7,8,0,0,5195,5196,7,11,0,0,5196,5197,7,19,0,0,5197,5198,7,7, - 0,0,5198,5199,7,8,0,0,5199,982,1,0,0,0,5200,5201,7,4,0,0,5201,5202, - 7,9,0,0,5202,5203,7,7,0,0,5203,5204,7,6,0,0,5204,5205,7,12,0,0,5205, - 5206,7,15,0,0,5206,5207,7,4,0,0,5207,984,1,0,0,0,5208,5209,7,4,0, - 0,5209,5210,7,9,0,0,5210,5211,7,4,0,0,5211,5212,7,4,0,0,5212,5213, - 7,19,0,0,5213,5214,7,6,0,0,5214,5215,7,12,0,0,5215,986,1,0,0,0,5216, - 5217,7,4,0,0,5217,5218,7,9,0,0,5218,5219,7,8,0,0,5219,5220,7,4,0, - 0,5220,988,1,0,0,0,5221,5222,7,4,0,0,5222,5223,7,19,0,0,5223,5224, - 7,14,0,0,5224,5225,7,9,0,0,5225,990,1,0,0,0,5226,5227,7,4,0,0,5227, - 5228,7,5,0,0,5228,5229,7,19,0,0,5229,5230,7,15,0,0,5230,5231,7,9, - 0,0,5231,992,1,0,0,0,5232,5233,7,4,0,0,5233,5234,7,8,0,0,5234,5235, - 7,9,0,0,5235,5236,7,24,0,0,5236,994,1,0,0,0,5237,5238,7,8,0,0,5238, - 5239,7,9,0,0,5239,5240,7,17,0,0,5240,5241,7,24,0,0,5241,5242,7,6, - 0,0,5242,5243,7,11,0,0,5243,5244,7,2,0,0,5244,5245,7,11,0,0,5245, - 5246,7,13,0,0,5246,996,1,0,0,0,5247,5248,7,8,0,0,5248,5249,7,19, - 0,0,5249,5250,7,17,0,0,5250,5251,7,9,0,0,5251,5252,7,7,0,0,5252, - 5253,7,6,0,0,5253,5254,7,5,0,0,5254,998,1,0,0,0,5255,5256,7,8,0, - 0,5256,5257,7,21,0,0,5257,5258,7,17,0,0,5258,5259,7,3,0,0,5259,5260, - 7,5,0,0,5260,5261,7,9,0,0,5261,1000,1,0,0,0,5262,5263,7,21,0,0,5263, - 5264,7,12,0,0,5264,5265,7,5,0,0,5265,5266,7,6,0,0,5266,5267,7,2, - 0,0,5267,5268,7,15,0,0,5268,1002,1,0,0,0,5269,5270,7,20,0,0,5270, - 5271,7,19,0,0,5271,5272,7,9,0,0,5272,5273,7,10,0,0,5273,1004,1,0, - 0,0,5274,5275,7,10,0,0,5275,5276,7,9,0,0,5276,5277,7,9,0,0,5277, - 5278,7,25,0,0,5278,1006,1,0,0,0,5279,5280,7,13,0,0,5280,5281,7,9, - 0,0,5281,5282,7,2,0,0,5282,5283,7,11,0,0,5283,5284,7,4,0,0,5284, - 1008,1,0,0,0,5285,5286,7,14,0,0,5286,5287,7,6,0,0,5287,5288,7,12, - 0,0,5288,5289,7,9,0,0,5289,1010,1,0,0,0,5290,5291,5,61,0,0,5291, - 1012,1,0,0,0,5292,5293,5,62,0,0,5293,1014,1,0,0,0,5294,5295,5,60, - 0,0,5295,1016,1,0,0,0,5296,5297,5,33,0,0,5297,1018,1,0,0,0,5298, - 5299,5,126,0,0,5299,1020,1,0,0,0,5300,5301,5,124,0,0,5301,1022,1, - 0,0,0,5302,5303,5,38,0,0,5303,1024,1,0,0,0,5304,5305,5,94,0,0,5305, - 1026,1,0,0,0,5306,5307,5,46,0,0,5307,1028,1,0,0,0,5308,5309,5,91, - 0,0,5309,1030,1,0,0,0,5310,5311,5,93,0,0,5311,1032,1,0,0,0,5312, - 5313,5,40,0,0,5313,1034,1,0,0,0,5314,5315,5,41,0,0,5315,1036,1,0, - 0,0,5316,5317,5,123,0,0,5317,1038,1,0,0,0,5318,5319,5,125,0,0,5319, - 1040,1,0,0,0,5320,5321,5,44,0,0,5321,1042,1,0,0,0,5322,5323,5,59, - 0,0,5323,1044,1,0,0,0,5324,5325,5,64,0,0,5325,1046,1,0,0,0,5326, - 5327,5,39,0,0,5327,1048,1,0,0,0,5328,5329,5,34,0,0,5329,1050,1,0, - 0,0,5330,5331,5,96,0,0,5331,1052,1,0,0,0,5332,5333,5,58,0,0,5333, - 1054,1,0,0,0,5334,5335,5,42,0,0,5335,1056,1,0,0,0,5336,5337,5,95, - 0,0,5337,1058,1,0,0,0,5338,5339,5,45,0,0,5339,1060,1,0,0,0,5340, - 5341,5,43,0,0,5341,1062,1,0,0,0,5342,5343,5,37,0,0,5343,1064,1,0, - 0,0,5344,5345,5,124,0,0,5345,5346,5,124,0,0,5346,1066,1,0,0,0,5347, - 5348,5,45,0,0,5348,5349,5,45,0,0,5349,1068,1,0,0,0,5350,5351,5,47, - 0,0,5351,1070,1,0,0,0,5352,5353,5,63,0,0,5353,1072,1,0,0,0,5354, - 5355,5,61,0,0,5355,5356,5,62,0,0,5356,1074,1,0,0,0,5357,5361,3,1095, - 547,0,5358,5361,3,1097,548,0,5359,5361,3,1101,550,0,5360,5357,1, - 0,0,0,5360,5358,1,0,0,0,5360,5359,1,0,0,0,5361,1076,1,0,0,0,5362, - 5364,3,1091,545,0,5363,5362,1,0,0,0,5364,5365,1,0,0,0,5365,5363, - 1,0,0,0,5365,5366,1,0,0,0,5366,1078,1,0,0,0,5367,5369,3,1091,545, - 0,5368,5367,1,0,0,0,5369,5370,1,0,0,0,5370,5368,1,0,0,0,5370,5371, - 1,0,0,0,5371,5373,1,0,0,0,5372,5368,1,0,0,0,5372,5373,1,0,0,0,5373, - 5374,1,0,0,0,5374,5376,5,46,0,0,5375,5377,3,1091,545,0,5376,5375, - 1,0,0,0,5377,5378,1,0,0,0,5378,5376,1,0,0,0,5378,5379,1,0,0,0,5379, - 5411,1,0,0,0,5380,5382,3,1091,545,0,5381,5380,1,0,0,0,5382,5383, - 1,0,0,0,5383,5381,1,0,0,0,5383,5384,1,0,0,0,5384,5385,1,0,0,0,5385, - 5386,5,46,0,0,5386,5387,3,1087,543,0,5387,5411,1,0,0,0,5388,5390, - 3,1091,545,0,5389,5388,1,0,0,0,5390,5391,1,0,0,0,5391,5389,1,0,0, - 0,5391,5392,1,0,0,0,5392,5394,1,0,0,0,5393,5389,1,0,0,0,5393,5394, - 1,0,0,0,5394,5395,1,0,0,0,5395,5397,5,46,0,0,5396,5398,3,1091,545, - 0,5397,5396,1,0,0,0,5398,5399,1,0,0,0,5399,5397,1,0,0,0,5399,5400, - 1,0,0,0,5400,5401,1,0,0,0,5401,5402,3,1087,543,0,5402,5411,1,0,0, - 0,5403,5405,3,1091,545,0,5404,5403,1,0,0,0,5405,5406,1,0,0,0,5406, - 5404,1,0,0,0,5406,5407,1,0,0,0,5407,5408,1,0,0,0,5408,5409,3,1087, - 543,0,5409,5411,1,0,0,0,5410,5372,1,0,0,0,5410,5381,1,0,0,0,5410, - 5393,1,0,0,0,5410,5404,1,0,0,0,5411,1080,1,0,0,0,5412,5413,3,1099, - 549,0,5413,1082,1,0,0,0,5414,5415,3,1089,544,0,5415,1084,1,0,0,0, - 5416,5424,5,96,0,0,5417,5418,5,92,0,0,5418,5423,9,0,0,0,5419,5420, - 5,96,0,0,5420,5423,5,96,0,0,5421,5423,8,28,0,0,5422,5417,1,0,0,0, - 5422,5419,1,0,0,0,5422,5421,1,0,0,0,5423,5426,1,0,0,0,5424,5422, - 1,0,0,0,5424,5425,1,0,0,0,5425,5427,1,0,0,0,5426,5424,1,0,0,0,5427, - 5428,5,96,0,0,5428,1086,1,0,0,0,5429,5431,7,9,0,0,5430,5432,7,29, - 0,0,5431,5430,1,0,0,0,5431,5432,1,0,0,0,5432,5434,1,0,0,0,5433,5435, - 3,1091,545,0,5434,5433,1,0,0,0,5435,5436,1,0,0,0,5436,5434,1,0,0, - 0,5436,5437,1,0,0,0,5437,1088,1,0,0,0,5438,5440,7,30,0,0,5439,5438, - 1,0,0,0,5440,5443,1,0,0,0,5441,5442,1,0,0,0,5441,5439,1,0,0,0,5442, - 5445,1,0,0,0,5443,5441,1,0,0,0,5444,5446,7,31,0,0,5445,5444,1,0, - 0,0,5446,5447,1,0,0,0,5447,5448,1,0,0,0,5447,5445,1,0,0,0,5448,5452, - 1,0,0,0,5449,5451,7,30,0,0,5450,5449,1,0,0,0,5451,5454,1,0,0,0,5452, - 5450,1,0,0,0,5452,5453,1,0,0,0,5453,1090,1,0,0,0,5454,5452,1,0,0, - 0,5455,5456,7,32,0,0,5456,1092,1,0,0,0,5457,5458,7,33,0,0,5458,1094, - 1,0,0,0,5459,5467,5,34,0,0,5460,5461,5,92,0,0,5461,5466,9,0,0,0, - 5462,5463,5,34,0,0,5463,5466,5,34,0,0,5464,5466,8,34,0,0,5465,5460, - 1,0,0,0,5465,5462,1,0,0,0,5465,5464,1,0,0,0,5466,5469,1,0,0,0,5467, - 5465,1,0,0,0,5467,5468,1,0,0,0,5468,5470,1,0,0,0,5469,5467,1,0,0, - 0,5470,5471,5,34,0,0,5471,1096,1,0,0,0,5472,5480,5,39,0,0,5473,5474, - 5,92,0,0,5474,5479,9,0,0,0,5475,5476,5,39,0,0,5476,5479,5,39,0,0, - 5477,5479,8,35,0,0,5478,5473,1,0,0,0,5478,5475,1,0,0,0,5478,5477, - 1,0,0,0,5479,5482,1,0,0,0,5480,5478,1,0,0,0,5480,5481,1,0,0,0,5481, - 5483,1,0,0,0,5482,5480,1,0,0,0,5483,5484,5,39,0,0,5484,1098,1,0, - 0,0,5485,5486,7,3,0,0,5486,5488,5,39,0,0,5487,5489,7,36,0,0,5488, - 5487,1,0,0,0,5489,5490,1,0,0,0,5490,5488,1,0,0,0,5490,5491,1,0,0, - 0,5491,5492,1,0,0,0,5492,5493,5,39,0,0,5493,1100,1,0,0,0,5494,5502, - 5,96,0,0,5495,5496,5,92,0,0,5496,5501,9,0,0,0,5497,5498,5,96,0,0, - 5498,5501,5,96,0,0,5499,5501,8,28,0,0,5500,5495,1,0,0,0,5500,5497, - 1,0,0,0,5500,5499,1,0,0,0,5501,5504,1,0,0,0,5502,5500,1,0,0,0,5502, - 5503,1,0,0,0,5503,5505,1,0,0,0,5504,5502,1,0,0,0,5505,5506,5,96, - 0,0,5506,1102,1,0,0,0,34,0,1113,1124,1129,1133,1137,1143,1147,1149, - 5360,5365,5370,5372,5378,5383,5391,5393,5399,5406,5410,5422,5424, - 5431,5436,5441,5447,5452,5465,5467,5478,5480,5490,5500,5502,1,0, + 7,6,0,0,2713,2714,7,12,0,0,2714,2715,5,95,0,0,2715,2716,7,2,0,0, + 2716,2717,7,11,0,0,2717,2718,7,11,0,0,2718,2719,7,2,0,0,2719,2720, + 7,13,0,0,2720,2721,7,2,0,0,2721,2722,7,16,0,0,2722,2723,7,16,0,0, + 2723,378,1,0,0,0,2724,2725,7,27,0,0,2725,2726,7,4,0,0,2726,2727, + 7,6,0,0,2727,2728,7,12,0,0,2728,2729,5,95,0,0,2729,2730,7,9,0,0, + 2730,2731,7,18,0,0,2731,2732,7,9,0,0,2732,2733,7,7,0,0,2733,2734, + 7,21,0,0,2734,2735,7,8,0,0,2735,2736,7,19,0,0,2736,2737,7,6,0,0, + 2737,2738,7,12,0,0,2738,2739,5,95,0,0,2739,2740,7,24,0,0,2740,2741, + 7,5,0,0,2741,2742,7,2,0,0,2742,2743,7,12,0,0,2743,380,1,0,0,0,2744, + 2745,7,27,0,0,2745,2746,7,4,0,0,2746,2747,7,6,0,0,2747,2748,7,12, + 0,0,2748,2749,5,95,0,0,2749,2750,7,9,0,0,2750,2751,7,18,0,0,2751, + 2752,7,19,0,0,2752,2753,7,4,0,0,2753,2754,7,8,0,0,2754,2755,7,4, + 0,0,2755,382,1,0,0,0,2756,2757,7,27,0,0,2757,2758,7,4,0,0,2758,2759, + 7,6,0,0,2759,2760,7,12,0,0,2760,2761,5,95,0,0,2761,2762,7,6,0,0, + 2762,2763,7,3,0,0,2763,2764,7,27,0,0,2764,2765,7,9,0,0,2765,2766, + 7,7,0,0,2766,2767,7,8,0,0,2767,384,1,0,0,0,2768,2769,7,27,0,0,2769, + 2770,7,4,0,0,2770,2771,7,6,0,0,2771,2772,7,12,0,0,2772,2773,5,95, + 0,0,2773,2774,7,6,0,0,2774,2775,7,3,0,0,2775,2776,7,27,0,0,2776, + 2777,7,9,0,0,2777,2778,7,7,0,0,2778,2779,7,8,0,0,2779,2780,7,2,0, + 0,2780,2781,7,16,0,0,2781,2782,7,16,0,0,2782,386,1,0,0,0,2783,2784, + 7,27,0,0,2784,2785,7,4,0,0,2785,2786,7,6,0,0,2786,2787,7,12,0,0, + 2787,2788,5,95,0,0,2788,2789,7,26,0,0,2789,2790,7,21,0,0,2790,2791, + 7,9,0,0,2791,2792,7,11,0,0,2792,2793,7,13,0,0,2793,388,1,0,0,0,2794, + 2795,7,27,0,0,2795,2796,7,4,0,0,2796,2797,7,6,0,0,2797,2798,7,12, + 0,0,2798,2799,5,95,0,0,2799,2800,7,20,0,0,2800,2801,7,2,0,0,2801, + 2802,7,5,0,0,2802,2803,7,21,0,0,2803,2804,7,9,0,0,2804,390,1,0,0, + 0,2805,2806,7,5,0,0,2806,2807,7,2,0,0,2807,2808,7,16,0,0,2808,392, + 1,0,0,0,2809,2810,7,5,0,0,2810,2811,7,2,0,0,2811,2812,7,12,0,0,2812, + 2813,7,16,0,0,2813,2814,7,21,0,0,2814,2815,7,2,0,0,2815,2816,7,16, + 0,0,2816,2817,7,9,0,0,2817,394,1,0,0,0,2818,2819,7,5,0,0,2819,2820, + 7,2,0,0,2820,2821,7,11,0,0,2821,2822,7,16,0,0,2822,2823,7,9,0,0, + 2823,396,1,0,0,0,2824,2825,7,5,0,0,2825,2826,7,2,0,0,2826,2827,7, + 4,0,0,2827,2828,7,8,0,0,2828,2829,5,95,0,0,2829,2830,7,20,0,0,2830, + 2831,7,2,0,0,2831,2832,7,5,0,0,2832,2833,7,21,0,0,2833,2834,7,9, + 0,0,2834,398,1,0,0,0,2835,2836,7,5,0,0,2836,2837,7,2,0,0,2837,2838, + 7,8,0,0,2838,2839,7,9,0,0,2839,2840,7,11,0,0,2840,2841,7,2,0,0,2841, + 2842,7,5,0,0,2842,400,1,0,0,0,2843,2844,7,5,0,0,2844,2845,7,9,0, + 0,2845,2846,7,2,0,0,2846,2847,7,15,0,0,2847,402,1,0,0,0,2848,2849, + 7,5,0,0,2849,2850,7,9,0,0,2850,2851,7,2,0,0,2851,2852,7,15,0,0,2852, + 2853,7,19,0,0,2853,2854,7,12,0,0,2854,2855,7,16,0,0,2855,404,1,0, + 0,0,2856,2857,7,5,0,0,2857,2858,7,9,0,0,2858,2859,7,23,0,0,2859, + 2860,7,8,0,0,2860,406,1,0,0,0,2861,2862,7,5,0,0,2862,2863,7,19,0, + 0,2863,2864,7,25,0,0,2864,2865,7,9,0,0,2865,408,1,0,0,0,2866,2867, + 7,5,0,0,2867,2868,7,19,0,0,2868,2869,7,25,0,0,2869,2870,7,9,0,0, + 2870,2871,5,95,0,0,2871,2872,7,11,0,0,2872,2873,7,9,0,0,2873,2874, + 7,16,0,0,2874,2875,7,9,0,0,2875,2876,7,18,0,0,2876,410,1,0,0,0,2877, + 2878,7,5,0,0,2878,2879,7,19,0,0,2879,2880,7,17,0,0,2880,2881,7,19, + 0,0,2881,2882,7,8,0,0,2882,412,1,0,0,0,2883,2884,7,5,0,0,2884,2885, + 7,12,0,0,2885,414,1,0,0,0,2886,2887,7,5,0,0,2887,2888,7,6,0,0,2888, + 2889,7,7,0,0,2889,2890,7,2,0,0,2890,2891,7,5,0,0,2891,416,1,0,0, + 0,2892,2893,7,5,0,0,2893,2894,7,6,0,0,2894,2895,7,7,0,0,2895,2896, + 7,2,0,0,2896,2897,7,5,0,0,2897,2898,7,8,0,0,2898,2899,7,19,0,0,2899, + 2900,7,17,0,0,2900,2901,7,9,0,0,2901,418,1,0,0,0,2902,2903,7,5,0, + 0,2903,2904,7,6,0,0,2904,2905,7,7,0,0,2905,2906,7,2,0,0,2906,2907, + 7,5,0,0,2907,2908,7,8,0,0,2908,2909,7,19,0,0,2909,2910,7,17,0,0, + 2910,2911,7,9,0,0,2911,2912,7,4,0,0,2912,2913,7,8,0,0,2913,2914, + 7,2,0,0,2914,2915,7,17,0,0,2915,2916,7,24,0,0,2916,420,1,0,0,0,2917, + 2918,7,5,0,0,2918,2919,7,6,0,0,2919,2920,7,10,0,0,2920,2921,7,9, + 0,0,2921,2922,7,11,0,0,2922,422,1,0,0,0,2923,2924,7,17,0,0,2924, + 2925,7,2,0,0,2925,2926,7,8,0,0,2926,2927,7,7,0,0,2927,2928,7,22, + 0,0,2928,424,1,0,0,0,2929,2930,7,17,0,0,2930,2931,7,2,0,0,2931,2932, + 7,8,0,0,2932,2933,7,7,0,0,2933,2934,7,22,0,0,2934,2935,7,9,0,0,2935, + 2936,7,4,0,0,2936,426,1,0,0,0,2937,2938,7,17,0,0,2938,2939,7,2,0, + 0,2939,2940,7,8,0,0,2940,2941,7,7,0,0,2941,2942,7,22,0,0,2942,2943, + 5,95,0,0,2943,2944,7,12,0,0,2944,2945,7,21,0,0,2945,2946,7,17,0, + 0,2946,2947,7,3,0,0,2947,2948,7,9,0,0,2948,2949,7,11,0,0,2949,428, + 1,0,0,0,2950,2951,7,17,0,0,2951,2952,7,2,0,0,2952,2953,7,8,0,0,2953, + 2954,7,7,0,0,2954,2955,7,22,0,0,2955,2956,5,95,0,0,2956,2957,7,11, + 0,0,2957,2958,7,9,0,0,2958,2959,7,7,0,0,2959,2960,7,6,0,0,2960,2961, + 7,16,0,0,2961,2962,7,12,0,0,2962,2963,7,19,0,0,2963,2964,7,14,0, + 0,2964,2965,7,9,0,0,2965,430,1,0,0,0,2966,2967,7,17,0,0,2967,2968, + 7,2,0,0,2968,2969,7,18,0,0,2969,432,1,0,0,0,2970,2971,7,17,0,0,2971, + 2972,7,9,0,0,2972,2973,7,2,0,0,2973,2974,7,4,0,0,2974,2975,7,21, + 0,0,2975,2976,7,11,0,0,2976,2977,7,9,0,0,2977,2978,7,4,0,0,2978, + 434,1,0,0,0,2979,2980,7,17,0,0,2980,2981,7,9,0,0,2981,2982,7,17, + 0,0,2982,2983,7,3,0,0,2983,2984,7,9,0,0,2984,2985,7,11,0,0,2985, + 436,1,0,0,0,2986,2987,7,17,0,0,2987,2988,7,9,0,0,2988,2989,7,11, + 0,0,2989,2990,7,16,0,0,2990,2991,7,9,0,0,2991,438,1,0,0,0,2992,2993, + 7,17,0,0,2993,2994,7,9,0,0,2994,2995,7,8,0,0,2995,2996,7,2,0,0,2996, + 2997,7,15,0,0,2997,2998,7,2,0,0,2998,2999,7,8,0,0,2999,3000,7,2, + 0,0,3000,440,1,0,0,0,3001,3002,7,17,0,0,3002,3003,7,9,0,0,3003,3004, + 7,8,0,0,3004,3005,7,22,0,0,3005,3006,7,6,0,0,3006,3007,7,15,0,0, + 3007,442,1,0,0,0,3008,3009,7,17,0,0,3009,3010,7,19,0,0,3010,3011, + 7,12,0,0,3011,444,1,0,0,0,3012,3013,7,17,0,0,3013,3014,7,19,0,0, + 3014,3015,7,12,0,0,3015,3016,7,21,0,0,3016,3017,7,4,0,0,3017,446, + 1,0,0,0,3018,3019,7,17,0,0,3019,3020,7,19,0,0,3020,3021,7,12,0,0, + 3021,3022,7,21,0,0,3022,3023,7,8,0,0,3023,3024,7,9,0,0,3024,448, + 1,0,0,0,3025,3026,7,17,0,0,3026,3027,7,6,0,0,3027,3028,7,15,0,0, + 3028,450,1,0,0,0,3029,3030,7,17,0,0,3030,3031,7,6,0,0,3031,3032, + 7,15,0,0,3032,3033,7,19,0,0,3033,3034,7,23,0,0,3034,3035,7,19,0, + 0,3035,3036,7,9,0,0,3036,3037,7,4,0,0,3037,452,1,0,0,0,3038,3039, + 7,17,0,0,3039,3040,7,6,0,0,3040,3041,7,15,0,0,3041,3042,7,19,0,0, + 3042,3043,7,23,0,0,3043,3044,7,13,0,0,3044,454,1,0,0,0,3045,3046, + 7,17,0,0,3046,3047,7,6,0,0,3047,3048,7,15,0,0,3048,3049,7,21,0,0, + 3049,3050,7,5,0,0,3050,3051,7,9,0,0,3051,456,1,0,0,0,3052,3053,7, + 17,0,0,3053,3054,7,6,0,0,3054,3055,7,15,0,0,3055,3056,7,21,0,0,3056, + 3057,7,5,0,0,3057,3058,7,9,0,0,3058,3059,7,4,0,0,3059,458,1,0,0, + 0,3060,3061,7,17,0,0,3061,3062,7,6,0,0,3062,3063,7,12,0,0,3063,3064, + 7,15,0,0,3064,3065,7,2,0,0,3065,3066,7,13,0,0,3066,460,1,0,0,0,3067, + 3068,7,17,0,0,3068,3069,7,6,0,0,3069,3070,7,12,0,0,3070,3071,7,8, + 0,0,3071,3072,7,22,0,0,3072,462,1,0,0,0,3073,3074,7,17,0,0,3074, + 3075,7,6,0,0,3075,3076,7,11,0,0,3076,3077,7,9,0,0,3077,464,1,0,0, + 0,3078,3079,7,17,0,0,3079,3080,7,21,0,0,3080,3081,7,5,0,0,3081,3082, + 7,8,0,0,3082,3083,7,19,0,0,3083,3084,7,4,0,0,3084,3085,7,9,0,0,3085, + 3086,7,8,0,0,3086,466,1,0,0,0,3087,3088,7,12,0,0,3088,3089,7,2,0, + 0,3089,3090,7,8,0,0,3090,3091,7,19,0,0,3091,3092,7,6,0,0,3092,3093, + 7,12,0,0,3093,3094,7,2,0,0,3094,3095,7,5,0,0,3095,468,1,0,0,0,3096, + 3097,7,12,0,0,3097,3098,7,2,0,0,3098,3099,7,8,0,0,3099,3100,7,21, + 0,0,3100,3101,7,11,0,0,3101,3102,7,2,0,0,3102,3103,7,5,0,0,3103, + 470,1,0,0,0,3104,3105,7,12,0,0,3105,3106,7,7,0,0,3106,3107,7,22, + 0,0,3107,3108,7,2,0,0,3108,3109,7,11,0,0,3109,472,1,0,0,0,3110,3111, + 7,12,0,0,3111,3112,7,7,0,0,3112,3113,7,5,0,0,3113,3114,7,6,0,0,3114, + 3115,7,3,0,0,3115,474,1,0,0,0,3116,3117,7,12,0,0,3117,3118,7,9,0, + 0,3118,3119,7,10,0,0,3119,476,1,0,0,0,3120,3121,7,12,0,0,3121,3122, + 7,9,0,0,3122,3123,7,18,0,0,3123,3124,7,8,0,0,3124,478,1,0,0,0,3125, + 3126,7,12,0,0,3126,3127,7,6,0,0,3127,480,1,0,0,0,3128,3129,7,12, + 0,0,3129,3130,7,6,0,0,3130,3131,7,12,0,0,3131,3132,7,9,0,0,3132, + 482,1,0,0,0,3133,3134,7,12,0,0,3134,3135,7,6,0,0,3135,3136,7,11, + 0,0,3136,3137,7,17,0,0,3137,3138,7,2,0,0,3138,3139,7,5,0,0,3139, + 3140,7,19,0,0,3140,3141,7,14,0,0,3141,3142,7,9,0,0,3142,484,1,0, + 0,0,3143,3144,7,12,0,0,3144,3145,7,6,0,0,3145,3146,7,8,0,0,3146, + 486,1,0,0,0,3147,3148,7,12,0,0,3148,3149,7,8,0,0,3149,3150,7,22, + 0,0,3150,3151,5,95,0,0,3151,3152,7,20,0,0,3152,3153,7,2,0,0,3153, + 3154,7,5,0,0,3154,3155,7,21,0,0,3155,3156,7,9,0,0,3156,488,1,0,0, + 0,3157,3158,7,12,0,0,3158,3159,7,8,0,0,3159,3160,7,19,0,0,3160,3161, + 7,5,0,0,3161,3162,7,9,0,0,3162,490,1,0,0,0,3163,3164,7,12,0,0,3164, + 3165,7,21,0,0,3165,3166,7,5,0,0,3166,3167,7,5,0,0,3167,492,1,0,0, + 0,3168,3169,7,12,0,0,3169,3170,7,21,0,0,3170,3171,7,5,0,0,3171,3172, + 7,5,0,0,3172,3173,7,19,0,0,3173,3174,7,23,0,0,3174,494,1,0,0,0,3175, + 3176,7,12,0,0,3176,3177,7,21,0,0,3177,3178,7,17,0,0,3178,3179,7, + 9,0,0,3179,3180,7,11,0,0,3180,3181,7,19,0,0,3181,3182,7,7,0,0,3182, + 496,1,0,0,0,3183,3184,7,6,0,0,3184,3185,7,7,0,0,3185,3186,7,7,0, + 0,3186,3187,7,21,0,0,3187,3188,7,11,0,0,3188,3189,7,11,0,0,3189, + 3190,7,9,0,0,3190,3191,7,12,0,0,3191,3192,7,7,0,0,3192,3193,7,9, + 0,0,3193,3194,7,4,0,0,3194,3195,5,95,0,0,3195,3196,7,11,0,0,3196, + 3197,7,9,0,0,3197,3198,7,16,0,0,3198,3199,7,9,0,0,3199,3200,7,18, + 0,0,3200,498,1,0,0,0,3201,3202,7,6,0,0,3202,3203,7,7,0,0,3203,3204, + 7,8,0,0,3204,3205,7,9,0,0,3205,3206,7,8,0,0,3206,3207,5,95,0,0,3207, + 3208,7,5,0,0,3208,3209,7,9,0,0,3209,3210,7,12,0,0,3210,3211,7,16, + 0,0,3211,3212,7,8,0,0,3212,3213,7,22,0,0,3213,500,1,0,0,0,3214,3215, + 7,6,0,0,3215,3216,7,23,0,0,3216,502,1,0,0,0,3217,3218,7,6,0,0,3218, + 3219,7,23,0,0,3219,3220,7,23,0,0,3220,3221,7,4,0,0,3221,3222,7,9, + 0,0,3222,3223,7,8,0,0,3223,504,1,0,0,0,3224,3225,7,6,0,0,3225,3226, + 7,5,0,0,3226,3227,7,15,0,0,3227,506,1,0,0,0,3228,3229,7,6,0,0,3229, + 3230,7,17,0,0,3230,3231,7,19,0,0,3231,3232,7,8,0,0,3232,508,1,0, + 0,0,3233,3234,7,6,0,0,3234,3235,7,12,0,0,3235,510,1,0,0,0,3236,3237, + 7,6,0,0,3237,3238,7,12,0,0,3238,3239,7,9,0,0,3239,512,1,0,0,0,3240, + 3241,7,6,0,0,3241,3242,7,12,0,0,3242,3243,7,5,0,0,3243,3244,7,13, + 0,0,3244,514,1,0,0,0,3245,3246,7,6,0,0,3246,3247,7,24,0,0,3247,3248, + 7,9,0,0,3248,3249,7,12,0,0,3249,516,1,0,0,0,3250,3251,7,6,0,0,3251, + 3252,7,11,0,0,3252,518,1,0,0,0,3253,3254,7,6,0,0,3254,3255,7,11, + 0,0,3255,3256,7,15,0,0,3256,3257,7,9,0,0,3257,3258,7,11,0,0,3258, + 520,1,0,0,0,3259,3260,7,6,0,0,3260,3261,7,11,0,0,3261,3262,7,15, + 0,0,3262,3263,7,19,0,0,3263,3264,7,12,0,0,3264,3265,7,2,0,0,3265, + 3266,7,5,0,0,3266,522,1,0,0,0,3267,3268,7,6,0,0,3268,3269,7,21,0, + 0,3269,3270,7,8,0,0,3270,524,1,0,0,0,3271,3272,7,6,0,0,3272,3273, + 7,21,0,0,3273,3274,7,8,0,0,3274,3275,7,9,0,0,3275,3276,7,11,0,0, + 3276,526,1,0,0,0,3277,3278,7,6,0,0,3278,3279,7,20,0,0,3279,3280, + 7,9,0,0,3280,3281,7,11,0,0,3281,528,1,0,0,0,3282,3283,7,6,0,0,3283, + 3284,7,20,0,0,3284,3285,7,9,0,0,3285,3286,7,11,0,0,3286,3287,7,5, + 0,0,3287,3288,7,2,0,0,3288,3289,7,24,0,0,3289,3290,7,4,0,0,3290, + 530,1,0,0,0,3291,3292,7,6,0,0,3292,3293,7,20,0,0,3293,3294,7,9,0, + 0,3294,3295,7,11,0,0,3295,3296,7,5,0,0,3296,3297,7,2,0,0,3297,3298, + 7,13,0,0,3298,532,1,0,0,0,3299,3300,7,6,0,0,3300,3301,7,20,0,0,3301, + 3302,7,9,0,0,3302,3303,7,11,0,0,3303,3304,7,10,0,0,3304,3305,7,11, + 0,0,3305,3306,7,19,0,0,3306,3307,7,8,0,0,3307,3308,7,9,0,0,3308, + 534,1,0,0,0,3309,3310,7,6,0,0,3310,3311,7,20,0,0,3311,3312,7,9,0, + 0,3312,3313,7,11,0,0,3313,3314,7,10,0,0,3314,3315,7,11,0,0,3315, + 3316,7,19,0,0,3316,3317,7,8,0,0,3317,3318,7,19,0,0,3318,3319,7,12, + 0,0,3319,3320,7,16,0,0,3320,536,1,0,0,0,3321,3322,7,24,0,0,3322, + 3323,7,2,0,0,3323,3324,7,11,0,0,3324,3325,7,2,0,0,3325,3326,7,17, + 0,0,3326,3327,7,9,0,0,3327,3328,7,8,0,0,3328,3329,7,9,0,0,3329,3330, + 7,11,0,0,3330,538,1,0,0,0,3331,3332,7,24,0,0,3332,3333,7,2,0,0,3333, + 3334,7,11,0,0,3334,3335,7,8,0,0,3335,3336,7,19,0,0,3336,3337,7,8, + 0,0,3337,3338,7,19,0,0,3338,3339,7,6,0,0,3339,3340,7,12,0,0,3340, + 540,1,0,0,0,3341,3342,7,24,0,0,3342,3343,7,2,0,0,3343,3344,7,11, + 0,0,3344,3345,7,8,0,0,3345,3346,7,19,0,0,3346,3347,7,8,0,0,3347, + 3348,7,19,0,0,3348,3349,7,6,0,0,3349,3350,7,12,0,0,3350,3351,7,9, + 0,0,3351,3352,7,15,0,0,3352,542,1,0,0,0,3353,3354,7,24,0,0,3354, + 3355,7,2,0,0,3355,3356,7,11,0,0,3356,3357,7,8,0,0,3357,3358,7,19, + 0,0,3358,3359,7,8,0,0,3359,3360,7,19,0,0,3360,3361,7,6,0,0,3361, + 3362,7,12,0,0,3362,3363,7,4,0,0,3363,544,1,0,0,0,3364,3365,7,24, + 0,0,3365,3366,7,2,0,0,3366,3367,7,8,0,0,3367,3368,7,8,0,0,3368,3369, + 7,9,0,0,3369,3370,7,11,0,0,3370,3371,7,12,0,0,3371,546,1,0,0,0,3372, + 3373,7,24,0,0,3373,3374,7,9,0,0,3374,3375,7,11,0,0,3375,548,1,0, + 0,0,3376,3377,7,24,0,0,3377,3378,7,9,0,0,3378,3379,7,11,0,0,3379, + 3380,7,7,0,0,3380,3381,7,9,0,0,3381,3382,7,12,0,0,3382,3383,7,8, + 0,0,3383,550,1,0,0,0,3384,3385,7,24,0,0,3385,3386,7,9,0,0,3386,3387, + 7,11,0,0,3387,3388,7,7,0,0,3388,3389,7,9,0,0,3389,3390,7,12,0,0, + 3390,3391,7,8,0,0,3391,3392,7,19,0,0,3392,3393,7,5,0,0,3393,3394, + 7,9,0,0,3394,3395,5,95,0,0,3395,3396,7,7,0,0,3396,3397,7,6,0,0,3397, + 3398,7,12,0,0,3398,3399,7,8,0,0,3399,552,1,0,0,0,3400,3401,7,24, + 0,0,3401,3402,7,9,0,0,3402,3403,7,11,0,0,3403,3404,7,7,0,0,3404, + 3405,7,9,0,0,3405,3406,7,12,0,0,3406,3407,7,8,0,0,3407,3408,7,19, + 0,0,3408,3409,7,5,0,0,3409,3410,7,9,0,0,3410,3411,5,95,0,0,3411, + 3412,7,15,0,0,3412,3413,7,19,0,0,3413,3414,7,4,0,0,3414,3415,7,7, + 0,0,3415,554,1,0,0,0,3416,3417,7,24,0,0,3417,3418,7,9,0,0,3418,3419, + 7,11,0,0,3419,3420,7,7,0,0,3420,3421,7,9,0,0,3421,3422,7,12,0,0, + 3422,3423,7,8,0,0,3423,3424,5,95,0,0,3424,3425,7,11,0,0,3425,3426, + 7,2,0,0,3426,3427,7,12,0,0,3427,3428,7,25,0,0,3428,556,1,0,0,0,3429, + 3430,7,24,0,0,3430,3431,7,9,0,0,3431,3432,7,11,0,0,3432,3433,7,19, + 0,0,3433,3434,7,6,0,0,3434,3435,7,15,0,0,3435,558,1,0,0,0,3436,3437, + 7,24,0,0,3437,3438,7,9,0,0,3438,3439,7,11,0,0,3439,3440,7,17,0,0, + 3440,3441,7,21,0,0,3441,3442,7,8,0,0,3442,3443,7,9,0,0,3443,560, + 1,0,0,0,3444,3445,7,24,0,0,3445,3446,7,19,0,0,3446,3447,7,20,0,0, + 3447,3448,7,6,0,0,3448,3449,7,8,0,0,3449,562,1,0,0,0,3450,3451,7, + 24,0,0,3451,3452,7,6,0,0,3452,3453,7,11,0,0,3453,3454,7,8,0,0,3454, + 3455,7,19,0,0,3455,3456,7,6,0,0,3456,3457,7,12,0,0,3457,564,1,0, + 0,0,3458,3459,7,24,0,0,3459,3460,7,6,0,0,3460,3461,7,4,0,0,3461, + 3462,7,19,0,0,3462,3463,7,8,0,0,3463,3464,7,19,0,0,3464,3465,7,6, + 0,0,3465,3466,7,12,0,0,3466,566,1,0,0,0,3467,3468,7,24,0,0,3468, + 3469,7,6,0,0,3469,3470,7,4,0,0,3470,3471,7,19,0,0,3471,3472,7,8, + 0,0,3472,3473,7,19,0,0,3473,3474,7,6,0,0,3474,3475,7,12,0,0,3475, + 3476,5,95,0,0,3476,3477,7,11,0,0,3477,3478,7,9,0,0,3478,3479,7,16, + 0,0,3479,3480,7,9,0,0,3480,3481,7,18,0,0,3481,568,1,0,0,0,3482,3483, + 7,24,0,0,3483,3484,7,6,0,0,3484,3485,7,10,0,0,3485,3486,7,9,0,0, + 3486,3487,7,11,0,0,3487,570,1,0,0,0,3488,3489,7,24,0,0,3489,3490, + 7,11,0,0,3490,3491,7,9,0,0,3491,3492,7,7,0,0,3492,3493,7,9,0,0,3493, + 3494,7,15,0,0,3494,3495,7,9,0,0,3495,3496,7,4,0,0,3496,572,1,0,0, + 0,3497,3498,7,24,0,0,3498,3499,7,11,0,0,3499,3500,7,9,0,0,3500,3501, + 7,7,0,0,3501,3502,7,19,0,0,3502,3503,7,4,0,0,3503,3504,7,19,0,0, + 3504,3505,7,6,0,0,3505,3506,7,12,0,0,3506,574,1,0,0,0,3507,3508, + 7,24,0,0,3508,3509,7,11,0,0,3509,3510,7,9,0,0,3510,3511,7,24,0,0, + 3511,3512,7,2,0,0,3512,3513,7,11,0,0,3513,3514,7,9,0,0,3514,576, + 1,0,0,0,3515,3516,7,24,0,0,3516,3517,7,11,0,0,3517,3518,7,9,0,0, + 3518,3519,7,20,0,0,3519,578,1,0,0,0,3520,3521,7,24,0,0,3521,3522, + 7,11,0,0,3522,3523,7,19,0,0,3523,3524,7,17,0,0,3524,3525,7,2,0,0, + 3525,3526,7,11,0,0,3526,3527,7,13,0,0,3527,580,1,0,0,0,3528,3529, + 7,24,0,0,3529,3530,7,11,0,0,3530,3531,7,6,0,0,3531,3532,7,7,0,0, + 3532,3533,7,9,0,0,3533,3534,7,15,0,0,3534,3535,7,21,0,0,3535,3536, + 7,11,0,0,3536,3537,7,9,0,0,3537,582,1,0,0,0,3538,3539,7,26,0,0,3539, + 3540,7,21,0,0,3540,3541,7,2,0,0,3541,3542,7,5,0,0,3542,3543,7,19, + 0,0,3543,3544,7,23,0,0,3544,3545,7,13,0,0,3545,584,1,0,0,0,3546, + 3547,7,26,0,0,3547,3548,7,21,0,0,3548,3549,7,2,0,0,3549,3550,7,11, + 0,0,3550,3551,7,8,0,0,3551,3552,7,9,0,0,3552,3553,7,11,0,0,3553, + 3554,7,4,0,0,3554,586,1,0,0,0,3555,3556,7,11,0,0,3556,3557,7,2,0, + 0,3557,3558,7,12,0,0,3558,3559,7,16,0,0,3559,3560,7,9,0,0,3560,588, + 1,0,0,0,3561,3562,7,11,0,0,3562,3563,7,2,0,0,3563,3564,7,12,0,0, + 3564,3565,7,25,0,0,3565,590,1,0,0,0,3566,3567,7,11,0,0,3567,3568, + 7,2,0,0,3568,3569,7,10,0,0,3569,592,1,0,0,0,3570,3571,7,11,0,0,3571, + 3572,7,9,0,0,3572,3573,7,2,0,0,3573,3574,7,15,0,0,3574,3575,7,4, + 0,0,3575,594,1,0,0,0,3576,3577,7,11,0,0,3577,3578,7,9,0,0,3578,3579, + 7,2,0,0,3579,3580,7,5,0,0,3580,596,1,0,0,0,3581,3582,7,11,0,0,3582, + 3583,7,9,0,0,3583,3584,7,7,0,0,3584,3585,7,21,0,0,3585,3586,7,11, + 0,0,3586,3587,7,4,0,0,3587,3588,7,19,0,0,3588,3589,7,20,0,0,3589, + 3590,7,9,0,0,3590,598,1,0,0,0,3591,3592,7,11,0,0,3592,3593,7,9,0, + 0,3593,3594,7,23,0,0,3594,600,1,0,0,0,3595,3596,7,11,0,0,3596,3597, + 7,9,0,0,3597,3598,7,23,0,0,3598,3599,7,9,0,0,3599,3600,7,11,0,0, + 3600,3601,7,9,0,0,3601,3602,7,12,0,0,3602,3603,7,7,0,0,3603,3604, + 7,9,0,0,3604,3605,7,4,0,0,3605,602,1,0,0,0,3606,3607,7,11,0,0,3607, + 3608,7,9,0,0,3608,3609,7,23,0,0,3609,3610,7,9,0,0,3610,3611,7,11, + 0,0,3611,3612,7,9,0,0,3612,3613,7,12,0,0,3613,3614,7,7,0,0,3614, + 3615,7,19,0,0,3615,3616,7,12,0,0,3616,3617,7,16,0,0,3617,604,1,0, + 0,0,3618,3619,7,11,0,0,3619,3620,7,9,0,0,3620,3621,7,16,0,0,3621, + 3622,7,11,0,0,3622,3623,5,95,0,0,3623,3624,7,2,0,0,3624,3625,7,20, + 0,0,3625,3626,7,16,0,0,3626,3627,7,18,0,0,3627,606,1,0,0,0,3628, + 3629,7,11,0,0,3629,3630,7,9,0,0,3630,3631,7,16,0,0,3631,3632,7,11, + 0,0,3632,3633,5,95,0,0,3633,3634,7,2,0,0,3634,3635,7,20,0,0,3635, + 3636,7,16,0,0,3636,3637,7,13,0,0,3637,608,1,0,0,0,3638,3639,7,11, + 0,0,3639,3640,7,9,0,0,3640,3641,7,16,0,0,3641,3642,7,11,0,0,3642, + 3643,5,95,0,0,3643,3644,7,7,0,0,3644,3645,7,6,0,0,3645,3646,7,21, + 0,0,3646,3647,7,12,0,0,3647,3648,7,8,0,0,3648,610,1,0,0,0,3649,3650, + 7,11,0,0,3650,3651,7,9,0,0,3651,3652,7,16,0,0,3652,3653,7,11,0,0, + 3653,3654,5,95,0,0,3654,3655,7,19,0,0,3655,3656,7,12,0,0,3656,3657, + 7,8,0,0,3657,3658,7,9,0,0,3658,3659,7,11,0,0,3659,3660,7,7,0,0,3660, + 3661,7,9,0,0,3661,3662,7,24,0,0,3662,3663,7,8,0,0,3663,612,1,0,0, + 0,3664,3665,7,11,0,0,3665,3666,7,9,0,0,3666,3667,7,16,0,0,3667,3668, + 7,11,0,0,3668,3669,5,95,0,0,3669,3670,7,11,0,0,3670,3671,5,50,0, + 0,3671,614,1,0,0,0,3672,3673,7,11,0,0,3673,3674,7,9,0,0,3674,3675, + 7,16,0,0,3675,3676,7,11,0,0,3676,3677,5,95,0,0,3677,3678,7,4,0,0, + 3678,3679,7,5,0,0,3679,3680,7,6,0,0,3680,3681,7,24,0,0,3681,3682, + 7,9,0,0,3682,616,1,0,0,0,3683,3684,7,11,0,0,3684,3685,7,9,0,0,3685, + 3686,7,16,0,0,3686,3687,7,11,0,0,3687,3688,5,95,0,0,3688,3689,7, + 4,0,0,3689,3690,7,18,0,0,3690,3691,7,18,0,0,3691,618,1,0,0,0,3692, + 3693,7,11,0,0,3693,3694,7,9,0,0,3694,3695,7,16,0,0,3695,3696,7,11, + 0,0,3696,3697,5,95,0,0,3697,3698,7,4,0,0,3698,3699,7,18,0,0,3699, + 3700,7,13,0,0,3700,620,1,0,0,0,3701,3702,7,11,0,0,3702,3703,7,9, + 0,0,3703,3704,7,16,0,0,3704,3705,7,11,0,0,3705,3706,5,95,0,0,3706, + 3707,7,4,0,0,3707,3708,7,13,0,0,3708,3709,7,13,0,0,3709,622,1,0, + 0,0,3710,3711,7,11,0,0,3711,3712,7,9,0,0,3712,3713,7,5,0,0,3713, + 3714,7,9,0,0,3714,3715,7,2,0,0,3715,3716,7,4,0,0,3716,3717,7,9,0, + 0,3717,624,1,0,0,0,3718,3719,7,11,0,0,3719,3720,7,9,0,0,3720,3721, + 7,12,0,0,3721,3722,7,2,0,0,3722,3723,7,17,0,0,3723,3724,7,9,0,0, + 3724,626,1,0,0,0,3725,3726,7,11,0,0,3726,3727,7,9,0,0,3727,3728, + 7,4,0,0,3728,3729,7,9,0,0,3729,3730,7,8,0,0,3730,628,1,0,0,0,3731, + 3732,7,11,0,0,3732,3733,7,9,0,0,3733,3734,7,4,0,0,3734,3735,7,21, + 0,0,3735,3736,7,5,0,0,3736,3737,7,8,0,0,3737,630,1,0,0,0,3738,3739, + 7,11,0,0,3739,3740,7,9,0,0,3740,3741,7,8,0,0,3741,3742,7,21,0,0, + 3742,3743,7,11,0,0,3743,3744,7,12,0,0,3744,632,1,0,0,0,3745,3746, + 7,11,0,0,3746,3747,7,9,0,0,3747,3748,7,8,0,0,3748,3749,7,21,0,0, + 3749,3750,7,11,0,0,3750,3751,7,12,0,0,3751,3752,7,4,0,0,3752,634, + 1,0,0,0,3753,3754,7,11,0,0,3754,3755,7,9,0,0,3755,3756,7,20,0,0, + 3756,3757,7,6,0,0,3757,3758,7,25,0,0,3758,3759,7,9,0,0,3759,636, + 1,0,0,0,3760,3761,7,11,0,0,3761,3762,7,19,0,0,3762,3763,7,16,0,0, + 3763,3764,7,22,0,0,3764,3765,7,8,0,0,3765,638,1,0,0,0,3766,3767, + 7,11,0,0,3767,3768,7,5,0,0,3768,3769,7,19,0,0,3769,3770,7,25,0,0, + 3770,3771,7,9,0,0,3771,640,1,0,0,0,3772,3773,7,11,0,0,3773,3774, + 7,6,0,0,3774,3775,7,5,0,0,3775,3776,7,5,0,0,3776,3777,7,3,0,0,3777, + 3778,7,2,0,0,3778,3779,7,7,0,0,3779,3780,7,25,0,0,3780,642,1,0,0, + 0,3781,3782,7,11,0,0,3782,3783,7,6,0,0,3783,3784,7,5,0,0,3784,3785, + 7,5,0,0,3785,3786,7,21,0,0,3786,3787,7,24,0,0,3787,644,1,0,0,0,3788, + 3789,7,11,0,0,3789,3790,7,6,0,0,3790,3791,7,10,0,0,3791,646,1,0, + 0,0,3792,3793,7,11,0,0,3793,3794,7,6,0,0,3794,3795,7,10,0,0,3795, + 3796,7,4,0,0,3796,648,1,0,0,0,3797,3798,7,11,0,0,3798,3799,7,6,0, + 0,3799,3800,7,10,0,0,3800,3801,5,95,0,0,3801,3802,7,12,0,0,3802, + 3803,7,21,0,0,3803,3804,7,17,0,0,3804,3805,7,3,0,0,3805,3806,7,9, + 0,0,3806,3807,7,11,0,0,3807,650,1,0,0,0,3808,3809,7,11,0,0,3809, + 3810,7,21,0,0,3810,3811,7,12,0,0,3811,3812,7,12,0,0,3812,3813,7, + 19,0,0,3813,3814,7,12,0,0,3814,3815,7,16,0,0,3815,652,1,0,0,0,3816, + 3817,7,4,0,0,3817,3818,7,2,0,0,3818,3819,7,23,0,0,3819,3820,7,9, + 0,0,3820,3821,5,95,0,0,3821,3822,7,7,0,0,3822,3823,7,2,0,0,3823, + 3824,7,4,0,0,3824,3825,7,8,0,0,3825,654,1,0,0,0,3826,3827,7,4,0, + 0,3827,3828,7,2,0,0,3828,3829,7,23,0,0,3829,3830,7,9,0,0,3830,3831, + 5,95,0,0,3831,3832,7,6,0,0,3832,3833,7,23,0,0,3833,3834,7,23,0,0, + 3834,3835,7,4,0,0,3835,3836,7,9,0,0,3836,3837,7,8,0,0,3837,656,1, + 0,0,0,3838,3839,7,4,0,0,3839,3840,7,2,0,0,3840,3841,7,23,0,0,3841, + 3842,7,9,0,0,3842,3843,5,95,0,0,3843,3844,7,6,0,0,3844,3845,7,11, + 0,0,3845,3846,7,15,0,0,3846,3847,7,19,0,0,3847,3848,7,12,0,0,3848, + 3849,7,2,0,0,3849,3850,7,5,0,0,3850,658,1,0,0,0,3851,3852,7,4,0, + 0,3852,3853,7,2,0,0,3853,3854,7,8,0,0,3854,3855,7,21,0,0,3855,3856, + 7,11,0,0,3856,3857,7,15,0,0,3857,3858,7,2,0,0,3858,3859,7,13,0,0, + 3859,660,1,0,0,0,3860,3861,7,4,0,0,3861,3862,7,2,0,0,3862,3863,7, + 20,0,0,3863,3864,7,9,0,0,3864,3865,7,24,0,0,3865,3866,7,6,0,0,3866, + 3867,7,19,0,0,3867,3868,7,12,0,0,3868,3869,7,8,0,0,3869,662,1,0, + 0,0,3870,3871,7,4,0,0,3871,3872,7,7,0,0,3872,3873,7,2,0,0,3873,3874, + 7,5,0,0,3874,3875,7,2,0,0,3875,664,1,0,0,0,3876,3877,7,4,0,0,3877, + 3878,7,7,0,0,3878,3879,7,6,0,0,3879,3880,7,24,0,0,3880,3881,7,9, + 0,0,3881,666,1,0,0,0,3882,3883,7,4,0,0,3883,3884,7,7,0,0,3884,3885, + 7,11,0,0,3885,3886,7,6,0,0,3886,3887,7,5,0,0,3887,3888,7,5,0,0,3888, + 668,1,0,0,0,3889,3890,7,4,0,0,3890,3891,7,9,0,0,3891,3892,7,2,0, + 0,3892,3893,7,11,0,0,3893,3894,7,7,0,0,3894,3895,7,22,0,0,3895,670, + 1,0,0,0,3896,3897,7,4,0,0,3897,3898,7,9,0,0,3898,3899,7,7,0,0,3899, + 3900,7,6,0,0,3900,3901,7,12,0,0,3901,3902,7,15,0,0,3902,672,1,0, + 0,0,3903,3904,7,4,0,0,3904,3905,7,9,0,0,3905,3906,7,9,0,0,3906,3907, + 7,25,0,0,3907,674,1,0,0,0,3908,3909,7,4,0,0,3909,3910,7,9,0,0,3910, + 3911,7,5,0,0,3911,3912,7,9,0,0,3912,3913,7,7,0,0,3913,3914,7,8,0, + 0,3914,676,1,0,0,0,3915,3916,7,4,0,0,3916,3917,7,9,0,0,3917,3918, + 7,12,0,0,3918,3919,7,4,0,0,3919,3920,7,19,0,0,3920,3921,7,8,0,0, + 3921,3922,7,19,0,0,3922,3923,7,20,0,0,3923,3924,7,9,0,0,3924,678, + 1,0,0,0,3925,3926,7,4,0,0,3926,3927,7,9,0,0,3927,3928,7,24,0,0,3928, + 3929,7,2,0,0,3929,3930,7,11,0,0,3930,3931,7,2,0,0,3931,3932,7,8, + 0,0,3932,3933,7,6,0,0,3933,3934,7,11,0,0,3934,680,1,0,0,0,3935,3936, + 7,4,0,0,3936,3937,7,9,0,0,3937,3938,7,4,0,0,3938,3939,7,4,0,0,3939, + 3940,7,19,0,0,3940,3941,7,6,0,0,3941,3942,7,12,0,0,3942,3943,5,95, + 0,0,3943,3944,7,21,0,0,3944,3945,7,4,0,0,3945,3946,7,9,0,0,3946, + 3947,7,11,0,0,3947,682,1,0,0,0,3948,3949,7,4,0,0,3949,3950,7,9,0, + 0,3950,3951,7,8,0,0,3951,684,1,0,0,0,3952,3953,7,4,0,0,3953,3954, + 7,22,0,0,3954,3955,7,6,0,0,3955,3956,7,10,0,0,3956,686,1,0,0,0,3957, + 3958,7,4,0,0,3958,3959,7,19,0,0,3959,3960,7,17,0,0,3960,3961,7,19, + 0,0,3961,3962,7,5,0,0,3962,3963,7,2,0,0,3963,3964,7,11,0,0,3964, + 688,1,0,0,0,3965,3966,7,4,0,0,3966,3967,7,25,0,0,3967,3968,7,19, + 0,0,3968,3969,7,24,0,0,3969,690,1,0,0,0,3970,3971,7,4,0,0,3971,3972, + 7,17,0,0,3972,3973,7,2,0,0,3973,3974,7,5,0,0,3974,3975,7,5,0,0,3975, + 3976,7,19,0,0,3976,3977,7,12,0,0,3977,3978,7,8,0,0,3978,692,1,0, + 0,0,3979,3980,7,4,0,0,3980,3981,7,6,0,0,3981,3982,7,17,0,0,3982, + 3983,7,9,0,0,3983,694,1,0,0,0,3984,3985,7,4,0,0,3985,3986,7,24,0, + 0,3986,3987,7,9,0,0,3987,3988,7,7,0,0,3988,3989,7,19,0,0,3989,3990, + 7,23,0,0,3990,3991,7,19,0,0,3991,3992,7,7,0,0,3992,696,1,0,0,0,3993, + 3994,7,4,0,0,3994,3995,7,24,0,0,3995,3996,7,9,0,0,3996,3997,7,7, + 0,0,3997,3998,7,19,0,0,3998,3999,7,23,0,0,3999,4000,7,19,0,0,4000, + 4001,7,7,0,0,4001,4002,7,8,0,0,4002,4003,7,13,0,0,4003,4004,7,24, + 0,0,4004,4005,7,9,0,0,4005,698,1,0,0,0,4006,4007,7,4,0,0,4007,4008, + 7,26,0,0,4008,4009,7,5,0,0,4009,700,1,0,0,0,4010,4011,7,4,0,0,4011, + 4012,7,26,0,0,4012,4013,7,5,0,0,4013,4014,7,9,0,0,4014,4015,7,18, + 0,0,4015,4016,7,7,0,0,4016,4017,7,9,0,0,4017,4018,7,24,0,0,4018, + 4019,7,8,0,0,4019,4020,7,19,0,0,4020,4021,7,6,0,0,4021,4022,7,12, + 0,0,4022,702,1,0,0,0,4023,4024,7,4,0,0,4024,4025,7,26,0,0,4025,4026, + 7,5,0,0,4026,4027,7,4,0,0,4027,4028,7,8,0,0,4028,4029,7,2,0,0,4029, + 4030,7,8,0,0,4030,4031,7,9,0,0,4031,704,1,0,0,0,4032,4033,7,4,0, + 0,4033,4034,7,26,0,0,4034,4035,7,5,0,0,4035,4036,7,10,0,0,4036,4037, + 7,2,0,0,4037,4038,7,11,0,0,4038,4039,7,12,0,0,4039,4040,7,19,0,0, + 4040,4041,7,12,0,0,4041,4042,7,16,0,0,4042,706,1,0,0,0,4043,4044, + 7,4,0,0,4044,4045,7,26,0,0,4045,4046,7,11,0,0,4046,4047,7,8,0,0, + 4047,708,1,0,0,0,4048,4049,7,4,0,0,4049,4050,7,8,0,0,4050,4051,7, + 2,0,0,4051,4052,7,11,0,0,4052,4053,7,8,0,0,4053,710,1,0,0,0,4054, + 4055,7,4,0,0,4055,4056,7,8,0,0,4056,4057,7,2,0,0,4057,4058,7,8,0, + 0,4058,4059,7,9,0,0,4059,4060,7,17,0,0,4060,4061,7,9,0,0,4061,4062, + 7,12,0,0,4062,4063,7,8,0,0,4063,712,1,0,0,0,4064,4065,7,4,0,0,4065, + 4066,7,8,0,0,4066,4067,7,2,0,0,4067,4068,7,8,0,0,4068,4069,7,19, + 0,0,4069,4070,7,7,0,0,4070,714,1,0,0,0,4071,4072,7,4,0,0,4072,4073, + 7,8,0,0,4073,4074,7,2,0,0,4074,4075,7,8,0,0,4075,4076,7,19,0,0,4076, + 4077,7,4,0,0,4077,4078,7,8,0,0,4078,4079,7,19,0,0,4079,4080,7,7, + 0,0,4080,4081,7,4,0,0,4081,716,1,0,0,0,4082,4083,7,4,0,0,4083,4084, + 7,8,0,0,4084,4085,7,15,0,0,4085,4086,7,15,0,0,4086,4087,7,9,0,0, + 4087,4088,7,20,0,0,4088,4089,5,95,0,0,4089,4090,7,24,0,0,4090,4091, + 7,6,0,0,4091,4092,7,24,0,0,4092,718,1,0,0,0,4093,4094,7,4,0,0,4094, + 4095,7,8,0,0,4095,4096,7,15,0,0,4096,4097,7,15,0,0,4097,4098,7,9, + 0,0,4098,4099,7,20,0,0,4099,4100,5,95,0,0,4100,4101,7,4,0,0,4101, + 4102,7,2,0,0,4102,4103,7,17,0,0,4103,4104,7,24,0,0,4104,720,1,0, + 0,0,4105,4106,7,4,0,0,4106,4107,7,8,0,0,4107,4108,7,11,0,0,4108, + 4109,7,9,0,0,4109,4110,7,2,0,0,4110,4111,7,17,0,0,4111,722,1,0,0, + 0,4112,4113,7,4,0,0,4113,4114,7,8,0,0,4114,4115,7,11,0,0,4115,4116, + 7,19,0,0,4116,4117,7,12,0,0,4117,4118,7,16,0,0,4118,724,1,0,0,0, + 4119,4120,7,4,0,0,4120,4121,7,8,0,0,4121,4122,7,11,0,0,4122,4123, + 7,19,0,0,4123,4124,7,12,0,0,4124,4125,7,16,0,0,4125,4126,5,95,0, + 0,4126,4127,7,2,0,0,4127,4128,7,16,0,0,4128,4129,7,16,0,0,4129,726, + 1,0,0,0,4130,4131,7,4,0,0,4131,4132,7,21,0,0,4132,4133,7,3,0,0,4133, + 4134,7,17,0,0,4134,4135,7,21,0,0,4135,4136,7,5,0,0,4136,4137,7,8, + 0,0,4137,4138,7,19,0,0,4138,4139,7,4,0,0,4139,4140,7,9,0,0,4140, + 4141,7,8,0,0,4141,728,1,0,0,0,4142,4143,7,4,0,0,4143,4144,7,21,0, + 0,4144,4145,7,3,0,0,4145,4146,7,4,0,0,4146,4147,7,9,0,0,4147,4148, + 7,8,0,0,4148,730,1,0,0,0,4149,4150,7,4,0,0,4150,4151,7,21,0,0,4151, + 4152,7,3,0,0,4152,4153,7,4,0,0,4153,4154,7,8,0,0,4154,4155,7,11, + 0,0,4155,4156,7,19,0,0,4156,4157,7,12,0,0,4157,4158,7,16,0,0,4158, + 732,1,0,0,0,4159,4160,7,4,0,0,4160,4161,7,21,0,0,4161,4162,7,3,0, + 0,4162,4163,7,4,0,0,4163,4164,7,8,0,0,4164,4165,7,11,0,0,4165,4166, + 7,19,0,0,4166,4167,7,12,0,0,4167,4168,7,16,0,0,4168,4169,5,95,0, + 0,4169,4170,7,11,0,0,4170,4171,7,9,0,0,4171,4172,7,16,0,0,4172,4173, + 7,9,0,0,4173,4174,7,18,0,0,4174,734,1,0,0,0,4175,4176,7,4,0,0,4176, + 4177,7,21,0,0,4177,4178,7,7,0,0,4178,4179,7,7,0,0,4179,4180,7,9, + 0,0,4180,4181,7,9,0,0,4181,4182,7,15,0,0,4182,4183,7,4,0,0,4183, + 736,1,0,0,0,4184,4185,7,4,0,0,4185,4186,7,21,0,0,4186,4187,7,17, + 0,0,4187,738,1,0,0,0,4188,4189,7,4,0,0,4189,4190,7,21,0,0,4190,4191, + 7,12,0,0,4191,4192,7,15,0,0,4192,4193,7,2,0,0,4193,4194,7,13,0,0, + 4194,740,1,0,0,0,4195,4196,7,4,0,0,4196,4197,7,13,0,0,4197,4198, + 7,17,0,0,4198,4199,7,17,0,0,4199,4200,7,9,0,0,4200,4201,7,8,0,0, + 4201,4202,7,11,0,0,4202,4203,7,19,0,0,4203,4204,7,7,0,0,4204,742, + 1,0,0,0,4205,4206,7,4,0,0,4206,4207,7,13,0,0,4207,4208,7,4,0,0,4208, + 4209,7,8,0,0,4209,4210,7,9,0,0,4210,4211,7,17,0,0,4211,744,1,0,0, + 0,4212,4213,7,4,0,0,4213,4214,7,13,0,0,4214,4215,7,4,0,0,4215,4216, + 7,8,0,0,4216,4217,7,9,0,0,4217,4218,7,17,0,0,4218,4219,5,95,0,0, + 4219,4220,7,8,0,0,4220,4221,7,19,0,0,4221,4222,7,17,0,0,4222,4223, + 7,9,0,0,4223,746,1,0,0,0,4224,4225,7,4,0,0,4225,4226,7,13,0,0,4226, + 4227,7,4,0,0,4227,4228,7,8,0,0,4228,4229,7,9,0,0,4229,4230,7,17, + 0,0,4230,4231,5,95,0,0,4231,4232,7,21,0,0,4232,4233,7,4,0,0,4233, + 4234,7,9,0,0,4234,4235,7,11,0,0,4235,748,1,0,0,0,4236,4237,7,8,0, + 0,4237,4238,7,2,0,0,4238,4239,7,3,0,0,4239,4240,7,5,0,0,4240,4241, + 7,9,0,0,4241,750,1,0,0,0,4242,4243,7,8,0,0,4243,4244,7,2,0,0,4244, + 4245,7,3,0,0,4245,4246,7,5,0,0,4246,4247,7,9,0,0,4247,4248,7,4,0, + 0,4248,752,1,0,0,0,4249,4250,7,8,0,0,4250,4251,7,2,0,0,4251,4252, + 7,3,0,0,4252,4253,7,5,0,0,4253,4254,7,9,0,0,4254,4255,7,4,0,0,4255, + 4256,7,2,0,0,4256,4257,7,17,0,0,4257,4258,7,24,0,0,4258,4259,7,5, + 0,0,4259,4260,7,9,0,0,4260,754,1,0,0,0,4261,4262,7,8,0,0,4262,4263, + 7,22,0,0,4263,4264,7,9,0,0,4264,4265,7,12,0,0,4265,756,1,0,0,0,4266, + 4267,7,8,0,0,4267,4268,7,22,0,0,4268,4269,7,21,0,0,4269,4270,7,11, + 0,0,4270,4271,7,4,0,0,4271,4272,7,15,0,0,4272,4273,7,2,0,0,4273, + 4274,7,13,0,0,4274,758,1,0,0,0,4275,4276,7,8,0,0,4276,4277,7,19, + 0,0,4277,4278,7,17,0,0,4278,4279,7,9,0,0,4279,760,1,0,0,0,4280,4281, + 7,8,0,0,4281,4282,7,19,0,0,4282,4283,7,17,0,0,4283,4284,7,9,0,0, + 4284,4285,7,4,0,0,4285,4286,7,8,0,0,4286,4287,7,2,0,0,4287,4288, + 7,17,0,0,4288,4289,7,24,0,0,4289,762,1,0,0,0,4290,4291,7,8,0,0,4291, + 4292,7,19,0,0,4292,4293,7,17,0,0,4293,4294,7,9,0,0,4294,4295,7,4, + 0,0,4295,4296,7,8,0,0,4296,4297,7,2,0,0,4297,4298,7,17,0,0,4298, + 4299,7,24,0,0,4299,4300,5,95,0,0,4300,4301,7,15,0,0,4301,4302,7, + 19,0,0,4302,4303,7,23,0,0,4303,4304,7,23,0,0,4304,764,1,0,0,0,4305, + 4306,7,8,0,0,4306,4307,7,19,0,0,4307,4308,7,17,0,0,4308,4309,7,9, + 0,0,4309,4310,7,4,0,0,4310,4311,7,8,0,0,4311,4312,7,2,0,0,4312,4313, + 7,17,0,0,4313,4314,7,24,0,0,4314,4315,5,95,0,0,4315,4316,7,5,0,0, + 4316,4317,7,8,0,0,4317,4318,7,14,0,0,4318,766,1,0,0,0,4319,4320, + 7,8,0,0,4320,4321,7,19,0,0,4321,4322,7,17,0,0,4322,4323,7,9,0,0, + 4323,4324,7,4,0,0,4324,4325,7,8,0,0,4325,4326,7,2,0,0,4326,4327, + 7,17,0,0,4327,4328,7,24,0,0,4328,4329,5,95,0,0,4329,4330,7,8,0,0, + 4330,4331,7,11,0,0,4331,4332,7,21,0,0,4332,4333,7,12,0,0,4333,4334, + 7,7,0,0,4334,768,1,0,0,0,4335,4336,7,8,0,0,4336,4337,7,19,0,0,4337, + 4338,7,17,0,0,4338,4339,7,9,0,0,4339,4340,7,14,0,0,4340,4341,7,6, + 0,0,4341,4342,7,12,0,0,4342,4343,7,9,0,0,4343,4344,5,95,0,0,4344, + 4345,7,22,0,0,4345,4346,7,6,0,0,4346,4347,7,21,0,0,4347,4348,7,11, + 0,0,4348,770,1,0,0,0,4349,4350,7,8,0,0,4350,4351,7,19,0,0,4351,4352, + 7,17,0,0,4352,4353,7,9,0,0,4353,4354,7,14,0,0,4354,4355,7,6,0,0, + 4355,4356,7,12,0,0,4356,4357,7,9,0,0,4357,4358,5,95,0,0,4358,4359, + 7,17,0,0,4359,4360,7,19,0,0,4360,4361,7,12,0,0,4361,4362,7,21,0, + 0,4362,4363,7,8,0,0,4363,4364,7,9,0,0,4364,772,1,0,0,0,4365,4366, + 7,8,0,0,4366,4367,7,19,0,0,4367,4368,7,17,0,0,4368,4369,7,9,0,0, + 4369,4370,5,95,0,0,4370,4371,7,15,0,0,4371,4372,7,19,0,0,4372,4373, + 7,23,0,0,4373,4374,7,23,0,0,4374,774,1,0,0,0,4375,4376,7,8,0,0,4376, + 4377,7,19,0,0,4377,4378,7,17,0,0,4378,4379,7,9,0,0,4379,4380,5,95, + 0,0,4380,4381,7,8,0,0,4381,4382,7,11,0,0,4382,4383,7,21,0,0,4383, + 4384,7,12,0,0,4384,4385,7,7,0,0,4385,776,1,0,0,0,4386,4387,7,8,0, + 0,4387,4388,7,19,0,0,4388,4389,7,12,0,0,4389,4390,7,13,0,0,4390, + 4391,7,19,0,0,4391,4392,7,12,0,0,4392,4393,7,8,0,0,4393,778,1,0, + 0,0,4394,4395,7,8,0,0,4395,4396,7,6,0,0,4396,780,1,0,0,0,4397,4398, + 7,8,0,0,4398,4399,7,11,0,0,4399,4400,7,2,0,0,4400,4401,7,19,0,0, + 4401,4402,7,5,0,0,4402,4403,7,19,0,0,4403,4404,7,12,0,0,4404,4405, + 7,16,0,0,4405,782,1,0,0,0,4406,4407,7,8,0,0,4407,4408,7,11,0,0,4408, + 4409,7,2,0,0,4409,4410,7,12,0,0,4410,4411,7,4,0,0,4411,4412,7,5, + 0,0,4412,4413,7,2,0,0,4413,4414,7,8,0,0,4414,4415,7,9,0,0,4415,784, + 1,0,0,0,4416,4417,7,8,0,0,4417,4418,7,11,0,0,4418,4419,7,2,0,0,4419, + 4420,7,12,0,0,4420,4421,7,4,0,0,4421,4422,7,5,0,0,4422,4423,7,2, + 0,0,4423,4424,7,8,0,0,4424,4425,7,9,0,0,4425,4426,5,95,0,0,4426, + 4427,7,11,0,0,4427,4428,7,9,0,0,4428,4429,7,16,0,0,4429,4430,7,9, + 0,0,4430,4431,7,18,0,0,4431,786,1,0,0,0,4432,4433,7,8,0,0,4433,4434, + 7,11,0,0,4434,4435,7,2,0,0,4435,4436,7,12,0,0,4436,4437,7,4,0,0, + 4437,4438,7,5,0,0,4438,4439,7,2,0,0,4439,4440,7,8,0,0,4440,4441, + 7,19,0,0,4441,4442,7,6,0,0,4442,4443,7,12,0,0,4443,788,1,0,0,0,4444, + 4445,7,8,0,0,4445,4446,7,11,0,0,4446,4447,7,9,0,0,4447,4448,7,2, + 0,0,4448,4449,7,8,0,0,4449,790,1,0,0,0,4450,4451,7,8,0,0,4451,4452, + 7,11,0,0,4452,4453,7,19,0,0,4453,4454,7,16,0,0,4454,4455,7,16,0, + 0,4455,4456,7,9,0,0,4456,4457,7,11,0,0,4457,792,1,0,0,0,4458,4459, + 7,8,0,0,4459,4460,7,11,0,0,4460,4461,7,19,0,0,4461,4462,7,17,0,0, + 4462,794,1,0,0,0,4463,4464,7,8,0,0,4464,4465,7,11,0,0,4465,4466, + 7,19,0,0,4466,4467,7,17,0,0,4467,4468,5,95,0,0,4468,4469,7,2,0,0, + 4469,4470,7,11,0,0,4470,4471,7,11,0,0,4471,4472,7,2,0,0,4472,4473, + 7,13,0,0,4473,796,1,0,0,0,4474,4475,7,8,0,0,4475,4476,7,11,0,0,4476, + 4477,7,21,0,0,4477,4478,7,9,0,0,4478,798,1,0,0,0,4479,4480,7,8,0, + 0,4480,4481,7,11,0,0,4481,4482,7,21,0,0,4482,4483,7,12,0,0,4483, + 4484,7,7,0,0,4484,4485,7,2,0,0,4485,4486,7,8,0,0,4486,4487,7,9,0, + 0,4487,800,1,0,0,0,4488,4489,7,8,0,0,4489,4490,7,11,0,0,4490,4491, + 7,13,0,0,4491,4492,5,95,0,0,4492,4493,7,7,0,0,4493,4494,7,2,0,0, + 4494,4495,7,4,0,0,4495,4496,7,8,0,0,4496,802,1,0,0,0,4497,4498,7, + 8,0,0,4498,4499,7,21,0,0,4499,4500,7,9,0,0,4500,4501,7,4,0,0,4501, + 4502,7,15,0,0,4502,4503,7,2,0,0,4503,4504,7,13,0,0,4504,804,1,0, + 0,0,4505,4506,7,21,0,0,4506,4507,7,9,0,0,4507,4508,7,4,0,0,4508, + 4509,7,7,0,0,4509,4510,7,2,0,0,4510,4511,7,24,0,0,4511,4512,7,9, + 0,0,4512,806,1,0,0,0,4513,4514,7,21,0,0,4514,4515,7,12,0,0,4515, + 4516,7,3,0,0,4516,4517,7,6,0,0,4517,4518,7,21,0,0,4518,4519,7,12, + 0,0,4519,4520,7,15,0,0,4520,4521,7,9,0,0,4521,4522,7,15,0,0,4522, + 808,1,0,0,0,4523,4524,7,21,0,0,4524,4525,7,12,0,0,4525,4526,7,19, + 0,0,4526,4527,7,6,0,0,4527,4528,7,12,0,0,4528,810,1,0,0,0,4529,4530, + 7,21,0,0,4530,4531,7,12,0,0,4531,4532,7,19,0,0,4532,4533,7,26,0, + 0,4533,4534,7,21,0,0,4534,4535,7,9,0,0,4535,812,1,0,0,0,4536,4537, + 7,21,0,0,4537,4538,7,12,0,0,4538,4539,7,25,0,0,4539,4540,7,12,0, + 0,4540,4541,7,6,0,0,4541,4542,7,10,0,0,4542,4543,7,12,0,0,4543,814, + 1,0,0,0,4544,4545,7,21,0,0,4545,4546,7,12,0,0,4546,4547,7,12,0,0, + 4547,4548,7,9,0,0,4548,4549,7,4,0,0,4549,4550,7,8,0,0,4550,816,1, + 0,0,0,4551,4552,7,21,0,0,4552,4553,7,12,0,0,4553,4554,7,24,0,0,4554, + 4555,7,19,0,0,4555,4556,7,20,0,0,4556,4557,7,6,0,0,4557,4558,7,8, + 0,0,4558,818,1,0,0,0,4559,4560,7,21,0,0,4560,4561,7,24,0,0,4561, + 4562,7,15,0,0,4562,4563,7,2,0,0,4563,4564,7,8,0,0,4564,4565,7,9, + 0,0,4565,820,1,0,0,0,4566,4567,7,21,0,0,4567,4568,7,24,0,0,4568, + 4569,7,24,0,0,4569,4570,7,9,0,0,4570,4571,7,11,0,0,4571,822,1,0, + 0,0,4572,4573,7,21,0,0,4573,4574,7,24,0,0,4574,4575,7,4,0,0,4575, + 4576,7,9,0,0,4576,4577,7,11,0,0,4577,4578,7,8,0,0,4578,824,1,0,0, + 0,4579,4580,7,21,0,0,4580,4581,7,4,0,0,4581,4582,7,9,0,0,4582,826, + 1,0,0,0,4583,4584,7,21,0,0,4584,4585,7,4,0,0,4585,4586,7,9,0,0,4586, + 4587,7,11,0,0,4587,828,1,0,0,0,4588,4589,7,21,0,0,4589,4590,7,4, + 0,0,4590,4591,7,19,0,0,4591,4592,7,12,0,0,4592,4593,7,16,0,0,4593, + 830,1,0,0,0,4594,4595,7,20,0,0,4595,4596,7,2,0,0,4596,4597,7,5,0, + 0,4597,4598,7,21,0,0,4598,4599,7,9,0,0,4599,832,1,0,0,0,4600,4601, + 7,20,0,0,4601,4602,7,2,0,0,4602,4603,7,5,0,0,4603,4604,7,21,0,0, + 4604,4605,7,9,0,0,4605,4606,7,4,0,0,4606,834,1,0,0,0,4607,4608,7, + 20,0,0,4608,4609,7,2,0,0,4609,4610,7,5,0,0,4610,4611,7,21,0,0,4611, + 4612,7,9,0,0,4612,4613,5,95,0,0,4613,4614,7,6,0,0,4614,4615,7,23, + 0,0,4615,836,1,0,0,0,4616,4617,7,20,0,0,4617,4618,7,2,0,0,4618,4619, + 7,11,0,0,4619,4620,7,3,0,0,4620,4621,7,19,0,0,4621,4622,7,12,0,0, + 4622,4623,7,2,0,0,4623,4624,7,11,0,0,4624,4625,7,13,0,0,4625,838, + 1,0,0,0,4626,4627,7,20,0,0,4627,4628,7,2,0,0,4628,4629,7,11,0,0, + 4629,4630,7,7,0,0,4630,4631,7,22,0,0,4631,4632,7,2,0,0,4632,4633, + 7,11,0,0,4633,840,1,0,0,0,4634,4635,7,20,0,0,4635,4636,7,2,0,0,4636, + 4637,7,11,0,0,4637,4638,7,13,0,0,4638,4639,7,19,0,0,4639,4640,7, + 12,0,0,4640,4641,7,16,0,0,4641,842,1,0,0,0,4642,4643,7,20,0,0,4643, + 4644,7,2,0,0,4644,4645,7,11,0,0,4645,4646,5,95,0,0,4646,4647,7,24, + 0,0,4647,4648,7,6,0,0,4648,4649,7,24,0,0,4649,844,1,0,0,0,4650,4651, + 7,20,0,0,4651,4652,7,2,0,0,4652,4653,7,11,0,0,4653,4654,5,95,0,0, + 4654,4655,7,4,0,0,4655,4656,7,2,0,0,4656,4657,7,17,0,0,4657,4658, + 7,24,0,0,4658,846,1,0,0,0,4659,4660,7,20,0,0,4660,4661,7,9,0,0,4661, + 4662,7,11,0,0,4662,4663,7,4,0,0,4663,4664,7,19,0,0,4664,4665,7,6, + 0,0,4665,4666,7,12,0,0,4666,4667,7,19,0,0,4667,4668,7,12,0,0,4668, + 4669,7,16,0,0,4669,848,1,0,0,0,4670,4671,7,20,0,0,4671,4672,7,19, + 0,0,4672,4673,7,9,0,0,4673,4674,7,10,0,0,4674,4675,7,4,0,0,4675, + 850,1,0,0,0,4676,4677,7,20,0,0,4677,4678,7,19,0,0,4678,4679,7,11, + 0,0,4679,4680,7,8,0,0,4680,4681,7,21,0,0,4681,4682,7,2,0,0,4682, + 4683,7,5,0,0,4683,852,1,0,0,0,4684,4685,7,10,0,0,4685,4686,7,2,0, + 0,4686,4687,7,8,0,0,4687,4688,7,9,0,0,4688,4689,7,11,0,0,4689,4690, + 7,17,0,0,4690,4691,7,2,0,0,4691,4692,7,11,0,0,4692,4693,7,25,0,0, + 4693,854,1,0,0,0,4694,4695,7,10,0,0,4695,4696,7,2,0,0,4696,4697, + 7,8,0,0,4697,4698,7,9,0,0,4698,4699,7,11,0,0,4699,4700,7,17,0,0, + 4700,4701,7,2,0,0,4701,4702,7,11,0,0,4702,4703,7,25,0,0,4703,4704, + 7,4,0,0,4704,856,1,0,0,0,4705,4706,7,10,0,0,4706,4707,7,9,0,0,4707, + 4708,7,15,0,0,4708,4709,7,12,0,0,4709,4710,7,9,0,0,4710,4711,7,4, + 0,0,4711,4712,7,15,0,0,4712,4713,7,2,0,0,4713,4714,7,13,0,0,4714, + 858,1,0,0,0,4715,4716,7,10,0,0,4716,4717,7,9,0,0,4717,4718,7,9,0, + 0,4718,4719,7,25,0,0,4719,4720,7,4,0,0,4720,860,1,0,0,0,4721,4722, + 7,10,0,0,4722,4723,7,22,0,0,4723,4724,7,9,0,0,4724,4725,7,12,0,0, + 4725,862,1,0,0,0,4726,4727,7,10,0,0,4727,4728,7,22,0,0,4728,4729, + 7,9,0,0,4729,4730,7,12,0,0,4730,4731,7,9,0,0,4731,4732,7,20,0,0, + 4732,4733,7,9,0,0,4733,4734,7,11,0,0,4734,864,1,0,0,0,4735,4736, + 7,10,0,0,4736,4737,7,22,0,0,4737,4738,7,9,0,0,4738,4739,7,11,0,0, + 4739,4740,7,9,0,0,4740,866,1,0,0,0,4741,4742,7,10,0,0,4742,4743, + 7,19,0,0,4743,4744,7,15,0,0,4744,4745,7,8,0,0,4745,4746,7,22,0,0, + 4746,4747,5,95,0,0,4747,4748,7,3,0,0,4748,4749,7,21,0,0,4749,4750, + 7,7,0,0,4750,4751,7,25,0,0,4751,4752,7,9,0,0,4752,4753,7,8,0,0,4753, + 868,1,0,0,0,4754,4755,7,10,0,0,4755,4756,7,19,0,0,4756,4757,7,12, + 0,0,4757,4758,7,15,0,0,4758,4759,7,6,0,0,4759,4760,7,10,0,0,4760, + 870,1,0,0,0,4761,4762,7,10,0,0,4762,4763,7,19,0,0,4763,4764,7,8, + 0,0,4764,4765,7,22,0,0,4765,872,1,0,0,0,4766,4767,7,10,0,0,4767, + 4768,7,19,0,0,4768,4769,7,8,0,0,4769,4770,7,22,0,0,4770,4771,7,19, + 0,0,4771,4772,7,12,0,0,4772,874,1,0,0,0,4773,4774,7,10,0,0,4774, + 4775,7,19,0,0,4775,4776,7,8,0,0,4776,4777,7,22,0,0,4777,4778,7,6, + 0,0,4778,4779,7,21,0,0,4779,4780,7,8,0,0,4780,876,1,0,0,0,4781,4782, + 7,13,0,0,4782,4783,7,9,0,0,4783,4784,7,2,0,0,4784,4785,7,11,0,0, + 4785,878,1,0,0,0,4786,4787,7,2,0,0,4787,4788,7,15,0,0,4788,4789, + 7,15,0,0,4789,880,1,0,0,0,4790,4791,7,2,0,0,4791,4792,7,23,0,0,4792, + 4793,7,8,0,0,4793,4794,7,9,0,0,4794,4795,7,11,0,0,4795,882,1,0,0, + 0,4796,4797,7,2,0,0,4797,4798,7,4,0,0,4798,4799,7,7,0,0,4799,884, + 1,0,0,0,4800,4801,7,7,0,0,4801,4802,7,2,0,0,4802,4803,7,4,0,0,4803, + 4804,7,7,0,0,4804,4805,7,2,0,0,4805,4806,7,15,0,0,4806,4807,7,9, + 0,0,4807,886,1,0,0,0,4808,4809,7,7,0,0,4809,4810,7,2,0,0,4810,4811, + 7,8,0,0,4811,4812,7,2,0,0,4812,4813,7,5,0,0,4813,4814,7,6,0,0,4814, + 4815,7,16,0,0,4815,888,1,0,0,0,4816,4817,7,7,0,0,4817,4818,7,9,0, + 0,4818,4819,7,12,0,0,4819,4820,7,8,0,0,4820,4821,7,21,0,0,4821,4822, + 7,11,0,0,4822,4823,7,13,0,0,4823,890,1,0,0,0,4824,4825,7,7,0,0,4825, + 4826,7,6,0,0,4826,4827,7,12,0,0,4827,4828,7,23,0,0,4828,4829,7,19, + 0,0,4829,4830,7,16,0,0,4830,892,1,0,0,0,4831,4832,7,7,0,0,4832,4833, + 7,6,0,0,4833,4834,7,12,0,0,4834,4835,7,4,0,0,4835,4836,7,8,0,0,4836, + 4837,7,11,0,0,4837,4838,7,2,0,0,4838,4839,7,19,0,0,4839,4840,7,12, + 0,0,4840,4841,7,8,0,0,4841,4842,7,4,0,0,4842,894,1,0,0,0,4843,4844, + 7,7,0,0,4844,4845,7,21,0,0,4845,4846,7,17,0,0,4846,4847,7,21,0,0, + 4847,4848,7,5,0,0,4848,4849,7,2,0,0,4849,4850,7,8,0,0,4850,4851, + 7,9,0,0,4851,896,1,0,0,0,4852,4853,7,15,0,0,4853,4854,7,2,0,0,4854, + 4855,7,8,0,0,4855,4856,7,2,0,0,4856,898,1,0,0,0,4857,4858,7,15,0, + 0,4858,4859,7,2,0,0,4859,4860,7,8,0,0,4860,4861,7,2,0,0,4861,4862, + 7,3,0,0,4862,4863,7,2,0,0,4863,4864,7,4,0,0,4864,4865,7,9,0,0,4865, + 900,1,0,0,0,4866,4867,7,15,0,0,4867,4868,7,2,0,0,4868,4869,7,13, + 0,0,4869,4870,7,4,0,0,4870,902,1,0,0,0,4871,4872,7,15,0,0,4872,4873, + 7,9,0,0,4873,4874,7,7,0,0,4874,4875,7,2,0,0,4875,4876,7,15,0,0,4876, + 4877,7,9,0,0,4877,904,1,0,0,0,4878,4879,7,15,0,0,4879,4880,7,9,0, + 0,4880,4881,7,4,0,0,4881,4882,7,7,0,0,4882,906,1,0,0,0,4883,4884, + 7,15,0,0,4884,4885,7,9,0,0,4885,4886,7,4,0,0,4886,4887,7,7,0,0,4887, + 4888,7,11,0,0,4888,4889,7,19,0,0,4889,4890,7,24,0,0,4890,4891,7, + 8,0,0,4891,4892,7,6,0,0,4892,4893,7,11,0,0,4893,908,1,0,0,0,4894, + 4895,7,15,0,0,4895,4896,7,19,0,0,4896,4897,7,20,0,0,4897,910,1,0, + 0,0,4898,4899,7,9,0,0,4899,4900,7,12,0,0,4900,4901,7,16,0,0,4901, + 4902,7,19,0,0,4902,4903,7,12,0,0,4903,4904,7,9,0,0,4904,912,1,0, + 0,0,4905,4906,7,9,0,0,4906,4907,7,24,0,0,4907,4908,7,6,0,0,4908, + 4909,7,7,0,0,4909,4910,7,22,0,0,4910,914,1,0,0,0,4911,4912,7,9,0, + 0,4912,4913,7,18,0,0,4913,4914,7,7,0,0,4914,4915,7,5,0,0,4915,4916, + 7,21,0,0,4916,4917,7,15,0,0,4917,4918,7,19,0,0,4918,4919,7,12,0, + 0,4919,4920,7,16,0,0,4920,916,1,0,0,0,4921,4922,7,23,0,0,4922,4923, + 7,19,0,0,4923,4924,7,5,0,0,4924,4925,7,9,0,0,4925,918,1,0,0,0,4926, + 4927,7,23,0,0,4927,4928,7,19,0,0,4928,4929,7,11,0,0,4929,4930,7, + 4,0,0,4930,4931,7,8,0,0,4931,920,1,0,0,0,4932,4933,7,16,0,0,4933, + 4934,7,9,0,0,4934,4935,7,12,0,0,4935,4936,7,9,0,0,4936,4937,7,11, + 0,0,4937,4938,7,2,0,0,4938,4939,7,8,0,0,4939,4940,7,9,0,0,4940,4941, + 7,15,0,0,4941,922,1,0,0,0,4942,4943,7,22,0,0,4943,4944,7,6,0,0,4944, + 4945,7,24,0,0,4945,924,1,0,0,0,4946,4947,7,22,0,0,4947,4948,7,6, + 0,0,4948,4949,7,21,0,0,4949,4950,7,11,0,0,4950,4951,7,4,0,0,4951, + 926,1,0,0,0,4952,4953,7,19,0,0,4953,4954,7,16,0,0,4954,4955,7,12, + 0,0,4955,4956,7,6,0,0,4956,4957,7,11,0,0,4957,4958,7,9,0,0,4958, + 928,1,0,0,0,4959,4960,7,19,0,0,4960,4961,7,12,0,0,4961,4962,7,7, + 0,0,4962,4963,7,5,0,0,4963,4964,7,21,0,0,4964,4965,7,15,0,0,4965, + 4966,7,19,0,0,4966,4967,7,12,0,0,4967,4968,7,16,0,0,4968,930,1,0, + 0,0,4969,4970,7,27,0,0,4970,4971,7,2,0,0,4971,4972,7,11,0,0,4972, + 932,1,0,0,0,4973,4974,7,27,0,0,4974,4975,7,2,0,0,4975,4976,7,11, + 0,0,4976,4977,7,4,0,0,4977,934,1,0,0,0,4978,4979,7,27,0,0,4979,4980, + 7,2,0,0,4980,4981,7,20,0,0,4981,4982,7,2,0,0,4982,936,1,0,0,0,4983, + 4984,7,25,0,0,4984,4985,7,9,0,0,4985,4986,7,13,0,0,4986,938,1,0, + 0,0,4987,4988,7,5,0,0,4988,4989,7,2,0,0,4989,4990,7,4,0,0,4990,4991, + 7,8,0,0,4991,940,1,0,0,0,4992,4993,7,5,0,0,4993,4994,7,6,0,0,4994, + 4995,7,2,0,0,4995,4996,7,15,0,0,4996,942,1,0,0,0,4997,4998,7,17, + 0,0,4998,4999,7,2,0,0,4999,5000,7,24,0,0,5000,944,1,0,0,0,5001,5002, + 7,17,0,0,5002,5003,7,19,0,0,5003,5004,7,7,0,0,5004,5005,7,11,0,0, + 5005,5006,7,6,0,0,5006,5007,7,4,0,0,5007,5008,7,9,0,0,5008,5009, + 7,7,0,0,5009,5010,7,6,0,0,5010,5011,7,12,0,0,5011,5012,7,15,0,0, + 5012,946,1,0,0,0,5013,5014,7,17,0,0,5014,5015,7,19,0,0,5015,5016, + 7,5,0,0,5016,5017,7,5,0,0,5017,5018,7,9,0,0,5018,5019,7,12,0,0,5019, + 5020,7,12,0,0,5020,5021,7,19,0,0,5021,5022,7,21,0,0,5022,5023,7, + 17,0,0,5023,948,1,0,0,0,5024,5025,7,17,0,0,5025,5026,7,19,0,0,5026, + 5027,7,5,0,0,5027,5028,7,5,0,0,5028,5029,7,19,0,0,5029,5030,7,4, + 0,0,5030,5031,7,9,0,0,5031,5032,7,7,0,0,5032,5033,7,6,0,0,5033,5034, + 7,12,0,0,5034,5035,7,15,0,0,5035,950,1,0,0,0,5036,5037,7,17,0,0, + 5037,5038,7,19,0,0,5038,5039,7,12,0,0,5039,5040,7,21,0,0,5040,5041, + 7,8,0,0,5041,5042,7,9,0,0,5042,5043,7,4,0,0,5043,952,1,0,0,0,5044, + 5045,7,17,0,0,5045,5046,7,6,0,0,5046,5047,7,12,0,0,5047,5048,7,8, + 0,0,5048,5049,7,22,0,0,5049,5050,7,4,0,0,5050,954,1,0,0,0,5051,5052, + 7,12,0,0,5052,5053,7,2,0,0,5053,5054,7,12,0,0,5054,5055,7,6,0,0, + 5055,5056,7,4,0,0,5056,5057,7,9,0,0,5057,5058,7,7,0,0,5058,5059, + 7,6,0,0,5059,5060,7,12,0,0,5060,5061,7,15,0,0,5061,956,1,0,0,0,5062, + 5063,7,12,0,0,5063,5064,7,21,0,0,5064,5065,7,5,0,0,5065,5066,7,5, + 0,0,5066,5067,7,4,0,0,5067,958,1,0,0,0,5068,5069,7,6,0,0,5069,5070, + 7,24,0,0,5070,5071,7,8,0,0,5071,5072,7,19,0,0,5072,5073,7,6,0,0, + 5073,5074,7,12,0,0,5074,5075,7,4,0,0,5075,960,1,0,0,0,5076,5077, + 7,24,0,0,5077,5078,7,2,0,0,5078,5079,7,4,0,0,5079,5080,7,8,0,0,5080, + 962,1,0,0,0,5081,5082,7,24,0,0,5082,5083,7,5,0,0,5083,5084,7,2,0, + 0,5084,5085,7,12,0,0,5085,964,1,0,0,0,5086,5087,7,24,0,0,5087,5088, + 7,11,0,0,5088,5089,7,9,0,0,5089,5090,7,7,0,0,5090,5091,7,9,0,0,5091, + 5092,7,15,0,0,5092,5093,7,19,0,0,5093,5094,7,12,0,0,5094,5095,7, + 16,0,0,5095,966,1,0,0,0,5096,5097,7,24,0,0,5097,5098,7,13,0,0,5098, + 5099,7,8,0,0,5099,5100,7,22,0,0,5100,5101,7,6,0,0,5101,5102,7,12, + 0,0,5102,968,1,0,0,0,5103,5104,7,24,0,0,5104,5105,7,13,0,0,5105, + 5106,7,8,0,0,5106,5107,7,22,0,0,5107,5108,7,6,0,0,5108,5109,7,12, + 0,0,5109,5110,5,95,0,0,5110,5111,7,2,0,0,5111,5112,7,11,0,0,5112, + 5113,7,7,0,0,5113,5114,7,22,0,0,5114,5115,7,19,0,0,5115,5116,7,20, + 0,0,5116,5117,7,9,0,0,5117,5118,7,4,0,0,5118,970,1,0,0,0,5119,5120, + 7,24,0,0,5120,5121,7,13,0,0,5121,5122,7,8,0,0,5122,5123,7,22,0,0, + 5123,5124,7,6,0,0,5124,5125,7,12,0,0,5125,5126,5,95,0,0,5126,5127, + 7,15,0,0,5127,5128,7,9,0,0,5128,5129,7,24,0,0,5129,5130,7,9,0,0, + 5130,5131,7,12,0,0,5131,5132,7,15,0,0,5132,5133,7,9,0,0,5133,5134, + 7,12,0,0,5134,5135,7,7,0,0,5135,5136,7,19,0,0,5136,5137,7,9,0,0, + 5137,5138,7,4,0,0,5138,972,1,0,0,0,5139,5140,7,24,0,0,5140,5141, + 7,13,0,0,5141,5142,7,8,0,0,5142,5143,7,22,0,0,5143,5144,7,6,0,0, + 5144,5145,7,12,0,0,5145,5146,5,95,0,0,5146,5147,7,23,0,0,5147,5148, + 7,19,0,0,5148,5149,7,5,0,0,5149,5150,7,9,0,0,5150,5151,7,4,0,0,5151, + 974,1,0,0,0,5152,5153,7,24,0,0,5153,5154,7,13,0,0,5154,5155,7,8, + 0,0,5155,5156,7,22,0,0,5156,5157,7,6,0,0,5157,5158,7,12,0,0,5158, + 5159,5,95,0,0,5159,5160,7,27,0,0,5160,5161,7,2,0,0,5161,5162,7,11, + 0,0,5162,976,1,0,0,0,5163,5164,7,24,0,0,5164,5165,7,13,0,0,5165, + 5166,7,8,0,0,5166,5167,7,22,0,0,5167,5168,7,6,0,0,5168,5169,7,12, + 0,0,5169,5170,5,95,0,0,5170,5171,7,24,0,0,5171,5172,7,2,0,0,5172, + 5173,7,11,0,0,5173,5174,7,2,0,0,5174,5175,7,17,0,0,5175,5176,7,9, + 0,0,5176,5177,7,8,0,0,5177,5178,7,9,0,0,5178,5179,7,11,0,0,5179, + 978,1,0,0,0,5180,5181,7,24,0,0,5181,5182,7,13,0,0,5182,5183,7,8, + 0,0,5183,5184,7,22,0,0,5184,5185,7,6,0,0,5185,5186,7,12,0,0,5186, + 5187,5,95,0,0,5187,5188,7,11,0,0,5188,5189,7,9,0,0,5189,5190,7,26, + 0,0,5190,5191,7,21,0,0,5191,5192,7,19,0,0,5192,5193,7,11,0,0,5193, + 5194,7,9,0,0,5194,5195,7,17,0,0,5195,5196,7,9,0,0,5196,5197,7,12, + 0,0,5197,5198,7,8,0,0,5198,5199,7,4,0,0,5199,980,1,0,0,0,5200,5201, + 7,26,0,0,5201,5202,7,21,0,0,5202,5203,7,2,0,0,5203,5204,7,11,0,0, + 5204,5205,7,8,0,0,5205,5206,7,9,0,0,5206,5207,7,11,0,0,5207,982, + 1,0,0,0,5208,5209,7,11,0,0,5209,5210,7,9,0,0,5210,5211,7,17,0,0, + 5211,5212,7,6,0,0,5212,5213,7,20,0,0,5213,5214,7,9,0,0,5214,984, + 1,0,0,0,5215,5216,7,11,0,0,5216,5217,7,9,0,0,5217,5218,7,4,0,0,5218, + 5219,7,8,0,0,5219,5220,7,11,0,0,5220,5221,7,19,0,0,5221,5222,7,7, + 0,0,5222,5223,7,8,0,0,5223,986,1,0,0,0,5224,5225,7,4,0,0,5225,5226, + 7,9,0,0,5226,5227,7,7,0,0,5227,5228,7,6,0,0,5228,5229,7,12,0,0,5229, + 5230,7,15,0,0,5230,5231,7,4,0,0,5231,988,1,0,0,0,5232,5233,7,4,0, + 0,5233,5234,7,9,0,0,5234,5235,7,4,0,0,5235,5236,7,4,0,0,5236,5237, + 7,19,0,0,5237,5238,7,6,0,0,5238,5239,7,12,0,0,5239,990,1,0,0,0,5240, + 5241,7,4,0,0,5241,5242,7,9,0,0,5242,5243,7,8,0,0,5243,5244,7,4,0, + 0,5244,992,1,0,0,0,5245,5246,7,4,0,0,5246,5247,7,19,0,0,5247,5248, + 7,14,0,0,5248,5249,7,9,0,0,5249,994,1,0,0,0,5250,5251,7,4,0,0,5251, + 5252,7,5,0,0,5252,5253,7,19,0,0,5253,5254,7,15,0,0,5254,5255,7,9, + 0,0,5255,996,1,0,0,0,5256,5257,7,4,0,0,5257,5258,7,8,0,0,5258,5259, + 7,9,0,0,5259,5260,7,24,0,0,5260,998,1,0,0,0,5261,5262,7,8,0,0,5262, + 5263,7,9,0,0,5263,5264,7,17,0,0,5264,5265,7,24,0,0,5265,5266,7,6, + 0,0,5266,5267,7,11,0,0,5267,5268,7,2,0,0,5268,5269,7,11,0,0,5269, + 5270,7,13,0,0,5270,1000,1,0,0,0,5271,5272,7,8,0,0,5272,5273,7,19, + 0,0,5273,5274,7,17,0,0,5274,5275,7,9,0,0,5275,5276,7,7,0,0,5276, + 5277,7,6,0,0,5277,5278,7,5,0,0,5278,1002,1,0,0,0,5279,5280,7,8,0, + 0,5280,5281,7,21,0,0,5281,5282,7,17,0,0,5282,5283,7,3,0,0,5283,5284, + 7,5,0,0,5284,5285,7,9,0,0,5285,1004,1,0,0,0,5286,5287,7,21,0,0,5287, + 5288,7,12,0,0,5288,5289,7,5,0,0,5289,5290,7,6,0,0,5290,5291,7,2, + 0,0,5291,5292,7,15,0,0,5292,1006,1,0,0,0,5293,5294,7,20,0,0,5294, + 5295,7,19,0,0,5295,5296,7,9,0,0,5296,5297,7,10,0,0,5297,1008,1,0, + 0,0,5298,5299,7,10,0,0,5299,5300,7,9,0,0,5300,5301,7,9,0,0,5301, + 5302,7,25,0,0,5302,1010,1,0,0,0,5303,5304,7,13,0,0,5304,5305,7,9, + 0,0,5305,5306,7,2,0,0,5306,5307,7,11,0,0,5307,5308,7,4,0,0,5308, + 1012,1,0,0,0,5309,5310,7,14,0,0,5310,5311,7,6,0,0,5311,5312,7,12, + 0,0,5312,5313,7,9,0,0,5313,1014,1,0,0,0,5314,5315,5,61,0,0,5315, + 1016,1,0,0,0,5316,5317,5,62,0,0,5317,1018,1,0,0,0,5318,5319,5,60, + 0,0,5319,1020,1,0,0,0,5320,5321,5,33,0,0,5321,1022,1,0,0,0,5322, + 5323,5,126,0,0,5323,1024,1,0,0,0,5324,5325,5,124,0,0,5325,1026,1, + 0,0,0,5326,5327,5,38,0,0,5327,1028,1,0,0,0,5328,5329,5,94,0,0,5329, + 1030,1,0,0,0,5330,5331,5,46,0,0,5331,1032,1,0,0,0,5332,5333,5,91, + 0,0,5333,1034,1,0,0,0,5334,5335,5,93,0,0,5335,1036,1,0,0,0,5336, + 5337,5,40,0,0,5337,1038,1,0,0,0,5338,5339,5,41,0,0,5339,1040,1,0, + 0,0,5340,5341,5,123,0,0,5341,1042,1,0,0,0,5342,5343,5,125,0,0,5343, + 1044,1,0,0,0,5344,5345,5,44,0,0,5345,1046,1,0,0,0,5346,5347,5,59, + 0,0,5347,1048,1,0,0,0,5348,5349,5,64,0,0,5349,1050,1,0,0,0,5350, + 5351,5,39,0,0,5351,1052,1,0,0,0,5352,5353,5,34,0,0,5353,1054,1,0, + 0,0,5354,5355,5,96,0,0,5355,1056,1,0,0,0,5356,5357,5,58,0,0,5357, + 1058,1,0,0,0,5358,5359,5,42,0,0,5359,1060,1,0,0,0,5360,5361,5,95, + 0,0,5361,1062,1,0,0,0,5362,5363,5,45,0,0,5363,1064,1,0,0,0,5364, + 5365,5,43,0,0,5365,1066,1,0,0,0,5366,5367,5,37,0,0,5367,1068,1,0, + 0,0,5368,5369,5,124,0,0,5369,5370,5,124,0,0,5370,1070,1,0,0,0,5371, + 5372,5,45,0,0,5372,5373,5,45,0,0,5373,1072,1,0,0,0,5374,5375,5,47, + 0,0,5375,1074,1,0,0,0,5376,5377,5,63,0,0,5377,1076,1,0,0,0,5378, + 5379,5,61,0,0,5379,5380,5,62,0,0,5380,1078,1,0,0,0,5381,5385,3,1099, + 549,0,5382,5385,3,1101,550,0,5383,5385,3,1105,552,0,5384,5381,1, + 0,0,0,5384,5382,1,0,0,0,5384,5383,1,0,0,0,5385,1080,1,0,0,0,5386, + 5388,3,1095,547,0,5387,5386,1,0,0,0,5388,5389,1,0,0,0,5389,5387, + 1,0,0,0,5389,5390,1,0,0,0,5390,1082,1,0,0,0,5391,5393,3,1095,547, + 0,5392,5391,1,0,0,0,5393,5394,1,0,0,0,5394,5392,1,0,0,0,5394,5395, + 1,0,0,0,5395,5397,1,0,0,0,5396,5392,1,0,0,0,5396,5397,1,0,0,0,5397, + 5398,1,0,0,0,5398,5400,5,46,0,0,5399,5401,3,1095,547,0,5400,5399, + 1,0,0,0,5401,5402,1,0,0,0,5402,5400,1,0,0,0,5402,5403,1,0,0,0,5403, + 5435,1,0,0,0,5404,5406,3,1095,547,0,5405,5404,1,0,0,0,5406,5407, + 1,0,0,0,5407,5405,1,0,0,0,5407,5408,1,0,0,0,5408,5409,1,0,0,0,5409, + 5410,5,46,0,0,5410,5411,3,1091,545,0,5411,5435,1,0,0,0,5412,5414, + 3,1095,547,0,5413,5412,1,0,0,0,5414,5415,1,0,0,0,5415,5413,1,0,0, + 0,5415,5416,1,0,0,0,5416,5418,1,0,0,0,5417,5413,1,0,0,0,5417,5418, + 1,0,0,0,5418,5419,1,0,0,0,5419,5421,5,46,0,0,5420,5422,3,1095,547, + 0,5421,5420,1,0,0,0,5422,5423,1,0,0,0,5423,5421,1,0,0,0,5423,5424, + 1,0,0,0,5424,5425,1,0,0,0,5425,5426,3,1091,545,0,5426,5435,1,0,0, + 0,5427,5429,3,1095,547,0,5428,5427,1,0,0,0,5429,5430,1,0,0,0,5430, + 5428,1,0,0,0,5430,5431,1,0,0,0,5431,5432,1,0,0,0,5432,5433,3,1091, + 545,0,5433,5435,1,0,0,0,5434,5396,1,0,0,0,5434,5405,1,0,0,0,5434, + 5417,1,0,0,0,5434,5428,1,0,0,0,5435,1084,1,0,0,0,5436,5437,3,1103, + 551,0,5437,1086,1,0,0,0,5438,5439,3,1093,546,0,5439,1088,1,0,0,0, + 5440,5448,5,96,0,0,5441,5442,5,92,0,0,5442,5447,9,0,0,0,5443,5444, + 5,96,0,0,5444,5447,5,96,0,0,5445,5447,8,28,0,0,5446,5441,1,0,0,0, + 5446,5443,1,0,0,0,5446,5445,1,0,0,0,5447,5450,1,0,0,0,5448,5446, + 1,0,0,0,5448,5449,1,0,0,0,5449,5451,1,0,0,0,5450,5448,1,0,0,0,5451, + 5452,5,96,0,0,5452,1090,1,0,0,0,5453,5455,7,9,0,0,5454,5456,7,29, + 0,0,5455,5454,1,0,0,0,5455,5456,1,0,0,0,5456,5458,1,0,0,0,5457,5459, + 3,1095,547,0,5458,5457,1,0,0,0,5459,5460,1,0,0,0,5460,5458,1,0,0, + 0,5460,5461,1,0,0,0,5461,1092,1,0,0,0,5462,5464,7,30,0,0,5463,5462, + 1,0,0,0,5464,5467,1,0,0,0,5465,5466,1,0,0,0,5465,5463,1,0,0,0,5466, + 5469,1,0,0,0,5467,5465,1,0,0,0,5468,5470,7,31,0,0,5469,5468,1,0, + 0,0,5470,5471,1,0,0,0,5471,5472,1,0,0,0,5471,5469,1,0,0,0,5472,5476, + 1,0,0,0,5473,5475,7,30,0,0,5474,5473,1,0,0,0,5475,5478,1,0,0,0,5476, + 5474,1,0,0,0,5476,5477,1,0,0,0,5477,1094,1,0,0,0,5478,5476,1,0,0, + 0,5479,5480,7,32,0,0,5480,1096,1,0,0,0,5481,5482,7,33,0,0,5482,1098, + 1,0,0,0,5483,5491,5,34,0,0,5484,5485,5,92,0,0,5485,5490,9,0,0,0, + 5486,5487,5,34,0,0,5487,5490,5,34,0,0,5488,5490,8,34,0,0,5489,5484, + 1,0,0,0,5489,5486,1,0,0,0,5489,5488,1,0,0,0,5490,5493,1,0,0,0,5491, + 5489,1,0,0,0,5491,5492,1,0,0,0,5492,5494,1,0,0,0,5493,5491,1,0,0, + 0,5494,5495,5,34,0,0,5495,1100,1,0,0,0,5496,5504,5,39,0,0,5497,5498, + 5,92,0,0,5498,5503,9,0,0,0,5499,5500,5,39,0,0,5500,5503,5,39,0,0, + 5501,5503,8,35,0,0,5502,5497,1,0,0,0,5502,5499,1,0,0,0,5502,5501, + 1,0,0,0,5503,5506,1,0,0,0,5504,5502,1,0,0,0,5504,5505,1,0,0,0,5505, + 5507,1,0,0,0,5506,5504,1,0,0,0,5507,5508,5,39,0,0,5508,1102,1,0, + 0,0,5509,5510,7,3,0,0,5510,5512,5,39,0,0,5511,5513,7,36,0,0,5512, + 5511,1,0,0,0,5513,5514,1,0,0,0,5514,5512,1,0,0,0,5514,5515,1,0,0, + 0,5515,5516,1,0,0,0,5516,5517,5,39,0,0,5517,1104,1,0,0,0,5518,5526, + 5,96,0,0,5519,5520,5,92,0,0,5520,5525,9,0,0,0,5521,5522,5,96,0,0, + 5522,5525,5,96,0,0,5523,5525,8,28,0,0,5524,5519,1,0,0,0,5524,5521, + 1,0,0,0,5524,5523,1,0,0,0,5525,5528,1,0,0,0,5526,5524,1,0,0,0,5526, + 5527,1,0,0,0,5527,5529,1,0,0,0,5528,5526,1,0,0,0,5529,5530,5,96, + 0,0,5530,1106,1,0,0,0,34,0,1117,1128,1133,1137,1141,1147,1151,1153, + 5384,5389,5394,5396,5402,5407,5415,5417,5423,5430,5434,5446,5448, + 5455,5460,5465,5471,5476,5489,5491,5502,5504,5514,5524,5526,1,0, 1,0 ]; diff --git a/src/lib/flink/FlinkSqlParser.interp b/src/lib/flink/FlinkSqlParser.interp index 2905e3ec..c1810c75 100644 --- a/src/lib/flink/FlinkSqlParser.interp +++ b/src/lib/flink/FlinkSqlParser.interp @@ -145,6 +145,7 @@ null 'FIRST_VALUE' 'FLOAT' 'FLOOR' +'FOLLOWING' 'FOR' 'FOREIGN' 'FRAME_ROW' @@ -402,6 +403,7 @@ null 'TRY_CAST' 'TUESDAY' 'UESCAPE' +'UNBOUNDED' 'UNION' 'UNIQUE' 'UNKNOWN' @@ -690,6 +692,7 @@ KW_FILTER KW_FIRST_VALUE KW_FLOAT KW_FLOOR +KW_FOLLOWING KW_FOR KW_FOREIGN KW_FRAME_ROW @@ -947,6 +950,7 @@ KW_TRUNCATE KW_TRY_CAST KW_TUESDAY KW_UESCAPE +KW_UNBOUNDED KW_UNION KW_UNIQUE KW_UNKNOWN @@ -1218,6 +1222,8 @@ afterMatchStrategy patternVariablesDefinition windowFrame frameBound +frameStart +frameEnd withinClause expression booleanExpression @@ -1291,4 +1297,4 @@ nonReservedKeywords atn: -[4, 1, 542, 2441, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 1, 0, 5, 0, 400, 8, 0, 10, 0, 12, 0, 403, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 409, 8, 1, 1, 1, 3, 1, 412, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 426, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 444, 8, 4, 1, 5, 1, 5, 3, 5, 448, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 457, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 462, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 467, 8, 8, 10, 8, 12, 8, 470, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 480, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 487, 8, 11, 10, 11, 12, 11, 490, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 501, 8, 12, 1, 12, 3, 12, 504, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 511, 8, 12, 1, 12, 3, 12, 514, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 522, 8, 12, 1, 12, 1, 12, 3, 12, 526, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 531, 8, 12, 1, 12, 3, 12, 534, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 541, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 549, 8, 15, 1, 16, 1, 16, 3, 16, 553, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 565, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 573, 8, 18, 1, 18, 1, 18, 3, 18, 577, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 609, 8, 18, 1, 19, 3, 19, 612, 8, 19, 1, 19, 4, 19, 615, 8, 19, 11, 19, 12, 19, 616, 1, 20, 1, 20, 3, 20, 621, 8, 20, 1, 21, 1, 21, 3, 21, 625, 8, 21, 1, 21, 1, 21, 3, 21, 629, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 636, 8, 21, 10, 21, 12, 21, 639, 9, 21, 1, 21, 1, 21, 3, 21, 643, 8, 21, 1, 21, 1, 21, 3, 21, 647, 8, 21, 1, 21, 1, 21, 3, 21, 651, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 656, 8, 21, 1, 21, 3, 21, 659, 8, 21, 1, 21, 1, 21, 3, 21, 663, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 668, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 674, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 679, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 684, 8, 24, 1, 24, 1, 24, 3, 24, 688, 8, 24, 1, 25, 1, 25, 3, 25, 692, 8, 25, 1, 26, 1, 26, 3, 26, 696, 8, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 704, 8, 28, 10, 28, 12, 28, 707, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 714, 8, 29, 1, 29, 1, 29, 3, 29, 718, 8, 29, 1, 29, 1, 29, 3, 29, 722, 8, 29, 1, 29, 1, 29, 3, 29, 726, 8, 29, 1, 29, 1, 29, 3, 29, 730, 8, 29, 1, 29, 1, 29, 3, 29, 734, 8, 29, 1, 29, 1, 29, 3, 29, 738, 8, 29, 1, 29, 1, 29, 3, 29, 742, 8, 29, 1, 29, 1, 29, 3, 29, 746, 8, 29, 3, 29, 748, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 758, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 766, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 788, 8, 35, 10, 35, 12, 35, 791, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 802, 8, 35, 10, 35, 12, 35, 805, 9, 35, 1, 35, 1, 35, 3, 35, 809, 8, 35, 1, 36, 1, 36, 3, 36, 813, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 819, 8, 36, 1, 36, 3, 36, 822, 8, 36, 1, 36, 3, 36, 825, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 832, 8, 37, 1, 37, 3, 37, 835, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 844, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 856, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 878, 8, 46, 10, 46, 12, 46, 881, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 890, 8, 47, 10, 47, 12, 47, 893, 9, 47, 1, 47, 1, 47, 3, 47, 897, 8, 47, 1, 48, 1, 48, 3, 48, 901, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 907, 8, 49, 10, 49, 12, 49, 910, 9, 49, 1, 49, 3, 49, 913, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 919, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 929, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 934, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 940, 8, 53, 1, 53, 1, 53, 3, 53, 944, 8, 53, 1, 53, 1, 53, 3, 53, 948, 8, 53, 1, 53, 1, 53, 3, 53, 952, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 961, 8, 54, 1, 54, 1, 54, 3, 54, 965, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 972, 8, 54, 1, 54, 3, 54, 975, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 983, 8, 55, 10, 55, 12, 55, 986, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 993, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1001, 8, 57, 1, 58, 1, 58, 3, 58, 1005, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1020, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1039, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1050, 8, 66, 1, 66, 1, 66, 3, 66, 1054, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1061, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1066, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1072, 8, 68, 1, 68, 1, 68, 3, 68, 1076, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1083, 8, 69, 1, 69, 1, 69, 3, 69, 1087, 8, 69, 1, 70, 1, 70, 3, 70, 1091, 8, 70, 1, 70, 1, 70, 3, 70, 1095, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1103, 8, 71, 1, 71, 1, 71, 3, 71, 1107, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1112, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1118, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1124, 8, 73, 1, 73, 3, 73, 1127, 8, 73, 1, 73, 1, 73, 3, 73, 1131, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1140, 8, 75, 10, 75, 12, 75, 1143, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1149, 8, 76, 10, 76, 12, 76, 1152, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1158, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1167, 8, 78, 11, 78, 12, 78, 1168, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 4, 79, 1179, 8, 79, 11, 79, 12, 79, 1180, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1196, 8, 80, 1, 80, 3, 80, 1199, 8, 80, 1, 80, 1, 80, 3, 80, 1203, 8, 80, 1, 80, 3, 80, 1206, 8, 80, 3, 80, 1208, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1213, 8, 80, 1, 80, 1, 80, 3, 80, 1217, 8, 80, 1, 80, 3, 80, 1220, 8, 80, 5, 80, 1222, 8, 80, 10, 80, 12, 80, 1225, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1231, 8, 81, 10, 81, 12, 81, 1234, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1240, 8, 82, 10, 82, 12, 82, 1243, 9, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1250, 8, 83, 10, 83, 12, 83, 1253, 9, 83, 1, 83, 1, 83, 3, 83, 1257, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 1268, 8, 85, 1, 85, 3, 85, 1271, 8, 85, 1, 85, 3, 85, 1274, 8, 85, 1, 85, 3, 85, 1277, 8, 85, 1, 85, 3, 85, 1280, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1286, 8, 85, 1, 86, 1, 86, 3, 86, 1290, 8, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 1296, 8, 86, 10, 86, 12, 86, 1299, 9, 86, 3, 86, 1301, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1306, 8, 87, 1, 87, 3, 87, 1309, 8, 87, 1, 87, 1, 87, 3, 87, 1313, 8, 87, 1, 87, 3, 87, 1316, 8, 87, 3, 87, 1318, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1332, 8, 88, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 1341, 8, 90, 10, 90, 12, 90, 1344, 9, 90, 1, 90, 1, 90, 3, 90, 1348, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1356, 8, 90, 1, 90, 3, 90, 1359, 8, 90, 1, 90, 3, 90, 1362, 8, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1367, 8, 90, 5, 90, 1369, 8, 90, 10, 90, 12, 90, 1372, 9, 90, 1, 91, 1, 91, 3, 91, 1376, 8, 91, 1, 92, 3, 92, 1379, 8, 92, 1, 92, 1, 92, 3, 92, 1383, 8, 92, 1, 92, 1, 92, 3, 92, 1387, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 1396, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 1407, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 1432, 8, 97, 10, 97, 12, 97, 1435, 9, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1456, 8, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 1469, 8, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1479, 8, 104, 10, 104, 12, 104, 1482, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1492, 8, 105, 10, 105, 12, 105, 1495, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1504, 8, 105, 10, 105, 12, 105, 1507, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1516, 8, 105, 10, 105, 12, 105, 1519, 9, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1524, 8, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 1549, 8, 112, 10, 112, 12, 112, 1552, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 3, 114, 1559, 8, 114, 1, 114, 1, 114, 3, 114, 1563, 8, 114, 1, 114, 3, 114, 1566, 8, 114, 1, 114, 3, 114, 1569, 8, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 3, 115, 1576, 8, 115, 1, 115, 3, 115, 1579, 8, 115, 1, 115, 3, 115, 1582, 8, 115, 1, 115, 3, 115, 1585, 8, 115, 1, 115, 3, 115, 1588, 8, 115, 1, 115, 3, 115, 1591, 8, 115, 1, 115, 1, 115, 1, 115, 3, 115, 1596, 8, 115, 1, 115, 3, 115, 1599, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1606, 8, 116, 10, 116, 12, 116, 1609, 9, 116, 1, 117, 1, 117, 3, 117, 1613, 8, 117, 1, 117, 1, 117, 3, 117, 1617, 8, 117, 1, 118, 1, 118, 1, 118, 3, 118, 1622, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1628, 8, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1633, 8, 119, 5, 119, 1635, 8, 119, 10, 119, 12, 119, 1638, 9, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 1656, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1662, 8, 121, 10, 121, 12, 121, 1665, 9, 121, 1, 122, 1, 122, 1, 122, 4, 122, 1670, 8, 122, 11, 122, 12, 122, 1671, 1, 122, 1, 122, 3, 122, 1676, 8, 122, 1, 123, 1, 123, 3, 123, 1680, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1690, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1716, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 1722, 8, 126, 10, 126, 12, 126, 1725, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1736, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1758, 8, 131, 3, 131, 1760, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1771, 8, 131, 1, 131, 5, 131, 1774, 8, 131, 10, 131, 12, 131, 1777, 9, 131, 1, 132, 3, 132, 1780, 8, 132, 1, 132, 1, 132, 3, 132, 1784, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1791, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1798, 8, 132, 10, 132, 12, 132, 1801, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1806, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1819, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1826, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1831, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1837, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1844, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1851, 8, 132, 3, 132, 1853, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1863, 8, 133, 1, 134, 3, 134, 1866, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1876, 8, 134, 10, 134, 12, 134, 1879, 9, 134, 1, 134, 1, 134, 3, 134, 1883, 8, 134, 1, 134, 3, 134, 1886, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1892, 8, 134, 3, 134, 1894, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1900, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1921, 8, 135, 10, 135, 12, 135, 1924, 9, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1931, 8, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1936, 8, 136, 10, 136, 12, 136, 1939, 9, 136, 3, 136, 1941, 8, 136, 1, 136, 1, 136, 3, 136, 1945, 8, 136, 1, 137, 1, 137, 1, 137, 4, 137, 1950, 8, 137, 11, 137, 12, 137, 1951, 1, 137, 1, 137, 3, 137, 1956, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 4, 137, 1963, 8, 137, 11, 137, 12, 137, 1964, 1, 137, 1, 137, 3, 137, 1969, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 1985, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 1994, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2022, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 2029, 8, 137, 10, 137, 12, 137, 2032, 9, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2040, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2046, 8, 140, 1, 141, 1, 141, 3, 141, 2050, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 2060, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2066, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2072, 8, 143, 1, 143, 1, 143, 3, 143, 2076, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2082, 8, 143, 1, 143, 1, 143, 3, 143, 2086, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2092, 8, 144, 3, 144, 2094, 8, 144, 1, 144, 3, 144, 2097, 8, 144, 1, 144, 3, 144, 2100, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2106, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2112, 8, 144, 1, 145, 3, 145, 2115, 8, 145, 1, 145, 1, 145, 3, 145, 2119, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 2125, 8, 145, 10, 145, 12, 145, 2128, 9, 145, 1, 145, 3, 145, 2131, 8, 145, 5, 145, 2133, 8, 145, 10, 145, 12, 145, 2136, 9, 145, 1, 145, 1, 145, 3, 145, 2140, 8, 145, 1, 145, 1, 145, 3, 145, 2144, 8, 145, 1, 146, 5, 146, 2147, 8, 146, 10, 146, 12, 146, 2150, 9, 146, 1, 146, 1, 146, 3, 146, 2154, 8, 146, 1, 146, 1, 146, 3, 146, 2158, 8, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 149, 1, 149, 3, 149, 2166, 8, 149, 1, 150, 1, 150, 1, 150, 3, 150, 2171, 8, 150, 1, 151, 1, 151, 3, 151, 2175, 8, 151, 1, 152, 1, 152, 1, 152, 4, 152, 2180, 8, 152, 11, 152, 12, 152, 2181, 1, 153, 1, 153, 1, 153, 3, 153, 2187, 8, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 3, 155, 2195, 8, 155, 1, 155, 1, 155, 3, 155, 2199, 8, 155, 1, 156, 3, 156, 2202, 8, 156, 1, 156, 1, 156, 3, 156, 2206, 8, 156, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 4, 158, 2213, 8, 158, 11, 158, 12, 158, 2214, 1, 158, 3, 158, 2218, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 5, 160, 2227, 8, 160, 10, 160, 12, 160, 2230, 9, 160, 1, 161, 1, 161, 1, 161, 3, 161, 2235, 8, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2253, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2258, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2263, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2270, 8, 169, 3, 169, 2272, 8, 169, 1, 170, 1, 170, 1, 170, 3, 170, 2277, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2284, 8, 170, 3, 170, 2286, 8, 170, 1, 171, 1, 171, 1, 171, 3, 171, 2291, 8, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2298, 8, 171, 3, 171, 2300, 8, 171, 1, 172, 1, 172, 1, 172, 3, 172, 2305, 8, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2312, 8, 172, 3, 172, 2314, 8, 172, 1, 173, 1, 173, 1, 173, 5, 173, 2319, 8, 173, 10, 173, 12, 173, 2322, 9, 173, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 2338, 8, 177, 10, 177, 12, 177, 2341, 9, 177, 1, 177, 1, 177, 1, 178, 1, 178, 3, 178, 2347, 8, 178, 1, 178, 3, 178, 2350, 8, 178, 1, 179, 1, 179, 1, 179, 3, 179, 2355, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2361, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2369, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2385, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2394, 8, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2404, 8, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2411, 8, 186, 1, 186, 3, 186, 2414, 8, 186, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 2320, 5, 160, 180, 262, 270, 274, 199, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 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, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 0, 47, 2, 0, 109, 109, 451, 451, 3, 0, 45, 45, 128, 128, 189, 189, 4, 0, 42, 42, 90, 90, 423, 423, 465, 465, 2, 0, 442, 442, 448, 448, 2, 0, 151, 151, 170, 170, 2, 0, 438, 438, 490, 490, 2, 0, 483, 486, 488, 488, 3, 0, 32, 32, 91, 91, 245, 245, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 345, 345, 361, 361, 379, 379, 382, 382, 388, 388, 417, 418, 2, 0, 434, 434, 436, 436, 4, 0, 101, 102, 115, 115, 144, 144, 247, 247, 2, 0, 13, 13, 232, 232, 2, 0, 456, 456, 463, 463, 3, 0, 5, 5, 271, 271, 445, 445, 3, 0, 267, 267, 456, 456, 463, 463, 3, 0, 426, 426, 459, 459, 478, 478, 3, 0, 331, 331, 466, 466, 482, 482, 2, 0, 441, 441, 491, 491, 2, 0, 183, 183, 266, 266, 3, 0, 130, 130, 180, 180, 403, 403, 4, 0, 152, 152, 174, 174, 202, 202, 318, 318, 3, 0, 446, 446, 460, 460, 500, 500, 4, 0, 251, 251, 447, 447, 495, 497, 499, 499, 2, 0, 74, 74, 321, 321, 3, 0, 460, 460, 493, 493, 500, 500, 2, 0, 440, 440, 451, 451, 2, 0, 458, 458, 468, 468, 4, 0, 140, 140, 245, 245, 398, 398, 405, 405, 2, 0, 19, 19, 370, 370, 2, 0, 5, 5, 11, 11, 2, 0, 510, 510, 530, 531, 4, 0, 453, 453, 528, 528, 532, 532, 535, 535, 2, 0, 530, 531, 533, 533, 1, 0, 530, 531, 1, 0, 539, 540, 2, 0, 539, 539, 542, 542, 4, 0, 453, 453, 528, 528, 530, 532, 534, 535, 3, 0, 242, 242, 509, 510, 530, 531, 2, 0, 140, 140, 398, 398, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 437, 437, 471, 471, 473, 473, 489, 489, 503, 503, 15, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 428, 428, 437, 437, 443, 443, 449, 450, 455, 455, 461, 461, 471, 476, 489, 489, 492, 492, 503, 504, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 201, 201, 208, 209, 390, 390, 414, 414, 528, 528, 3, 0, 78, 78, 84, 85, 208, 209, 2, 0, 91, 91, 379, 380, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 187, 188, 190, 195, 198, 198, 200, 200, 202, 202, 206, 206, 210, 210, 215, 215, 221, 221, 223, 224, 230, 230, 244, 244, 246, 246, 265, 265, 277, 277, 282, 282, 284, 284, 294, 294, 318, 318, 322, 324, 335, 335, 358, 359, 365, 365, 368, 368, 381, 381, 396, 396, 399, 400, 409, 409, 420, 421, 437, 437, 470, 470, 489, 489, 503, 503, 1, 0, 438, 505, 2674, 0, 401, 1, 0, 0, 0, 2, 411, 1, 0, 0, 0, 4, 425, 1, 0, 0, 0, 6, 427, 1, 0, 0, 0, 8, 443, 1, 0, 0, 0, 10, 447, 1, 0, 0, 0, 12, 449, 1, 0, 0, 0, 14, 452, 1, 0, 0, 0, 16, 463, 1, 0, 0, 0, 18, 471, 1, 0, 0, 0, 20, 479, 1, 0, 0, 0, 22, 481, 1, 0, 0, 0, 24, 533, 1, 0, 0, 0, 26, 535, 1, 0, 0, 0, 28, 542, 1, 0, 0, 0, 30, 546, 1, 0, 0, 0, 32, 550, 1, 0, 0, 0, 34, 554, 1, 0, 0, 0, 36, 608, 1, 0, 0, 0, 38, 614, 1, 0, 0, 0, 40, 620, 1, 0, 0, 0, 42, 622, 1, 0, 0, 0, 44, 664, 1, 0, 0, 0, 46, 678, 1, 0, 0, 0, 48, 680, 1, 0, 0, 0, 50, 691, 1, 0, 0, 0, 52, 695, 1, 0, 0, 0, 54, 697, 1, 0, 0, 0, 56, 699, 1, 0, 0, 0, 58, 747, 1, 0, 0, 0, 60, 749, 1, 0, 0, 0, 62, 753, 1, 0, 0, 0, 64, 761, 1, 0, 0, 0, 66, 769, 1, 0, 0, 0, 68, 773, 1, 0, 0, 0, 70, 808, 1, 0, 0, 0, 72, 824, 1, 0, 0, 0, 74, 826, 1, 0, 0, 0, 76, 836, 1, 0, 0, 0, 78, 838, 1, 0, 0, 0, 80, 845, 1, 0, 0, 0, 82, 847, 1, 0, 0, 0, 84, 855, 1, 0, 0, 0, 86, 863, 1, 0, 0, 0, 88, 865, 1, 0, 0, 0, 90, 869, 1, 0, 0, 0, 92, 873, 1, 0, 0, 0, 94, 896, 1, 0, 0, 0, 96, 900, 1, 0, 0, 0, 98, 902, 1, 0, 0, 0, 100, 918, 1, 0, 0, 0, 102, 920, 1, 0, 0, 0, 104, 925, 1, 0, 0, 0, 106, 937, 1, 0, 0, 0, 108, 956, 1, 0, 0, 0, 110, 976, 1, 0, 0, 0, 112, 987, 1, 0, 0, 0, 114, 989, 1, 0, 0, 0, 116, 1002, 1, 0, 0, 0, 118, 1009, 1, 0, 0, 0, 120, 1012, 1, 0, 0, 0, 122, 1021, 1, 0, 0, 0, 124, 1025, 1, 0, 0, 0, 126, 1029, 1, 0, 0, 0, 128, 1032, 1, 0, 0, 0, 130, 1040, 1, 0, 0, 0, 132, 1045, 1, 0, 0, 0, 134, 1062, 1, 0, 0, 0, 136, 1069, 1, 0, 0, 0, 138, 1079, 1, 0, 0, 0, 140, 1088, 1, 0, 0, 0, 142, 1098, 1, 0, 0, 0, 144, 1117, 1, 0, 0, 0, 146, 1119, 1, 0, 0, 0, 148, 1132, 1, 0, 0, 0, 150, 1135, 1, 0, 0, 0, 152, 1144, 1, 0, 0, 0, 154, 1157, 1, 0, 0, 0, 156, 1159, 1, 0, 0, 0, 158, 1172, 1, 0, 0, 0, 160, 1207, 1, 0, 0, 0, 162, 1226, 1, 0, 0, 0, 164, 1235, 1, 0, 0, 0, 166, 1244, 1, 0, 0, 0, 168, 1263, 1, 0, 0, 0, 170, 1285, 1, 0, 0, 0, 172, 1287, 1, 0, 0, 0, 174, 1317, 1, 0, 0, 0, 176, 1331, 1, 0, 0, 0, 178, 1333, 1, 0, 0, 0, 180, 1347, 1, 0, 0, 0, 182, 1373, 1, 0, 0, 0, 184, 1406, 1, 0, 0, 0, 186, 1408, 1, 0, 0, 0, 188, 1414, 1, 0, 0, 0, 190, 1416, 1, 0, 0, 0, 192, 1421, 1, 0, 0, 0, 194, 1426, 1, 0, 0, 0, 196, 1438, 1, 0, 0, 0, 198, 1455, 1, 0, 0, 0, 200, 1457, 1, 0, 0, 0, 202, 1459, 1, 0, 0, 0, 204, 1468, 1, 0, 0, 0, 206, 1470, 1, 0, 0, 0, 208, 1473, 1, 0, 0, 0, 210, 1523, 1, 0, 0, 0, 212, 1525, 1, 0, 0, 0, 214, 1528, 1, 0, 0, 0, 216, 1530, 1, 0, 0, 0, 218, 1537, 1, 0, 0, 0, 220, 1539, 1, 0, 0, 0, 222, 1541, 1, 0, 0, 0, 224, 1544, 1, 0, 0, 0, 226, 1553, 1, 0, 0, 0, 228, 1558, 1, 0, 0, 0, 230, 1572, 1, 0, 0, 0, 232, 1600, 1, 0, 0, 0, 234, 1610, 1, 0, 0, 0, 236, 1618, 1, 0, 0, 0, 238, 1623, 1, 0, 0, 0, 240, 1655, 1, 0, 0, 0, 242, 1657, 1, 0, 0, 0, 244, 1666, 1, 0, 0, 0, 246, 1677, 1, 0, 0, 0, 248, 1689, 1, 0, 0, 0, 250, 1715, 1, 0, 0, 0, 252, 1717, 1, 0, 0, 0, 254, 1735, 1, 0, 0, 0, 256, 1737, 1, 0, 0, 0, 258, 1742, 1, 0, 0, 0, 260, 1745, 1, 0, 0, 0, 262, 1759, 1, 0, 0, 0, 264, 1852, 1, 0, 0, 0, 266, 1862, 1, 0, 0, 0, 268, 1893, 1, 0, 0, 0, 270, 1899, 1, 0, 0, 0, 272, 1944, 1, 0, 0, 0, 274, 2021, 1, 0, 0, 0, 276, 2033, 1, 0, 0, 0, 278, 2039, 1, 0, 0, 0, 280, 2045, 1, 0, 0, 0, 282, 2049, 1, 0, 0, 0, 284, 2059, 1, 0, 0, 0, 286, 2061, 1, 0, 0, 0, 288, 2087, 1, 0, 0, 0, 290, 2134, 1, 0, 0, 0, 292, 2148, 1, 0, 0, 0, 294, 2159, 1, 0, 0, 0, 296, 2161, 1, 0, 0, 0, 298, 2165, 1, 0, 0, 0, 300, 2167, 1, 0, 0, 0, 302, 2172, 1, 0, 0, 0, 304, 2179, 1, 0, 0, 0, 306, 2183, 1, 0, 0, 0, 308, 2188, 1, 0, 0, 0, 310, 2198, 1, 0, 0, 0, 312, 2201, 1, 0, 0, 0, 314, 2207, 1, 0, 0, 0, 316, 2217, 1, 0, 0, 0, 318, 2219, 1, 0, 0, 0, 320, 2223, 1, 0, 0, 0, 322, 2234, 1, 0, 0, 0, 324, 2236, 1, 0, 0, 0, 326, 2238, 1, 0, 0, 0, 328, 2240, 1, 0, 0, 0, 330, 2245, 1, 0, 0, 0, 332, 2247, 1, 0, 0, 0, 334, 2249, 1, 0, 0, 0, 336, 2254, 1, 0, 0, 0, 338, 2271, 1, 0, 0, 0, 340, 2285, 1, 0, 0, 0, 342, 2299, 1, 0, 0, 0, 344, 2313, 1, 0, 0, 0, 346, 2315, 1, 0, 0, 0, 348, 2323, 1, 0, 0, 0, 350, 2326, 1, 0, 0, 0, 352, 2330, 1, 0, 0, 0, 354, 2333, 1, 0, 0, 0, 356, 2344, 1, 0, 0, 0, 358, 2354, 1, 0, 0, 0, 360, 2360, 1, 0, 0, 0, 362, 2368, 1, 0, 0, 0, 364, 2384, 1, 0, 0, 0, 366, 2393, 1, 0, 0, 0, 368, 2395, 1, 0, 0, 0, 370, 2397, 1, 0, 0, 0, 372, 2413, 1, 0, 0, 0, 374, 2415, 1, 0, 0, 0, 376, 2418, 1, 0, 0, 0, 378, 2420, 1, 0, 0, 0, 380, 2422, 1, 0, 0, 0, 382, 2424, 1, 0, 0, 0, 384, 2426, 1, 0, 0, 0, 386, 2428, 1, 0, 0, 0, 388, 2430, 1, 0, 0, 0, 390, 2432, 1, 0, 0, 0, 392, 2434, 1, 0, 0, 0, 394, 2436, 1, 0, 0, 0, 396, 2438, 1, 0, 0, 0, 398, 400, 3, 2, 1, 0, 399, 398, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 5, 0, 0, 1, 405, 1, 1, 0, 0, 0, 406, 408, 3, 4, 2, 0, 407, 409, 5, 522, 0, 0, 408, 407, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 412, 1, 0, 0, 0, 410, 412, 3, 6, 3, 0, 411, 406, 1, 0, 0, 0, 411, 410, 1, 0, 0, 0, 412, 3, 1, 0, 0, 0, 413, 426, 3, 8, 4, 0, 414, 426, 3, 10, 5, 0, 415, 426, 3, 12, 6, 0, 416, 426, 3, 14, 7, 0, 417, 426, 3, 20, 10, 0, 418, 426, 3, 24, 12, 0, 419, 426, 3, 26, 13, 0, 420, 426, 3, 28, 14, 0, 421, 426, 3, 30, 15, 0, 422, 426, 3, 32, 16, 0, 423, 426, 3, 34, 17, 0, 424, 426, 3, 36, 18, 0, 425, 413, 1, 0, 0, 0, 425, 414, 1, 0, 0, 0, 425, 415, 1, 0, 0, 0, 425, 416, 1, 0, 0, 0, 425, 417, 1, 0, 0, 0, 425, 418, 1, 0, 0, 0, 425, 419, 1, 0, 0, 0, 425, 420, 1, 0, 0, 0, 425, 421, 1, 0, 0, 0, 425, 422, 1, 0, 0, 0, 425, 423, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 5, 1, 0, 0, 0, 427, 428, 5, 522, 0, 0, 428, 7, 1, 0, 0, 0, 429, 444, 3, 40, 20, 0, 430, 444, 3, 104, 52, 0, 431, 444, 3, 106, 53, 0, 432, 444, 3, 108, 54, 0, 433, 444, 3, 102, 51, 0, 434, 444, 3, 114, 57, 0, 435, 444, 3, 128, 64, 0, 436, 444, 3, 130, 65, 0, 437, 444, 3, 132, 66, 0, 438, 444, 3, 134, 67, 0, 439, 444, 3, 136, 68, 0, 440, 444, 3, 138, 69, 0, 441, 444, 3, 140, 70, 0, 442, 444, 3, 142, 71, 0, 443, 429, 1, 0, 0, 0, 443, 430, 1, 0, 0, 0, 443, 431, 1, 0, 0, 0, 443, 432, 1, 0, 0, 0, 443, 433, 1, 0, 0, 0, 443, 434, 1, 0, 0, 0, 443, 435, 1, 0, 0, 0, 443, 436, 1, 0, 0, 0, 443, 437, 1, 0, 0, 0, 443, 438, 1, 0, 0, 0, 443, 439, 1, 0, 0, 0, 443, 440, 1, 0, 0, 0, 443, 441, 1, 0, 0, 0, 443, 442, 1, 0, 0, 0, 444, 9, 1, 0, 0, 0, 445, 448, 3, 160, 80, 0, 446, 448, 3, 144, 72, 0, 447, 445, 1, 0, 0, 0, 447, 446, 1, 0, 0, 0, 448, 11, 1, 0, 0, 0, 449, 450, 7, 0, 0, 0, 450, 451, 3, 340, 170, 0, 451, 13, 1, 0, 0, 0, 452, 456, 5, 135, 0, 0, 453, 457, 3, 16, 8, 0, 454, 455, 5, 480, 0, 0, 455, 457, 5, 146, 0, 0, 456, 453, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 461, 1, 0, 0, 0, 458, 462, 3, 10, 5, 0, 459, 462, 3, 146, 73, 0, 460, 462, 3, 158, 79, 0, 461, 458, 1, 0, 0, 0, 461, 459, 1, 0, 0, 0, 461, 460, 1, 0, 0, 0, 462, 15, 1, 0, 0, 0, 463, 468, 3, 18, 9, 0, 464, 465, 5, 521, 0, 0, 465, 467, 3, 18, 9, 0, 466, 464, 1, 0, 0, 0, 467, 470, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 17, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 471, 472, 7, 1, 0, 0, 472, 19, 1, 0, 0, 0, 473, 474, 5, 411, 0, 0, 474, 475, 5, 442, 0, 0, 475, 480, 3, 330, 165, 0, 476, 477, 5, 411, 0, 0, 477, 480, 3, 334, 167, 0, 478, 480, 3, 22, 11, 0, 479, 473, 1, 0, 0, 0, 479, 476, 1, 0, 0, 0, 479, 478, 1, 0, 0, 0, 480, 21, 1, 0, 0, 0, 481, 482, 5, 411, 0, 0, 482, 483, 5, 228, 0, 0, 483, 488, 3, 346, 173, 0, 484, 485, 5, 521, 0, 0, 485, 487, 3, 346, 173, 0, 486, 484, 1, 0, 0, 0, 487, 490, 1, 0, 0, 0, 488, 486, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 23, 1, 0, 0, 0, 490, 488, 1, 0, 0, 0, 491, 492, 5, 342, 0, 0, 492, 534, 7, 2, 0, 0, 493, 494, 5, 342, 0, 0, 494, 495, 5, 76, 0, 0, 495, 534, 7, 3, 0, 0, 496, 497, 5, 342, 0, 0, 497, 500, 5, 375, 0, 0, 498, 499, 7, 4, 0, 0, 499, 501, 3, 334, 167, 0, 500, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 503, 1, 0, 0, 0, 502, 504, 3, 268, 134, 0, 503, 502, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 534, 1, 0, 0, 0, 505, 506, 5, 342, 0, 0, 506, 507, 5, 58, 0, 0, 507, 510, 7, 4, 0, 0, 508, 511, 3, 342, 171, 0, 509, 511, 3, 340, 170, 0, 510, 508, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 513, 1, 0, 0, 0, 512, 514, 3, 268, 134, 0, 513, 512, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 534, 1, 0, 0, 0, 515, 516, 5, 342, 0, 0, 516, 521, 5, 72, 0, 0, 517, 518, 5, 374, 0, 0, 518, 522, 3, 340, 170, 0, 519, 520, 5, 502, 0, 0, 520, 522, 3, 342, 171, 0, 521, 517, 1, 0, 0, 0, 521, 519, 1, 0, 0, 0, 522, 534, 1, 0, 0, 0, 523, 525, 5, 342, 0, 0, 524, 526, 5, 412, 0, 0, 525, 524, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 534, 5, 154, 0, 0, 528, 530, 5, 342, 0, 0, 529, 531, 5, 152, 0, 0, 530, 529, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 534, 5, 228, 0, 0, 533, 491, 1, 0, 0, 0, 533, 493, 1, 0, 0, 0, 533, 496, 1, 0, 0, 0, 533, 505, 1, 0, 0, 0, 533, 515, 1, 0, 0, 0, 533, 523, 1, 0, 0, 0, 533, 528, 1, 0, 0, 0, 534, 25, 1, 0, 0, 0, 535, 536, 5, 469, 0, 0, 536, 537, 5, 227, 0, 0, 537, 540, 3, 346, 173, 0, 538, 539, 5, 434, 0, 0, 539, 541, 3, 354, 177, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 27, 1, 0, 0, 0, 542, 543, 5, 501, 0, 0, 543, 544, 5, 227, 0, 0, 544, 545, 3, 346, 173, 0, 545, 29, 1, 0, 0, 0, 546, 548, 5, 341, 0, 0, 547, 549, 3, 356, 178, 0, 548, 547, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 31, 1, 0, 0, 0, 550, 552, 5, 313, 0, 0, 551, 553, 3, 358, 179, 0, 552, 551, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 33, 1, 0, 0, 0, 554, 555, 7, 5, 0, 0, 555, 556, 5, 464, 0, 0, 556, 557, 3, 112, 56, 0, 557, 35, 1, 0, 0, 0, 558, 559, 5, 438, 0, 0, 559, 560, 5, 464, 0, 0, 560, 561, 5, 434, 0, 0, 561, 564, 3, 38, 19, 0, 562, 563, 5, 17, 0, 0, 563, 565, 3, 346, 173, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 609, 1, 0, 0, 0, 566, 567, 5, 438, 0, 0, 567, 568, 5, 457, 0, 0, 568, 569, 5, 434, 0, 0, 569, 572, 3, 38, 19, 0, 570, 571, 5, 17, 0, 0, 571, 573, 3, 346, 173, 0, 572, 570, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 576, 1, 0, 0, 0, 574, 575, 5, 312, 0, 0, 575, 577, 3, 346, 173, 0, 576, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 609, 1, 0, 0, 0, 578, 579, 5, 438, 0, 0, 579, 580, 7, 6, 0, 0, 580, 581, 5, 434, 0, 0, 581, 582, 3, 38, 19, 0, 582, 583, 5, 312, 0, 0, 583, 584, 3, 346, 173, 0, 584, 609, 1, 0, 0, 0, 585, 586, 5, 438, 0, 0, 586, 587, 5, 487, 0, 0, 587, 609, 3, 38, 19, 0, 588, 589, 5, 438, 0, 0, 589, 590, 5, 454, 0, 0, 590, 591, 5, 457, 0, 0, 591, 592, 5, 434, 0, 0, 592, 593, 3, 38, 19, 0, 593, 594, 5, 312, 0, 0, 594, 595, 3, 346, 173, 0, 595, 596, 5, 467, 0, 0, 596, 597, 3, 346, 173, 0, 597, 609, 1, 0, 0, 0, 598, 599, 5, 438, 0, 0, 599, 600, 5, 444, 0, 0, 600, 601, 5, 457, 0, 0, 601, 602, 5, 434, 0, 0, 602, 603, 3, 38, 19, 0, 603, 604, 5, 146, 0, 0, 604, 605, 3, 346, 173, 0, 605, 606, 5, 17, 0, 0, 606, 607, 3, 346, 173, 0, 607, 609, 1, 0, 0, 0, 608, 558, 1, 0, 0, 0, 608, 566, 1, 0, 0, 0, 608, 578, 1, 0, 0, 0, 608, 585, 1, 0, 0, 0, 608, 588, 1, 0, 0, 0, 608, 598, 1, 0, 0, 0, 609, 37, 1, 0, 0, 0, 610, 612, 5, 535, 0, 0, 611, 610, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 615, 3, 346, 173, 0, 614, 611, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 614, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 39, 1, 0, 0, 0, 618, 621, 3, 42, 21, 0, 619, 621, 3, 44, 22, 0, 620, 618, 1, 0, 0, 0, 620, 619, 1, 0, 0, 0, 621, 41, 1, 0, 0, 0, 622, 624, 5, 72, 0, 0, 623, 625, 5, 498, 0, 0, 624, 623, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 628, 5, 374, 0, 0, 627, 629, 3, 350, 175, 0, 628, 627, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 631, 3, 338, 169, 0, 631, 632, 5, 517, 0, 0, 632, 637, 3, 46, 23, 0, 633, 634, 5, 521, 0, 0, 634, 636, 3, 46, 23, 0, 635, 633, 1, 0, 0, 0, 636, 639, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 642, 1, 0, 0, 0, 639, 637, 1, 0, 0, 0, 640, 641, 5, 521, 0, 0, 641, 643, 3, 82, 41, 0, 642, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 645, 5, 521, 0, 0, 645, 647, 3, 84, 42, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 650, 1, 0, 0, 0, 648, 649, 5, 521, 0, 0, 649, 651, 3, 88, 44, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 655, 5, 518, 0, 0, 653, 654, 5, 59, 0, 0, 654, 656, 5, 538, 0, 0, 655, 653, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 658, 1, 0, 0, 0, 657, 659, 3, 90, 45, 0, 658, 657, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 662, 3, 348, 174, 0, 661, 663, 3, 98, 49, 0, 662, 661, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 43, 1, 0, 0, 0, 664, 665, 5, 72, 0, 0, 665, 667, 5, 374, 0, 0, 666, 668, 3, 350, 175, 0, 667, 666, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 670, 3, 338, 169, 0, 670, 673, 3, 348, 174, 0, 671, 672, 5, 17, 0, 0, 672, 674, 3, 160, 80, 0, 673, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 45, 1, 0, 0, 0, 675, 679, 3, 48, 24, 0, 676, 679, 3, 74, 37, 0, 677, 679, 3, 78, 39, 0, 678, 675, 1, 0, 0, 0, 678, 676, 1, 0, 0, 0, 678, 677, 1, 0, 0, 0, 679, 47, 1, 0, 0, 0, 680, 681, 3, 50, 25, 0, 681, 683, 3, 58, 29, 0, 682, 684, 3, 72, 36, 0, 683, 682, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 686, 5, 59, 0, 0, 686, 688, 5, 538, 0, 0, 687, 685, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 49, 1, 0, 0, 0, 689, 692, 3, 346, 173, 0, 690, 692, 3, 260, 130, 0, 691, 689, 1, 0, 0, 0, 691, 690, 1, 0, 0, 0, 692, 51, 1, 0, 0, 0, 693, 696, 3, 346, 173, 0, 694, 696, 4, 26, 0, 0, 695, 693, 1, 0, 0, 0, 695, 694, 1, 0, 0, 0, 696, 53, 1, 0, 0, 0, 697, 698, 3, 346, 173, 0, 698, 55, 1, 0, 0, 0, 699, 700, 5, 517, 0, 0, 700, 705, 3, 52, 26, 0, 701, 702, 5, 521, 0, 0, 702, 704, 3, 52, 26, 0, 703, 701, 1, 0, 0, 0, 704, 707, 1, 0, 0, 0, 705, 703, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 708, 1, 0, 0, 0, 707, 705, 1, 0, 0, 0, 708, 709, 5, 518, 0, 0, 709, 57, 1, 0, 0, 0, 710, 748, 7, 7, 0, 0, 711, 713, 7, 8, 0, 0, 712, 714, 3, 60, 30, 0, 713, 712, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 748, 1, 0, 0, 0, 715, 717, 5, 380, 0, 0, 716, 718, 3, 60, 30, 0, 717, 716, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 725, 1, 0, 0, 0, 719, 721, 7, 9, 0, 0, 720, 722, 5, 207, 0, 0, 721, 720, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 724, 5, 379, 0, 0, 724, 726, 5, 505, 0, 0, 725, 719, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 748, 1, 0, 0, 0, 727, 729, 7, 10, 0, 0, 728, 730, 3, 62, 31, 0, 729, 728, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 748, 1, 0, 0, 0, 731, 733, 7, 11, 0, 0, 732, 734, 3, 66, 33, 0, 733, 732, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 748, 1, 0, 0, 0, 735, 737, 5, 470, 0, 0, 736, 738, 3, 68, 34, 0, 737, 736, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 748, 1, 0, 0, 0, 739, 741, 5, 322, 0, 0, 740, 742, 3, 70, 35, 0, 741, 740, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 748, 1, 0, 0, 0, 743, 745, 5, 295, 0, 0, 744, 746, 3, 64, 32, 0, 745, 744, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 748, 1, 0, 0, 0, 747, 710, 1, 0, 0, 0, 747, 711, 1, 0, 0, 0, 747, 715, 1, 0, 0, 0, 747, 727, 1, 0, 0, 0, 747, 731, 1, 0, 0, 0, 747, 735, 1, 0, 0, 0, 747, 739, 1, 0, 0, 0, 747, 743, 1, 0, 0, 0, 748, 59, 1, 0, 0, 0, 749, 750, 5, 517, 0, 0, 750, 751, 3, 378, 189, 0, 751, 752, 5, 518, 0, 0, 752, 61, 1, 0, 0, 0, 753, 754, 5, 517, 0, 0, 754, 757, 3, 378, 189, 0, 755, 756, 5, 521, 0, 0, 756, 758, 3, 378, 189, 0, 757, 755, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 5, 518, 0, 0, 760, 63, 1, 0, 0, 0, 761, 762, 5, 517, 0, 0, 762, 765, 3, 376, 188, 0, 763, 764, 5, 521, 0, 0, 764, 766, 3, 376, 188, 0, 765, 763, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 518, 0, 0, 768, 65, 1, 0, 0, 0, 769, 770, 5, 508, 0, 0, 770, 771, 3, 58, 29, 0, 771, 772, 5, 507, 0, 0, 772, 67, 1, 0, 0, 0, 773, 774, 5, 508, 0, 0, 774, 775, 3, 58, 29, 0, 775, 776, 5, 521, 0, 0, 776, 777, 3, 58, 29, 0, 777, 778, 1, 0, 0, 0, 778, 779, 5, 507, 0, 0, 779, 69, 1, 0, 0, 0, 780, 781, 5, 508, 0, 0, 781, 782, 3, 52, 26, 0, 782, 789, 3, 58, 29, 0, 783, 784, 5, 521, 0, 0, 784, 785, 3, 52, 26, 0, 785, 786, 3, 58, 29, 0, 786, 788, 1, 0, 0, 0, 787, 783, 1, 0, 0, 0, 788, 791, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 792, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 792, 793, 5, 507, 0, 0, 793, 809, 1, 0, 0, 0, 794, 795, 5, 517, 0, 0, 795, 796, 3, 52, 26, 0, 796, 803, 3, 58, 29, 0, 797, 798, 5, 521, 0, 0, 798, 799, 3, 52, 26, 0, 799, 800, 3, 58, 29, 0, 800, 802, 1, 0, 0, 0, 801, 797, 1, 0, 0, 0, 802, 805, 1, 0, 0, 0, 803, 801, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 806, 1, 0, 0, 0, 805, 803, 1, 0, 0, 0, 806, 807, 5, 518, 0, 0, 807, 809, 1, 0, 0, 0, 808, 780, 1, 0, 0, 0, 808, 794, 1, 0, 0, 0, 809, 71, 1, 0, 0, 0, 810, 811, 5, 64, 0, 0, 811, 813, 3, 86, 43, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 815, 5, 289, 0, 0, 815, 818, 5, 467, 0, 0, 816, 817, 5, 242, 0, 0, 817, 819, 5, 125, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 825, 1, 0, 0, 0, 820, 822, 5, 242, 0, 0, 821, 820, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 825, 5, 245, 0, 0, 824, 812, 1, 0, 0, 0, 824, 821, 1, 0, 0, 0, 825, 73, 1, 0, 0, 0, 826, 827, 3, 50, 25, 0, 827, 828, 3, 58, 29, 0, 828, 831, 5, 219, 0, 0, 829, 830, 5, 151, 0, 0, 830, 832, 3, 76, 38, 0, 831, 829, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 834, 1, 0, 0, 0, 833, 835, 5, 424, 0, 0, 834, 833, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 75, 1, 0, 0, 0, 836, 837, 5, 538, 0, 0, 837, 77, 1, 0, 0, 0, 838, 839, 3, 50, 25, 0, 839, 840, 5, 17, 0, 0, 840, 843, 3, 80, 40, 0, 841, 842, 5, 59, 0, 0, 842, 844, 5, 538, 0, 0, 843, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 79, 1, 0, 0, 0, 845, 846, 3, 260, 130, 0, 846, 81, 1, 0, 0, 0, 847, 848, 5, 425, 0, 0, 848, 849, 5, 146, 0, 0, 849, 850, 3, 52, 26, 0, 850, 851, 5, 17, 0, 0, 851, 852, 3, 260, 130, 0, 852, 83, 1, 0, 0, 0, 853, 854, 5, 64, 0, 0, 854, 856, 3, 86, 43, 0, 855, 853, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 858, 5, 289, 0, 0, 858, 859, 5, 467, 0, 0, 859, 860, 3, 56, 28, 0, 860, 861, 5, 242, 0, 0, 861, 862, 5, 125, 0, 0, 862, 85, 1, 0, 0, 0, 863, 864, 3, 322, 161, 0, 864, 87, 1, 0, 0, 0, 865, 866, 5, 278, 0, 0, 866, 867, 5, 146, 0, 0, 867, 868, 5, 372, 0, 0, 868, 89, 1, 0, 0, 0, 869, 870, 5, 270, 0, 0, 870, 871, 5, 34, 0, 0, 871, 872, 3, 92, 46, 0, 872, 91, 1, 0, 0, 0, 873, 874, 5, 517, 0, 0, 874, 879, 3, 94, 47, 0, 875, 876, 5, 521, 0, 0, 876, 878, 3, 94, 47, 0, 877, 875, 1, 0, 0, 0, 878, 881, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 882, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 882, 883, 5, 518, 0, 0, 883, 93, 1, 0, 0, 0, 884, 897, 3, 52, 26, 0, 885, 886, 5, 517, 0, 0, 886, 891, 3, 96, 48, 0, 887, 888, 5, 521, 0, 0, 888, 890, 3, 96, 48, 0, 889, 887, 1, 0, 0, 0, 890, 893, 1, 0, 0, 0, 891, 889, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 894, 1, 0, 0, 0, 893, 891, 1, 0, 0, 0, 894, 895, 5, 518, 0, 0, 895, 897, 1, 0, 0, 0, 896, 884, 1, 0, 0, 0, 896, 885, 1, 0, 0, 0, 897, 95, 1, 0, 0, 0, 898, 901, 3, 298, 149, 0, 899, 901, 3, 372, 186, 0, 900, 898, 1, 0, 0, 0, 900, 899, 1, 0, 0, 0, 901, 97, 1, 0, 0, 0, 902, 903, 5, 203, 0, 0, 903, 912, 3, 340, 170, 0, 904, 908, 5, 517, 0, 0, 905, 907, 3, 100, 50, 0, 906, 905, 1, 0, 0, 0, 907, 910, 1, 0, 0, 0, 908, 906, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 911, 1, 0, 0, 0, 910, 908, 1, 0, 0, 0, 911, 913, 5, 518, 0, 0, 912, 904, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 99, 1, 0, 0, 0, 914, 915, 7, 12, 0, 0, 915, 919, 7, 13, 0, 0, 916, 917, 7, 14, 0, 0, 917, 919, 7, 15, 0, 0, 918, 914, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 919, 101, 1, 0, 0, 0, 920, 921, 5, 72, 0, 0, 921, 922, 5, 442, 0, 0, 922, 923, 3, 332, 166, 0, 923, 924, 3, 348, 174, 0, 924, 103, 1, 0, 0, 0, 925, 926, 5, 72, 0, 0, 926, 928, 5, 448, 0, 0, 927, 929, 3, 350, 175, 0, 928, 927, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 933, 3, 336, 168, 0, 931, 932, 5, 59, 0, 0, 932, 934, 5, 538, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 936, 3, 348, 174, 0, 936, 105, 1, 0, 0, 0, 937, 939, 5, 72, 0, 0, 938, 940, 5, 498, 0, 0, 939, 938, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 943, 5, 502, 0, 0, 942, 944, 3, 350, 175, 0, 943, 942, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 947, 3, 344, 172, 0, 946, 948, 3, 56, 28, 0, 947, 946, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 951, 1, 0, 0, 0, 949, 950, 5, 59, 0, 0, 950, 952, 5, 538, 0, 0, 951, 949, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 954, 5, 17, 0, 0, 954, 955, 3, 160, 80, 0, 955, 107, 1, 0, 0, 0, 956, 960, 5, 72, 0, 0, 957, 961, 5, 498, 0, 0, 958, 959, 5, 498, 0, 0, 959, 961, 5, 371, 0, 0, 960, 957, 1, 0, 0, 0, 960, 958, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 964, 5, 153, 0, 0, 963, 965, 3, 350, 175, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 3, 276, 138, 0, 967, 968, 5, 17, 0, 0, 968, 971, 3, 322, 161, 0, 969, 970, 5, 196, 0, 0, 970, 972, 7, 16, 0, 0, 971, 969, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 974, 1, 0, 0, 0, 973, 975, 3, 110, 55, 0, 974, 973, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 109, 1, 0, 0, 0, 976, 977, 5, 413, 0, 0, 977, 978, 5, 464, 0, 0, 978, 984, 3, 112, 56, 0, 979, 980, 5, 521, 0, 0, 980, 981, 5, 464, 0, 0, 981, 983, 3, 112, 56, 0, 982, 979, 1, 0, 0, 0, 983, 986, 1, 0, 0, 0, 984, 982, 1, 0, 0, 0, 984, 985, 1, 0, 0, 0, 985, 111, 1, 0, 0, 0, 986, 984, 1, 0, 0, 0, 987, 988, 5, 538, 0, 0, 988, 113, 1, 0, 0, 0, 989, 990, 5, 8, 0, 0, 990, 992, 5, 374, 0, 0, 991, 993, 3, 352, 176, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 1000, 3, 340, 170, 0, 995, 1001, 3, 116, 58, 0, 996, 1001, 3, 118, 59, 0, 997, 1001, 3, 120, 60, 0, 998, 1001, 3, 122, 61, 0, 999, 1001, 3, 124, 62, 0, 1000, 995, 1, 0, 0, 0, 1000, 996, 1, 0, 0, 0, 1000, 997, 1, 0, 0, 0, 1000, 998, 1, 0, 0, 0, 1000, 999, 1, 0, 0, 0, 1001, 115, 1, 0, 0, 0, 1002, 1004, 5, 312, 0, 0, 1003, 1005, 3, 346, 173, 0, 1004, 1003, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1007, 5, 389, 0, 0, 1007, 1008, 3, 346, 173, 0, 1008, 117, 1, 0, 0, 0, 1009, 1010, 5, 341, 0, 0, 1010, 1011, 3, 354, 177, 0, 1011, 119, 1, 0, 0, 0, 1012, 1013, 5, 438, 0, 0, 1013, 1014, 5, 64, 0, 0, 1014, 1015, 3, 86, 43, 0, 1015, 1016, 5, 289, 0, 0, 1016, 1017, 5, 467, 0, 0, 1017, 1019, 3, 56, 28, 0, 1018, 1020, 3, 126, 63, 0, 1019, 1018, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 121, 1, 0, 0, 0, 1021, 1022, 5, 116, 0, 0, 1022, 1023, 5, 64, 0, 0, 1023, 1024, 3, 86, 43, 0, 1024, 123, 1, 0, 0, 0, 1025, 1026, 5, 438, 0, 0, 1026, 1027, 5, 404, 0, 0, 1027, 1028, 3, 56, 28, 0, 1028, 125, 1, 0, 0, 0, 1029, 1030, 5, 242, 0, 0, 1030, 1031, 5, 125, 0, 0, 1031, 127, 1, 0, 0, 0, 1032, 1033, 5, 8, 0, 0, 1033, 1034, 5, 502, 0, 0, 1034, 1038, 3, 342, 171, 0, 1035, 1039, 3, 116, 58, 0, 1036, 1037, 5, 17, 0, 0, 1037, 1039, 3, 160, 80, 0, 1038, 1035, 1, 0, 0, 0, 1038, 1036, 1, 0, 0, 0, 1039, 129, 1, 0, 0, 0, 1040, 1041, 5, 8, 0, 0, 1041, 1042, 5, 448, 0, 0, 1042, 1043, 3, 334, 167, 0, 1043, 1044, 3, 118, 59, 0, 1044, 131, 1, 0, 0, 0, 1045, 1049, 5, 8, 0, 0, 1046, 1050, 5, 498, 0, 0, 1047, 1048, 5, 498, 0, 0, 1048, 1050, 5, 371, 0, 0, 1049, 1046, 1, 0, 0, 0, 1049, 1047, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1053, 5, 153, 0, 0, 1052, 1054, 3, 352, 176, 0, 1053, 1052, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 3, 278, 139, 0, 1056, 1057, 5, 17, 0, 0, 1057, 1060, 3, 322, 161, 0, 1058, 1059, 5, 196, 0, 0, 1059, 1061, 7, 16, 0, 0, 1060, 1058, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 133, 1, 0, 0, 0, 1062, 1063, 5, 116, 0, 0, 1063, 1065, 5, 442, 0, 0, 1064, 1066, 3, 352, 176, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 3, 330, 165, 0, 1068, 135, 1, 0, 0, 0, 1069, 1071, 5, 116, 0, 0, 1070, 1072, 5, 498, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1075, 5, 374, 0, 0, 1074, 1076, 3, 352, 176, 0, 1075, 1074, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 3, 340, 170, 0, 1078, 137, 1, 0, 0, 0, 1079, 1080, 5, 116, 0, 0, 1080, 1082, 5, 448, 0, 0, 1081, 1083, 3, 352, 176, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1086, 3, 334, 167, 0, 1085, 1087, 7, 17, 0, 0, 1086, 1085, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 139, 1, 0, 0, 0, 1088, 1090, 5, 116, 0, 0, 1089, 1091, 5, 498, 0, 0, 1090, 1089, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1094, 5, 502, 0, 0, 1093, 1095, 3, 352, 176, 0, 1094, 1093, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 3, 342, 171, 0, 1097, 141, 1, 0, 0, 0, 1098, 1102, 5, 116, 0, 0, 1099, 1103, 5, 498, 0, 0, 1100, 1101, 5, 498, 0, 0, 1101, 1103, 5, 371, 0, 0, 1102, 1099, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1106, 5, 153, 0, 0, 1105, 1107, 3, 352, 176, 0, 1106, 1105, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 3, 278, 139, 0, 1109, 143, 1, 0, 0, 0, 1110, 1112, 5, 132, 0, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1118, 3, 146, 73, 0, 1114, 1118, 3, 156, 78, 0, 1115, 1116, 5, 132, 0, 0, 1116, 1118, 3, 158, 79, 0, 1117, 1111, 1, 0, 0, 0, 1117, 1114, 1, 0, 0, 0, 1117, 1115, 1, 0, 0, 0, 1118, 145, 1, 0, 0, 0, 1119, 1120, 5, 177, 0, 0, 1120, 1121, 7, 18, 0, 0, 1121, 1130, 3, 340, 170, 0, 1122, 1124, 3, 148, 74, 0, 1123, 1122, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1126, 1, 0, 0, 0, 1125, 1127, 3, 56, 28, 0, 1126, 1125, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1131, 3, 160, 80, 0, 1129, 1131, 3, 150, 75, 0, 1130, 1123, 1, 0, 0, 0, 1130, 1129, 1, 0, 0, 0, 1131, 147, 1, 0, 0, 0, 1132, 1133, 5, 269, 0, 0, 1133, 1134, 3, 354, 177, 0, 1134, 149, 1, 0, 0, 0, 1135, 1136, 5, 415, 0, 0, 1136, 1141, 3, 152, 76, 0, 1137, 1138, 5, 521, 0, 0, 1138, 1140, 3, 152, 76, 0, 1139, 1137, 1, 0, 0, 0, 1140, 1143, 1, 0, 0, 0, 1141, 1139, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 151, 1, 0, 0, 0, 1143, 1141, 1, 0, 0, 0, 1144, 1145, 5, 517, 0, 0, 1145, 1150, 3, 154, 77, 0, 1146, 1147, 5, 521, 0, 0, 1147, 1149, 3, 154, 77, 0, 1148, 1146, 1, 0, 0, 0, 1149, 1152, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1153, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1153, 1154, 5, 518, 0, 0, 1154, 153, 1, 0, 0, 0, 1155, 1158, 3, 372, 186, 0, 1156, 1158, 3, 272, 136, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1156, 1, 0, 0, 0, 1158, 155, 1, 0, 0, 0, 1159, 1160, 5, 24, 0, 0, 1160, 1161, 5, 355, 0, 0, 1161, 1162, 5, 341, 0, 0, 1162, 1166, 5, 522, 0, 0, 1163, 1164, 3, 146, 73, 0, 1164, 1165, 5, 522, 0, 0, 1165, 1167, 1, 0, 0, 0, 1166, 1163, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 5, 122, 0, 0, 1171, 157, 1, 0, 0, 0, 1172, 1173, 5, 355, 0, 0, 1173, 1174, 5, 341, 0, 0, 1174, 1178, 5, 24, 0, 0, 1175, 1176, 3, 146, 73, 0, 1176, 1177, 5, 522, 0, 0, 1177, 1179, 1, 0, 0, 0, 1178, 1175, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1178, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1183, 5, 122, 0, 0, 1183, 159, 1, 0, 0, 0, 1184, 1185, 6, 80, -1, 0, 1185, 1208, 3, 162, 81, 0, 1186, 1187, 3, 164, 82, 0, 1187, 1188, 3, 160, 80, 5, 1188, 1208, 1, 0, 0, 0, 1189, 1190, 5, 517, 0, 0, 1190, 1191, 3, 160, 80, 0, 1191, 1192, 5, 518, 0, 0, 1192, 1208, 1, 0, 0, 0, 1193, 1195, 3, 172, 86, 0, 1194, 1196, 3, 232, 116, 0, 1195, 1194, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1198, 1, 0, 0, 0, 1197, 1199, 3, 236, 118, 0, 1198, 1197, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1208, 1, 0, 0, 0, 1200, 1202, 3, 170, 85, 0, 1201, 1203, 3, 232, 116, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1205, 1, 0, 0, 0, 1204, 1206, 3, 236, 118, 0, 1205, 1204, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1208, 1, 0, 0, 0, 1207, 1184, 1, 0, 0, 0, 1207, 1186, 1, 0, 0, 0, 1207, 1189, 1, 0, 0, 0, 1207, 1193, 1, 0, 0, 0, 1207, 1200, 1, 0, 0, 0, 1208, 1223, 1, 0, 0, 0, 1209, 1210, 10, 3, 0, 0, 1210, 1212, 7, 19, 0, 0, 1211, 1213, 5, 5, 0, 0, 1212, 1211, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1216, 3, 160, 80, 0, 1215, 1217, 3, 232, 116, 0, 1216, 1215, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1219, 1, 0, 0, 0, 1218, 1220, 3, 236, 118, 0, 1219, 1218, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1222, 1, 0, 0, 0, 1221, 1209, 1, 0, 0, 0, 1222, 1225, 1, 0, 0, 0, 1223, 1221, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 161, 1, 0, 0, 0, 1225, 1223, 1, 0, 0, 0, 1226, 1227, 5, 415, 0, 0, 1227, 1232, 3, 260, 130, 0, 1228, 1229, 5, 521, 0, 0, 1229, 1231, 3, 260, 130, 0, 1230, 1228, 1, 0, 0, 0, 1231, 1234, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 163, 1, 0, 0, 0, 1234, 1232, 1, 0, 0, 0, 1235, 1236, 5, 434, 0, 0, 1236, 1241, 3, 166, 83, 0, 1237, 1238, 5, 521, 0, 0, 1238, 1240, 3, 166, 83, 0, 1239, 1237, 1, 0, 0, 0, 1240, 1243, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 165, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1256, 3, 168, 84, 0, 1245, 1246, 5, 517, 0, 0, 1246, 1251, 3, 52, 26, 0, 1247, 1248, 5, 521, 0, 0, 1248, 1250, 3, 52, 26, 0, 1249, 1247, 1, 0, 0, 0, 1250, 1253, 1, 0, 0, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1254, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1255, 5, 518, 0, 0, 1255, 1257, 1, 0, 0, 0, 1256, 1245, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1259, 5, 17, 0, 0, 1259, 1260, 5, 517, 0, 0, 1260, 1261, 3, 160, 80, 0, 1261, 1262, 5, 518, 0, 0, 1262, 167, 1, 0, 0, 0, 1263, 1264, 3, 322, 161, 0, 1264, 169, 1, 0, 0, 0, 1265, 1267, 3, 172, 86, 0, 1266, 1268, 3, 178, 89, 0, 1267, 1266, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1270, 1, 0, 0, 0, 1269, 1271, 3, 206, 103, 0, 1270, 1269, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1273, 1, 0, 0, 0, 1272, 1274, 3, 208, 104, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1277, 3, 222, 111, 0, 1276, 1275, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1279, 1, 0, 0, 0, 1278, 1280, 3, 224, 112, 0, 1279, 1278, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1286, 1, 0, 0, 0, 1281, 1282, 3, 172, 86, 0, 1282, 1283, 3, 178, 89, 0, 1283, 1284, 3, 230, 115, 0, 1284, 1286, 1, 0, 0, 0, 1285, 1265, 1, 0, 0, 0, 1285, 1281, 1, 0, 0, 0, 1286, 171, 1, 0, 0, 0, 1287, 1289, 5, 337, 0, 0, 1288, 1290, 3, 382, 191, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1300, 1, 0, 0, 0, 1291, 1301, 5, 528, 0, 0, 1292, 1297, 3, 174, 87, 0, 1293, 1294, 5, 521, 0, 0, 1294, 1296, 3, 174, 87, 0, 1295, 1293, 1, 0, 0, 0, 1296, 1299, 1, 0, 0, 0, 1297, 1295, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1297, 1, 0, 0, 0, 1300, 1291, 1, 0, 0, 0, 1300, 1292, 1, 0, 0, 0, 1301, 173, 1, 0, 0, 0, 1302, 1318, 3, 176, 88, 0, 1303, 1308, 3, 260, 130, 0, 1304, 1306, 5, 17, 0, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1309, 3, 52, 26, 0, 1308, 1305, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1318, 1, 0, 0, 0, 1310, 1315, 3, 52, 26, 0, 1311, 1313, 5, 17, 0, 0, 1312, 1311, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1316, 3, 260, 130, 0, 1315, 1312, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1318, 1, 0, 0, 0, 1317, 1302, 1, 0, 0, 0, 1317, 1303, 1, 0, 0, 0, 1317, 1310, 1, 0, 0, 0, 1318, 175, 1, 0, 0, 0, 1319, 1320, 3, 274, 137, 0, 1320, 1321, 5, 263, 0, 0, 1321, 1322, 3, 228, 114, 0, 1322, 1323, 5, 17, 0, 0, 1323, 1324, 3, 322, 161, 0, 1324, 1332, 1, 0, 0, 0, 1325, 1326, 3, 274, 137, 0, 1326, 1327, 5, 263, 0, 0, 1327, 1328, 3, 314, 157, 0, 1328, 1329, 5, 17, 0, 0, 1329, 1330, 3, 322, 161, 0, 1330, 1332, 1, 0, 0, 0, 1331, 1319, 1, 0, 0, 0, 1331, 1325, 1, 0, 0, 0, 1332, 177, 1, 0, 0, 0, 1333, 1334, 5, 151, 0, 0, 1334, 1335, 3, 180, 90, 0, 1335, 179, 1, 0, 0, 0, 1336, 1337, 6, 90, -1, 0, 1337, 1342, 3, 182, 91, 0, 1338, 1339, 5, 521, 0, 0, 1339, 1341, 3, 182, 91, 0, 1340, 1338, 1, 0, 0, 0, 1341, 1344, 1, 0, 0, 0, 1342, 1340, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1348, 1, 0, 0, 0, 1344, 1342, 1, 0, 0, 0, 1345, 1348, 3, 190, 95, 0, 1346, 1348, 3, 192, 96, 0, 1347, 1336, 1, 0, 0, 0, 1347, 1345, 1, 0, 0, 0, 1347, 1346, 1, 0, 0, 0, 1348, 1370, 1, 0, 0, 0, 1349, 1350, 10, 3, 0, 0, 1350, 1351, 5, 73, 0, 0, 1351, 1352, 5, 185, 0, 0, 1352, 1369, 3, 180, 90, 4, 1353, 1355, 10, 4, 0, 0, 1354, 1356, 5, 234, 0, 0, 1355, 1354, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1358, 1, 0, 0, 0, 1357, 1359, 7, 20, 0, 0, 1358, 1357, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1361, 1, 0, 0, 0, 1360, 1362, 5, 262, 0, 0, 1361, 1360, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1364, 5, 185, 0, 0, 1364, 1366, 3, 180, 90, 0, 1365, 1367, 3, 204, 102, 0, 1366, 1365, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1369, 1, 0, 0, 0, 1368, 1349, 1, 0, 0, 0, 1368, 1353, 1, 0, 0, 0, 1369, 1372, 1, 0, 0, 0, 1370, 1368, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 181, 1, 0, 0, 0, 1372, 1370, 1, 0, 0, 0, 1373, 1375, 3, 184, 92, 0, 1374, 1376, 3, 312, 156, 0, 1375, 1374, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 183, 1, 0, 0, 0, 1377, 1379, 5, 374, 0, 0, 1378, 1377, 1, 0, 0, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1382, 3, 340, 170, 0, 1381, 1383, 3, 186, 93, 0, 1382, 1381, 1, 0, 0, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1407, 1, 0, 0, 0, 1384, 1386, 3, 342, 171, 0, 1385, 1387, 3, 186, 93, 0, 1386, 1385, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1407, 1, 0, 0, 0, 1388, 1389, 5, 199, 0, 0, 1389, 1390, 5, 374, 0, 0, 1390, 1391, 5, 517, 0, 0, 1391, 1392, 3, 272, 136, 0, 1392, 1393, 5, 518, 0, 0, 1393, 1407, 1, 0, 0, 0, 1394, 1396, 5, 199, 0, 0, 1395, 1394, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1398, 5, 517, 0, 0, 1398, 1399, 3, 160, 80, 0, 1399, 1400, 5, 518, 0, 0, 1400, 1407, 1, 0, 0, 0, 1401, 1402, 5, 406, 0, 0, 1402, 1403, 5, 517, 0, 0, 1403, 1404, 3, 260, 130, 0, 1404, 1405, 5, 518, 0, 0, 1405, 1407, 1, 0, 0, 0, 1406, 1378, 1, 0, 0, 0, 1406, 1384, 1, 0, 0, 0, 1406, 1388, 1, 0, 0, 0, 1406, 1395, 1, 0, 0, 0, 1406, 1401, 1, 0, 0, 0, 1407, 185, 1, 0, 0, 0, 1408, 1409, 5, 146, 0, 0, 1409, 1410, 5, 372, 0, 0, 1410, 1411, 5, 17, 0, 0, 1411, 1412, 5, 250, 0, 0, 1412, 1413, 3, 188, 94, 0, 1413, 187, 1, 0, 0, 0, 1414, 1415, 3, 260, 130, 0, 1415, 189, 1, 0, 0, 0, 1416, 1417, 5, 517, 0, 0, 1417, 1418, 3, 150, 75, 0, 1418, 1419, 5, 518, 0, 0, 1419, 1420, 3, 312, 156, 0, 1420, 191, 1, 0, 0, 0, 1421, 1422, 5, 374, 0, 0, 1422, 1423, 5, 517, 0, 0, 1423, 1424, 3, 194, 97, 0, 1424, 1425, 5, 518, 0, 0, 1425, 193, 1, 0, 0, 0, 1426, 1427, 3, 196, 98, 0, 1427, 1428, 5, 517, 0, 0, 1428, 1433, 3, 198, 99, 0, 1429, 1430, 5, 521, 0, 0, 1430, 1432, 3, 198, 99, 0, 1431, 1429, 1, 0, 0, 0, 1432, 1435, 1, 0, 0, 0, 1433, 1431, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1436, 1, 0, 0, 0, 1435, 1433, 1, 0, 0, 0, 1436, 1437, 5, 518, 0, 0, 1437, 195, 1, 0, 0, 0, 1438, 1439, 7, 21, 0, 0, 1439, 197, 1, 0, 0, 0, 1440, 1441, 5, 374, 0, 0, 1441, 1456, 3, 220, 110, 0, 1442, 1456, 3, 202, 101, 0, 1443, 1456, 3, 300, 150, 0, 1444, 1445, 5, 447, 0, 0, 1445, 1446, 5, 537, 0, 0, 1446, 1447, 5, 374, 0, 0, 1447, 1456, 3, 220, 110, 0, 1448, 1449, 5, 499, 0, 0, 1449, 1450, 5, 537, 0, 0, 1450, 1456, 3, 202, 101, 0, 1451, 1452, 3, 200, 100, 0, 1452, 1453, 5, 537, 0, 0, 1453, 1454, 3, 300, 150, 0, 1454, 1456, 1, 0, 0, 0, 1455, 1440, 1, 0, 0, 0, 1455, 1442, 1, 0, 0, 0, 1455, 1443, 1, 0, 0, 0, 1455, 1444, 1, 0, 0, 0, 1455, 1448, 1, 0, 0, 0, 1455, 1451, 1, 0, 0, 0, 1456, 199, 1, 0, 0, 0, 1457, 1458, 7, 22, 0, 0, 1458, 201, 1, 0, 0, 0, 1459, 1460, 5, 452, 0, 0, 1460, 1461, 5, 517, 0, 0, 1461, 1462, 3, 52, 26, 0, 1462, 1463, 5, 518, 0, 0, 1463, 203, 1, 0, 0, 0, 1464, 1465, 5, 254, 0, 0, 1465, 1469, 3, 262, 131, 0, 1466, 1467, 5, 413, 0, 0, 1467, 1469, 3, 56, 28, 0, 1468, 1464, 1, 0, 0, 0, 1468, 1466, 1, 0, 0, 0, 1469, 205, 1, 0, 0, 0, 1470, 1471, 5, 431, 0, 0, 1471, 1472, 3, 262, 131, 0, 1472, 207, 1, 0, 0, 0, 1473, 1474, 5, 159, 0, 0, 1474, 1475, 5, 34, 0, 0, 1475, 1480, 3, 210, 105, 0, 1476, 1477, 5, 521, 0, 0, 1477, 1479, 3, 210, 105, 0, 1478, 1476, 1, 0, 0, 0, 1479, 1482, 1, 0, 0, 0, 1480, 1478, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 209, 1, 0, 0, 0, 1482, 1480, 1, 0, 0, 0, 1483, 1524, 3, 52, 26, 0, 1484, 1524, 3, 216, 108, 0, 1485, 1486, 5, 517, 0, 0, 1486, 1524, 5, 518, 0, 0, 1487, 1488, 5, 517, 0, 0, 1488, 1493, 3, 260, 130, 0, 1489, 1490, 5, 521, 0, 0, 1490, 1492, 3, 260, 130, 0, 1491, 1489, 1, 0, 0, 0, 1492, 1495, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1496, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1497, 5, 518, 0, 0, 1497, 1524, 1, 0, 0, 0, 1498, 1499, 3, 214, 107, 0, 1499, 1500, 5, 517, 0, 0, 1500, 1505, 3, 260, 130, 0, 1501, 1502, 5, 521, 0, 0, 1502, 1504, 3, 260, 130, 0, 1503, 1501, 1, 0, 0, 0, 1504, 1507, 1, 0, 0, 0, 1505, 1503, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1508, 1, 0, 0, 0, 1507, 1505, 1, 0, 0, 0, 1508, 1509, 5, 518, 0, 0, 1509, 1524, 1, 0, 0, 0, 1510, 1511, 3, 212, 106, 0, 1511, 1512, 5, 517, 0, 0, 1512, 1517, 3, 210, 105, 0, 1513, 1514, 5, 521, 0, 0, 1514, 1516, 3, 210, 105, 0, 1515, 1513, 1, 0, 0, 0, 1516, 1519, 1, 0, 0, 0, 1517, 1515, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1520, 1, 0, 0, 0, 1519, 1517, 1, 0, 0, 0, 1520, 1521, 5, 518, 0, 0, 1521, 1524, 1, 0, 0, 0, 1522, 1524, 3, 260, 130, 0, 1523, 1483, 1, 0, 0, 0, 1523, 1484, 1, 0, 0, 0, 1523, 1485, 1, 0, 0, 0, 1523, 1487, 1, 0, 0, 0, 1523, 1498, 1, 0, 0, 0, 1523, 1510, 1, 0, 0, 0, 1523, 1522, 1, 0, 0, 0, 1524, 211, 1, 0, 0, 0, 1525, 1526, 5, 160, 0, 0, 1526, 1527, 5, 494, 0, 0, 1527, 213, 1, 0, 0, 0, 1528, 1529, 7, 23, 0, 0, 1529, 215, 1, 0, 0, 0, 1530, 1531, 3, 218, 109, 0, 1531, 1532, 5, 517, 0, 0, 1532, 1533, 3, 220, 110, 0, 1533, 1534, 5, 521, 0, 0, 1534, 1535, 3, 300, 150, 0, 1535, 1536, 5, 518, 0, 0, 1536, 217, 1, 0, 0, 0, 1537, 1538, 7, 24, 0, 0, 1538, 219, 1, 0, 0, 0, 1539, 1540, 3, 346, 173, 0, 1540, 221, 1, 0, 0, 0, 1541, 1542, 5, 163, 0, 0, 1542, 1543, 3, 262, 131, 0, 1543, 223, 1, 0, 0, 0, 1544, 1545, 5, 433, 0, 0, 1545, 1550, 3, 226, 113, 0, 1546, 1547, 5, 521, 0, 0, 1547, 1549, 3, 226, 113, 0, 1548, 1546, 1, 0, 0, 0, 1549, 1552, 1, 0, 0, 0, 1550, 1548, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 225, 1, 0, 0, 0, 1552, 1550, 1, 0, 0, 0, 1553, 1554, 3, 314, 157, 0, 1554, 1555, 5, 17, 0, 0, 1555, 1556, 3, 228, 114, 0, 1556, 227, 1, 0, 0, 0, 1557, 1559, 3, 314, 157, 0, 1558, 1557, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1562, 5, 517, 0, 0, 1561, 1563, 3, 238, 119, 0, 1562, 1561, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1565, 1, 0, 0, 0, 1564, 1566, 3, 232, 116, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1568, 1, 0, 0, 0, 1567, 1569, 3, 254, 127, 0, 1568, 1567, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1571, 5, 518, 0, 0, 1571, 229, 1, 0, 0, 0, 1572, 1573, 5, 214, 0, 0, 1573, 1575, 5, 517, 0, 0, 1574, 1576, 3, 238, 119, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1578, 1, 0, 0, 0, 1577, 1579, 3, 232, 116, 0, 1578, 1577, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1581, 1, 0, 0, 0, 1580, 1582, 3, 242, 121, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1584, 1, 0, 0, 0, 1583, 1585, 3, 248, 124, 0, 1584, 1583, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1587, 1, 0, 0, 0, 1586, 1588, 3, 250, 125, 0, 1587, 1586, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1590, 1, 0, 0, 0, 1589, 1591, 3, 244, 122, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 3, 252, 126, 0, 1593, 1598, 5, 518, 0, 0, 1594, 1596, 5, 17, 0, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1599, 3, 322, 161, 0, 1598, 1595, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 231, 1, 0, 0, 0, 1600, 1601, 5, 259, 0, 0, 1601, 1602, 5, 34, 0, 0, 1602, 1607, 3, 234, 117, 0, 1603, 1604, 5, 521, 0, 0, 1604, 1606, 3, 234, 117, 0, 1605, 1603, 1, 0, 0, 0, 1606, 1609, 1, 0, 0, 0, 1607, 1605, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 233, 1, 0, 0, 0, 1609, 1607, 1, 0, 0, 0, 1610, 1612, 3, 52, 26, 0, 1611, 1613, 7, 25, 0, 0, 1612, 1611, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1616, 1, 0, 0, 0, 1614, 1615, 5, 477, 0, 0, 1615, 1617, 7, 26, 0, 0, 1616, 1614, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 235, 1, 0, 0, 0, 1618, 1621, 5, 205, 0, 0, 1619, 1622, 5, 5, 0, 0, 1620, 1622, 3, 260, 130, 0, 1621, 1619, 1, 0, 0, 0, 1621, 1620, 1, 0, 0, 0, 1622, 237, 1, 0, 0, 0, 1623, 1624, 5, 269, 0, 0, 1624, 1627, 5, 34, 0, 0, 1625, 1628, 3, 52, 26, 0, 1626, 1628, 3, 274, 137, 0, 1627, 1625, 1, 0, 0, 0, 1627, 1626, 1, 0, 0, 0, 1628, 1636, 1, 0, 0, 0, 1629, 1632, 5, 521, 0, 0, 1630, 1633, 3, 52, 26, 0, 1631, 1633, 3, 274, 137, 0, 1632, 1630, 1, 0, 0, 0, 1632, 1631, 1, 0, 0, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1629, 1, 0, 0, 0, 1635, 1638, 1, 0, 0, 0, 1636, 1634, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 239, 1, 0, 0, 0, 1638, 1636, 1, 0, 0, 0, 1639, 1656, 5, 528, 0, 0, 1640, 1656, 5, 531, 0, 0, 1641, 1656, 5, 536, 0, 0, 1642, 1643, 5, 519, 0, 0, 1643, 1644, 5, 539, 0, 0, 1644, 1645, 5, 521, 0, 0, 1645, 1646, 5, 539, 0, 0, 1646, 1656, 5, 520, 0, 0, 1647, 1648, 5, 519, 0, 0, 1648, 1649, 5, 539, 0, 0, 1649, 1650, 5, 521, 0, 0, 1650, 1656, 5, 520, 0, 0, 1651, 1652, 5, 519, 0, 0, 1652, 1653, 5, 521, 0, 0, 1653, 1654, 5, 539, 0, 0, 1654, 1656, 5, 520, 0, 0, 1655, 1639, 1, 0, 0, 0, 1655, 1640, 1, 0, 0, 0, 1655, 1641, 1, 0, 0, 0, 1655, 1642, 1, 0, 0, 0, 1655, 1647, 1, 0, 0, 0, 1655, 1651, 1, 0, 0, 0, 1656, 241, 1, 0, 0, 0, 1657, 1658, 5, 216, 0, 0, 1658, 1663, 3, 174, 87, 0, 1659, 1660, 5, 521, 0, 0, 1660, 1662, 3, 174, 87, 0, 1661, 1659, 1, 0, 0, 0, 1662, 1665, 1, 0, 0, 0, 1663, 1661, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 243, 1, 0, 0, 0, 1665, 1663, 1, 0, 0, 0, 1666, 1667, 5, 272, 0, 0, 1667, 1669, 5, 517, 0, 0, 1668, 1670, 3, 246, 123, 0, 1669, 1668, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1669, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1675, 5, 518, 0, 0, 1674, 1676, 3, 258, 129, 0, 1675, 1674, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 245, 1, 0, 0, 0, 1677, 1679, 3, 324, 162, 0, 1678, 1680, 3, 240, 120, 0, 1679, 1678, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 247, 1, 0, 0, 0, 1681, 1682, 5, 5, 0, 0, 1682, 1683, 5, 323, 0, 0, 1683, 1684, 5, 273, 0, 0, 1684, 1690, 5, 211, 0, 0, 1685, 1686, 5, 255, 0, 0, 1686, 1687, 5, 322, 0, 0, 1687, 1688, 5, 273, 0, 0, 1688, 1690, 5, 211, 0, 0, 1689, 1681, 1, 0, 0, 0, 1689, 1685, 1, 0, 0, 0, 1690, 249, 1, 0, 0, 0, 1691, 1692, 5, 439, 0, 0, 1692, 1693, 5, 211, 0, 0, 1693, 1694, 5, 344, 0, 0, 1694, 1695, 5, 479, 0, 0, 1695, 1696, 5, 468, 0, 0, 1696, 1716, 5, 322, 0, 0, 1697, 1698, 5, 439, 0, 0, 1698, 1699, 5, 211, 0, 0, 1699, 1700, 5, 344, 0, 0, 1700, 1701, 5, 389, 0, 0, 1701, 1702, 5, 238, 0, 0, 1702, 1716, 5, 322, 0, 0, 1703, 1704, 5, 439, 0, 0, 1704, 1705, 5, 211, 0, 0, 1705, 1706, 5, 344, 0, 0, 1706, 1707, 5, 389, 0, 0, 1707, 1708, 5, 468, 0, 0, 1708, 1716, 3, 324, 162, 0, 1709, 1710, 5, 439, 0, 0, 1710, 1711, 5, 211, 0, 0, 1711, 1712, 5, 344, 0, 0, 1712, 1713, 5, 389, 0, 0, 1713, 1714, 5, 458, 0, 0, 1714, 1716, 3, 324, 162, 0, 1715, 1691, 1, 0, 0, 0, 1715, 1697, 1, 0, 0, 0, 1715, 1703, 1, 0, 0, 0, 1715, 1709, 1, 0, 0, 0, 1716, 251, 1, 0, 0, 0, 1717, 1718, 5, 105, 0, 0, 1718, 1723, 3, 174, 87, 0, 1719, 1720, 5, 521, 0, 0, 1720, 1722, 3, 174, 87, 0, 1721, 1719, 1, 0, 0, 0, 1722, 1725, 1, 0, 0, 0, 1723, 1721, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 253, 1, 0, 0, 0, 1725, 1723, 1, 0, 0, 0, 1726, 1727, 5, 293, 0, 0, 1727, 1728, 5, 27, 0, 0, 1728, 1729, 3, 300, 150, 0, 1729, 1730, 3, 256, 128, 0, 1730, 1736, 1, 0, 0, 0, 1731, 1732, 5, 323, 0, 0, 1732, 1733, 5, 27, 0, 0, 1733, 1734, 5, 539, 0, 0, 1734, 1736, 3, 256, 128, 0, 1735, 1726, 1, 0, 0, 0, 1735, 1731, 1, 0, 0, 0, 1736, 255, 1, 0, 0, 0, 1737, 1738, 5, 481, 0, 0, 1738, 1739, 5, 10, 0, 0, 1739, 1740, 5, 76, 0, 0, 1740, 1741, 5, 322, 0, 0, 1741, 257, 1, 0, 0, 0, 1742, 1743, 5, 435, 0, 0, 1743, 1744, 3, 300, 150, 0, 1744, 259, 1, 0, 0, 0, 1745, 1746, 3, 262, 131, 0, 1746, 261, 1, 0, 0, 0, 1747, 1748, 6, 131, -1, 0, 1748, 1749, 5, 242, 0, 0, 1749, 1760, 3, 262, 131, 6, 1750, 1751, 5, 133, 0, 0, 1751, 1752, 5, 517, 0, 0, 1752, 1753, 3, 160, 80, 0, 1753, 1754, 5, 518, 0, 0, 1754, 1760, 1, 0, 0, 0, 1755, 1757, 3, 270, 135, 0, 1756, 1758, 3, 264, 132, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1760, 1, 0, 0, 0, 1759, 1747, 1, 0, 0, 0, 1759, 1750, 1, 0, 0, 0, 1759, 1755, 1, 0, 0, 0, 1760, 1775, 1, 0, 0, 0, 1761, 1762, 10, 3, 0, 0, 1762, 1763, 5, 10, 0, 0, 1763, 1774, 3, 262, 131, 4, 1764, 1765, 10, 2, 0, 0, 1765, 1766, 5, 258, 0, 0, 1766, 1774, 3, 262, 131, 3, 1767, 1768, 10, 1, 0, 0, 1768, 1770, 5, 184, 0, 0, 1769, 1771, 5, 242, 0, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 7, 27, 0, 0, 1773, 1761, 1, 0, 0, 0, 1773, 1764, 1, 0, 0, 0, 1773, 1767, 1, 0, 0, 0, 1774, 1777, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 263, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1780, 5, 242, 0, 0, 1779, 1778, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 5, 27, 0, 0, 1782, 1784, 7, 28, 0, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1786, 3, 270, 135, 0, 1786, 1787, 5, 10, 0, 0, 1787, 1788, 3, 270, 135, 0, 1788, 1853, 1, 0, 0, 0, 1789, 1791, 5, 242, 0, 0, 1790, 1789, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1793, 5, 170, 0, 0, 1793, 1794, 5, 517, 0, 0, 1794, 1799, 3, 260, 130, 0, 1795, 1796, 5, 521, 0, 0, 1796, 1798, 3, 260, 130, 0, 1797, 1795, 1, 0, 0, 0, 1798, 1801, 1, 0, 0, 0, 1799, 1797, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1802, 1, 0, 0, 0, 1801, 1799, 1, 0, 0, 0, 1802, 1803, 5, 518, 0, 0, 1803, 1853, 1, 0, 0, 0, 1804, 1806, 5, 242, 0, 0, 1805, 1804, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1808, 5, 170, 0, 0, 1808, 1809, 5, 517, 0, 0, 1809, 1810, 3, 160, 80, 0, 1810, 1811, 5, 518, 0, 0, 1811, 1853, 1, 0, 0, 0, 1812, 1813, 5, 133, 0, 0, 1813, 1814, 5, 517, 0, 0, 1814, 1815, 3, 160, 80, 0, 1815, 1816, 5, 518, 0, 0, 1816, 1853, 1, 0, 0, 0, 1817, 1819, 5, 242, 0, 0, 1818, 1817, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 5, 319, 0, 0, 1821, 1853, 3, 270, 135, 0, 1822, 1853, 3, 268, 134, 0, 1823, 1825, 5, 184, 0, 0, 1824, 1826, 5, 242, 0, 0, 1825, 1824, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1853, 7, 27, 0, 0, 1828, 1830, 5, 184, 0, 0, 1829, 1831, 5, 242, 0, 0, 1830, 1829, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1833, 5, 113, 0, 0, 1833, 1834, 5, 151, 0, 0, 1834, 1853, 3, 270, 135, 0, 1835, 1837, 5, 242, 0, 0, 1836, 1835, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1839, 5, 343, 0, 0, 1839, 1840, 5, 389, 0, 0, 1840, 1843, 3, 270, 135, 0, 1841, 1842, 5, 127, 0, 0, 1842, 1844, 3, 376, 188, 0, 1843, 1841, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1853, 1, 0, 0, 0, 1845, 1846, 5, 184, 0, 0, 1846, 1850, 5, 186, 0, 0, 1847, 1851, 5, 414, 0, 0, 1848, 1851, 5, 13, 0, 0, 1849, 1851, 3, 322, 161, 0, 1850, 1847, 1, 0, 0, 0, 1850, 1848, 1, 0, 0, 0, 1850, 1849, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 1, 0, 0, 0, 1852, 1779, 1, 0, 0, 0, 1852, 1790, 1, 0, 0, 0, 1852, 1805, 1, 0, 0, 0, 1852, 1812, 1, 0, 0, 0, 1852, 1818, 1, 0, 0, 0, 1852, 1822, 1, 0, 0, 0, 1852, 1823, 1, 0, 0, 0, 1852, 1828, 1, 0, 0, 0, 1852, 1836, 1, 0, 0, 0, 1852, 1845, 1, 0, 0, 0, 1853, 265, 1, 0, 0, 0, 1854, 1863, 5, 245, 0, 0, 1855, 1856, 5, 121, 0, 0, 1856, 1863, 5, 13, 0, 0, 1857, 1858, 5, 121, 0, 0, 1858, 1863, 3, 346, 173, 0, 1859, 1863, 5, 398, 0, 0, 1860, 1863, 5, 140, 0, 0, 1861, 1863, 5, 405, 0, 0, 1862, 1854, 1, 0, 0, 0, 1862, 1855, 1, 0, 0, 0, 1862, 1857, 1, 0, 0, 0, 1862, 1859, 1, 0, 0, 0, 1862, 1860, 1, 0, 0, 0, 1862, 1861, 1, 0, 0, 0, 1863, 267, 1, 0, 0, 0, 1864, 1866, 5, 242, 0, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1868, 5, 203, 0, 0, 1868, 1882, 7, 29, 0, 0, 1869, 1870, 5, 517, 0, 0, 1870, 1883, 5, 518, 0, 0, 1871, 1872, 5, 517, 0, 0, 1872, 1877, 3, 260, 130, 0, 1873, 1874, 5, 521, 0, 0, 1874, 1876, 3, 260, 130, 0, 1875, 1873, 1, 0, 0, 0, 1876, 1879, 1, 0, 0, 0, 1877, 1875, 1, 0, 0, 0, 1877, 1878, 1, 0, 0, 0, 1878, 1880, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1880, 1881, 5, 518, 0, 0, 1881, 1883, 1, 0, 0, 0, 1882, 1869, 1, 0, 0, 0, 1882, 1871, 1, 0, 0, 0, 1883, 1894, 1, 0, 0, 0, 1884, 1886, 5, 242, 0, 0, 1885, 1884, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 1888, 5, 203, 0, 0, 1888, 1891, 3, 270, 135, 0, 1889, 1890, 5, 127, 0, 0, 1890, 1892, 3, 376, 188, 0, 1891, 1889, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1894, 1, 0, 0, 0, 1893, 1865, 1, 0, 0, 0, 1893, 1885, 1, 0, 0, 0, 1894, 269, 1, 0, 0, 0, 1895, 1896, 6, 135, -1, 0, 1896, 1900, 3, 274, 137, 0, 1897, 1898, 7, 30, 0, 0, 1898, 1900, 3, 270, 135, 7, 1899, 1895, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1900, 1922, 1, 0, 0, 0, 1901, 1902, 10, 6, 0, 0, 1902, 1903, 7, 31, 0, 0, 1903, 1921, 3, 270, 135, 7, 1904, 1905, 10, 5, 0, 0, 1905, 1906, 7, 32, 0, 0, 1906, 1921, 3, 270, 135, 6, 1907, 1908, 10, 4, 0, 0, 1908, 1909, 5, 512, 0, 0, 1909, 1921, 3, 270, 135, 5, 1910, 1911, 10, 3, 0, 0, 1911, 1912, 5, 513, 0, 0, 1912, 1921, 3, 270, 135, 4, 1913, 1914, 10, 2, 0, 0, 1914, 1915, 5, 511, 0, 0, 1915, 1921, 3, 270, 135, 3, 1916, 1917, 10, 1, 0, 0, 1917, 1918, 3, 364, 182, 0, 1918, 1919, 3, 270, 135, 2, 1919, 1921, 1, 0, 0, 0, 1920, 1901, 1, 0, 0, 0, 1920, 1904, 1, 0, 0, 0, 1920, 1907, 1, 0, 0, 0, 1920, 1910, 1, 0, 0, 0, 1920, 1913, 1, 0, 0, 0, 1920, 1916, 1, 0, 0, 0, 1921, 1924, 1, 0, 0, 0, 1922, 1920, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 271, 1, 0, 0, 0, 1924, 1922, 1, 0, 0, 0, 1925, 1945, 3, 390, 195, 0, 1926, 1945, 3, 280, 140, 0, 1927, 1928, 3, 282, 141, 0, 1928, 1940, 5, 517, 0, 0, 1929, 1931, 3, 382, 191, 0, 1930, 1929, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1937, 3, 284, 142, 0, 1933, 1934, 5, 521, 0, 0, 1934, 1936, 3, 284, 142, 0, 1935, 1933, 1, 0, 0, 0, 1936, 1939, 1, 0, 0, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1941, 1, 0, 0, 0, 1939, 1937, 1, 0, 0, 0, 1940, 1930, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1943, 5, 518, 0, 0, 1943, 1945, 1, 0, 0, 0, 1944, 1925, 1, 0, 0, 0, 1944, 1926, 1, 0, 0, 0, 1944, 1927, 1, 0, 0, 0, 1945, 273, 1, 0, 0, 0, 1946, 1947, 6, 137, -1, 0, 1947, 1949, 5, 40, 0, 0, 1948, 1950, 3, 328, 164, 0, 1949, 1948, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1955, 1, 0, 0, 0, 1953, 1954, 5, 120, 0, 0, 1954, 1956, 3, 260, 130, 0, 1955, 1953, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1958, 5, 122, 0, 0, 1958, 2022, 1, 0, 0, 0, 1959, 1960, 5, 40, 0, 0, 1960, 1962, 3, 260, 130, 0, 1961, 1963, 3, 328, 164, 0, 1962, 1961, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1962, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1968, 1, 0, 0, 0, 1966, 1967, 5, 120, 0, 0, 1967, 1969, 3, 260, 130, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1971, 5, 122, 0, 0, 1971, 2022, 1, 0, 0, 0, 1972, 1973, 5, 41, 0, 0, 1973, 1974, 5, 517, 0, 0, 1974, 1975, 3, 260, 130, 0, 1975, 1976, 5, 17, 0, 0, 1976, 1977, 3, 58, 29, 0, 1977, 1978, 5, 518, 0, 0, 1978, 2022, 1, 0, 0, 0, 1979, 1980, 5, 458, 0, 0, 1980, 1981, 5, 517, 0, 0, 1981, 1984, 3, 260, 130, 0, 1982, 1983, 5, 462, 0, 0, 1983, 1985, 5, 477, 0, 0, 1984, 1982, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 5, 518, 0, 0, 1987, 2022, 1, 0, 0, 0, 1988, 1989, 5, 468, 0, 0, 1989, 1990, 5, 517, 0, 0, 1990, 1993, 3, 260, 130, 0, 1991, 1992, 5, 462, 0, 0, 1992, 1994, 5, 477, 0, 0, 1993, 1991, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1996, 5, 518, 0, 0, 1996, 2022, 1, 0, 0, 0, 1997, 1998, 5, 282, 0, 0, 1998, 1999, 5, 517, 0, 0, 1999, 2000, 3, 270, 135, 0, 2000, 2001, 5, 170, 0, 0, 2001, 2002, 3, 270, 135, 0, 2002, 2003, 5, 518, 0, 0, 2003, 2022, 1, 0, 0, 0, 2004, 2022, 3, 372, 186, 0, 2005, 2022, 5, 528, 0, 0, 2006, 2007, 3, 346, 173, 0, 2007, 2008, 5, 514, 0, 0, 2008, 2009, 5, 528, 0, 0, 2009, 2022, 1, 0, 0, 0, 2010, 2011, 5, 517, 0, 0, 2011, 2012, 3, 160, 80, 0, 2012, 2013, 5, 518, 0, 0, 2013, 2022, 1, 0, 0, 0, 2014, 2022, 3, 272, 136, 0, 2015, 2022, 3, 54, 27, 0, 2016, 2022, 3, 294, 147, 0, 2017, 2018, 5, 517, 0, 0, 2018, 2019, 3, 260, 130, 0, 2019, 2020, 5, 518, 0, 0, 2020, 2022, 1, 0, 0, 0, 2021, 1946, 1, 0, 0, 0, 2021, 1959, 1, 0, 0, 0, 2021, 1972, 1, 0, 0, 0, 2021, 1979, 1, 0, 0, 0, 2021, 1988, 1, 0, 0, 0, 2021, 1997, 1, 0, 0, 0, 2021, 2004, 1, 0, 0, 0, 2021, 2005, 1, 0, 0, 0, 2021, 2006, 1, 0, 0, 0, 2021, 2010, 1, 0, 0, 0, 2021, 2014, 1, 0, 0, 0, 2021, 2015, 1, 0, 0, 0, 2021, 2016, 1, 0, 0, 0, 2021, 2017, 1, 0, 0, 0, 2022, 2030, 1, 0, 0, 0, 2023, 2024, 10, 4, 0, 0, 2024, 2025, 5, 515, 0, 0, 2025, 2026, 3, 270, 135, 0, 2026, 2027, 5, 516, 0, 0, 2027, 2029, 1, 0, 0, 0, 2028, 2023, 1, 0, 0, 0, 2029, 2032, 1, 0, 0, 0, 2030, 2028, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 275, 1, 0, 0, 0, 2032, 2030, 1, 0, 0, 0, 2033, 2034, 3, 346, 173, 0, 2034, 277, 1, 0, 0, 0, 2035, 2040, 3, 394, 197, 0, 2036, 2040, 3, 390, 195, 0, 2037, 2040, 3, 392, 196, 0, 2038, 2040, 3, 346, 173, 0, 2039, 2035, 1, 0, 0, 0, 2039, 2036, 1, 0, 0, 0, 2039, 2037, 1, 0, 0, 0, 2039, 2038, 1, 0, 0, 0, 2040, 279, 1, 0, 0, 0, 2041, 2042, 3, 392, 196, 0, 2042, 2043, 5, 538, 0, 0, 2043, 2046, 1, 0, 0, 0, 2044, 2046, 3, 300, 150, 0, 2045, 2041, 1, 0, 0, 0, 2045, 2044, 1, 0, 0, 0, 2046, 281, 1, 0, 0, 0, 2047, 2050, 3, 394, 197, 0, 2048, 2050, 3, 346, 173, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2048, 1, 0, 0, 0, 2050, 283, 1, 0, 0, 0, 2051, 2060, 3, 388, 194, 0, 2052, 2060, 3, 386, 193, 0, 2053, 2060, 3, 384, 192, 0, 2054, 2060, 3, 260, 130, 0, 2055, 2060, 3, 286, 143, 0, 2056, 2060, 3, 288, 144, 0, 2057, 2060, 3, 290, 145, 0, 2058, 2060, 3, 292, 146, 0, 2059, 2051, 1, 0, 0, 0, 2059, 2052, 1, 0, 0, 0, 2059, 2053, 1, 0, 0, 0, 2059, 2054, 1, 0, 0, 0, 2059, 2055, 1, 0, 0, 0, 2059, 2056, 1, 0, 0, 0, 2059, 2057, 1, 0, 0, 0, 2059, 2058, 1, 0, 0, 0, 2060, 285, 1, 0, 0, 0, 2061, 2065, 3, 54, 27, 0, 2062, 2063, 3, 346, 173, 0, 2063, 2064, 3, 58, 29, 0, 2064, 2066, 1, 0, 0, 0, 2065, 2062, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2075, 1, 0, 0, 0, 2067, 2072, 3, 346, 173, 0, 2068, 2072, 5, 245, 0, 0, 2069, 2070, 5, 104, 0, 0, 2070, 2072, 3, 270, 135, 0, 2071, 2067, 1, 0, 0, 0, 2071, 2068, 1, 0, 0, 0, 2071, 2069, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2074, 5, 254, 0, 0, 2074, 2076, 5, 121, 0, 0, 2075, 2071, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2085, 1, 0, 0, 0, 2077, 2082, 3, 346, 173, 0, 2078, 2082, 5, 245, 0, 0, 2079, 2080, 5, 104, 0, 0, 2080, 2082, 3, 270, 135, 0, 2081, 2077, 1, 0, 0, 0, 2081, 2078, 1, 0, 0, 0, 2081, 2079, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 2084, 5, 254, 0, 0, 2084, 2086, 3, 346, 173, 0, 2085, 2081, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 287, 1, 0, 0, 0, 2087, 2099, 3, 54, 27, 0, 2088, 2094, 5, 436, 0, 0, 2089, 2091, 5, 434, 0, 0, 2090, 2092, 3, 346, 173, 0, 2091, 2090, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2088, 1, 0, 0, 0, 2093, 2089, 1, 0, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2097, 5, 13, 0, 0, 2096, 2095, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2100, 3, 346, 173, 0, 2099, 2093, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 2105, 1, 0, 0, 0, 2101, 2102, 3, 266, 133, 0, 2102, 2103, 5, 254, 0, 0, 2103, 2104, 5, 121, 0, 0, 2104, 2106, 1, 0, 0, 0, 2105, 2101, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2111, 1, 0, 0, 0, 2107, 2108, 3, 266, 133, 0, 2108, 2109, 5, 254, 0, 0, 2109, 2110, 3, 346, 173, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2107, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 289, 1, 0, 0, 0, 2113, 2115, 5, 467, 0, 0, 2114, 2113, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2118, 3, 54, 27, 0, 2117, 2119, 5, 414, 0, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2130, 1, 0, 0, 0, 2120, 2131, 3, 270, 135, 0, 2121, 2122, 5, 186, 0, 0, 2122, 2126, 5, 517, 0, 0, 2123, 2125, 3, 270, 135, 0, 2124, 2123, 1, 0, 0, 0, 2125, 2128, 1, 0, 0, 0, 2126, 2124, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2129, 1, 0, 0, 0, 2128, 2126, 1, 0, 0, 0, 2129, 2131, 5, 518, 0, 0, 2130, 2120, 1, 0, 0, 0, 2130, 2121, 1, 0, 0, 0, 2131, 2133, 1, 0, 0, 0, 2132, 2114, 1, 0, 0, 0, 2133, 2136, 1, 0, 0, 0, 2134, 2132, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2143, 1, 0, 0, 0, 2136, 2134, 1, 0, 0, 0, 2137, 2140, 5, 245, 0, 0, 2138, 2140, 3, 346, 173, 0, 2139, 2137, 1, 0, 0, 0, 2139, 2138, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2142, 5, 254, 0, 0, 2142, 2144, 5, 245, 0, 0, 2143, 2139, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 291, 1, 0, 0, 0, 2145, 2147, 3, 270, 135, 0, 2146, 2145, 1, 0, 0, 0, 2147, 2150, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2157, 1, 0, 0, 0, 2150, 2148, 1, 0, 0, 0, 2151, 2154, 5, 245, 0, 0, 2152, 2154, 3, 346, 173, 0, 2153, 2151, 1, 0, 0, 0, 2153, 2152, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2156, 5, 254, 0, 0, 2156, 2158, 5, 245, 0, 0, 2157, 2153, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 293, 1, 0, 0, 0, 2159, 2160, 3, 346, 173, 0, 2160, 295, 1, 0, 0, 0, 2161, 2162, 3, 322, 161, 0, 2162, 297, 1, 0, 0, 0, 2163, 2166, 3, 322, 161, 0, 2164, 2166, 3, 294, 147, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2164, 1, 0, 0, 0, 2166, 299, 1, 0, 0, 0, 2167, 2170, 5, 182, 0, 0, 2168, 2171, 3, 302, 151, 0, 2169, 2171, 3, 306, 153, 0, 2170, 2168, 1, 0, 0, 0, 2170, 2169, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 301, 1, 0, 0, 0, 2172, 2174, 3, 304, 152, 0, 2173, 2175, 3, 308, 154, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 303, 1, 0, 0, 0, 2176, 2177, 3, 310, 155, 0, 2177, 2178, 3, 386, 193, 0, 2178, 2180, 1, 0, 0, 0, 2179, 2176, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 305, 1, 0, 0, 0, 2183, 2186, 3, 308, 154, 0, 2184, 2187, 3, 304, 152, 0, 2185, 2187, 3, 308, 154, 0, 2186, 2184, 1, 0, 0, 0, 2186, 2185, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 307, 1, 0, 0, 0, 2188, 2189, 3, 310, 155, 0, 2189, 2190, 3, 386, 193, 0, 2190, 2191, 5, 389, 0, 0, 2191, 2192, 3, 386, 193, 0, 2192, 309, 1, 0, 0, 0, 2193, 2195, 7, 33, 0, 0, 2194, 2193, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2199, 7, 34, 0, 0, 2197, 2199, 5, 538, 0, 0, 2198, 2194, 1, 0, 0, 0, 2198, 2197, 1, 0, 0, 0, 2199, 311, 1, 0, 0, 0, 2200, 2202, 5, 17, 0, 0, 2201, 2200, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2205, 3, 322, 161, 0, 2204, 2206, 3, 318, 159, 0, 2205, 2204, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 313, 1, 0, 0, 0, 2207, 2208, 3, 322, 161, 0, 2208, 2209, 3, 316, 158, 0, 2209, 315, 1, 0, 0, 0, 2210, 2211, 5, 222, 0, 0, 2211, 2213, 3, 322, 161, 0, 2212, 2210, 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2218, 1, 0, 0, 0, 2216, 2218, 1, 0, 0, 0, 2217, 2212, 1, 0, 0, 0, 2217, 2216, 1, 0, 0, 0, 2218, 317, 1, 0, 0, 0, 2219, 2220, 5, 517, 0, 0, 2220, 2221, 3, 320, 160, 0, 2221, 2222, 5, 518, 0, 0, 2222, 319, 1, 0, 0, 0, 2223, 2228, 3, 322, 161, 0, 2224, 2225, 5, 521, 0, 0, 2225, 2227, 3, 322, 161, 0, 2226, 2224, 1, 0, 0, 0, 2227, 2230, 1, 0, 0, 0, 2228, 2226, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 321, 1, 0, 0, 0, 2230, 2228, 1, 0, 0, 0, 2231, 2235, 3, 324, 162, 0, 2232, 2235, 3, 326, 163, 0, 2233, 2235, 3, 396, 198, 0, 2234, 2231, 1, 0, 0, 0, 2234, 2232, 1, 0, 0, 0, 2234, 2233, 1, 0, 0, 0, 2235, 323, 1, 0, 0, 0, 2236, 2237, 7, 35, 0, 0, 2237, 325, 1, 0, 0, 0, 2238, 2239, 5, 538, 0, 0, 2239, 327, 1, 0, 0, 0, 2240, 2241, 5, 429, 0, 0, 2241, 2242, 3, 260, 130, 0, 2242, 2243, 5, 377, 0, 0, 2243, 2244, 3, 260, 130, 0, 2244, 329, 1, 0, 0, 0, 2245, 2246, 3, 322, 161, 0, 2246, 331, 1, 0, 0, 0, 2247, 2248, 3, 322, 161, 0, 2248, 333, 1, 0, 0, 0, 2249, 2252, 3, 322, 161, 0, 2250, 2251, 5, 514, 0, 0, 2251, 2253, 3, 322, 161, 0, 2252, 2250, 1, 0, 0, 0, 2252, 2253, 1, 0, 0, 0, 2253, 335, 1, 0, 0, 0, 2254, 2257, 3, 322, 161, 0, 2255, 2256, 5, 514, 0, 0, 2256, 2258, 3, 322, 161, 0, 2257, 2255, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 337, 1, 0, 0, 0, 2259, 2262, 3, 322, 161, 0, 2260, 2261, 5, 514, 0, 0, 2261, 2263, 3, 322, 161, 0, 2262, 2260, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 2272, 1, 0, 0, 0, 2264, 2265, 3, 322, 161, 0, 2265, 2266, 5, 514, 0, 0, 2266, 2269, 3, 322, 161, 0, 2267, 2268, 5, 514, 0, 0, 2268, 2270, 3, 322, 161, 0, 2269, 2267, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2272, 1, 0, 0, 0, 2271, 2259, 1, 0, 0, 0, 2271, 2264, 1, 0, 0, 0, 2272, 339, 1, 0, 0, 0, 2273, 2276, 3, 322, 161, 0, 2274, 2275, 5, 514, 0, 0, 2275, 2277, 3, 322, 161, 0, 2276, 2274, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2286, 1, 0, 0, 0, 2278, 2279, 3, 322, 161, 0, 2279, 2280, 5, 514, 0, 0, 2280, 2283, 3, 322, 161, 0, 2281, 2282, 5, 514, 0, 0, 2282, 2284, 3, 322, 161, 0, 2283, 2281, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 1, 0, 0, 0, 2285, 2273, 1, 0, 0, 0, 2285, 2278, 1, 0, 0, 0, 2286, 341, 1, 0, 0, 0, 2287, 2290, 3, 322, 161, 0, 2288, 2289, 5, 514, 0, 0, 2289, 2291, 3, 322, 161, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2300, 1, 0, 0, 0, 2292, 2293, 3, 322, 161, 0, 2293, 2294, 5, 514, 0, 0, 2294, 2297, 3, 322, 161, 0, 2295, 2296, 5, 514, 0, 0, 2296, 2298, 3, 322, 161, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2300, 1, 0, 0, 0, 2299, 2287, 1, 0, 0, 0, 2299, 2292, 1, 0, 0, 0, 2300, 343, 1, 0, 0, 0, 2301, 2304, 3, 322, 161, 0, 2302, 2303, 5, 514, 0, 0, 2303, 2305, 3, 322, 161, 0, 2304, 2302, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2314, 1, 0, 0, 0, 2306, 2307, 3, 322, 161, 0, 2307, 2308, 5, 514, 0, 0, 2308, 2311, 3, 322, 161, 0, 2309, 2310, 5, 514, 0, 0, 2310, 2312, 3, 322, 161, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2314, 1, 0, 0, 0, 2313, 2301, 1, 0, 0, 0, 2313, 2306, 1, 0, 0, 0, 2314, 345, 1, 0, 0, 0, 2315, 2320, 3, 322, 161, 0, 2316, 2317, 5, 514, 0, 0, 2317, 2319, 3, 322, 161, 0, 2318, 2316, 1, 0, 0, 0, 2319, 2322, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2320, 2318, 1, 0, 0, 0, 2321, 347, 1, 0, 0, 0, 2322, 2320, 1, 0, 0, 0, 2323, 2324, 5, 434, 0, 0, 2324, 2325, 3, 354, 177, 0, 2325, 349, 1, 0, 0, 0, 2326, 2327, 5, 167, 0, 0, 2327, 2328, 5, 242, 0, 0, 2328, 2329, 5, 133, 0, 0, 2329, 351, 1, 0, 0, 0, 2330, 2331, 5, 167, 0, 0, 2331, 2332, 5, 133, 0, 0, 2332, 353, 1, 0, 0, 0, 2333, 2334, 5, 517, 0, 0, 2334, 2339, 3, 356, 178, 0, 2335, 2336, 5, 521, 0, 0, 2336, 2338, 3, 356, 178, 0, 2337, 2335, 1, 0, 0, 0, 2338, 2341, 1, 0, 0, 0, 2339, 2337, 1, 0, 0, 0, 2339, 2340, 1, 0, 0, 0, 2340, 2342, 1, 0, 0, 0, 2341, 2339, 1, 0, 0, 0, 2342, 2343, 5, 518, 0, 0, 2343, 355, 1, 0, 0, 0, 2344, 2349, 3, 358, 179, 0, 2345, 2347, 5, 506, 0, 0, 2346, 2345, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2350, 3, 360, 180, 0, 2349, 2346, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 357, 1, 0, 0, 0, 2351, 2355, 3, 322, 161, 0, 2352, 2355, 3, 294, 147, 0, 2353, 2355, 5, 538, 0, 0, 2354, 2351, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2354, 2353, 1, 0, 0, 0, 2355, 359, 1, 0, 0, 0, 2356, 2361, 5, 539, 0, 0, 2357, 2361, 5, 540, 0, 0, 2358, 2361, 3, 380, 190, 0, 2359, 2361, 5, 538, 0, 0, 2360, 2356, 1, 0, 0, 0, 2360, 2357, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2360, 2359, 1, 0, 0, 0, 2361, 361, 1, 0, 0, 0, 2362, 2369, 5, 10, 0, 0, 2363, 2364, 5, 512, 0, 0, 2364, 2369, 5, 512, 0, 0, 2365, 2369, 5, 258, 0, 0, 2366, 2367, 5, 511, 0, 0, 2367, 2369, 5, 511, 0, 0, 2368, 2362, 1, 0, 0, 0, 2368, 2363, 1, 0, 0, 0, 2368, 2365, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2369, 363, 1, 0, 0, 0, 2370, 2385, 5, 506, 0, 0, 2371, 2385, 5, 507, 0, 0, 2372, 2385, 5, 508, 0, 0, 2373, 2374, 5, 508, 0, 0, 2374, 2385, 5, 506, 0, 0, 2375, 2376, 5, 507, 0, 0, 2376, 2385, 5, 506, 0, 0, 2377, 2378, 5, 508, 0, 0, 2378, 2385, 5, 507, 0, 0, 2379, 2380, 5, 509, 0, 0, 2380, 2385, 5, 506, 0, 0, 2381, 2382, 5, 508, 0, 0, 2382, 2383, 5, 506, 0, 0, 2383, 2385, 5, 507, 0, 0, 2384, 2370, 1, 0, 0, 0, 2384, 2371, 1, 0, 0, 0, 2384, 2372, 1, 0, 0, 0, 2384, 2373, 1, 0, 0, 0, 2384, 2375, 1, 0, 0, 0, 2384, 2377, 1, 0, 0, 0, 2384, 2379, 1, 0, 0, 0, 2384, 2381, 1, 0, 0, 0, 2385, 365, 1, 0, 0, 0, 2386, 2387, 5, 508, 0, 0, 2387, 2394, 5, 508, 0, 0, 2388, 2389, 5, 507, 0, 0, 2389, 2394, 5, 507, 0, 0, 2390, 2394, 5, 512, 0, 0, 2391, 2394, 5, 513, 0, 0, 2392, 2394, 5, 511, 0, 0, 2393, 2386, 1, 0, 0, 0, 2393, 2388, 1, 0, 0, 0, 2393, 2390, 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2392, 1, 0, 0, 0, 2394, 367, 1, 0, 0, 0, 2395, 2396, 7, 36, 0, 0, 2396, 369, 1, 0, 0, 0, 2397, 2398, 7, 37, 0, 0, 2398, 371, 1, 0, 0, 0, 2399, 2414, 3, 300, 150, 0, 2400, 2414, 3, 374, 187, 0, 2401, 2414, 3, 376, 188, 0, 2402, 2404, 5, 530, 0, 0, 2403, 2402, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2414, 3, 378, 189, 0, 2406, 2414, 3, 380, 190, 0, 2407, 2414, 5, 540, 0, 0, 2408, 2414, 5, 541, 0, 0, 2409, 2411, 5, 242, 0, 0, 2410, 2409, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2414, 5, 245, 0, 0, 2413, 2399, 1, 0, 0, 0, 2413, 2400, 1, 0, 0, 0, 2413, 2401, 1, 0, 0, 0, 2413, 2403, 1, 0, 0, 0, 2413, 2406, 1, 0, 0, 0, 2413, 2407, 1, 0, 0, 0, 2413, 2408, 1, 0, 0, 0, 2413, 2410, 1, 0, 0, 0, 2414, 373, 1, 0, 0, 0, 2415, 2416, 3, 384, 192, 0, 2416, 2417, 3, 376, 188, 0, 2417, 375, 1, 0, 0, 0, 2418, 2419, 5, 538, 0, 0, 2419, 377, 1, 0, 0, 0, 2420, 2421, 5, 539, 0, 0, 2421, 379, 1, 0, 0, 0, 2422, 2423, 7, 38, 0, 0, 2423, 381, 1, 0, 0, 0, 2424, 2425, 7, 39, 0, 0, 2425, 383, 1, 0, 0, 0, 2426, 2427, 7, 40, 0, 0, 2427, 385, 1, 0, 0, 0, 2428, 2429, 7, 41, 0, 0, 2429, 387, 1, 0, 0, 0, 2430, 2431, 7, 42, 0, 0, 2431, 389, 1, 0, 0, 0, 2432, 2433, 7, 43, 0, 0, 2433, 391, 1, 0, 0, 0, 2434, 2435, 7, 44, 0, 0, 2435, 393, 1, 0, 0, 0, 2436, 2437, 7, 45, 0, 0, 2437, 395, 1, 0, 0, 0, 2438, 2439, 7, 46, 0, 0, 2439, 397, 1, 0, 0, 0, 296, 401, 408, 411, 425, 443, 447, 456, 461, 468, 479, 488, 500, 503, 510, 513, 521, 525, 530, 533, 540, 548, 552, 564, 572, 576, 608, 611, 616, 620, 624, 628, 637, 642, 646, 650, 655, 658, 662, 667, 673, 678, 683, 687, 691, 695, 705, 713, 717, 721, 725, 729, 733, 737, 741, 745, 747, 757, 765, 789, 803, 808, 812, 818, 821, 824, 831, 834, 843, 855, 879, 891, 896, 900, 908, 912, 918, 928, 933, 939, 943, 947, 951, 960, 964, 971, 974, 984, 992, 1000, 1004, 1019, 1038, 1049, 1053, 1060, 1065, 1071, 1075, 1082, 1086, 1090, 1094, 1102, 1106, 1111, 1117, 1123, 1126, 1130, 1141, 1150, 1157, 1168, 1180, 1195, 1198, 1202, 1205, 1207, 1212, 1216, 1219, 1223, 1232, 1241, 1251, 1256, 1267, 1270, 1273, 1276, 1279, 1285, 1289, 1297, 1300, 1305, 1308, 1312, 1315, 1317, 1331, 1342, 1347, 1355, 1358, 1361, 1366, 1368, 1370, 1375, 1378, 1382, 1386, 1395, 1406, 1433, 1455, 1468, 1480, 1493, 1505, 1517, 1523, 1550, 1558, 1562, 1565, 1568, 1575, 1578, 1581, 1584, 1587, 1590, 1595, 1598, 1607, 1612, 1616, 1621, 1627, 1632, 1636, 1655, 1663, 1671, 1675, 1679, 1689, 1715, 1723, 1735, 1757, 1759, 1770, 1773, 1775, 1779, 1783, 1790, 1799, 1805, 1818, 1825, 1830, 1836, 1843, 1850, 1852, 1862, 1865, 1877, 1882, 1885, 1891, 1893, 1899, 1920, 1922, 1930, 1937, 1940, 1944, 1951, 1955, 1964, 1968, 1984, 1993, 2021, 2030, 2039, 2045, 2049, 2059, 2065, 2071, 2075, 2081, 2085, 2091, 2093, 2096, 2099, 2105, 2111, 2114, 2118, 2126, 2130, 2134, 2139, 2143, 2148, 2153, 2157, 2165, 2170, 2174, 2181, 2186, 2194, 2198, 2201, 2205, 2214, 2217, 2228, 2234, 2252, 2257, 2262, 2269, 2271, 2276, 2283, 2285, 2290, 2297, 2299, 2304, 2311, 2313, 2320, 2339, 2346, 2349, 2354, 2360, 2368, 2384, 2393, 2403, 2410, 2413] \ No newline at end of file +[4, 1, 544, 2479, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 1, 0, 5, 0, 404, 8, 0, 10, 0, 12, 0, 407, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 413, 8, 1, 1, 1, 3, 1, 416, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 430, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 448, 8, 4, 1, 5, 1, 5, 3, 5, 452, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 461, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 466, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 471, 8, 8, 10, 8, 12, 8, 474, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 484, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 491, 8, 11, 10, 11, 12, 11, 494, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 505, 8, 12, 1, 12, 3, 12, 508, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 515, 8, 12, 1, 12, 3, 12, 518, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 526, 8, 12, 1, 12, 1, 12, 3, 12, 530, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 535, 8, 12, 1, 12, 3, 12, 538, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 545, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 553, 8, 15, 1, 16, 1, 16, 3, 16, 557, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 569, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 577, 8, 18, 1, 18, 1, 18, 3, 18, 581, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 613, 8, 18, 1, 19, 3, 19, 616, 8, 19, 1, 19, 4, 19, 619, 8, 19, 11, 19, 12, 19, 620, 1, 20, 1, 20, 3, 20, 625, 8, 20, 1, 21, 1, 21, 3, 21, 629, 8, 21, 1, 21, 1, 21, 3, 21, 633, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 640, 8, 21, 10, 21, 12, 21, 643, 9, 21, 1, 21, 1, 21, 3, 21, 647, 8, 21, 1, 21, 1, 21, 3, 21, 651, 8, 21, 1, 21, 1, 21, 3, 21, 655, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 660, 8, 21, 1, 21, 3, 21, 663, 8, 21, 1, 21, 1, 21, 3, 21, 667, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 672, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 678, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 683, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 688, 8, 24, 1, 24, 1, 24, 3, 24, 692, 8, 24, 1, 25, 1, 25, 3, 25, 696, 8, 25, 1, 26, 1, 26, 3, 26, 700, 8, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 708, 8, 28, 10, 28, 12, 28, 711, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 718, 8, 29, 1, 29, 1, 29, 3, 29, 722, 8, 29, 1, 29, 1, 29, 3, 29, 726, 8, 29, 1, 29, 1, 29, 3, 29, 730, 8, 29, 1, 29, 1, 29, 3, 29, 734, 8, 29, 1, 29, 1, 29, 3, 29, 738, 8, 29, 1, 29, 1, 29, 3, 29, 742, 8, 29, 1, 29, 1, 29, 3, 29, 746, 8, 29, 1, 29, 1, 29, 3, 29, 750, 8, 29, 3, 29, 752, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 762, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 770, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 792, 8, 35, 10, 35, 12, 35, 795, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 806, 8, 35, 10, 35, 12, 35, 809, 9, 35, 1, 35, 1, 35, 3, 35, 813, 8, 35, 1, 36, 1, 36, 3, 36, 817, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 823, 8, 36, 1, 36, 3, 36, 826, 8, 36, 1, 36, 3, 36, 829, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 836, 8, 37, 1, 37, 3, 37, 839, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 848, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 860, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 882, 8, 46, 10, 46, 12, 46, 885, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 894, 8, 47, 10, 47, 12, 47, 897, 9, 47, 1, 47, 1, 47, 3, 47, 901, 8, 47, 1, 48, 1, 48, 3, 48, 905, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 911, 8, 49, 10, 49, 12, 49, 914, 9, 49, 1, 49, 3, 49, 917, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 923, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 933, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 938, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 944, 8, 53, 1, 53, 1, 53, 3, 53, 948, 8, 53, 1, 53, 1, 53, 3, 53, 952, 8, 53, 1, 53, 1, 53, 3, 53, 956, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 965, 8, 54, 1, 54, 1, 54, 3, 54, 969, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 976, 8, 54, 1, 54, 3, 54, 979, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 987, 8, 55, 10, 55, 12, 55, 990, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 997, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1005, 8, 57, 1, 58, 1, 58, 3, 58, 1009, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1024, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1043, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1054, 8, 66, 1, 66, 1, 66, 3, 66, 1058, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1065, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1070, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1076, 8, 68, 1, 68, 1, 68, 3, 68, 1080, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1087, 8, 69, 1, 69, 1, 69, 3, 69, 1091, 8, 69, 1, 70, 1, 70, 3, 70, 1095, 8, 70, 1, 70, 1, 70, 3, 70, 1099, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1107, 8, 71, 1, 71, 1, 71, 3, 71, 1111, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1116, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1122, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1128, 8, 73, 1, 73, 3, 73, 1131, 8, 73, 1, 73, 1, 73, 3, 73, 1135, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1144, 8, 75, 10, 75, 12, 75, 1147, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1153, 8, 76, 10, 76, 12, 76, 1156, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1162, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1171, 8, 78, 11, 78, 12, 78, 1172, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 4, 79, 1183, 8, 79, 11, 79, 12, 79, 1184, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1200, 8, 80, 1, 80, 3, 80, 1203, 8, 80, 1, 80, 1, 80, 3, 80, 1207, 8, 80, 1, 80, 3, 80, 1210, 8, 80, 3, 80, 1212, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1217, 8, 80, 1, 80, 1, 80, 3, 80, 1221, 8, 80, 1, 80, 3, 80, 1224, 8, 80, 5, 80, 1226, 8, 80, 10, 80, 12, 80, 1229, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1235, 8, 81, 10, 81, 12, 81, 1238, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1244, 8, 82, 10, 82, 12, 82, 1247, 9, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1254, 8, 83, 10, 83, 12, 83, 1257, 9, 83, 1, 83, 1, 83, 3, 83, 1261, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 1272, 8, 85, 1, 85, 3, 85, 1275, 8, 85, 1, 85, 3, 85, 1278, 8, 85, 1, 85, 3, 85, 1281, 8, 85, 1, 85, 3, 85, 1284, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1290, 8, 85, 1, 86, 1, 86, 3, 86, 1294, 8, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 1300, 8, 86, 10, 86, 12, 86, 1303, 9, 86, 3, 86, 1305, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1310, 8, 87, 1, 87, 3, 87, 1313, 8, 87, 1, 87, 1, 87, 3, 87, 1317, 8, 87, 1, 87, 3, 87, 1320, 8, 87, 3, 87, 1322, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1329, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1336, 8, 88, 3, 88, 1338, 8, 88, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 1347, 8, 90, 10, 90, 12, 90, 1350, 9, 90, 1, 90, 1, 90, 3, 90, 1354, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1362, 8, 90, 1, 90, 3, 90, 1365, 8, 90, 1, 90, 3, 90, 1368, 8, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1373, 8, 90, 5, 90, 1375, 8, 90, 10, 90, 12, 90, 1378, 9, 90, 1, 91, 1, 91, 3, 91, 1382, 8, 91, 1, 92, 3, 92, 1385, 8, 92, 1, 92, 1, 92, 3, 92, 1389, 8, 92, 1, 92, 1, 92, 3, 92, 1393, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 1402, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 1413, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 1438, 8, 97, 10, 97, 12, 97, 1441, 9, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1462, 8, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 1475, 8, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1485, 8, 104, 10, 104, 12, 104, 1488, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1498, 8, 105, 10, 105, 12, 105, 1501, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1510, 8, 105, 10, 105, 12, 105, 1513, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1522, 8, 105, 10, 105, 12, 105, 1525, 9, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1530, 8, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 1555, 8, 112, 10, 112, 12, 112, 1558, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 3, 114, 1565, 8, 114, 1, 114, 1, 114, 3, 114, 1569, 8, 114, 1, 114, 3, 114, 1572, 8, 114, 1, 114, 3, 114, 1575, 8, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 3, 115, 1582, 8, 115, 1, 115, 3, 115, 1585, 8, 115, 1, 115, 3, 115, 1588, 8, 115, 1, 115, 3, 115, 1591, 8, 115, 1, 115, 3, 115, 1594, 8, 115, 1, 115, 3, 115, 1597, 8, 115, 1, 115, 1, 115, 1, 115, 3, 115, 1602, 8, 115, 1, 115, 3, 115, 1605, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1612, 8, 116, 10, 116, 12, 116, 1615, 9, 116, 1, 117, 1, 117, 3, 117, 1619, 8, 117, 1, 117, 3, 117, 1622, 8, 117, 1, 117, 1, 117, 3, 117, 1626, 8, 117, 1, 118, 1, 118, 1, 118, 3, 118, 1631, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1637, 8, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1642, 8, 119, 5, 119, 1644, 8, 119, 10, 119, 12, 119, 1647, 9, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 1665, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1671, 8, 121, 10, 121, 12, 121, 1674, 9, 121, 1, 122, 1, 122, 1, 122, 4, 122, 1679, 8, 122, 11, 122, 12, 122, 1680, 1, 122, 1, 122, 3, 122, 1685, 8, 122, 1, 123, 1, 123, 3, 123, 1689, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1699, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1725, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 1731, 8, 126, 10, 126, 12, 126, 1734, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1751, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1764, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1772, 8, 130, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1789, 8, 133, 3, 133, 1791, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1802, 8, 133, 1, 133, 5, 133, 1805, 8, 133, 10, 133, 12, 133, 1808, 9, 133, 1, 134, 3, 134, 1811, 8, 134, 1, 134, 1, 134, 3, 134, 1815, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1822, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1829, 8, 134, 10, 134, 12, 134, 1832, 9, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1837, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1850, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1857, 8, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1862, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1868, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1875, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1882, 8, 134, 3, 134, 1884, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1894, 8, 135, 1, 136, 3, 136, 1897, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1907, 8, 136, 10, 136, 12, 136, 1910, 9, 136, 1, 136, 1, 136, 3, 136, 1914, 8, 136, 1, 136, 3, 136, 1917, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1923, 8, 136, 3, 136, 1925, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 1931, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 1952, 8, 137, 10, 137, 12, 137, 1955, 9, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 1962, 8, 138, 1, 138, 1, 138, 1, 138, 5, 138, 1967, 8, 138, 10, 138, 12, 138, 1970, 9, 138, 3, 138, 1972, 8, 138, 1, 138, 1, 138, 3, 138, 1976, 8, 138, 1, 139, 1, 139, 1, 139, 4, 139, 1981, 8, 139, 11, 139, 12, 139, 1982, 1, 139, 1, 139, 3, 139, 1987, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 4, 139, 1994, 8, 139, 11, 139, 12, 139, 1995, 1, 139, 1, 139, 3, 139, 2000, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2016, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2025, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2060, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 2067, 8, 139, 10, 139, 12, 139, 2070, 9, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2078, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 2084, 8, 142, 1, 143, 1, 143, 3, 143, 2088, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2098, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2104, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2110, 8, 145, 1, 145, 1, 145, 3, 145, 2114, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2120, 8, 145, 1, 145, 1, 145, 3, 145, 2124, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2130, 8, 146, 3, 146, 2132, 8, 146, 1, 146, 3, 146, 2135, 8, 146, 1, 146, 3, 146, 2138, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2144, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2150, 8, 146, 1, 147, 3, 147, 2153, 8, 147, 1, 147, 1, 147, 3, 147, 2157, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 5, 147, 2163, 8, 147, 10, 147, 12, 147, 2166, 9, 147, 1, 147, 3, 147, 2169, 8, 147, 5, 147, 2171, 8, 147, 10, 147, 12, 147, 2174, 9, 147, 1, 147, 1, 147, 3, 147, 2178, 8, 147, 1, 147, 1, 147, 3, 147, 2182, 8, 147, 1, 148, 5, 148, 2185, 8, 148, 10, 148, 12, 148, 2188, 9, 148, 1, 148, 1, 148, 3, 148, 2192, 8, 148, 1, 148, 1, 148, 3, 148, 2196, 8, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 151, 1, 151, 3, 151, 2204, 8, 151, 1, 152, 1, 152, 1, 152, 3, 152, 2209, 8, 152, 1, 153, 1, 153, 3, 153, 2213, 8, 153, 1, 154, 1, 154, 1, 154, 4, 154, 2218, 8, 154, 11, 154, 12, 154, 2219, 1, 155, 1, 155, 1, 155, 3, 155, 2225, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 3, 157, 2233, 8, 157, 1, 157, 1, 157, 3, 157, 2237, 8, 157, 1, 158, 3, 158, 2240, 8, 158, 1, 158, 1, 158, 3, 158, 2244, 8, 158, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 4, 160, 2251, 8, 160, 11, 160, 12, 160, 2252, 1, 160, 3, 160, 2256, 8, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 5, 162, 2265, 8, 162, 10, 162, 12, 162, 2268, 9, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2273, 8, 163, 1, 164, 1, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2291, 8, 169, 1, 170, 1, 170, 1, 170, 3, 170, 2296, 8, 170, 1, 171, 1, 171, 1, 171, 3, 171, 2301, 8, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2308, 8, 171, 3, 171, 2310, 8, 171, 1, 172, 1, 172, 1, 172, 3, 172, 2315, 8, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2322, 8, 172, 3, 172, 2324, 8, 172, 1, 173, 1, 173, 1, 173, 3, 173, 2329, 8, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2336, 8, 173, 3, 173, 2338, 8, 173, 1, 174, 1, 174, 1, 174, 3, 174, 2343, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2350, 8, 174, 3, 174, 2352, 8, 174, 1, 175, 1, 175, 1, 175, 5, 175, 2357, 8, 175, 10, 175, 12, 175, 2360, 9, 175, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 2376, 8, 179, 10, 179, 12, 179, 2379, 9, 179, 1, 179, 1, 179, 1, 180, 1, 180, 3, 180, 2385, 8, 180, 1, 180, 3, 180, 2388, 8, 180, 1, 181, 1, 181, 1, 181, 3, 181, 2393, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2399, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2407, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2423, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2432, 8, 185, 1, 186, 1, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2442, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2449, 8, 188, 1, 188, 3, 188, 2452, 8, 188, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 2358, 5, 160, 180, 266, 274, 278, 201, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 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, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 0, 48, 2, 0, 109, 109, 453, 453, 3, 0, 45, 45, 128, 128, 190, 190, 4, 0, 42, 42, 90, 90, 425, 425, 467, 467, 2, 0, 444, 444, 450, 450, 2, 0, 152, 152, 171, 171, 2, 0, 440, 440, 492, 492, 2, 0, 485, 488, 490, 490, 3, 0, 32, 32, 91, 91, 246, 246, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 179, 180, 346, 346, 362, 362, 380, 380, 383, 383, 389, 389, 419, 420, 2, 0, 436, 436, 438, 438, 4, 0, 101, 102, 115, 115, 144, 144, 248, 248, 2, 0, 13, 13, 233, 233, 2, 0, 458, 458, 465, 465, 3, 0, 5, 5, 272, 272, 447, 447, 3, 0, 268, 268, 458, 458, 465, 465, 3, 0, 428, 428, 461, 461, 480, 480, 3, 0, 332, 332, 468, 468, 484, 484, 2, 0, 443, 443, 493, 493, 2, 0, 184, 184, 267, 267, 3, 0, 130, 130, 181, 181, 405, 405, 4, 0, 153, 153, 175, 175, 203, 203, 319, 319, 3, 0, 448, 448, 462, 462, 502, 502, 4, 0, 252, 252, 449, 449, 497, 499, 501, 501, 2, 0, 74, 74, 322, 322, 3, 0, 462, 462, 495, 495, 502, 502, 2, 0, 442, 442, 453, 453, 2, 0, 460, 460, 470, 470, 2, 0, 294, 294, 324, 324, 4, 0, 140, 140, 246, 246, 399, 399, 407, 407, 2, 0, 19, 19, 371, 371, 2, 0, 5, 5, 11, 11, 2, 0, 512, 512, 532, 533, 4, 0, 455, 455, 530, 530, 534, 534, 537, 537, 2, 0, 532, 533, 535, 535, 1, 0, 532, 533, 1, 0, 541, 542, 2, 0, 541, 541, 544, 544, 4, 0, 455, 455, 530, 530, 532, 534, 536, 537, 3, 0, 243, 243, 511, 512, 532, 533, 2, 0, 140, 140, 399, 399, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 166, 166, 224, 224, 231, 231, 336, 336, 439, 439, 473, 473, 475, 475, 491, 491, 505, 505, 15, 0, 97, 97, 166, 166, 224, 224, 231, 231, 336, 336, 430, 430, 439, 439, 445, 445, 451, 452, 457, 457, 463, 463, 473, 478, 491, 491, 494, 494, 505, 506, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 202, 202, 209, 210, 391, 391, 416, 416, 530, 530, 3, 0, 78, 78, 84, 85, 209, 210, 2, 0, 91, 91, 380, 381, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 161, 161, 166, 166, 168, 168, 188, 189, 191, 196, 199, 199, 201, 201, 203, 203, 207, 207, 211, 211, 216, 216, 222, 222, 224, 225, 231, 231, 245, 245, 247, 247, 266, 266, 278, 278, 283, 283, 285, 285, 295, 295, 319, 319, 323, 325, 336, 336, 359, 360, 366, 366, 369, 369, 382, 382, 397, 397, 400, 401, 411, 411, 422, 423, 439, 439, 472, 472, 491, 491, 505, 505, 1, 0, 440, 507, 2719, 0, 405, 1, 0, 0, 0, 2, 415, 1, 0, 0, 0, 4, 429, 1, 0, 0, 0, 6, 431, 1, 0, 0, 0, 8, 447, 1, 0, 0, 0, 10, 451, 1, 0, 0, 0, 12, 453, 1, 0, 0, 0, 14, 456, 1, 0, 0, 0, 16, 467, 1, 0, 0, 0, 18, 475, 1, 0, 0, 0, 20, 483, 1, 0, 0, 0, 22, 485, 1, 0, 0, 0, 24, 537, 1, 0, 0, 0, 26, 539, 1, 0, 0, 0, 28, 546, 1, 0, 0, 0, 30, 550, 1, 0, 0, 0, 32, 554, 1, 0, 0, 0, 34, 558, 1, 0, 0, 0, 36, 612, 1, 0, 0, 0, 38, 618, 1, 0, 0, 0, 40, 624, 1, 0, 0, 0, 42, 626, 1, 0, 0, 0, 44, 668, 1, 0, 0, 0, 46, 682, 1, 0, 0, 0, 48, 684, 1, 0, 0, 0, 50, 695, 1, 0, 0, 0, 52, 699, 1, 0, 0, 0, 54, 701, 1, 0, 0, 0, 56, 703, 1, 0, 0, 0, 58, 751, 1, 0, 0, 0, 60, 753, 1, 0, 0, 0, 62, 757, 1, 0, 0, 0, 64, 765, 1, 0, 0, 0, 66, 773, 1, 0, 0, 0, 68, 777, 1, 0, 0, 0, 70, 812, 1, 0, 0, 0, 72, 828, 1, 0, 0, 0, 74, 830, 1, 0, 0, 0, 76, 840, 1, 0, 0, 0, 78, 842, 1, 0, 0, 0, 80, 849, 1, 0, 0, 0, 82, 851, 1, 0, 0, 0, 84, 859, 1, 0, 0, 0, 86, 867, 1, 0, 0, 0, 88, 869, 1, 0, 0, 0, 90, 873, 1, 0, 0, 0, 92, 877, 1, 0, 0, 0, 94, 900, 1, 0, 0, 0, 96, 904, 1, 0, 0, 0, 98, 906, 1, 0, 0, 0, 100, 922, 1, 0, 0, 0, 102, 924, 1, 0, 0, 0, 104, 929, 1, 0, 0, 0, 106, 941, 1, 0, 0, 0, 108, 960, 1, 0, 0, 0, 110, 980, 1, 0, 0, 0, 112, 991, 1, 0, 0, 0, 114, 993, 1, 0, 0, 0, 116, 1006, 1, 0, 0, 0, 118, 1013, 1, 0, 0, 0, 120, 1016, 1, 0, 0, 0, 122, 1025, 1, 0, 0, 0, 124, 1029, 1, 0, 0, 0, 126, 1033, 1, 0, 0, 0, 128, 1036, 1, 0, 0, 0, 130, 1044, 1, 0, 0, 0, 132, 1049, 1, 0, 0, 0, 134, 1066, 1, 0, 0, 0, 136, 1073, 1, 0, 0, 0, 138, 1083, 1, 0, 0, 0, 140, 1092, 1, 0, 0, 0, 142, 1102, 1, 0, 0, 0, 144, 1121, 1, 0, 0, 0, 146, 1123, 1, 0, 0, 0, 148, 1136, 1, 0, 0, 0, 150, 1139, 1, 0, 0, 0, 152, 1148, 1, 0, 0, 0, 154, 1161, 1, 0, 0, 0, 156, 1163, 1, 0, 0, 0, 158, 1176, 1, 0, 0, 0, 160, 1211, 1, 0, 0, 0, 162, 1230, 1, 0, 0, 0, 164, 1239, 1, 0, 0, 0, 166, 1248, 1, 0, 0, 0, 168, 1267, 1, 0, 0, 0, 170, 1289, 1, 0, 0, 0, 172, 1291, 1, 0, 0, 0, 174, 1321, 1, 0, 0, 0, 176, 1337, 1, 0, 0, 0, 178, 1339, 1, 0, 0, 0, 180, 1353, 1, 0, 0, 0, 182, 1379, 1, 0, 0, 0, 184, 1412, 1, 0, 0, 0, 186, 1414, 1, 0, 0, 0, 188, 1420, 1, 0, 0, 0, 190, 1422, 1, 0, 0, 0, 192, 1427, 1, 0, 0, 0, 194, 1432, 1, 0, 0, 0, 196, 1444, 1, 0, 0, 0, 198, 1461, 1, 0, 0, 0, 200, 1463, 1, 0, 0, 0, 202, 1465, 1, 0, 0, 0, 204, 1474, 1, 0, 0, 0, 206, 1476, 1, 0, 0, 0, 208, 1479, 1, 0, 0, 0, 210, 1529, 1, 0, 0, 0, 212, 1531, 1, 0, 0, 0, 214, 1534, 1, 0, 0, 0, 216, 1536, 1, 0, 0, 0, 218, 1543, 1, 0, 0, 0, 220, 1545, 1, 0, 0, 0, 222, 1547, 1, 0, 0, 0, 224, 1550, 1, 0, 0, 0, 226, 1559, 1, 0, 0, 0, 228, 1564, 1, 0, 0, 0, 230, 1578, 1, 0, 0, 0, 232, 1606, 1, 0, 0, 0, 234, 1618, 1, 0, 0, 0, 236, 1627, 1, 0, 0, 0, 238, 1632, 1, 0, 0, 0, 240, 1664, 1, 0, 0, 0, 242, 1666, 1, 0, 0, 0, 244, 1675, 1, 0, 0, 0, 246, 1686, 1, 0, 0, 0, 248, 1698, 1, 0, 0, 0, 250, 1724, 1, 0, 0, 0, 252, 1726, 1, 0, 0, 0, 254, 1750, 1, 0, 0, 0, 256, 1752, 1, 0, 0, 0, 258, 1763, 1, 0, 0, 0, 260, 1771, 1, 0, 0, 0, 262, 1773, 1, 0, 0, 0, 264, 1776, 1, 0, 0, 0, 266, 1790, 1, 0, 0, 0, 268, 1883, 1, 0, 0, 0, 270, 1893, 1, 0, 0, 0, 272, 1924, 1, 0, 0, 0, 274, 1930, 1, 0, 0, 0, 276, 1975, 1, 0, 0, 0, 278, 2059, 1, 0, 0, 0, 280, 2071, 1, 0, 0, 0, 282, 2077, 1, 0, 0, 0, 284, 2083, 1, 0, 0, 0, 286, 2087, 1, 0, 0, 0, 288, 2097, 1, 0, 0, 0, 290, 2099, 1, 0, 0, 0, 292, 2125, 1, 0, 0, 0, 294, 2172, 1, 0, 0, 0, 296, 2186, 1, 0, 0, 0, 298, 2197, 1, 0, 0, 0, 300, 2199, 1, 0, 0, 0, 302, 2203, 1, 0, 0, 0, 304, 2205, 1, 0, 0, 0, 306, 2210, 1, 0, 0, 0, 308, 2217, 1, 0, 0, 0, 310, 2221, 1, 0, 0, 0, 312, 2226, 1, 0, 0, 0, 314, 2236, 1, 0, 0, 0, 316, 2239, 1, 0, 0, 0, 318, 2245, 1, 0, 0, 0, 320, 2255, 1, 0, 0, 0, 322, 2257, 1, 0, 0, 0, 324, 2261, 1, 0, 0, 0, 326, 2272, 1, 0, 0, 0, 328, 2274, 1, 0, 0, 0, 330, 2276, 1, 0, 0, 0, 332, 2278, 1, 0, 0, 0, 334, 2283, 1, 0, 0, 0, 336, 2285, 1, 0, 0, 0, 338, 2287, 1, 0, 0, 0, 340, 2292, 1, 0, 0, 0, 342, 2309, 1, 0, 0, 0, 344, 2323, 1, 0, 0, 0, 346, 2337, 1, 0, 0, 0, 348, 2351, 1, 0, 0, 0, 350, 2353, 1, 0, 0, 0, 352, 2361, 1, 0, 0, 0, 354, 2364, 1, 0, 0, 0, 356, 2368, 1, 0, 0, 0, 358, 2371, 1, 0, 0, 0, 360, 2382, 1, 0, 0, 0, 362, 2392, 1, 0, 0, 0, 364, 2398, 1, 0, 0, 0, 366, 2406, 1, 0, 0, 0, 368, 2422, 1, 0, 0, 0, 370, 2431, 1, 0, 0, 0, 372, 2433, 1, 0, 0, 0, 374, 2435, 1, 0, 0, 0, 376, 2451, 1, 0, 0, 0, 378, 2453, 1, 0, 0, 0, 380, 2456, 1, 0, 0, 0, 382, 2458, 1, 0, 0, 0, 384, 2460, 1, 0, 0, 0, 386, 2462, 1, 0, 0, 0, 388, 2464, 1, 0, 0, 0, 390, 2466, 1, 0, 0, 0, 392, 2468, 1, 0, 0, 0, 394, 2470, 1, 0, 0, 0, 396, 2472, 1, 0, 0, 0, 398, 2474, 1, 0, 0, 0, 400, 2476, 1, 0, 0, 0, 402, 404, 3, 2, 1, 0, 403, 402, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 408, 1, 0, 0, 0, 407, 405, 1, 0, 0, 0, 408, 409, 5, 0, 0, 1, 409, 1, 1, 0, 0, 0, 410, 412, 3, 4, 2, 0, 411, 413, 5, 524, 0, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 416, 1, 0, 0, 0, 414, 416, 3, 6, 3, 0, 415, 410, 1, 0, 0, 0, 415, 414, 1, 0, 0, 0, 416, 3, 1, 0, 0, 0, 417, 430, 3, 8, 4, 0, 418, 430, 3, 10, 5, 0, 419, 430, 3, 12, 6, 0, 420, 430, 3, 14, 7, 0, 421, 430, 3, 20, 10, 0, 422, 430, 3, 24, 12, 0, 423, 430, 3, 26, 13, 0, 424, 430, 3, 28, 14, 0, 425, 430, 3, 30, 15, 0, 426, 430, 3, 32, 16, 0, 427, 430, 3, 34, 17, 0, 428, 430, 3, 36, 18, 0, 429, 417, 1, 0, 0, 0, 429, 418, 1, 0, 0, 0, 429, 419, 1, 0, 0, 0, 429, 420, 1, 0, 0, 0, 429, 421, 1, 0, 0, 0, 429, 422, 1, 0, 0, 0, 429, 423, 1, 0, 0, 0, 429, 424, 1, 0, 0, 0, 429, 425, 1, 0, 0, 0, 429, 426, 1, 0, 0, 0, 429, 427, 1, 0, 0, 0, 429, 428, 1, 0, 0, 0, 430, 5, 1, 0, 0, 0, 431, 432, 5, 524, 0, 0, 432, 7, 1, 0, 0, 0, 433, 448, 3, 40, 20, 0, 434, 448, 3, 104, 52, 0, 435, 448, 3, 106, 53, 0, 436, 448, 3, 108, 54, 0, 437, 448, 3, 102, 51, 0, 438, 448, 3, 114, 57, 0, 439, 448, 3, 128, 64, 0, 440, 448, 3, 130, 65, 0, 441, 448, 3, 132, 66, 0, 442, 448, 3, 134, 67, 0, 443, 448, 3, 136, 68, 0, 444, 448, 3, 138, 69, 0, 445, 448, 3, 140, 70, 0, 446, 448, 3, 142, 71, 0, 447, 433, 1, 0, 0, 0, 447, 434, 1, 0, 0, 0, 447, 435, 1, 0, 0, 0, 447, 436, 1, 0, 0, 0, 447, 437, 1, 0, 0, 0, 447, 438, 1, 0, 0, 0, 447, 439, 1, 0, 0, 0, 447, 440, 1, 0, 0, 0, 447, 441, 1, 0, 0, 0, 447, 442, 1, 0, 0, 0, 447, 443, 1, 0, 0, 0, 447, 444, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 447, 446, 1, 0, 0, 0, 448, 9, 1, 0, 0, 0, 449, 452, 3, 160, 80, 0, 450, 452, 3, 144, 72, 0, 451, 449, 1, 0, 0, 0, 451, 450, 1, 0, 0, 0, 452, 11, 1, 0, 0, 0, 453, 454, 7, 0, 0, 0, 454, 455, 3, 344, 172, 0, 455, 13, 1, 0, 0, 0, 456, 460, 5, 135, 0, 0, 457, 461, 3, 16, 8, 0, 458, 459, 5, 482, 0, 0, 459, 461, 5, 147, 0, 0, 460, 457, 1, 0, 0, 0, 460, 458, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 465, 1, 0, 0, 0, 462, 466, 3, 10, 5, 0, 463, 466, 3, 146, 73, 0, 464, 466, 3, 158, 79, 0, 465, 462, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 465, 464, 1, 0, 0, 0, 466, 15, 1, 0, 0, 0, 467, 472, 3, 18, 9, 0, 468, 469, 5, 523, 0, 0, 469, 471, 3, 18, 9, 0, 470, 468, 1, 0, 0, 0, 471, 474, 1, 0, 0, 0, 472, 470, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 17, 1, 0, 0, 0, 474, 472, 1, 0, 0, 0, 475, 476, 7, 1, 0, 0, 476, 19, 1, 0, 0, 0, 477, 478, 5, 413, 0, 0, 478, 479, 5, 444, 0, 0, 479, 484, 3, 334, 167, 0, 480, 481, 5, 413, 0, 0, 481, 484, 3, 338, 169, 0, 482, 484, 3, 22, 11, 0, 483, 477, 1, 0, 0, 0, 483, 480, 1, 0, 0, 0, 483, 482, 1, 0, 0, 0, 484, 21, 1, 0, 0, 0, 485, 486, 5, 413, 0, 0, 486, 487, 5, 229, 0, 0, 487, 492, 3, 350, 175, 0, 488, 489, 5, 523, 0, 0, 489, 491, 3, 350, 175, 0, 490, 488, 1, 0, 0, 0, 491, 494, 1, 0, 0, 0, 492, 490, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 23, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 495, 496, 5, 343, 0, 0, 496, 538, 7, 2, 0, 0, 497, 498, 5, 343, 0, 0, 498, 499, 5, 76, 0, 0, 499, 538, 7, 3, 0, 0, 500, 501, 5, 343, 0, 0, 501, 504, 5, 376, 0, 0, 502, 503, 7, 4, 0, 0, 503, 505, 3, 338, 169, 0, 504, 502, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 507, 1, 0, 0, 0, 506, 508, 3, 272, 136, 0, 507, 506, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 538, 1, 0, 0, 0, 509, 510, 5, 343, 0, 0, 510, 511, 5, 58, 0, 0, 511, 514, 7, 4, 0, 0, 512, 515, 3, 346, 173, 0, 513, 515, 3, 344, 172, 0, 514, 512, 1, 0, 0, 0, 514, 513, 1, 0, 0, 0, 515, 517, 1, 0, 0, 0, 516, 518, 3, 272, 136, 0, 517, 516, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 538, 1, 0, 0, 0, 519, 520, 5, 343, 0, 0, 520, 525, 5, 72, 0, 0, 521, 522, 5, 375, 0, 0, 522, 526, 3, 344, 172, 0, 523, 524, 5, 504, 0, 0, 524, 526, 3, 346, 173, 0, 525, 521, 1, 0, 0, 0, 525, 523, 1, 0, 0, 0, 526, 538, 1, 0, 0, 0, 527, 529, 5, 343, 0, 0, 528, 530, 5, 414, 0, 0, 529, 528, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 538, 5, 155, 0, 0, 532, 534, 5, 343, 0, 0, 533, 535, 5, 153, 0, 0, 534, 533, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 538, 5, 229, 0, 0, 537, 495, 1, 0, 0, 0, 537, 497, 1, 0, 0, 0, 537, 500, 1, 0, 0, 0, 537, 509, 1, 0, 0, 0, 537, 519, 1, 0, 0, 0, 537, 527, 1, 0, 0, 0, 537, 532, 1, 0, 0, 0, 538, 25, 1, 0, 0, 0, 539, 540, 5, 471, 0, 0, 540, 541, 5, 228, 0, 0, 541, 544, 3, 350, 175, 0, 542, 543, 5, 436, 0, 0, 543, 545, 3, 358, 179, 0, 544, 542, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 27, 1, 0, 0, 0, 546, 547, 5, 503, 0, 0, 547, 548, 5, 228, 0, 0, 548, 549, 3, 350, 175, 0, 549, 29, 1, 0, 0, 0, 550, 552, 5, 342, 0, 0, 551, 553, 3, 360, 180, 0, 552, 551, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 31, 1, 0, 0, 0, 554, 556, 5, 314, 0, 0, 555, 557, 3, 362, 181, 0, 556, 555, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 33, 1, 0, 0, 0, 558, 559, 7, 5, 0, 0, 559, 560, 5, 466, 0, 0, 560, 561, 3, 112, 56, 0, 561, 35, 1, 0, 0, 0, 562, 563, 5, 440, 0, 0, 563, 564, 5, 466, 0, 0, 564, 565, 5, 436, 0, 0, 565, 568, 3, 38, 19, 0, 566, 567, 5, 17, 0, 0, 567, 569, 3, 350, 175, 0, 568, 566, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 613, 1, 0, 0, 0, 570, 571, 5, 440, 0, 0, 571, 572, 5, 459, 0, 0, 572, 573, 5, 436, 0, 0, 573, 576, 3, 38, 19, 0, 574, 575, 5, 17, 0, 0, 575, 577, 3, 350, 175, 0, 576, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 580, 1, 0, 0, 0, 578, 579, 5, 313, 0, 0, 579, 581, 3, 350, 175, 0, 580, 578, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 613, 1, 0, 0, 0, 582, 583, 5, 440, 0, 0, 583, 584, 7, 6, 0, 0, 584, 585, 5, 436, 0, 0, 585, 586, 3, 38, 19, 0, 586, 587, 5, 313, 0, 0, 587, 588, 3, 350, 175, 0, 588, 613, 1, 0, 0, 0, 589, 590, 5, 440, 0, 0, 590, 591, 5, 489, 0, 0, 591, 613, 3, 38, 19, 0, 592, 593, 5, 440, 0, 0, 593, 594, 5, 456, 0, 0, 594, 595, 5, 459, 0, 0, 595, 596, 5, 436, 0, 0, 596, 597, 3, 38, 19, 0, 597, 598, 5, 313, 0, 0, 598, 599, 3, 350, 175, 0, 599, 600, 5, 469, 0, 0, 600, 601, 3, 350, 175, 0, 601, 613, 1, 0, 0, 0, 602, 603, 5, 440, 0, 0, 603, 604, 5, 446, 0, 0, 604, 605, 5, 459, 0, 0, 605, 606, 5, 436, 0, 0, 606, 607, 3, 38, 19, 0, 607, 608, 5, 147, 0, 0, 608, 609, 3, 350, 175, 0, 609, 610, 5, 17, 0, 0, 610, 611, 3, 350, 175, 0, 611, 613, 1, 0, 0, 0, 612, 562, 1, 0, 0, 0, 612, 570, 1, 0, 0, 0, 612, 582, 1, 0, 0, 0, 612, 589, 1, 0, 0, 0, 612, 592, 1, 0, 0, 0, 612, 602, 1, 0, 0, 0, 613, 37, 1, 0, 0, 0, 614, 616, 5, 537, 0, 0, 615, 614, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 619, 3, 350, 175, 0, 618, 615, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 39, 1, 0, 0, 0, 622, 625, 3, 42, 21, 0, 623, 625, 3, 44, 22, 0, 624, 622, 1, 0, 0, 0, 624, 623, 1, 0, 0, 0, 625, 41, 1, 0, 0, 0, 626, 628, 5, 72, 0, 0, 627, 629, 5, 500, 0, 0, 628, 627, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 632, 5, 375, 0, 0, 631, 633, 3, 354, 177, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 3, 342, 171, 0, 635, 636, 5, 519, 0, 0, 636, 641, 3, 46, 23, 0, 637, 638, 5, 523, 0, 0, 638, 640, 3, 46, 23, 0, 639, 637, 1, 0, 0, 0, 640, 643, 1, 0, 0, 0, 641, 639, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 646, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 644, 645, 5, 523, 0, 0, 645, 647, 3, 82, 41, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 650, 1, 0, 0, 0, 648, 649, 5, 523, 0, 0, 649, 651, 3, 84, 42, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 653, 5, 523, 0, 0, 653, 655, 3, 88, 44, 0, 654, 652, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 659, 5, 520, 0, 0, 657, 658, 5, 59, 0, 0, 658, 660, 5, 540, 0, 0, 659, 657, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 662, 1, 0, 0, 0, 661, 663, 3, 90, 45, 0, 662, 661, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 666, 3, 352, 176, 0, 665, 667, 3, 98, 49, 0, 666, 665, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 43, 1, 0, 0, 0, 668, 669, 5, 72, 0, 0, 669, 671, 5, 375, 0, 0, 670, 672, 3, 354, 177, 0, 671, 670, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 3, 342, 171, 0, 674, 677, 3, 352, 176, 0, 675, 676, 5, 17, 0, 0, 676, 678, 3, 160, 80, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 45, 1, 0, 0, 0, 679, 683, 3, 48, 24, 0, 680, 683, 3, 74, 37, 0, 681, 683, 3, 78, 39, 0, 682, 679, 1, 0, 0, 0, 682, 680, 1, 0, 0, 0, 682, 681, 1, 0, 0, 0, 683, 47, 1, 0, 0, 0, 684, 685, 3, 50, 25, 0, 685, 687, 3, 58, 29, 0, 686, 688, 3, 72, 36, 0, 687, 686, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 691, 1, 0, 0, 0, 689, 690, 5, 59, 0, 0, 690, 692, 5, 540, 0, 0, 691, 689, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 49, 1, 0, 0, 0, 693, 696, 3, 350, 175, 0, 694, 696, 3, 264, 132, 0, 695, 693, 1, 0, 0, 0, 695, 694, 1, 0, 0, 0, 696, 51, 1, 0, 0, 0, 697, 700, 3, 350, 175, 0, 698, 700, 4, 26, 0, 0, 699, 697, 1, 0, 0, 0, 699, 698, 1, 0, 0, 0, 700, 53, 1, 0, 0, 0, 701, 702, 3, 350, 175, 0, 702, 55, 1, 0, 0, 0, 703, 704, 5, 519, 0, 0, 704, 709, 3, 52, 26, 0, 705, 706, 5, 523, 0, 0, 706, 708, 3, 52, 26, 0, 707, 705, 1, 0, 0, 0, 708, 711, 1, 0, 0, 0, 709, 707, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 712, 1, 0, 0, 0, 711, 709, 1, 0, 0, 0, 712, 713, 5, 520, 0, 0, 713, 57, 1, 0, 0, 0, 714, 752, 7, 7, 0, 0, 715, 717, 7, 8, 0, 0, 716, 718, 3, 60, 30, 0, 717, 716, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 752, 1, 0, 0, 0, 719, 721, 5, 381, 0, 0, 720, 722, 3, 60, 30, 0, 721, 720, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 729, 1, 0, 0, 0, 723, 725, 7, 9, 0, 0, 724, 726, 5, 208, 0, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 5, 380, 0, 0, 728, 730, 5, 507, 0, 0, 729, 723, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 752, 1, 0, 0, 0, 731, 733, 7, 10, 0, 0, 732, 734, 3, 62, 31, 0, 733, 732, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 752, 1, 0, 0, 0, 735, 737, 7, 11, 0, 0, 736, 738, 3, 66, 33, 0, 737, 736, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 752, 1, 0, 0, 0, 739, 741, 5, 472, 0, 0, 740, 742, 3, 68, 34, 0, 741, 740, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 752, 1, 0, 0, 0, 743, 745, 5, 323, 0, 0, 744, 746, 3, 70, 35, 0, 745, 744, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 752, 1, 0, 0, 0, 747, 749, 5, 296, 0, 0, 748, 750, 3, 64, 32, 0, 749, 748, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 752, 1, 0, 0, 0, 751, 714, 1, 0, 0, 0, 751, 715, 1, 0, 0, 0, 751, 719, 1, 0, 0, 0, 751, 731, 1, 0, 0, 0, 751, 735, 1, 0, 0, 0, 751, 739, 1, 0, 0, 0, 751, 743, 1, 0, 0, 0, 751, 747, 1, 0, 0, 0, 752, 59, 1, 0, 0, 0, 753, 754, 5, 519, 0, 0, 754, 755, 3, 382, 191, 0, 755, 756, 5, 520, 0, 0, 756, 61, 1, 0, 0, 0, 757, 758, 5, 519, 0, 0, 758, 761, 3, 382, 191, 0, 759, 760, 5, 523, 0, 0, 760, 762, 3, 382, 191, 0, 761, 759, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 764, 5, 520, 0, 0, 764, 63, 1, 0, 0, 0, 765, 766, 5, 519, 0, 0, 766, 769, 3, 380, 190, 0, 767, 768, 5, 523, 0, 0, 768, 770, 3, 380, 190, 0, 769, 767, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 772, 5, 520, 0, 0, 772, 65, 1, 0, 0, 0, 773, 774, 5, 510, 0, 0, 774, 775, 3, 58, 29, 0, 775, 776, 5, 509, 0, 0, 776, 67, 1, 0, 0, 0, 777, 778, 5, 510, 0, 0, 778, 779, 3, 58, 29, 0, 779, 780, 5, 523, 0, 0, 780, 781, 3, 58, 29, 0, 781, 782, 1, 0, 0, 0, 782, 783, 5, 509, 0, 0, 783, 69, 1, 0, 0, 0, 784, 785, 5, 510, 0, 0, 785, 786, 3, 52, 26, 0, 786, 793, 3, 58, 29, 0, 787, 788, 5, 523, 0, 0, 788, 789, 3, 52, 26, 0, 789, 790, 3, 58, 29, 0, 790, 792, 1, 0, 0, 0, 791, 787, 1, 0, 0, 0, 792, 795, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 796, 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 796, 797, 5, 509, 0, 0, 797, 813, 1, 0, 0, 0, 798, 799, 5, 519, 0, 0, 799, 800, 3, 52, 26, 0, 800, 807, 3, 58, 29, 0, 801, 802, 5, 523, 0, 0, 802, 803, 3, 52, 26, 0, 803, 804, 3, 58, 29, 0, 804, 806, 1, 0, 0, 0, 805, 801, 1, 0, 0, 0, 806, 809, 1, 0, 0, 0, 807, 805, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 810, 1, 0, 0, 0, 809, 807, 1, 0, 0, 0, 810, 811, 5, 520, 0, 0, 811, 813, 1, 0, 0, 0, 812, 784, 1, 0, 0, 0, 812, 798, 1, 0, 0, 0, 813, 71, 1, 0, 0, 0, 814, 815, 5, 64, 0, 0, 815, 817, 3, 86, 43, 0, 816, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 819, 5, 290, 0, 0, 819, 822, 5, 469, 0, 0, 820, 821, 5, 243, 0, 0, 821, 823, 5, 125, 0, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 829, 1, 0, 0, 0, 824, 826, 5, 243, 0, 0, 825, 824, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 829, 5, 246, 0, 0, 828, 816, 1, 0, 0, 0, 828, 825, 1, 0, 0, 0, 829, 73, 1, 0, 0, 0, 830, 831, 3, 50, 25, 0, 831, 832, 3, 58, 29, 0, 832, 835, 5, 220, 0, 0, 833, 834, 5, 152, 0, 0, 834, 836, 3, 76, 38, 0, 835, 833, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 838, 1, 0, 0, 0, 837, 839, 5, 426, 0, 0, 838, 837, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 75, 1, 0, 0, 0, 840, 841, 5, 540, 0, 0, 841, 77, 1, 0, 0, 0, 842, 843, 3, 50, 25, 0, 843, 844, 5, 17, 0, 0, 844, 847, 3, 80, 40, 0, 845, 846, 5, 59, 0, 0, 846, 848, 5, 540, 0, 0, 847, 845, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 79, 1, 0, 0, 0, 849, 850, 3, 264, 132, 0, 850, 81, 1, 0, 0, 0, 851, 852, 5, 427, 0, 0, 852, 853, 5, 147, 0, 0, 853, 854, 3, 52, 26, 0, 854, 855, 5, 17, 0, 0, 855, 856, 3, 264, 132, 0, 856, 83, 1, 0, 0, 0, 857, 858, 5, 64, 0, 0, 858, 860, 3, 86, 43, 0, 859, 857, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 862, 5, 290, 0, 0, 862, 863, 5, 469, 0, 0, 863, 864, 3, 56, 28, 0, 864, 865, 5, 243, 0, 0, 865, 866, 5, 125, 0, 0, 866, 85, 1, 0, 0, 0, 867, 868, 3, 326, 163, 0, 868, 87, 1, 0, 0, 0, 869, 870, 5, 279, 0, 0, 870, 871, 5, 147, 0, 0, 871, 872, 5, 373, 0, 0, 872, 89, 1, 0, 0, 0, 873, 874, 5, 271, 0, 0, 874, 875, 5, 34, 0, 0, 875, 876, 3, 92, 46, 0, 876, 91, 1, 0, 0, 0, 877, 878, 5, 519, 0, 0, 878, 883, 3, 94, 47, 0, 879, 880, 5, 523, 0, 0, 880, 882, 3, 94, 47, 0, 881, 879, 1, 0, 0, 0, 882, 885, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 886, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 886, 887, 5, 520, 0, 0, 887, 93, 1, 0, 0, 0, 888, 901, 3, 52, 26, 0, 889, 890, 5, 519, 0, 0, 890, 895, 3, 96, 48, 0, 891, 892, 5, 523, 0, 0, 892, 894, 3, 96, 48, 0, 893, 891, 1, 0, 0, 0, 894, 897, 1, 0, 0, 0, 895, 893, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 898, 1, 0, 0, 0, 897, 895, 1, 0, 0, 0, 898, 899, 5, 520, 0, 0, 899, 901, 1, 0, 0, 0, 900, 888, 1, 0, 0, 0, 900, 889, 1, 0, 0, 0, 901, 95, 1, 0, 0, 0, 902, 905, 3, 302, 151, 0, 903, 905, 3, 376, 188, 0, 904, 902, 1, 0, 0, 0, 904, 903, 1, 0, 0, 0, 905, 97, 1, 0, 0, 0, 906, 907, 5, 204, 0, 0, 907, 916, 3, 344, 172, 0, 908, 912, 5, 519, 0, 0, 909, 911, 3, 100, 50, 0, 910, 909, 1, 0, 0, 0, 911, 914, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 915, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 915, 917, 5, 520, 0, 0, 916, 908, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 99, 1, 0, 0, 0, 918, 919, 7, 12, 0, 0, 919, 923, 7, 13, 0, 0, 920, 921, 7, 14, 0, 0, 921, 923, 7, 15, 0, 0, 922, 918, 1, 0, 0, 0, 922, 920, 1, 0, 0, 0, 923, 101, 1, 0, 0, 0, 924, 925, 5, 72, 0, 0, 925, 926, 5, 444, 0, 0, 926, 927, 3, 336, 168, 0, 927, 928, 3, 352, 176, 0, 928, 103, 1, 0, 0, 0, 929, 930, 5, 72, 0, 0, 930, 932, 5, 450, 0, 0, 931, 933, 3, 354, 177, 0, 932, 931, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 937, 3, 340, 170, 0, 935, 936, 5, 59, 0, 0, 936, 938, 5, 540, 0, 0, 937, 935, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 940, 3, 352, 176, 0, 940, 105, 1, 0, 0, 0, 941, 943, 5, 72, 0, 0, 942, 944, 5, 500, 0, 0, 943, 942, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 947, 5, 504, 0, 0, 946, 948, 3, 354, 177, 0, 947, 946, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 951, 3, 348, 174, 0, 950, 952, 3, 56, 28, 0, 951, 950, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 955, 1, 0, 0, 0, 953, 954, 5, 59, 0, 0, 954, 956, 5, 540, 0, 0, 955, 953, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 958, 5, 17, 0, 0, 958, 959, 3, 160, 80, 0, 959, 107, 1, 0, 0, 0, 960, 964, 5, 72, 0, 0, 961, 965, 5, 500, 0, 0, 962, 963, 5, 500, 0, 0, 963, 965, 5, 372, 0, 0, 964, 961, 1, 0, 0, 0, 964, 962, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 968, 5, 154, 0, 0, 967, 969, 3, 354, 177, 0, 968, 967, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 971, 3, 280, 140, 0, 971, 972, 5, 17, 0, 0, 972, 975, 3, 326, 163, 0, 973, 974, 5, 197, 0, 0, 974, 976, 7, 16, 0, 0, 975, 973, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 978, 1, 0, 0, 0, 977, 979, 3, 110, 55, 0, 978, 977, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 109, 1, 0, 0, 0, 980, 981, 5, 415, 0, 0, 981, 982, 5, 466, 0, 0, 982, 988, 3, 112, 56, 0, 983, 984, 5, 523, 0, 0, 984, 985, 5, 466, 0, 0, 985, 987, 3, 112, 56, 0, 986, 983, 1, 0, 0, 0, 987, 990, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 111, 1, 0, 0, 0, 990, 988, 1, 0, 0, 0, 991, 992, 5, 540, 0, 0, 992, 113, 1, 0, 0, 0, 993, 994, 5, 8, 0, 0, 994, 996, 5, 375, 0, 0, 995, 997, 3, 356, 178, 0, 996, 995, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 1004, 3, 344, 172, 0, 999, 1005, 3, 116, 58, 0, 1000, 1005, 3, 118, 59, 0, 1001, 1005, 3, 120, 60, 0, 1002, 1005, 3, 122, 61, 0, 1003, 1005, 3, 124, 62, 0, 1004, 999, 1, 0, 0, 0, 1004, 1000, 1, 0, 0, 0, 1004, 1001, 1, 0, 0, 0, 1004, 1002, 1, 0, 0, 0, 1004, 1003, 1, 0, 0, 0, 1005, 115, 1, 0, 0, 0, 1006, 1008, 5, 313, 0, 0, 1007, 1009, 3, 350, 175, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1011, 5, 390, 0, 0, 1011, 1012, 3, 350, 175, 0, 1012, 117, 1, 0, 0, 0, 1013, 1014, 5, 342, 0, 0, 1014, 1015, 3, 358, 179, 0, 1015, 119, 1, 0, 0, 0, 1016, 1017, 5, 440, 0, 0, 1017, 1018, 5, 64, 0, 0, 1018, 1019, 3, 86, 43, 0, 1019, 1020, 5, 290, 0, 0, 1020, 1021, 5, 469, 0, 0, 1021, 1023, 3, 56, 28, 0, 1022, 1024, 3, 126, 63, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 121, 1, 0, 0, 0, 1025, 1026, 5, 116, 0, 0, 1026, 1027, 5, 64, 0, 0, 1027, 1028, 3, 86, 43, 0, 1028, 123, 1, 0, 0, 0, 1029, 1030, 5, 440, 0, 0, 1030, 1031, 5, 406, 0, 0, 1031, 1032, 3, 56, 28, 0, 1032, 125, 1, 0, 0, 0, 1033, 1034, 5, 243, 0, 0, 1034, 1035, 5, 125, 0, 0, 1035, 127, 1, 0, 0, 0, 1036, 1037, 5, 8, 0, 0, 1037, 1038, 5, 504, 0, 0, 1038, 1042, 3, 346, 173, 0, 1039, 1043, 3, 116, 58, 0, 1040, 1041, 5, 17, 0, 0, 1041, 1043, 3, 160, 80, 0, 1042, 1039, 1, 0, 0, 0, 1042, 1040, 1, 0, 0, 0, 1043, 129, 1, 0, 0, 0, 1044, 1045, 5, 8, 0, 0, 1045, 1046, 5, 450, 0, 0, 1046, 1047, 3, 338, 169, 0, 1047, 1048, 3, 118, 59, 0, 1048, 131, 1, 0, 0, 0, 1049, 1053, 5, 8, 0, 0, 1050, 1054, 5, 500, 0, 0, 1051, 1052, 5, 500, 0, 0, 1052, 1054, 5, 372, 0, 0, 1053, 1050, 1, 0, 0, 0, 1053, 1051, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1057, 5, 154, 0, 0, 1056, 1058, 3, 356, 178, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 3, 282, 141, 0, 1060, 1061, 5, 17, 0, 0, 1061, 1064, 3, 326, 163, 0, 1062, 1063, 5, 197, 0, 0, 1063, 1065, 7, 16, 0, 0, 1064, 1062, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 133, 1, 0, 0, 0, 1066, 1067, 5, 116, 0, 0, 1067, 1069, 5, 444, 0, 0, 1068, 1070, 3, 356, 178, 0, 1069, 1068, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 3, 334, 167, 0, 1072, 135, 1, 0, 0, 0, 1073, 1075, 5, 116, 0, 0, 1074, 1076, 5, 500, 0, 0, 1075, 1074, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1079, 5, 375, 0, 0, 1078, 1080, 3, 356, 178, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 3, 344, 172, 0, 1082, 137, 1, 0, 0, 0, 1083, 1084, 5, 116, 0, 0, 1084, 1086, 5, 450, 0, 0, 1085, 1087, 3, 356, 178, 0, 1086, 1085, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1090, 3, 338, 169, 0, 1089, 1091, 7, 17, 0, 0, 1090, 1089, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 139, 1, 0, 0, 0, 1092, 1094, 5, 116, 0, 0, 1093, 1095, 5, 500, 0, 0, 1094, 1093, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 5, 504, 0, 0, 1097, 1099, 3, 356, 178, 0, 1098, 1097, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 3, 346, 173, 0, 1101, 141, 1, 0, 0, 0, 1102, 1106, 5, 116, 0, 0, 1103, 1107, 5, 500, 0, 0, 1104, 1105, 5, 500, 0, 0, 1105, 1107, 5, 372, 0, 0, 1106, 1103, 1, 0, 0, 0, 1106, 1104, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1110, 5, 154, 0, 0, 1109, 1111, 3, 356, 178, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 3, 282, 141, 0, 1113, 143, 1, 0, 0, 0, 1114, 1116, 5, 132, 0, 0, 1115, 1114, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1122, 3, 146, 73, 0, 1118, 1122, 3, 156, 78, 0, 1119, 1120, 5, 132, 0, 0, 1120, 1122, 3, 158, 79, 0, 1121, 1115, 1, 0, 0, 0, 1121, 1118, 1, 0, 0, 0, 1121, 1119, 1, 0, 0, 0, 1122, 145, 1, 0, 0, 0, 1123, 1124, 5, 178, 0, 0, 1124, 1125, 7, 18, 0, 0, 1125, 1134, 3, 344, 172, 0, 1126, 1128, 3, 148, 74, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1130, 1, 0, 0, 0, 1129, 1131, 3, 56, 28, 0, 1130, 1129, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1135, 3, 160, 80, 0, 1133, 1135, 3, 150, 75, 0, 1134, 1127, 1, 0, 0, 0, 1134, 1133, 1, 0, 0, 0, 1135, 147, 1, 0, 0, 0, 1136, 1137, 5, 270, 0, 0, 1137, 1138, 3, 358, 179, 0, 1138, 149, 1, 0, 0, 0, 1139, 1140, 5, 417, 0, 0, 1140, 1145, 3, 152, 76, 0, 1141, 1142, 5, 523, 0, 0, 1142, 1144, 3, 152, 76, 0, 1143, 1141, 1, 0, 0, 0, 1144, 1147, 1, 0, 0, 0, 1145, 1143, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 151, 1, 0, 0, 0, 1147, 1145, 1, 0, 0, 0, 1148, 1149, 5, 519, 0, 0, 1149, 1154, 3, 154, 77, 0, 1150, 1151, 5, 523, 0, 0, 1151, 1153, 3, 154, 77, 0, 1152, 1150, 1, 0, 0, 0, 1153, 1156, 1, 0, 0, 0, 1154, 1152, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1157, 1, 0, 0, 0, 1156, 1154, 1, 0, 0, 0, 1157, 1158, 5, 520, 0, 0, 1158, 153, 1, 0, 0, 0, 1159, 1162, 3, 376, 188, 0, 1160, 1162, 3, 276, 138, 0, 1161, 1159, 1, 0, 0, 0, 1161, 1160, 1, 0, 0, 0, 1162, 155, 1, 0, 0, 0, 1163, 1164, 5, 24, 0, 0, 1164, 1165, 5, 356, 0, 0, 1165, 1166, 5, 342, 0, 0, 1166, 1170, 5, 524, 0, 0, 1167, 1168, 3, 146, 73, 0, 1168, 1169, 5, 524, 0, 0, 1169, 1171, 1, 0, 0, 0, 1170, 1167, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1170, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 5, 122, 0, 0, 1175, 157, 1, 0, 0, 0, 1176, 1177, 5, 356, 0, 0, 1177, 1178, 5, 342, 0, 0, 1178, 1182, 5, 24, 0, 0, 1179, 1180, 3, 146, 73, 0, 1180, 1181, 5, 524, 0, 0, 1181, 1183, 1, 0, 0, 0, 1182, 1179, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1187, 5, 122, 0, 0, 1187, 159, 1, 0, 0, 0, 1188, 1189, 6, 80, -1, 0, 1189, 1212, 3, 162, 81, 0, 1190, 1191, 3, 164, 82, 0, 1191, 1192, 3, 160, 80, 5, 1192, 1212, 1, 0, 0, 0, 1193, 1194, 5, 519, 0, 0, 1194, 1195, 3, 160, 80, 0, 1195, 1196, 5, 520, 0, 0, 1196, 1212, 1, 0, 0, 0, 1197, 1199, 3, 172, 86, 0, 1198, 1200, 3, 232, 116, 0, 1199, 1198, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1203, 3, 236, 118, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1212, 1, 0, 0, 0, 1204, 1206, 3, 170, 85, 0, 1205, 1207, 3, 232, 116, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1209, 1, 0, 0, 0, 1208, 1210, 3, 236, 118, 0, 1209, 1208, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1212, 1, 0, 0, 0, 1211, 1188, 1, 0, 0, 0, 1211, 1190, 1, 0, 0, 0, 1211, 1193, 1, 0, 0, 0, 1211, 1197, 1, 0, 0, 0, 1211, 1204, 1, 0, 0, 0, 1212, 1227, 1, 0, 0, 0, 1213, 1214, 10, 3, 0, 0, 1214, 1216, 7, 19, 0, 0, 1215, 1217, 5, 5, 0, 0, 1216, 1215, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1220, 3, 160, 80, 0, 1219, 1221, 3, 232, 116, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1223, 1, 0, 0, 0, 1222, 1224, 3, 236, 118, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1226, 1, 0, 0, 0, 1225, 1213, 1, 0, 0, 0, 1226, 1229, 1, 0, 0, 0, 1227, 1225, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 161, 1, 0, 0, 0, 1229, 1227, 1, 0, 0, 0, 1230, 1231, 5, 417, 0, 0, 1231, 1236, 3, 264, 132, 0, 1232, 1233, 5, 523, 0, 0, 1233, 1235, 3, 264, 132, 0, 1234, 1232, 1, 0, 0, 0, 1235, 1238, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 163, 1, 0, 0, 0, 1238, 1236, 1, 0, 0, 0, 1239, 1240, 5, 436, 0, 0, 1240, 1245, 3, 166, 83, 0, 1241, 1242, 5, 523, 0, 0, 1242, 1244, 3, 166, 83, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1247, 1, 0, 0, 0, 1245, 1243, 1, 0, 0, 0, 1245, 1246, 1, 0, 0, 0, 1246, 165, 1, 0, 0, 0, 1247, 1245, 1, 0, 0, 0, 1248, 1260, 3, 168, 84, 0, 1249, 1250, 5, 519, 0, 0, 1250, 1255, 3, 52, 26, 0, 1251, 1252, 5, 523, 0, 0, 1252, 1254, 3, 52, 26, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1257, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1258, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1258, 1259, 5, 520, 0, 0, 1259, 1261, 1, 0, 0, 0, 1260, 1249, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 5, 17, 0, 0, 1263, 1264, 5, 519, 0, 0, 1264, 1265, 3, 160, 80, 0, 1265, 1266, 5, 520, 0, 0, 1266, 167, 1, 0, 0, 0, 1267, 1268, 3, 326, 163, 0, 1268, 169, 1, 0, 0, 0, 1269, 1271, 3, 172, 86, 0, 1270, 1272, 3, 178, 89, 0, 1271, 1270, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1274, 1, 0, 0, 0, 1273, 1275, 3, 206, 103, 0, 1274, 1273, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1277, 1, 0, 0, 0, 1276, 1278, 3, 208, 104, 0, 1277, 1276, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1280, 1, 0, 0, 0, 1279, 1281, 3, 222, 111, 0, 1280, 1279, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1283, 1, 0, 0, 0, 1282, 1284, 3, 224, 112, 0, 1283, 1282, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1290, 1, 0, 0, 0, 1285, 1286, 3, 172, 86, 0, 1286, 1287, 3, 178, 89, 0, 1287, 1288, 3, 230, 115, 0, 1288, 1290, 1, 0, 0, 0, 1289, 1269, 1, 0, 0, 0, 1289, 1285, 1, 0, 0, 0, 1290, 171, 1, 0, 0, 0, 1291, 1293, 5, 338, 0, 0, 1292, 1294, 3, 386, 193, 0, 1293, 1292, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1304, 1, 0, 0, 0, 1295, 1305, 5, 530, 0, 0, 1296, 1301, 3, 174, 87, 0, 1297, 1298, 5, 523, 0, 0, 1298, 1300, 3, 174, 87, 0, 1299, 1297, 1, 0, 0, 0, 1300, 1303, 1, 0, 0, 0, 1301, 1299, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1305, 1, 0, 0, 0, 1303, 1301, 1, 0, 0, 0, 1304, 1295, 1, 0, 0, 0, 1304, 1296, 1, 0, 0, 0, 1305, 173, 1, 0, 0, 0, 1306, 1322, 3, 176, 88, 0, 1307, 1312, 3, 264, 132, 0, 1308, 1310, 5, 17, 0, 0, 1309, 1308, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1313, 3, 52, 26, 0, 1312, 1309, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1322, 1, 0, 0, 0, 1314, 1319, 3, 52, 26, 0, 1315, 1317, 5, 17, 0, 0, 1316, 1315, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1320, 3, 264, 132, 0, 1319, 1316, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1322, 1, 0, 0, 0, 1321, 1306, 1, 0, 0, 0, 1321, 1307, 1, 0, 0, 0, 1321, 1314, 1, 0, 0, 0, 1322, 175, 1, 0, 0, 0, 1323, 1324, 3, 278, 139, 0, 1324, 1325, 5, 264, 0, 0, 1325, 1328, 3, 228, 114, 0, 1326, 1327, 5, 17, 0, 0, 1327, 1329, 3, 326, 163, 0, 1328, 1326, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1338, 1, 0, 0, 0, 1330, 1331, 3, 278, 139, 0, 1331, 1332, 5, 264, 0, 0, 1332, 1335, 3, 318, 159, 0, 1333, 1334, 5, 17, 0, 0, 1334, 1336, 3, 326, 163, 0, 1335, 1333, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1338, 1, 0, 0, 0, 1337, 1323, 1, 0, 0, 0, 1337, 1330, 1, 0, 0, 0, 1338, 177, 1, 0, 0, 0, 1339, 1340, 5, 152, 0, 0, 1340, 1341, 3, 180, 90, 0, 1341, 179, 1, 0, 0, 0, 1342, 1343, 6, 90, -1, 0, 1343, 1348, 3, 182, 91, 0, 1344, 1345, 5, 523, 0, 0, 1345, 1347, 3, 182, 91, 0, 1346, 1344, 1, 0, 0, 0, 1347, 1350, 1, 0, 0, 0, 1348, 1346, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1354, 1, 0, 0, 0, 1350, 1348, 1, 0, 0, 0, 1351, 1354, 3, 190, 95, 0, 1352, 1354, 3, 192, 96, 0, 1353, 1342, 1, 0, 0, 0, 1353, 1351, 1, 0, 0, 0, 1353, 1352, 1, 0, 0, 0, 1354, 1376, 1, 0, 0, 0, 1355, 1356, 10, 3, 0, 0, 1356, 1357, 5, 73, 0, 0, 1357, 1358, 5, 186, 0, 0, 1358, 1375, 3, 180, 90, 4, 1359, 1361, 10, 4, 0, 0, 1360, 1362, 5, 235, 0, 0, 1361, 1360, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1364, 1, 0, 0, 0, 1363, 1365, 7, 20, 0, 0, 1364, 1363, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 1, 0, 0, 0, 1366, 1368, 5, 263, 0, 0, 1367, 1366, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1370, 5, 186, 0, 0, 1370, 1372, 3, 180, 90, 0, 1371, 1373, 3, 204, 102, 0, 1372, 1371, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 1375, 1, 0, 0, 0, 1374, 1355, 1, 0, 0, 0, 1374, 1359, 1, 0, 0, 0, 1375, 1378, 1, 0, 0, 0, 1376, 1374, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 181, 1, 0, 0, 0, 1378, 1376, 1, 0, 0, 0, 1379, 1381, 3, 184, 92, 0, 1380, 1382, 3, 316, 158, 0, 1381, 1380, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 183, 1, 0, 0, 0, 1383, 1385, 5, 375, 0, 0, 1384, 1383, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1388, 3, 344, 172, 0, 1387, 1389, 3, 186, 93, 0, 1388, 1387, 1, 0, 0, 0, 1388, 1389, 1, 0, 0, 0, 1389, 1413, 1, 0, 0, 0, 1390, 1392, 3, 346, 173, 0, 1391, 1393, 3, 186, 93, 0, 1392, 1391, 1, 0, 0, 0, 1392, 1393, 1, 0, 0, 0, 1393, 1413, 1, 0, 0, 0, 1394, 1395, 5, 200, 0, 0, 1395, 1396, 5, 375, 0, 0, 1396, 1397, 5, 519, 0, 0, 1397, 1398, 3, 276, 138, 0, 1398, 1399, 5, 520, 0, 0, 1399, 1413, 1, 0, 0, 0, 1400, 1402, 5, 200, 0, 0, 1401, 1400, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1404, 5, 519, 0, 0, 1404, 1405, 3, 160, 80, 0, 1405, 1406, 5, 520, 0, 0, 1406, 1413, 1, 0, 0, 0, 1407, 1408, 5, 408, 0, 0, 1408, 1409, 5, 519, 0, 0, 1409, 1410, 3, 264, 132, 0, 1410, 1411, 5, 520, 0, 0, 1411, 1413, 1, 0, 0, 0, 1412, 1384, 1, 0, 0, 0, 1412, 1390, 1, 0, 0, 0, 1412, 1394, 1, 0, 0, 0, 1412, 1401, 1, 0, 0, 0, 1412, 1407, 1, 0, 0, 0, 1413, 185, 1, 0, 0, 0, 1414, 1415, 5, 147, 0, 0, 1415, 1416, 5, 373, 0, 0, 1416, 1417, 5, 17, 0, 0, 1417, 1418, 5, 251, 0, 0, 1418, 1419, 3, 188, 94, 0, 1419, 187, 1, 0, 0, 0, 1420, 1421, 3, 264, 132, 0, 1421, 189, 1, 0, 0, 0, 1422, 1423, 5, 519, 0, 0, 1423, 1424, 3, 150, 75, 0, 1424, 1425, 5, 520, 0, 0, 1425, 1426, 3, 316, 158, 0, 1426, 191, 1, 0, 0, 0, 1427, 1428, 5, 375, 0, 0, 1428, 1429, 5, 519, 0, 0, 1429, 1430, 3, 194, 97, 0, 1430, 1431, 5, 520, 0, 0, 1431, 193, 1, 0, 0, 0, 1432, 1433, 3, 196, 98, 0, 1433, 1434, 5, 519, 0, 0, 1434, 1439, 3, 198, 99, 0, 1435, 1436, 5, 523, 0, 0, 1436, 1438, 3, 198, 99, 0, 1437, 1435, 1, 0, 0, 0, 1438, 1441, 1, 0, 0, 0, 1439, 1437, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1442, 1, 0, 0, 0, 1441, 1439, 1, 0, 0, 0, 1442, 1443, 5, 520, 0, 0, 1443, 195, 1, 0, 0, 0, 1444, 1445, 7, 21, 0, 0, 1445, 197, 1, 0, 0, 0, 1446, 1447, 5, 375, 0, 0, 1447, 1462, 3, 220, 110, 0, 1448, 1462, 3, 202, 101, 0, 1449, 1462, 3, 304, 152, 0, 1450, 1451, 5, 449, 0, 0, 1451, 1452, 5, 539, 0, 0, 1452, 1453, 5, 375, 0, 0, 1453, 1462, 3, 220, 110, 0, 1454, 1455, 5, 501, 0, 0, 1455, 1456, 5, 539, 0, 0, 1456, 1462, 3, 202, 101, 0, 1457, 1458, 3, 200, 100, 0, 1458, 1459, 5, 539, 0, 0, 1459, 1460, 3, 304, 152, 0, 1460, 1462, 1, 0, 0, 0, 1461, 1446, 1, 0, 0, 0, 1461, 1448, 1, 0, 0, 0, 1461, 1449, 1, 0, 0, 0, 1461, 1450, 1, 0, 0, 0, 1461, 1454, 1, 0, 0, 0, 1461, 1457, 1, 0, 0, 0, 1462, 199, 1, 0, 0, 0, 1463, 1464, 7, 22, 0, 0, 1464, 201, 1, 0, 0, 0, 1465, 1466, 5, 454, 0, 0, 1466, 1467, 5, 519, 0, 0, 1467, 1468, 3, 52, 26, 0, 1468, 1469, 5, 520, 0, 0, 1469, 203, 1, 0, 0, 0, 1470, 1471, 5, 255, 0, 0, 1471, 1475, 3, 266, 133, 0, 1472, 1473, 5, 415, 0, 0, 1473, 1475, 3, 56, 28, 0, 1474, 1470, 1, 0, 0, 0, 1474, 1472, 1, 0, 0, 0, 1475, 205, 1, 0, 0, 0, 1476, 1477, 5, 433, 0, 0, 1477, 1478, 3, 266, 133, 0, 1478, 207, 1, 0, 0, 0, 1479, 1480, 5, 160, 0, 0, 1480, 1481, 5, 34, 0, 0, 1481, 1486, 3, 210, 105, 0, 1482, 1483, 5, 523, 0, 0, 1483, 1485, 3, 210, 105, 0, 1484, 1482, 1, 0, 0, 0, 1485, 1488, 1, 0, 0, 0, 1486, 1484, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 209, 1, 0, 0, 0, 1488, 1486, 1, 0, 0, 0, 1489, 1530, 3, 52, 26, 0, 1490, 1530, 3, 216, 108, 0, 1491, 1492, 5, 519, 0, 0, 1492, 1530, 5, 520, 0, 0, 1493, 1494, 5, 519, 0, 0, 1494, 1499, 3, 264, 132, 0, 1495, 1496, 5, 523, 0, 0, 1496, 1498, 3, 264, 132, 0, 1497, 1495, 1, 0, 0, 0, 1498, 1501, 1, 0, 0, 0, 1499, 1497, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1502, 1, 0, 0, 0, 1501, 1499, 1, 0, 0, 0, 1502, 1503, 5, 520, 0, 0, 1503, 1530, 1, 0, 0, 0, 1504, 1505, 3, 214, 107, 0, 1505, 1506, 5, 519, 0, 0, 1506, 1511, 3, 264, 132, 0, 1507, 1508, 5, 523, 0, 0, 1508, 1510, 3, 264, 132, 0, 1509, 1507, 1, 0, 0, 0, 1510, 1513, 1, 0, 0, 0, 1511, 1509, 1, 0, 0, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1514, 1, 0, 0, 0, 1513, 1511, 1, 0, 0, 0, 1514, 1515, 5, 520, 0, 0, 1515, 1530, 1, 0, 0, 0, 1516, 1517, 3, 212, 106, 0, 1517, 1518, 5, 519, 0, 0, 1518, 1523, 3, 210, 105, 0, 1519, 1520, 5, 523, 0, 0, 1520, 1522, 3, 210, 105, 0, 1521, 1519, 1, 0, 0, 0, 1522, 1525, 1, 0, 0, 0, 1523, 1521, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1526, 1, 0, 0, 0, 1525, 1523, 1, 0, 0, 0, 1526, 1527, 5, 520, 0, 0, 1527, 1530, 1, 0, 0, 0, 1528, 1530, 3, 264, 132, 0, 1529, 1489, 1, 0, 0, 0, 1529, 1490, 1, 0, 0, 0, 1529, 1491, 1, 0, 0, 0, 1529, 1493, 1, 0, 0, 0, 1529, 1504, 1, 0, 0, 0, 1529, 1516, 1, 0, 0, 0, 1529, 1528, 1, 0, 0, 0, 1530, 211, 1, 0, 0, 0, 1531, 1532, 5, 161, 0, 0, 1532, 1533, 5, 496, 0, 0, 1533, 213, 1, 0, 0, 0, 1534, 1535, 7, 23, 0, 0, 1535, 215, 1, 0, 0, 0, 1536, 1537, 3, 218, 109, 0, 1537, 1538, 5, 519, 0, 0, 1538, 1539, 3, 220, 110, 0, 1539, 1540, 5, 523, 0, 0, 1540, 1541, 3, 304, 152, 0, 1541, 1542, 5, 520, 0, 0, 1542, 217, 1, 0, 0, 0, 1543, 1544, 7, 24, 0, 0, 1544, 219, 1, 0, 0, 0, 1545, 1546, 3, 350, 175, 0, 1546, 221, 1, 0, 0, 0, 1547, 1548, 5, 164, 0, 0, 1548, 1549, 3, 266, 133, 0, 1549, 223, 1, 0, 0, 0, 1550, 1551, 5, 435, 0, 0, 1551, 1556, 3, 226, 113, 0, 1552, 1553, 5, 523, 0, 0, 1553, 1555, 3, 226, 113, 0, 1554, 1552, 1, 0, 0, 0, 1555, 1558, 1, 0, 0, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 225, 1, 0, 0, 0, 1558, 1556, 1, 0, 0, 0, 1559, 1560, 3, 318, 159, 0, 1560, 1561, 5, 17, 0, 0, 1561, 1562, 3, 228, 114, 0, 1562, 227, 1, 0, 0, 0, 1563, 1565, 3, 318, 159, 0, 1564, 1563, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1568, 5, 519, 0, 0, 1567, 1569, 3, 238, 119, 0, 1568, 1567, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1571, 1, 0, 0, 0, 1570, 1572, 3, 232, 116, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1574, 1, 0, 0, 0, 1573, 1575, 3, 254, 127, 0, 1574, 1573, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 5, 520, 0, 0, 1577, 229, 1, 0, 0, 0, 1578, 1579, 5, 215, 0, 0, 1579, 1581, 5, 519, 0, 0, 1580, 1582, 3, 238, 119, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1584, 1, 0, 0, 0, 1583, 1585, 3, 232, 116, 0, 1584, 1583, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1587, 1, 0, 0, 0, 1586, 1588, 3, 242, 121, 0, 1587, 1586, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1590, 1, 0, 0, 0, 1589, 1591, 3, 248, 124, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1593, 1, 0, 0, 0, 1592, 1594, 3, 250, 125, 0, 1593, 1592, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 1596, 1, 0, 0, 0, 1595, 1597, 3, 244, 122, 0, 1596, 1595, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1599, 3, 252, 126, 0, 1599, 1604, 5, 520, 0, 0, 1600, 1602, 5, 17, 0, 0, 1601, 1600, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1605, 3, 326, 163, 0, 1604, 1601, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 231, 1, 0, 0, 0, 1606, 1607, 5, 260, 0, 0, 1607, 1608, 5, 34, 0, 0, 1608, 1613, 3, 234, 117, 0, 1609, 1610, 5, 523, 0, 0, 1610, 1612, 3, 234, 117, 0, 1611, 1609, 1, 0, 0, 0, 1612, 1615, 1, 0, 0, 0, 1613, 1611, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 233, 1, 0, 0, 0, 1615, 1613, 1, 0, 0, 0, 1616, 1619, 3, 52, 26, 0, 1617, 1619, 3, 274, 137, 0, 1618, 1616, 1, 0, 0, 0, 1618, 1617, 1, 0, 0, 0, 1619, 1621, 1, 0, 0, 0, 1620, 1622, 7, 25, 0, 0, 1621, 1620, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1625, 1, 0, 0, 0, 1623, 1624, 5, 479, 0, 0, 1624, 1626, 7, 26, 0, 0, 1625, 1623, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 235, 1, 0, 0, 0, 1627, 1630, 5, 206, 0, 0, 1628, 1631, 5, 5, 0, 0, 1629, 1631, 3, 264, 132, 0, 1630, 1628, 1, 0, 0, 0, 1630, 1629, 1, 0, 0, 0, 1631, 237, 1, 0, 0, 0, 1632, 1633, 5, 270, 0, 0, 1633, 1636, 5, 34, 0, 0, 1634, 1637, 3, 52, 26, 0, 1635, 1637, 3, 278, 139, 0, 1636, 1634, 1, 0, 0, 0, 1636, 1635, 1, 0, 0, 0, 1637, 1645, 1, 0, 0, 0, 1638, 1641, 5, 523, 0, 0, 1639, 1642, 3, 52, 26, 0, 1640, 1642, 3, 278, 139, 0, 1641, 1639, 1, 0, 0, 0, 1641, 1640, 1, 0, 0, 0, 1642, 1644, 1, 0, 0, 0, 1643, 1638, 1, 0, 0, 0, 1644, 1647, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 239, 1, 0, 0, 0, 1647, 1645, 1, 0, 0, 0, 1648, 1665, 5, 530, 0, 0, 1649, 1665, 5, 533, 0, 0, 1650, 1665, 5, 538, 0, 0, 1651, 1652, 5, 521, 0, 0, 1652, 1653, 5, 541, 0, 0, 1653, 1654, 5, 523, 0, 0, 1654, 1655, 5, 541, 0, 0, 1655, 1665, 5, 522, 0, 0, 1656, 1657, 5, 521, 0, 0, 1657, 1658, 5, 541, 0, 0, 1658, 1659, 5, 523, 0, 0, 1659, 1665, 5, 522, 0, 0, 1660, 1661, 5, 521, 0, 0, 1661, 1662, 5, 523, 0, 0, 1662, 1663, 5, 541, 0, 0, 1663, 1665, 5, 522, 0, 0, 1664, 1648, 1, 0, 0, 0, 1664, 1649, 1, 0, 0, 0, 1664, 1650, 1, 0, 0, 0, 1664, 1651, 1, 0, 0, 0, 1664, 1656, 1, 0, 0, 0, 1664, 1660, 1, 0, 0, 0, 1665, 241, 1, 0, 0, 0, 1666, 1667, 5, 217, 0, 0, 1667, 1672, 3, 174, 87, 0, 1668, 1669, 5, 523, 0, 0, 1669, 1671, 3, 174, 87, 0, 1670, 1668, 1, 0, 0, 0, 1671, 1674, 1, 0, 0, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 243, 1, 0, 0, 0, 1674, 1672, 1, 0, 0, 0, 1675, 1676, 5, 273, 0, 0, 1676, 1678, 5, 519, 0, 0, 1677, 1679, 3, 246, 123, 0, 1678, 1677, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1684, 5, 520, 0, 0, 1683, 1685, 3, 262, 131, 0, 1684, 1683, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 245, 1, 0, 0, 0, 1686, 1688, 3, 328, 164, 0, 1687, 1689, 3, 240, 120, 0, 1688, 1687, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 247, 1, 0, 0, 0, 1690, 1691, 5, 5, 0, 0, 1691, 1692, 5, 324, 0, 0, 1692, 1693, 5, 274, 0, 0, 1693, 1699, 5, 212, 0, 0, 1694, 1695, 5, 256, 0, 0, 1695, 1696, 5, 323, 0, 0, 1696, 1697, 5, 274, 0, 0, 1697, 1699, 5, 212, 0, 0, 1698, 1690, 1, 0, 0, 0, 1698, 1694, 1, 0, 0, 0, 1699, 249, 1, 0, 0, 0, 1700, 1701, 5, 441, 0, 0, 1701, 1702, 5, 212, 0, 0, 1702, 1703, 5, 345, 0, 0, 1703, 1704, 5, 481, 0, 0, 1704, 1705, 5, 470, 0, 0, 1705, 1725, 5, 323, 0, 0, 1706, 1707, 5, 441, 0, 0, 1707, 1708, 5, 212, 0, 0, 1708, 1709, 5, 345, 0, 0, 1709, 1710, 5, 390, 0, 0, 1710, 1711, 5, 239, 0, 0, 1711, 1725, 5, 323, 0, 0, 1712, 1713, 5, 441, 0, 0, 1713, 1714, 5, 212, 0, 0, 1714, 1715, 5, 345, 0, 0, 1715, 1716, 5, 390, 0, 0, 1716, 1717, 5, 470, 0, 0, 1717, 1725, 3, 328, 164, 0, 1718, 1719, 5, 441, 0, 0, 1719, 1720, 5, 212, 0, 0, 1720, 1721, 5, 345, 0, 0, 1721, 1722, 5, 390, 0, 0, 1722, 1723, 5, 460, 0, 0, 1723, 1725, 3, 328, 164, 0, 1724, 1700, 1, 0, 0, 0, 1724, 1706, 1, 0, 0, 0, 1724, 1712, 1, 0, 0, 0, 1724, 1718, 1, 0, 0, 0, 1725, 251, 1, 0, 0, 0, 1726, 1727, 5, 105, 0, 0, 1727, 1732, 3, 174, 87, 0, 1728, 1729, 5, 523, 0, 0, 1729, 1731, 3, 174, 87, 0, 1730, 1728, 1, 0, 0, 0, 1731, 1734, 1, 0, 0, 0, 1732, 1730, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 253, 1, 0, 0, 0, 1734, 1732, 1, 0, 0, 0, 1735, 1736, 5, 294, 0, 0, 1736, 1737, 5, 27, 0, 0, 1737, 1738, 3, 304, 152, 0, 1738, 1739, 3, 256, 128, 0, 1739, 1751, 1, 0, 0, 0, 1740, 1741, 7, 27, 0, 0, 1741, 1742, 5, 27, 0, 0, 1742, 1743, 3, 258, 129, 0, 1743, 1744, 5, 10, 0, 0, 1744, 1745, 3, 260, 130, 0, 1745, 1751, 1, 0, 0, 0, 1746, 1747, 5, 324, 0, 0, 1747, 1748, 5, 27, 0, 0, 1748, 1749, 5, 541, 0, 0, 1749, 1751, 3, 256, 128, 0, 1750, 1735, 1, 0, 0, 0, 1750, 1740, 1, 0, 0, 0, 1750, 1746, 1, 0, 0, 0, 1751, 255, 1, 0, 0, 0, 1752, 1753, 5, 483, 0, 0, 1753, 1754, 5, 10, 0, 0, 1754, 1755, 5, 76, 0, 0, 1755, 1756, 5, 323, 0, 0, 1756, 257, 1, 0, 0, 0, 1757, 1758, 5, 404, 0, 0, 1758, 1764, 5, 483, 0, 0, 1759, 1760, 5, 541, 0, 0, 1760, 1764, 5, 483, 0, 0, 1761, 1762, 5, 76, 0, 0, 1762, 1764, 5, 323, 0, 0, 1763, 1757, 1, 0, 0, 0, 1763, 1759, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1764, 259, 1, 0, 0, 0, 1765, 1766, 5, 76, 0, 0, 1766, 1772, 5, 323, 0, 0, 1767, 1768, 5, 541, 0, 0, 1768, 1772, 5, 146, 0, 0, 1769, 1770, 5, 404, 0, 0, 1770, 1772, 5, 146, 0, 0, 1771, 1765, 1, 0, 0, 0, 1771, 1767, 1, 0, 0, 0, 1771, 1769, 1, 0, 0, 0, 1772, 261, 1, 0, 0, 0, 1773, 1774, 5, 437, 0, 0, 1774, 1775, 3, 304, 152, 0, 1775, 263, 1, 0, 0, 0, 1776, 1777, 3, 266, 133, 0, 1777, 265, 1, 0, 0, 0, 1778, 1779, 6, 133, -1, 0, 1779, 1780, 5, 243, 0, 0, 1780, 1791, 3, 266, 133, 6, 1781, 1782, 5, 133, 0, 0, 1782, 1783, 5, 519, 0, 0, 1783, 1784, 3, 160, 80, 0, 1784, 1785, 5, 520, 0, 0, 1785, 1791, 1, 0, 0, 0, 1786, 1788, 3, 274, 137, 0, 1787, 1789, 3, 268, 134, 0, 1788, 1787, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1791, 1, 0, 0, 0, 1790, 1778, 1, 0, 0, 0, 1790, 1781, 1, 0, 0, 0, 1790, 1786, 1, 0, 0, 0, 1791, 1806, 1, 0, 0, 0, 1792, 1793, 10, 3, 0, 0, 1793, 1794, 5, 10, 0, 0, 1794, 1805, 3, 266, 133, 4, 1795, 1796, 10, 2, 0, 0, 1796, 1797, 5, 259, 0, 0, 1797, 1805, 3, 266, 133, 3, 1798, 1799, 10, 1, 0, 0, 1799, 1801, 5, 185, 0, 0, 1800, 1802, 5, 243, 0, 0, 1801, 1800, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1805, 7, 28, 0, 0, 1804, 1792, 1, 0, 0, 0, 1804, 1795, 1, 0, 0, 0, 1804, 1798, 1, 0, 0, 0, 1805, 1808, 1, 0, 0, 0, 1806, 1804, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 267, 1, 0, 0, 0, 1808, 1806, 1, 0, 0, 0, 1809, 1811, 5, 243, 0, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1814, 5, 27, 0, 0, 1813, 1815, 7, 29, 0, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 3, 274, 137, 0, 1817, 1818, 5, 10, 0, 0, 1818, 1819, 3, 274, 137, 0, 1819, 1884, 1, 0, 0, 0, 1820, 1822, 5, 243, 0, 0, 1821, 1820, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 1824, 5, 171, 0, 0, 1824, 1825, 5, 519, 0, 0, 1825, 1830, 3, 264, 132, 0, 1826, 1827, 5, 523, 0, 0, 1827, 1829, 3, 264, 132, 0, 1828, 1826, 1, 0, 0, 0, 1829, 1832, 1, 0, 0, 0, 1830, 1828, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1830, 1, 0, 0, 0, 1833, 1834, 5, 520, 0, 0, 1834, 1884, 1, 0, 0, 0, 1835, 1837, 5, 243, 0, 0, 1836, 1835, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1839, 5, 171, 0, 0, 1839, 1840, 5, 519, 0, 0, 1840, 1841, 3, 160, 80, 0, 1841, 1842, 5, 520, 0, 0, 1842, 1884, 1, 0, 0, 0, 1843, 1844, 5, 133, 0, 0, 1844, 1845, 5, 519, 0, 0, 1845, 1846, 3, 160, 80, 0, 1846, 1847, 5, 520, 0, 0, 1847, 1884, 1, 0, 0, 0, 1848, 1850, 5, 243, 0, 0, 1849, 1848, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1852, 5, 320, 0, 0, 1852, 1884, 3, 274, 137, 0, 1853, 1884, 3, 272, 136, 0, 1854, 1856, 5, 185, 0, 0, 1855, 1857, 5, 243, 0, 0, 1856, 1855, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 1884, 7, 28, 0, 0, 1859, 1861, 5, 185, 0, 0, 1860, 1862, 5, 243, 0, 0, 1861, 1860, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1864, 5, 113, 0, 0, 1864, 1865, 5, 152, 0, 0, 1865, 1884, 3, 274, 137, 0, 1866, 1868, 5, 243, 0, 0, 1867, 1866, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 1869, 1, 0, 0, 0, 1869, 1870, 5, 344, 0, 0, 1870, 1871, 5, 390, 0, 0, 1871, 1874, 3, 274, 137, 0, 1872, 1873, 5, 127, 0, 0, 1873, 1875, 3, 380, 190, 0, 1874, 1872, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 1884, 1, 0, 0, 0, 1876, 1877, 5, 185, 0, 0, 1877, 1881, 5, 187, 0, 0, 1878, 1882, 5, 416, 0, 0, 1879, 1882, 5, 13, 0, 0, 1880, 1882, 3, 326, 163, 0, 1881, 1878, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1881, 1880, 1, 0, 0, 0, 1881, 1882, 1, 0, 0, 0, 1882, 1884, 1, 0, 0, 0, 1883, 1810, 1, 0, 0, 0, 1883, 1821, 1, 0, 0, 0, 1883, 1836, 1, 0, 0, 0, 1883, 1843, 1, 0, 0, 0, 1883, 1849, 1, 0, 0, 0, 1883, 1853, 1, 0, 0, 0, 1883, 1854, 1, 0, 0, 0, 1883, 1859, 1, 0, 0, 0, 1883, 1867, 1, 0, 0, 0, 1883, 1876, 1, 0, 0, 0, 1884, 269, 1, 0, 0, 0, 1885, 1894, 5, 246, 0, 0, 1886, 1887, 5, 121, 0, 0, 1887, 1894, 5, 13, 0, 0, 1888, 1889, 5, 121, 0, 0, 1889, 1894, 3, 350, 175, 0, 1890, 1894, 5, 399, 0, 0, 1891, 1894, 5, 140, 0, 0, 1892, 1894, 5, 407, 0, 0, 1893, 1885, 1, 0, 0, 0, 1893, 1886, 1, 0, 0, 0, 1893, 1888, 1, 0, 0, 0, 1893, 1890, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1893, 1892, 1, 0, 0, 0, 1894, 271, 1, 0, 0, 0, 1895, 1897, 5, 243, 0, 0, 1896, 1895, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1899, 5, 204, 0, 0, 1899, 1913, 7, 30, 0, 0, 1900, 1901, 5, 519, 0, 0, 1901, 1914, 5, 520, 0, 0, 1902, 1903, 5, 519, 0, 0, 1903, 1908, 3, 264, 132, 0, 1904, 1905, 5, 523, 0, 0, 1905, 1907, 3, 264, 132, 0, 1906, 1904, 1, 0, 0, 0, 1907, 1910, 1, 0, 0, 0, 1908, 1906, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1911, 1, 0, 0, 0, 1910, 1908, 1, 0, 0, 0, 1911, 1912, 5, 520, 0, 0, 1912, 1914, 1, 0, 0, 0, 1913, 1900, 1, 0, 0, 0, 1913, 1902, 1, 0, 0, 0, 1914, 1925, 1, 0, 0, 0, 1915, 1917, 5, 243, 0, 0, 1916, 1915, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1919, 5, 204, 0, 0, 1919, 1922, 3, 274, 137, 0, 1920, 1921, 5, 127, 0, 0, 1921, 1923, 3, 380, 190, 0, 1922, 1920, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1925, 1, 0, 0, 0, 1924, 1896, 1, 0, 0, 0, 1924, 1916, 1, 0, 0, 0, 1925, 273, 1, 0, 0, 0, 1926, 1927, 6, 137, -1, 0, 1927, 1931, 3, 278, 139, 0, 1928, 1929, 7, 31, 0, 0, 1929, 1931, 3, 274, 137, 7, 1930, 1926, 1, 0, 0, 0, 1930, 1928, 1, 0, 0, 0, 1931, 1953, 1, 0, 0, 0, 1932, 1933, 10, 6, 0, 0, 1933, 1934, 7, 32, 0, 0, 1934, 1952, 3, 274, 137, 7, 1935, 1936, 10, 5, 0, 0, 1936, 1937, 7, 33, 0, 0, 1937, 1952, 3, 274, 137, 6, 1938, 1939, 10, 4, 0, 0, 1939, 1940, 5, 514, 0, 0, 1940, 1952, 3, 274, 137, 5, 1941, 1942, 10, 3, 0, 0, 1942, 1943, 5, 515, 0, 0, 1943, 1952, 3, 274, 137, 4, 1944, 1945, 10, 2, 0, 0, 1945, 1946, 5, 513, 0, 0, 1946, 1952, 3, 274, 137, 3, 1947, 1948, 10, 1, 0, 0, 1948, 1949, 3, 368, 184, 0, 1949, 1950, 3, 274, 137, 2, 1950, 1952, 1, 0, 0, 0, 1951, 1932, 1, 0, 0, 0, 1951, 1935, 1, 0, 0, 0, 1951, 1938, 1, 0, 0, 0, 1951, 1941, 1, 0, 0, 0, 1951, 1944, 1, 0, 0, 0, 1951, 1947, 1, 0, 0, 0, 1952, 1955, 1, 0, 0, 0, 1953, 1951, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 275, 1, 0, 0, 0, 1955, 1953, 1, 0, 0, 0, 1956, 1976, 3, 394, 197, 0, 1957, 1976, 3, 284, 142, 0, 1958, 1959, 3, 286, 143, 0, 1959, 1971, 5, 519, 0, 0, 1960, 1962, 3, 386, 193, 0, 1961, 1960, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1968, 3, 288, 144, 0, 1964, 1965, 5, 523, 0, 0, 1965, 1967, 3, 288, 144, 0, 1966, 1964, 1, 0, 0, 0, 1967, 1970, 1, 0, 0, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1972, 1, 0, 0, 0, 1970, 1968, 1, 0, 0, 0, 1971, 1961, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 5, 520, 0, 0, 1974, 1976, 1, 0, 0, 0, 1975, 1956, 1, 0, 0, 0, 1975, 1957, 1, 0, 0, 0, 1975, 1958, 1, 0, 0, 0, 1976, 277, 1, 0, 0, 0, 1977, 1978, 6, 139, -1, 0, 1978, 1980, 5, 40, 0, 0, 1979, 1981, 3, 332, 166, 0, 1980, 1979, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1980, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1986, 1, 0, 0, 0, 1984, 1985, 5, 120, 0, 0, 1985, 1987, 3, 264, 132, 0, 1986, 1984, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1989, 5, 122, 0, 0, 1989, 2060, 1, 0, 0, 0, 1990, 1991, 5, 40, 0, 0, 1991, 1993, 3, 264, 132, 0, 1992, 1994, 3, 332, 166, 0, 1993, 1992, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1993, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1999, 1, 0, 0, 0, 1997, 1998, 5, 120, 0, 0, 1998, 2000, 3, 264, 132, 0, 1999, 1997, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2002, 5, 122, 0, 0, 2002, 2060, 1, 0, 0, 0, 2003, 2004, 5, 41, 0, 0, 2004, 2005, 5, 519, 0, 0, 2005, 2006, 3, 264, 132, 0, 2006, 2007, 5, 17, 0, 0, 2007, 2008, 3, 58, 29, 0, 2008, 2009, 5, 520, 0, 0, 2009, 2060, 1, 0, 0, 0, 2010, 2011, 5, 460, 0, 0, 2011, 2012, 5, 519, 0, 0, 2012, 2015, 3, 264, 132, 0, 2013, 2014, 5, 464, 0, 0, 2014, 2016, 5, 479, 0, 0, 2015, 2013, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 5, 520, 0, 0, 2018, 2060, 1, 0, 0, 0, 2019, 2020, 5, 470, 0, 0, 2020, 2021, 5, 519, 0, 0, 2021, 2024, 3, 264, 132, 0, 2022, 2023, 5, 464, 0, 0, 2023, 2025, 5, 479, 0, 0, 2024, 2022, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2027, 5, 520, 0, 0, 2027, 2060, 1, 0, 0, 0, 2028, 2029, 5, 283, 0, 0, 2029, 2030, 5, 519, 0, 0, 2030, 2031, 3, 274, 137, 0, 2031, 2032, 5, 171, 0, 0, 2032, 2033, 3, 274, 137, 0, 2033, 2034, 5, 520, 0, 0, 2034, 2060, 1, 0, 0, 0, 2035, 2060, 3, 376, 188, 0, 2036, 2060, 5, 530, 0, 0, 2037, 2038, 3, 350, 175, 0, 2038, 2039, 5, 516, 0, 0, 2039, 2040, 5, 530, 0, 0, 2040, 2060, 1, 0, 0, 0, 2041, 2042, 5, 519, 0, 0, 2042, 2043, 3, 160, 80, 0, 2043, 2044, 5, 520, 0, 0, 2044, 2060, 1, 0, 0, 0, 2045, 2060, 3, 276, 138, 0, 2046, 2060, 3, 54, 27, 0, 2047, 2060, 3, 298, 149, 0, 2048, 2049, 5, 519, 0, 0, 2049, 2050, 3, 264, 132, 0, 2050, 2051, 5, 520, 0, 0, 2051, 2060, 1, 0, 0, 0, 2052, 2053, 5, 139, 0, 0, 2053, 2054, 5, 519, 0, 0, 2054, 2055, 3, 326, 163, 0, 2055, 2056, 5, 152, 0, 0, 2056, 2057, 3, 274, 137, 0, 2057, 2058, 5, 520, 0, 0, 2058, 2060, 1, 0, 0, 0, 2059, 1977, 1, 0, 0, 0, 2059, 1990, 1, 0, 0, 0, 2059, 2003, 1, 0, 0, 0, 2059, 2010, 1, 0, 0, 0, 2059, 2019, 1, 0, 0, 0, 2059, 2028, 1, 0, 0, 0, 2059, 2035, 1, 0, 0, 0, 2059, 2036, 1, 0, 0, 0, 2059, 2037, 1, 0, 0, 0, 2059, 2041, 1, 0, 0, 0, 2059, 2045, 1, 0, 0, 0, 2059, 2046, 1, 0, 0, 0, 2059, 2047, 1, 0, 0, 0, 2059, 2048, 1, 0, 0, 0, 2059, 2052, 1, 0, 0, 0, 2060, 2068, 1, 0, 0, 0, 2061, 2062, 10, 5, 0, 0, 2062, 2063, 5, 517, 0, 0, 2063, 2064, 3, 274, 137, 0, 2064, 2065, 5, 518, 0, 0, 2065, 2067, 1, 0, 0, 0, 2066, 2061, 1, 0, 0, 0, 2067, 2070, 1, 0, 0, 0, 2068, 2066, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 279, 1, 0, 0, 0, 2070, 2068, 1, 0, 0, 0, 2071, 2072, 3, 350, 175, 0, 2072, 281, 1, 0, 0, 0, 2073, 2078, 3, 398, 199, 0, 2074, 2078, 3, 394, 197, 0, 2075, 2078, 3, 396, 198, 0, 2076, 2078, 3, 350, 175, 0, 2077, 2073, 1, 0, 0, 0, 2077, 2074, 1, 0, 0, 0, 2077, 2075, 1, 0, 0, 0, 2077, 2076, 1, 0, 0, 0, 2078, 283, 1, 0, 0, 0, 2079, 2080, 3, 396, 198, 0, 2080, 2081, 5, 540, 0, 0, 2081, 2084, 1, 0, 0, 0, 2082, 2084, 3, 304, 152, 0, 2083, 2079, 1, 0, 0, 0, 2083, 2082, 1, 0, 0, 0, 2084, 285, 1, 0, 0, 0, 2085, 2088, 3, 398, 199, 0, 2086, 2088, 3, 350, 175, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2086, 1, 0, 0, 0, 2088, 287, 1, 0, 0, 0, 2089, 2098, 3, 392, 196, 0, 2090, 2098, 3, 390, 195, 0, 2091, 2098, 3, 388, 194, 0, 2092, 2098, 3, 264, 132, 0, 2093, 2098, 3, 290, 145, 0, 2094, 2098, 3, 292, 146, 0, 2095, 2098, 3, 294, 147, 0, 2096, 2098, 3, 296, 148, 0, 2097, 2089, 1, 0, 0, 0, 2097, 2090, 1, 0, 0, 0, 2097, 2091, 1, 0, 0, 0, 2097, 2092, 1, 0, 0, 0, 2097, 2093, 1, 0, 0, 0, 2097, 2094, 1, 0, 0, 0, 2097, 2095, 1, 0, 0, 0, 2097, 2096, 1, 0, 0, 0, 2098, 289, 1, 0, 0, 0, 2099, 2103, 3, 54, 27, 0, 2100, 2101, 3, 350, 175, 0, 2101, 2102, 3, 58, 29, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2100, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2113, 1, 0, 0, 0, 2105, 2110, 3, 350, 175, 0, 2106, 2110, 5, 246, 0, 0, 2107, 2108, 5, 104, 0, 0, 2108, 2110, 3, 274, 137, 0, 2109, 2105, 1, 0, 0, 0, 2109, 2106, 1, 0, 0, 0, 2109, 2107, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2112, 5, 255, 0, 0, 2112, 2114, 5, 121, 0, 0, 2113, 2109, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2123, 1, 0, 0, 0, 2115, 2120, 3, 350, 175, 0, 2116, 2120, 5, 246, 0, 0, 2117, 2118, 5, 104, 0, 0, 2118, 2120, 3, 274, 137, 0, 2119, 2115, 1, 0, 0, 0, 2119, 2116, 1, 0, 0, 0, 2119, 2117, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2122, 5, 255, 0, 0, 2122, 2124, 3, 350, 175, 0, 2123, 2119, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 291, 1, 0, 0, 0, 2125, 2137, 3, 54, 27, 0, 2126, 2132, 5, 438, 0, 0, 2127, 2129, 5, 436, 0, 0, 2128, 2130, 3, 350, 175, 0, 2129, 2128, 1, 0, 0, 0, 2129, 2130, 1, 0, 0, 0, 2130, 2132, 1, 0, 0, 0, 2131, 2126, 1, 0, 0, 0, 2131, 2127, 1, 0, 0, 0, 2132, 2134, 1, 0, 0, 0, 2133, 2135, 5, 13, 0, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2138, 3, 350, 175, 0, 2137, 2131, 1, 0, 0, 0, 2137, 2138, 1, 0, 0, 0, 2138, 2143, 1, 0, 0, 0, 2139, 2140, 3, 270, 135, 0, 2140, 2141, 5, 255, 0, 0, 2141, 2142, 5, 121, 0, 0, 2142, 2144, 1, 0, 0, 0, 2143, 2139, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 2149, 1, 0, 0, 0, 2145, 2146, 3, 270, 135, 0, 2146, 2147, 5, 255, 0, 0, 2147, 2148, 3, 350, 175, 0, 2148, 2150, 1, 0, 0, 0, 2149, 2145, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 293, 1, 0, 0, 0, 2151, 2153, 5, 469, 0, 0, 2152, 2151, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2154, 1, 0, 0, 0, 2154, 2156, 3, 54, 27, 0, 2155, 2157, 5, 416, 0, 0, 2156, 2155, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2168, 1, 0, 0, 0, 2158, 2169, 3, 274, 137, 0, 2159, 2160, 5, 187, 0, 0, 2160, 2164, 5, 519, 0, 0, 2161, 2163, 3, 274, 137, 0, 2162, 2161, 1, 0, 0, 0, 2163, 2166, 1, 0, 0, 0, 2164, 2162, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2167, 1, 0, 0, 0, 2166, 2164, 1, 0, 0, 0, 2167, 2169, 5, 520, 0, 0, 2168, 2158, 1, 0, 0, 0, 2168, 2159, 1, 0, 0, 0, 2169, 2171, 1, 0, 0, 0, 2170, 2152, 1, 0, 0, 0, 2171, 2174, 1, 0, 0, 0, 2172, 2170, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 2181, 1, 0, 0, 0, 2174, 2172, 1, 0, 0, 0, 2175, 2178, 5, 246, 0, 0, 2176, 2178, 3, 350, 175, 0, 2177, 2175, 1, 0, 0, 0, 2177, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2180, 5, 255, 0, 0, 2180, 2182, 5, 246, 0, 0, 2181, 2177, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 295, 1, 0, 0, 0, 2183, 2185, 3, 274, 137, 0, 2184, 2183, 1, 0, 0, 0, 2185, 2188, 1, 0, 0, 0, 2186, 2184, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 2195, 1, 0, 0, 0, 2188, 2186, 1, 0, 0, 0, 2189, 2192, 5, 246, 0, 0, 2190, 2192, 3, 350, 175, 0, 2191, 2189, 1, 0, 0, 0, 2191, 2190, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2194, 5, 255, 0, 0, 2194, 2196, 5, 246, 0, 0, 2195, 2191, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 297, 1, 0, 0, 0, 2197, 2198, 3, 350, 175, 0, 2198, 299, 1, 0, 0, 0, 2199, 2200, 3, 326, 163, 0, 2200, 301, 1, 0, 0, 0, 2201, 2204, 3, 326, 163, 0, 2202, 2204, 3, 298, 149, 0, 2203, 2201, 1, 0, 0, 0, 2203, 2202, 1, 0, 0, 0, 2204, 303, 1, 0, 0, 0, 2205, 2208, 5, 183, 0, 0, 2206, 2209, 3, 306, 153, 0, 2207, 2209, 3, 310, 155, 0, 2208, 2206, 1, 0, 0, 0, 2208, 2207, 1, 0, 0, 0, 2208, 2209, 1, 0, 0, 0, 2209, 305, 1, 0, 0, 0, 2210, 2212, 3, 308, 154, 0, 2211, 2213, 3, 312, 156, 0, 2212, 2211, 1, 0, 0, 0, 2212, 2213, 1, 0, 0, 0, 2213, 307, 1, 0, 0, 0, 2214, 2215, 3, 314, 157, 0, 2215, 2216, 3, 390, 195, 0, 2216, 2218, 1, 0, 0, 0, 2217, 2214, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 309, 1, 0, 0, 0, 2221, 2224, 3, 312, 156, 0, 2222, 2225, 3, 308, 154, 0, 2223, 2225, 3, 312, 156, 0, 2224, 2222, 1, 0, 0, 0, 2224, 2223, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 311, 1, 0, 0, 0, 2226, 2227, 3, 314, 157, 0, 2227, 2228, 3, 390, 195, 0, 2228, 2229, 5, 390, 0, 0, 2229, 2230, 3, 390, 195, 0, 2230, 313, 1, 0, 0, 0, 2231, 2233, 7, 34, 0, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2234, 1, 0, 0, 0, 2234, 2237, 7, 35, 0, 0, 2235, 2237, 5, 540, 0, 0, 2236, 2232, 1, 0, 0, 0, 2236, 2235, 1, 0, 0, 0, 2237, 315, 1, 0, 0, 0, 2238, 2240, 5, 17, 0, 0, 2239, 2238, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2241, 1, 0, 0, 0, 2241, 2243, 3, 326, 163, 0, 2242, 2244, 3, 322, 161, 0, 2243, 2242, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 317, 1, 0, 0, 0, 2245, 2246, 3, 326, 163, 0, 2246, 2247, 3, 320, 160, 0, 2247, 319, 1, 0, 0, 0, 2248, 2249, 5, 223, 0, 0, 2249, 2251, 3, 326, 163, 0, 2250, 2248, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2250, 1, 0, 0, 0, 2252, 2253, 1, 0, 0, 0, 2253, 2256, 1, 0, 0, 0, 2254, 2256, 1, 0, 0, 0, 2255, 2250, 1, 0, 0, 0, 2255, 2254, 1, 0, 0, 0, 2256, 321, 1, 0, 0, 0, 2257, 2258, 5, 519, 0, 0, 2258, 2259, 3, 324, 162, 0, 2259, 2260, 5, 520, 0, 0, 2260, 323, 1, 0, 0, 0, 2261, 2266, 3, 326, 163, 0, 2262, 2263, 5, 523, 0, 0, 2263, 2265, 3, 326, 163, 0, 2264, 2262, 1, 0, 0, 0, 2265, 2268, 1, 0, 0, 0, 2266, 2264, 1, 0, 0, 0, 2266, 2267, 1, 0, 0, 0, 2267, 325, 1, 0, 0, 0, 2268, 2266, 1, 0, 0, 0, 2269, 2273, 3, 328, 164, 0, 2270, 2273, 3, 330, 165, 0, 2271, 2273, 3, 400, 200, 0, 2272, 2269, 1, 0, 0, 0, 2272, 2270, 1, 0, 0, 0, 2272, 2271, 1, 0, 0, 0, 2273, 327, 1, 0, 0, 0, 2274, 2275, 7, 36, 0, 0, 2275, 329, 1, 0, 0, 0, 2276, 2277, 5, 540, 0, 0, 2277, 331, 1, 0, 0, 0, 2278, 2279, 5, 431, 0, 0, 2279, 2280, 3, 264, 132, 0, 2280, 2281, 5, 378, 0, 0, 2281, 2282, 3, 264, 132, 0, 2282, 333, 1, 0, 0, 0, 2283, 2284, 3, 326, 163, 0, 2284, 335, 1, 0, 0, 0, 2285, 2286, 3, 326, 163, 0, 2286, 337, 1, 0, 0, 0, 2287, 2290, 3, 326, 163, 0, 2288, 2289, 5, 516, 0, 0, 2289, 2291, 3, 326, 163, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 339, 1, 0, 0, 0, 2292, 2295, 3, 326, 163, 0, 2293, 2294, 5, 516, 0, 0, 2294, 2296, 3, 326, 163, 0, 2295, 2293, 1, 0, 0, 0, 2295, 2296, 1, 0, 0, 0, 2296, 341, 1, 0, 0, 0, 2297, 2300, 3, 326, 163, 0, 2298, 2299, 5, 516, 0, 0, 2299, 2301, 3, 326, 163, 0, 2300, 2298, 1, 0, 0, 0, 2300, 2301, 1, 0, 0, 0, 2301, 2310, 1, 0, 0, 0, 2302, 2303, 3, 326, 163, 0, 2303, 2304, 5, 516, 0, 0, 2304, 2307, 3, 326, 163, 0, 2305, 2306, 5, 516, 0, 0, 2306, 2308, 3, 326, 163, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2308, 1, 0, 0, 0, 2308, 2310, 1, 0, 0, 0, 2309, 2297, 1, 0, 0, 0, 2309, 2302, 1, 0, 0, 0, 2310, 343, 1, 0, 0, 0, 2311, 2314, 3, 326, 163, 0, 2312, 2313, 5, 516, 0, 0, 2313, 2315, 3, 326, 163, 0, 2314, 2312, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2324, 1, 0, 0, 0, 2316, 2317, 3, 326, 163, 0, 2317, 2318, 5, 516, 0, 0, 2318, 2321, 3, 326, 163, 0, 2319, 2320, 5, 516, 0, 0, 2320, 2322, 3, 326, 163, 0, 2321, 2319, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2324, 1, 0, 0, 0, 2323, 2311, 1, 0, 0, 0, 2323, 2316, 1, 0, 0, 0, 2324, 345, 1, 0, 0, 0, 2325, 2328, 3, 326, 163, 0, 2326, 2327, 5, 516, 0, 0, 2327, 2329, 3, 326, 163, 0, 2328, 2326, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2338, 1, 0, 0, 0, 2330, 2331, 3, 326, 163, 0, 2331, 2332, 5, 516, 0, 0, 2332, 2335, 3, 326, 163, 0, 2333, 2334, 5, 516, 0, 0, 2334, 2336, 3, 326, 163, 0, 2335, 2333, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2338, 1, 0, 0, 0, 2337, 2325, 1, 0, 0, 0, 2337, 2330, 1, 0, 0, 0, 2338, 347, 1, 0, 0, 0, 2339, 2342, 3, 326, 163, 0, 2340, 2341, 5, 516, 0, 0, 2341, 2343, 3, 326, 163, 0, 2342, 2340, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2352, 1, 0, 0, 0, 2344, 2345, 3, 326, 163, 0, 2345, 2346, 5, 516, 0, 0, 2346, 2349, 3, 326, 163, 0, 2347, 2348, 5, 516, 0, 0, 2348, 2350, 3, 326, 163, 0, 2349, 2347, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2352, 1, 0, 0, 0, 2351, 2339, 1, 0, 0, 0, 2351, 2344, 1, 0, 0, 0, 2352, 349, 1, 0, 0, 0, 2353, 2358, 3, 326, 163, 0, 2354, 2355, 5, 516, 0, 0, 2355, 2357, 3, 326, 163, 0, 2356, 2354, 1, 0, 0, 0, 2357, 2360, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2359, 351, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2361, 2362, 5, 436, 0, 0, 2362, 2363, 3, 358, 179, 0, 2363, 353, 1, 0, 0, 0, 2364, 2365, 5, 168, 0, 0, 2365, 2366, 5, 243, 0, 0, 2366, 2367, 5, 133, 0, 0, 2367, 355, 1, 0, 0, 0, 2368, 2369, 5, 168, 0, 0, 2369, 2370, 5, 133, 0, 0, 2370, 357, 1, 0, 0, 0, 2371, 2372, 5, 519, 0, 0, 2372, 2377, 3, 360, 180, 0, 2373, 2374, 5, 523, 0, 0, 2374, 2376, 3, 360, 180, 0, 2375, 2373, 1, 0, 0, 0, 2376, 2379, 1, 0, 0, 0, 2377, 2375, 1, 0, 0, 0, 2377, 2378, 1, 0, 0, 0, 2378, 2380, 1, 0, 0, 0, 2379, 2377, 1, 0, 0, 0, 2380, 2381, 5, 520, 0, 0, 2381, 359, 1, 0, 0, 0, 2382, 2387, 3, 362, 181, 0, 2383, 2385, 5, 508, 0, 0, 2384, 2383, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2386, 1, 0, 0, 0, 2386, 2388, 3, 364, 182, 0, 2387, 2384, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 361, 1, 0, 0, 0, 2389, 2393, 3, 326, 163, 0, 2390, 2393, 3, 298, 149, 0, 2391, 2393, 5, 540, 0, 0, 2392, 2389, 1, 0, 0, 0, 2392, 2390, 1, 0, 0, 0, 2392, 2391, 1, 0, 0, 0, 2393, 363, 1, 0, 0, 0, 2394, 2399, 5, 541, 0, 0, 2395, 2399, 5, 542, 0, 0, 2396, 2399, 3, 384, 192, 0, 2397, 2399, 5, 540, 0, 0, 2398, 2394, 1, 0, 0, 0, 2398, 2395, 1, 0, 0, 0, 2398, 2396, 1, 0, 0, 0, 2398, 2397, 1, 0, 0, 0, 2399, 365, 1, 0, 0, 0, 2400, 2407, 5, 10, 0, 0, 2401, 2402, 5, 514, 0, 0, 2402, 2407, 5, 514, 0, 0, 2403, 2407, 5, 259, 0, 0, 2404, 2405, 5, 513, 0, 0, 2405, 2407, 5, 513, 0, 0, 2406, 2400, 1, 0, 0, 0, 2406, 2401, 1, 0, 0, 0, 2406, 2403, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2407, 367, 1, 0, 0, 0, 2408, 2423, 5, 508, 0, 0, 2409, 2423, 5, 509, 0, 0, 2410, 2423, 5, 510, 0, 0, 2411, 2412, 5, 510, 0, 0, 2412, 2423, 5, 508, 0, 0, 2413, 2414, 5, 509, 0, 0, 2414, 2423, 5, 508, 0, 0, 2415, 2416, 5, 510, 0, 0, 2416, 2423, 5, 509, 0, 0, 2417, 2418, 5, 511, 0, 0, 2418, 2423, 5, 508, 0, 0, 2419, 2420, 5, 510, 0, 0, 2420, 2421, 5, 508, 0, 0, 2421, 2423, 5, 509, 0, 0, 2422, 2408, 1, 0, 0, 0, 2422, 2409, 1, 0, 0, 0, 2422, 2410, 1, 0, 0, 0, 2422, 2411, 1, 0, 0, 0, 2422, 2413, 1, 0, 0, 0, 2422, 2415, 1, 0, 0, 0, 2422, 2417, 1, 0, 0, 0, 2422, 2419, 1, 0, 0, 0, 2423, 369, 1, 0, 0, 0, 2424, 2425, 5, 510, 0, 0, 2425, 2432, 5, 510, 0, 0, 2426, 2427, 5, 509, 0, 0, 2427, 2432, 5, 509, 0, 0, 2428, 2432, 5, 514, 0, 0, 2429, 2432, 5, 515, 0, 0, 2430, 2432, 5, 513, 0, 0, 2431, 2424, 1, 0, 0, 0, 2431, 2426, 1, 0, 0, 0, 2431, 2428, 1, 0, 0, 0, 2431, 2429, 1, 0, 0, 0, 2431, 2430, 1, 0, 0, 0, 2432, 371, 1, 0, 0, 0, 2433, 2434, 7, 37, 0, 0, 2434, 373, 1, 0, 0, 0, 2435, 2436, 7, 38, 0, 0, 2436, 375, 1, 0, 0, 0, 2437, 2452, 3, 304, 152, 0, 2438, 2452, 3, 378, 189, 0, 2439, 2452, 3, 380, 190, 0, 2440, 2442, 5, 532, 0, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2452, 3, 382, 191, 0, 2444, 2452, 3, 384, 192, 0, 2445, 2452, 5, 542, 0, 0, 2446, 2452, 5, 543, 0, 0, 2447, 2449, 5, 243, 0, 0, 2448, 2447, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2452, 5, 246, 0, 0, 2451, 2437, 1, 0, 0, 0, 2451, 2438, 1, 0, 0, 0, 2451, 2439, 1, 0, 0, 0, 2451, 2441, 1, 0, 0, 0, 2451, 2444, 1, 0, 0, 0, 2451, 2445, 1, 0, 0, 0, 2451, 2446, 1, 0, 0, 0, 2451, 2448, 1, 0, 0, 0, 2452, 377, 1, 0, 0, 0, 2453, 2454, 3, 388, 194, 0, 2454, 2455, 3, 380, 190, 0, 2455, 379, 1, 0, 0, 0, 2456, 2457, 5, 540, 0, 0, 2457, 381, 1, 0, 0, 0, 2458, 2459, 5, 541, 0, 0, 2459, 383, 1, 0, 0, 0, 2460, 2461, 7, 39, 0, 0, 2461, 385, 1, 0, 0, 0, 2462, 2463, 7, 40, 0, 0, 2463, 387, 1, 0, 0, 0, 2464, 2465, 7, 41, 0, 0, 2465, 389, 1, 0, 0, 0, 2466, 2467, 7, 42, 0, 0, 2467, 391, 1, 0, 0, 0, 2468, 2469, 7, 43, 0, 0, 2469, 393, 1, 0, 0, 0, 2470, 2471, 7, 44, 0, 0, 2471, 395, 1, 0, 0, 0, 2472, 2473, 7, 45, 0, 0, 2473, 397, 1, 0, 0, 0, 2474, 2475, 7, 46, 0, 0, 2475, 399, 1, 0, 0, 0, 2476, 2477, 7, 47, 0, 0, 2477, 401, 1, 0, 0, 0, 301, 405, 412, 415, 429, 447, 451, 460, 465, 472, 483, 492, 504, 507, 514, 517, 525, 529, 534, 537, 544, 552, 556, 568, 576, 580, 612, 615, 620, 624, 628, 632, 641, 646, 650, 654, 659, 662, 666, 671, 677, 682, 687, 691, 695, 699, 709, 717, 721, 725, 729, 733, 737, 741, 745, 749, 751, 761, 769, 793, 807, 812, 816, 822, 825, 828, 835, 838, 847, 859, 883, 895, 900, 904, 912, 916, 922, 932, 937, 943, 947, 951, 955, 964, 968, 975, 978, 988, 996, 1004, 1008, 1023, 1042, 1053, 1057, 1064, 1069, 1075, 1079, 1086, 1090, 1094, 1098, 1106, 1110, 1115, 1121, 1127, 1130, 1134, 1145, 1154, 1161, 1172, 1184, 1199, 1202, 1206, 1209, 1211, 1216, 1220, 1223, 1227, 1236, 1245, 1255, 1260, 1271, 1274, 1277, 1280, 1283, 1289, 1293, 1301, 1304, 1309, 1312, 1316, 1319, 1321, 1328, 1335, 1337, 1348, 1353, 1361, 1364, 1367, 1372, 1374, 1376, 1381, 1384, 1388, 1392, 1401, 1412, 1439, 1461, 1474, 1486, 1499, 1511, 1523, 1529, 1556, 1564, 1568, 1571, 1574, 1581, 1584, 1587, 1590, 1593, 1596, 1601, 1604, 1613, 1618, 1621, 1625, 1630, 1636, 1641, 1645, 1664, 1672, 1680, 1684, 1688, 1698, 1724, 1732, 1750, 1763, 1771, 1788, 1790, 1801, 1804, 1806, 1810, 1814, 1821, 1830, 1836, 1849, 1856, 1861, 1867, 1874, 1881, 1883, 1893, 1896, 1908, 1913, 1916, 1922, 1924, 1930, 1951, 1953, 1961, 1968, 1971, 1975, 1982, 1986, 1995, 1999, 2015, 2024, 2059, 2068, 2077, 2083, 2087, 2097, 2103, 2109, 2113, 2119, 2123, 2129, 2131, 2134, 2137, 2143, 2149, 2152, 2156, 2164, 2168, 2172, 2177, 2181, 2186, 2191, 2195, 2203, 2208, 2212, 2219, 2224, 2232, 2236, 2239, 2243, 2252, 2255, 2266, 2272, 2290, 2295, 2300, 2307, 2309, 2314, 2321, 2323, 2328, 2335, 2337, 2342, 2349, 2351, 2358, 2377, 2384, 2387, 2392, 2398, 2406, 2422, 2431, 2441, 2448, 2451] \ No newline at end of file diff --git a/src/lib/flink/FlinkSqlParser.tokens b/src/lib/flink/FlinkSqlParser.tokens index 48749ead..d76db2a5 100644 --- a/src/lib/flink/FlinkSqlParser.tokens +++ b/src/lib/flink/FlinkSqlParser.tokens @@ -143,403 +143,405 @@ KW_FILTER=142 KW_FIRST_VALUE=143 KW_FLOAT=144 KW_FLOOR=145 -KW_FOR=146 -KW_FOREIGN=147 -KW_FRAME_ROW=148 -KW_FREE=149 -KW_FRIDAY=150 -KW_FROM=151 -KW_FULL=152 -KW_FUNCTION=153 -KW_FUNCTIONS=154 -KW_FUSION=155 -KW_GET=156 -KW_GLOBAL=157 -KW_GRANT=158 -KW_GROUP=159 -KW_GROUPING=160 -KW_GROUPS=161 -KW_GROUP_CONCAT=162 -KW_HAVING=163 -KW_HOLD=164 -KW_HOUR=165 -KW_IDENTITY=166 -KW_IF=167 -KW_ILIKE=168 -KW_IMPORT=169 -KW_IN=170 -KW_INCLUDE=171 -KW_INDICATOR=172 -KW_INITIAL=173 -KW_INNER=174 -KW_INOUT=175 -KW_INSENSITIVE=176 -KW_INSERT=177 -KW_INT=178 -KW_INTEGER=179 -KW_INTERSECT=180 -KW_INTERSECTION=181 -KW_INTERVAL=182 -KW_INTO=183 -KW_IS=184 -KW_JOIN=185 -KW_JSON=186 -KW_JSON_ARRAY=187 -KW_JSON_ARRAYAGG=188 -KW_JSON_EXECUTION_PLAN=189 -KW_JSON_EXISTS=190 -KW_JSON_OBJECT=191 -KW_JSON_OBJECTAGG=192 -KW_JSON_QUERY=193 -KW_JSON_VALUE=194 -KW_LAG=195 -KW_LANGUAGE=196 -KW_LARGE=197 -KW_LAST_VALUE=198 -KW_LATERAL=199 -KW_LEAD=200 -KW_LEADING=201 -KW_LEFT=202 -KW_LIKE=203 -KW_LIKE_REGEX=204 -KW_LIMIT=205 -KW_LN=206 -KW_LOCAL=207 -KW_LOCALTIME=208 -KW_LOCALTIMESTAMP=209 -KW_LOWER=210 -KW_MATCH=211 -KW_MATCHES=212 -KW_MATCH_NUMBER=213 -KW_MATCH_RECOGNIZE=214 -KW_MAX=215 -KW_MEASURES=216 -KW_MEMBER=217 -KW_MERGE=218 -KW_METADATA=219 -KW_METHOD=220 -KW_MIN=221 -KW_MINUS=222 -KW_MINUTE=223 -KW_MOD=224 -KW_MODIFIES=225 -KW_MODIFY=226 -KW_MODULE=227 -KW_MODULES=228 -KW_MONDAY=229 -KW_MONTH=230 -KW_MORE=231 -KW_MULTISET=232 -KW_NATIONAL=233 -KW_NATURAL=234 -KW_NCHAR=235 -KW_NCLOB=236 -KW_NEW=237 -KW_NEXT=238 -KW_NO=239 -KW_NONE=240 -KW_NORMALIZE=241 -KW_NOT=242 -KW_NTH_VALUE=243 -KW_NTILE=244 -KW_NULL=245 -KW_NULLIF=246 -KW_NUMERIC=247 -KW_OCCURRENCES_REGEX=248 -KW_OCTET_LENGTH=249 -KW_OF=250 -KW_OFFSET=251 -KW_OLD=252 -KW_OMIT=253 -KW_ON=254 -KW_ONE=255 -KW_ONLY=256 -KW_OPEN=257 -KW_OR=258 -KW_ORDER=259 -KW_ORDINAL=260 -KW_OUT=261 -KW_OUTER=262 -KW_OVER=263 -KW_OVERLAPS=264 -KW_OVERLAY=265 -KW_OVERWRITE=266 -KW_OVERWRITING=267 -KW_PARAMETER=268 -KW_PARTITION=269 -KW_PARTITIONED=270 -KW_PARTITIONS=271 -KW_PATTERN=272 -KW_PER=273 -KW_PERCENT=274 -KW_PERCENTILE_CONT=275 -KW_PERCENTILE_DISC=276 -KW_PERCENT_RANK=277 -KW_PERIOD=278 -KW_PERMUTE=279 -KW_PIVOT=280 -KW_PORTION=281 -KW_POSITION=282 -KW_POSITION_REGEX=283 -KW_POWER=284 -KW_PRECEDES=285 -KW_PRECISION=286 -KW_PREPARE=287 -KW_PREV=288 -KW_PRIMARY=289 -KW_PROCEDURE=290 -KW_QUALIFY=291 -KW_QUARTERS=292 -KW_RANGE=293 -KW_RANK=294 -KW_RAW=295 -KW_READS=296 -KW_REAL=297 -KW_RECURSIVE=298 -KW_REF=299 -KW_REFERENCES=300 -KW_REFERENCING=301 -KW_REGR_AVGX=302 -KW_REGR_AVGY=303 -KW_REGR_COUNT=304 -KW_REGR_INTERCEPT=305 -KW_REGR_R2=306 -KW_REGR_SLOPE=307 -KW_REGR_SXX=308 -KW_REGR_SXY=309 -KW_REGR_SYY=310 -KW_RELEASE=311 -KW_RENAME=312 -KW_RESET=313 -KW_RESULT=314 -KW_RETURN=315 -KW_RETURNS=316 -KW_REVOKE=317 -KW_RIGHT=318 -KW_RLIKE=319 -KW_ROLLBACK=320 -KW_ROLLUP=321 -KW_ROW=322 -KW_ROWS=323 -KW_ROW_NUMBER=324 -KW_RUNNING=325 -KW_SAFE_CAST=326 -KW_SAFE_OFFSET=327 -KW_SAFE_ORDINAL=328 -KW_SATURDAY=329 -KW_SAVEPOINT=330 -KW_SCALA=331 -KW_SCOPE=332 -KW_SCROLL=333 -KW_SEARCH=334 -KW_SECOND=335 -KW_SEEK=336 -KW_SELECT=337 -KW_SENSITIVE=338 -KW_SEPARATOR=339 -KW_SESSION_USER=340 -KW_SET=341 -KW_SHOW=342 -KW_SIMILAR=343 -KW_SKIP=344 -KW_SMALLINT=345 -KW_SOME=346 -KW_SPECIFIC=347 -KW_SPECIFICTYPE=348 -KW_SQL=349 -KW_SQLEXCEPTION=350 -KW_SQLSTATE=351 -KW_SQLWARNING=352 -KW_SQRT=353 -KW_START=354 -KW_STATEMENT=355 -KW_STATIC=356 -KW_STATISTICS=357 -KW_STDDEV_POP=358 -KW_STDDEV_SAMP=359 -KW_STREAM=360 -KW_STRING=361 -KW_STRING_AGG=362 -KW_SUBMULTISET=363 -KW_SUBSET=364 -KW_SUBSTRING=365 -KW_SUBSTRING_REGEX=366 -KW_SUCCEEDS=367 -KW_SUM=368 -KW_SUNDAY=369 -KW_SYMMETRIC=370 -KW_SYSTEM=371 -KW_SYSTEM_TIME=372 -KW_SYSTEM_USER=373 -KW_TABLE=374 -KW_TABLES=375 -KW_TABLESAMPLE=376 -KW_THEN=377 -KW_THURSDAY=378 -KW_TIME=379 -KW_TIMESTAMP=380 -KW_TIMESTAMP_DIFF=381 -KW_TIMESTAMP_LTZ=382 -KW_TIMESTAMP_TRUNC=383 -KW_TIMEZONE_HOUR=384 -KW_TIMEZONE_MINUTE=385 -KW_TIME_DIFF=386 -KW_TIME_TRUNC=387 -KW_TINYINT=388 -KW_TO=389 -KW_TRAILING=390 -KW_TRANSLATE=391 -KW_TRANSLATE_REGEX=392 -KW_TRANSLATION=393 -KW_TREAT=394 -KW_TRIGGER=395 -KW_TRIM=396 -KW_TRIM_ARRAY=397 -KW_TRUE=398 -KW_TRUNCATE=399 -KW_TRY_CAST=400 -KW_TUESDAY=401 -KW_UESCAPE=402 -KW_UNION=403 -KW_UNIQUE=404 -KW_UNKNOWN=405 -KW_UNNEST=406 -KW_UNPIVOT=407 -KW_UPDATE=408 -KW_UPPER=409 -KW_UPSERT=410 -KW_USE=411 -KW_USER=412 -KW_USING=413 -KW_VALUE=414 -KW_VALUES=415 -KW_VALUE_OF=416 -KW_VARBINARY=417 -KW_VARCHAR=418 -KW_VARYING=419 -KW_VAR_POP=420 -KW_VAR_SAMP=421 -KW_VERSIONING=422 -KW_VIEWS=423 -KW_VIRTUAL=424 -KW_WATERMARK=425 -KW_WATERMARKS=426 -KW_WEDNESDAY=427 -KW_WEEKS=428 -KW_WHEN=429 -KW_WHENEVER=430 -KW_WHERE=431 -KW_WIDTH_BUCKET=432 -KW_WINDOW=433 -KW_WITH=434 -KW_WITHIN=435 -KW_WITHOUT=436 -KW_YEAR=437 -KW_ADD=438 -KW_AFTER=439 -KW_ASC=440 -KW_CASCADE=441 -KW_CATALOG=442 -KW_CENTURY=443 -KW_CONFIG=444 -KW_CONSTRAINTS=445 -KW_CUMULATE=446 -KW_DATA=447 -KW_DATABASE=448 -KW_DAYS=449 -KW_DECADE=450 -KW_DESC=451 -KW_DESCRIPTOR=452 -KW_DIV=453 -KW_ENGINE=454 -KW_EPOCH=455 -KW_EXCLUDING=456 -KW_FILE=457 -KW_FIRST=458 -KW_GENERATED=459 -KW_HOP=460 -KW_HOURS=461 -KW_IGNORE=462 -KW_INCLUDING=463 -KW_JAR=464 -KW_JARS=465 -KW_JAVA=466 -KW_KEY=467 -KW_LAST=468 -KW_LOAD=469 -KW_MAP=470 -KW_MICROSECOND=471 -KW_MILLENNIUM=472 -KW_MILLISECOND=473 -KW_MINUTES=474 -KW_MONTHS=475 -KW_NANOSECOND=476 -KW_NULLS=477 -KW_OPTIONS=478 -KW_PAST=479 -KW_PLAN=480 -KW_PRECEDING=481 -KW_PYTHON=482 -KW_PYTHON_ARCHIVES=483 -KW_PYTHON_DEPENDENCIES=484 -KW_PYTHON_FILES=485 -KW_PYTHON_JAR=486 -KW_PYTHON_PARAMETER=487 -KW_PYTHON_REQUIREMENTS=488 -KW_QUARTER=489 -KW_REMOVE=490 -KW_RESTRICT=491 -KW_SECONDS=492 -KW_SESSION=493 -KW_SETS=494 -KW_SIZE=495 -KW_SLIDE=496 -KW_STEP=497 -KW_TEMPORARY=498 -KW_TIMECOL=499 -KW_TUMBLE=500 -KW_UNLOAD=501 -KW_VIEW=502 -KW_WEEK=503 -KW_YEARS=504 -KW_ZONE=505 -EQUAL_SYMBOL=506 -GREATER_SYMBOL=507 -LESS_SYMBOL=508 -EXCLAMATION_SYMBOL=509 -BIT_NOT_OP=510 -BIT_OR_OP=511 -BIT_AND_OP=512 -BIT_XOR_OP=513 -DOT=514 -LS_BRACKET=515 -RS_BRACKET=516 -LR_BRACKET=517 -RR_BRACKET=518 -LB_BRACKET=519 -RB_BRACKET=520 -COMMA=521 -SEMICOLON=522 -AT_SIGN=523 -SINGLE_QUOTE_SYMB=524 -DOUBLE_QUOTE_SYMB=525 -REVERSE_QUOTE_SYMB=526 -COLON_SYMB=527 -ASTERISK_SIGN=528 -UNDERLINE_SIGN=529 -HYPHEN_SIGN=530 -ADD_SIGN=531 -PERCENT_SIGN=532 -DOUBLE_VERTICAL_SIGN=533 -DOUBLE_HYPHEN_SIGN=534 -SLASH_SIGN=535 -QUESTION_MARK_SIGN=536 -DOUBLE_RIGHT_ARROW=537 -STRING_LITERAL=538 -DIG_LITERAL=539 -REAL_LITERAL=540 -BIT_STRING=541 -ID_LITERAL=542 +KW_FOLLOWING=146 +KW_FOR=147 +KW_FOREIGN=148 +KW_FRAME_ROW=149 +KW_FREE=150 +KW_FRIDAY=151 +KW_FROM=152 +KW_FULL=153 +KW_FUNCTION=154 +KW_FUNCTIONS=155 +KW_FUSION=156 +KW_GET=157 +KW_GLOBAL=158 +KW_GRANT=159 +KW_GROUP=160 +KW_GROUPING=161 +KW_GROUPS=162 +KW_GROUP_CONCAT=163 +KW_HAVING=164 +KW_HOLD=165 +KW_HOUR=166 +KW_IDENTITY=167 +KW_IF=168 +KW_ILIKE=169 +KW_IMPORT=170 +KW_IN=171 +KW_INCLUDE=172 +KW_INDICATOR=173 +KW_INITIAL=174 +KW_INNER=175 +KW_INOUT=176 +KW_INSENSITIVE=177 +KW_INSERT=178 +KW_INT=179 +KW_INTEGER=180 +KW_INTERSECT=181 +KW_INTERSECTION=182 +KW_INTERVAL=183 +KW_INTO=184 +KW_IS=185 +KW_JOIN=186 +KW_JSON=187 +KW_JSON_ARRAY=188 +KW_JSON_ARRAYAGG=189 +KW_JSON_EXECUTION_PLAN=190 +KW_JSON_EXISTS=191 +KW_JSON_OBJECT=192 +KW_JSON_OBJECTAGG=193 +KW_JSON_QUERY=194 +KW_JSON_VALUE=195 +KW_LAG=196 +KW_LANGUAGE=197 +KW_LARGE=198 +KW_LAST_VALUE=199 +KW_LATERAL=200 +KW_LEAD=201 +KW_LEADING=202 +KW_LEFT=203 +KW_LIKE=204 +KW_LIKE_REGEX=205 +KW_LIMIT=206 +KW_LN=207 +KW_LOCAL=208 +KW_LOCALTIME=209 +KW_LOCALTIMESTAMP=210 +KW_LOWER=211 +KW_MATCH=212 +KW_MATCHES=213 +KW_MATCH_NUMBER=214 +KW_MATCH_RECOGNIZE=215 +KW_MAX=216 +KW_MEASURES=217 +KW_MEMBER=218 +KW_MERGE=219 +KW_METADATA=220 +KW_METHOD=221 +KW_MIN=222 +KW_MINUS=223 +KW_MINUTE=224 +KW_MOD=225 +KW_MODIFIES=226 +KW_MODIFY=227 +KW_MODULE=228 +KW_MODULES=229 +KW_MONDAY=230 +KW_MONTH=231 +KW_MORE=232 +KW_MULTISET=233 +KW_NATIONAL=234 +KW_NATURAL=235 +KW_NCHAR=236 +KW_NCLOB=237 +KW_NEW=238 +KW_NEXT=239 +KW_NO=240 +KW_NONE=241 +KW_NORMALIZE=242 +KW_NOT=243 +KW_NTH_VALUE=244 +KW_NTILE=245 +KW_NULL=246 +KW_NULLIF=247 +KW_NUMERIC=248 +KW_OCCURRENCES_REGEX=249 +KW_OCTET_LENGTH=250 +KW_OF=251 +KW_OFFSET=252 +KW_OLD=253 +KW_OMIT=254 +KW_ON=255 +KW_ONE=256 +KW_ONLY=257 +KW_OPEN=258 +KW_OR=259 +KW_ORDER=260 +KW_ORDINAL=261 +KW_OUT=262 +KW_OUTER=263 +KW_OVER=264 +KW_OVERLAPS=265 +KW_OVERLAY=266 +KW_OVERWRITE=267 +KW_OVERWRITING=268 +KW_PARAMETER=269 +KW_PARTITION=270 +KW_PARTITIONED=271 +KW_PARTITIONS=272 +KW_PATTERN=273 +KW_PER=274 +KW_PERCENT=275 +KW_PERCENTILE_CONT=276 +KW_PERCENTILE_DISC=277 +KW_PERCENT_RANK=278 +KW_PERIOD=279 +KW_PERMUTE=280 +KW_PIVOT=281 +KW_PORTION=282 +KW_POSITION=283 +KW_POSITION_REGEX=284 +KW_POWER=285 +KW_PRECEDES=286 +KW_PRECISION=287 +KW_PREPARE=288 +KW_PREV=289 +KW_PRIMARY=290 +KW_PROCEDURE=291 +KW_QUALIFY=292 +KW_QUARTERS=293 +KW_RANGE=294 +KW_RANK=295 +KW_RAW=296 +KW_READS=297 +KW_REAL=298 +KW_RECURSIVE=299 +KW_REF=300 +KW_REFERENCES=301 +KW_REFERENCING=302 +KW_REGR_AVGX=303 +KW_REGR_AVGY=304 +KW_REGR_COUNT=305 +KW_REGR_INTERCEPT=306 +KW_REGR_R2=307 +KW_REGR_SLOPE=308 +KW_REGR_SXX=309 +KW_REGR_SXY=310 +KW_REGR_SYY=311 +KW_RELEASE=312 +KW_RENAME=313 +KW_RESET=314 +KW_RESULT=315 +KW_RETURN=316 +KW_RETURNS=317 +KW_REVOKE=318 +KW_RIGHT=319 +KW_RLIKE=320 +KW_ROLLBACK=321 +KW_ROLLUP=322 +KW_ROW=323 +KW_ROWS=324 +KW_ROW_NUMBER=325 +KW_RUNNING=326 +KW_SAFE_CAST=327 +KW_SAFE_OFFSET=328 +KW_SAFE_ORDINAL=329 +KW_SATURDAY=330 +KW_SAVEPOINT=331 +KW_SCALA=332 +KW_SCOPE=333 +KW_SCROLL=334 +KW_SEARCH=335 +KW_SECOND=336 +KW_SEEK=337 +KW_SELECT=338 +KW_SENSITIVE=339 +KW_SEPARATOR=340 +KW_SESSION_USER=341 +KW_SET=342 +KW_SHOW=343 +KW_SIMILAR=344 +KW_SKIP=345 +KW_SMALLINT=346 +KW_SOME=347 +KW_SPECIFIC=348 +KW_SPECIFICTYPE=349 +KW_SQL=350 +KW_SQLEXCEPTION=351 +KW_SQLSTATE=352 +KW_SQLWARNING=353 +KW_SQRT=354 +KW_START=355 +KW_STATEMENT=356 +KW_STATIC=357 +KW_STATISTICS=358 +KW_STDDEV_POP=359 +KW_STDDEV_SAMP=360 +KW_STREAM=361 +KW_STRING=362 +KW_STRING_AGG=363 +KW_SUBMULTISET=364 +KW_SUBSET=365 +KW_SUBSTRING=366 +KW_SUBSTRING_REGEX=367 +KW_SUCCEEDS=368 +KW_SUM=369 +KW_SUNDAY=370 +KW_SYMMETRIC=371 +KW_SYSTEM=372 +KW_SYSTEM_TIME=373 +KW_SYSTEM_USER=374 +KW_TABLE=375 +KW_TABLES=376 +KW_TABLESAMPLE=377 +KW_THEN=378 +KW_THURSDAY=379 +KW_TIME=380 +KW_TIMESTAMP=381 +KW_TIMESTAMP_DIFF=382 +KW_TIMESTAMP_LTZ=383 +KW_TIMESTAMP_TRUNC=384 +KW_TIMEZONE_HOUR=385 +KW_TIMEZONE_MINUTE=386 +KW_TIME_DIFF=387 +KW_TIME_TRUNC=388 +KW_TINYINT=389 +KW_TO=390 +KW_TRAILING=391 +KW_TRANSLATE=392 +KW_TRANSLATE_REGEX=393 +KW_TRANSLATION=394 +KW_TREAT=395 +KW_TRIGGER=396 +KW_TRIM=397 +KW_TRIM_ARRAY=398 +KW_TRUE=399 +KW_TRUNCATE=400 +KW_TRY_CAST=401 +KW_TUESDAY=402 +KW_UESCAPE=403 +KW_UNBOUNDED=404 +KW_UNION=405 +KW_UNIQUE=406 +KW_UNKNOWN=407 +KW_UNNEST=408 +KW_UNPIVOT=409 +KW_UPDATE=410 +KW_UPPER=411 +KW_UPSERT=412 +KW_USE=413 +KW_USER=414 +KW_USING=415 +KW_VALUE=416 +KW_VALUES=417 +KW_VALUE_OF=418 +KW_VARBINARY=419 +KW_VARCHAR=420 +KW_VARYING=421 +KW_VAR_POP=422 +KW_VAR_SAMP=423 +KW_VERSIONING=424 +KW_VIEWS=425 +KW_VIRTUAL=426 +KW_WATERMARK=427 +KW_WATERMARKS=428 +KW_WEDNESDAY=429 +KW_WEEKS=430 +KW_WHEN=431 +KW_WHENEVER=432 +KW_WHERE=433 +KW_WIDTH_BUCKET=434 +KW_WINDOW=435 +KW_WITH=436 +KW_WITHIN=437 +KW_WITHOUT=438 +KW_YEAR=439 +KW_ADD=440 +KW_AFTER=441 +KW_ASC=442 +KW_CASCADE=443 +KW_CATALOG=444 +KW_CENTURY=445 +KW_CONFIG=446 +KW_CONSTRAINTS=447 +KW_CUMULATE=448 +KW_DATA=449 +KW_DATABASE=450 +KW_DAYS=451 +KW_DECADE=452 +KW_DESC=453 +KW_DESCRIPTOR=454 +KW_DIV=455 +KW_ENGINE=456 +KW_EPOCH=457 +KW_EXCLUDING=458 +KW_FILE=459 +KW_FIRST=460 +KW_GENERATED=461 +KW_HOP=462 +KW_HOURS=463 +KW_IGNORE=464 +KW_INCLUDING=465 +KW_JAR=466 +KW_JARS=467 +KW_JAVA=468 +KW_KEY=469 +KW_LAST=470 +KW_LOAD=471 +KW_MAP=472 +KW_MICROSECOND=473 +KW_MILLENNIUM=474 +KW_MILLISECOND=475 +KW_MINUTES=476 +KW_MONTHS=477 +KW_NANOSECOND=478 +KW_NULLS=479 +KW_OPTIONS=480 +KW_PAST=481 +KW_PLAN=482 +KW_PRECEDING=483 +KW_PYTHON=484 +KW_PYTHON_ARCHIVES=485 +KW_PYTHON_DEPENDENCIES=486 +KW_PYTHON_FILES=487 +KW_PYTHON_JAR=488 +KW_PYTHON_PARAMETER=489 +KW_PYTHON_REQUIREMENTS=490 +KW_QUARTER=491 +KW_REMOVE=492 +KW_RESTRICT=493 +KW_SECONDS=494 +KW_SESSION=495 +KW_SETS=496 +KW_SIZE=497 +KW_SLIDE=498 +KW_STEP=499 +KW_TEMPORARY=500 +KW_TIMECOL=501 +KW_TUMBLE=502 +KW_UNLOAD=503 +KW_VIEW=504 +KW_WEEK=505 +KW_YEARS=506 +KW_ZONE=507 +EQUAL_SYMBOL=508 +GREATER_SYMBOL=509 +LESS_SYMBOL=510 +EXCLAMATION_SYMBOL=511 +BIT_NOT_OP=512 +BIT_OR_OP=513 +BIT_AND_OP=514 +BIT_XOR_OP=515 +DOT=516 +LS_BRACKET=517 +RS_BRACKET=518 +LR_BRACKET=519 +RR_BRACKET=520 +LB_BRACKET=521 +RB_BRACKET=522 +COMMA=523 +SEMICOLON=524 +AT_SIGN=525 +SINGLE_QUOTE_SYMB=526 +DOUBLE_QUOTE_SYMB=527 +REVERSE_QUOTE_SYMB=528 +COLON_SYMB=529 +ASTERISK_SIGN=530 +UNDERLINE_SIGN=531 +HYPHEN_SIGN=532 +ADD_SIGN=533 +PERCENT_SIGN=534 +DOUBLE_VERTICAL_SIGN=535 +DOUBLE_HYPHEN_SIGN=536 +SLASH_SIGN=537 +QUESTION_MARK_SIGN=538 +DOUBLE_RIGHT_ARROW=539 +STRING_LITERAL=540 +DIG_LITERAL=541 +REAL_LITERAL=542 +BIT_STRING=543 +ID_LITERAL=544 'ABS'=4 'ALL'=5 'ALLOCATE'=6 @@ -682,395 +684,397 @@ ID_LITERAL=542 'FIRST_VALUE'=143 'FLOAT'=144 'FLOOR'=145 -'FOR'=146 -'FOREIGN'=147 -'FRAME_ROW'=148 -'FREE'=149 -'FRIDAY'=150 -'FROM'=151 -'FULL'=152 -'FUNCTION'=153 -'FUNCTIONS'=154 -'FUSION'=155 -'GET'=156 -'GLOBAL'=157 -'GRANT'=158 -'GROUP'=159 -'GROUPING'=160 -'GROUPS'=161 -'GROUP_CONCAT'=162 -'HAVING'=163 -'HOLD'=164 -'HOUR'=165 -'IDENTITY'=166 -'IF'=167 -'ILIKE'=168 -'IMPORT'=169 -'IN'=170 -'INCLUDE'=171 -'INDICATOR'=172 -'INITIAL'=173 -'INNER'=174 -'INOUT'=175 -'INSENSITIVE'=176 -'INSERT'=177 -'INT'=178 -'INTEGER'=179 -'INTERSECT'=180 -'INTERSECTION'=181 -'INTERVAL'=182 -'INTO'=183 -'IS'=184 -'JOIN'=185 -'JSON'=186 -'JSON_ARRAY'=187 -'JSON_ARRAYAGG'=188 -'JSON_EXECUTION_PLAN'=189 -'JSON_EXISTS'=190 -'JSON_OBJECT'=191 -'JSON_OBJECTAGG'=192 -'JSON_QUERY'=193 -'JSON_VALUE'=194 -'LAG'=195 -'LANGUAGE'=196 -'LARGE'=197 -'LAST_VALUE'=198 -'LATERAL'=199 -'LEAD'=200 -'LEADING'=201 -'LEFT'=202 -'LIKE'=203 -'LIKE_REGEX'=204 -'LIMIT'=205 -'LN'=206 -'LOCAL'=207 -'LOCALTIME'=208 -'LOCALTIMESTAMP'=209 -'LOWER'=210 -'MATCH'=211 -'MATCHES'=212 -'MATCH_NUMBER'=213 -'MATCH_RECOGNIZE'=214 -'MAX'=215 -'MEASURES'=216 -'MEMBER'=217 -'MERGE'=218 -'METADATA'=219 -'METHOD'=220 -'MIN'=221 -'MINUS'=222 -'MINUTE'=223 -'MOD'=224 -'MODIFIES'=225 -'MODIFY'=226 -'MODULE'=227 -'MODULES'=228 -'MONDAY'=229 -'MONTH'=230 -'MORE'=231 -'MULTISET'=232 -'NATIONAL'=233 -'NATURAL'=234 -'NCHAR'=235 -'NCLOB'=236 -'NEW'=237 -'NEXT'=238 -'NO'=239 -'NONE'=240 -'NORMALIZE'=241 -'NOT'=242 -'NTH_VALUE'=243 -'NTILE'=244 -'NULL'=245 -'NULLIF'=246 -'NUMERIC'=247 -'OCCURRENCES_REGEX'=248 -'OCTET_LENGTH'=249 -'OF'=250 -'OFFSET'=251 -'OLD'=252 -'OMIT'=253 -'ON'=254 -'ONE'=255 -'ONLY'=256 -'OPEN'=257 -'OR'=258 -'ORDER'=259 -'ORDINAL'=260 -'OUT'=261 -'OUTER'=262 -'OVER'=263 -'OVERLAPS'=264 -'OVERLAY'=265 -'OVERWRITE'=266 -'OVERWRITING'=267 -'PARAMETER'=268 -'PARTITION'=269 -'PARTITIONED'=270 -'PARTITIONS'=271 -'PATTERN'=272 -'PER'=273 -'PERCENT'=274 -'PERCENTILE_CONT'=275 -'PERCENTILE_DISC'=276 -'PERCENT_RANK'=277 -'PERIOD'=278 -'PERMUTE'=279 -'PIVOT'=280 -'PORTION'=281 -'POSITION'=282 -'POSITION_REGEX'=283 -'POWER'=284 -'PRECEDES'=285 -'PRECISION'=286 -'PREPARE'=287 -'PREV'=288 -'PRIMARY'=289 -'PROCEDURE'=290 -'QUALIFY'=291 -'QUARTERS'=292 -'RANGE'=293 -'RANK'=294 -'RAW'=295 -'READS'=296 -'REAL'=297 -'RECURSIVE'=298 -'REF'=299 -'REFERENCES'=300 -'REFERENCING'=301 -'REGR_AVGX'=302 -'REGR_AVGY'=303 -'REGR_COUNT'=304 -'REGR_INTERCEPT'=305 -'REGR_R2'=306 -'REGR_SLOPE'=307 -'REGR_SXX'=308 -'REGR_SXY'=309 -'REGR_SYY'=310 -'RELEASE'=311 -'RENAME'=312 -'RESET'=313 -'RESULT'=314 -'RETURN'=315 -'RETURNS'=316 -'REVOKE'=317 -'RIGHT'=318 -'RLIKE'=319 -'ROLLBACK'=320 -'ROLLUP'=321 -'ROW'=322 -'ROWS'=323 -'ROW_NUMBER'=324 -'RUNNING'=325 -'SAFE_CAST'=326 -'SAFE_OFFSET'=327 -'SAFE_ORDINAL'=328 -'SATURDAY'=329 -'SAVEPOINT'=330 -'SCALA'=331 -'SCOPE'=332 -'SCROLL'=333 -'SEARCH'=334 -'SECOND'=335 -'SEEK'=336 -'SELECT'=337 -'SENSITIVE'=338 -'SEPARATOR'=339 -'SESSION_USER'=340 -'SET'=341 -'SHOW'=342 -'SIMILAR'=343 -'SKIP'=344 -'SMALLINT'=345 -'SOME'=346 -'SPECIFIC'=347 -'SPECIFICTYPE'=348 -'SQL'=349 -'SQLEXCEPTION'=350 -'SQLSTATE'=351 -'SQLWARNING'=352 -'SQRT'=353 -'START'=354 -'STATEMENT'=355 -'STATIC'=356 -'STATISTICS'=357 -'STDDEV_POP'=358 -'STDDEV_SAMP'=359 -'STREAM'=360 -'STRING'=361 -'STRING_AGG'=362 -'SUBMULTISET'=363 -'SUBSET'=364 -'SUBSTRING'=365 -'SUBSTRING_REGEX'=366 -'SUCCEEDS'=367 -'SUM'=368 -'SUNDAY'=369 -'SYMMETRIC'=370 -'SYSTEM'=371 -'SYSTEM_TIME'=372 -'SYSTEM_USER'=373 -'TABLE'=374 -'TABLES'=375 -'TABLESAMPLE'=376 -'THEN'=377 -'THURSDAY'=378 -'TIME'=379 -'TIMESTAMP'=380 -'TIMESTAMP_DIFF'=381 -'TIMESTAMP_LTZ'=382 -'TIMESTAMP_TRUNC'=383 -'TIMEZONE_HOUR'=384 -'TIMEZONE_MINUTE'=385 -'TIME_DIFF'=386 -'TIME_TRUNC'=387 -'TINYINT'=388 -'TO'=389 -'TRAILING'=390 -'TRANSLATE'=391 -'TRANSLATE_REGEX'=392 -'TRANSLATION'=393 -'TREAT'=394 -'TRIGGER'=395 -'TRIM'=396 -'TRIM_ARRAY'=397 -'TRUE'=398 -'TRUNCATE'=399 -'TRY_CAST'=400 -'TUESDAY'=401 -'UESCAPE'=402 -'UNION'=403 -'UNIQUE'=404 -'UNKNOWN'=405 -'UNNEST'=406 -'UNPIVOT'=407 -'UPDATE'=408 -'UPPER'=409 -'UPSERT'=410 -'USE'=411 -'USER'=412 -'USING'=413 -'VALUE'=414 -'VALUES'=415 -'VALUE_OF'=416 -'VARBINARY'=417 -'VARCHAR'=418 -'VARYING'=419 -'VAR_POP'=420 -'VAR_SAMP'=421 -'VERSIONING'=422 -'VIEWS'=423 -'VIRTUAL'=424 -'WATERMARK'=425 -'WATERMARKS'=426 -'WEDNESDAY'=427 -'WEEKS'=428 -'WHEN'=429 -'WHENEVER'=430 -'WHERE'=431 -'WIDTH_BUCKET'=432 -'WINDOW'=433 -'WITH'=434 -'WITHIN'=435 -'WITHOUT'=436 -'YEAR'=437 -'ADD'=438 -'AFTER'=439 -'ASC'=440 -'CASCADE'=441 -'CATALOG'=442 -'CENTURY'=443 -'CONFIG'=444 -'CONSTRAINTS'=445 -'CUMULATE'=446 -'DATA'=447 -'DATABASE'=448 -'DAYS'=449 -'DECADE'=450 -'DESC'=451 -'DESCRIPTOR'=452 -'DIV'=453 -'ENGINE'=454 -'EPOCH'=455 -'EXCLUDING'=456 -'FILE'=457 -'FIRST'=458 -'GENERATED'=459 -'HOP'=460 -'HOURS'=461 -'IGNORE'=462 -'INCLUDING'=463 -'JAR'=464 -'JARS'=465 -'JAVA'=466 -'KEY'=467 -'LAST'=468 -'LOAD'=469 -'MAP'=470 -'MICROSECOND'=471 -'MILLENNIUM'=472 -'MILLISECOND'=473 -'MINUTES'=474 -'MONTHS'=475 -'NANOSECOND'=476 -'NULLS'=477 -'OPTIONS'=478 -'PAST'=479 -'PLAN'=480 -'PRECEDING'=481 -'PYTHON'=482 -'PYTHON_ARCHIVES'=483 -'PYTHON_DEPENDENCIES'=484 -'PYTHON_FILES'=485 -'PYTHON_JAR'=486 -'PYTHON_PARAMETER'=487 -'PYTHON_REQUIREMENTS'=488 -'QUARTER'=489 -'REMOVE'=490 -'RESTRICT'=491 -'SECONDS'=492 -'SESSION'=493 -'SETS'=494 -'SIZE'=495 -'SLIDE'=496 -'STEP'=497 -'TEMPORARY'=498 -'TIMECOL'=499 -'TUMBLE'=500 -'UNLOAD'=501 -'VIEW'=502 -'WEEK'=503 -'YEARS'=504 -'ZONE'=505 -'='=506 -'>'=507 -'<'=508 -'!'=509 -'~'=510 -'|'=511 -'&'=512 -'^'=513 -'.'=514 -'['=515 -']'=516 -'('=517 -')'=518 -'{'=519 -'}'=520 -','=521 -';'=522 -'@'=523 -'\''=524 -'"'=525 -'`'=526 -':'=527 -'*'=528 -'_'=529 -'-'=530 -'+'=531 -'%'=532 -'||'=533 -'--'=534 -'/'=535 -'?'=536 -'=>'=537 +'FOLLOWING'=146 +'FOR'=147 +'FOREIGN'=148 +'FRAME_ROW'=149 +'FREE'=150 +'FRIDAY'=151 +'FROM'=152 +'FULL'=153 +'FUNCTION'=154 +'FUNCTIONS'=155 +'FUSION'=156 +'GET'=157 +'GLOBAL'=158 +'GRANT'=159 +'GROUP'=160 +'GROUPING'=161 +'GROUPS'=162 +'GROUP_CONCAT'=163 +'HAVING'=164 +'HOLD'=165 +'HOUR'=166 +'IDENTITY'=167 +'IF'=168 +'ILIKE'=169 +'IMPORT'=170 +'IN'=171 +'INCLUDE'=172 +'INDICATOR'=173 +'INITIAL'=174 +'INNER'=175 +'INOUT'=176 +'INSENSITIVE'=177 +'INSERT'=178 +'INT'=179 +'INTEGER'=180 +'INTERSECT'=181 +'INTERSECTION'=182 +'INTERVAL'=183 +'INTO'=184 +'IS'=185 +'JOIN'=186 +'JSON'=187 +'JSON_ARRAY'=188 +'JSON_ARRAYAGG'=189 +'JSON_EXECUTION_PLAN'=190 +'JSON_EXISTS'=191 +'JSON_OBJECT'=192 +'JSON_OBJECTAGG'=193 +'JSON_QUERY'=194 +'JSON_VALUE'=195 +'LAG'=196 +'LANGUAGE'=197 +'LARGE'=198 +'LAST_VALUE'=199 +'LATERAL'=200 +'LEAD'=201 +'LEADING'=202 +'LEFT'=203 +'LIKE'=204 +'LIKE_REGEX'=205 +'LIMIT'=206 +'LN'=207 +'LOCAL'=208 +'LOCALTIME'=209 +'LOCALTIMESTAMP'=210 +'LOWER'=211 +'MATCH'=212 +'MATCHES'=213 +'MATCH_NUMBER'=214 +'MATCH_RECOGNIZE'=215 +'MAX'=216 +'MEASURES'=217 +'MEMBER'=218 +'MERGE'=219 +'METADATA'=220 +'METHOD'=221 +'MIN'=222 +'MINUS'=223 +'MINUTE'=224 +'MOD'=225 +'MODIFIES'=226 +'MODIFY'=227 +'MODULE'=228 +'MODULES'=229 +'MONDAY'=230 +'MONTH'=231 +'MORE'=232 +'MULTISET'=233 +'NATIONAL'=234 +'NATURAL'=235 +'NCHAR'=236 +'NCLOB'=237 +'NEW'=238 +'NEXT'=239 +'NO'=240 +'NONE'=241 +'NORMALIZE'=242 +'NOT'=243 +'NTH_VALUE'=244 +'NTILE'=245 +'NULL'=246 +'NULLIF'=247 +'NUMERIC'=248 +'OCCURRENCES_REGEX'=249 +'OCTET_LENGTH'=250 +'OF'=251 +'OFFSET'=252 +'OLD'=253 +'OMIT'=254 +'ON'=255 +'ONE'=256 +'ONLY'=257 +'OPEN'=258 +'OR'=259 +'ORDER'=260 +'ORDINAL'=261 +'OUT'=262 +'OUTER'=263 +'OVER'=264 +'OVERLAPS'=265 +'OVERLAY'=266 +'OVERWRITE'=267 +'OVERWRITING'=268 +'PARAMETER'=269 +'PARTITION'=270 +'PARTITIONED'=271 +'PARTITIONS'=272 +'PATTERN'=273 +'PER'=274 +'PERCENT'=275 +'PERCENTILE_CONT'=276 +'PERCENTILE_DISC'=277 +'PERCENT_RANK'=278 +'PERIOD'=279 +'PERMUTE'=280 +'PIVOT'=281 +'PORTION'=282 +'POSITION'=283 +'POSITION_REGEX'=284 +'POWER'=285 +'PRECEDES'=286 +'PRECISION'=287 +'PREPARE'=288 +'PREV'=289 +'PRIMARY'=290 +'PROCEDURE'=291 +'QUALIFY'=292 +'QUARTERS'=293 +'RANGE'=294 +'RANK'=295 +'RAW'=296 +'READS'=297 +'REAL'=298 +'RECURSIVE'=299 +'REF'=300 +'REFERENCES'=301 +'REFERENCING'=302 +'REGR_AVGX'=303 +'REGR_AVGY'=304 +'REGR_COUNT'=305 +'REGR_INTERCEPT'=306 +'REGR_R2'=307 +'REGR_SLOPE'=308 +'REGR_SXX'=309 +'REGR_SXY'=310 +'REGR_SYY'=311 +'RELEASE'=312 +'RENAME'=313 +'RESET'=314 +'RESULT'=315 +'RETURN'=316 +'RETURNS'=317 +'REVOKE'=318 +'RIGHT'=319 +'RLIKE'=320 +'ROLLBACK'=321 +'ROLLUP'=322 +'ROW'=323 +'ROWS'=324 +'ROW_NUMBER'=325 +'RUNNING'=326 +'SAFE_CAST'=327 +'SAFE_OFFSET'=328 +'SAFE_ORDINAL'=329 +'SATURDAY'=330 +'SAVEPOINT'=331 +'SCALA'=332 +'SCOPE'=333 +'SCROLL'=334 +'SEARCH'=335 +'SECOND'=336 +'SEEK'=337 +'SELECT'=338 +'SENSITIVE'=339 +'SEPARATOR'=340 +'SESSION_USER'=341 +'SET'=342 +'SHOW'=343 +'SIMILAR'=344 +'SKIP'=345 +'SMALLINT'=346 +'SOME'=347 +'SPECIFIC'=348 +'SPECIFICTYPE'=349 +'SQL'=350 +'SQLEXCEPTION'=351 +'SQLSTATE'=352 +'SQLWARNING'=353 +'SQRT'=354 +'START'=355 +'STATEMENT'=356 +'STATIC'=357 +'STATISTICS'=358 +'STDDEV_POP'=359 +'STDDEV_SAMP'=360 +'STREAM'=361 +'STRING'=362 +'STRING_AGG'=363 +'SUBMULTISET'=364 +'SUBSET'=365 +'SUBSTRING'=366 +'SUBSTRING_REGEX'=367 +'SUCCEEDS'=368 +'SUM'=369 +'SUNDAY'=370 +'SYMMETRIC'=371 +'SYSTEM'=372 +'SYSTEM_TIME'=373 +'SYSTEM_USER'=374 +'TABLE'=375 +'TABLES'=376 +'TABLESAMPLE'=377 +'THEN'=378 +'THURSDAY'=379 +'TIME'=380 +'TIMESTAMP'=381 +'TIMESTAMP_DIFF'=382 +'TIMESTAMP_LTZ'=383 +'TIMESTAMP_TRUNC'=384 +'TIMEZONE_HOUR'=385 +'TIMEZONE_MINUTE'=386 +'TIME_DIFF'=387 +'TIME_TRUNC'=388 +'TINYINT'=389 +'TO'=390 +'TRAILING'=391 +'TRANSLATE'=392 +'TRANSLATE_REGEX'=393 +'TRANSLATION'=394 +'TREAT'=395 +'TRIGGER'=396 +'TRIM'=397 +'TRIM_ARRAY'=398 +'TRUE'=399 +'TRUNCATE'=400 +'TRY_CAST'=401 +'TUESDAY'=402 +'UESCAPE'=403 +'UNBOUNDED'=404 +'UNION'=405 +'UNIQUE'=406 +'UNKNOWN'=407 +'UNNEST'=408 +'UNPIVOT'=409 +'UPDATE'=410 +'UPPER'=411 +'UPSERT'=412 +'USE'=413 +'USER'=414 +'USING'=415 +'VALUE'=416 +'VALUES'=417 +'VALUE_OF'=418 +'VARBINARY'=419 +'VARCHAR'=420 +'VARYING'=421 +'VAR_POP'=422 +'VAR_SAMP'=423 +'VERSIONING'=424 +'VIEWS'=425 +'VIRTUAL'=426 +'WATERMARK'=427 +'WATERMARKS'=428 +'WEDNESDAY'=429 +'WEEKS'=430 +'WHEN'=431 +'WHENEVER'=432 +'WHERE'=433 +'WIDTH_BUCKET'=434 +'WINDOW'=435 +'WITH'=436 +'WITHIN'=437 +'WITHOUT'=438 +'YEAR'=439 +'ADD'=440 +'AFTER'=441 +'ASC'=442 +'CASCADE'=443 +'CATALOG'=444 +'CENTURY'=445 +'CONFIG'=446 +'CONSTRAINTS'=447 +'CUMULATE'=448 +'DATA'=449 +'DATABASE'=450 +'DAYS'=451 +'DECADE'=452 +'DESC'=453 +'DESCRIPTOR'=454 +'DIV'=455 +'ENGINE'=456 +'EPOCH'=457 +'EXCLUDING'=458 +'FILE'=459 +'FIRST'=460 +'GENERATED'=461 +'HOP'=462 +'HOURS'=463 +'IGNORE'=464 +'INCLUDING'=465 +'JAR'=466 +'JARS'=467 +'JAVA'=468 +'KEY'=469 +'LAST'=470 +'LOAD'=471 +'MAP'=472 +'MICROSECOND'=473 +'MILLENNIUM'=474 +'MILLISECOND'=475 +'MINUTES'=476 +'MONTHS'=477 +'NANOSECOND'=478 +'NULLS'=479 +'OPTIONS'=480 +'PAST'=481 +'PLAN'=482 +'PRECEDING'=483 +'PYTHON'=484 +'PYTHON_ARCHIVES'=485 +'PYTHON_DEPENDENCIES'=486 +'PYTHON_FILES'=487 +'PYTHON_JAR'=488 +'PYTHON_PARAMETER'=489 +'PYTHON_REQUIREMENTS'=490 +'QUARTER'=491 +'REMOVE'=492 +'RESTRICT'=493 +'SECONDS'=494 +'SESSION'=495 +'SETS'=496 +'SIZE'=497 +'SLIDE'=498 +'STEP'=499 +'TEMPORARY'=500 +'TIMECOL'=501 +'TUMBLE'=502 +'UNLOAD'=503 +'VIEW'=504 +'WEEK'=505 +'YEARS'=506 +'ZONE'=507 +'='=508 +'>'=509 +'<'=510 +'!'=511 +'~'=512 +'|'=513 +'&'=514 +'^'=515 +'.'=516 +'['=517 +']'=518 +'('=519 +')'=520 +'{'=521 +'}'=522 +','=523 +';'=524 +'@'=525 +'\''=526 +'"'=527 +'`'=528 +':'=529 +'*'=530 +'_'=531 +'-'=532 +'+'=533 +'%'=534 +'||'=535 +'--'=536 +'/'=537 +'?'=538 +'=>'=539 diff --git a/src/lib/flink/FlinkSqlParser.ts b/src/lib/flink/FlinkSqlParser.ts index ff79d15a..b9026b69 100644 --- a/src/lib/flink/FlinkSqlParser.ts +++ b/src/lib/flink/FlinkSqlParser.ts @@ -162,403 +162,405 @@ export class FlinkSqlParser extends SQLParserBase { public static readonly KW_FIRST_VALUE = 143; public static readonly KW_FLOAT = 144; public static readonly KW_FLOOR = 145; - public static readonly KW_FOR = 146; - public static readonly KW_FOREIGN = 147; - public static readonly KW_FRAME_ROW = 148; - public static readonly KW_FREE = 149; - public static readonly KW_FRIDAY = 150; - public static readonly KW_FROM = 151; - public static readonly KW_FULL = 152; - public static readonly KW_FUNCTION = 153; - public static readonly KW_FUNCTIONS = 154; - public static readonly KW_FUSION = 155; - public static readonly KW_GET = 156; - public static readonly KW_GLOBAL = 157; - public static readonly KW_GRANT = 158; - public static readonly KW_GROUP = 159; - public static readonly KW_GROUPING = 160; - public static readonly KW_GROUPS = 161; - public static readonly KW_GROUP_CONCAT = 162; - public static readonly KW_HAVING = 163; - public static readonly KW_HOLD = 164; - public static readonly KW_HOUR = 165; - public static readonly KW_IDENTITY = 166; - public static readonly KW_IF = 167; - public static readonly KW_ILIKE = 168; - public static readonly KW_IMPORT = 169; - public static readonly KW_IN = 170; - public static readonly KW_INCLUDE = 171; - public static readonly KW_INDICATOR = 172; - public static readonly KW_INITIAL = 173; - public static readonly KW_INNER = 174; - public static readonly KW_INOUT = 175; - public static readonly KW_INSENSITIVE = 176; - public static readonly KW_INSERT = 177; - public static readonly KW_INT = 178; - public static readonly KW_INTEGER = 179; - public static readonly KW_INTERSECT = 180; - public static readonly KW_INTERSECTION = 181; - public static readonly KW_INTERVAL = 182; - public static readonly KW_INTO = 183; - public static readonly KW_IS = 184; - public static readonly KW_JOIN = 185; - public static readonly KW_JSON = 186; - public static readonly KW_JSON_ARRAY = 187; - public static readonly KW_JSON_ARRAYAGG = 188; - public static readonly KW_JSON_EXECUTION_PLAN = 189; - public static readonly KW_JSON_EXISTS = 190; - public static readonly KW_JSON_OBJECT = 191; - public static readonly KW_JSON_OBJECTAGG = 192; - public static readonly KW_JSON_QUERY = 193; - public static readonly KW_JSON_VALUE = 194; - public static readonly KW_LAG = 195; - public static readonly KW_LANGUAGE = 196; - public static readonly KW_LARGE = 197; - public static readonly KW_LAST_VALUE = 198; - public static readonly KW_LATERAL = 199; - public static readonly KW_LEAD = 200; - public static readonly KW_LEADING = 201; - public static readonly KW_LEFT = 202; - public static readonly KW_LIKE = 203; - public static readonly KW_LIKE_REGEX = 204; - public static readonly KW_LIMIT = 205; - public static readonly KW_LN = 206; - public static readonly KW_LOCAL = 207; - public static readonly KW_LOCALTIME = 208; - public static readonly KW_LOCALTIMESTAMP = 209; - public static readonly KW_LOWER = 210; - public static readonly KW_MATCH = 211; - public static readonly KW_MATCHES = 212; - public static readonly KW_MATCH_NUMBER = 213; - public static readonly KW_MATCH_RECOGNIZE = 214; - public static readonly KW_MAX = 215; - public static readonly KW_MEASURES = 216; - public static readonly KW_MEMBER = 217; - public static readonly KW_MERGE = 218; - public static readonly KW_METADATA = 219; - public static readonly KW_METHOD = 220; - public static readonly KW_MIN = 221; - public static readonly KW_MINUS = 222; - public static readonly KW_MINUTE = 223; - public static readonly KW_MOD = 224; - public static readonly KW_MODIFIES = 225; - public static readonly KW_MODIFY = 226; - public static readonly KW_MODULE = 227; - public static readonly KW_MODULES = 228; - public static readonly KW_MONDAY = 229; - public static readonly KW_MONTH = 230; - public static readonly KW_MORE = 231; - public static readonly KW_MULTISET = 232; - public static readonly KW_NATIONAL = 233; - public static readonly KW_NATURAL = 234; - public static readonly KW_NCHAR = 235; - public static readonly KW_NCLOB = 236; - public static readonly KW_NEW = 237; - public static readonly KW_NEXT = 238; - public static readonly KW_NO = 239; - public static readonly KW_NONE = 240; - public static readonly KW_NORMALIZE = 241; - public static readonly KW_NOT = 242; - public static readonly KW_NTH_VALUE = 243; - public static readonly KW_NTILE = 244; - public static readonly KW_NULL = 245; - public static readonly KW_NULLIF = 246; - public static readonly KW_NUMERIC = 247; - public static readonly KW_OCCURRENCES_REGEX = 248; - public static readonly KW_OCTET_LENGTH = 249; - public static readonly KW_OF = 250; - public static readonly KW_OFFSET = 251; - public static readonly KW_OLD = 252; - public static readonly KW_OMIT = 253; - public static readonly KW_ON = 254; - public static readonly KW_ONE = 255; - public static readonly KW_ONLY = 256; - public static readonly KW_OPEN = 257; - public static readonly KW_OR = 258; - public static readonly KW_ORDER = 259; - public static readonly KW_ORDINAL = 260; - public static readonly KW_OUT = 261; - public static readonly KW_OUTER = 262; - public static readonly KW_OVER = 263; - public static readonly KW_OVERLAPS = 264; - public static readonly KW_OVERLAY = 265; - public static readonly KW_OVERWRITE = 266; - public static readonly KW_OVERWRITING = 267; - public static readonly KW_PARAMETER = 268; - public static readonly KW_PARTITION = 269; - public static readonly KW_PARTITIONED = 270; - public static readonly KW_PARTITIONS = 271; - public static readonly KW_PATTERN = 272; - public static readonly KW_PER = 273; - public static readonly KW_PERCENT = 274; - public static readonly KW_PERCENTILE_CONT = 275; - public static readonly KW_PERCENTILE_DISC = 276; - public static readonly KW_PERCENT_RANK = 277; - public static readonly KW_PERIOD = 278; - public static readonly KW_PERMUTE = 279; - public static readonly KW_PIVOT = 280; - public static readonly KW_PORTION = 281; - public static readonly KW_POSITION = 282; - public static readonly KW_POSITION_REGEX = 283; - public static readonly KW_POWER = 284; - public static readonly KW_PRECEDES = 285; - public static readonly KW_PRECISION = 286; - public static readonly KW_PREPARE = 287; - public static readonly KW_PREV = 288; - public static readonly KW_PRIMARY = 289; - public static readonly KW_PROCEDURE = 290; - public static readonly KW_QUALIFY = 291; - public static readonly KW_QUARTERS = 292; - public static readonly KW_RANGE = 293; - public static readonly KW_RANK = 294; - public static readonly KW_RAW = 295; - public static readonly KW_READS = 296; - public static readonly KW_REAL = 297; - public static readonly KW_RECURSIVE = 298; - public static readonly KW_REF = 299; - public static readonly KW_REFERENCES = 300; - public static readonly KW_REFERENCING = 301; - public static readonly KW_REGR_AVGX = 302; - public static readonly KW_REGR_AVGY = 303; - public static readonly KW_REGR_COUNT = 304; - public static readonly KW_REGR_INTERCEPT = 305; - public static readonly KW_REGR_R2 = 306; - public static readonly KW_REGR_SLOPE = 307; - public static readonly KW_REGR_SXX = 308; - public static readonly KW_REGR_SXY = 309; - public static readonly KW_REGR_SYY = 310; - public static readonly KW_RELEASE = 311; - public static readonly KW_RENAME = 312; - public static readonly KW_RESET = 313; - public static readonly KW_RESULT = 314; - public static readonly KW_RETURN = 315; - public static readonly KW_RETURNS = 316; - public static readonly KW_REVOKE = 317; - public static readonly KW_RIGHT = 318; - public static readonly KW_RLIKE = 319; - public static readonly KW_ROLLBACK = 320; - public static readonly KW_ROLLUP = 321; - public static readonly KW_ROW = 322; - public static readonly KW_ROWS = 323; - public static readonly KW_ROW_NUMBER = 324; - public static readonly KW_RUNNING = 325; - public static readonly KW_SAFE_CAST = 326; - public static readonly KW_SAFE_OFFSET = 327; - public static readonly KW_SAFE_ORDINAL = 328; - public static readonly KW_SATURDAY = 329; - public static readonly KW_SAVEPOINT = 330; - public static readonly KW_SCALA = 331; - public static readonly KW_SCOPE = 332; - public static readonly KW_SCROLL = 333; - public static readonly KW_SEARCH = 334; - public static readonly KW_SECOND = 335; - public static readonly KW_SEEK = 336; - public static readonly KW_SELECT = 337; - public static readonly KW_SENSITIVE = 338; - public static readonly KW_SEPARATOR = 339; - public static readonly KW_SESSION_USER = 340; - public static readonly KW_SET = 341; - public static readonly KW_SHOW = 342; - public static readonly KW_SIMILAR = 343; - public static readonly KW_SKIP = 344; - public static readonly KW_SMALLINT = 345; - public static readonly KW_SOME = 346; - public static readonly KW_SPECIFIC = 347; - public static readonly KW_SPECIFICTYPE = 348; - public static readonly KW_SQL = 349; - public static readonly KW_SQLEXCEPTION = 350; - public static readonly KW_SQLSTATE = 351; - public static readonly KW_SQLWARNING = 352; - public static readonly KW_SQRT = 353; - public static readonly KW_START = 354; - public static readonly KW_STATEMENT = 355; - public static readonly KW_STATIC = 356; - public static readonly KW_STATISTICS = 357; - public static readonly KW_STDDEV_POP = 358; - public static readonly KW_STDDEV_SAMP = 359; - public static readonly KW_STREAM = 360; - public static readonly KW_STRING = 361; - public static readonly KW_STRING_AGG = 362; - public static readonly KW_SUBMULTISET = 363; - public static readonly KW_SUBSET = 364; - public static readonly KW_SUBSTRING = 365; - public static readonly KW_SUBSTRING_REGEX = 366; - public static readonly KW_SUCCEEDS = 367; - public static readonly KW_SUM = 368; - public static readonly KW_SUNDAY = 369; - public static readonly KW_SYMMETRIC = 370; - public static readonly KW_SYSTEM = 371; - public static readonly KW_SYSTEM_TIME = 372; - public static readonly KW_SYSTEM_USER = 373; - public static readonly KW_TABLE = 374; - public static readonly KW_TABLES = 375; - public static readonly KW_TABLESAMPLE = 376; - public static readonly KW_THEN = 377; - public static readonly KW_THURSDAY = 378; - public static readonly KW_TIME = 379; - public static readonly KW_TIMESTAMP = 380; - public static readonly KW_TIMESTAMP_DIFF = 381; - public static readonly KW_TIMESTAMP_LTZ = 382; - public static readonly KW_TIMESTAMP_TRUNC = 383; - public static readonly KW_TIMEZONE_HOUR = 384; - public static readonly KW_TIMEZONE_MINUTE = 385; - public static readonly KW_TIME_DIFF = 386; - public static readonly KW_TIME_TRUNC = 387; - public static readonly KW_TINYINT = 388; - public static readonly KW_TO = 389; - public static readonly KW_TRAILING = 390; - public static readonly KW_TRANSLATE = 391; - public static readonly KW_TRANSLATE_REGEX = 392; - public static readonly KW_TRANSLATION = 393; - public static readonly KW_TREAT = 394; - public static readonly KW_TRIGGER = 395; - public static readonly KW_TRIM = 396; - public static readonly KW_TRIM_ARRAY = 397; - public static readonly KW_TRUE = 398; - public static readonly KW_TRUNCATE = 399; - public static readonly KW_TRY_CAST = 400; - public static readonly KW_TUESDAY = 401; - public static readonly KW_UESCAPE = 402; - public static readonly KW_UNION = 403; - public static readonly KW_UNIQUE = 404; - public static readonly KW_UNKNOWN = 405; - public static readonly KW_UNNEST = 406; - public static readonly KW_UNPIVOT = 407; - public static readonly KW_UPDATE = 408; - public static readonly KW_UPPER = 409; - public static readonly KW_UPSERT = 410; - public static readonly KW_USE = 411; - public static readonly KW_USER = 412; - public static readonly KW_USING = 413; - public static readonly KW_VALUE = 414; - public static readonly KW_VALUES = 415; - public static readonly KW_VALUE_OF = 416; - public static readonly KW_VARBINARY = 417; - public static readonly KW_VARCHAR = 418; - public static readonly KW_VARYING = 419; - public static readonly KW_VAR_POP = 420; - public static readonly KW_VAR_SAMP = 421; - public static readonly KW_VERSIONING = 422; - public static readonly KW_VIEWS = 423; - public static readonly KW_VIRTUAL = 424; - public static readonly KW_WATERMARK = 425; - public static readonly KW_WATERMARKS = 426; - public static readonly KW_WEDNESDAY = 427; - public static readonly KW_WEEKS = 428; - public static readonly KW_WHEN = 429; - public static readonly KW_WHENEVER = 430; - public static readonly KW_WHERE = 431; - public static readonly KW_WIDTH_BUCKET = 432; - public static readonly KW_WINDOW = 433; - public static readonly KW_WITH = 434; - public static readonly KW_WITHIN = 435; - public static readonly KW_WITHOUT = 436; - public static readonly KW_YEAR = 437; - public static readonly KW_ADD = 438; - public static readonly KW_AFTER = 439; - public static readonly KW_ASC = 440; - public static readonly KW_CASCADE = 441; - public static readonly KW_CATALOG = 442; - public static readonly KW_CENTURY = 443; - public static readonly KW_CONFIG = 444; - public static readonly KW_CONSTRAINTS = 445; - public static readonly KW_CUMULATE = 446; - public static readonly KW_DATA = 447; - public static readonly KW_DATABASE = 448; - public static readonly KW_DAYS = 449; - public static readonly KW_DECADE = 450; - public static readonly KW_DESC = 451; - public static readonly KW_DESCRIPTOR = 452; - public static readonly KW_DIV = 453; - public static readonly KW_ENGINE = 454; - public static readonly KW_EPOCH = 455; - public static readonly KW_EXCLUDING = 456; - public static readonly KW_FILE = 457; - public static readonly KW_FIRST = 458; - public static readonly KW_GENERATED = 459; - public static readonly KW_HOP = 460; - public static readonly KW_HOURS = 461; - public static readonly KW_IGNORE = 462; - public static readonly KW_INCLUDING = 463; - public static readonly KW_JAR = 464; - public static readonly KW_JARS = 465; - public static readonly KW_JAVA = 466; - public static readonly KW_KEY = 467; - public static readonly KW_LAST = 468; - public static readonly KW_LOAD = 469; - public static readonly KW_MAP = 470; - public static readonly KW_MICROSECOND = 471; - public static readonly KW_MILLENNIUM = 472; - public static readonly KW_MILLISECOND = 473; - public static readonly KW_MINUTES = 474; - public static readonly KW_MONTHS = 475; - public static readonly KW_NANOSECOND = 476; - public static readonly KW_NULLS = 477; - public static readonly KW_OPTIONS = 478; - public static readonly KW_PAST = 479; - public static readonly KW_PLAN = 480; - public static readonly KW_PRECEDING = 481; - public static readonly KW_PYTHON = 482; - public static readonly KW_PYTHON_ARCHIVES = 483; - public static readonly KW_PYTHON_DEPENDENCIES = 484; - public static readonly KW_PYTHON_FILES = 485; - public static readonly KW_PYTHON_JAR = 486; - public static readonly KW_PYTHON_PARAMETER = 487; - public static readonly KW_PYTHON_REQUIREMENTS = 488; - public static readonly KW_QUARTER = 489; - public static readonly KW_REMOVE = 490; - public static readonly KW_RESTRICT = 491; - public static readonly KW_SECONDS = 492; - public static readonly KW_SESSION = 493; - public static readonly KW_SETS = 494; - public static readonly KW_SIZE = 495; - public static readonly KW_SLIDE = 496; - public static readonly KW_STEP = 497; - public static readonly KW_TEMPORARY = 498; - public static readonly KW_TIMECOL = 499; - public static readonly KW_TUMBLE = 500; - public static readonly KW_UNLOAD = 501; - public static readonly KW_VIEW = 502; - public static readonly KW_WEEK = 503; - public static readonly KW_YEARS = 504; - public static readonly KW_ZONE = 505; - public static readonly EQUAL_SYMBOL = 506; - public static readonly GREATER_SYMBOL = 507; - public static readonly LESS_SYMBOL = 508; - public static readonly EXCLAMATION_SYMBOL = 509; - public static readonly BIT_NOT_OP = 510; - public static readonly BIT_OR_OP = 511; - public static readonly BIT_AND_OP = 512; - public static readonly BIT_XOR_OP = 513; - public static readonly DOT = 514; - public static readonly LS_BRACKET = 515; - public static readonly RS_BRACKET = 516; - public static readonly LR_BRACKET = 517; - public static readonly RR_BRACKET = 518; - public static readonly LB_BRACKET = 519; - public static readonly RB_BRACKET = 520; - public static readonly COMMA = 521; - public static readonly SEMICOLON = 522; - public static readonly AT_SIGN = 523; - public static readonly SINGLE_QUOTE_SYMB = 524; - public static readonly DOUBLE_QUOTE_SYMB = 525; - public static readonly REVERSE_QUOTE_SYMB = 526; - public static readonly COLON_SYMB = 527; - public static readonly ASTERISK_SIGN = 528; - public static readonly UNDERLINE_SIGN = 529; - public static readonly HYPHEN_SIGN = 530; - public static readonly ADD_SIGN = 531; - public static readonly PERCENT_SIGN = 532; - public static readonly DOUBLE_VERTICAL_SIGN = 533; - public static readonly DOUBLE_HYPHEN_SIGN = 534; - public static readonly SLASH_SIGN = 535; - public static readonly QUESTION_MARK_SIGN = 536; - public static readonly DOUBLE_RIGHT_ARROW = 537; - public static readonly STRING_LITERAL = 538; - public static readonly DIG_LITERAL = 539; - public static readonly REAL_LITERAL = 540; - public static readonly BIT_STRING = 541; - public static readonly ID_LITERAL = 542; + public static readonly KW_FOLLOWING = 146; + public static readonly KW_FOR = 147; + public static readonly KW_FOREIGN = 148; + public static readonly KW_FRAME_ROW = 149; + public static readonly KW_FREE = 150; + public static readonly KW_FRIDAY = 151; + public static readonly KW_FROM = 152; + public static readonly KW_FULL = 153; + public static readonly KW_FUNCTION = 154; + public static readonly KW_FUNCTIONS = 155; + public static readonly KW_FUSION = 156; + public static readonly KW_GET = 157; + public static readonly KW_GLOBAL = 158; + public static readonly KW_GRANT = 159; + public static readonly KW_GROUP = 160; + public static readonly KW_GROUPING = 161; + public static readonly KW_GROUPS = 162; + public static readonly KW_GROUP_CONCAT = 163; + public static readonly KW_HAVING = 164; + public static readonly KW_HOLD = 165; + public static readonly KW_HOUR = 166; + public static readonly KW_IDENTITY = 167; + public static readonly KW_IF = 168; + public static readonly KW_ILIKE = 169; + public static readonly KW_IMPORT = 170; + public static readonly KW_IN = 171; + public static readonly KW_INCLUDE = 172; + public static readonly KW_INDICATOR = 173; + public static readonly KW_INITIAL = 174; + public static readonly KW_INNER = 175; + public static readonly KW_INOUT = 176; + public static readonly KW_INSENSITIVE = 177; + public static readonly KW_INSERT = 178; + public static readonly KW_INT = 179; + public static readonly KW_INTEGER = 180; + public static readonly KW_INTERSECT = 181; + public static readonly KW_INTERSECTION = 182; + public static readonly KW_INTERVAL = 183; + public static readonly KW_INTO = 184; + public static readonly KW_IS = 185; + public static readonly KW_JOIN = 186; + public static readonly KW_JSON = 187; + public static readonly KW_JSON_ARRAY = 188; + public static readonly KW_JSON_ARRAYAGG = 189; + public static readonly KW_JSON_EXECUTION_PLAN = 190; + public static readonly KW_JSON_EXISTS = 191; + public static readonly KW_JSON_OBJECT = 192; + public static readonly KW_JSON_OBJECTAGG = 193; + public static readonly KW_JSON_QUERY = 194; + public static readonly KW_JSON_VALUE = 195; + public static readonly KW_LAG = 196; + public static readonly KW_LANGUAGE = 197; + public static readonly KW_LARGE = 198; + public static readonly KW_LAST_VALUE = 199; + public static readonly KW_LATERAL = 200; + public static readonly KW_LEAD = 201; + public static readonly KW_LEADING = 202; + public static readonly KW_LEFT = 203; + public static readonly KW_LIKE = 204; + public static readonly KW_LIKE_REGEX = 205; + public static readonly KW_LIMIT = 206; + public static readonly KW_LN = 207; + public static readonly KW_LOCAL = 208; + public static readonly KW_LOCALTIME = 209; + public static readonly KW_LOCALTIMESTAMP = 210; + public static readonly KW_LOWER = 211; + public static readonly KW_MATCH = 212; + public static readonly KW_MATCHES = 213; + public static readonly KW_MATCH_NUMBER = 214; + public static readonly KW_MATCH_RECOGNIZE = 215; + public static readonly KW_MAX = 216; + public static readonly KW_MEASURES = 217; + public static readonly KW_MEMBER = 218; + public static readonly KW_MERGE = 219; + public static readonly KW_METADATA = 220; + public static readonly KW_METHOD = 221; + public static readonly KW_MIN = 222; + public static readonly KW_MINUS = 223; + public static readonly KW_MINUTE = 224; + public static readonly KW_MOD = 225; + public static readonly KW_MODIFIES = 226; + public static readonly KW_MODIFY = 227; + public static readonly KW_MODULE = 228; + public static readonly KW_MODULES = 229; + public static readonly KW_MONDAY = 230; + public static readonly KW_MONTH = 231; + public static readonly KW_MORE = 232; + public static readonly KW_MULTISET = 233; + public static readonly KW_NATIONAL = 234; + public static readonly KW_NATURAL = 235; + public static readonly KW_NCHAR = 236; + public static readonly KW_NCLOB = 237; + public static readonly KW_NEW = 238; + public static readonly KW_NEXT = 239; + public static readonly KW_NO = 240; + public static readonly KW_NONE = 241; + public static readonly KW_NORMALIZE = 242; + public static readonly KW_NOT = 243; + public static readonly KW_NTH_VALUE = 244; + public static readonly KW_NTILE = 245; + public static readonly KW_NULL = 246; + public static readonly KW_NULLIF = 247; + public static readonly KW_NUMERIC = 248; + public static readonly KW_OCCURRENCES_REGEX = 249; + public static readonly KW_OCTET_LENGTH = 250; + public static readonly KW_OF = 251; + public static readonly KW_OFFSET = 252; + public static readonly KW_OLD = 253; + public static readonly KW_OMIT = 254; + public static readonly KW_ON = 255; + public static readonly KW_ONE = 256; + public static readonly KW_ONLY = 257; + public static readonly KW_OPEN = 258; + public static readonly KW_OR = 259; + public static readonly KW_ORDER = 260; + public static readonly KW_ORDINAL = 261; + public static readonly KW_OUT = 262; + public static readonly KW_OUTER = 263; + public static readonly KW_OVER = 264; + public static readonly KW_OVERLAPS = 265; + public static readonly KW_OVERLAY = 266; + public static readonly KW_OVERWRITE = 267; + public static readonly KW_OVERWRITING = 268; + public static readonly KW_PARAMETER = 269; + public static readonly KW_PARTITION = 270; + public static readonly KW_PARTITIONED = 271; + public static readonly KW_PARTITIONS = 272; + public static readonly KW_PATTERN = 273; + public static readonly KW_PER = 274; + public static readonly KW_PERCENT = 275; + public static readonly KW_PERCENTILE_CONT = 276; + public static readonly KW_PERCENTILE_DISC = 277; + public static readonly KW_PERCENT_RANK = 278; + public static readonly KW_PERIOD = 279; + public static readonly KW_PERMUTE = 280; + public static readonly KW_PIVOT = 281; + public static readonly KW_PORTION = 282; + public static readonly KW_POSITION = 283; + public static readonly KW_POSITION_REGEX = 284; + public static readonly KW_POWER = 285; + public static readonly KW_PRECEDES = 286; + public static readonly KW_PRECISION = 287; + public static readonly KW_PREPARE = 288; + public static readonly KW_PREV = 289; + public static readonly KW_PRIMARY = 290; + public static readonly KW_PROCEDURE = 291; + public static readonly KW_QUALIFY = 292; + public static readonly KW_QUARTERS = 293; + public static readonly KW_RANGE = 294; + public static readonly KW_RANK = 295; + public static readonly KW_RAW = 296; + public static readonly KW_READS = 297; + public static readonly KW_REAL = 298; + public static readonly KW_RECURSIVE = 299; + public static readonly KW_REF = 300; + public static readonly KW_REFERENCES = 301; + public static readonly KW_REFERENCING = 302; + public static readonly KW_REGR_AVGX = 303; + public static readonly KW_REGR_AVGY = 304; + public static readonly KW_REGR_COUNT = 305; + public static readonly KW_REGR_INTERCEPT = 306; + public static readonly KW_REGR_R2 = 307; + public static readonly KW_REGR_SLOPE = 308; + public static readonly KW_REGR_SXX = 309; + public static readonly KW_REGR_SXY = 310; + public static readonly KW_REGR_SYY = 311; + public static readonly KW_RELEASE = 312; + public static readonly KW_RENAME = 313; + public static readonly KW_RESET = 314; + public static readonly KW_RESULT = 315; + public static readonly KW_RETURN = 316; + public static readonly KW_RETURNS = 317; + public static readonly KW_REVOKE = 318; + public static readonly KW_RIGHT = 319; + public static readonly KW_RLIKE = 320; + public static readonly KW_ROLLBACK = 321; + public static readonly KW_ROLLUP = 322; + public static readonly KW_ROW = 323; + public static readonly KW_ROWS = 324; + public static readonly KW_ROW_NUMBER = 325; + public static readonly KW_RUNNING = 326; + public static readonly KW_SAFE_CAST = 327; + public static readonly KW_SAFE_OFFSET = 328; + public static readonly KW_SAFE_ORDINAL = 329; + public static readonly KW_SATURDAY = 330; + public static readonly KW_SAVEPOINT = 331; + public static readonly KW_SCALA = 332; + public static readonly KW_SCOPE = 333; + public static readonly KW_SCROLL = 334; + public static readonly KW_SEARCH = 335; + public static readonly KW_SECOND = 336; + public static readonly KW_SEEK = 337; + public static readonly KW_SELECT = 338; + public static readonly KW_SENSITIVE = 339; + public static readonly KW_SEPARATOR = 340; + public static readonly KW_SESSION_USER = 341; + public static readonly KW_SET = 342; + public static readonly KW_SHOW = 343; + public static readonly KW_SIMILAR = 344; + public static readonly KW_SKIP = 345; + public static readonly KW_SMALLINT = 346; + public static readonly KW_SOME = 347; + public static readonly KW_SPECIFIC = 348; + public static readonly KW_SPECIFICTYPE = 349; + public static readonly KW_SQL = 350; + public static readonly KW_SQLEXCEPTION = 351; + public static readonly KW_SQLSTATE = 352; + public static readonly KW_SQLWARNING = 353; + public static readonly KW_SQRT = 354; + public static readonly KW_START = 355; + public static readonly KW_STATEMENT = 356; + public static readonly KW_STATIC = 357; + public static readonly KW_STATISTICS = 358; + public static readonly KW_STDDEV_POP = 359; + public static readonly KW_STDDEV_SAMP = 360; + public static readonly KW_STREAM = 361; + public static readonly KW_STRING = 362; + public static readonly KW_STRING_AGG = 363; + public static readonly KW_SUBMULTISET = 364; + public static readonly KW_SUBSET = 365; + public static readonly KW_SUBSTRING = 366; + public static readonly KW_SUBSTRING_REGEX = 367; + public static readonly KW_SUCCEEDS = 368; + public static readonly KW_SUM = 369; + public static readonly KW_SUNDAY = 370; + public static readonly KW_SYMMETRIC = 371; + public static readonly KW_SYSTEM = 372; + public static readonly KW_SYSTEM_TIME = 373; + public static readonly KW_SYSTEM_USER = 374; + public static readonly KW_TABLE = 375; + public static readonly KW_TABLES = 376; + public static readonly KW_TABLESAMPLE = 377; + public static readonly KW_THEN = 378; + public static readonly KW_THURSDAY = 379; + public static readonly KW_TIME = 380; + public static readonly KW_TIMESTAMP = 381; + public static readonly KW_TIMESTAMP_DIFF = 382; + public static readonly KW_TIMESTAMP_LTZ = 383; + public static readonly KW_TIMESTAMP_TRUNC = 384; + public static readonly KW_TIMEZONE_HOUR = 385; + public static readonly KW_TIMEZONE_MINUTE = 386; + public static readonly KW_TIME_DIFF = 387; + public static readonly KW_TIME_TRUNC = 388; + public static readonly KW_TINYINT = 389; + public static readonly KW_TO = 390; + public static readonly KW_TRAILING = 391; + public static readonly KW_TRANSLATE = 392; + public static readonly KW_TRANSLATE_REGEX = 393; + public static readonly KW_TRANSLATION = 394; + public static readonly KW_TREAT = 395; + public static readonly KW_TRIGGER = 396; + public static readonly KW_TRIM = 397; + public static readonly KW_TRIM_ARRAY = 398; + public static readonly KW_TRUE = 399; + public static readonly KW_TRUNCATE = 400; + public static readonly KW_TRY_CAST = 401; + public static readonly KW_TUESDAY = 402; + public static readonly KW_UESCAPE = 403; + public static readonly KW_UNBOUNDED = 404; + public static readonly KW_UNION = 405; + public static readonly KW_UNIQUE = 406; + public static readonly KW_UNKNOWN = 407; + public static readonly KW_UNNEST = 408; + public static readonly KW_UNPIVOT = 409; + public static readonly KW_UPDATE = 410; + public static readonly KW_UPPER = 411; + public static readonly KW_UPSERT = 412; + public static readonly KW_USE = 413; + public static readonly KW_USER = 414; + public static readonly KW_USING = 415; + public static readonly KW_VALUE = 416; + public static readonly KW_VALUES = 417; + public static readonly KW_VALUE_OF = 418; + public static readonly KW_VARBINARY = 419; + public static readonly KW_VARCHAR = 420; + public static readonly KW_VARYING = 421; + public static readonly KW_VAR_POP = 422; + public static readonly KW_VAR_SAMP = 423; + public static readonly KW_VERSIONING = 424; + public static readonly KW_VIEWS = 425; + public static readonly KW_VIRTUAL = 426; + public static readonly KW_WATERMARK = 427; + public static readonly KW_WATERMARKS = 428; + public static readonly KW_WEDNESDAY = 429; + public static readonly KW_WEEKS = 430; + public static readonly KW_WHEN = 431; + public static readonly KW_WHENEVER = 432; + public static readonly KW_WHERE = 433; + public static readonly KW_WIDTH_BUCKET = 434; + public static readonly KW_WINDOW = 435; + public static readonly KW_WITH = 436; + public static readonly KW_WITHIN = 437; + public static readonly KW_WITHOUT = 438; + public static readonly KW_YEAR = 439; + public static readonly KW_ADD = 440; + public static readonly KW_AFTER = 441; + public static readonly KW_ASC = 442; + public static readonly KW_CASCADE = 443; + public static readonly KW_CATALOG = 444; + public static readonly KW_CENTURY = 445; + public static readonly KW_CONFIG = 446; + public static readonly KW_CONSTRAINTS = 447; + public static readonly KW_CUMULATE = 448; + public static readonly KW_DATA = 449; + public static readonly KW_DATABASE = 450; + public static readonly KW_DAYS = 451; + public static readonly KW_DECADE = 452; + public static readonly KW_DESC = 453; + public static readonly KW_DESCRIPTOR = 454; + public static readonly KW_DIV = 455; + public static readonly KW_ENGINE = 456; + public static readonly KW_EPOCH = 457; + public static readonly KW_EXCLUDING = 458; + public static readonly KW_FILE = 459; + public static readonly KW_FIRST = 460; + public static readonly KW_GENERATED = 461; + public static readonly KW_HOP = 462; + public static readonly KW_HOURS = 463; + public static readonly KW_IGNORE = 464; + public static readonly KW_INCLUDING = 465; + public static readonly KW_JAR = 466; + public static readonly KW_JARS = 467; + public static readonly KW_JAVA = 468; + public static readonly KW_KEY = 469; + public static readonly KW_LAST = 470; + public static readonly KW_LOAD = 471; + public static readonly KW_MAP = 472; + public static readonly KW_MICROSECOND = 473; + public static readonly KW_MILLENNIUM = 474; + public static readonly KW_MILLISECOND = 475; + public static readonly KW_MINUTES = 476; + public static readonly KW_MONTHS = 477; + public static readonly KW_NANOSECOND = 478; + public static readonly KW_NULLS = 479; + public static readonly KW_OPTIONS = 480; + public static readonly KW_PAST = 481; + public static readonly KW_PLAN = 482; + public static readonly KW_PRECEDING = 483; + public static readonly KW_PYTHON = 484; + public static readonly KW_PYTHON_ARCHIVES = 485; + public static readonly KW_PYTHON_DEPENDENCIES = 486; + public static readonly KW_PYTHON_FILES = 487; + public static readonly KW_PYTHON_JAR = 488; + public static readonly KW_PYTHON_PARAMETER = 489; + public static readonly KW_PYTHON_REQUIREMENTS = 490; + public static readonly KW_QUARTER = 491; + public static readonly KW_REMOVE = 492; + public static readonly KW_RESTRICT = 493; + public static readonly KW_SECONDS = 494; + public static readonly KW_SESSION = 495; + public static readonly KW_SETS = 496; + public static readonly KW_SIZE = 497; + public static readonly KW_SLIDE = 498; + public static readonly KW_STEP = 499; + public static readonly KW_TEMPORARY = 500; + public static readonly KW_TIMECOL = 501; + public static readonly KW_TUMBLE = 502; + public static readonly KW_UNLOAD = 503; + public static readonly KW_VIEW = 504; + public static readonly KW_WEEK = 505; + public static readonly KW_YEARS = 506; + public static readonly KW_ZONE = 507; + public static readonly EQUAL_SYMBOL = 508; + public static readonly GREATER_SYMBOL = 509; + public static readonly LESS_SYMBOL = 510; + public static readonly EXCLAMATION_SYMBOL = 511; + public static readonly BIT_NOT_OP = 512; + public static readonly BIT_OR_OP = 513; + public static readonly BIT_AND_OP = 514; + public static readonly BIT_XOR_OP = 515; + public static readonly DOT = 516; + public static readonly LS_BRACKET = 517; + public static readonly RS_BRACKET = 518; + public static readonly LR_BRACKET = 519; + public static readonly RR_BRACKET = 520; + public static readonly LB_BRACKET = 521; + public static readonly RB_BRACKET = 522; + public static readonly COMMA = 523; + public static readonly SEMICOLON = 524; + public static readonly AT_SIGN = 525; + public static readonly SINGLE_QUOTE_SYMB = 526; + public static readonly DOUBLE_QUOTE_SYMB = 527; + public static readonly REVERSE_QUOTE_SYMB = 528; + public static readonly COLON_SYMB = 529; + public static readonly ASTERISK_SIGN = 530; + public static readonly UNDERLINE_SIGN = 531; + public static readonly HYPHEN_SIGN = 532; + public static readonly ADD_SIGN = 533; + public static readonly PERCENT_SIGN = 534; + public static readonly DOUBLE_VERTICAL_SIGN = 535; + public static readonly DOUBLE_HYPHEN_SIGN = 536; + public static readonly SLASH_SIGN = 537; + public static readonly QUESTION_MARK_SIGN = 538; + public static readonly DOUBLE_RIGHT_ARROW = 539; + public static readonly STRING_LITERAL = 540; + public static readonly DIG_LITERAL = 541; + public static readonly REAL_LITERAL = 542; + public static readonly BIT_STRING = 543; + public static readonly ID_LITERAL = 544; public static readonly RULE_program = 0; public static readonly RULE_singleStatement = 1; public static readonly RULE_sqlStatement = 2; @@ -688,76 +690,78 @@ export class FlinkSqlParser extends SQLParserBase { public static readonly RULE_patternVariablesDefinition = 126; public static readonly RULE_windowFrame = 127; public static readonly RULE_frameBound = 128; - public static readonly RULE_withinClause = 129; - public static readonly RULE_expression = 130; - public static readonly RULE_booleanExpression = 131; - public static readonly RULE_predicate = 132; - public static readonly RULE_jsonFunctionBranch = 133; - public static readonly RULE_likePredicate = 134; - public static readonly RULE_valueExpression = 135; - public static readonly RULE_functionCallExpression = 136; - public static readonly RULE_primaryExpression = 137; - public static readonly RULE_functionNameCreate = 138; - public static readonly RULE_functionName = 139; - public static readonly RULE_functionNameAndParams = 140; - public static readonly RULE_functionNameWithParams = 141; - public static readonly RULE_functionParam = 142; - public static readonly RULE_jsonValueParams = 143; - public static readonly RULE_jsonQueryParams = 144; - public static readonly RULE_jsonObjectParams = 145; - public static readonly RULE_jsonArrayParams = 146; - public static readonly RULE_dereferenceDefinition = 147; - public static readonly RULE_correlationName = 148; - public static readonly RULE_qualifiedName = 149; - public static readonly RULE_timeIntervalExpression = 150; - public static readonly RULE_errorCapturingMultiUnitsInterval = 151; - public static readonly RULE_multiUnitsInterval = 152; - public static readonly RULE_errorCapturingUnitToUnitInterval = 153; - public static readonly RULE_unitToUnitInterval = 154; - public static readonly RULE_intervalValue = 155; - public static readonly RULE_tableAlias = 156; - public static readonly RULE_errorCapturingIdentifier = 157; - public static readonly RULE_errorCapturingIdentifierExtra = 158; - public static readonly RULE_identifierList = 159; - public static readonly RULE_identifierSeq = 160; - public static readonly RULE_identifier = 161; - public static readonly RULE_unquotedIdentifier = 162; - public static readonly RULE_quotedIdentifier = 163; - public static readonly RULE_whenClause = 164; - public static readonly RULE_catalogPath = 165; - public static readonly RULE_catalogPathCreate = 166; - public static readonly RULE_databasePath = 167; - public static readonly RULE_databasePathCreate = 168; - public static readonly RULE_tablePathCreate = 169; - public static readonly RULE_tablePath = 170; - public static readonly RULE_viewPath = 171; - public static readonly RULE_viewPathCreate = 172; - public static readonly RULE_uid = 173; - public static readonly RULE_withOption = 174; - public static readonly RULE_ifNotExists = 175; - public static readonly RULE_ifExists = 176; - public static readonly RULE_tablePropertyList = 177; - public static readonly RULE_tableProperty = 178; - public static readonly RULE_tablePropertyKey = 179; - public static readonly RULE_tablePropertyValue = 180; - public static readonly RULE_logicalOperator = 181; - public static readonly RULE_comparisonOperator = 182; - public static readonly RULE_bitOperator = 183; - public static readonly RULE_mathOperator = 184; - public static readonly RULE_unaryOperator = 185; - public static readonly RULE_constant = 186; - public static readonly RULE_timePointLiteral = 187; - public static readonly RULE_stringLiteral = 188; - public static readonly RULE_decimalLiteral = 189; - public static readonly RULE_booleanLiteral = 190; - public static readonly RULE_setQuantifier = 191; - public static readonly RULE_timePointUnit = 192; - public static readonly RULE_timeIntervalUnit = 193; - public static readonly RULE_reservedKeywordsUsedAsFuncParam = 194; - public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 195; - public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 196; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 197; - public static readonly RULE_nonReservedKeywords = 198; + public static readonly RULE_frameStart = 129; + public static readonly RULE_frameEnd = 130; + public static readonly RULE_withinClause = 131; + public static readonly RULE_expression = 132; + public static readonly RULE_booleanExpression = 133; + public static readonly RULE_predicate = 134; + public static readonly RULE_jsonFunctionBranch = 135; + public static readonly RULE_likePredicate = 136; + public static readonly RULE_valueExpression = 137; + public static readonly RULE_functionCallExpression = 138; + public static readonly RULE_primaryExpression = 139; + public static readonly RULE_functionNameCreate = 140; + public static readonly RULE_functionName = 141; + public static readonly RULE_functionNameAndParams = 142; + public static readonly RULE_functionNameWithParams = 143; + public static readonly RULE_functionParam = 144; + public static readonly RULE_jsonValueParams = 145; + public static readonly RULE_jsonQueryParams = 146; + public static readonly RULE_jsonObjectParams = 147; + public static readonly RULE_jsonArrayParams = 148; + public static readonly RULE_dereferenceDefinition = 149; + public static readonly RULE_correlationName = 150; + public static readonly RULE_qualifiedName = 151; + public static readonly RULE_timeIntervalExpression = 152; + public static readonly RULE_errorCapturingMultiUnitsInterval = 153; + public static readonly RULE_multiUnitsInterval = 154; + public static readonly RULE_errorCapturingUnitToUnitInterval = 155; + public static readonly RULE_unitToUnitInterval = 156; + public static readonly RULE_intervalValue = 157; + public static readonly RULE_tableAlias = 158; + public static readonly RULE_errorCapturingIdentifier = 159; + public static readonly RULE_errorCapturingIdentifierExtra = 160; + public static readonly RULE_identifierList = 161; + public static readonly RULE_identifierSeq = 162; + public static readonly RULE_identifier = 163; + public static readonly RULE_unquotedIdentifier = 164; + public static readonly RULE_quotedIdentifier = 165; + public static readonly RULE_whenClause = 166; + public static readonly RULE_catalogPath = 167; + public static readonly RULE_catalogPathCreate = 168; + public static readonly RULE_databasePath = 169; + public static readonly RULE_databasePathCreate = 170; + public static readonly RULE_tablePathCreate = 171; + public static readonly RULE_tablePath = 172; + public static readonly RULE_viewPath = 173; + public static readonly RULE_viewPathCreate = 174; + public static readonly RULE_uid = 175; + public static readonly RULE_withOption = 176; + public static readonly RULE_ifNotExists = 177; + public static readonly RULE_ifExists = 178; + public static readonly RULE_tablePropertyList = 179; + public static readonly RULE_tableProperty = 180; + public static readonly RULE_tablePropertyKey = 181; + public static readonly RULE_tablePropertyValue = 182; + public static readonly RULE_logicalOperator = 183; + public static readonly RULE_comparisonOperator = 184; + public static readonly RULE_bitOperator = 185; + public static readonly RULE_mathOperator = 186; + public static readonly RULE_unaryOperator = 187; + public static readonly RULE_constant = 188; + public static readonly RULE_timePointLiteral = 189; + public static readonly RULE_stringLiteral = 190; + public static readonly RULE_decimalLiteral = 191; + public static readonly RULE_booleanLiteral = 192; + public static readonly RULE_setQuantifier = 193; + public static readonly RULE_timePointUnit = 194; + public static readonly RULE_timeIntervalUnit = 195; + public static readonly RULE_reservedKeywordsUsedAsFuncParam = 196; + public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 197; + public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 198; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 199; + public static readonly RULE_nonReservedKeywords = 200; public static readonly literalNames = [ null, null, null, null, "'ABS'", "'ALL'", "'ALLOCATE'", "'ALLOW'", @@ -787,13 +791,13 @@ export class FlinkSqlParser extends SQLParserBase { "'ENFORCED'", "'EQUALS'", "'ESCAPE'", "'ESTIMATED_COST'", "'EVERY'", "'EXCEPT'", "'EXEC'", "'EXECUTE'", "'EXISTS'", "'EXP'", "'EXPLAIN'", "'EXTEND'", "'EXTENDED'", "'EXTERNAL'", "'EXTRACT'", "'FALSE'", - "'FETCH'", "'FILTER'", "'FIRST_VALUE'", "'FLOAT'", "'FLOOR'", "'FOR'", - "'FOREIGN'", "'FRAME_ROW'", "'FREE'", "'FRIDAY'", "'FROM'", "'FULL'", - "'FUNCTION'", "'FUNCTIONS'", "'FUSION'", "'GET'", "'GLOBAL'", "'GRANT'", - "'GROUP'", "'GROUPING'", "'GROUPS'", "'GROUP_CONCAT'", "'HAVING'", - "'HOLD'", "'HOUR'", "'IDENTITY'", "'IF'", "'ILIKE'", "'IMPORT'", - "'IN'", "'INCLUDE'", "'INDICATOR'", "'INITIAL'", "'INNER'", "'INOUT'", - "'INSENSITIVE'", "'INSERT'", "'INT'", "'INTEGER'", "'INTERSECT'", + "'FETCH'", "'FILTER'", "'FIRST_VALUE'", "'FLOAT'", "'FLOOR'", "'FOLLOWING'", + "'FOR'", "'FOREIGN'", "'FRAME_ROW'", "'FREE'", "'FRIDAY'", "'FROM'", + "'FULL'", "'FUNCTION'", "'FUNCTIONS'", "'FUSION'", "'GET'", "'GLOBAL'", + "'GRANT'", "'GROUP'", "'GROUPING'", "'GROUPS'", "'GROUP_CONCAT'", + "'HAVING'", "'HOLD'", "'HOUR'", "'IDENTITY'", "'IF'", "'ILIKE'", + "'IMPORT'", "'IN'", "'INCLUDE'", "'INDICATOR'", "'INITIAL'", "'INNER'", + "'INOUT'", "'INSENSITIVE'", "'INSERT'", "'INT'", "'INTEGER'", "'INTERSECT'", "'INTERSECTION'", "'INTERVAL'", "'INTO'", "'IS'", "'JOIN'", "'JSON'", "'JSON_ARRAY'", "'JSON_ARRAYAGG'", "'JSON_EXECUTION_PLAN'", "'JSON_EXISTS'", "'JSON_OBJECT'", "'JSON_OBJECTAGG'", "'JSON_QUERY'", "'JSON_VALUE'", @@ -836,28 +840,29 @@ export class FlinkSqlParser extends SQLParserBase { "'TIME_TRUNC'", "'TINYINT'", "'TO'", "'TRAILING'", "'TRANSLATE'", "'TRANSLATE_REGEX'", "'TRANSLATION'", "'TREAT'", "'TRIGGER'", "'TRIM'", "'TRIM_ARRAY'", "'TRUE'", "'TRUNCATE'", "'TRY_CAST'", "'TUESDAY'", - "'UESCAPE'", "'UNION'", "'UNIQUE'", "'UNKNOWN'", "'UNNEST'", "'UNPIVOT'", - "'UPDATE'", "'UPPER'", "'UPSERT'", "'USE'", "'USER'", "'USING'", - "'VALUE'", "'VALUES'", "'VALUE_OF'", "'VARBINARY'", "'VARCHAR'", - "'VARYING'", "'VAR_POP'", "'VAR_SAMP'", "'VERSIONING'", "'VIEWS'", - "'VIRTUAL'", "'WATERMARK'", "'WATERMARKS'", "'WEDNESDAY'", "'WEEKS'", - "'WHEN'", "'WHENEVER'", "'WHERE'", "'WIDTH_BUCKET'", "'WINDOW'", - "'WITH'", "'WITHIN'", "'WITHOUT'", "'YEAR'", "'ADD'", "'AFTER'", - "'ASC'", "'CASCADE'", "'CATALOG'", "'CENTURY'", "'CONFIG'", "'CONSTRAINTS'", - "'CUMULATE'", "'DATA'", "'DATABASE'", "'DAYS'", "'DECADE'", "'DESC'", - "'DESCRIPTOR'", "'DIV'", "'ENGINE'", "'EPOCH'", "'EXCLUDING'", "'FILE'", - "'FIRST'", "'GENERATED'", "'HOP'", "'HOURS'", "'IGNORE'", "'INCLUDING'", - "'JAR'", "'JARS'", "'JAVA'", "'KEY'", "'LAST'", "'LOAD'", "'MAP'", - "'MICROSECOND'", "'MILLENNIUM'", "'MILLISECOND'", "'MINUTES'", "'MONTHS'", - "'NANOSECOND'", "'NULLS'", "'OPTIONS'", "'PAST'", "'PLAN'", "'PRECEDING'", - "'PYTHON'", "'PYTHON_ARCHIVES'", "'PYTHON_DEPENDENCIES'", "'PYTHON_FILES'", - "'PYTHON_JAR'", "'PYTHON_PARAMETER'", "'PYTHON_REQUIREMENTS'", "'QUARTER'", - "'REMOVE'", "'RESTRICT'", "'SECONDS'", "'SESSION'", "'SETS'", "'SIZE'", - "'SLIDE'", "'STEP'", "'TEMPORARY'", "'TIMECOL'", "'TUMBLE'", "'UNLOAD'", - "'VIEW'", "'WEEK'", "'YEARS'", "'ZONE'", "'='", "'>'", "'<'", "'!'", - "'~'", "'|'", "'&'", "'^'", "'.'", "'['", "']'", "'('", "')'", "'{'", - "'}'", "','", "';'", "'@'", "'''", "'\"'", "'`'", "':'", "'*'", - "'_'", "'-'", "'+'", "'%'", "'||'", "'--'", "'/'", "'?'", "'=>'" + "'UESCAPE'", "'UNBOUNDED'", "'UNION'", "'UNIQUE'", "'UNKNOWN'", + "'UNNEST'", "'UNPIVOT'", "'UPDATE'", "'UPPER'", "'UPSERT'", "'USE'", + "'USER'", "'USING'", "'VALUE'", "'VALUES'", "'VALUE_OF'", "'VARBINARY'", + "'VARCHAR'", "'VARYING'", "'VAR_POP'", "'VAR_SAMP'", "'VERSIONING'", + "'VIEWS'", "'VIRTUAL'", "'WATERMARK'", "'WATERMARKS'", "'WEDNESDAY'", + "'WEEKS'", "'WHEN'", "'WHENEVER'", "'WHERE'", "'WIDTH_BUCKET'", + "'WINDOW'", "'WITH'", "'WITHIN'", "'WITHOUT'", "'YEAR'", "'ADD'", + "'AFTER'", "'ASC'", "'CASCADE'", "'CATALOG'", "'CENTURY'", "'CONFIG'", + "'CONSTRAINTS'", "'CUMULATE'", "'DATA'", "'DATABASE'", "'DAYS'", + "'DECADE'", "'DESC'", "'DESCRIPTOR'", "'DIV'", "'ENGINE'", "'EPOCH'", + "'EXCLUDING'", "'FILE'", "'FIRST'", "'GENERATED'", "'HOP'", "'HOURS'", + "'IGNORE'", "'INCLUDING'", "'JAR'", "'JARS'", "'JAVA'", "'KEY'", + "'LAST'", "'LOAD'", "'MAP'", "'MICROSECOND'", "'MILLENNIUM'", "'MILLISECOND'", + "'MINUTES'", "'MONTHS'", "'NANOSECOND'", "'NULLS'", "'OPTIONS'", + "'PAST'", "'PLAN'", "'PRECEDING'", "'PYTHON'", "'PYTHON_ARCHIVES'", + "'PYTHON_DEPENDENCIES'", "'PYTHON_FILES'", "'PYTHON_JAR'", "'PYTHON_PARAMETER'", + "'PYTHON_REQUIREMENTS'", "'QUARTER'", "'REMOVE'", "'RESTRICT'", + "'SECONDS'", "'SESSION'", "'SETS'", "'SIZE'", "'SLIDE'", "'STEP'", + "'TEMPORARY'", "'TIMECOL'", "'TUMBLE'", "'UNLOAD'", "'VIEW'", "'WEEK'", + "'YEARS'", "'ZONE'", "'='", "'>'", "'<'", "'!'", "'~'", "'|'", "'&'", + "'^'", "'.'", "'['", "']'", "'('", "')'", "'{'", "'}'", "','", "';'", + "'@'", "'''", "'\"'", "'`'", "':'", "'*'", "'_'", "'-'", "'+'", + "'%'", "'||'", "'--'", "'/'", "'?'", "'=>'" ]; public static readonly symbolicNames = [ @@ -891,31 +896,32 @@ export class FlinkSqlParser extends SQLParserBase { "KW_EXCEPT", "KW_EXEC", "KW_EXECUTE", "KW_EXISTS", "KW_EXP", "KW_EXPLAIN", "KW_EXTEND", "KW_EXTENDED", "KW_EXTERNAL", "KW_EXTRACT", "KW_FALSE", "KW_FETCH", "KW_FILTER", "KW_FIRST_VALUE", "KW_FLOAT", "KW_FLOOR", - "KW_FOR", "KW_FOREIGN", "KW_FRAME_ROW", "KW_FREE", "KW_FRIDAY", - "KW_FROM", "KW_FULL", "KW_FUNCTION", "KW_FUNCTIONS", "KW_FUSION", - "KW_GET", "KW_GLOBAL", "KW_GRANT", "KW_GROUP", "KW_GROUPING", "KW_GROUPS", - "KW_GROUP_CONCAT", "KW_HAVING", "KW_HOLD", "KW_HOUR", "KW_IDENTITY", - "KW_IF", "KW_ILIKE", "KW_IMPORT", "KW_IN", "KW_INCLUDE", "KW_INDICATOR", - "KW_INITIAL", "KW_INNER", "KW_INOUT", "KW_INSENSITIVE", "KW_INSERT", - "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERSECTION", "KW_INTERVAL", - "KW_INTO", "KW_IS", "KW_JOIN", "KW_JSON", "KW_JSON_ARRAY", "KW_JSON_ARRAYAGG", - "KW_JSON_EXECUTION_PLAN", "KW_JSON_EXISTS", "KW_JSON_OBJECT", "KW_JSON_OBJECTAGG", - "KW_JSON_QUERY", "KW_JSON_VALUE", "KW_LAG", "KW_LANGUAGE", "KW_LARGE", - "KW_LAST_VALUE", "KW_LATERAL", "KW_LEAD", "KW_LEADING", "KW_LEFT", - "KW_LIKE", "KW_LIKE_REGEX", "KW_LIMIT", "KW_LN", "KW_LOCAL", "KW_LOCALTIME", - "KW_LOCALTIMESTAMP", "KW_LOWER", "KW_MATCH", "KW_MATCHES", "KW_MATCH_NUMBER", - "KW_MATCH_RECOGNIZE", "KW_MAX", "KW_MEASURES", "KW_MEMBER", "KW_MERGE", - "KW_METADATA", "KW_METHOD", "KW_MIN", "KW_MINUS", "KW_MINUTE", "KW_MOD", - "KW_MODIFIES", "KW_MODIFY", "KW_MODULE", "KW_MODULES", "KW_MONDAY", - "KW_MONTH", "KW_MORE", "KW_MULTISET", "KW_NATIONAL", "KW_NATURAL", - "KW_NCHAR", "KW_NCLOB", "KW_NEW", "KW_NEXT", "KW_NO", "KW_NONE", - "KW_NORMALIZE", "KW_NOT", "KW_NTH_VALUE", "KW_NTILE", "KW_NULL", - "KW_NULLIF", "KW_NUMERIC", "KW_OCCURRENCES_REGEX", "KW_OCTET_LENGTH", - "KW_OF", "KW_OFFSET", "KW_OLD", "KW_OMIT", "KW_ON", "KW_ONE", "KW_ONLY", - "KW_OPEN", "KW_OR", "KW_ORDER", "KW_ORDINAL", "KW_OUT", "KW_OUTER", - "KW_OVER", "KW_OVERLAPS", "KW_OVERLAY", "KW_OVERWRITE", "KW_OVERWRITING", - "KW_PARAMETER", "KW_PARTITION", "KW_PARTITIONED", "KW_PARTITIONS", - "KW_PATTERN", "KW_PER", "KW_PERCENT", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", + "KW_FOLLOWING", "KW_FOR", "KW_FOREIGN", "KW_FRAME_ROW", "KW_FREE", + "KW_FRIDAY", "KW_FROM", "KW_FULL", "KW_FUNCTION", "KW_FUNCTIONS", + "KW_FUSION", "KW_GET", "KW_GLOBAL", "KW_GRANT", "KW_GROUP", "KW_GROUPING", + "KW_GROUPS", "KW_GROUP_CONCAT", "KW_HAVING", "KW_HOLD", "KW_HOUR", + "KW_IDENTITY", "KW_IF", "KW_ILIKE", "KW_IMPORT", "KW_IN", "KW_INCLUDE", + "KW_INDICATOR", "KW_INITIAL", "KW_INNER", "KW_INOUT", "KW_INSENSITIVE", + "KW_INSERT", "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERSECTION", + "KW_INTERVAL", "KW_INTO", "KW_IS", "KW_JOIN", "KW_JSON", "KW_JSON_ARRAY", + "KW_JSON_ARRAYAGG", "KW_JSON_EXECUTION_PLAN", "KW_JSON_EXISTS", + "KW_JSON_OBJECT", "KW_JSON_OBJECTAGG", "KW_JSON_QUERY", "KW_JSON_VALUE", + "KW_LAG", "KW_LANGUAGE", "KW_LARGE", "KW_LAST_VALUE", "KW_LATERAL", + "KW_LEAD", "KW_LEADING", "KW_LEFT", "KW_LIKE", "KW_LIKE_REGEX", + "KW_LIMIT", "KW_LN", "KW_LOCAL", "KW_LOCALTIME", "KW_LOCALTIMESTAMP", + "KW_LOWER", "KW_MATCH", "KW_MATCHES", "KW_MATCH_NUMBER", "KW_MATCH_RECOGNIZE", + "KW_MAX", "KW_MEASURES", "KW_MEMBER", "KW_MERGE", "KW_METADATA", + "KW_METHOD", "KW_MIN", "KW_MINUS", "KW_MINUTE", "KW_MOD", "KW_MODIFIES", + "KW_MODIFY", "KW_MODULE", "KW_MODULES", "KW_MONDAY", "KW_MONTH", + "KW_MORE", "KW_MULTISET", "KW_NATIONAL", "KW_NATURAL", "KW_NCHAR", + "KW_NCLOB", "KW_NEW", "KW_NEXT", "KW_NO", "KW_NONE", "KW_NORMALIZE", + "KW_NOT", "KW_NTH_VALUE", "KW_NTILE", "KW_NULL", "KW_NULLIF", "KW_NUMERIC", + "KW_OCCURRENCES_REGEX", "KW_OCTET_LENGTH", "KW_OF", "KW_OFFSET", + "KW_OLD", "KW_OMIT", "KW_ON", "KW_ONE", "KW_ONLY", "KW_OPEN", "KW_OR", + "KW_ORDER", "KW_ORDINAL", "KW_OUT", "KW_OUTER", "KW_OVER", "KW_OVERLAPS", + "KW_OVERLAY", "KW_OVERWRITE", "KW_OVERWRITING", "KW_PARAMETER", + "KW_PARTITION", "KW_PARTITIONED", "KW_PARTITIONS", "KW_PATTERN", + "KW_PER", "KW_PERCENT", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", "KW_PERCENT_RANK", "KW_PERIOD", "KW_PERMUTE", "KW_PIVOT", "KW_PORTION", "KW_POSITION", "KW_POSITION_REGEX", "KW_POWER", "KW_PRECEDES", "KW_PRECISION", "KW_PREPARE", "KW_PREV", "KW_PRIMARY", "KW_PROCEDURE", "KW_QUALIFY", @@ -941,35 +947,35 @@ export class FlinkSqlParser extends SQLParserBase { "KW_TIMEZONE_MINUTE", "KW_TIME_DIFF", "KW_TIME_TRUNC", "KW_TINYINT", "KW_TO", "KW_TRAILING", "KW_TRANSLATE", "KW_TRANSLATE_REGEX", "KW_TRANSLATION", "KW_TREAT", "KW_TRIGGER", "KW_TRIM", "KW_TRIM_ARRAY", "KW_TRUE", - "KW_TRUNCATE", "KW_TRY_CAST", "KW_TUESDAY", "KW_UESCAPE", "KW_UNION", - "KW_UNIQUE", "KW_UNKNOWN", "KW_UNNEST", "KW_UNPIVOT", "KW_UPDATE", - "KW_UPPER", "KW_UPSERT", "KW_USE", "KW_USER", "KW_USING", "KW_VALUE", - "KW_VALUES", "KW_VALUE_OF", "KW_VARBINARY", "KW_VARCHAR", "KW_VARYING", - "KW_VAR_POP", "KW_VAR_SAMP", "KW_VERSIONING", "KW_VIEWS", "KW_VIRTUAL", - "KW_WATERMARK", "KW_WATERMARKS", "KW_WEDNESDAY", "KW_WEEKS", "KW_WHEN", - "KW_WHENEVER", "KW_WHERE", "KW_WIDTH_BUCKET", "KW_WINDOW", "KW_WITH", - "KW_WITHIN", "KW_WITHOUT", "KW_YEAR", "KW_ADD", "KW_AFTER", "KW_ASC", - "KW_CASCADE", "KW_CATALOG", "KW_CENTURY", "KW_CONFIG", "KW_CONSTRAINTS", - "KW_CUMULATE", "KW_DATA", "KW_DATABASE", "KW_DAYS", "KW_DECADE", - "KW_DESC", "KW_DESCRIPTOR", "KW_DIV", "KW_ENGINE", "KW_EPOCH", "KW_EXCLUDING", - "KW_FILE", "KW_FIRST", "KW_GENERATED", "KW_HOP", "KW_HOURS", "KW_IGNORE", - "KW_INCLUDING", "KW_JAR", "KW_JARS", "KW_JAVA", "KW_KEY", "KW_LAST", - "KW_LOAD", "KW_MAP", "KW_MICROSECOND", "KW_MILLENNIUM", "KW_MILLISECOND", - "KW_MINUTES", "KW_MONTHS", "KW_NANOSECOND", "KW_NULLS", "KW_OPTIONS", - "KW_PAST", "KW_PLAN", "KW_PRECEDING", "KW_PYTHON", "KW_PYTHON_ARCHIVES", - "KW_PYTHON_DEPENDENCIES", "KW_PYTHON_FILES", "KW_PYTHON_JAR", "KW_PYTHON_PARAMETER", - "KW_PYTHON_REQUIREMENTS", "KW_QUARTER", "KW_REMOVE", "KW_RESTRICT", - "KW_SECONDS", "KW_SESSION", "KW_SETS", "KW_SIZE", "KW_SLIDE", "KW_STEP", - "KW_TEMPORARY", "KW_TIMECOL", "KW_TUMBLE", "KW_UNLOAD", "KW_VIEW", - "KW_WEEK", "KW_YEARS", "KW_ZONE", "EQUAL_SYMBOL", "GREATER_SYMBOL", - "LESS_SYMBOL", "EXCLAMATION_SYMBOL", "BIT_NOT_OP", "BIT_OR_OP", - "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", "RS_BRACKET", "LR_BRACKET", - "RR_BRACKET", "LB_BRACKET", "RB_BRACKET", "COMMA", "SEMICOLON", - "AT_SIGN", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", - "COLON_SYMB", "ASTERISK_SIGN", "UNDERLINE_SIGN", "HYPHEN_SIGN", - "ADD_SIGN", "PERCENT_SIGN", "DOUBLE_VERTICAL_SIGN", "DOUBLE_HYPHEN_SIGN", - "SLASH_SIGN", "QUESTION_MARK_SIGN", "DOUBLE_RIGHT_ARROW", "STRING_LITERAL", - "DIG_LITERAL", "REAL_LITERAL", "BIT_STRING", "ID_LITERAL" + "KW_TRUNCATE", "KW_TRY_CAST", "KW_TUESDAY", "KW_UESCAPE", "KW_UNBOUNDED", + "KW_UNION", "KW_UNIQUE", "KW_UNKNOWN", "KW_UNNEST", "KW_UNPIVOT", + "KW_UPDATE", "KW_UPPER", "KW_UPSERT", "KW_USE", "KW_USER", "KW_USING", + "KW_VALUE", "KW_VALUES", "KW_VALUE_OF", "KW_VARBINARY", "KW_VARCHAR", + "KW_VARYING", "KW_VAR_POP", "KW_VAR_SAMP", "KW_VERSIONING", "KW_VIEWS", + "KW_VIRTUAL", "KW_WATERMARK", "KW_WATERMARKS", "KW_WEDNESDAY", "KW_WEEKS", + "KW_WHEN", "KW_WHENEVER", "KW_WHERE", "KW_WIDTH_BUCKET", "KW_WINDOW", + "KW_WITH", "KW_WITHIN", "KW_WITHOUT", "KW_YEAR", "KW_ADD", "KW_AFTER", + "KW_ASC", "KW_CASCADE", "KW_CATALOG", "KW_CENTURY", "KW_CONFIG", + "KW_CONSTRAINTS", "KW_CUMULATE", "KW_DATA", "KW_DATABASE", "KW_DAYS", + "KW_DECADE", "KW_DESC", "KW_DESCRIPTOR", "KW_DIV", "KW_ENGINE", + "KW_EPOCH", "KW_EXCLUDING", "KW_FILE", "KW_FIRST", "KW_GENERATED", + "KW_HOP", "KW_HOURS", "KW_IGNORE", "KW_INCLUDING", "KW_JAR", "KW_JARS", + "KW_JAVA", "KW_KEY", "KW_LAST", "KW_LOAD", "KW_MAP", "KW_MICROSECOND", + "KW_MILLENNIUM", "KW_MILLISECOND", "KW_MINUTES", "KW_MONTHS", "KW_NANOSECOND", + "KW_NULLS", "KW_OPTIONS", "KW_PAST", "KW_PLAN", "KW_PRECEDING", + "KW_PYTHON", "KW_PYTHON_ARCHIVES", "KW_PYTHON_DEPENDENCIES", "KW_PYTHON_FILES", + "KW_PYTHON_JAR", "KW_PYTHON_PARAMETER", "KW_PYTHON_REQUIREMENTS", + "KW_QUARTER", "KW_REMOVE", "KW_RESTRICT", "KW_SECONDS", "KW_SESSION", + "KW_SETS", "KW_SIZE", "KW_SLIDE", "KW_STEP", "KW_TEMPORARY", "KW_TIMECOL", + "KW_TUMBLE", "KW_UNLOAD", "KW_VIEW", "KW_WEEK", "KW_YEARS", "KW_ZONE", + "EQUAL_SYMBOL", "GREATER_SYMBOL", "LESS_SYMBOL", "EXCLAMATION_SYMBOL", + "BIT_NOT_OP", "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", + "RS_BRACKET", "LR_BRACKET", "RR_BRACKET", "LB_BRACKET", "RB_BRACKET", + "COMMA", "SEMICOLON", "AT_SIGN", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", + "REVERSE_QUOTE_SYMB", "COLON_SYMB", "ASTERISK_SIGN", "UNDERLINE_SIGN", + "HYPHEN_SIGN", "ADD_SIGN", "PERCENT_SIGN", "DOUBLE_VERTICAL_SIGN", + "DOUBLE_HYPHEN_SIGN", "SLASH_SIGN", "QUESTION_MARK_SIGN", "DOUBLE_RIGHT_ARROW", + "STRING_LITERAL", "DIG_LITERAL", "REAL_LITERAL", "BIT_STRING", "ID_LITERAL" ]; public static readonly ruleNames = [ "program", "singleStatement", "sqlStatement", "emptyStatement", @@ -1004,10 +1010,10 @@ export class FlinkSqlParser extends SQLParserBase { "orderByClause", "orderItemDefinition", "limitClause", "partitionByClause", "quantifiers", "measuresClause", "patternDefinition", "patternVariable", "outputMode", "afterMatchStrategy", "patternVariablesDefinition", - "windowFrame", "frameBound", "withinClause", "expression", "booleanExpression", - "predicate", "jsonFunctionBranch", "likePredicate", "valueExpression", - "functionCallExpression", "primaryExpression", "functionNameCreate", - "functionName", "functionNameAndParams", "functionNameWithParams", + "windowFrame", "frameBound", "frameStart", "frameEnd", "withinClause", + "expression", "booleanExpression", "predicate", "jsonFunctionBranch", + "likePredicate", "valueExpression", "functionCallExpression", "primaryExpression", + "functionNameCreate", "functionName", "functionNameAndParams", "functionNameWithParams", "functionParam", "jsonValueParams", "jsonQueryParams", "jsonObjectParams", "jsonArrayParams", "dereferenceDefinition", "correlationName", "qualifiedName", "timeIntervalExpression", "errorCapturingMultiUnitsInterval", "multiUnitsInterval", @@ -1047,21 +1053,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 401; + this.state = 405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 8 || _la === 24 || _la === 72 || ((((_la - 109)) & ~0x1F) === 0 && ((1 << (_la - 109)) & 75497601) !== 0) || _la === 177 || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 822083585) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 142606353) !== 0) || _la === 451 || _la === 469 || ((((_la - 490)) & ~0x1F) === 0 && ((1 << (_la - 490)) & 134219777) !== 0) || _la === 522) { + while (_la === 8 || _la === 24 || _la === 72 || ((((_la - 109)) & ~0x1F) === 0 && ((1 << (_la - 109)) & 75497601) !== 0) || _la === 178 || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 822083585) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 142606353) !== 0) || _la === 453 || _la === 471 || ((((_la - 492)) & ~0x1F) === 0 && ((1 << (_la - 492)) & 134219777) !== 0) || _la === 524) { { { - this.state = 398; + this.state = 402; this.singleStatement(); } } - this.state = 403; + this.state = 407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 404; + this.state = 408; this.match(FlinkSqlParser.EOF); } } @@ -1083,7 +1089,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, FlinkSqlParser.RULE_singleStatement); try { - this.state = 411; + this.state = 415; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALTER: @@ -1109,14 +1115,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 406; + this.state = 410; this.sqlStatement(); - this.state = 408; + this.state = 412; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 407; + this.state = 411; this.match(FlinkSqlParser.SEMICOLON); } break; @@ -1126,7 +1132,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.SEMICOLON: this.enterOuterAlt(localContext, 2); { - this.state = 410; + this.state = 414; this.emptyStatement(); } break; @@ -1152,90 +1158,90 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 425; + this.state = 429; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 413; + this.state = 417; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 414; + this.state = 418; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 415; + this.state = 419; this.describeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 416; + this.state = 420; this.explainStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 417; + this.state = 421; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 418; + this.state = 422; this.showStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 419; + this.state = 423; this.loadStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 420; + this.state = 424; this.unloadStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 421; + this.state = 425; this.setStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 422; + this.state = 426; this.resetStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 423; + this.state = 427; this.jarStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 424; + this.state = 428; this.dtAddStatement(); } break; @@ -1261,7 +1267,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 427; + this.state = 431; this.match(FlinkSqlParser.SEMICOLON); } } @@ -1283,104 +1289,104 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 443; + this.state = 447; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 429; + this.state = 433; this.createTable(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 430; + this.state = 434; this.createDatabase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 431; + this.state = 435; this.createView(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 432; + this.state = 436; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 433; + this.state = 437; this.createCatalog(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 434; + this.state = 438; this.alterTable(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 435; + this.state = 439; this.alterView(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 436; + this.state = 440; this.alterDatabase(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 437; + this.state = 441; this.alterFunction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 438; + this.state = 442; this.dropCatalog(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 439; + this.state = 443; this.dropTable(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 440; + this.state = 444; this.dropDatabase(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 441; + this.state = 445; this.dropView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 442; + this.state = 446; this.dropFunction(); } break; @@ -1404,7 +1410,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 447; + this.state = 451; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_SELECT: @@ -1413,7 +1419,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 445; + this.state = 449; this.queryStatement(0); } break; @@ -1422,7 +1428,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 2); { - this.state = 446; + this.state = 450; this.insertStatement(); } break; @@ -1451,16 +1457,16 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 449; + this.state = 453; _la = this.tokenStream.LA(1); - if(!(_la === 109 || _la === 451)) { + if(!(_la === 109 || _la === 453)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 450; + this.state = 454; this.tablePath(); } } @@ -1484,24 +1490,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 452; - this.match(FlinkSqlParser.KW_EXPLAIN); this.state = 456; + this.match(FlinkSqlParser.KW_EXPLAIN); + this.state = 460; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CHANGELOG_MODE: case FlinkSqlParser.KW_ESTIMATED_COST: case FlinkSqlParser.KW_JSON_EXECUTION_PLAN: { - this.state = 453; + this.state = 457; this.explainDetails(); } break; case FlinkSqlParser.KW_PLAN: { - this.state = 454; + this.state = 458; this.match(FlinkSqlParser.KW_PLAN); - this.state = 455; + this.state = 459; this.match(FlinkSqlParser.KW_FOR); } break; @@ -1517,24 +1523,24 @@ export class FlinkSqlParser extends SQLParserBase { default: break; } - this.state = 461; + this.state = 465; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 458; + this.state = 462; this.dmlStatement(); } break; case 2: { - this.state = 459; + this.state = 463; this.insertSimpleStatement(); } break; case 3: { - this.state = 460; + this.state = 464; this.insertMulStatement(); } break; @@ -1562,21 +1568,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 463; + this.state = 467; this.explainDetail(); - this.state = 468; + this.state = 472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 464; + this.state = 468; this.match(FlinkSqlParser.COMMA); - this.state = 465; + this.state = 469; this.explainDetail(); } } - this.state = 470; + this.state = 474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1603,9 +1609,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 471; + this.state = 475; _la = this.tokenStream.LA(1); - if(!(_la === 45 || _la === 128 || _la === 189)) { + if(!(_la === 45 || _la === 128 || _la === 190)) { this.errorHandler.recoverInline(this); } else { @@ -1632,33 +1638,33 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new UseStatementContext(this.context, this.state); this.enterRule(localContext, 20, FlinkSqlParser.RULE_useStatement); try { - this.state = 479; + this.state = 483; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 473; + this.state = 477; this.match(FlinkSqlParser.KW_USE); - this.state = 474; + this.state = 478; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 475; + this.state = 479; this.catalogPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 476; + this.state = 480; this.match(FlinkSqlParser.KW_USE); - this.state = 477; + this.state = 481; this.databasePath(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 478; + this.state = 482; this.useModuleStatement(); } break; @@ -1685,25 +1691,25 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 481; + this.state = 485; this.match(FlinkSqlParser.KW_USE); - this.state = 482; + this.state = 486; this.match(FlinkSqlParser.KW_MODULES); - this.state = 483; + this.state = 487; this.uid(); - this.state = 488; + this.state = 492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 484; + this.state = 488; this.match(FlinkSqlParser.COMMA); - this.state = 485; + this.state = 489; this.uid(); } } - this.state = 490; + this.state = 494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1728,17 +1734,17 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 24, FlinkSqlParser.RULE_showStatement); let _la: number; try { - this.state = 533; + this.state = 537; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 491; + this.state = 495; this.match(FlinkSqlParser.KW_SHOW); - this.state = 492; + this.state = 496; _la = this.tokenStream.LA(1); - if(!(_la === 42 || _la === 90 || _la === 423 || _la === 465)) { + if(!(_la === 42 || _la === 90 || _la === 425 || _la === 467)) { this.errorHandler.recoverInline(this); } else { @@ -1750,13 +1756,13 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 493; + this.state = 497; this.match(FlinkSqlParser.KW_SHOW); - this.state = 494; + this.state = 498; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 495; + this.state = 499; _la = this.tokenStream.LA(1); - if(!(_la === 442 || _la === 448)) { + if(!(_la === 444 || _la === 450)) { this.errorHandler.recoverInline(this); } else { @@ -1768,35 +1774,35 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 496; + this.state = 500; this.match(FlinkSqlParser.KW_SHOW); - this.state = 497; + this.state = 501; this.match(FlinkSqlParser.KW_TABLES); - this.state = 500; + this.state = 504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 151 || _la === 170) { + if (_la === 152 || _la === 171) { { - this.state = 498; + this.state = 502; _la = this.tokenStream.LA(1); - if(!(_la === 151 || _la === 170)) { + if(!(_la === 152 || _la === 171)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 499; + this.state = 503; this.databasePath(); } } - this.state = 503; + this.state = 507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 203 || _la === 242) { + if (_la === 204 || _la === 243) { { - this.state = 502; + this.state = 506; this.likePredicate(); } } @@ -1806,41 +1812,41 @@ export class FlinkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 505; + this.state = 509; this.match(FlinkSqlParser.KW_SHOW); - this.state = 506; + this.state = 510; this.match(FlinkSqlParser.KW_COLUMNS); - this.state = 507; + this.state = 511; _la = this.tokenStream.LA(1); - if(!(_la === 151 || _la === 170)) { + if(!(_la === 152 || _la === 171)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 510; + this.state = 514; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 508; + this.state = 512; this.viewPath(); } break; case 2: { - this.state = 509; + this.state = 513; this.tablePath(); } break; } - this.state = 513; + this.state = 517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 203 || _la === 242) { + if (_la === 204 || _la === 243) { { - this.state = 512; + this.state = 516; this.likePredicate(); } } @@ -1850,26 +1856,26 @@ export class FlinkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 515; + this.state = 519; this.match(FlinkSqlParser.KW_SHOW); - this.state = 516; + this.state = 520; this.match(FlinkSqlParser.KW_CREATE); - this.state = 521; + this.state = 525; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_TABLE: { - this.state = 517; + this.state = 521; this.match(FlinkSqlParser.KW_TABLE); - this.state = 518; + this.state = 522; this.tablePath(); } break; case FlinkSqlParser.KW_VIEW: { - this.state = 519; + this.state = 523; this.match(FlinkSqlParser.KW_VIEW); - this.state = 520; + this.state = 524; this.viewPath(); } break; @@ -1881,38 +1887,38 @@ export class FlinkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 523; + this.state = 527; this.match(FlinkSqlParser.KW_SHOW); - this.state = 525; + this.state = 529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 412) { + if (_la === 414) { { - this.state = 524; + this.state = 528; this.match(FlinkSqlParser.KW_USER); } } - this.state = 527; + this.state = 531; this.match(FlinkSqlParser.KW_FUNCTIONS); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 528; + this.state = 532; this.match(FlinkSqlParser.KW_SHOW); - this.state = 530; + this.state = 534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 152) { + if (_la === 153) { { - this.state = 529; + this.state = 533; this.match(FlinkSqlParser.KW_FULL); } } - this.state = 532; + this.state = 536; this.match(FlinkSqlParser.KW_MODULES); } break; @@ -1938,20 +1944,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 535; + this.state = 539; this.match(FlinkSqlParser.KW_LOAD); - this.state = 536; + this.state = 540; this.match(FlinkSqlParser.KW_MODULE); - this.state = 537; + this.state = 541; this.uid(); - this.state = 540; + this.state = 544; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 538; + this.state = 542; this.match(FlinkSqlParser.KW_WITH); - this.state = 539; + this.state = 543; this.tablePropertyList(); } break; @@ -1978,11 +1984,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 542; + this.state = 546; this.match(FlinkSqlParser.KW_UNLOAD); - this.state = 543; + this.state = 547; this.match(FlinkSqlParser.KW_MODULE); - this.state = 544; + this.state = 548; this.uid(); } } @@ -2006,14 +2012,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 546; + this.state = 550; this.match(FlinkSqlParser.KW_SET); - this.state = 548; + this.state = 552; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 547; + this.state = 551; this.tableProperty(); } break; @@ -2040,14 +2046,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 550; + this.state = 554; this.match(FlinkSqlParser.KW_RESET); - this.state = 552; + this.state = 556; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 21, this.context) ) { case 1: { - this.state = 551; + this.state = 555; this.tablePropertyKey(); } break; @@ -2075,18 +2081,18 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 554; + this.state = 558; _la = this.tokenStream.LA(1); - if(!(_la === 438 || _la === 490)) { + if(!(_la === 440 || _la === 492)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 555; + this.state = 559; this.match(FlinkSqlParser.KW_JAR); - this.state = 556; + this.state = 560; this.jarFileName(); } } @@ -2109,28 +2115,28 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 36, FlinkSqlParser.RULE_dtAddStatement); let _la: number; try { - this.state = 608; + this.state = 612; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 558; + this.state = 562; this.match(FlinkSqlParser.KW_ADD); - this.state = 559; + this.state = 563; this.match(FlinkSqlParser.KW_JAR); - this.state = 560; + this.state = 564; this.match(FlinkSqlParser.KW_WITH); - this.state = 561; + this.state = 565; this.dtFilePath(); - this.state = 564; + this.state = 568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 562; + this.state = 566; this.match(FlinkSqlParser.KW_AS); - this.state = 563; + this.state = 567; this.uid(); } } @@ -2140,34 +2146,34 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 566; + this.state = 570; this.match(FlinkSqlParser.KW_ADD); - this.state = 567; + this.state = 571; this.match(FlinkSqlParser.KW_FILE); - this.state = 568; + this.state = 572; this.match(FlinkSqlParser.KW_WITH); - this.state = 569; + this.state = 573; this.dtFilePath(); - this.state = 572; + this.state = 576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 570; + this.state = 574; this.match(FlinkSqlParser.KW_AS); - this.state = 571; + this.state = 575; this.uid(); } } - this.state = 576; + this.state = 580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 312) { + if (_la === 313) { { - this.state = 574; + this.state = 578; this.match(FlinkSqlParser.KW_RENAME); - this.state = 575; + this.state = 579; this.uid(); } } @@ -2177,81 +2183,81 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 578; + this.state = 582; this.match(FlinkSqlParser.KW_ADD); - this.state = 579; + this.state = 583; _la = this.tokenStream.LA(1); - if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 47) !== 0))) { + if(!(((((_la - 485)) & ~0x1F) === 0 && ((1 << (_la - 485)) & 47) !== 0))) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 580; + this.state = 584; this.match(FlinkSqlParser.KW_WITH); - this.state = 581; + this.state = 585; this.dtFilePath(); - this.state = 582; + this.state = 586; this.match(FlinkSqlParser.KW_RENAME); - this.state = 583; + this.state = 587; this.uid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 585; + this.state = 589; this.match(FlinkSqlParser.KW_ADD); - this.state = 586; + this.state = 590; this.match(FlinkSqlParser.KW_PYTHON_PARAMETER); - this.state = 587; + this.state = 591; this.dtFilePath(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 588; + this.state = 592; this.match(FlinkSqlParser.KW_ADD); - this.state = 589; + this.state = 593; this.match(FlinkSqlParser.KW_ENGINE); - this.state = 590; + this.state = 594; this.match(FlinkSqlParser.KW_FILE); - this.state = 591; + this.state = 595; this.match(FlinkSqlParser.KW_WITH); - this.state = 592; + this.state = 596; this.dtFilePath(); - this.state = 593; + this.state = 597; this.match(FlinkSqlParser.KW_RENAME); - this.state = 594; + this.state = 598; this.uid(); - this.state = 595; + this.state = 599; this.match(FlinkSqlParser.KW_KEY); - this.state = 596; + this.state = 600; this.uid(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 598; + this.state = 602; this.match(FlinkSqlParser.KW_ADD); - this.state = 599; + this.state = 603; this.match(FlinkSqlParser.KW_CONFIG); - this.state = 600; + this.state = 604; this.match(FlinkSqlParser.KW_FILE); - this.state = 601; + this.state = 605; this.match(FlinkSqlParser.KW_WITH); - this.state = 602; + this.state = 606; this.dtFilePath(); - this.state = 603; + this.state = 607; this.match(FlinkSqlParser.KW_FOR); - this.state = 604; + this.state = 608; this.uid(); - this.state = 605; + this.state = 609; this.match(FlinkSqlParser.KW_AS); - this.state = 606; + this.state = 610; this.uid(); } break; @@ -2279,7 +2285,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 614; + this.state = 618; this.errorHandler.sync(this); alternative = 1; do { @@ -2287,17 +2293,17 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 611; + this.state = 615; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 535) { + if (_la === 537) { { - this.state = 610; + this.state = 614; this.match(FlinkSqlParser.SLASH_SIGN); } } - this.state = 613; + this.state = 617; this.uid(); } } @@ -2305,7 +2311,7 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 616; + this.state = 620; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -2331,18 +2337,18 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 620; + this.state = 624; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 618; + this.state = 622; this.simpleCreateTable(); } break; case 2: { - this.state = 619; + this.state = 623; this.createTableAsSelect(); } break; @@ -2371,122 +2377,122 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 622; + this.state = 626; this.match(FlinkSqlParser.KW_CREATE); - this.state = 624; + this.state = 628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 498) { + if (_la === 500) { { - this.state = 623; + this.state = 627; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 626; + this.state = 630; this.match(FlinkSqlParser.KW_TABLE); - this.state = 628; + this.state = 632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 627; + this.state = 631; this.ifNotExists(); } } - this.state = 630; + this.state = 634; this.tablePathCreate(); - this.state = 631; + this.state = 635; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 632; + this.state = 636; this.columnOptionDefinition(); - this.state = 637; + this.state = 641; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 633; + this.state = 637; this.match(FlinkSqlParser.COMMA); - this.state = 634; + this.state = 638; this.columnOptionDefinition(); } } } - this.state = 639; + this.state = 643; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } - this.state = 642; + this.state = 646; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 640; + this.state = 644; this.match(FlinkSqlParser.COMMA); - this.state = 641; + this.state = 645; this.watermarkDefinition(); } break; } - this.state = 646; + this.state = 650; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 644; + this.state = 648; this.match(FlinkSqlParser.COMMA); - this.state = 645; + this.state = 649; this.tableConstraint(); } break; } - this.state = 650; + this.state = 654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 521) { + if (_la === 523) { { - this.state = 648; + this.state = 652; this.match(FlinkSqlParser.COMMA); - this.state = 649; + this.state = 653; this.selfDefinitionClause(); } } - this.state = 652; + this.state = 656; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 655; + this.state = 659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 653; + this.state = 657; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 654; + this.state = 658; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 658; + this.state = 662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 270) { + if (_la === 271) { { - this.state = 657; + this.state = 661; this.partitionDefinition(); } } - this.state = 660; + this.state = 664; this.withOption(); - this.state = 662; + this.state = 666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 203) { + if (_la === 204) { { - this.state = 661; + this.state = 665; this.likeDefinition(); } } @@ -2514,32 +2520,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 664; + this.state = 668; this.match(FlinkSqlParser.KW_CREATE); - this.state = 665; + this.state = 669; this.match(FlinkSqlParser.KW_TABLE); - this.state = 667; + this.state = 671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 666; + this.state = 670; this.ifNotExists(); } } - this.state = 669; + this.state = 673; this.tablePathCreate(); - this.state = 670; + this.state = 674; this.withOption(); - this.state = 673; + this.state = 677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 671; + this.state = 675; this.match(FlinkSqlParser.KW_AS); - this.state = 672; + this.state = 676; this.queryStatement(0); } } @@ -2564,27 +2570,27 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnOptionDefinitionContext(this.context, this.state); this.enterRule(localContext, 46, FlinkSqlParser.RULE_columnOptionDefinition); try { - this.state = 678; + this.state = 682; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 675; + this.state = 679; this.physicalColumnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 676; + this.state = 680; this.metadataColumnDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 677; + this.state = 681; this.computedColumnDefinition(); } break; @@ -2611,28 +2617,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 680; + this.state = 684; this.columnNameCreate(); - this.state = 681; + this.state = 685; this.columnType(); - this.state = 683; + this.state = 687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 64 || _la === 242 || _la === 245 || _la === 289) { + if (_la === 64 || _la === 243 || _la === 246 || _la === 290) { { - this.state = 682; + this.state = 686; this.columnConstraint(); } } - this.state = 687; + this.state = 691; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 685; + this.state = 689; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 686; + this.state = 690; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -2657,20 +2663,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameCreateContext(this.context, this.state); this.enterRule(localContext, 50, FlinkSqlParser.RULE_columnNameCreate); try { - this.state = 691; + this.state = 695; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 689; + this.state = 693; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 690; + this.state = 694; this.expression(); } break; @@ -2694,20 +2700,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 52, FlinkSqlParser.RULE_columnName); try { - this.state = 695; + this.state = 699; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 693; + this.state = 697; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 694; + this.state = 698; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -2735,7 +2741,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 697; + this.state = 701; this.uid(); } } @@ -2760,27 +2766,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 699; + this.state = 703; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 700; + this.state = 704; this.columnName(); - this.state = 705; + this.state = 709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 701; + this.state = 705; this.match(FlinkSqlParser.COMMA); - this.state = 702; + this.state = 706; this.columnName(); } } - this.state = 707; + this.state = 711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 708; + this.state = 712; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2803,7 +2809,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 58, FlinkSqlParser.RULE_columnType); let _la: number; try { - this.state = 747; + this.state = 751; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_BOOLEAN: @@ -2811,10 +2817,10 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 710; + this.state = 714; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 32 || _la === 91 || _la === 245)) { + if(!(_la === 32 || _la === 91 || _la === 246)) { localContext._colType = this.errorHandler.recoverInline(this); } else { @@ -2839,22 +2845,22 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 2); { - this.state = 711; + this.state = 715; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 262275) !== 0) || _la === 92 || _la === 178 || _la === 179 || _la === 345 || _la === 361 || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 521) !== 0) || _la === 417 || _la === 418)) { + if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 262275) !== 0) || _la === 92 || _la === 179 || _la === 180 || _la === 346 || _la === 362 || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 521) !== 0) || _la === 419 || _la === 420)) { localContext._colType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 713; + this.state = 717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 517) { + if (_la === 519) { { - this.state = 712; + this.state = 716; this.lengthOneDimension(); } } @@ -2864,45 +2870,45 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 715; + this.state = 719; localContext._colType = this.match(FlinkSqlParser.KW_TIMESTAMP); - this.state = 717; + this.state = 721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 517) { + if (_la === 519) { { - this.state = 716; + this.state = 720; this.lengthOneDimension(); } } - this.state = 725; + this.state = 729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 434 || _la === 436) { + if (_la === 436 || _la === 438) { { - this.state = 719; + this.state = 723; _la = this.tokenStream.LA(1); - if(!(_la === 434 || _la === 436)) { + if(!(_la === 436 || _la === 438)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 721; + this.state = 725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 207) { + if (_la === 208) { { - this.state = 720; + this.state = 724; this.match(FlinkSqlParser.KW_LOCAL); } } - this.state = 723; + this.state = 727; this.match(FlinkSqlParser.KW_TIME); - this.state = 724; + this.state = 728; this.match(FlinkSqlParser.KW_ZONE); } } @@ -2916,22 +2922,22 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 4); { - this.state = 727; + this.state = 731; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 16387) !== 0) || _la === 144 || _la === 247)) { + if(!(((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 16387) !== 0) || _la === 144 || _la === 248)) { localContext._colType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 729; + this.state = 733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 517) { + if (_la === 519) { { - this.state = 728; + this.state = 732; this.lengthTwoOptionalDimension(); } } @@ -2942,22 +2948,22 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MULTISET: this.enterOuterAlt(localContext, 5); { - this.state = 731; + this.state = 735; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 13 || _la === 232)) { + if(!(_la === 13 || _la === 233)) { localContext._colType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 733; + this.state = 737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 508) { + if (_la === 510) { { - this.state = 732; + this.state = 736; this.lengthOneTypeDimension(); } } @@ -2967,14 +2973,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MAP: this.enterOuterAlt(localContext, 6); { - this.state = 735; + this.state = 739; localContext._colType = this.match(FlinkSqlParser.KW_MAP); - this.state = 737; + this.state = 741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 508) { + if (_la === 510) { { - this.state = 736; + this.state = 740; this.mapTypeDimension(); } } @@ -2984,14 +2990,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_ROW: this.enterOuterAlt(localContext, 7); { - this.state = 739; + this.state = 743; localContext._colType = this.match(FlinkSqlParser.KW_ROW); - this.state = 741; + this.state = 745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 508 || _la === 517) { + if (_la === 510 || _la === 519) { { - this.state = 740; + this.state = 744; this.rowTypeDimension(); } } @@ -3001,14 +3007,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_RAW: this.enterOuterAlt(localContext, 8); { - this.state = 743; + this.state = 747; localContext._colType = this.match(FlinkSqlParser.KW_RAW); - this.state = 745; + this.state = 749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 517) { + if (_la === 519) { { - this.state = 744; + this.state = 748; this.lengthTwoStringDimension(); } } @@ -3039,11 +3045,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 749; + this.state = 753; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 750; + this.state = 754; this.decimalLiteral(); - this.state = 751; + this.state = 755; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3068,23 +3074,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 753; + this.state = 757; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 754; + this.state = 758; this.decimalLiteral(); - this.state = 757; + this.state = 761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 521) { + if (_la === 523) { { - this.state = 755; + this.state = 759; this.match(FlinkSqlParser.COMMA); - this.state = 756; + this.state = 760; this.decimalLiteral(); } } - this.state = 759; + this.state = 763; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3109,23 +3115,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 761; + this.state = 765; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 762; + this.state = 766; this.stringLiteral(); - this.state = 765; + this.state = 769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 521) { + if (_la === 523) { { - this.state = 763; + this.state = 767; this.match(FlinkSqlParser.COMMA); - this.state = 764; + this.state = 768; this.stringLiteral(); } } - this.state = 767; + this.state = 771; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3149,11 +3155,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 769; + this.state = 773; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 770; + this.state = 774; this.columnType(); - this.state = 771; + this.state = 775; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3177,17 +3183,17 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 773; + this.state = 777; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 774; + this.state = 778; this.columnType(); { - this.state = 775; + this.state = 779; this.match(FlinkSqlParser.COMMA); - this.state = 776; + this.state = 780; this.columnType(); } - this.state = 778; + this.state = 782; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3210,68 +3216,68 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 70, FlinkSqlParser.RULE_rowTypeDimension); let _la: number; try { - this.state = 808; + this.state = 812; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 780; + this.state = 784; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 781; + this.state = 785; this.columnName(); - this.state = 782; + this.state = 786; this.columnType(); - this.state = 789; + this.state = 793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 783; + this.state = 787; this.match(FlinkSqlParser.COMMA); - this.state = 784; + this.state = 788; this.columnName(); - this.state = 785; + this.state = 789; this.columnType(); } } - this.state = 791; + this.state = 795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 792; + this.state = 796; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 794; + this.state = 798; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 795; + this.state = 799; this.columnName(); - this.state = 796; + this.state = 800; this.columnType(); - this.state = 803; + this.state = 807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 797; + this.state = 801; this.match(FlinkSqlParser.COMMA); - this.state = 798; + this.state = 802; this.columnName(); - this.state = 799; + this.state = 803; this.columnType(); } } - this.state = 805; + this.state = 809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 806; + this.state = 810; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3298,37 +3304,37 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 72, FlinkSqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 824; + this.state = 828; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CONSTRAINT: case FlinkSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 812; + this.state = 816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 810; + this.state = 814; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 811; + this.state = 815; this.constraintName(); } } - this.state = 814; + this.state = 818; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 815; + this.state = 819; this.match(FlinkSqlParser.KW_KEY); - this.state = 818; + this.state = 822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 816; + this.state = 820; this.match(FlinkSqlParser.KW_NOT); - this.state = 817; + this.state = 821; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3339,17 +3345,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 821; + this.state = 825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 820; + this.state = 824; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 823; + this.state = 827; this.match(FlinkSqlParser.KW_NULL); } break; @@ -3378,30 +3384,30 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 826; + this.state = 830; this.columnNameCreate(); - this.state = 827; + this.state = 831; this.columnType(); - this.state = 828; + this.state = 832; this.match(FlinkSqlParser.KW_METADATA); - this.state = 831; + this.state = 835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 151) { + if (_la === 152) { { - this.state = 829; + this.state = 833; this.match(FlinkSqlParser.KW_FROM); - this.state = 830; + this.state = 834; this.metadataKey(); } } - this.state = 834; + this.state = 838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 424) { + if (_la === 426) { { - this.state = 833; + this.state = 837; this.match(FlinkSqlParser.KW_VIRTUAL); } } @@ -3428,7 +3434,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 836; + this.state = 840; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3453,20 +3459,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 838; + this.state = 842; this.columnNameCreate(); - this.state = 839; + this.state = 843; this.match(FlinkSqlParser.KW_AS); - this.state = 840; + this.state = 844; this.computedColumnExpression(); - this.state = 843; + this.state = 847; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 841; + this.state = 845; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 842; + this.state = 846; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3493,7 +3499,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 845; + this.state = 849; this.expression(); } } @@ -3517,15 +3523,15 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 847; + this.state = 851; this.match(FlinkSqlParser.KW_WATERMARK); - this.state = 848; + this.state = 852; this.match(FlinkSqlParser.KW_FOR); - this.state = 849; + this.state = 853; this.columnName(); - this.state = 850; + this.state = 854; this.match(FlinkSqlParser.KW_AS); - this.state = 851; + this.state = 855; this.expression(); } } @@ -3550,27 +3556,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 855; + this.state = 859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 853; + this.state = 857; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 854; + this.state = 858; this.constraintName(); } } - this.state = 857; + this.state = 861; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 858; + this.state = 862; this.match(FlinkSqlParser.KW_KEY); - this.state = 859; + this.state = 863; this.columnNameList(); - this.state = 860; + this.state = 864; this.match(FlinkSqlParser.KW_NOT); - this.state = 861; + this.state = 865; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3594,7 +3600,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 863; + this.state = 867; this.identifier(); } } @@ -3618,11 +3624,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 865; + this.state = 869; this.match(FlinkSqlParser.KW_PERIOD); - this.state = 866; + this.state = 870; this.match(FlinkSqlParser.KW_FOR); - this.state = 867; + this.state = 871; this.match(FlinkSqlParser.KW_SYSTEM_TIME); } } @@ -3646,11 +3652,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 869; + this.state = 873; this.match(FlinkSqlParser.KW_PARTITIONED); - this.state = 870; + this.state = 874; this.match(FlinkSqlParser.KW_BY); - this.state = 871; + this.state = 875; this.transformList(); } } @@ -3675,27 +3681,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 873; + this.state = 877; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 874; + this.state = 878; this.transform(); - this.state = 879; + this.state = 883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 875; + this.state = 879; this.match(FlinkSqlParser.COMMA); - this.state = 876; + this.state = 880; this.transform(); } } - this.state = 881; + this.state = 885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 882; + this.state = 886; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3718,14 +3724,14 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 94, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 896; + this.state = 900; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: localContext = new IdentityTransformContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 884; + this.state = 888; this.columnName(); } break; @@ -3733,27 +3739,27 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ApplyTransformContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 885; + this.state = 889; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 886; + this.state = 890; this.transformArgument(); - this.state = 891; + this.state = 895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 887; + this.state = 891; this.match(FlinkSqlParser.COMMA); - this.state = 888; + this.state = 892; this.transformArgument(); } } - this.state = 893; + this.state = 897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 894; + this.state = 898; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3777,20 +3783,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new TransformArgumentContext(this.context, this.state); this.enterRule(localContext, 96, FlinkSqlParser.RULE_transformArgument); try { - this.state = 900; + this.state = 904; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 898; + this.state = 902; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 899; + this.state = 903; this.constant(); } break; @@ -3817,32 +3823,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 902; + this.state = 906; this.match(FlinkSqlParser.KW_LIKE); - this.state = 903; + this.state = 907; this.tablePath(); - this.state = 912; + this.state = 916; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 904; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 908; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 267 || _la === 456 || _la === 463) { + while (_la === 268 || _la === 458 || _la === 465) { { { - this.state = 905; + this.state = 909; this.likeOption(); } } - this.state = 910; + this.state = 914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 911; + this.state = 915; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3868,25 +3874,25 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 100, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 918; + this.state = 922; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 914; + this.state = 918; _la = this.tokenStream.LA(1); - if(!(_la === 456 || _la === 463)) { + if(!(_la === 458 || _la === 465)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 915; + this.state = 919; _la = this.tokenStream.LA(1); - if(!(_la === 5 || _la === 271 || _la === 445)) { + if(!(_la === 5 || _la === 272 || _la === 447)) { this.errorHandler.recoverInline(this); } else { @@ -3900,18 +3906,18 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 916; + this.state = 920; _la = this.tokenStream.LA(1); - if(!(_la === 267 || _la === 456 || _la === 463)) { + if(!(_la === 268 || _la === 458 || _la === 465)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 917; + this.state = 921; _la = this.tokenStream.LA(1); - if(!(_la === 426 || _la === 459 || _la === 478)) { + if(!(_la === 428 || _la === 461 || _la === 480)) { this.errorHandler.recoverInline(this); } else { @@ -3943,13 +3949,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 920; + this.state = 924; this.match(FlinkSqlParser.KW_CREATE); - this.state = 921; + this.state = 925; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 922; + this.state = 926; this.catalogPathCreate(); - this.state = 923; + this.state = 927; this.withOption(); } } @@ -3974,35 +3980,35 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 925; + this.state = 929; this.match(FlinkSqlParser.KW_CREATE); - this.state = 926; + this.state = 930; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 928; + this.state = 932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 927; + this.state = 931; this.ifNotExists(); } } - this.state = 930; + this.state = 934; this.databasePathCreate(); - this.state = 933; + this.state = 937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 931; + this.state = 935; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 932; + this.state = 936; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 935; + this.state = 939; this.withOption(); } } @@ -4027,57 +4033,57 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 937; + this.state = 941; this.match(FlinkSqlParser.KW_CREATE); - this.state = 939; + this.state = 943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 498) { + if (_la === 500) { { - this.state = 938; + this.state = 942; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 941; + this.state = 945; this.match(FlinkSqlParser.KW_VIEW); - this.state = 943; + this.state = 947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 942; + this.state = 946; this.ifNotExists(); } } - this.state = 945; + this.state = 949; this.viewPathCreate(); - this.state = 947; + this.state = 951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 517) { + if (_la === 519) { { - this.state = 946; + this.state = 950; this.columnNameList(); } } - this.state = 951; + this.state = 955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 949; + this.state = 953; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 950; + this.state = 954; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 953; + this.state = 957; this.match(FlinkSqlParser.KW_AS); - this.state = 954; + this.state = 958; this.queryStatement(0); } } @@ -4102,54 +4108,54 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 956; - this.match(FlinkSqlParser.KW_CREATE); this.state = 960; + this.match(FlinkSqlParser.KW_CREATE); + this.state = 964; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 957; + this.state = 961; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 958; + this.state = 962; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 959; + this.state = 963; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 962; + this.state = 966; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 964; + this.state = 968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 963; + this.state = 967; this.ifNotExists(); } } - this.state = 966; + this.state = 970; this.functionNameCreate(); - this.state = 967; + this.state = 971; this.match(FlinkSqlParser.KW_AS); - this.state = 968; + this.state = 972; this.identifier(); - this.state = 971; + this.state = 975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 196) { + if (_la === 197) { { - this.state = 969; + this.state = 973; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 970; + this.state = 974; _la = this.tokenStream.LA(1); - if(!(_la === 331 || _la === 466 || _la === 482)) { + if(!(_la === 332 || _la === 468 || _la === 484)) { this.errorHandler.recoverInline(this); } else { @@ -4159,12 +4165,12 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 974; + this.state = 978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 413) { + if (_la === 415) { { - this.state = 973; + this.state = 977; this.usingClause(); } } @@ -4192,27 +4198,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 976; + this.state = 980; this.match(FlinkSqlParser.KW_USING); - this.state = 977; + this.state = 981; this.match(FlinkSqlParser.KW_JAR); - this.state = 978; + this.state = 982; this.jarFileName(); - this.state = 984; + this.state = 988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 979; + this.state = 983; this.match(FlinkSqlParser.COMMA); - this.state = 980; + this.state = 984; this.match(FlinkSqlParser.KW_JAR); - this.state = 981; + this.state = 985; this.jarFileName(); } } - this.state = 986; + this.state = 990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4238,7 +4244,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 987; + this.state = 991; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -4263,52 +4269,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 989; + this.state = 993; this.match(FlinkSqlParser.KW_ALTER); - this.state = 990; + this.state = 994; this.match(FlinkSqlParser.KW_TABLE); - this.state = 992; + this.state = 996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 991; + this.state = 995; this.ifExists(); } } - this.state = 994; + this.state = 998; this.tablePath(); - this.state = 1000; + this.state = 1004; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 995; + this.state = 999; this.renameDefinition(); } break; case 2: { - this.state = 996; + this.state = 1000; this.setKeyValueDefinition(); } break; case 3: { - this.state = 997; + this.state = 1001; this.addConstraint(); } break; case 4: { - this.state = 998; + this.state = 1002; this.dropConstraint(); } break; case 5: { - this.state = 999; + this.state = 1003; this.addUnique(); } break; @@ -4336,21 +4342,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1002; + this.state = 1006; this.match(FlinkSqlParser.KW_RENAME); - this.state = 1004; + this.state = 1008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { + if (((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294967295) !== 0) || ((((_la - 472)) & ~0x1F) === 0 && ((1 << (_la - 472)) & 4294967295) !== 0) || ((((_la - 504)) & ~0x1F) === 0 && ((1 << (_la - 504)) & 15) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 19) !== 0)) { { - this.state = 1003; + this.state = 1007; this.uid(); } } - this.state = 1006; + this.state = 1010; this.match(FlinkSqlParser.KW_TO); - this.state = 1007; + this.state = 1011; this.uid(); } } @@ -4374,9 +4380,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1009; + this.state = 1013; this.match(FlinkSqlParser.KW_SET); - this.state = 1010; + this.state = 1014; this.tablePropertyList(); } } @@ -4401,24 +4407,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1012; + this.state = 1016; this.match(FlinkSqlParser.KW_ADD); - this.state = 1013; + this.state = 1017; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1014; + this.state = 1018; this.constraintName(); - this.state = 1015; + this.state = 1019; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 1016; + this.state = 1020; this.match(FlinkSqlParser.KW_KEY); - this.state = 1017; + this.state = 1021; this.columnNameList(); - this.state = 1019; + this.state = 1023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1018; + this.state = 1022; this.notForced(); } } @@ -4445,11 +4451,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1021; + this.state = 1025; this.match(FlinkSqlParser.KW_DROP); - this.state = 1022; + this.state = 1026; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1023; + this.state = 1027; this.constraintName(); } } @@ -4473,11 +4479,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1025; + this.state = 1029; this.match(FlinkSqlParser.KW_ADD); - this.state = 1026; + this.state = 1030; this.match(FlinkSqlParser.KW_UNIQUE); - this.state = 1027; + this.state = 1031; this.columnNameList(); } } @@ -4501,9 +4507,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1029; + this.state = 1033; this.match(FlinkSqlParser.KW_NOT); - this.state = 1030; + this.state = 1034; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -4527,26 +4533,26 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1032; + this.state = 1036; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1033; + this.state = 1037; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1034; - this.viewPath(); this.state = 1038; + this.viewPath(); + this.state = 1042; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RENAME: { - this.state = 1035; + this.state = 1039; this.renameDefinition(); } break; case FlinkSqlParser.KW_AS: { - this.state = 1036; + this.state = 1040; this.match(FlinkSqlParser.KW_AS); - this.state = 1037; + this.state = 1041; this.queryStatement(0); } break; @@ -4575,13 +4581,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1040; + this.state = 1044; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1041; + this.state = 1045; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1042; + this.state = 1046; this.databasePath(); - this.state = 1043; + this.state = 1047; this.setKeyValueDefinition(); } } @@ -4606,54 +4612,54 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1045; - this.match(FlinkSqlParser.KW_ALTER); this.state = 1049; + this.match(FlinkSqlParser.KW_ALTER); + this.state = 1053; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1046; + this.state = 1050; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1047; + this.state = 1051; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1048; + this.state = 1052; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1051; + this.state = 1055; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1053; + this.state = 1057; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1052; + this.state = 1056; this.ifExists(); } break; } - this.state = 1055; + this.state = 1059; this.functionName(); - this.state = 1056; + this.state = 1060; this.match(FlinkSqlParser.KW_AS); - this.state = 1057; + this.state = 1061; this.identifier(); - this.state = 1060; + this.state = 1064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 196) { + if (_la === 197) { { - this.state = 1058; + this.state = 1062; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 1059; + this.state = 1063; _la = this.tokenStream.LA(1); - if(!(_la === 331 || _la === 466 || _la === 482)) { + if(!(_la === 332 || _la === 468 || _la === 484)) { this.errorHandler.recoverInline(this); } else { @@ -4686,21 +4692,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1062; + this.state = 1066; this.match(FlinkSqlParser.KW_DROP); - this.state = 1063; + this.state = 1067; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 1065; + this.state = 1069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 1064; + this.state = 1068; this.ifExists(); } } - this.state = 1067; + this.state = 1071; this.catalogPath(); } } @@ -4725,31 +4731,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1069; + this.state = 1073; this.match(FlinkSqlParser.KW_DROP); - this.state = 1071; + this.state = 1075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 498) { + if (_la === 500) { { - this.state = 1070; + this.state = 1074; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1073; + this.state = 1077; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1075; + this.state = 1079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 1074; + this.state = 1078; this.ifExists(); } } - this.state = 1077; + this.state = 1081; this.tablePath(); } } @@ -4774,31 +4780,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1079; + this.state = 1083; this.match(FlinkSqlParser.KW_DROP); - this.state = 1080; + this.state = 1084; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1082; + this.state = 1086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 1081; + this.state = 1085; this.ifExists(); } } - this.state = 1084; + this.state = 1088; this.databasePath(); - this.state = 1086; + this.state = 1090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 441 || _la === 491) { + if (_la === 443 || _la === 493) { { - this.state = 1085; + this.state = 1089; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 441 || _la === 491)) { + if(!(_la === 443 || _la === 493)) { localContext._dropType = this.errorHandler.recoverInline(this); } else { @@ -4831,31 +4837,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1088; + this.state = 1092; this.match(FlinkSqlParser.KW_DROP); - this.state = 1090; + this.state = 1094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 498) { + if (_la === 500) { { - this.state = 1089; + this.state = 1093; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1092; + this.state = 1096; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1094; + this.state = 1098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 1093; + this.state = 1097; this.ifExists(); } } - this.state = 1096; + this.state = 1100; this.viewPath(); } } @@ -4879,39 +4885,39 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1098; - this.match(FlinkSqlParser.KW_DROP); this.state = 1102; + this.match(FlinkSqlParser.KW_DROP); + this.state = 1106; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1099; + this.state = 1103; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1100; + this.state = 1104; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1101; + this.state = 1105; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1104; + this.state = 1108; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1106; + this.state = 1110; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1105; + this.state = 1109; this.ifExists(); } break; } - this.state = 1108; + this.state = 1112; this.functionName(); } } @@ -4934,24 +4940,24 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 144, FlinkSqlParser.RULE_insertStatement); let _la: number; try { - this.state = 1117; + this.state = 1121; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1111; + this.state = 1115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1110; + this.state = 1114; this.match(FlinkSqlParser.KW_EXECUTE); } } - this.state = 1113; + this.state = 1117; this.insertSimpleStatement(); } } @@ -4959,7 +4965,7 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1114; + this.state = 1118; this.insertMulStatementCompatibility(); } break; @@ -4967,9 +4973,9 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1115; + this.state = 1119; this.match(FlinkSqlParser.KW_EXECUTE); - this.state = 1116; + this.state = 1120; this.insertMulStatement(); } } @@ -4997,51 +5003,51 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1119; + this.state = 1123; this.match(FlinkSqlParser.KW_INSERT); - this.state = 1120; + this.state = 1124; _la = this.tokenStream.LA(1); - if(!(_la === 183 || _la === 266)) { + if(!(_la === 184 || _la === 267)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1121; + this.state = 1125; this.tablePath(); - this.state = 1130; + this.state = 1134; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1123; + this.state = 1127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 269) { + if (_la === 270) { { - this.state = 1122; + this.state = 1126; this.insertPartitionDefinition(); } } - this.state = 1126; + this.state = 1130; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: { - this.state = 1125; + this.state = 1129; this.columnNameList(); } break; } - this.state = 1128; + this.state = 1132; this.queryStatement(0); } break; case 2: { - this.state = 1129; + this.state = 1133; this.valuesDefinition(); } break; @@ -5068,9 +5074,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1132; + this.state = 1136; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1133; + this.state = 1137; this.tablePropertyList(); } } @@ -5095,23 +5101,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1135; + this.state = 1139; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1136; + this.state = 1140; this.valuesRowDefinition(); - this.state = 1141; + this.state = 1145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 1137; + this.state = 1141; this.match(FlinkSqlParser.COMMA); - this.state = 1138; + this.state = 1142; this.valuesRowDefinition(); } } - this.state = 1143; + this.state = 1147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5138,27 +5144,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1144; + this.state = 1148; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1145; + this.state = 1149; this.valueDefinition(); - this.state = 1150; + this.state = 1154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 1146; + this.state = 1150; this.match(FlinkSqlParser.COMMA); - this.state = 1147; + this.state = 1151; this.valueDefinition(); } } - this.state = 1152; + this.state = 1156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1153; + this.state = 1157; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5180,20 +5186,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ValueDefinitionContext(this.context, this.state); this.enterRule(localContext, 154, FlinkSqlParser.RULE_valueDefinition); try { - this.state = 1157; + this.state = 1161; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1155; + this.state = 1159; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1156; + this.state = 1160; this.functionCallExpression(); } break; @@ -5220,31 +5226,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1159; + this.state = 1163; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1160; + this.state = 1164; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1161; + this.state = 1165; this.match(FlinkSqlParser.KW_SET); - this.state = 1162; - this.match(FlinkSqlParser.SEMICOLON); this.state = 1166; + this.match(FlinkSqlParser.SEMICOLON); + this.state = 1170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1163; + this.state = 1167; this.insertSimpleStatement(); - this.state = 1164; + this.state = 1168; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1168; + this.state = 1172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 177); - this.state = 1170; + } while (_la === 178); + this.state = 1174; this.match(FlinkSqlParser.KW_END); } } @@ -5269,29 +5275,29 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1172; + this.state = 1176; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1173; + this.state = 1177; this.match(FlinkSqlParser.KW_SET); - this.state = 1174; - this.match(FlinkSqlParser.KW_BEGIN); this.state = 1178; + this.match(FlinkSqlParser.KW_BEGIN); + this.state = 1182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1175; + this.state = 1179; this.insertSimpleStatement(); - this.state = 1176; + this.state = 1180; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1180; + this.state = 1184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 177); - this.state = 1182; + } while (_la === 178); + this.state = 1186; this.match(FlinkSqlParser.KW_END); } } @@ -5328,53 +5334,53 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1207; + this.state = 1211; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 118, this.context) ) { case 1: { - this.state = 1185; + this.state = 1189; this.valuesClause(); } break; case 2: { - this.state = 1186; + this.state = 1190; this.withClause(); - this.state = 1187; + this.state = 1191; this.queryStatement(5); } break; case 3: { - this.state = 1189; + this.state = 1193; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1190; + this.state = 1194; this.queryStatement(0); - this.state = 1191; + this.state = 1195; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: { - this.state = 1193; + this.state = 1197; this.selectClause(); - this.state = 1195; + this.state = 1199; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 114, this.context) ) { case 1: { - this.state = 1194; + this.state = 1198; this.orderByClause(); } break; } - this.state = 1198; + this.state = 1202; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1197; + this.state = 1201; this.limitClause(); } break; @@ -5383,24 +5389,24 @@ export class FlinkSqlParser extends SQLParserBase { break; case 5: { - this.state = 1200; + this.state = 1204; this.selectStatement(); - this.state = 1202; + this.state = 1206; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1201; + this.state = 1205; this.orderByClause(); } break; } - this.state = 1205; + this.state = 1209; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1204; + this.state = 1208; this.limitClause(); } break; @@ -5409,7 +5415,7 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1223; + this.state = 1227; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5423,48 +5429,48 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 1209; + this.state = 1213; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1210; + this.state = 1214; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 130 || _la === 180 || _la === 403)) { + if(!(_la === 130 || _la === 181 || _la === 405)) { localContext._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1212; + this.state = 1216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5) { { - this.state = 1211; + this.state = 1215; this.match(FlinkSqlParser.KW_ALL); } } - this.state = 1214; + this.state = 1218; localContext._right = this.queryStatement(0); - this.state = 1216; + this.state = 1220; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1215; + this.state = 1219; this.orderByClause(); } break; } - this.state = 1219; + this.state = 1223; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1218; + this.state = 1222; this.limitClause(); } break; @@ -5472,7 +5478,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1225; + this.state = 1229; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); } @@ -5499,25 +5505,25 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1226; + this.state = 1230; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1227; + this.state = 1231; this.expression(); - this.state = 1232; + this.state = 1236; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 123, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1228; + this.state = 1232; this.match(FlinkSqlParser.COMMA); - this.state = 1229; + this.state = 1233; this.expression(); } } } - this.state = 1234; + this.state = 1238; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 123, this.context); } @@ -5544,23 +5550,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1235; + this.state = 1239; this.match(FlinkSqlParser.KW_WITH); - this.state = 1236; + this.state = 1240; this.withItem(); - this.state = 1241; + this.state = 1245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 1237; + this.state = 1241; this.match(FlinkSqlParser.COMMA); - this.state = 1238; + this.state = 1242; this.withItem(); } } - this.state = 1243; + this.state = 1247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5587,45 +5593,45 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1244; + this.state = 1248; this.withItemName(); - this.state = 1256; + this.state = 1260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 517) { + if (_la === 519) { { - this.state = 1245; + this.state = 1249; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1246; + this.state = 1250; this.columnName(); - this.state = 1251; + this.state = 1255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 1247; + this.state = 1251; this.match(FlinkSqlParser.COMMA); - this.state = 1248; + this.state = 1252; this.columnName(); } } - this.state = 1253; + this.state = 1257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1254; + this.state = 1258; this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 1258; + this.state = 1262; this.match(FlinkSqlParser.KW_AS); - this.state = 1259; + this.state = 1263; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1260; + this.state = 1264; this.queryStatement(0); - this.state = 1261; + this.state = 1265; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5649,7 +5655,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1263; + this.state = 1267; this.identifier(); } } @@ -5671,60 +5677,60 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SelectStatementContext(this.context, this.state); this.enterRule(localContext, 170, FlinkSqlParser.RULE_selectStatement); try { - this.state = 1285; + this.state = 1289; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1265; + this.state = 1269; this.selectClause(); - this.state = 1267; + this.state = 1271; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1266; + this.state = 1270; this.fromClause(); } break; } - this.state = 1270; + this.state = 1274; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1269; + this.state = 1273; this.whereClause(); } break; } - this.state = 1273; + this.state = 1277; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: { - this.state = 1272; + this.state = 1276; this.groupByClause(); } break; } - this.state = 1276; + this.state = 1280; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { case 1: { - this.state = 1275; + this.state = 1279; this.havingClause(); } break; } - this.state = 1279; + this.state = 1283; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1278; + this.state = 1282; this.windowClause(); } break; @@ -5734,11 +5740,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1281; + this.state = 1285; this.selectClause(); - this.state = 1282; + this.state = 1286; this.fromClause(); - this.state = 1283; + this.state = 1287; this.matchRecognizeClause(); } break; @@ -5765,46 +5771,46 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1287; + this.state = 1291; this.match(FlinkSqlParser.KW_SELECT); - this.state = 1289; + this.state = 1293; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1288; + this.state = 1292; this.setQuantifier(); } break; } - this.state = 1300; + this.state = 1304; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 135, this.context) ) { case 1: { - this.state = 1291; + this.state = 1295; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; case 2: { - this.state = 1292; + this.state = 1296; this.projectItemDefinition(); - this.state = 1297; + this.state = 1301; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1293; + this.state = 1297; this.match(FlinkSqlParser.COMMA); - this.state = 1294; + this.state = 1298; this.projectItemDefinition(); } } } - this.state = 1299; + this.state = 1303; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); } @@ -5832,37 +5838,37 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 174, FlinkSqlParser.RULE_projectItemDefinition); let _la: number; try { - this.state = 1317; + this.state = 1321; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1302; + this.state = 1306; this.overWindowItem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1303; + this.state = 1307; this.expression(); - this.state = 1308; + this.state = 1312; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: { - this.state = 1305; + this.state = 1309; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { case 1: { - this.state = 1304; + this.state = 1308; this.match(FlinkSqlParser.KW_AS); } break; } - this.state = 1307; + this.state = 1311; this.columnName(); } break; @@ -5872,24 +5878,24 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1310; + this.state = 1314; this.columnName(); - this.state = 1315; + this.state = 1319; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: { - this.state = 1312; + this.state = 1316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1311; + this.state = 1315; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1314; + this.state = 1318; this.expression(); } break; @@ -5916,37 +5922,53 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new OverWindowItemContext(this.context, this.state); this.enterRule(localContext, 176, FlinkSqlParser.RULE_overWindowItem); try { - this.state = 1331; + this.state = 1337; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 141, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1319; + this.state = 1323; this.primaryExpression(0); - this.state = 1320; + this.state = 1324; this.match(FlinkSqlParser.KW_OVER); - this.state = 1321; + this.state = 1325; this.windowSpec(); - this.state = 1322; - this.match(FlinkSqlParser.KW_AS); - this.state = 1323; - this.identifier(); + this.state = 1328; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 141, this.context) ) { + case 1: + { + this.state = 1326; + this.match(FlinkSqlParser.KW_AS); + this.state = 1327; + this.identifier(); + } + break; + } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1325; + this.state = 1330; this.primaryExpression(0); - this.state = 1326; + this.state = 1331; this.match(FlinkSqlParser.KW_OVER); - this.state = 1327; + this.state = 1332; this.errorCapturingIdentifier(); - this.state = 1328; - this.match(FlinkSqlParser.KW_AS); - this.state = 1329; - this.identifier(); + this.state = 1335; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { + case 1: + { + this.state = 1333; + this.match(FlinkSqlParser.KW_AS); + this.state = 1334; + this.identifier(); + } + break; + } } break; } @@ -5971,9 +5993,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1333; + this.state = 1339; this.match(FlinkSqlParser.KW_FROM); - this.state = 1334; + this.state = 1340; this.tableExpression(0); } } @@ -6010,50 +6032,50 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1347; + this.state = 1353; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 145, this.context) ) { case 1: { - this.state = 1337; + this.state = 1343; this.tableReference(); - this.state = 1342; + this.state = 1348; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 144, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1338; + this.state = 1344; this.match(FlinkSqlParser.COMMA); - this.state = 1339; + this.state = 1345; this.tableReference(); } } } - this.state = 1344; + this.state = 1350; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 144, this.context); } } break; case 2: { - this.state = 1345; + this.state = 1351; this.inlineDataValueClause(); } break; case 3: { - this.state = 1346; + this.state = 1352; this.windowTVFClause(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1370; + this.state = 1376; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 151, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -6061,22 +6083,22 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1368; + this.state = 1374; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 150, this.context) ) { case 1: { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1349; + this.state = 1355; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1350; + this.state = 1356; this.match(FlinkSqlParser.KW_CROSS); - this.state = 1351; + this.state = 1357; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1352; + this.state = 1358; this.tableExpression(4); } break; @@ -6084,28 +6106,28 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1353; + this.state = 1359; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1355; + this.state = 1361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 234) { + if (_la === 235) { { - this.state = 1354; + this.state = 1360; this.match(FlinkSqlParser.KW_NATURAL); } } - this.state = 1358; + this.state = 1364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 152 || _la === 174 || _la === 202 || _la === 318) { + if (_la === 153 || _la === 175 || _la === 203 || _la === 319) { { - this.state = 1357; + this.state = 1363; _la = this.tokenStream.LA(1); - if(!(_la === 152 || _la === 174 || _la === 202 || _la === 318)) { + if(!(_la === 153 || _la === 175 || _la === 203 || _la === 319)) { this.errorHandler.recoverInline(this); } else { @@ -6115,26 +6137,26 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1361; + this.state = 1367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 262) { + if (_la === 263) { { - this.state = 1360; + this.state = 1366; this.match(FlinkSqlParser.KW_OUTER); } } - this.state = 1363; + this.state = 1369; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1364; + this.state = 1370; this.tableExpression(0); - this.state = 1366; + this.state = 1372; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { case 1: { - this.state = 1365; + this.state = 1371; this.joinCondition(); } break; @@ -6144,9 +6166,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1372; + this.state = 1378; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 151, this.context); } } } @@ -6170,14 +6192,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1373; + this.state = 1379; this.tablePrimary(); - this.state = 1375; + this.state = 1381; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 150, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1374; + this.state = 1380; this.tableAlias(); } break; @@ -6203,30 +6225,30 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 184, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1406; + this.state = 1412; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1378; + this.state = 1384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 374) { + if (_la === 375) { { - this.state = 1377; + this.state = 1383; this.match(FlinkSqlParser.KW_TABLE); } } - this.state = 1380; + this.state = 1386; this.tablePath(); - this.state = 1382; + this.state = 1388; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 154, this.context) ) { case 1: { - this.state = 1381; + this.state = 1387; this.systemTimePeriod(); } break; @@ -6236,14 +6258,14 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1384; + this.state = 1390; this.viewPath(); - this.state = 1386; + this.state = 1392; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 1385; + this.state = 1391; this.systemTimePeriod(); } break; @@ -6253,49 +6275,49 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1388; + this.state = 1394; this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1389; + this.state = 1395; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1390; + this.state = 1396; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1391; + this.state = 1397; this.functionCallExpression(); - this.state = 1392; + this.state = 1398; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1395; + this.state = 1401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 199) { + if (_la === 200) { { - this.state = 1394; + this.state = 1400; this.match(FlinkSqlParser.KW_LATERAL); } } - this.state = 1397; + this.state = 1403; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1398; + this.state = 1404; this.queryStatement(0); - this.state = 1399; + this.state = 1405; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1401; + this.state = 1407; this.match(FlinkSqlParser.KW_UNNEST); - this.state = 1402; + this.state = 1408; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1403; + this.state = 1409; this.expression(); - this.state = 1404; + this.state = 1410; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6321,15 +6343,15 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1408; + this.state = 1414; this.match(FlinkSqlParser.KW_FOR); - this.state = 1409; + this.state = 1415; this.match(FlinkSqlParser.KW_SYSTEM_TIME); - this.state = 1410; + this.state = 1416; this.match(FlinkSqlParser.KW_AS); - this.state = 1411; + this.state = 1417; this.match(FlinkSqlParser.KW_OF); - this.state = 1412; + this.state = 1418; this.dateTimeExpression(); } } @@ -6353,7 +6375,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1414; + this.state = 1420; this.expression(); } } @@ -6377,13 +6399,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1416; + this.state = 1422; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1417; + this.state = 1423; this.valuesDefinition(); - this.state = 1418; + this.state = 1424; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1419; + this.state = 1425; this.tableAlias(); } } @@ -6407,13 +6429,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1421; + this.state = 1427; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1422; + this.state = 1428; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1423; + this.state = 1429; this.windowTVFExpression(); - this.state = 1424; + this.state = 1430; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6438,29 +6460,29 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1426; + this.state = 1432; this.windowTVFName(); - this.state = 1427; + this.state = 1433; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1428; + this.state = 1434; this.windowTVFParam(); - this.state = 1433; + this.state = 1439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 1429; + this.state = 1435; this.match(FlinkSqlParser.COMMA); - this.state = 1430; + this.state = 1436; this.windowTVFParam(); } } - this.state = 1435; + this.state = 1441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1436; + this.state = 1442; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6485,9 +6507,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1438; + this.state = 1444; _la = this.tokenStream.LA(1); - if(!(_la === 446 || _la === 460 || _la === 500)) { + if(!(_la === 448 || _la === 462 || _la === 502)) { this.errorHandler.recoverInline(this); } else { @@ -6514,64 +6536,64 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new WindowTVFParamContext(this.context, this.state); this.enterRule(localContext, 198, FlinkSqlParser.RULE_windowTVFParam); try { - this.state = 1455; + this.state = 1461; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1440; + this.state = 1446; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1441; + this.state = 1447; this.timeAttrColumn(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1442; + this.state = 1448; this.columnDescriptor(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1443; + this.state = 1449; this.timeIntervalExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1444; + this.state = 1450; this.match(FlinkSqlParser.KW_DATA); - this.state = 1445; + this.state = 1451; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1446; + this.state = 1452; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1447; + this.state = 1453; this.timeAttrColumn(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1448; + this.state = 1454; this.match(FlinkSqlParser.KW_TIMECOL); - this.state = 1449; + this.state = 1455; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1450; + this.state = 1456; this.columnDescriptor(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1451; + this.state = 1457; this.timeIntervalParamName(); - this.state = 1452; + this.state = 1458; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1453; + this.state = 1459; this.timeIntervalExpression(); } break; @@ -6598,9 +6620,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1457; + this.state = 1463; _la = this.tokenStream.LA(1); - if(!(_la === 251 || _la === 447 || ((((_la - 495)) & ~0x1F) === 0 && ((1 << (_la - 495)) & 23) !== 0))) { + if(!(_la === 252 || _la === 449 || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 23) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -6629,13 +6651,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1459; + this.state = 1465; this.match(FlinkSqlParser.KW_DESCRIPTOR); - this.state = 1460; + this.state = 1466; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1461; + this.state = 1467; this.columnName(); - this.state = 1462; + this.state = 1468; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6657,24 +6679,24 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new JoinConditionContext(this.context, this.state); this.enterRule(localContext, 204, FlinkSqlParser.RULE_joinCondition); try { - this.state = 1468; + this.state = 1474; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1464; + this.state = 1470; this.match(FlinkSqlParser.KW_ON); - this.state = 1465; + this.state = 1471; this.booleanExpression(0); } break; case FlinkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1466; + this.state = 1472; this.match(FlinkSqlParser.KW_USING); - this.state = 1467; + this.state = 1473; this.columnNameList(); } break; @@ -6702,9 +6724,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1470; + this.state = 1476; this.match(FlinkSqlParser.KW_WHERE); - this.state = 1471; + this.state = 1477; this.booleanExpression(0); } } @@ -6729,29 +6751,29 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1473; + this.state = 1479; this.match(FlinkSqlParser.KW_GROUP); - this.state = 1474; + this.state = 1480; this.match(FlinkSqlParser.KW_BY); - this.state = 1475; + this.state = 1481; this.groupItemDefinition(); - this.state = 1480; + this.state = 1486; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 159, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1476; + this.state = 1482; this.match(FlinkSqlParser.COMMA); - this.state = 1477; + this.state = 1483; this.groupItemDefinition(); } } } - this.state = 1482; + this.state = 1488; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 159, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); } } } @@ -6774,121 +6796,121 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 210, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1523; + this.state = 1529; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1483; + this.state = 1489; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1484; + this.state = 1490; this.groupWindowFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1485; + this.state = 1491; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1486; + this.state = 1492; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1487; + this.state = 1493; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1488; + this.state = 1494; this.expression(); - this.state = 1493; + this.state = 1499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 1489; + this.state = 1495; this.match(FlinkSqlParser.COMMA); - this.state = 1490; + this.state = 1496; this.expression(); } } - this.state = 1495; + this.state = 1501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1496; + this.state = 1502; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1498; + this.state = 1504; this.groupingSetsNotationName(); - this.state = 1499; + this.state = 1505; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1500; + this.state = 1506; this.expression(); - this.state = 1505; + this.state = 1511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 1501; + this.state = 1507; this.match(FlinkSqlParser.COMMA); - this.state = 1502; + this.state = 1508; this.expression(); } } - this.state = 1507; + this.state = 1513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1508; + this.state = 1514; this.match(FlinkSqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1510; + this.state = 1516; this.groupingSets(); - this.state = 1511; + this.state = 1517; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1512; + this.state = 1518; this.groupItemDefinition(); - this.state = 1517; + this.state = 1523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 1513; + this.state = 1519; this.match(FlinkSqlParser.COMMA); - this.state = 1514; + this.state = 1520; this.groupItemDefinition(); } } - this.state = 1519; + this.state = 1525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1520; + this.state = 1526; this.match(FlinkSqlParser.RR_BRACKET); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1522; + this.state = 1528; this.expression(); } break; @@ -6914,9 +6936,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1525; + this.state = 1531; this.match(FlinkSqlParser.KW_GROUPING); - this.state = 1526; + this.state = 1532; this.match(FlinkSqlParser.KW_SETS); } } @@ -6941,9 +6963,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1528; + this.state = 1534; _la = this.tokenStream.LA(1); - if(!(_la === 74 || _la === 321)) { + if(!(_la === 74 || _la === 322)) { this.errorHandler.recoverInline(this); } else { @@ -6972,17 +6994,17 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1530; + this.state = 1536; this.groupWindowFunctionName(); - this.state = 1531; + this.state = 1537; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1532; + this.state = 1538; this.timeAttrColumn(); - this.state = 1533; + this.state = 1539; this.match(FlinkSqlParser.COMMA); - this.state = 1534; + this.state = 1540; this.timeIntervalExpression(); - this.state = 1535; + this.state = 1541; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7007,9 +7029,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1537; + this.state = 1543; _la = this.tokenStream.LA(1); - if(!(_la === 460 || _la === 493 || _la === 500)) { + if(!(_la === 462 || _la === 495 || _la === 502)) { this.errorHandler.recoverInline(this); } else { @@ -7038,7 +7060,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1539; + this.state = 1545; this.uid(); } } @@ -7062,9 +7084,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1541; + this.state = 1547; this.match(FlinkSqlParser.KW_HAVING); - this.state = 1542; + this.state = 1548; this.booleanExpression(0); } } @@ -7089,27 +7111,27 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1544; + this.state = 1550; this.match(FlinkSqlParser.KW_WINDOW); - this.state = 1545; + this.state = 1551; this.namedWindow(); - this.state = 1550; + this.state = 1556; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 164, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 166, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1546; + this.state = 1552; this.match(FlinkSqlParser.COMMA); - this.state = 1547; + this.state = 1553; this.namedWindow(); } } } - this.state = 1552; + this.state = 1558; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 164, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 166, this.context); } } } @@ -7133,11 +7155,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1553; + this.state = 1559; localContext._name = this.errorCapturingIdentifier(); - this.state = 1554; + this.state = 1560; this.match(FlinkSqlParser.KW_AS); - this.state = 1555; + this.state = 1561; this.windowSpec(); } } @@ -7162,49 +7184,49 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1558; + this.state = 1564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { + if (((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294967295) !== 0) || ((((_la - 472)) & ~0x1F) === 0 && ((1 << (_la - 472)) & 4294967295) !== 0) || ((((_la - 504)) & ~0x1F) === 0 && ((1 << (_la - 504)) & 15) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 19) !== 0)) { { - this.state = 1557; + this.state = 1563; localContext._name = this.errorCapturingIdentifier(); } } - this.state = 1560; + this.state = 1566; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1562; + this.state = 1568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 269) { + if (_la === 270) { { - this.state = 1561; + this.state = 1567; this.partitionByClause(); } } - this.state = 1565; + this.state = 1571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 259) { + if (_la === 260) { { - this.state = 1564; + this.state = 1570; this.orderByClause(); } } - this.state = 1568; + this.state = 1574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 293 || _la === 323) { + if (_la === 294 || _la === 324) { { - this.state = 1567; + this.state = 1573; this.windowFrame(); } } - this.state = 1570; + this.state = 1576; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7229,90 +7251,90 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1572; + this.state = 1578; this.match(FlinkSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1573; + this.state = 1579; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1575; + this.state = 1581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 269) { + if (_la === 270) { { - this.state = 1574; + this.state = 1580; this.partitionByClause(); } } - this.state = 1578; + this.state = 1584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 259) { + if (_la === 260) { { - this.state = 1577; + this.state = 1583; this.orderByClause(); } } - this.state = 1581; + this.state = 1587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 1580; + this.state = 1586; this.measuresClause(); } } - this.state = 1584; + this.state = 1590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 5 || _la === 255) { + if (_la === 5 || _la === 256) { { - this.state = 1583; + this.state = 1589; this.outputMode(); } } - this.state = 1587; + this.state = 1593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 439) { + if (_la === 441) { { - this.state = 1586; + this.state = 1592; this.afterMatchStrategy(); } } - this.state = 1590; + this.state = 1596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 272) { + if (_la === 273) { { - this.state = 1589; + this.state = 1595; this.patternDefinition(); } } - this.state = 1592; + this.state = 1598; this.patternVariablesDefinition(); - this.state = 1593; + this.state = 1599; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1598; + this.state = 1604; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { case 1: { - this.state = 1595; + this.state = 1601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1594; + this.state = 1600; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1597; + this.state = 1603; this.identifier(); } break; @@ -7340,29 +7362,29 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1600; + this.state = 1606; this.match(FlinkSqlParser.KW_ORDER); - this.state = 1601; + this.state = 1607; this.match(FlinkSqlParser.KW_BY); - this.state = 1602; + this.state = 1608; this.orderItemDefinition(); - this.state = 1607; + this.state = 1613; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 179, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1603; + this.state = 1609; this.match(FlinkSqlParser.COMMA); - this.state = 1604; + this.state = 1610; this.orderItemDefinition(); } } } - this.state = 1609; + this.state = 1615; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 179, this.context); } } } @@ -7387,17 +7409,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1610; - this.columnName(); - this.state = 1612; + this.state = 1618; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { + case 1: + { + this.state = 1616; + this.columnName(); + } + break; + case 2: + { + this.state = 1617; + this.valueExpression(0); + } + break; + } + this.state = 1621; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: { - this.state = 1611; + this.state = 1620; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 440 || _la === 451)) { + if(!(_la === 442 || _la === 453)) { localContext._ordering = this.errorHandler.recoverInline(this); } else { @@ -7407,17 +7443,17 @@ export class FlinkSqlParser extends SQLParserBase { } break; } - this.state = 1616; + this.state = 1625; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { - this.state = 1614; + this.state = 1623; this.match(FlinkSqlParser.KW_NULLS); - this.state = 1615; + this.state = 1624; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 458 || _la === 468)) { + if(!(_la === 460 || _la === 470)) { localContext._nullOrder = this.errorHandler.recoverInline(this); } else { @@ -7449,14 +7485,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1618; + this.state = 1627; this.match(FlinkSqlParser.KW_LIMIT); - this.state = 1621; + this.state = 1630; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: { - this.state = 1619; + this.state = 1628; this.match(FlinkSqlParser.KW_ALL); } break; @@ -7619,7 +7655,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.BIT_STRING: case FlinkSqlParser.ID_LITERAL: { - this.state = 1620; + this.state = 1629; localContext._limit = this.expression(); } break; @@ -7649,53 +7685,53 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1623; + this.state = 1632; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1624; + this.state = 1633; this.match(FlinkSqlParser.KW_BY); - this.state = 1627; + this.state = 1636; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: { - this.state = 1625; + this.state = 1634; this.columnName(); } break; case 2: { - this.state = 1626; + this.state = 1635; this.primaryExpression(0); } break; } - this.state = 1636; + this.state = 1645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 1629; + this.state = 1638; this.match(FlinkSqlParser.COMMA); - this.state = 1632; + this.state = 1641; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1630; + this.state = 1639; this.columnName(); } break; case 2: { - this.state = 1631; + this.state = 1640; this.primaryExpression(0); } break; } } } - this.state = 1638; + this.state = 1647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7719,14 +7755,14 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new QuantifiersContext(this.context, this.state); this.enterRule(localContext, 240, FlinkSqlParser.RULE_quantifiers); try { - this.state = 1655; + this.state = 1664; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1639; + this.state = 1648; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -7735,7 +7771,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 1640; + this.state = 1649; this.match(FlinkSqlParser.ADD_SIGN); } } @@ -7744,7 +7780,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1641; + this.state = 1650; this.match(FlinkSqlParser.QUESTION_MARK_SIGN); } } @@ -7753,15 +7789,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 4); { { - this.state = 1642; + this.state = 1651; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1643; + this.state = 1652; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1644; + this.state = 1653; this.match(FlinkSqlParser.COMMA); - this.state = 1645; + this.state = 1654; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1646; + this.state = 1655; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7770,13 +7806,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 5); { { - this.state = 1647; + this.state = 1656; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1648; + this.state = 1657; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1649; + this.state = 1658; this.match(FlinkSqlParser.COMMA); - this.state = 1650; + this.state = 1659; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7785,13 +7821,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 6); { { - this.state = 1651; + this.state = 1660; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1652; + this.state = 1661; this.match(FlinkSqlParser.COMMA); - this.state = 1653; + this.state = 1662; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1654; + this.state = 1663; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7819,23 +7855,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1657; + this.state = 1666; this.match(FlinkSqlParser.KW_MEASURES); - this.state = 1658; + this.state = 1667; this.projectItemDefinition(); - this.state = 1663; + this.state = 1672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 1659; + this.state = 1668; this.match(FlinkSqlParser.COMMA); - this.state = 1660; + this.state = 1669; this.projectItemDefinition(); } } - this.state = 1665; + this.state = 1674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7862,32 +7898,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1666; + this.state = 1675; this.match(FlinkSqlParser.KW_PATTERN); - this.state = 1667; + this.state = 1676; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1669; + this.state = 1678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1668; + this.state = 1677; this.patternVariable(); } } - this.state = 1671; + this.state = 1680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 539 || _la === 542); - this.state = 1673; + } while (_la === 541 || _la === 544); + this.state = 1682; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1675; + this.state = 1684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 435) { + if (_la === 437) { { - this.state = 1674; + this.state = 1683; this.withinClause(); } } @@ -7915,14 +7951,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1677; + this.state = 1686; this.unquotedIdentifier(); - this.state = 1679; + this.state = 1688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 519)) & ~0x1F) === 0 && ((1 << (_la - 519)) & 135681) !== 0)) { + if (((((_la - 521)) & ~0x1F) === 0 && ((1 << (_la - 521)) & 135681) !== 0)) { { - this.state = 1678; + this.state = 1687; this.quantifiers(); } } @@ -7947,32 +7983,32 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new OutputModeContext(this.context, this.state); this.enterRule(localContext, 248, FlinkSqlParser.RULE_outputMode); try { - this.state = 1689; + this.state = 1698; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1681; + this.state = 1690; this.match(FlinkSqlParser.KW_ALL); - this.state = 1682; + this.state = 1691; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1683; + this.state = 1692; this.match(FlinkSqlParser.KW_PER); - this.state = 1684; + this.state = 1693; this.match(FlinkSqlParser.KW_MATCH); } break; case FlinkSqlParser.KW_ONE: this.enterOuterAlt(localContext, 2); { - this.state = 1685; + this.state = 1694; this.match(FlinkSqlParser.KW_ONE); - this.state = 1686; + this.state = 1695; this.match(FlinkSqlParser.KW_ROW); - this.state = 1687; + this.state = 1696; this.match(FlinkSqlParser.KW_PER); - this.state = 1688; + this.state = 1697; this.match(FlinkSqlParser.KW_MATCH); } break; @@ -7998,74 +8034,74 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new AfterMatchStrategyContext(this.context, this.state); this.enterRule(localContext, 250, FlinkSqlParser.RULE_afterMatchStrategy); try { - this.state = 1715; + this.state = 1724; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1691; + this.state = 1700; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1692; + this.state = 1701; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1693; + this.state = 1702; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1694; + this.state = 1703; this.match(FlinkSqlParser.KW_PAST); - this.state = 1695; + this.state = 1704; this.match(FlinkSqlParser.KW_LAST); - this.state = 1696; + this.state = 1705; this.match(FlinkSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1697; + this.state = 1706; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1698; + this.state = 1707; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1699; + this.state = 1708; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1700; + this.state = 1709; this.match(FlinkSqlParser.KW_TO); - this.state = 1701; + this.state = 1710; this.match(FlinkSqlParser.KW_NEXT); - this.state = 1702; + this.state = 1711; this.match(FlinkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1703; + this.state = 1712; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1704; + this.state = 1713; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1705; + this.state = 1714; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1706; + this.state = 1715; this.match(FlinkSqlParser.KW_TO); - this.state = 1707; + this.state = 1716; this.match(FlinkSqlParser.KW_LAST); - this.state = 1708; + this.state = 1717; this.unquotedIdentifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1709; + this.state = 1718; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1710; + this.state = 1719; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1711; + this.state = 1720; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1712; + this.state = 1721; this.match(FlinkSqlParser.KW_TO); - this.state = 1713; + this.state = 1722; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1714; + this.state = 1723; this.unquotedIdentifier(); } break; @@ -8092,23 +8128,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1717; + this.state = 1726; this.match(FlinkSqlParser.KW_DEFINE); - this.state = 1718; + this.state = 1727; this.projectItemDefinition(); - this.state = 1723; + this.state = 1732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 1719; + this.state = 1728; this.match(FlinkSqlParser.COMMA); - this.state = 1720; + this.state = 1729; this.projectItemDefinition(); } } - this.state = 1725; + this.state = 1734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8131,34 +8167,137 @@ export class FlinkSqlParser extends SQLParserBase { public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); this.enterRule(localContext, 254, FlinkSqlParser.RULE_windowFrame); + let _la: number; try { - this.state = 1735; + this.state = 1750; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case FlinkSqlParser.KW_RANGE: + switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1726; + this.state = 1735; this.match(FlinkSqlParser.KW_RANGE); - this.state = 1727; + this.state = 1736; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1728; + this.state = 1737; this.timeIntervalExpression(); - this.state = 1729; + this.state = 1738; + this.frameBound(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1740; + _la = this.tokenStream.LA(1); + if(!(_la === 294 || _la === 324)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1741; + this.match(FlinkSqlParser.KW_BETWEEN); + this.state = 1742; + this.frameStart(); + this.state = 1743; + this.match(FlinkSqlParser.KW_AND); + this.state = 1744; + this.frameEnd(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 1746; + this.match(FlinkSqlParser.KW_ROWS); + this.state = 1747; + this.match(FlinkSqlParser.KW_BETWEEN); + this.state = 1748; + this.match(FlinkSqlParser.DIG_LITERAL); + this.state = 1749; this.frameBound(); } break; - case FlinkSqlParser.KW_ROWS: + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public frameBound(): FrameBoundContext { + let localContext = new FrameBoundContext(this.context, this.state); + this.enterRule(localContext, 256, FlinkSqlParser.RULE_frameBound); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1752; + this.match(FlinkSqlParser.KW_PRECEDING); + this.state = 1753; + this.match(FlinkSqlParser.KW_AND); + this.state = 1754; + this.match(FlinkSqlParser.KW_CURRENT); + this.state = 1755; + this.match(FlinkSqlParser.KW_ROW); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public frameStart(): FrameStartContext { + let localContext = new FrameStartContext(this.context, this.state); + this.enterRule(localContext, 258, FlinkSqlParser.RULE_frameStart); + try { + this.state = 1763; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case FlinkSqlParser.KW_UNBOUNDED: + this.enterOuterAlt(localContext, 1); + { + this.state = 1757; + this.match(FlinkSqlParser.KW_UNBOUNDED); + this.state = 1758; + this.match(FlinkSqlParser.KW_PRECEDING); + } + break; + case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 1731; - this.match(FlinkSqlParser.KW_ROWS); - this.state = 1732; - this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1733; + this.state = 1759; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1734; - this.frameBound(); + this.state = 1760; + this.match(FlinkSqlParser.KW_PRECEDING); + } + break; + case FlinkSqlParser.KW_CURRENT: + this.enterOuterAlt(localContext, 3); + { + this.state = 1761; + this.match(FlinkSqlParser.KW_CURRENT); + this.state = 1762; + this.match(FlinkSqlParser.KW_ROW); } break; default: @@ -8179,20 +8318,42 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public frameBound(): FrameBoundContext { - let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 256, FlinkSqlParser.RULE_frameBound); + public frameEnd(): FrameEndContext { + let localContext = new FrameEndContext(this.context, this.state); + this.enterRule(localContext, 260, FlinkSqlParser.RULE_frameEnd); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1737; - this.match(FlinkSqlParser.KW_PRECEDING); - this.state = 1738; - this.match(FlinkSqlParser.KW_AND); - this.state = 1739; - this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1740; - this.match(FlinkSqlParser.KW_ROW); + this.state = 1771; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case FlinkSqlParser.KW_CURRENT: + this.enterOuterAlt(localContext, 1); + { + this.state = 1765; + this.match(FlinkSqlParser.KW_CURRENT); + this.state = 1766; + this.match(FlinkSqlParser.KW_ROW); + } + break; + case FlinkSqlParser.DIG_LITERAL: + this.enterOuterAlt(localContext, 2); + { + this.state = 1767; + this.match(FlinkSqlParser.DIG_LITERAL); + this.state = 1768; + this.match(FlinkSqlParser.KW_FOLLOWING); + } + break; + case FlinkSqlParser.KW_UNBOUNDED: + this.enterOuterAlt(localContext, 3); + { + this.state = 1769; + this.match(FlinkSqlParser.KW_UNBOUNDED); + this.state = 1770; + this.match(FlinkSqlParser.KW_FOLLOWING); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -8211,13 +8372,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withinClause(): WithinClauseContext { let localContext = new WithinClauseContext(this.context, this.state); - this.enterRule(localContext, 258, FlinkSqlParser.RULE_withinClause); + this.enterRule(localContext, 262, FlinkSqlParser.RULE_withinClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1742; + this.state = 1773; this.match(FlinkSqlParser.KW_WITHIN); - this.state = 1743; + this.state = 1774; this.timeIntervalExpression(); } } @@ -8237,11 +8398,11 @@ export class FlinkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 260, FlinkSqlParser.RULE_expression); + this.enterRule(localContext, 264, FlinkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1745; + this.state = 1776; this.booleanExpression(0); } } @@ -8271,25 +8432,25 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 262; - this.enterRecursionRule(localContext, 262, FlinkSqlParser.RULE_booleanExpression, _p); + let _startState = 266; + this.enterRecursionRule(localContext, 266, FlinkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1759; + this.state = 1790; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { case 1: { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1748; + this.state = 1779; this.match(FlinkSqlParser.KW_NOT); - this.state = 1749; + this.state = 1780; this.booleanExpression(6); } break; @@ -8298,13 +8459,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1750; + this.state = 1781; this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1751; + this.state = 1782; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1752; + this.state = 1783; this.queryStatement(0); - this.state = 1753; + this.state = 1784; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8313,14 +8474,14 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PredicatedContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1755; + this.state = 1786; this.valueExpression(0); - this.state = 1757; + this.state = 1788; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { - this.state = 1756; + this.state = 1787; this.predicate(); } break; @@ -8329,9 +8490,9 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1775; + this.state = 1806; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 202, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8339,21 +8500,21 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1773; + this.state = 1804; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 196, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1761; + this.state = 1792; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1762; + this.state = 1793; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); - this.state = 1763; + this.state = 1794; (localContext as LogicalBinaryContext)._right = this.booleanExpression(4); } break; @@ -8362,13 +8523,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1764; + this.state = 1795; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1765; + this.state = 1796; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); - this.state = 1766; + this.state = 1797; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -8376,26 +8537,26 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new LogicalNestedContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1767; + this.state = 1798; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1768; + this.state = 1799; this.match(FlinkSqlParser.KW_IS); - this.state = 1770; + this.state = 1801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1769; + this.state = 1800; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1772; + this.state = 1803; (localContext as LogicalNestedContext)._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { + if(!(_la === 140 || _la === 246 || _la === 399 || _la === 407)) { (localContext as LogicalNestedContext)._kind = this.errorHandler.recoverInline(this); } else { @@ -8407,9 +8568,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1777; + this.state = 1808; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 202, this.context); } } } @@ -8429,35 +8590,35 @@ export class FlinkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 264, FlinkSqlParser.RULE_predicate); + this.enterRule(localContext, 268, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1852; + this.state = 1883; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1779; + this.state = 1810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1778; + this.state = 1809; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1781; + this.state = 1812; localContext._kind = this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1783; + this.state = 1814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 19 || _la === 370) { + if (_la === 19 || _la === 371) { { - this.state = 1782; + this.state = 1813; _la = this.tokenStream.LA(1); - if(!(_la === 19 || _la === 370)) { + if(!(_la === 19 || _la === 371)) { this.errorHandler.recoverInline(this); } else { @@ -8467,134 +8628,134 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1785; + this.state = 1816; localContext._lower = this.valueExpression(0); - this.state = 1786; + this.state = 1817; this.match(FlinkSqlParser.KW_AND); - this.state = 1787; + this.state = 1818; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1790; + this.state = 1821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1789; + this.state = 1820; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1792; + this.state = 1823; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1793; + this.state = 1824; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1794; + this.state = 1825; this.expression(); - this.state = 1799; + this.state = 1830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 1795; + this.state = 1826; this.match(FlinkSqlParser.COMMA); - this.state = 1796; + this.state = 1827; this.expression(); } } - this.state = 1801; + this.state = 1832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1802; + this.state = 1833; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1805; + this.state = 1836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1804; + this.state = 1835; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1807; + this.state = 1838; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1808; + this.state = 1839; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1809; + this.state = 1840; this.queryStatement(0); - this.state = 1810; + this.state = 1841; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1812; + this.state = 1843; localContext._kind = this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1813; + this.state = 1844; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1814; + this.state = 1845; this.queryStatement(0); - this.state = 1815; + this.state = 1846; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1818; + this.state = 1849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1817; + this.state = 1848; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1820; + this.state = 1851; localContext._kind = this.match(FlinkSqlParser.KW_RLIKE); - this.state = 1821; + this.state = 1852; localContext._pattern = this.valueExpression(0); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1822; + this.state = 1853; this.likePredicate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1823; + this.state = 1854; this.match(FlinkSqlParser.KW_IS); - this.state = 1825; + this.state = 1856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1824; + this.state = 1855; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1827; + this.state = 1858; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { + if(!(_la === 140 || _la === 246 || _la === 399 || _la === 407)) { localContext._kind = this.errorHandler.recoverInline(this); } else { @@ -8606,53 +8767,53 @@ export class FlinkSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1828; + this.state = 1859; this.match(FlinkSqlParser.KW_IS); - this.state = 1830; + this.state = 1861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1829; + this.state = 1860; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1832; + this.state = 1863; localContext._kind = this.match(FlinkSqlParser.KW_DISTINCT); - this.state = 1833; + this.state = 1864; this.match(FlinkSqlParser.KW_FROM); - this.state = 1834; + this.state = 1865; localContext._right = this.valueExpression(0); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1836; + this.state = 1867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1835; + this.state = 1866; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1838; + this.state = 1869; localContext._kind = this.match(FlinkSqlParser.KW_SIMILAR); - this.state = 1839; + this.state = 1870; this.match(FlinkSqlParser.KW_TO); - this.state = 1840; + this.state = 1871; localContext._right = this.valueExpression(0); - this.state = 1843; + this.state = 1874; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { case 1: { - this.state = 1841; + this.state = 1872; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1842; + this.state = 1873; this.stringLiteral(); } break; @@ -8662,28 +8823,28 @@ export class FlinkSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1845; + this.state = 1876; this.match(FlinkSqlParser.KW_IS); - this.state = 1846; + this.state = 1877; this.match(FlinkSqlParser.KW_JSON); - this.state = 1850; + this.state = 1881; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: { - this.state = 1847; + this.state = 1878; this.match(FlinkSqlParser.KW_VALUE); } break; case 2: { - this.state = 1848; + this.state = 1879; this.match(FlinkSqlParser.KW_ARRAY); } break; case 3: { - this.state = 1849; + this.state = 1880; this.identifier(); } break; @@ -8708,54 +8869,54 @@ export class FlinkSqlParser extends SQLParserBase { } public jsonFunctionBranch(): JsonFunctionBranchContext { let localContext = new JsonFunctionBranchContext(this.context, this.state); - this.enterRule(localContext, 266, FlinkSqlParser.RULE_jsonFunctionBranch); + this.enterRule(localContext, 270, FlinkSqlParser.RULE_jsonFunctionBranch); try { - this.state = 1862; + this.state = 1893; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1854; + this.state = 1885; this.match(FlinkSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1855; + this.state = 1886; this.match(FlinkSqlParser.KW_EMPTY); - this.state = 1856; + this.state = 1887; this.match(FlinkSqlParser.KW_ARRAY); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1857; + this.state = 1888; this.match(FlinkSqlParser.KW_EMPTY); - this.state = 1858; + this.state = 1889; this.uid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1859; + this.state = 1890; this.match(FlinkSqlParser.KW_TRUE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1860; + this.state = 1891; this.match(FlinkSqlParser.KW_FALSE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1861; + this.state = 1892; this.match(FlinkSqlParser.KW_UNKNOWN); } break; @@ -8777,28 +8938,28 @@ export class FlinkSqlParser extends SQLParserBase { } public likePredicate(): LikePredicateContext { let localContext = new LikePredicateContext(this.context, this.state); - this.enterRule(localContext, 268, FlinkSqlParser.RULE_likePredicate); + this.enterRule(localContext, 272, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 1893; + this.state = 1924; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1865; + this.state = 1896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1864; + this.state = 1895; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1867; + this.state = 1898; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1868; + this.state = 1899; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 11)) { @@ -8808,40 +8969,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1882; + this.state = 1913; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 1869; + this.state = 1900; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1870; + this.state = 1901; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1871; + this.state = 1902; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1872; + this.state = 1903; this.expression(); - this.state = 1877; + this.state = 1908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 1873; + this.state = 1904; this.match(FlinkSqlParser.COMMA); - this.state = 1874; + this.state = 1905; this.expression(); } } - this.state = 1879; + this.state = 1910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1880; + this.state = 1911; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8851,28 +9012,28 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1885; + this.state = 1916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1884; + this.state = 1915; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1887; + this.state = 1918; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1888; + this.state = 1919; localContext._pattern = this.valueExpression(0); - this.state = 1891; + this.state = 1922; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 1889; + this.state = 1920; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1890; + this.state = 1921; this.stringLiteral(); } break; @@ -8907,23 +9068,23 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 270; - this.enterRecursionRule(localContext, 270, FlinkSqlParser.RULE_valueExpression, _p); + let _startState = 274; + this.enterRecursionRule(localContext, 274, FlinkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1899; + this.state = 1930; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1896; + this.state = 1927; this.primaryExpression(0); } break; @@ -8932,25 +9093,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1897; + this.state = 1928; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3145729) !== 0))) { + if(!(((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 3145729) !== 0))) { (localContext as ArithmeticUnaryContext)._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1898; + this.state = 1929; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1922; + this.state = 1953; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 224, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8958,29 +9119,29 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1920; + this.state = 1951; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1901; + this.state = 1932; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 1902; + this.state = 1933; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 145) !== 0))) { + if(!(_la === 455 || ((((_la - 530)) & ~0x1F) === 0 && ((1 << (_la - 530)) & 145) !== 0))) { (localContext as ArithmeticBinaryContext)._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1903; + this.state = 1934; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; @@ -8989,21 +9150,21 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1904; + this.state = 1935; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 1905; + this.state = 1936; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(((((_la - 530)) & ~0x1F) === 0 && ((1 << (_la - 530)) & 11) !== 0))) { + if(!(((((_la - 532)) & ~0x1F) === 0 && ((1 << (_la - 532)) & 11) !== 0))) { (localContext as ArithmeticBinaryContext)._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1906; + this.state = 1937; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; @@ -9012,13 +9173,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1907; + this.state = 1938; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1908; + this.state = 1939; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1909; + this.state = 1940; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; @@ -9027,13 +9188,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1910; + this.state = 1941; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1911; + this.state = 1942; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 1912; + this.state = 1943; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -9042,13 +9203,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1913; + this.state = 1944; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1914; + this.state = 1945; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1915; + this.state = 1946; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -9057,22 +9218,22 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ComparisonContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ComparisonContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1916; + this.state = 1947; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1917; + this.state = 1948; this.comparisonOperator(); - this.state = 1918; + this.state = 1949; (localContext as ComparisonContext)._right = this.valueExpression(2); } break; } } } - this.state = 1924; + this.state = 1955; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 224, this.context); } } } @@ -9092,10 +9253,10 @@ export class FlinkSqlParser extends SQLParserBase { } public functionCallExpression(): FunctionCallExpressionContext { let localContext = new FunctionCallExpressionContext(this.context, this.state); - this.enterRule(localContext, 272, FlinkSqlParser.RULE_functionCallExpression); + this.enterRule(localContext, 276, FlinkSqlParser.RULE_functionCallExpression); let _la: number; try { - this.state = 1944; + this.state = 1975; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CURRENT_DATE: @@ -9105,7 +9266,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 1925; + this.state = 1956; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; @@ -9115,7 +9276,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 2); { - this.state = 1926; + this.state = 1957; this.functionNameAndParams(); } break; @@ -9256,47 +9417,47 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.ID_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 1927; + this.state = 1958; this.functionNameWithParams(); - this.state = 1928; + this.state = 1959; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1940; + this.state = 1971; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: { - this.state = 1930; + this.state = 1961; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { case 1: { - this.state = 1929; + this.state = 1960; this.setQuantifier(); } break; } - this.state = 1932; + this.state = 1963; this.functionParam(); - this.state = 1937; + this.state = 1968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 1933; + this.state = 1964; this.match(FlinkSqlParser.COMMA); - this.state = 1934; + this.state = 1965; this.functionParam(); } } - this.state = 1939; + this.state = 1970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1942; + this.state = 1973; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9330,51 +9491,51 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 274; - this.enterRecursionRule(localContext, 274, FlinkSqlParser.RULE_primaryExpression, _p); + let _startState = 278; + this.enterRecursionRule(localContext, 278, FlinkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2021; + this.state = 2059; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1947; + this.state = 1978; this.match(FlinkSqlParser.KW_CASE); - this.state = 1949; + this.state = 1980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1948; + this.state = 1979; this.whenClause(); } } - this.state = 1951; + this.state = 1982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 429); - this.state = 1955; + } while (_la === 431); + this.state = 1986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1953; + this.state = 1984; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1954; + this.state = 1985; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 1957; + this.state = 1988; this.match(FlinkSqlParser.KW_END); } break; @@ -9383,37 +9544,37 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1959; + this.state = 1990; this.match(FlinkSqlParser.KW_CASE); - this.state = 1960; + this.state = 1991; (localContext as SimpleCaseContext)._value = this.expression(); - this.state = 1962; + this.state = 1993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1961; + this.state = 1992; this.whenClause(); } } - this.state = 1964; + this.state = 1995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 429); - this.state = 1968; + } while (_la === 431); + this.state = 1999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1966; + this.state = 1997; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1967; + this.state = 1998; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 1970; + this.state = 2001; this.match(FlinkSqlParser.KW_END); } break; @@ -9422,17 +9583,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1972; + this.state = 2003; this.match(FlinkSqlParser.KW_CAST); - this.state = 1973; + this.state = 2004; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1974; + this.state = 2005; this.expression(); - this.state = 1975; + this.state = 2006; this.match(FlinkSqlParser.KW_AS); - this.state = 1976; + this.state = 2007; this.columnType(); - this.state = 1977; + this.state = 2008; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9441,25 +9602,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FirstContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1979; + this.state = 2010; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1980; + this.state = 2011; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1981; + this.state = 2012; this.expression(); - this.state = 1984; + this.state = 2015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 462) { + if (_la === 464) { { - this.state = 1982; + this.state = 2013; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1983; + this.state = 2014; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1986; + this.state = 2017; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9468,25 +9629,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1988; + this.state = 2019; this.match(FlinkSqlParser.KW_LAST); - this.state = 1989; + this.state = 2020; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1990; + this.state = 2021; this.expression(); - this.state = 1993; + this.state = 2024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 462) { + if (_la === 464) { { - this.state = 1991; + this.state = 2022; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1992; + this.state = 2023; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1995; + this.state = 2026; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9495,17 +9656,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1997; + this.state = 2028; this.match(FlinkSqlParser.KW_POSITION); - this.state = 1998; + this.state = 2029; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1999; + this.state = 2030; (localContext as PositionContext)._substr = this.valueExpression(0); - this.state = 2000; + this.state = 2031; this.match(FlinkSqlParser.KW_IN); - this.state = 2001; + this.state = 2032; (localContext as PositionContext)._str = this.valueExpression(0); - this.state = 2002; + this.state = 2033; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9514,7 +9675,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ConstantDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2004; + this.state = 2035; this.constant(); } break; @@ -9523,7 +9684,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2005; + this.state = 2036; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9532,11 +9693,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2006; + this.state = 2037; this.uid(); - this.state = 2007; + this.state = 2038; this.match(FlinkSqlParser.DOT); - this.state = 2008; + this.state = 2039; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9545,11 +9706,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2010; + this.state = 2041; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2011; + this.state = 2042; this.queryStatement(0); - this.state = 2012; + this.state = 2043; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9558,7 +9719,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2014; + this.state = 2045; this.functionCallExpression(); } break; @@ -9567,7 +9728,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2015; + this.state = 2046; this.columnNamePath(); } break; @@ -9576,7 +9737,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new DereferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2016; + this.state = 2047; this.dereferenceDefinition(); } break; @@ -9585,19 +9746,38 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2017; + this.state = 2048; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2018; + this.state = 2049; this.expression(); - this.state = 2019; + this.state = 2050; + this.match(FlinkSqlParser.RR_BRACKET); + } + break; + case 15: + { + localContext = new ExtractContext(localContext); + this.context = localContext; + previousContext = localContext; + this.state = 2052; + this.match(FlinkSqlParser.KW_EXTRACT); + this.state = 2053; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 2054; + (localContext as ExtractContext)._field = this.identifier(); + this.state = 2055; + this.match(FlinkSqlParser.KW_FROM); + this.state = 2056; + (localContext as ExtractContext)._source = this.valueExpression(0); + this.state = 2057; this.match(FlinkSqlParser.RR_BRACKET); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2030; + this.state = 2068; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 236, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9609,22 +9789,22 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 2023; - if (!(this.precpred(this.context, 4))) { - throw this.createFailedPredicateException("this.precpred(this.context, 4)"); + this.state = 2061; + if (!(this.precpred(this.context, 5))) { + throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2024; + this.state = 2062; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 2025; + this.state = 2063; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2026; + this.state = 2064; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 2032; + this.state = 2070; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 236, this.context); } } } @@ -9644,11 +9824,11 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 276, FlinkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 280, FlinkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2033; + this.state = 2071; this.uid(); } } @@ -9668,36 +9848,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 278, FlinkSqlParser.RULE_functionName); + this.enterRule(localContext, 282, FlinkSqlParser.RULE_functionName); try { - this.state = 2039; + this.state = 2077; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2035; + this.state = 2073; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2036; + this.state = 2074; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2037; + this.state = 2075; this.reservedKeywordsFollowParamsUsedAsFuncName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2038; + this.state = 2076; this.uid(); } break; @@ -9719,9 +9899,9 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameAndParams(): FunctionNameAndParamsContext { let localContext = new FunctionNameAndParamsContext(this.context, this.state); - this.enterRule(localContext, 280, FlinkSqlParser.RULE_functionNameAndParams); + this.enterRule(localContext, 284, FlinkSqlParser.RULE_functionNameAndParams); try { - this.state = 2045; + this.state = 2083; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_DATE: @@ -9729,16 +9909,16 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 2041; + this.state = 2079; this.reservedKeywordsFollowParamsUsedAsFuncName(); - this.state = 2042; + this.state = 2080; this.match(FlinkSqlParser.STRING_LITERAL); } break; case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 2044; + this.state = 2082; this.timeIntervalExpression(); } break; @@ -9762,22 +9942,22 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameWithParams(): FunctionNameWithParamsContext { let localContext = new FunctionNameWithParamsContext(this.context, this.state); - this.enterRule(localContext, 282, FlinkSqlParser.RULE_functionNameWithParams); + this.enterRule(localContext, 286, FlinkSqlParser.RULE_functionNameWithParams); try { - this.state = 2049; + this.state = 2087; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2047; + this.state = 2085; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2048; + this.state = 2086; this.uid(); } break; @@ -9799,64 +9979,64 @@ export class FlinkSqlParser extends SQLParserBase { } public functionParam(): FunctionParamContext { let localContext = new FunctionParamContext(this.context, this.state); - this.enterRule(localContext, 284, FlinkSqlParser.RULE_functionParam); + this.enterRule(localContext, 288, FlinkSqlParser.RULE_functionParam); try { - this.state = 2059; + this.state = 2097; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2051; + this.state = 2089; this.reservedKeywordsUsedAsFuncParam(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2052; + this.state = 2090; this.timeIntervalUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2053; + this.state = 2091; this.timePointUnit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2054; + this.state = 2092; this.expression(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2055; + this.state = 2093; this.jsonValueParams(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2056; + this.state = 2094; this.jsonQueryParams(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2057; + this.state = 2095; this.jsonObjectParams(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2058; + this.state = 2096; this.jsonArrayParams(); } break; @@ -9878,31 +10058,31 @@ export class FlinkSqlParser extends SQLParserBase { } public jsonValueParams(): JsonValueParamsContext { let localContext = new JsonValueParamsContext(this.context, this.state); - this.enterRule(localContext, 286, FlinkSqlParser.RULE_jsonValueParams); + this.enterRule(localContext, 290, FlinkSqlParser.RULE_jsonValueParams); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2061; + this.state = 2099; this.columnNamePath(); - this.state = 2065; + this.state = 2103; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 2062; + this.state = 2100; this.uid(); - this.state = 2063; + this.state = 2101; this.columnType(); } break; } - this.state = 2075; + this.state = 2113; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 2071; + this.state = 2109; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ADD: @@ -9977,40 +10157,40 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: case FlinkSqlParser.ID_LITERAL: { - this.state = 2067; + this.state = 2105; this.uid(); } break; case FlinkSqlParser.KW_NULL: { - this.state = 2068; + this.state = 2106; this.match(FlinkSqlParser.KW_NULL); } break; case FlinkSqlParser.KW_DEFAULT: { - this.state = 2069; + this.state = 2107; this.match(FlinkSqlParser.KW_DEFAULT); - this.state = 2070; + this.state = 2108; this.valueExpression(0); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2073; + this.state = 2111; this.match(FlinkSqlParser.KW_ON); - this.state = 2074; + this.state = 2112; this.match(FlinkSqlParser.KW_EMPTY); } break; } - this.state = 2085; + this.state = 2123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 104 || _la === 245 || ((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { + if (_la === 104 || _la === 246 || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294967295) !== 0) || ((((_la - 472)) & ~0x1F) === 0 && ((1 << (_la - 472)) & 4294967295) !== 0) || ((((_la - 504)) & ~0x1F) === 0 && ((1 << (_la - 504)) & 15) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 19) !== 0)) { { - this.state = 2081; + this.state = 2119; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ADD: @@ -10085,30 +10265,30 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: case FlinkSqlParser.ID_LITERAL: { - this.state = 2077; + this.state = 2115; this.uid(); } break; case FlinkSqlParser.KW_NULL: { - this.state = 2078; + this.state = 2116; this.match(FlinkSqlParser.KW_NULL); } break; case FlinkSqlParser.KW_DEFAULT: { - this.state = 2079; + this.state = 2117; this.match(FlinkSqlParser.KW_DEFAULT); - this.state = 2080; + this.state = 2118; this.valueExpression(0); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2083; + this.state = 2121; this.match(FlinkSqlParser.KW_ON); - this.state = 2084; + this.state = 2122; this.uid(); } } @@ -10131,37 +10311,37 @@ export class FlinkSqlParser extends SQLParserBase { } public jsonQueryParams(): JsonQueryParamsContext { let localContext = new JsonQueryParamsContext(this.context, this.state); - this.enterRule(localContext, 288, FlinkSqlParser.RULE_jsonQueryParams); + this.enterRule(localContext, 292, FlinkSqlParser.RULE_jsonQueryParams); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2087; + this.state = 2125; this.columnNamePath(); - this.state = 2099; + this.state = 2137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 434 || _la === 436) { + if (_la === 436 || _la === 438) { { - this.state = 2093; + this.state = 2131; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_WITHOUT: { - this.state = 2088; + this.state = 2126; this.match(FlinkSqlParser.KW_WITHOUT); } break; case FlinkSqlParser.KW_WITH: { - this.state = 2089; + this.state = 2127; this.match(FlinkSqlParser.KW_WITH); - this.state = 2091; + this.state = 2129; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: { - this.state = 2090; + this.state = 2128; this.uid(); } break; @@ -10171,45 +10351,45 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2096; + this.state = 2134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 2095; + this.state = 2133; this.match(FlinkSqlParser.KW_ARRAY); } } - this.state = 2098; + this.state = 2136; this.uid(); } } - this.state = 2105; + this.state = 2143; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 2101; + this.state = 2139; this.jsonFunctionBranch(); - this.state = 2102; + this.state = 2140; this.match(FlinkSqlParser.KW_ON); - this.state = 2103; + this.state = 2141; this.match(FlinkSqlParser.KW_EMPTY); } break; } - this.state = 2111; + this.state = 2149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 121 || _la === 140 || _la === 245 || _la === 398 || _la === 405) { + if (_la === 121 || _la === 140 || _la === 246 || _la === 399 || _la === 407) { { - this.state = 2107; + this.state = 2145; this.jsonFunctionBranch(); - this.state = 2108; + this.state = 2146; this.match(FlinkSqlParser.KW_ON); - this.state = 2109; + this.state = 2147; this.uid(); } } @@ -10232,42 +10412,42 @@ export class FlinkSqlParser extends SQLParserBase { } public jsonObjectParams(): JsonObjectParamsContext { let localContext = new JsonObjectParamsContext(this.context, this.state); - this.enterRule(localContext, 290, FlinkSqlParser.RULE_jsonObjectParams); + this.enterRule(localContext, 294, FlinkSqlParser.RULE_jsonObjectParams); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2134; + this.state = 2172; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 251, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 256, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2114; + this.state = 2152; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2113; + this.state = 2151; this.match(FlinkSqlParser.KW_KEY); } break; } - this.state = 2116; + this.state = 2154; this.columnNamePath(); - this.state = 2118; + this.state = 2156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 414) { + if (_la === 416) { { - this.state = 2117; + this.state = 2155; this.match(FlinkSqlParser.KW_VALUE); } } - this.state = 2130; + this.state = 2168; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ABS: @@ -10428,31 +10608,31 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.BIT_STRING: case FlinkSqlParser.ID_LITERAL: { - this.state = 2120; + this.state = 2158; this.valueExpression(0); } break; case FlinkSqlParser.KW_JSON: { - this.state = 2121; + this.state = 2159; this.match(FlinkSqlParser.KW_JSON); - this.state = 2122; + this.state = 2160; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2126; + this.state = 2164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811437) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 29427209) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641555) !== 0) || ((((_la - 182)) & ~0x1F) === 0 && ((1 << (_la - 182)) & 487931745) !== 0) || ((((_la - 215)) & ~0x1F) === 0 && ((1 << (_la - 215)) & 3892347713) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 14681219) !== 0) || ((((_la - 396)) & ~0x1F) === 0 && ((1 << (_la - 396)) & 50339869) !== 0) || ((((_la - 437)) & ~0x1F) === 0 && ((1 << (_la - 437)) & 4294967295) !== 0) || ((((_la - 469)) & ~0x1F) === 0 && ((1 << (_la - 469)) & 4294967295) !== 0) || ((((_la - 501)) & ~0x1F) === 0 && ((1 << (_la - 501)) & 1744896543) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 31) !== 0)) { + while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811437) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 29427209) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 675283027) !== 0) || ((((_la - 183)) & ~0x1F) === 0 && ((1 << (_la - 183)) & 487931745) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 3892347713) !== 0) || ((((_la - 266)) & ~0x1F) === 0 && ((1 << (_la - 266)) & 537530369) !== 0) || ((((_la - 319)) & ~0x1F) === 0 && ((1 << (_la - 319)) & 131185) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 14681219) !== 0) || ((((_la - 397)) & ~0x1F) === 0 && ((1 << (_la - 397)) & 100679709) !== 0) || ((((_la - 439)) & ~0x1F) === 0 && ((1 << (_la - 439)) & 4294967295) !== 0) || ((((_la - 471)) & ~0x1F) === 0 && ((1 << (_la - 471)) & 4294967295) !== 0) || ((((_la - 503)) & ~0x1F) === 0 && ((1 << (_la - 503)) & 1744896543) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 31) !== 0)) { { { - this.state = 2123; + this.state = 2161; this.valueExpression(0); } } - this.state = 2128; + this.state = 2166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2129; + this.state = 2167; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -10462,21 +10642,21 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 2136; + this.state = 2174; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 251, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 256, this.context); } - this.state = 2143; + this.state = 2181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 245 || ((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { + if (_la === 246 || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294967295) !== 0) || ((((_la - 472)) & ~0x1F) === 0 && ((1 << (_la - 472)) & 4294967295) !== 0) || ((((_la - 504)) & ~0x1F) === 0 && ((1 << (_la - 504)) & 15) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 19) !== 0)) { { - this.state = 2139; + this.state = 2177; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_NULL: { - this.state = 2137; + this.state = 2175; this.match(FlinkSqlParser.KW_NULL); } break; @@ -10552,16 +10732,16 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: case FlinkSqlParser.ID_LITERAL: { - this.state = 2138; + this.state = 2176; this.uid(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2141; + this.state = 2179; this.match(FlinkSqlParser.KW_ON); - this.state = 2142; + this.state = 2180; this.match(FlinkSqlParser.KW_NULL); } } @@ -10584,39 +10764,39 @@ export class FlinkSqlParser extends SQLParserBase { } public jsonArrayParams(): JsonArrayParamsContext { let localContext = new JsonArrayParamsContext(this.context, this.state); - this.enterRule(localContext, 292, FlinkSqlParser.RULE_jsonArrayParams); + this.enterRule(localContext, 296, FlinkSqlParser.RULE_jsonArrayParams); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2148; + this.state = 2186; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 254, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 259, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2145; + this.state = 2183; this.valueExpression(0); } } } - this.state = 2150; + this.state = 2188; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 254, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 259, this.context); } - this.state = 2157; + this.state = 2195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 245 || ((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { + if (_la === 246 || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294967295) !== 0) || ((((_la - 472)) & ~0x1F) === 0 && ((1 << (_la - 472)) & 4294967295) !== 0) || ((((_la - 504)) & ~0x1F) === 0 && ((1 << (_la - 504)) & 15) !== 0) || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 19) !== 0)) { { - this.state = 2153; + this.state = 2191; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_NULL: { - this.state = 2151; + this.state = 2189; this.match(FlinkSqlParser.KW_NULL); } break; @@ -10692,16 +10872,16 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: case FlinkSqlParser.ID_LITERAL: { - this.state = 2152; + this.state = 2190; this.uid(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2155; + this.state = 2193; this.match(FlinkSqlParser.KW_ON); - this.state = 2156; + this.state = 2194; this.match(FlinkSqlParser.KW_NULL); } } @@ -10724,11 +10904,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dereferenceDefinition(): DereferenceDefinitionContext { let localContext = new DereferenceDefinitionContext(this.context, this.state); - this.enterRule(localContext, 294, FlinkSqlParser.RULE_dereferenceDefinition); + this.enterRule(localContext, 298, FlinkSqlParser.RULE_dereferenceDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 2159; + this.state = 2197; this.uid(); } } @@ -10748,11 +10928,11 @@ export class FlinkSqlParser extends SQLParserBase { } public correlationName(): CorrelationNameContext { let localContext = new CorrelationNameContext(this.context, this.state); - this.enterRule(localContext, 296, FlinkSqlParser.RULE_correlationName); + this.enterRule(localContext, 300, FlinkSqlParser.RULE_correlationName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2161; + this.state = 2199; this.identifier(); } } @@ -10772,22 +10952,22 @@ export class FlinkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 298, FlinkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 302, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 2165; + this.state = 2203; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2163; + this.state = 2201; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2164; + this.state = 2202; this.dereferenceDefinition(); } break; @@ -10809,24 +10989,24 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalExpression(): TimeIntervalExpressionContext { let localContext = new TimeIntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 300, FlinkSqlParser.RULE_timeIntervalExpression); + this.enterRule(localContext, 304, FlinkSqlParser.RULE_timeIntervalExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2167; + this.state = 2205; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 2170; + this.state = 2208; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: { - this.state = 2168; + this.state = 2206; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 2169; + this.state = 2207; this.errorCapturingUnitToUnitInterval(); } break; @@ -10849,18 +11029,18 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 302, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 306, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2172; + this.state = 2210; this.multiUnitsInterval(); - this.state = 2174; + this.state = 2212; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: { - this.state = 2173; + this.state = 2211; this.unitToUnitInterval(); } break; @@ -10883,12 +11063,12 @@ export class FlinkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 304, FlinkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 308, FlinkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2179; + this.state = 2217; this.errorHandler.sync(this); alternative = 1; do { @@ -10896,9 +11076,9 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 2176; + this.state = 2214; this.intervalValue(); - this.state = 2177; + this.state = 2215; this.timeIntervalUnit(); } } @@ -10906,9 +11086,9 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2181; + this.state = 2219; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 260, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 265, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -10928,24 +11108,24 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 306, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 310, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2183; + this.state = 2221; localContext._body = this.unitToUnitInterval(); - this.state = 2186; + this.state = 2224; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2184; + this.state = 2222; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 2185; + this.state = 2223; localContext._error2 = this.unitToUnitInterval(); } break; @@ -10968,17 +11148,17 @@ export class FlinkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 308, FlinkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 312, FlinkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2188; + this.state = 2226; localContext._value = this.intervalValue(); - this.state = 2189; + this.state = 2227; localContext._from_ = this.timeIntervalUnit(); - this.state = 2190; + this.state = 2228; this.match(FlinkSqlParser.KW_TO); - this.state = 2191; + this.state = 2229; localContext._to = this.timeIntervalUnit(); } } @@ -10998,10 +11178,10 @@ export class FlinkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 310, FlinkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 314, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 2198; + this.state = 2236; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.HYPHEN_SIGN: @@ -11010,14 +11190,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2194; + this.state = 2232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 530 || _la === 531) { + if (_la === 532 || _la === 533) { { - this.state = 2193; + this.state = 2231; _la = this.tokenStream.LA(1); - if(!(_la === 530 || _la === 531)) { + if(!(_la === 532 || _la === 533)) { this.errorHandler.recoverInline(this); } else { @@ -11027,9 +11207,9 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 2196; + this.state = 2234; _la = this.tokenStream.LA(1); - if(!(_la === 539 || _la === 540)) { + if(!(_la === 541 || _la === 542)) { this.errorHandler.recoverInline(this); } else { @@ -11041,7 +11221,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2197; + this.state = 2235; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11065,29 +11245,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 312, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 316, FlinkSqlParser.RULE_tableAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2201; + this.state = 2239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2200; + this.state = 2238; this.match(FlinkSqlParser.KW_AS); } } - this.state = 2203; + this.state = 2241; localContext._alias = this.identifier(); - this.state = 2205; + this.state = 2243; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 270, this.context) ) { case 1: { - this.state = 2204; + this.state = 2242; this.identifierList(); } break; @@ -11110,13 +11290,13 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 314, FlinkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 318, FlinkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2207; + this.state = 2245; this.identifier(); - this.state = 2208; + this.state = 2246; this.errorCapturingIdentifierExtra(); } } @@ -11136,44 +11316,47 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 316, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); - let _la: number; + this.enterRule(localContext, 320, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); try { - this.state = 2217; + let alternative: number; + this.state = 2255; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case FlinkSqlParser.KW_MINUS: + switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { + case 1: localContext = new ErrorIdentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2212; + this.state = 2250; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); + alternative = 1; do { - { - { - this.state = 2210; - this.match(FlinkSqlParser.KW_MINUS); - this.state = 2211; - this.identifier(); - } + switch (alternative) { + case 1: + { + { + this.state = 2248; + this.match(FlinkSqlParser.KW_MINUS); + this.state = 2249; + this.identifier(); + } + } + break; + default: + throw new antlr.NoViableAltException(this); } - this.state = 2214; + this.state = 2252; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } while (_la === 222); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 271, this.context); + } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; - case FlinkSqlParser.KW_AS: - case FlinkSqlParser.LR_BRACKET: + case 2: localContext = new RealIdentContext(localContext); this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -11192,15 +11375,15 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 318, FlinkSqlParser.RULE_identifierList); + this.enterRule(localContext, 322, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2219; + this.state = 2257; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2220; + this.state = 2258; this.identifierSeq(); - this.state = 2221; + this.state = 2259; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -11220,26 +11403,26 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 320, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 324, FlinkSqlParser.RULE_identifierSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2223; + this.state = 2261; this.identifier(); - this.state = 2228; + this.state = 2266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 2224; + this.state = 2262; this.match(FlinkSqlParser.COMMA); - this.state = 2225; + this.state = 2263; this.identifier(); } } - this.state = 2230; + this.state = 2268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11261,9 +11444,9 @@ export class FlinkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 322, FlinkSqlParser.RULE_identifier); + this.enterRule(localContext, 326, FlinkSqlParser.RULE_identifier); try { - this.state = 2234; + this.state = 2272; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: @@ -11271,7 +11454,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2231; + this.state = 2269; this.unquotedIdentifier(); } break; @@ -11279,7 +11462,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QuotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2232; + this.state = 2270; this.quotedIdentifier(); } break; @@ -11354,7 +11537,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new NonReservedKeywordsAlternativeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2233; + this.state = 2271; this.nonReservedKeywords(); } break; @@ -11378,14 +11561,14 @@ export class FlinkSqlParser extends SQLParserBase { } public unquotedIdentifier(): UnquotedIdentifierContext { let localContext = new UnquotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 324, FlinkSqlParser.RULE_unquotedIdentifier); + this.enterRule(localContext, 328, FlinkSqlParser.RULE_unquotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2236; + this.state = 2274; _la = this.tokenStream.LA(1); - if(!(_la === 539 || _la === 542)) { + if(!(_la === 541 || _la === 544)) { this.errorHandler.recoverInline(this); } else { @@ -11410,11 +11593,11 @@ export class FlinkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 326, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 330, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2238; + this.state = 2276; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -11434,17 +11617,17 @@ export class FlinkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 328, FlinkSqlParser.RULE_whenClause); + this.enterRule(localContext, 332, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2240; + this.state = 2278; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2241; + this.state = 2279; localContext._condition = this.expression(); - this.state = 2242; + this.state = 2280; this.match(FlinkSqlParser.KW_THEN); - this.state = 2243; + this.state = 2281; localContext._result = this.expression(); } } @@ -11464,11 +11647,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPath(): CatalogPathContext { let localContext = new CatalogPathContext(this.context, this.state); - this.enterRule(localContext, 330, FlinkSqlParser.RULE_catalogPath); + this.enterRule(localContext, 334, FlinkSqlParser.RULE_catalogPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 2245; + this.state = 2283; this.identifier(); } } @@ -11488,11 +11671,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPathCreate(): CatalogPathCreateContext { let localContext = new CatalogPathCreateContext(this.context, this.state); - this.enterRule(localContext, 332, FlinkSqlParser.RULE_catalogPathCreate); + this.enterRule(localContext, 336, FlinkSqlParser.RULE_catalogPathCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2247; + this.state = 2285; this.identifier(); } } @@ -11512,21 +11695,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePath(): DatabasePathContext { let localContext = new DatabasePathContext(this.context, this.state); - this.enterRule(localContext, 334, FlinkSqlParser.RULE_databasePath); + this.enterRule(localContext, 338, FlinkSqlParser.RULE_databasePath); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2249; + this.state = 2287; this.identifier(); - this.state = 2252; + this.state = 2290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 514) { + if (_la === 516) { { - this.state = 2250; + this.state = 2288; this.match(FlinkSqlParser.DOT); - this.state = 2251; + this.state = 2289; this.identifier(); } } @@ -11549,21 +11732,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePathCreate(): DatabasePathCreateContext { let localContext = new DatabasePathCreateContext(this.context, this.state); - this.enterRule(localContext, 336, FlinkSqlParser.RULE_databasePathCreate); + this.enterRule(localContext, 340, FlinkSqlParser.RULE_databasePathCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2254; + this.state = 2292; this.identifier(); - this.state = 2257; + this.state = 2295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 514) { + if (_la === 516) { { - this.state = 2255; + this.state = 2293; this.match(FlinkSqlParser.DOT); - this.state = 2256; + this.state = 2294; this.identifier(); } } @@ -11586,25 +11769,25 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePathCreate(): TablePathCreateContext { let localContext = new TablePathCreateContext(this.context, this.state); - this.enterRule(localContext, 338, FlinkSqlParser.RULE_tablePathCreate); + this.enterRule(localContext, 342, FlinkSqlParser.RULE_tablePathCreate); let _la: number; try { - this.state = 2271; + this.state = 2309; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 279, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2259; + this.state = 2297; this.identifier(); - this.state = 2262; + this.state = 2300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 514) { + if (_la === 516) { { - this.state = 2260; + this.state = 2298; this.match(FlinkSqlParser.DOT); - this.state = 2261; + this.state = 2299; this.identifier(); } } @@ -11614,20 +11797,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2264; + this.state = 2302; this.identifier(); - this.state = 2265; + this.state = 2303; this.match(FlinkSqlParser.DOT); - this.state = 2266; + this.state = 2304; this.identifier(); - this.state = 2269; + this.state = 2307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 514) { + if (_la === 516) { { - this.state = 2267; + this.state = 2305; this.match(FlinkSqlParser.DOT); - this.state = 2268; + this.state = 2306; this.identifier(); } } @@ -11652,24 +11835,24 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePath(): TablePathContext { let localContext = new TablePathContext(this.context, this.state); - this.enterRule(localContext, 340, FlinkSqlParser.RULE_tablePath); + this.enterRule(localContext, 344, FlinkSqlParser.RULE_tablePath); try { - this.state = 2285; + this.state = 2323; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 282, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2273; + this.state = 2311; this.identifier(); - this.state = 2276; + this.state = 2314; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { case 1: { - this.state = 2274; + this.state = 2312; this.match(FlinkSqlParser.DOT); - this.state = 2275; + this.state = 2313; this.identifier(); } break; @@ -11679,20 +11862,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2278; + this.state = 2316; this.identifier(); - this.state = 2279; + this.state = 2317; this.match(FlinkSqlParser.DOT); - this.state = 2280; + this.state = 2318; this.identifier(); - this.state = 2283; + this.state = 2321; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: { - this.state = 2281; + this.state = 2319; this.match(FlinkSqlParser.DOT); - this.state = 2282; + this.state = 2320; this.identifier(); } break; @@ -11717,24 +11900,24 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPath(): ViewPathContext { let localContext = new ViewPathContext(this.context, this.state); - this.enterRule(localContext, 342, FlinkSqlParser.RULE_viewPath); + this.enterRule(localContext, 346, FlinkSqlParser.RULE_viewPath); try { - this.state = 2299; + this.state = 2337; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2287; + this.state = 2325; this.identifier(); - this.state = 2290; + this.state = 2328; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: { - this.state = 2288; + this.state = 2326; this.match(FlinkSqlParser.DOT); - this.state = 2289; + this.state = 2327; this.identifier(); } break; @@ -11744,20 +11927,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2292; + this.state = 2330; this.identifier(); - this.state = 2293; + this.state = 2331; this.match(FlinkSqlParser.DOT); - this.state = 2294; + this.state = 2332; this.identifier(); - this.state = 2297; + this.state = 2335; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 279, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { case 1: { - this.state = 2295; + this.state = 2333; this.match(FlinkSqlParser.DOT); - this.state = 2296; + this.state = 2334; this.identifier(); } break; @@ -11782,25 +11965,25 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPathCreate(): ViewPathCreateContext { let localContext = new ViewPathCreateContext(this.context, this.state); - this.enterRule(localContext, 344, FlinkSqlParser.RULE_viewPathCreate); + this.enterRule(localContext, 348, FlinkSqlParser.RULE_viewPathCreate); let _la: number; try { - this.state = 2313; + this.state = 2351; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2301; + this.state = 2339; this.identifier(); - this.state = 2304; + this.state = 2342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 514) { + if (_la === 516) { { - this.state = 2302; + this.state = 2340; this.match(FlinkSqlParser.DOT); - this.state = 2303; + this.state = 2341; this.identifier(); } } @@ -11810,20 +11993,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2306; + this.state = 2344; this.identifier(); - this.state = 2307; + this.state = 2345; this.match(FlinkSqlParser.DOT); - this.state = 2308; + this.state = 2346; this.identifier(); - this.state = 2311; + this.state = 2349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 514) { + if (_la === 516) { { - this.state = 2309; + this.state = 2347; this.match(FlinkSqlParser.DOT); - this.state = 2310; + this.state = 2348; this.identifier(); } } @@ -11848,30 +12031,30 @@ export class FlinkSqlParser extends SQLParserBase { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 346, FlinkSqlParser.RULE_uid); + this.enterRule(localContext, 350, FlinkSqlParser.RULE_uid); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2315; + this.state = 2353; this.identifier(); - this.state = 2320; + this.state = 2358; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 284, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 289, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2316; + this.state = 2354; this.match(FlinkSqlParser.DOT); - this.state = 2317; + this.state = 2355; this.identifier(); } } } - this.state = 2322; + this.state = 2360; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 284, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 289, this.context); } } } @@ -11891,13 +12074,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withOption(): WithOptionContext { let localContext = new WithOptionContext(this.context, this.state); - this.enterRule(localContext, 348, FlinkSqlParser.RULE_withOption); + this.enterRule(localContext, 352, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localContext, 1); { - this.state = 2323; + this.state = 2361; this.match(FlinkSqlParser.KW_WITH); - this.state = 2324; + this.state = 2362; this.tablePropertyList(); } } @@ -11917,15 +12100,15 @@ export class FlinkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 350, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 354, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2326; + this.state = 2364; this.match(FlinkSqlParser.KW_IF); - this.state = 2327; + this.state = 2365; this.match(FlinkSqlParser.KW_NOT); - this.state = 2328; + this.state = 2366; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -11945,13 +12128,13 @@ export class FlinkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 352, FlinkSqlParser.RULE_ifExists); + this.enterRule(localContext, 356, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2330; + this.state = 2368; this.match(FlinkSqlParser.KW_IF); - this.state = 2331; + this.state = 2369; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -11971,32 +12154,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyList(): TablePropertyListContext { let localContext = new TablePropertyListContext(this.context, this.state); - this.enterRule(localContext, 354, FlinkSqlParser.RULE_tablePropertyList); + this.enterRule(localContext, 358, FlinkSqlParser.RULE_tablePropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2333; + this.state = 2371; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2334; + this.state = 2372; this.tableProperty(); - this.state = 2339; + this.state = 2377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 523) { { { - this.state = 2335; + this.state = 2373; this.match(FlinkSqlParser.COMMA); - this.state = 2336; + this.state = 2374; this.tableProperty(); } } - this.state = 2341; + this.state = 2379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2342; + this.state = 2380; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -12016,29 +12199,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableProperty(): TablePropertyContext { let localContext = new TablePropertyContext(this.context, this.state); - this.enterRule(localContext, 356, FlinkSqlParser.RULE_tableProperty); + this.enterRule(localContext, 360, FlinkSqlParser.RULE_tableProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2344; + this.state = 2382; localContext._key = this.tablePropertyKey(); - this.state = 2349; + this.state = 2387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 140 || _la === 398 || _la === 506 || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 7) !== 0)) { + if (_la === 140 || _la === 399 || _la === 508 || ((((_la - 540)) & ~0x1F) === 0 && ((1 << (_la - 540)) & 7) !== 0)) { { - this.state = 2346; + this.state = 2384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 506) { + if (_la === 508) { { - this.state = 2345; + this.state = 2383; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2348; + this.state = 2386; localContext._value = this.tablePropertyValue(); } } @@ -12061,29 +12244,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyKey(): TablePropertyKeyContext { let localContext = new TablePropertyKeyContext(this.context, this.state); - this.enterRule(localContext, 358, FlinkSqlParser.RULE_tablePropertyKey); + this.enterRule(localContext, 362, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2354; + this.state = 2392; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2351; + this.state = 2389; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2352; + this.state = 2390; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2353; + this.state = 2391; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -12105,22 +12288,22 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyValue(): TablePropertyValueContext { let localContext = new TablePropertyValueContext(this.context, this.state); - this.enterRule(localContext, 360, FlinkSqlParser.RULE_tablePropertyValue); + this.enterRule(localContext, 364, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2360; + this.state = 2398; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2356; + this.state = 2394; this.match(FlinkSqlParser.DIG_LITERAL); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2357; + this.state = 2395; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -12128,14 +12311,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 2358; + this.state = 2396; this.booleanLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2359; + this.state = 2397; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -12159,40 +12342,40 @@ export class FlinkSqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 362, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localContext, 366, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2368; + this.state = 2406; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 2362; + this.state = 2400; this.match(FlinkSqlParser.KW_AND); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 2363; + this.state = 2401; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2364; + this.state = 2402; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.KW_OR: this.enterOuterAlt(localContext, 3); { - this.state = 2365; + this.state = 2403; this.match(FlinkSqlParser.KW_OR); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2366; + this.state = 2404; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2367; + this.state = 2405; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -12216,76 +12399,76 @@ export class FlinkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 364, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 368, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2384; + this.state = 2422; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2370; + this.state = 2408; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2371; + this.state = 2409; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2372; + this.state = 2410; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2373; + this.state = 2411; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2374; + this.state = 2412; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2375; + this.state = 2413; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2376; + this.state = 2414; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2377; + this.state = 2415; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2378; + this.state = 2416; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2379; + this.state = 2417; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2380; + this.state = 2418; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2381; + this.state = 2419; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2382; + this.state = 2420; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2383; + this.state = 2421; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -12307,47 +12490,47 @@ export class FlinkSqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 366, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localContext, 370, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2393; + this.state = 2431; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 2386; + this.state = 2424; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2387; + this.state = 2425; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 2388; + this.state = 2426; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2389; + this.state = 2427; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 2390; + this.state = 2428; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2391; + this.state = 2429; this.match(FlinkSqlParser.BIT_XOR_OP); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 2392; + this.state = 2430; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -12371,14 +12554,14 @@ export class FlinkSqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 368, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localContext, 372, FlinkSqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2395; + this.state = 2433; _la = this.tokenStream.LA(1); - if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 221) !== 0))) { + if(!(_la === 455 || ((((_la - 530)) & ~0x1F) === 0 && ((1 << (_la - 530)) & 221) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -12403,14 +12586,14 @@ export class FlinkSqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 370, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localContext, 374, FlinkSqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2397; + this.state = 2435; _la = this.tokenStream.LA(1); - if(!(_la === 242 || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 6291459) !== 0))) { + if(!(_la === 243 || ((((_la - 511)) & ~0x1F) === 0 && ((1 << (_la - 511)) & 6291459) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -12435,16 +12618,16 @@ export class FlinkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 372, FlinkSqlParser.RULE_constant); + this.enterRule(localContext, 376, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2413; + this.state = 2451; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 1); { - this.state = 2399; + this.state = 2437; this.timeIntervalExpression(); } break; @@ -12460,14 +12643,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_WEEK: this.enterOuterAlt(localContext, 2); { - this.state = 2400; + this.state = 2438; this.timePointLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 2401; + this.state = 2439; this.stringLiteral(); } break; @@ -12475,17 +12658,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2403; + this.state = 2441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 530) { + if (_la === 532) { { - this.state = 2402; + this.state = 2440; this.match(FlinkSqlParser.HYPHEN_SIGN); } } - this.state = 2405; + this.state = 2443; this.decimalLiteral(); } break; @@ -12493,21 +12676,21 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 5); { - this.state = 2406; + this.state = 2444; this.booleanLiteral(); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 6); { - this.state = 2407; + this.state = 2445; this.match(FlinkSqlParser.REAL_LITERAL); } break; case FlinkSqlParser.BIT_STRING: this.enterOuterAlt(localContext, 7); { - this.state = 2408; + this.state = 2446; this.match(FlinkSqlParser.BIT_STRING); } break; @@ -12515,17 +12698,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 8); { - this.state = 2410; + this.state = 2448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 2409; + this.state = 2447; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2412; + this.state = 2450; this.match(FlinkSqlParser.KW_NULL); } break; @@ -12549,13 +12732,13 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointLiteral(): TimePointLiteralContext { let localContext = new TimePointLiteralContext(this.context, this.state); - this.enterRule(localContext, 374, FlinkSqlParser.RULE_timePointLiteral); + this.enterRule(localContext, 378, FlinkSqlParser.RULE_timePointLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2415; + this.state = 2453; this.timePointUnit(); - this.state = 2416; + this.state = 2454; this.stringLiteral(); } } @@ -12575,11 +12758,11 @@ export class FlinkSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 376, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 380, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2418; + this.state = 2456; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -12599,11 +12782,11 @@ export class FlinkSqlParser extends SQLParserBase { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 378, FlinkSqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 382, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2420; + this.state = 2458; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -12623,14 +12806,14 @@ export class FlinkSqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 380, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 384, FlinkSqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2422; + this.state = 2460; _la = this.tokenStream.LA(1); - if(!(_la === 140 || _la === 398)) { + if(!(_la === 140 || _la === 399)) { this.errorHandler.recoverInline(this); } else { @@ -12655,12 +12838,12 @@ export class FlinkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 382, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 386, FlinkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2424; + this.state = 2462; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 113)) { this.errorHandler.recoverInline(this); @@ -12687,14 +12870,14 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointUnit(): TimePointUnitContext { let localContext = new TimePointUnitContext(this.context, this.state); - this.enterRule(localContext, 384, FlinkSqlParser.RULE_timePointUnit); + this.enterRule(localContext, 388, FlinkSqlParser.RULE_timePointUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2426; + this.state = 2464; _la = this.tokenStream.LA(1); - if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || _la === 437 || ((((_la - 471)) & ~0x1F) === 0 && ((1 << (_la - 471)) & 262149) !== 0) || _la === 503)) { + if(!(_la === 97 || _la === 166 || _la === 224 || _la === 231 || _la === 336 || _la === 439 || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 262149) !== 0) || _la === 505)) { this.errorHandler.recoverInline(this); } else { @@ -12719,14 +12902,14 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalUnit(): TimeIntervalUnitContext { let localContext = new TimeIntervalUnitContext(this.context, this.state); - this.enterRule(localContext, 386, FlinkSqlParser.RULE_timeIntervalUnit); + this.enterRule(localContext, 390, FlinkSqlParser.RULE_timeIntervalUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2428; + this.state = 2466; _la = this.tokenStream.LA(1); - if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 140542465) !== 0) || ((((_la - 461)) & ~0x1F) === 0 && ((1 << (_la - 461)) & 2415983617) !== 0) || _la === 503 || _la === 504)) { + if(!(_la === 97 || _la === 166 || _la === 224 || _la === 231 || _la === 336 || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 140542465) !== 0) || ((((_la - 463)) & ~0x1F) === 0 && ((1 << (_la - 463)) & 2415983617) !== 0) || _la === 505 || _la === 506)) { this.errorHandler.recoverInline(this); } else { @@ -12751,14 +12934,14 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncParam(): ReservedKeywordsUsedAsFuncParamContext { let localContext = new ReservedKeywordsUsedAsFuncParamContext(this.context, this.state); - this.enterRule(localContext, 388, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); + this.enterRule(localContext, 392, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2430; + this.state = 2468; _la = this.tokenStream.LA(1); - if(!(((((_la - 5)) & ~0x1F) === 0 && ((1 << (_la - 5)) & 268435713) !== 0) || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 113 || ((((_la - 201)) & ~0x1F) === 0 && ((1 << (_la - 201)) & 385) !== 0) || _la === 390 || _la === 414 || _la === 528)) { + if(!(((((_la - 5)) & ~0x1F) === 0 && ((1 << (_la - 5)) & 268435713) !== 0) || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 113 || ((((_la - 202)) & ~0x1F) === 0 && ((1 << (_la - 202)) & 385) !== 0) || _la === 391 || _la === 416 || _la === 530)) { this.errorHandler.recoverInline(this); } else { @@ -12783,14 +12966,14 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsNoParamsUsedAsFuncName(): ReservedKeywordsNoParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsNoParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 390, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); + this.enterRule(localContext, 394, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2432; + this.state = 2470; _la = this.tokenStream.LA(1); - if(!(((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 208 || _la === 209)) { + if(!(((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 209 || _la === 210)) { this.errorHandler.recoverInline(this); } else { @@ -12815,14 +12998,14 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsFollowParamsUsedAsFuncName(): ReservedKeywordsFollowParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsFollowParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 392, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); + this.enterRule(localContext, 396, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2434; + this.state = 2472; _la = this.tokenStream.LA(1); - if(!(_la === 91 || _la === 379 || _la === 380)) { + if(!(_la === 91 || _la === 380 || _la === 381)) { this.errorHandler.recoverInline(this); } else { @@ -12847,14 +13030,14 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 394, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 398, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2436; + this.state = 2474; _la = this.tokenStream.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811433) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 25165825) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641553) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 277391867) !== 0) || ((((_la - 221)) & ~0x1F) === 0 && ((1 << (_la - 221)) & 41943565) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 8389763) !== 0) || ((((_la - 396)) & ~0x1F) === 0 && ((1 << (_la - 396)) & 50339865) !== 0) || _la === 437 || _la === 470 || _la === 489 || _la === 503)) { + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811433) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 25165825) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 675283025) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 277391867) !== 0) || ((((_la - 222)) & ~0x1F) === 0 && ((1 << (_la - 222)) & 41943565) !== 0) || ((((_la - 266)) & ~0x1F) === 0 && ((1 << (_la - 266)) & 537530369) !== 0) || ((((_la - 319)) & ~0x1F) === 0 && ((1 << (_la - 319)) & 131185) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 8389763) !== 0) || ((((_la - 397)) & ~0x1F) === 0 && ((1 << (_la - 397)) & 100679705) !== 0) || _la === 439 || _la === 472 || _la === 491 || _la === 505)) { this.errorHandler.recoverInline(this); } else { @@ -12879,14 +13062,14 @@ export class FlinkSqlParser extends SQLParserBase { } public nonReservedKeywords(): NonReservedKeywordsContext { let localContext = new NonReservedKeywordsContext(this.context, this.state); - this.enterRule(localContext, 396, FlinkSqlParser.RULE_nonReservedKeywords); + this.enterRule(localContext, 400, FlinkSqlParser.RULE_nonReservedKeywords); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2438; + this.state = 2476; _la = this.tokenStream.LA(1); - if(!(((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0))) { + if(!(((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294967295) !== 0) || ((((_la - 472)) & ~0x1F) === 0 && ((1 << (_la - 472)) & 4294967295) !== 0) || ((((_la - 504)) & ~0x1F) === 0 && ((1 << (_la - 504)) & 15) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -12918,11 +13101,11 @@ export class FlinkSqlParser extends SQLParserBase { return this.queryStatement_sempred(localContext as QueryStatementContext, predIndex); case 90: return this.tableExpression_sempred(localContext as TableExpressionContext, predIndex); - case 131: + case 133: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 135: - return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); case 137: + return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); + case 139: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -12981,13 +13164,13 @@ export class FlinkSqlParser extends SQLParserBase { private primaryExpression_sempred(localContext: PrimaryExpressionContext | null, predIndex: number): boolean { switch (predIndex) { case 13: - return this.precpred(this.context, 4); + return this.precpred(this.context, 5); } return true; } public static readonly _serializedATN: number[] = [ - 4,1,542,2441,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,544,2479,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -13020,1017 +13203,1034 @@ export class FlinkSqlParser extends SQLParserBase { 2,181,7,181,2,182,7,182,2,183,7,183,2,184,7,184,2,185,7,185,2,186, 7,186,2,187,7,187,2,188,7,188,2,189,7,189,2,190,7,190,2,191,7,191, 2,192,7,192,2,193,7,193,2,194,7,194,2,195,7,195,2,196,7,196,2,197, - 7,197,2,198,7,198,1,0,5,0,400,8,0,10,0,12,0,403,9,0,1,0,1,0,1,1, - 1,1,3,1,409,8,1,1,1,3,1,412,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,3,2,426,8,2,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4, - 1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,444,8,4,1,5,1,5,3,5,448,8,5,1,6, - 1,6,1,6,1,7,1,7,1,7,1,7,3,7,457,8,7,1,7,1,7,1,7,3,7,462,8,7,1,8, - 1,8,1,8,5,8,467,8,8,10,8,12,8,470,9,8,1,9,1,9,1,10,1,10,1,10,1,10, - 1,10,1,10,3,10,480,8,10,1,11,1,11,1,11,1,11,1,11,5,11,487,8,11,10, - 11,12,11,490,9,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,3, - 12,501,8,12,1,12,3,12,504,8,12,1,12,1,12,1,12,1,12,1,12,3,12,511, - 8,12,1,12,3,12,514,8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,522,8, - 12,1,12,1,12,3,12,526,8,12,1,12,1,12,1,12,3,12,531,8,12,1,12,3,12, - 534,8,12,1,13,1,13,1,13,1,13,1,13,3,13,541,8,13,1,14,1,14,1,14,1, - 14,1,15,1,15,3,15,549,8,15,1,16,1,16,3,16,553,8,16,1,17,1,17,1,17, - 1,17,1,18,1,18,1,18,1,18,1,18,1,18,3,18,565,8,18,1,18,1,18,1,18, - 1,18,1,18,1,18,3,18,573,8,18,1,18,1,18,3,18,577,8,18,1,18,1,18,1, + 7,197,2,198,7,198,2,199,7,199,2,200,7,200,1,0,5,0,404,8,0,10,0,12, + 0,407,9,0,1,0,1,0,1,1,1,1,3,1,413,8,1,1,1,3,1,416,8,1,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,430,8,2,1,3,1,3,1,4,1, + 4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,448,8,4,1, + 5,1,5,3,5,452,8,5,1,6,1,6,1,6,1,7,1,7,1,7,1,7,3,7,461,8,7,1,7,1, + 7,1,7,3,7,466,8,7,1,8,1,8,1,8,5,8,471,8,8,10,8,12,8,474,9,8,1,9, + 1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,484,8,10,1,11,1,11,1,11,1, + 11,1,11,5,11,491,8,11,10,11,12,11,494,9,11,1,12,1,12,1,12,1,12,1, + 12,1,12,1,12,1,12,1,12,3,12,505,8,12,1,12,3,12,508,8,12,1,12,1,12, + 1,12,1,12,1,12,3,12,515,8,12,1,12,3,12,518,8,12,1,12,1,12,1,12,1, + 12,1,12,1,12,3,12,526,8,12,1,12,1,12,3,12,530,8,12,1,12,1,12,1,12, + 3,12,535,8,12,1,12,3,12,538,8,12,1,13,1,13,1,13,1,13,1,13,3,13,545, + 8,13,1,14,1,14,1,14,1,14,1,15,1,15,3,15,553,8,15,1,16,1,16,3,16, + 557,8,16,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,3,18, + 569,8,18,1,18,1,18,1,18,1,18,1,18,1,18,3,18,577,8,18,1,18,1,18,3, + 18,581,8,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1, 18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1, - 18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1, - 18,1,18,3,18,609,8,18,1,19,3,19,612,8,19,1,19,4,19,615,8,19,11,19, - 12,19,616,1,20,1,20,3,20,621,8,20,1,21,1,21,3,21,625,8,21,1,21,1, - 21,3,21,629,8,21,1,21,1,21,1,21,1,21,1,21,5,21,636,8,21,10,21,12, - 21,639,9,21,1,21,1,21,3,21,643,8,21,1,21,1,21,3,21,647,8,21,1,21, - 1,21,3,21,651,8,21,1,21,1,21,1,21,3,21,656,8,21,1,21,3,21,659,8, - 21,1,21,1,21,3,21,663,8,21,1,22,1,22,1,22,3,22,668,8,22,1,22,1,22, - 1,22,1,22,3,22,674,8,22,1,23,1,23,1,23,3,23,679,8,23,1,24,1,24,1, - 24,3,24,684,8,24,1,24,1,24,3,24,688,8,24,1,25,1,25,3,25,692,8,25, - 1,26,1,26,3,26,696,8,26,1,27,1,27,1,28,1,28,1,28,1,28,5,28,704,8, - 28,10,28,12,28,707,9,28,1,28,1,28,1,29,1,29,1,29,3,29,714,8,29,1, - 29,1,29,3,29,718,8,29,1,29,1,29,3,29,722,8,29,1,29,1,29,3,29,726, + 18,1,18,1,18,1,18,1,18,1,18,1,18,3,18,613,8,18,1,19,3,19,616,8,19, + 1,19,4,19,619,8,19,11,19,12,19,620,1,20,1,20,3,20,625,8,20,1,21, + 1,21,3,21,629,8,21,1,21,1,21,3,21,633,8,21,1,21,1,21,1,21,1,21,1, + 21,5,21,640,8,21,10,21,12,21,643,9,21,1,21,1,21,3,21,647,8,21,1, + 21,1,21,3,21,651,8,21,1,21,1,21,3,21,655,8,21,1,21,1,21,1,21,3,21, + 660,8,21,1,21,3,21,663,8,21,1,21,1,21,3,21,667,8,21,1,22,1,22,1, + 22,3,22,672,8,22,1,22,1,22,1,22,1,22,3,22,678,8,22,1,23,1,23,1,23, + 3,23,683,8,23,1,24,1,24,1,24,3,24,688,8,24,1,24,1,24,3,24,692,8, + 24,1,25,1,25,3,25,696,8,25,1,26,1,26,3,26,700,8,26,1,27,1,27,1,28, + 1,28,1,28,1,28,5,28,708,8,28,10,28,12,28,711,9,28,1,28,1,28,1,29, + 1,29,1,29,3,29,718,8,29,1,29,1,29,3,29,722,8,29,1,29,1,29,3,29,726, 8,29,1,29,1,29,3,29,730,8,29,1,29,1,29,3,29,734,8,29,1,29,1,29,3, - 29,738,8,29,1,29,1,29,3,29,742,8,29,1,29,1,29,3,29,746,8,29,3,29, - 748,8,29,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,3,31,758,8,31,1, - 31,1,31,1,32,1,32,1,32,1,32,3,32,766,8,32,1,32,1,32,1,33,1,33,1, - 33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,35,1,35,1,35,1,35,1, - 35,1,35,1,35,5,35,788,8,35,10,35,12,35,791,9,35,1,35,1,35,1,35,1, - 35,1,35,1,35,1,35,1,35,1,35,5,35,802,8,35,10,35,12,35,805,9,35,1, - 35,1,35,3,35,809,8,35,1,36,1,36,3,36,813,8,36,1,36,1,36,1,36,1,36, - 3,36,819,8,36,1,36,3,36,822,8,36,1,36,3,36,825,8,36,1,37,1,37,1, - 37,1,37,1,37,3,37,832,8,37,1,37,3,37,835,8,37,1,38,1,38,1,39,1,39, - 1,39,1,39,1,39,3,39,844,8,39,1,40,1,40,1,41,1,41,1,41,1,41,1,41, - 1,41,1,42,1,42,3,42,856,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,43, - 1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46, - 5,46,878,8,46,10,46,12,46,881,9,46,1,46,1,46,1,47,1,47,1,47,1,47, - 1,47,5,47,890,8,47,10,47,12,47,893,9,47,1,47,1,47,3,47,897,8,47, - 1,48,1,48,3,48,901,8,48,1,49,1,49,1,49,1,49,5,49,907,8,49,10,49, - 12,49,910,9,49,1,49,3,49,913,8,49,1,50,1,50,1,50,1,50,3,50,919,8, - 50,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,3,52,929,8,52,1,52,1, - 52,1,52,3,52,934,8,52,1,52,1,52,1,53,1,53,3,53,940,8,53,1,53,1,53, + 29,738,8,29,1,29,1,29,3,29,742,8,29,1,29,1,29,3,29,746,8,29,1,29, + 1,29,3,29,750,8,29,3,29,752,8,29,1,30,1,30,1,30,1,30,1,31,1,31,1, + 31,1,31,3,31,762,8,31,1,31,1,31,1,32,1,32,1,32,1,32,3,32,770,8,32, + 1,32,1,32,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34, + 1,35,1,35,1,35,1,35,1,35,1,35,1,35,5,35,792,8,35,10,35,12,35,795, + 9,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,5,35,806,8,35, + 10,35,12,35,809,9,35,1,35,1,35,3,35,813,8,35,1,36,1,36,3,36,817, + 8,36,1,36,1,36,1,36,1,36,3,36,823,8,36,1,36,3,36,826,8,36,1,36,3, + 36,829,8,36,1,37,1,37,1,37,1,37,1,37,3,37,836,8,37,1,37,3,37,839, + 8,37,1,38,1,38,1,39,1,39,1,39,1,39,1,39,3,39,848,8,39,1,40,1,40, + 1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,3,42,860,8,42,1,42,1,42, + 1,42,1,42,1,42,1,42,1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45, + 1,45,1,46,1,46,1,46,1,46,5,46,882,8,46,10,46,12,46,885,9,46,1,46, + 1,46,1,47,1,47,1,47,1,47,1,47,5,47,894,8,47,10,47,12,47,897,9,47, + 1,47,1,47,3,47,901,8,47,1,48,1,48,3,48,905,8,48,1,49,1,49,1,49,1, + 49,5,49,911,8,49,10,49,12,49,914,9,49,1,49,3,49,917,8,49,1,50,1, + 50,1,50,1,50,3,50,923,8,50,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1, + 52,3,52,933,8,52,1,52,1,52,1,52,3,52,938,8,52,1,52,1,52,1,53,1,53, 3,53,944,8,53,1,53,1,53,3,53,948,8,53,1,53,1,53,3,53,952,8,53,1, - 53,1,53,1,53,1,54,1,54,1,54,1,54,3,54,961,8,54,1,54,1,54,3,54,965, - 8,54,1,54,1,54,1,54,1,54,1,54,3,54,972,8,54,1,54,3,54,975,8,54,1, - 55,1,55,1,55,1,55,1,55,1,55,5,55,983,8,55,10,55,12,55,986,9,55,1, - 56,1,56,1,57,1,57,1,57,3,57,993,8,57,1,57,1,57,1,57,1,57,1,57,1, - 57,3,57,1001,8,57,1,58,1,58,3,58,1005,8,58,1,58,1,58,1,58,1,59,1, - 59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,1020,8,60,1,61,1, - 61,1,61,1,61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,64,1,64,1,64,1, - 64,1,64,1,64,3,64,1039,8,64,1,65,1,65,1,65,1,65,1,65,1,66,1,66,1, - 66,1,66,3,66,1050,8,66,1,66,1,66,3,66,1054,8,66,1,66,1,66,1,66,1, - 66,1,66,3,66,1061,8,66,1,67,1,67,1,67,3,67,1066,8,67,1,67,1,67,1, - 68,1,68,3,68,1072,8,68,1,68,1,68,3,68,1076,8,68,1,68,1,68,1,69,1, - 69,1,69,3,69,1083,8,69,1,69,1,69,3,69,1087,8,69,1,70,1,70,3,70,1091, - 8,70,1,70,1,70,3,70,1095,8,70,1,70,1,70,1,71,1,71,1,71,1,71,3,71, - 1103,8,71,1,71,1,71,3,71,1107,8,71,1,71,1,71,1,72,3,72,1112,8,72, - 1,72,1,72,1,72,1,72,3,72,1118,8,72,1,73,1,73,1,73,1,73,3,73,1124, - 8,73,1,73,3,73,1127,8,73,1,73,1,73,3,73,1131,8,73,1,74,1,74,1,74, - 1,75,1,75,1,75,1,75,5,75,1140,8,75,10,75,12,75,1143,9,75,1,76,1, - 76,1,76,1,76,5,76,1149,8,76,10,76,12,76,1152,9,76,1,76,1,76,1,77, - 1,77,3,77,1158,8,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,4,78,1167, - 8,78,11,78,12,78,1168,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,4, - 79,1179,8,79,11,79,12,79,1180,1,79,1,79,1,80,1,80,1,80,1,80,1,80, - 1,80,1,80,1,80,1,80,1,80,1,80,3,80,1196,8,80,1,80,3,80,1199,8,80, - 1,80,1,80,3,80,1203,8,80,1,80,3,80,1206,8,80,3,80,1208,8,80,1,80, - 1,80,1,80,3,80,1213,8,80,1,80,1,80,3,80,1217,8,80,1,80,3,80,1220, - 8,80,5,80,1222,8,80,10,80,12,80,1225,9,80,1,81,1,81,1,81,1,81,5, - 81,1231,8,81,10,81,12,81,1234,9,81,1,82,1,82,1,82,1,82,5,82,1240, - 8,82,10,82,12,82,1243,9,82,1,83,1,83,1,83,1,83,1,83,5,83,1250,8, - 83,10,83,12,83,1253,9,83,1,83,1,83,3,83,1257,8,83,1,83,1,83,1,83, - 1,83,1,83,1,84,1,84,1,85,1,85,3,85,1268,8,85,1,85,3,85,1271,8,85, - 1,85,3,85,1274,8,85,1,85,3,85,1277,8,85,1,85,3,85,1280,8,85,1,85, - 1,85,1,85,1,85,3,85,1286,8,85,1,86,1,86,3,86,1290,8,86,1,86,1,86, - 1,86,1,86,5,86,1296,8,86,10,86,12,86,1299,9,86,3,86,1301,8,86,1, - 87,1,87,1,87,3,87,1306,8,87,1,87,3,87,1309,8,87,1,87,1,87,3,87,1313, - 8,87,1,87,3,87,1316,8,87,3,87,1318,8,87,1,88,1,88,1,88,1,88,1,88, - 1,88,1,88,1,88,1,88,1,88,1,88,1,88,3,88,1332,8,88,1,89,1,89,1,89, - 1,90,1,90,1,90,1,90,5,90,1341,8,90,10,90,12,90,1344,9,90,1,90,1, - 90,3,90,1348,8,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1356,8,90,1, - 90,3,90,1359,8,90,1,90,3,90,1362,8,90,1,90,1,90,1,90,3,90,1367,8, - 90,5,90,1369,8,90,10,90,12,90,1372,9,90,1,91,1,91,3,91,1376,8,91, - 1,92,3,92,1379,8,92,1,92,1,92,3,92,1383,8,92,1,92,1,92,3,92,1387, - 8,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,1396,8,92,1,92,1,92, - 1,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,1407,8,92,1,93,1,93,1,93, - 1,93,1,93,1,93,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,96,1,96,1,96, - 1,96,1,96,1,97,1,97,1,97,1,97,1,97,5,97,1432,8,97,10,97,12,97,1435, - 9,97,1,97,1,97,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99, - 1,99,1,99,1,99,1,99,1,99,1,99,1,99,3,99,1456,8,99,1,100,1,100,1, - 101,1,101,1,101,1,101,1,101,1,102,1,102,1,102,1,102,3,102,1469,8, - 102,1,103,1,103,1,103,1,104,1,104,1,104,1,104,1,104,5,104,1479,8, - 104,10,104,12,104,1482,9,104,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,1,105,5,105,1492,8,105,10,105,12,105,1495,9,105,1,105,1,105, - 1,105,1,105,1,105,1,105,1,105,5,105,1504,8,105,10,105,12,105,1507, - 9,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,5,105,1516,8,105, - 10,105,12,105,1519,9,105,1,105,1,105,1,105,3,105,1524,8,105,1,106, - 1,106,1,106,1,107,1,107,1,108,1,108,1,108,1,108,1,108,1,108,1,108, - 1,109,1,109,1,110,1,110,1,111,1,111,1,111,1,112,1,112,1,112,1,112, - 5,112,1549,8,112,10,112,12,112,1552,9,112,1,113,1,113,1,113,1,113, - 1,114,3,114,1559,8,114,1,114,1,114,3,114,1563,8,114,1,114,3,114, - 1566,8,114,1,114,3,114,1569,8,114,1,114,1,114,1,115,1,115,1,115, - 3,115,1576,8,115,1,115,3,115,1579,8,115,1,115,3,115,1582,8,115,1, - 115,3,115,1585,8,115,1,115,3,115,1588,8,115,1,115,3,115,1591,8,115, - 1,115,1,115,1,115,3,115,1596,8,115,1,115,3,115,1599,8,115,1,116, - 1,116,1,116,1,116,1,116,5,116,1606,8,116,10,116,12,116,1609,9,116, - 1,117,1,117,3,117,1613,8,117,1,117,1,117,3,117,1617,8,117,1,118, - 1,118,1,118,3,118,1622,8,118,1,119,1,119,1,119,1,119,3,119,1628, - 8,119,1,119,1,119,1,119,3,119,1633,8,119,5,119,1635,8,119,10,119, - 12,119,1638,9,119,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120, - 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,1656,8,120, - 1,121,1,121,1,121,1,121,5,121,1662,8,121,10,121,12,121,1665,9,121, - 1,122,1,122,1,122,4,122,1670,8,122,11,122,12,122,1671,1,122,1,122, - 3,122,1676,8,122,1,123,1,123,3,123,1680,8,123,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,3,124,1690,8,124,1,125,1,125,1,125, + 53,1,53,3,53,956,8,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,3,54,965, + 8,54,1,54,1,54,3,54,969,8,54,1,54,1,54,1,54,1,54,1,54,3,54,976,8, + 54,1,54,3,54,979,8,54,1,55,1,55,1,55,1,55,1,55,1,55,5,55,987,8,55, + 10,55,12,55,990,9,55,1,56,1,56,1,57,1,57,1,57,3,57,997,8,57,1,57, + 1,57,1,57,1,57,1,57,1,57,3,57,1005,8,57,1,58,1,58,3,58,1009,8,58, + 1,58,1,58,1,58,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60, + 3,60,1024,8,60,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,63,1,63, + 1,63,1,64,1,64,1,64,1,64,1,64,1,64,3,64,1043,8,64,1,65,1,65,1,65, + 1,65,1,65,1,66,1,66,1,66,1,66,3,66,1054,8,66,1,66,1,66,3,66,1058, + 8,66,1,66,1,66,1,66,1,66,1,66,3,66,1065,8,66,1,67,1,67,1,67,3,67, + 1070,8,67,1,67,1,67,1,68,1,68,3,68,1076,8,68,1,68,1,68,3,68,1080, + 8,68,1,68,1,68,1,69,1,69,1,69,3,69,1087,8,69,1,69,1,69,3,69,1091, + 8,69,1,70,1,70,3,70,1095,8,70,1,70,1,70,3,70,1099,8,70,1,70,1,70, + 1,71,1,71,1,71,1,71,3,71,1107,8,71,1,71,1,71,3,71,1111,8,71,1,71, + 1,71,1,72,3,72,1116,8,72,1,72,1,72,1,72,1,72,3,72,1122,8,72,1,73, + 1,73,1,73,1,73,3,73,1128,8,73,1,73,3,73,1131,8,73,1,73,1,73,3,73, + 1135,8,73,1,74,1,74,1,74,1,75,1,75,1,75,1,75,5,75,1144,8,75,10,75, + 12,75,1147,9,75,1,76,1,76,1,76,1,76,5,76,1153,8,76,10,76,12,76,1156, + 9,76,1,76,1,76,1,77,1,77,3,77,1162,8,77,1,78,1,78,1,78,1,78,1,78, + 1,78,1,78,4,78,1171,8,78,11,78,12,78,1172,1,78,1,78,1,79,1,79,1, + 79,1,79,1,79,1,79,4,79,1183,8,79,11,79,12,79,1184,1,79,1,79,1,80, + 1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,3,80,1200,8,80, + 1,80,3,80,1203,8,80,1,80,1,80,3,80,1207,8,80,1,80,3,80,1210,8,80, + 3,80,1212,8,80,1,80,1,80,1,80,3,80,1217,8,80,1,80,1,80,3,80,1221, + 8,80,1,80,3,80,1224,8,80,5,80,1226,8,80,10,80,12,80,1229,9,80,1, + 81,1,81,1,81,1,81,5,81,1235,8,81,10,81,12,81,1238,9,81,1,82,1,82, + 1,82,1,82,5,82,1244,8,82,10,82,12,82,1247,9,82,1,83,1,83,1,83,1, + 83,1,83,5,83,1254,8,83,10,83,12,83,1257,9,83,1,83,1,83,3,83,1261, + 8,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,85,1,85,3,85,1272,8,85, + 1,85,3,85,1275,8,85,1,85,3,85,1278,8,85,1,85,3,85,1281,8,85,1,85, + 3,85,1284,8,85,1,85,1,85,1,85,1,85,3,85,1290,8,85,1,86,1,86,3,86, + 1294,8,86,1,86,1,86,1,86,1,86,5,86,1300,8,86,10,86,12,86,1303,9, + 86,3,86,1305,8,86,1,87,1,87,1,87,3,87,1310,8,87,1,87,3,87,1313,8, + 87,1,87,1,87,3,87,1317,8,87,1,87,3,87,1320,8,87,3,87,1322,8,87,1, + 88,1,88,1,88,1,88,1,88,3,88,1329,8,88,1,88,1,88,1,88,1,88,1,88,3, + 88,1336,8,88,3,88,1338,8,88,1,89,1,89,1,89,1,90,1,90,1,90,1,90,5, + 90,1347,8,90,10,90,12,90,1350,9,90,1,90,1,90,3,90,1354,8,90,1,90, + 1,90,1,90,1,90,1,90,1,90,3,90,1362,8,90,1,90,3,90,1365,8,90,1,90, + 3,90,1368,8,90,1,90,1,90,1,90,3,90,1373,8,90,5,90,1375,8,90,10,90, + 12,90,1378,9,90,1,91,1,91,3,91,1382,8,91,1,92,3,92,1385,8,92,1,92, + 1,92,3,92,1389,8,92,1,92,1,92,3,92,1393,8,92,1,92,1,92,1,92,1,92, + 1,92,1,92,1,92,3,92,1402,8,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92, + 1,92,1,92,3,92,1413,8,92,1,93,1,93,1,93,1,93,1,93,1,93,1,94,1,94, + 1,95,1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97, + 1,97,1,97,5,97,1438,8,97,10,97,12,97,1441,9,97,1,97,1,97,1,98,1, + 98,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1, + 99,1,99,1,99,3,99,1462,8,99,1,100,1,100,1,101,1,101,1,101,1,101, + 1,101,1,102,1,102,1,102,1,102,3,102,1475,8,102,1,103,1,103,1,103, + 1,104,1,104,1,104,1,104,1,104,5,104,1485,8,104,10,104,12,104,1488, + 9,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,5,105,1498, + 8,105,10,105,12,105,1501,9,105,1,105,1,105,1,105,1,105,1,105,1,105, + 1,105,5,105,1510,8,105,10,105,12,105,1513,9,105,1,105,1,105,1,105, + 1,105,1,105,1,105,1,105,5,105,1522,8,105,10,105,12,105,1525,9,105, + 1,105,1,105,1,105,3,105,1530,8,105,1,106,1,106,1,106,1,107,1,107, + 1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,109,1,109,1,110,1,110, + 1,111,1,111,1,111,1,112,1,112,1,112,1,112,5,112,1555,8,112,10,112, + 12,112,1558,9,112,1,113,1,113,1,113,1,113,1,114,3,114,1565,8,114, + 1,114,1,114,3,114,1569,8,114,1,114,3,114,1572,8,114,1,114,3,114, + 1575,8,114,1,114,1,114,1,115,1,115,1,115,3,115,1582,8,115,1,115, + 3,115,1585,8,115,1,115,3,115,1588,8,115,1,115,3,115,1591,8,115,1, + 115,3,115,1594,8,115,1,115,3,115,1597,8,115,1,115,1,115,1,115,3, + 115,1602,8,115,1,115,3,115,1605,8,115,1,116,1,116,1,116,1,116,1, + 116,5,116,1612,8,116,10,116,12,116,1615,9,116,1,117,1,117,3,117, + 1619,8,117,1,117,3,117,1622,8,117,1,117,1,117,3,117,1626,8,117,1, + 118,1,118,1,118,3,118,1631,8,118,1,119,1,119,1,119,1,119,3,119,1637, + 8,119,1,119,1,119,1,119,3,119,1642,8,119,5,119,1644,8,119,10,119, + 12,119,1647,9,119,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120, + 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,1665,8,120, + 1,121,1,121,1,121,1,121,5,121,1671,8,121,10,121,12,121,1674,9,121, + 1,122,1,122,1,122,4,122,1679,8,122,11,122,12,122,1680,1,122,1,122, + 3,122,1685,8,122,1,123,1,123,3,123,1689,8,123,1,124,1,124,1,124, + 1,124,1,124,1,124,1,124,1,124,3,124,1699,8,124,1,125,1,125,1,125, 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125, 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125, - 1716,8,125,1,126,1,126,1,126,1,126,5,126,1722,8,126,10,126,12,126, - 1725,9,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127, - 3,127,1736,8,127,1,128,1,128,1,128,1,128,1,128,1,129,1,129,1,129, - 1,130,1,130,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,3,131,1758,8,131,3,131,1760,8,131,1,131,1,131,1,131,1,131, - 1,131,1,131,1,131,1,131,1,131,3,131,1771,8,131,1,131,5,131,1774, - 8,131,10,131,12,131,1777,9,131,1,132,3,132,1780,8,132,1,132,1,132, - 3,132,1784,8,132,1,132,1,132,1,132,1,132,1,132,3,132,1791,8,132, - 1,132,1,132,1,132,1,132,1,132,5,132,1798,8,132,10,132,12,132,1801, - 9,132,1,132,1,132,1,132,3,132,1806,8,132,1,132,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,132,1,132,1,132,3,132,1819,8,132,1,132, - 1,132,1,132,1,132,1,132,3,132,1826,8,132,1,132,1,132,1,132,3,132, - 1831,8,132,1,132,1,132,1,132,1,132,3,132,1837,8,132,1,132,1,132, - 1,132,1,132,1,132,3,132,1844,8,132,1,132,1,132,1,132,1,132,1,132, - 3,132,1851,8,132,3,132,1853,8,132,1,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,3,133,1863,8,133,1,134,3,134,1866,8,134,1,134, - 1,134,1,134,1,134,1,134,1,134,1,134,1,134,5,134,1876,8,134,10,134, - 12,134,1879,9,134,1,134,1,134,3,134,1883,8,134,1,134,3,134,1886, - 8,134,1,134,1,134,1,134,1,134,3,134,1892,8,134,3,134,1894,8,134, - 1,135,1,135,1,135,1,135,3,135,1900,8,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,1,135,5,135,1921,8,135,10,135,12,135,1924,9,135, - 1,136,1,136,1,136,1,136,1,136,3,136,1931,8,136,1,136,1,136,1,136, - 5,136,1936,8,136,10,136,12,136,1939,9,136,3,136,1941,8,136,1,136, - 1,136,3,136,1945,8,136,1,137,1,137,1,137,4,137,1950,8,137,11,137, - 12,137,1951,1,137,1,137,3,137,1956,8,137,1,137,1,137,1,137,1,137, - 1,137,4,137,1963,8,137,11,137,12,137,1964,1,137,1,137,3,137,1969, - 8,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, - 1,137,1,137,1,137,1,137,3,137,1985,8,137,1,137,1,137,1,137,1,137, - 1,137,1,137,1,137,3,137,1994,8,137,1,137,1,137,1,137,1,137,1,137, + 1725,8,125,1,126,1,126,1,126,1,126,5,126,1731,8,126,10,126,12,126, + 1734,9,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127, + 1,127,1,127,1,127,1,127,1,127,1,127,3,127,1751,8,127,1,128,1,128, + 1,128,1,128,1,128,1,129,1,129,1,129,1,129,1,129,1,129,3,129,1764, + 8,129,1,130,1,130,1,130,1,130,1,130,1,130,3,130,1772,8,130,1,131, + 1,131,1,131,1,132,1,132,1,133,1,133,1,133,1,133,1,133,1,133,1,133, + 1,133,1,133,1,133,3,133,1789,8,133,3,133,1791,8,133,1,133,1,133, + 1,133,1,133,1,133,1,133,1,133,1,133,1,133,3,133,1802,8,133,1,133, + 5,133,1805,8,133,10,133,12,133,1808,9,133,1,134,3,134,1811,8,134, + 1,134,1,134,3,134,1815,8,134,1,134,1,134,1,134,1,134,1,134,3,134, + 1822,8,134,1,134,1,134,1,134,1,134,1,134,5,134,1829,8,134,10,134, + 12,134,1832,9,134,1,134,1,134,1,134,3,134,1837,8,134,1,134,1,134, + 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,3,134,1850, + 8,134,1,134,1,134,1,134,1,134,1,134,3,134,1857,8,134,1,134,1,134, + 1,134,3,134,1862,8,134,1,134,1,134,1,134,1,134,3,134,1868,8,134, + 1,134,1,134,1,134,1,134,1,134,3,134,1875,8,134,1,134,1,134,1,134, + 1,134,1,134,3,134,1882,8,134,3,134,1884,8,134,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,3,135,1894,8,135,1,136,3,136,1897, + 8,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,5,136,1907, + 8,136,10,136,12,136,1910,9,136,1,136,1,136,3,136,1914,8,136,1,136, + 3,136,1917,8,136,1,136,1,136,1,136,1,136,3,136,1923,8,136,3,136, + 1925,8,136,1,137,1,137,1,137,1,137,3,137,1931,8,137,1,137,1,137, 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, - 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,3,137, - 2022,8,137,1,137,1,137,1,137,1,137,1,137,5,137,2029,8,137,10,137, - 12,137,2032,9,137,1,138,1,138,1,139,1,139,1,139,1,139,3,139,2040, - 8,139,1,140,1,140,1,140,1,140,3,140,2046,8,140,1,141,1,141,3,141, - 2050,8,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142, - 2060,8,142,1,143,1,143,1,143,1,143,3,143,2066,8,143,1,143,1,143, - 1,143,1,143,3,143,2072,8,143,1,143,1,143,3,143,2076,8,143,1,143, - 1,143,1,143,1,143,3,143,2082,8,143,1,143,1,143,3,143,2086,8,143, - 1,144,1,144,1,144,1,144,3,144,2092,8,144,3,144,2094,8,144,1,144, - 3,144,2097,8,144,1,144,3,144,2100,8,144,1,144,1,144,1,144,1,144, - 3,144,2106,8,144,1,144,1,144,1,144,1,144,3,144,2112,8,144,1,145, - 3,145,2115,8,145,1,145,1,145,3,145,2119,8,145,1,145,1,145,1,145, - 1,145,5,145,2125,8,145,10,145,12,145,2128,9,145,1,145,3,145,2131, - 8,145,5,145,2133,8,145,10,145,12,145,2136,9,145,1,145,1,145,3,145, - 2140,8,145,1,145,1,145,3,145,2144,8,145,1,146,5,146,2147,8,146,10, - 146,12,146,2150,9,146,1,146,1,146,3,146,2154,8,146,1,146,1,146,3, - 146,2158,8,146,1,147,1,147,1,148,1,148,1,149,1,149,3,149,2166,8, - 149,1,150,1,150,1,150,3,150,2171,8,150,1,151,1,151,3,151,2175,8, - 151,1,152,1,152,1,152,4,152,2180,8,152,11,152,12,152,2181,1,153, - 1,153,1,153,3,153,2187,8,153,1,154,1,154,1,154,1,154,1,154,1,155, - 3,155,2195,8,155,1,155,1,155,3,155,2199,8,155,1,156,3,156,2202,8, - 156,1,156,1,156,3,156,2206,8,156,1,157,1,157,1,157,1,158,1,158,4, - 158,2213,8,158,11,158,12,158,2214,1,158,3,158,2218,8,158,1,159,1, - 159,1,159,1,159,1,160,1,160,1,160,5,160,2227,8,160,10,160,12,160, - 2230,9,160,1,161,1,161,1,161,3,161,2235,8,161,1,162,1,162,1,163, - 1,163,1,164,1,164,1,164,1,164,1,164,1,165,1,165,1,166,1,166,1,167, - 1,167,1,167,3,167,2253,8,167,1,168,1,168,1,168,3,168,2258,8,168, - 1,169,1,169,1,169,3,169,2263,8,169,1,169,1,169,1,169,1,169,1,169, - 3,169,2270,8,169,3,169,2272,8,169,1,170,1,170,1,170,3,170,2277,8, - 170,1,170,1,170,1,170,1,170,1,170,3,170,2284,8,170,3,170,2286,8, - 170,1,171,1,171,1,171,3,171,2291,8,171,1,171,1,171,1,171,1,171,1, - 171,3,171,2298,8,171,3,171,2300,8,171,1,172,1,172,1,172,3,172,2305, - 8,172,1,172,1,172,1,172,1,172,1,172,3,172,2312,8,172,3,172,2314, - 8,172,1,173,1,173,1,173,5,173,2319,8,173,10,173,12,173,2322,9,173, - 1,174,1,174,1,174,1,175,1,175,1,175,1,175,1,176,1,176,1,176,1,177, - 1,177,1,177,1,177,5,177,2338,8,177,10,177,12,177,2341,9,177,1,177, - 1,177,1,178,1,178,3,178,2347,8,178,1,178,3,178,2350,8,178,1,179, - 1,179,1,179,3,179,2355,8,179,1,180,1,180,1,180,1,180,3,180,2361, - 8,180,1,181,1,181,1,181,1,181,1,181,1,181,3,181,2369,8,181,1,182, - 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, - 1,182,1,182,3,182,2385,8,182,1,183,1,183,1,183,1,183,1,183,1,183, - 1,183,3,183,2394,8,183,1,184,1,184,1,185,1,185,1,186,1,186,1,186, - 1,186,3,186,2404,8,186,1,186,1,186,1,186,1,186,1,186,3,186,2411, - 8,186,1,186,3,186,2414,8,186,1,187,1,187,1,187,1,188,1,188,1,189, - 1,189,1,190,1,190,1,191,1,191,1,192,1,192,1,193,1,193,1,194,1,194, - 1,195,1,195,1,196,1,196,1,197,1,197,1,198,1,198,1,198,1,2320,5,160, - 180,262,270,274,199,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32, - 34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76, - 78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114, - 116,118,120,122,124,126,128,130,132,134,136,138,140,142,144,146, - 148,150,152,154,156,158,160,162,164,166,168,170,172,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,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306, - 308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338, - 340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370, - 372,374,376,378,380,382,384,386,388,390,392,394,396,0,47,2,0,109, - 109,451,451,3,0,45,45,128,128,189,189,4,0,42,42,90,90,423,423,465, - 465,2,0,442,442,448,448,2,0,151,151,170,170,2,0,438,438,490,490, - 2,0,483,486,488,488,3,0,32,32,91,91,245,245,11,0,28,29,35,35,46, - 46,92,92,178,179,345,345,361,361,379,379,382,382,388,388,417,418, - 2,0,434,434,436,436,4,0,101,102,115,115,144,144,247,247,2,0,13,13, - 232,232,2,0,456,456,463,463,3,0,5,5,271,271,445,445,3,0,267,267, - 456,456,463,463,3,0,426,426,459,459,478,478,3,0,331,331,466,466, - 482,482,2,0,441,441,491,491,2,0,183,183,266,266,3,0,130,130,180, - 180,403,403,4,0,152,152,174,174,202,202,318,318,3,0,446,446,460, - 460,500,500,4,0,251,251,447,447,495,497,499,499,2,0,74,74,321,321, - 3,0,460,460,493,493,500,500,2,0,440,440,451,451,2,0,458,458,468, - 468,4,0,140,140,245,245,398,398,405,405,2,0,19,19,370,370,2,0,5, - 5,11,11,2,0,510,510,530,531,4,0,453,453,528,528,532,532,535,535, - 2,0,530,531,533,533,1,0,530,531,1,0,539,540,2,0,539,539,542,542, - 4,0,453,453,528,528,530,532,534,535,3,0,242,242,509,510,530,531, - 2,0,140,140,398,398,2,0,5,5,113,113,10,0,97,97,165,165,223,223,230, - 230,335,335,437,437,471,471,473,473,489,489,503,503,15,0,97,97,165, - 165,223,223,230,230,335,335,428,428,437,437,443,443,449,450,455, - 455,461,461,471,476,489,489,492,492,503,504,11,0,5,5,13,13,33,33, - 78,78,84,85,113,113,201,201,208,209,390,390,414,414,528,528,3,0, - 78,78,84,85,208,209,2,0,91,91,379,380,53,0,4,4,13,13,23,23,38,38, - 41,41,43,44,54,54,56,56,69,69,75,75,98,99,107,107,119,119,134,134, - 139,139,143,143,145,145,160,160,165,165,167,167,187,188,190,195, - 198,198,200,200,202,202,206,206,210,210,215,215,221,221,223,224, - 230,230,244,244,246,246,265,265,277,277,282,282,284,284,294,294, - 318,318,322,324,335,335,358,359,365,365,368,368,381,381,396,396, - 399,400,409,409,420,421,437,437,470,470,489,489,503,503,1,0,438, - 505,2674,0,401,1,0,0,0,2,411,1,0,0,0,4,425,1,0,0,0,6,427,1,0,0,0, - 8,443,1,0,0,0,10,447,1,0,0,0,12,449,1,0,0,0,14,452,1,0,0,0,16,463, - 1,0,0,0,18,471,1,0,0,0,20,479,1,0,0,0,22,481,1,0,0,0,24,533,1,0, - 0,0,26,535,1,0,0,0,28,542,1,0,0,0,30,546,1,0,0,0,32,550,1,0,0,0, - 34,554,1,0,0,0,36,608,1,0,0,0,38,614,1,0,0,0,40,620,1,0,0,0,42,622, - 1,0,0,0,44,664,1,0,0,0,46,678,1,0,0,0,48,680,1,0,0,0,50,691,1,0, - 0,0,52,695,1,0,0,0,54,697,1,0,0,0,56,699,1,0,0,0,58,747,1,0,0,0, - 60,749,1,0,0,0,62,753,1,0,0,0,64,761,1,0,0,0,66,769,1,0,0,0,68,773, - 1,0,0,0,70,808,1,0,0,0,72,824,1,0,0,0,74,826,1,0,0,0,76,836,1,0, - 0,0,78,838,1,0,0,0,80,845,1,0,0,0,82,847,1,0,0,0,84,855,1,0,0,0, - 86,863,1,0,0,0,88,865,1,0,0,0,90,869,1,0,0,0,92,873,1,0,0,0,94,896, - 1,0,0,0,96,900,1,0,0,0,98,902,1,0,0,0,100,918,1,0,0,0,102,920,1, - 0,0,0,104,925,1,0,0,0,106,937,1,0,0,0,108,956,1,0,0,0,110,976,1, - 0,0,0,112,987,1,0,0,0,114,989,1,0,0,0,116,1002,1,0,0,0,118,1009, - 1,0,0,0,120,1012,1,0,0,0,122,1021,1,0,0,0,124,1025,1,0,0,0,126,1029, - 1,0,0,0,128,1032,1,0,0,0,130,1040,1,0,0,0,132,1045,1,0,0,0,134,1062, - 1,0,0,0,136,1069,1,0,0,0,138,1079,1,0,0,0,140,1088,1,0,0,0,142,1098, - 1,0,0,0,144,1117,1,0,0,0,146,1119,1,0,0,0,148,1132,1,0,0,0,150,1135, - 1,0,0,0,152,1144,1,0,0,0,154,1157,1,0,0,0,156,1159,1,0,0,0,158,1172, - 1,0,0,0,160,1207,1,0,0,0,162,1226,1,0,0,0,164,1235,1,0,0,0,166,1244, - 1,0,0,0,168,1263,1,0,0,0,170,1285,1,0,0,0,172,1287,1,0,0,0,174,1317, - 1,0,0,0,176,1331,1,0,0,0,178,1333,1,0,0,0,180,1347,1,0,0,0,182,1373, - 1,0,0,0,184,1406,1,0,0,0,186,1408,1,0,0,0,188,1414,1,0,0,0,190,1416, - 1,0,0,0,192,1421,1,0,0,0,194,1426,1,0,0,0,196,1438,1,0,0,0,198,1455, - 1,0,0,0,200,1457,1,0,0,0,202,1459,1,0,0,0,204,1468,1,0,0,0,206,1470, - 1,0,0,0,208,1473,1,0,0,0,210,1523,1,0,0,0,212,1525,1,0,0,0,214,1528, - 1,0,0,0,216,1530,1,0,0,0,218,1537,1,0,0,0,220,1539,1,0,0,0,222,1541, - 1,0,0,0,224,1544,1,0,0,0,226,1553,1,0,0,0,228,1558,1,0,0,0,230,1572, - 1,0,0,0,232,1600,1,0,0,0,234,1610,1,0,0,0,236,1618,1,0,0,0,238,1623, - 1,0,0,0,240,1655,1,0,0,0,242,1657,1,0,0,0,244,1666,1,0,0,0,246,1677, - 1,0,0,0,248,1689,1,0,0,0,250,1715,1,0,0,0,252,1717,1,0,0,0,254,1735, - 1,0,0,0,256,1737,1,0,0,0,258,1742,1,0,0,0,260,1745,1,0,0,0,262,1759, - 1,0,0,0,264,1852,1,0,0,0,266,1862,1,0,0,0,268,1893,1,0,0,0,270,1899, - 1,0,0,0,272,1944,1,0,0,0,274,2021,1,0,0,0,276,2033,1,0,0,0,278,2039, - 1,0,0,0,280,2045,1,0,0,0,282,2049,1,0,0,0,284,2059,1,0,0,0,286,2061, - 1,0,0,0,288,2087,1,0,0,0,290,2134,1,0,0,0,292,2148,1,0,0,0,294,2159, - 1,0,0,0,296,2161,1,0,0,0,298,2165,1,0,0,0,300,2167,1,0,0,0,302,2172, - 1,0,0,0,304,2179,1,0,0,0,306,2183,1,0,0,0,308,2188,1,0,0,0,310,2198, - 1,0,0,0,312,2201,1,0,0,0,314,2207,1,0,0,0,316,2217,1,0,0,0,318,2219, - 1,0,0,0,320,2223,1,0,0,0,322,2234,1,0,0,0,324,2236,1,0,0,0,326,2238, - 1,0,0,0,328,2240,1,0,0,0,330,2245,1,0,0,0,332,2247,1,0,0,0,334,2249, - 1,0,0,0,336,2254,1,0,0,0,338,2271,1,0,0,0,340,2285,1,0,0,0,342,2299, - 1,0,0,0,344,2313,1,0,0,0,346,2315,1,0,0,0,348,2323,1,0,0,0,350,2326, - 1,0,0,0,352,2330,1,0,0,0,354,2333,1,0,0,0,356,2344,1,0,0,0,358,2354, - 1,0,0,0,360,2360,1,0,0,0,362,2368,1,0,0,0,364,2384,1,0,0,0,366,2393, - 1,0,0,0,368,2395,1,0,0,0,370,2397,1,0,0,0,372,2413,1,0,0,0,374,2415, - 1,0,0,0,376,2418,1,0,0,0,378,2420,1,0,0,0,380,2422,1,0,0,0,382,2424, - 1,0,0,0,384,2426,1,0,0,0,386,2428,1,0,0,0,388,2430,1,0,0,0,390,2432, - 1,0,0,0,392,2434,1,0,0,0,394,2436,1,0,0,0,396,2438,1,0,0,0,398,400, - 3,2,1,0,399,398,1,0,0,0,400,403,1,0,0,0,401,399,1,0,0,0,401,402, - 1,0,0,0,402,404,1,0,0,0,403,401,1,0,0,0,404,405,5,0,0,1,405,1,1, - 0,0,0,406,408,3,4,2,0,407,409,5,522,0,0,408,407,1,0,0,0,408,409, - 1,0,0,0,409,412,1,0,0,0,410,412,3,6,3,0,411,406,1,0,0,0,411,410, - 1,0,0,0,412,3,1,0,0,0,413,426,3,8,4,0,414,426,3,10,5,0,415,426,3, - 12,6,0,416,426,3,14,7,0,417,426,3,20,10,0,418,426,3,24,12,0,419, - 426,3,26,13,0,420,426,3,28,14,0,421,426,3,30,15,0,422,426,3,32,16, - 0,423,426,3,34,17,0,424,426,3,36,18,0,425,413,1,0,0,0,425,414,1, - 0,0,0,425,415,1,0,0,0,425,416,1,0,0,0,425,417,1,0,0,0,425,418,1, - 0,0,0,425,419,1,0,0,0,425,420,1,0,0,0,425,421,1,0,0,0,425,422,1, - 0,0,0,425,423,1,0,0,0,425,424,1,0,0,0,426,5,1,0,0,0,427,428,5,522, - 0,0,428,7,1,0,0,0,429,444,3,40,20,0,430,444,3,104,52,0,431,444,3, - 106,53,0,432,444,3,108,54,0,433,444,3,102,51,0,434,444,3,114,57, - 0,435,444,3,128,64,0,436,444,3,130,65,0,437,444,3,132,66,0,438,444, - 3,134,67,0,439,444,3,136,68,0,440,444,3,138,69,0,441,444,3,140,70, - 0,442,444,3,142,71,0,443,429,1,0,0,0,443,430,1,0,0,0,443,431,1,0, - 0,0,443,432,1,0,0,0,443,433,1,0,0,0,443,434,1,0,0,0,443,435,1,0, - 0,0,443,436,1,0,0,0,443,437,1,0,0,0,443,438,1,0,0,0,443,439,1,0, - 0,0,443,440,1,0,0,0,443,441,1,0,0,0,443,442,1,0,0,0,444,9,1,0,0, - 0,445,448,3,160,80,0,446,448,3,144,72,0,447,445,1,0,0,0,447,446, - 1,0,0,0,448,11,1,0,0,0,449,450,7,0,0,0,450,451,3,340,170,0,451,13, - 1,0,0,0,452,456,5,135,0,0,453,457,3,16,8,0,454,455,5,480,0,0,455, - 457,5,146,0,0,456,453,1,0,0,0,456,454,1,0,0,0,456,457,1,0,0,0,457, - 461,1,0,0,0,458,462,3,10,5,0,459,462,3,146,73,0,460,462,3,158,79, - 0,461,458,1,0,0,0,461,459,1,0,0,0,461,460,1,0,0,0,462,15,1,0,0,0, - 463,468,3,18,9,0,464,465,5,521,0,0,465,467,3,18,9,0,466,464,1,0, - 0,0,467,470,1,0,0,0,468,466,1,0,0,0,468,469,1,0,0,0,469,17,1,0,0, - 0,470,468,1,0,0,0,471,472,7,1,0,0,472,19,1,0,0,0,473,474,5,411,0, - 0,474,475,5,442,0,0,475,480,3,330,165,0,476,477,5,411,0,0,477,480, - 3,334,167,0,478,480,3,22,11,0,479,473,1,0,0,0,479,476,1,0,0,0,479, - 478,1,0,0,0,480,21,1,0,0,0,481,482,5,411,0,0,482,483,5,228,0,0,483, - 488,3,346,173,0,484,485,5,521,0,0,485,487,3,346,173,0,486,484,1, - 0,0,0,487,490,1,0,0,0,488,486,1,0,0,0,488,489,1,0,0,0,489,23,1,0, - 0,0,490,488,1,0,0,0,491,492,5,342,0,0,492,534,7,2,0,0,493,494,5, - 342,0,0,494,495,5,76,0,0,495,534,7,3,0,0,496,497,5,342,0,0,497,500, - 5,375,0,0,498,499,7,4,0,0,499,501,3,334,167,0,500,498,1,0,0,0,500, - 501,1,0,0,0,501,503,1,0,0,0,502,504,3,268,134,0,503,502,1,0,0,0, - 503,504,1,0,0,0,504,534,1,0,0,0,505,506,5,342,0,0,506,507,5,58,0, - 0,507,510,7,4,0,0,508,511,3,342,171,0,509,511,3,340,170,0,510,508, - 1,0,0,0,510,509,1,0,0,0,511,513,1,0,0,0,512,514,3,268,134,0,513, - 512,1,0,0,0,513,514,1,0,0,0,514,534,1,0,0,0,515,516,5,342,0,0,516, - 521,5,72,0,0,517,518,5,374,0,0,518,522,3,340,170,0,519,520,5,502, - 0,0,520,522,3,342,171,0,521,517,1,0,0,0,521,519,1,0,0,0,522,534, - 1,0,0,0,523,525,5,342,0,0,524,526,5,412,0,0,525,524,1,0,0,0,525, - 526,1,0,0,0,526,527,1,0,0,0,527,534,5,154,0,0,528,530,5,342,0,0, - 529,531,5,152,0,0,530,529,1,0,0,0,530,531,1,0,0,0,531,532,1,0,0, - 0,532,534,5,228,0,0,533,491,1,0,0,0,533,493,1,0,0,0,533,496,1,0, - 0,0,533,505,1,0,0,0,533,515,1,0,0,0,533,523,1,0,0,0,533,528,1,0, - 0,0,534,25,1,0,0,0,535,536,5,469,0,0,536,537,5,227,0,0,537,540,3, - 346,173,0,538,539,5,434,0,0,539,541,3,354,177,0,540,538,1,0,0,0, - 540,541,1,0,0,0,541,27,1,0,0,0,542,543,5,501,0,0,543,544,5,227,0, - 0,544,545,3,346,173,0,545,29,1,0,0,0,546,548,5,341,0,0,547,549,3, - 356,178,0,548,547,1,0,0,0,548,549,1,0,0,0,549,31,1,0,0,0,550,552, - 5,313,0,0,551,553,3,358,179,0,552,551,1,0,0,0,552,553,1,0,0,0,553, - 33,1,0,0,0,554,555,7,5,0,0,555,556,5,464,0,0,556,557,3,112,56,0, - 557,35,1,0,0,0,558,559,5,438,0,0,559,560,5,464,0,0,560,561,5,434, - 0,0,561,564,3,38,19,0,562,563,5,17,0,0,563,565,3,346,173,0,564,562, - 1,0,0,0,564,565,1,0,0,0,565,609,1,0,0,0,566,567,5,438,0,0,567,568, - 5,457,0,0,568,569,5,434,0,0,569,572,3,38,19,0,570,571,5,17,0,0,571, - 573,3,346,173,0,572,570,1,0,0,0,572,573,1,0,0,0,573,576,1,0,0,0, - 574,575,5,312,0,0,575,577,3,346,173,0,576,574,1,0,0,0,576,577,1, - 0,0,0,577,609,1,0,0,0,578,579,5,438,0,0,579,580,7,6,0,0,580,581, - 5,434,0,0,581,582,3,38,19,0,582,583,5,312,0,0,583,584,3,346,173, - 0,584,609,1,0,0,0,585,586,5,438,0,0,586,587,5,487,0,0,587,609,3, - 38,19,0,588,589,5,438,0,0,589,590,5,454,0,0,590,591,5,457,0,0,591, - 592,5,434,0,0,592,593,3,38,19,0,593,594,5,312,0,0,594,595,3,346, - 173,0,595,596,5,467,0,0,596,597,3,346,173,0,597,609,1,0,0,0,598, - 599,5,438,0,0,599,600,5,444,0,0,600,601,5,457,0,0,601,602,5,434, - 0,0,602,603,3,38,19,0,603,604,5,146,0,0,604,605,3,346,173,0,605, - 606,5,17,0,0,606,607,3,346,173,0,607,609,1,0,0,0,608,558,1,0,0,0, - 608,566,1,0,0,0,608,578,1,0,0,0,608,585,1,0,0,0,608,588,1,0,0,0, - 608,598,1,0,0,0,609,37,1,0,0,0,610,612,5,535,0,0,611,610,1,0,0,0, - 611,612,1,0,0,0,612,613,1,0,0,0,613,615,3,346,173,0,614,611,1,0, - 0,0,615,616,1,0,0,0,616,614,1,0,0,0,616,617,1,0,0,0,617,39,1,0,0, - 0,618,621,3,42,21,0,619,621,3,44,22,0,620,618,1,0,0,0,620,619,1, - 0,0,0,621,41,1,0,0,0,622,624,5,72,0,0,623,625,5,498,0,0,624,623, - 1,0,0,0,624,625,1,0,0,0,625,626,1,0,0,0,626,628,5,374,0,0,627,629, - 3,350,175,0,628,627,1,0,0,0,628,629,1,0,0,0,629,630,1,0,0,0,630, - 631,3,338,169,0,631,632,5,517,0,0,632,637,3,46,23,0,633,634,5,521, - 0,0,634,636,3,46,23,0,635,633,1,0,0,0,636,639,1,0,0,0,637,635,1, - 0,0,0,637,638,1,0,0,0,638,642,1,0,0,0,639,637,1,0,0,0,640,641,5, - 521,0,0,641,643,3,82,41,0,642,640,1,0,0,0,642,643,1,0,0,0,643,646, - 1,0,0,0,644,645,5,521,0,0,645,647,3,84,42,0,646,644,1,0,0,0,646, - 647,1,0,0,0,647,650,1,0,0,0,648,649,5,521,0,0,649,651,3,88,44,0, - 650,648,1,0,0,0,650,651,1,0,0,0,651,652,1,0,0,0,652,655,5,518,0, - 0,653,654,5,59,0,0,654,656,5,538,0,0,655,653,1,0,0,0,655,656,1,0, - 0,0,656,658,1,0,0,0,657,659,3,90,45,0,658,657,1,0,0,0,658,659,1, - 0,0,0,659,660,1,0,0,0,660,662,3,348,174,0,661,663,3,98,49,0,662, - 661,1,0,0,0,662,663,1,0,0,0,663,43,1,0,0,0,664,665,5,72,0,0,665, - 667,5,374,0,0,666,668,3,350,175,0,667,666,1,0,0,0,667,668,1,0,0, - 0,668,669,1,0,0,0,669,670,3,338,169,0,670,673,3,348,174,0,671,672, - 5,17,0,0,672,674,3,160,80,0,673,671,1,0,0,0,673,674,1,0,0,0,674, - 45,1,0,0,0,675,679,3,48,24,0,676,679,3,74,37,0,677,679,3,78,39,0, - 678,675,1,0,0,0,678,676,1,0,0,0,678,677,1,0,0,0,679,47,1,0,0,0,680, - 681,3,50,25,0,681,683,3,58,29,0,682,684,3,72,36,0,683,682,1,0,0, - 0,683,684,1,0,0,0,684,687,1,0,0,0,685,686,5,59,0,0,686,688,5,538, - 0,0,687,685,1,0,0,0,687,688,1,0,0,0,688,49,1,0,0,0,689,692,3,346, - 173,0,690,692,3,260,130,0,691,689,1,0,0,0,691,690,1,0,0,0,692,51, - 1,0,0,0,693,696,3,346,173,0,694,696,4,26,0,0,695,693,1,0,0,0,695, - 694,1,0,0,0,696,53,1,0,0,0,697,698,3,346,173,0,698,55,1,0,0,0,699, - 700,5,517,0,0,700,705,3,52,26,0,701,702,5,521,0,0,702,704,3,52,26, - 0,703,701,1,0,0,0,704,707,1,0,0,0,705,703,1,0,0,0,705,706,1,0,0, - 0,706,708,1,0,0,0,707,705,1,0,0,0,708,709,5,518,0,0,709,57,1,0,0, - 0,710,748,7,7,0,0,711,713,7,8,0,0,712,714,3,60,30,0,713,712,1,0, - 0,0,713,714,1,0,0,0,714,748,1,0,0,0,715,717,5,380,0,0,716,718,3, - 60,30,0,717,716,1,0,0,0,717,718,1,0,0,0,718,725,1,0,0,0,719,721, - 7,9,0,0,720,722,5,207,0,0,721,720,1,0,0,0,721,722,1,0,0,0,722,723, - 1,0,0,0,723,724,5,379,0,0,724,726,5,505,0,0,725,719,1,0,0,0,725, - 726,1,0,0,0,726,748,1,0,0,0,727,729,7,10,0,0,728,730,3,62,31,0,729, - 728,1,0,0,0,729,730,1,0,0,0,730,748,1,0,0,0,731,733,7,11,0,0,732, - 734,3,66,33,0,733,732,1,0,0,0,733,734,1,0,0,0,734,748,1,0,0,0,735, - 737,5,470,0,0,736,738,3,68,34,0,737,736,1,0,0,0,737,738,1,0,0,0, - 738,748,1,0,0,0,739,741,5,322,0,0,740,742,3,70,35,0,741,740,1,0, - 0,0,741,742,1,0,0,0,742,748,1,0,0,0,743,745,5,295,0,0,744,746,3, - 64,32,0,745,744,1,0,0,0,745,746,1,0,0,0,746,748,1,0,0,0,747,710, - 1,0,0,0,747,711,1,0,0,0,747,715,1,0,0,0,747,727,1,0,0,0,747,731, - 1,0,0,0,747,735,1,0,0,0,747,739,1,0,0,0,747,743,1,0,0,0,748,59,1, - 0,0,0,749,750,5,517,0,0,750,751,3,378,189,0,751,752,5,518,0,0,752, - 61,1,0,0,0,753,754,5,517,0,0,754,757,3,378,189,0,755,756,5,521,0, - 0,756,758,3,378,189,0,757,755,1,0,0,0,757,758,1,0,0,0,758,759,1, - 0,0,0,759,760,5,518,0,0,760,63,1,0,0,0,761,762,5,517,0,0,762,765, - 3,376,188,0,763,764,5,521,0,0,764,766,3,376,188,0,765,763,1,0,0, - 0,765,766,1,0,0,0,766,767,1,0,0,0,767,768,5,518,0,0,768,65,1,0,0, - 0,769,770,5,508,0,0,770,771,3,58,29,0,771,772,5,507,0,0,772,67,1, - 0,0,0,773,774,5,508,0,0,774,775,3,58,29,0,775,776,5,521,0,0,776, - 777,3,58,29,0,777,778,1,0,0,0,778,779,5,507,0,0,779,69,1,0,0,0,780, - 781,5,508,0,0,781,782,3,52,26,0,782,789,3,58,29,0,783,784,5,521, - 0,0,784,785,3,52,26,0,785,786,3,58,29,0,786,788,1,0,0,0,787,783, - 1,0,0,0,788,791,1,0,0,0,789,787,1,0,0,0,789,790,1,0,0,0,790,792, - 1,0,0,0,791,789,1,0,0,0,792,793,5,507,0,0,793,809,1,0,0,0,794,795, - 5,517,0,0,795,796,3,52,26,0,796,803,3,58,29,0,797,798,5,521,0,0, - 798,799,3,52,26,0,799,800,3,58,29,0,800,802,1,0,0,0,801,797,1,0, - 0,0,802,805,1,0,0,0,803,801,1,0,0,0,803,804,1,0,0,0,804,806,1,0, - 0,0,805,803,1,0,0,0,806,807,5,518,0,0,807,809,1,0,0,0,808,780,1, - 0,0,0,808,794,1,0,0,0,809,71,1,0,0,0,810,811,5,64,0,0,811,813,3, - 86,43,0,812,810,1,0,0,0,812,813,1,0,0,0,813,814,1,0,0,0,814,815, - 5,289,0,0,815,818,5,467,0,0,816,817,5,242,0,0,817,819,5,125,0,0, - 818,816,1,0,0,0,818,819,1,0,0,0,819,825,1,0,0,0,820,822,5,242,0, - 0,821,820,1,0,0,0,821,822,1,0,0,0,822,823,1,0,0,0,823,825,5,245, - 0,0,824,812,1,0,0,0,824,821,1,0,0,0,825,73,1,0,0,0,826,827,3,50, - 25,0,827,828,3,58,29,0,828,831,5,219,0,0,829,830,5,151,0,0,830,832, - 3,76,38,0,831,829,1,0,0,0,831,832,1,0,0,0,832,834,1,0,0,0,833,835, - 5,424,0,0,834,833,1,0,0,0,834,835,1,0,0,0,835,75,1,0,0,0,836,837, - 5,538,0,0,837,77,1,0,0,0,838,839,3,50,25,0,839,840,5,17,0,0,840, - 843,3,80,40,0,841,842,5,59,0,0,842,844,5,538,0,0,843,841,1,0,0,0, - 843,844,1,0,0,0,844,79,1,0,0,0,845,846,3,260,130,0,846,81,1,0,0, - 0,847,848,5,425,0,0,848,849,5,146,0,0,849,850,3,52,26,0,850,851, - 5,17,0,0,851,852,3,260,130,0,852,83,1,0,0,0,853,854,5,64,0,0,854, - 856,3,86,43,0,855,853,1,0,0,0,855,856,1,0,0,0,856,857,1,0,0,0,857, - 858,5,289,0,0,858,859,5,467,0,0,859,860,3,56,28,0,860,861,5,242, - 0,0,861,862,5,125,0,0,862,85,1,0,0,0,863,864,3,322,161,0,864,87, - 1,0,0,0,865,866,5,278,0,0,866,867,5,146,0,0,867,868,5,372,0,0,868, - 89,1,0,0,0,869,870,5,270,0,0,870,871,5,34,0,0,871,872,3,92,46,0, - 872,91,1,0,0,0,873,874,5,517,0,0,874,879,3,94,47,0,875,876,5,521, - 0,0,876,878,3,94,47,0,877,875,1,0,0,0,878,881,1,0,0,0,879,877,1, - 0,0,0,879,880,1,0,0,0,880,882,1,0,0,0,881,879,1,0,0,0,882,883,5, - 518,0,0,883,93,1,0,0,0,884,897,3,52,26,0,885,886,5,517,0,0,886,891, - 3,96,48,0,887,888,5,521,0,0,888,890,3,96,48,0,889,887,1,0,0,0,890, - 893,1,0,0,0,891,889,1,0,0,0,891,892,1,0,0,0,892,894,1,0,0,0,893, - 891,1,0,0,0,894,895,5,518,0,0,895,897,1,0,0,0,896,884,1,0,0,0,896, - 885,1,0,0,0,897,95,1,0,0,0,898,901,3,298,149,0,899,901,3,372,186, - 0,900,898,1,0,0,0,900,899,1,0,0,0,901,97,1,0,0,0,902,903,5,203,0, - 0,903,912,3,340,170,0,904,908,5,517,0,0,905,907,3,100,50,0,906,905, - 1,0,0,0,907,910,1,0,0,0,908,906,1,0,0,0,908,909,1,0,0,0,909,911, - 1,0,0,0,910,908,1,0,0,0,911,913,5,518,0,0,912,904,1,0,0,0,912,913, - 1,0,0,0,913,99,1,0,0,0,914,915,7,12,0,0,915,919,7,13,0,0,916,917, - 7,14,0,0,917,919,7,15,0,0,918,914,1,0,0,0,918,916,1,0,0,0,919,101, - 1,0,0,0,920,921,5,72,0,0,921,922,5,442,0,0,922,923,3,332,166,0,923, - 924,3,348,174,0,924,103,1,0,0,0,925,926,5,72,0,0,926,928,5,448,0, - 0,927,929,3,350,175,0,928,927,1,0,0,0,928,929,1,0,0,0,929,930,1, - 0,0,0,930,933,3,336,168,0,931,932,5,59,0,0,932,934,5,538,0,0,933, - 931,1,0,0,0,933,934,1,0,0,0,934,935,1,0,0,0,935,936,3,348,174,0, - 936,105,1,0,0,0,937,939,5,72,0,0,938,940,5,498,0,0,939,938,1,0,0, - 0,939,940,1,0,0,0,940,941,1,0,0,0,941,943,5,502,0,0,942,944,3,350, - 175,0,943,942,1,0,0,0,943,944,1,0,0,0,944,945,1,0,0,0,945,947,3, - 344,172,0,946,948,3,56,28,0,947,946,1,0,0,0,947,948,1,0,0,0,948, - 951,1,0,0,0,949,950,5,59,0,0,950,952,5,538,0,0,951,949,1,0,0,0,951, - 952,1,0,0,0,952,953,1,0,0,0,953,954,5,17,0,0,954,955,3,160,80,0, - 955,107,1,0,0,0,956,960,5,72,0,0,957,961,5,498,0,0,958,959,5,498, - 0,0,959,961,5,371,0,0,960,957,1,0,0,0,960,958,1,0,0,0,960,961,1, - 0,0,0,961,962,1,0,0,0,962,964,5,153,0,0,963,965,3,350,175,0,964, - 963,1,0,0,0,964,965,1,0,0,0,965,966,1,0,0,0,966,967,3,276,138,0, - 967,968,5,17,0,0,968,971,3,322,161,0,969,970,5,196,0,0,970,972,7, - 16,0,0,971,969,1,0,0,0,971,972,1,0,0,0,972,974,1,0,0,0,973,975,3, - 110,55,0,974,973,1,0,0,0,974,975,1,0,0,0,975,109,1,0,0,0,976,977, - 5,413,0,0,977,978,5,464,0,0,978,984,3,112,56,0,979,980,5,521,0,0, - 980,981,5,464,0,0,981,983,3,112,56,0,982,979,1,0,0,0,983,986,1,0, - 0,0,984,982,1,0,0,0,984,985,1,0,0,0,985,111,1,0,0,0,986,984,1,0, - 0,0,987,988,5,538,0,0,988,113,1,0,0,0,989,990,5,8,0,0,990,992,5, - 374,0,0,991,993,3,352,176,0,992,991,1,0,0,0,992,993,1,0,0,0,993, - 994,1,0,0,0,994,1000,3,340,170,0,995,1001,3,116,58,0,996,1001,3, - 118,59,0,997,1001,3,120,60,0,998,1001,3,122,61,0,999,1001,3,124, - 62,0,1000,995,1,0,0,0,1000,996,1,0,0,0,1000,997,1,0,0,0,1000,998, - 1,0,0,0,1000,999,1,0,0,0,1001,115,1,0,0,0,1002,1004,5,312,0,0,1003, - 1005,3,346,173,0,1004,1003,1,0,0,0,1004,1005,1,0,0,0,1005,1006,1, - 0,0,0,1006,1007,5,389,0,0,1007,1008,3,346,173,0,1008,117,1,0,0,0, - 1009,1010,5,341,0,0,1010,1011,3,354,177,0,1011,119,1,0,0,0,1012, - 1013,5,438,0,0,1013,1014,5,64,0,0,1014,1015,3,86,43,0,1015,1016, - 5,289,0,0,1016,1017,5,467,0,0,1017,1019,3,56,28,0,1018,1020,3,126, - 63,0,1019,1018,1,0,0,0,1019,1020,1,0,0,0,1020,121,1,0,0,0,1021,1022, - 5,116,0,0,1022,1023,5,64,0,0,1023,1024,3,86,43,0,1024,123,1,0,0, - 0,1025,1026,5,438,0,0,1026,1027,5,404,0,0,1027,1028,3,56,28,0,1028, - 125,1,0,0,0,1029,1030,5,242,0,0,1030,1031,5,125,0,0,1031,127,1,0, - 0,0,1032,1033,5,8,0,0,1033,1034,5,502,0,0,1034,1038,3,342,171,0, - 1035,1039,3,116,58,0,1036,1037,5,17,0,0,1037,1039,3,160,80,0,1038, - 1035,1,0,0,0,1038,1036,1,0,0,0,1039,129,1,0,0,0,1040,1041,5,8,0, - 0,1041,1042,5,448,0,0,1042,1043,3,334,167,0,1043,1044,3,118,59,0, - 1044,131,1,0,0,0,1045,1049,5,8,0,0,1046,1050,5,498,0,0,1047,1048, - 5,498,0,0,1048,1050,5,371,0,0,1049,1046,1,0,0,0,1049,1047,1,0,0, - 0,1049,1050,1,0,0,0,1050,1051,1,0,0,0,1051,1053,5,153,0,0,1052,1054, - 3,352,176,0,1053,1052,1,0,0,0,1053,1054,1,0,0,0,1054,1055,1,0,0, - 0,1055,1056,3,278,139,0,1056,1057,5,17,0,0,1057,1060,3,322,161,0, - 1058,1059,5,196,0,0,1059,1061,7,16,0,0,1060,1058,1,0,0,0,1060,1061, - 1,0,0,0,1061,133,1,0,0,0,1062,1063,5,116,0,0,1063,1065,5,442,0,0, - 1064,1066,3,352,176,0,1065,1064,1,0,0,0,1065,1066,1,0,0,0,1066,1067, - 1,0,0,0,1067,1068,3,330,165,0,1068,135,1,0,0,0,1069,1071,5,116,0, - 0,1070,1072,5,498,0,0,1071,1070,1,0,0,0,1071,1072,1,0,0,0,1072,1073, - 1,0,0,0,1073,1075,5,374,0,0,1074,1076,3,352,176,0,1075,1074,1,0, - 0,0,1075,1076,1,0,0,0,1076,1077,1,0,0,0,1077,1078,3,340,170,0,1078, - 137,1,0,0,0,1079,1080,5,116,0,0,1080,1082,5,448,0,0,1081,1083,3, - 352,176,0,1082,1081,1,0,0,0,1082,1083,1,0,0,0,1083,1084,1,0,0,0, - 1084,1086,3,334,167,0,1085,1087,7,17,0,0,1086,1085,1,0,0,0,1086, - 1087,1,0,0,0,1087,139,1,0,0,0,1088,1090,5,116,0,0,1089,1091,5,498, - 0,0,1090,1089,1,0,0,0,1090,1091,1,0,0,0,1091,1092,1,0,0,0,1092,1094, - 5,502,0,0,1093,1095,3,352,176,0,1094,1093,1,0,0,0,1094,1095,1,0, - 0,0,1095,1096,1,0,0,0,1096,1097,3,342,171,0,1097,141,1,0,0,0,1098, - 1102,5,116,0,0,1099,1103,5,498,0,0,1100,1101,5,498,0,0,1101,1103, - 5,371,0,0,1102,1099,1,0,0,0,1102,1100,1,0,0,0,1102,1103,1,0,0,0, - 1103,1104,1,0,0,0,1104,1106,5,153,0,0,1105,1107,3,352,176,0,1106, - 1105,1,0,0,0,1106,1107,1,0,0,0,1107,1108,1,0,0,0,1108,1109,3,278, - 139,0,1109,143,1,0,0,0,1110,1112,5,132,0,0,1111,1110,1,0,0,0,1111, - 1112,1,0,0,0,1112,1113,1,0,0,0,1113,1118,3,146,73,0,1114,1118,3, - 156,78,0,1115,1116,5,132,0,0,1116,1118,3,158,79,0,1117,1111,1,0, - 0,0,1117,1114,1,0,0,0,1117,1115,1,0,0,0,1118,145,1,0,0,0,1119,1120, - 5,177,0,0,1120,1121,7,18,0,0,1121,1130,3,340,170,0,1122,1124,3,148, - 74,0,1123,1122,1,0,0,0,1123,1124,1,0,0,0,1124,1126,1,0,0,0,1125, - 1127,3,56,28,0,1126,1125,1,0,0,0,1126,1127,1,0,0,0,1127,1128,1,0, - 0,0,1128,1131,3,160,80,0,1129,1131,3,150,75,0,1130,1123,1,0,0,0, - 1130,1129,1,0,0,0,1131,147,1,0,0,0,1132,1133,5,269,0,0,1133,1134, - 3,354,177,0,1134,149,1,0,0,0,1135,1136,5,415,0,0,1136,1141,3,152, - 76,0,1137,1138,5,521,0,0,1138,1140,3,152,76,0,1139,1137,1,0,0,0, - 1140,1143,1,0,0,0,1141,1139,1,0,0,0,1141,1142,1,0,0,0,1142,151,1, - 0,0,0,1143,1141,1,0,0,0,1144,1145,5,517,0,0,1145,1150,3,154,77,0, - 1146,1147,5,521,0,0,1147,1149,3,154,77,0,1148,1146,1,0,0,0,1149, - 1152,1,0,0,0,1150,1148,1,0,0,0,1150,1151,1,0,0,0,1151,1153,1,0,0, - 0,1152,1150,1,0,0,0,1153,1154,5,518,0,0,1154,153,1,0,0,0,1155,1158, - 3,372,186,0,1156,1158,3,272,136,0,1157,1155,1,0,0,0,1157,1156,1, - 0,0,0,1158,155,1,0,0,0,1159,1160,5,24,0,0,1160,1161,5,355,0,0,1161, - 1162,5,341,0,0,1162,1166,5,522,0,0,1163,1164,3,146,73,0,1164,1165, - 5,522,0,0,1165,1167,1,0,0,0,1166,1163,1,0,0,0,1167,1168,1,0,0,0, - 1168,1166,1,0,0,0,1168,1169,1,0,0,0,1169,1170,1,0,0,0,1170,1171, - 5,122,0,0,1171,157,1,0,0,0,1172,1173,5,355,0,0,1173,1174,5,341,0, - 0,1174,1178,5,24,0,0,1175,1176,3,146,73,0,1176,1177,5,522,0,0,1177, - 1179,1,0,0,0,1178,1175,1,0,0,0,1179,1180,1,0,0,0,1180,1178,1,0,0, - 0,1180,1181,1,0,0,0,1181,1182,1,0,0,0,1182,1183,5,122,0,0,1183,159, - 1,0,0,0,1184,1185,6,80,-1,0,1185,1208,3,162,81,0,1186,1187,3,164, - 82,0,1187,1188,3,160,80,5,1188,1208,1,0,0,0,1189,1190,5,517,0,0, - 1190,1191,3,160,80,0,1191,1192,5,518,0,0,1192,1208,1,0,0,0,1193, - 1195,3,172,86,0,1194,1196,3,232,116,0,1195,1194,1,0,0,0,1195,1196, - 1,0,0,0,1196,1198,1,0,0,0,1197,1199,3,236,118,0,1198,1197,1,0,0, - 0,1198,1199,1,0,0,0,1199,1208,1,0,0,0,1200,1202,3,170,85,0,1201, - 1203,3,232,116,0,1202,1201,1,0,0,0,1202,1203,1,0,0,0,1203,1205,1, - 0,0,0,1204,1206,3,236,118,0,1205,1204,1,0,0,0,1205,1206,1,0,0,0, - 1206,1208,1,0,0,0,1207,1184,1,0,0,0,1207,1186,1,0,0,0,1207,1189, - 1,0,0,0,1207,1193,1,0,0,0,1207,1200,1,0,0,0,1208,1223,1,0,0,0,1209, - 1210,10,3,0,0,1210,1212,7,19,0,0,1211,1213,5,5,0,0,1212,1211,1,0, - 0,0,1212,1213,1,0,0,0,1213,1214,1,0,0,0,1214,1216,3,160,80,0,1215, - 1217,3,232,116,0,1216,1215,1,0,0,0,1216,1217,1,0,0,0,1217,1219,1, - 0,0,0,1218,1220,3,236,118,0,1219,1218,1,0,0,0,1219,1220,1,0,0,0, - 1220,1222,1,0,0,0,1221,1209,1,0,0,0,1222,1225,1,0,0,0,1223,1221, - 1,0,0,0,1223,1224,1,0,0,0,1224,161,1,0,0,0,1225,1223,1,0,0,0,1226, - 1227,5,415,0,0,1227,1232,3,260,130,0,1228,1229,5,521,0,0,1229,1231, - 3,260,130,0,1230,1228,1,0,0,0,1231,1234,1,0,0,0,1232,1230,1,0,0, - 0,1232,1233,1,0,0,0,1233,163,1,0,0,0,1234,1232,1,0,0,0,1235,1236, - 5,434,0,0,1236,1241,3,166,83,0,1237,1238,5,521,0,0,1238,1240,3,166, - 83,0,1239,1237,1,0,0,0,1240,1243,1,0,0,0,1241,1239,1,0,0,0,1241, - 1242,1,0,0,0,1242,165,1,0,0,0,1243,1241,1,0,0,0,1244,1256,3,168, - 84,0,1245,1246,5,517,0,0,1246,1251,3,52,26,0,1247,1248,5,521,0,0, - 1248,1250,3,52,26,0,1249,1247,1,0,0,0,1250,1253,1,0,0,0,1251,1249, - 1,0,0,0,1251,1252,1,0,0,0,1252,1254,1,0,0,0,1253,1251,1,0,0,0,1254, - 1255,5,518,0,0,1255,1257,1,0,0,0,1256,1245,1,0,0,0,1256,1257,1,0, - 0,0,1257,1258,1,0,0,0,1258,1259,5,17,0,0,1259,1260,5,517,0,0,1260, - 1261,3,160,80,0,1261,1262,5,518,0,0,1262,167,1,0,0,0,1263,1264,3, - 322,161,0,1264,169,1,0,0,0,1265,1267,3,172,86,0,1266,1268,3,178, - 89,0,1267,1266,1,0,0,0,1267,1268,1,0,0,0,1268,1270,1,0,0,0,1269, - 1271,3,206,103,0,1270,1269,1,0,0,0,1270,1271,1,0,0,0,1271,1273,1, - 0,0,0,1272,1274,3,208,104,0,1273,1272,1,0,0,0,1273,1274,1,0,0,0, - 1274,1276,1,0,0,0,1275,1277,3,222,111,0,1276,1275,1,0,0,0,1276,1277, - 1,0,0,0,1277,1279,1,0,0,0,1278,1280,3,224,112,0,1279,1278,1,0,0, - 0,1279,1280,1,0,0,0,1280,1286,1,0,0,0,1281,1282,3,172,86,0,1282, - 1283,3,178,89,0,1283,1284,3,230,115,0,1284,1286,1,0,0,0,1285,1265, - 1,0,0,0,1285,1281,1,0,0,0,1286,171,1,0,0,0,1287,1289,5,337,0,0,1288, - 1290,3,382,191,0,1289,1288,1,0,0,0,1289,1290,1,0,0,0,1290,1300,1, - 0,0,0,1291,1301,5,528,0,0,1292,1297,3,174,87,0,1293,1294,5,521,0, - 0,1294,1296,3,174,87,0,1295,1293,1,0,0,0,1296,1299,1,0,0,0,1297, - 1295,1,0,0,0,1297,1298,1,0,0,0,1298,1301,1,0,0,0,1299,1297,1,0,0, - 0,1300,1291,1,0,0,0,1300,1292,1,0,0,0,1301,173,1,0,0,0,1302,1318, - 3,176,88,0,1303,1308,3,260,130,0,1304,1306,5,17,0,0,1305,1304,1, - 0,0,0,1305,1306,1,0,0,0,1306,1307,1,0,0,0,1307,1309,3,52,26,0,1308, - 1305,1,0,0,0,1308,1309,1,0,0,0,1309,1318,1,0,0,0,1310,1315,3,52, - 26,0,1311,1313,5,17,0,0,1312,1311,1,0,0,0,1312,1313,1,0,0,0,1313, - 1314,1,0,0,0,1314,1316,3,260,130,0,1315,1312,1,0,0,0,1315,1316,1, - 0,0,0,1316,1318,1,0,0,0,1317,1302,1,0,0,0,1317,1303,1,0,0,0,1317, - 1310,1,0,0,0,1318,175,1,0,0,0,1319,1320,3,274,137,0,1320,1321,5, - 263,0,0,1321,1322,3,228,114,0,1322,1323,5,17,0,0,1323,1324,3,322, - 161,0,1324,1332,1,0,0,0,1325,1326,3,274,137,0,1326,1327,5,263,0, - 0,1327,1328,3,314,157,0,1328,1329,5,17,0,0,1329,1330,3,322,161,0, - 1330,1332,1,0,0,0,1331,1319,1,0,0,0,1331,1325,1,0,0,0,1332,177,1, - 0,0,0,1333,1334,5,151,0,0,1334,1335,3,180,90,0,1335,179,1,0,0,0, - 1336,1337,6,90,-1,0,1337,1342,3,182,91,0,1338,1339,5,521,0,0,1339, - 1341,3,182,91,0,1340,1338,1,0,0,0,1341,1344,1,0,0,0,1342,1340,1, - 0,0,0,1342,1343,1,0,0,0,1343,1348,1,0,0,0,1344,1342,1,0,0,0,1345, - 1348,3,190,95,0,1346,1348,3,192,96,0,1347,1336,1,0,0,0,1347,1345, - 1,0,0,0,1347,1346,1,0,0,0,1348,1370,1,0,0,0,1349,1350,10,3,0,0,1350, - 1351,5,73,0,0,1351,1352,5,185,0,0,1352,1369,3,180,90,4,1353,1355, - 10,4,0,0,1354,1356,5,234,0,0,1355,1354,1,0,0,0,1355,1356,1,0,0,0, - 1356,1358,1,0,0,0,1357,1359,7,20,0,0,1358,1357,1,0,0,0,1358,1359, - 1,0,0,0,1359,1361,1,0,0,0,1360,1362,5,262,0,0,1361,1360,1,0,0,0, - 1361,1362,1,0,0,0,1362,1363,1,0,0,0,1363,1364,5,185,0,0,1364,1366, - 3,180,90,0,1365,1367,3,204,102,0,1366,1365,1,0,0,0,1366,1367,1,0, - 0,0,1367,1369,1,0,0,0,1368,1349,1,0,0,0,1368,1353,1,0,0,0,1369,1372, - 1,0,0,0,1370,1368,1,0,0,0,1370,1371,1,0,0,0,1371,181,1,0,0,0,1372, - 1370,1,0,0,0,1373,1375,3,184,92,0,1374,1376,3,312,156,0,1375,1374, - 1,0,0,0,1375,1376,1,0,0,0,1376,183,1,0,0,0,1377,1379,5,374,0,0,1378, - 1377,1,0,0,0,1378,1379,1,0,0,0,1379,1380,1,0,0,0,1380,1382,3,340, - 170,0,1381,1383,3,186,93,0,1382,1381,1,0,0,0,1382,1383,1,0,0,0,1383, - 1407,1,0,0,0,1384,1386,3,342,171,0,1385,1387,3,186,93,0,1386,1385, - 1,0,0,0,1386,1387,1,0,0,0,1387,1407,1,0,0,0,1388,1389,5,199,0,0, - 1389,1390,5,374,0,0,1390,1391,5,517,0,0,1391,1392,3,272,136,0,1392, - 1393,5,518,0,0,1393,1407,1,0,0,0,1394,1396,5,199,0,0,1395,1394,1, - 0,0,0,1395,1396,1,0,0,0,1396,1397,1,0,0,0,1397,1398,5,517,0,0,1398, - 1399,3,160,80,0,1399,1400,5,518,0,0,1400,1407,1,0,0,0,1401,1402, - 5,406,0,0,1402,1403,5,517,0,0,1403,1404,3,260,130,0,1404,1405,5, - 518,0,0,1405,1407,1,0,0,0,1406,1378,1,0,0,0,1406,1384,1,0,0,0,1406, - 1388,1,0,0,0,1406,1395,1,0,0,0,1406,1401,1,0,0,0,1407,185,1,0,0, - 0,1408,1409,5,146,0,0,1409,1410,5,372,0,0,1410,1411,5,17,0,0,1411, - 1412,5,250,0,0,1412,1413,3,188,94,0,1413,187,1,0,0,0,1414,1415,3, - 260,130,0,1415,189,1,0,0,0,1416,1417,5,517,0,0,1417,1418,3,150,75, - 0,1418,1419,5,518,0,0,1419,1420,3,312,156,0,1420,191,1,0,0,0,1421, - 1422,5,374,0,0,1422,1423,5,517,0,0,1423,1424,3,194,97,0,1424,1425, - 5,518,0,0,1425,193,1,0,0,0,1426,1427,3,196,98,0,1427,1428,5,517, - 0,0,1428,1433,3,198,99,0,1429,1430,5,521,0,0,1430,1432,3,198,99, - 0,1431,1429,1,0,0,0,1432,1435,1,0,0,0,1433,1431,1,0,0,0,1433,1434, - 1,0,0,0,1434,1436,1,0,0,0,1435,1433,1,0,0,0,1436,1437,5,518,0,0, - 1437,195,1,0,0,0,1438,1439,7,21,0,0,1439,197,1,0,0,0,1440,1441,5, - 374,0,0,1441,1456,3,220,110,0,1442,1456,3,202,101,0,1443,1456,3, - 300,150,0,1444,1445,5,447,0,0,1445,1446,5,537,0,0,1446,1447,5,374, - 0,0,1447,1456,3,220,110,0,1448,1449,5,499,0,0,1449,1450,5,537,0, - 0,1450,1456,3,202,101,0,1451,1452,3,200,100,0,1452,1453,5,537,0, - 0,1453,1454,3,300,150,0,1454,1456,1,0,0,0,1455,1440,1,0,0,0,1455, - 1442,1,0,0,0,1455,1443,1,0,0,0,1455,1444,1,0,0,0,1455,1448,1,0,0, - 0,1455,1451,1,0,0,0,1456,199,1,0,0,0,1457,1458,7,22,0,0,1458,201, - 1,0,0,0,1459,1460,5,452,0,0,1460,1461,5,517,0,0,1461,1462,3,52,26, - 0,1462,1463,5,518,0,0,1463,203,1,0,0,0,1464,1465,5,254,0,0,1465, - 1469,3,262,131,0,1466,1467,5,413,0,0,1467,1469,3,56,28,0,1468,1464, - 1,0,0,0,1468,1466,1,0,0,0,1469,205,1,0,0,0,1470,1471,5,431,0,0,1471, - 1472,3,262,131,0,1472,207,1,0,0,0,1473,1474,5,159,0,0,1474,1475, - 5,34,0,0,1475,1480,3,210,105,0,1476,1477,5,521,0,0,1477,1479,3,210, - 105,0,1478,1476,1,0,0,0,1479,1482,1,0,0,0,1480,1478,1,0,0,0,1480, - 1481,1,0,0,0,1481,209,1,0,0,0,1482,1480,1,0,0,0,1483,1524,3,52,26, - 0,1484,1524,3,216,108,0,1485,1486,5,517,0,0,1486,1524,5,518,0,0, - 1487,1488,5,517,0,0,1488,1493,3,260,130,0,1489,1490,5,521,0,0,1490, - 1492,3,260,130,0,1491,1489,1,0,0,0,1492,1495,1,0,0,0,1493,1491,1, - 0,0,0,1493,1494,1,0,0,0,1494,1496,1,0,0,0,1495,1493,1,0,0,0,1496, - 1497,5,518,0,0,1497,1524,1,0,0,0,1498,1499,3,214,107,0,1499,1500, - 5,517,0,0,1500,1505,3,260,130,0,1501,1502,5,521,0,0,1502,1504,3, - 260,130,0,1503,1501,1,0,0,0,1504,1507,1,0,0,0,1505,1503,1,0,0,0, - 1505,1506,1,0,0,0,1506,1508,1,0,0,0,1507,1505,1,0,0,0,1508,1509, - 5,518,0,0,1509,1524,1,0,0,0,1510,1511,3,212,106,0,1511,1512,5,517, - 0,0,1512,1517,3,210,105,0,1513,1514,5,521,0,0,1514,1516,3,210,105, - 0,1515,1513,1,0,0,0,1516,1519,1,0,0,0,1517,1515,1,0,0,0,1517,1518, - 1,0,0,0,1518,1520,1,0,0,0,1519,1517,1,0,0,0,1520,1521,5,518,0,0, - 1521,1524,1,0,0,0,1522,1524,3,260,130,0,1523,1483,1,0,0,0,1523,1484, - 1,0,0,0,1523,1485,1,0,0,0,1523,1487,1,0,0,0,1523,1498,1,0,0,0,1523, - 1510,1,0,0,0,1523,1522,1,0,0,0,1524,211,1,0,0,0,1525,1526,5,160, - 0,0,1526,1527,5,494,0,0,1527,213,1,0,0,0,1528,1529,7,23,0,0,1529, - 215,1,0,0,0,1530,1531,3,218,109,0,1531,1532,5,517,0,0,1532,1533, - 3,220,110,0,1533,1534,5,521,0,0,1534,1535,3,300,150,0,1535,1536, - 5,518,0,0,1536,217,1,0,0,0,1537,1538,7,24,0,0,1538,219,1,0,0,0,1539, - 1540,3,346,173,0,1540,221,1,0,0,0,1541,1542,5,163,0,0,1542,1543, - 3,262,131,0,1543,223,1,0,0,0,1544,1545,5,433,0,0,1545,1550,3,226, - 113,0,1546,1547,5,521,0,0,1547,1549,3,226,113,0,1548,1546,1,0,0, - 0,1549,1552,1,0,0,0,1550,1548,1,0,0,0,1550,1551,1,0,0,0,1551,225, - 1,0,0,0,1552,1550,1,0,0,0,1553,1554,3,314,157,0,1554,1555,5,17,0, - 0,1555,1556,3,228,114,0,1556,227,1,0,0,0,1557,1559,3,314,157,0,1558, - 1557,1,0,0,0,1558,1559,1,0,0,0,1559,1560,1,0,0,0,1560,1562,5,517, - 0,0,1561,1563,3,238,119,0,1562,1561,1,0,0,0,1562,1563,1,0,0,0,1563, - 1565,1,0,0,0,1564,1566,3,232,116,0,1565,1564,1,0,0,0,1565,1566,1, - 0,0,0,1566,1568,1,0,0,0,1567,1569,3,254,127,0,1568,1567,1,0,0,0, - 1568,1569,1,0,0,0,1569,1570,1,0,0,0,1570,1571,5,518,0,0,1571,229, - 1,0,0,0,1572,1573,5,214,0,0,1573,1575,5,517,0,0,1574,1576,3,238, - 119,0,1575,1574,1,0,0,0,1575,1576,1,0,0,0,1576,1578,1,0,0,0,1577, - 1579,3,232,116,0,1578,1577,1,0,0,0,1578,1579,1,0,0,0,1579,1581,1, - 0,0,0,1580,1582,3,242,121,0,1581,1580,1,0,0,0,1581,1582,1,0,0,0, - 1582,1584,1,0,0,0,1583,1585,3,248,124,0,1584,1583,1,0,0,0,1584,1585, - 1,0,0,0,1585,1587,1,0,0,0,1586,1588,3,250,125,0,1587,1586,1,0,0, - 0,1587,1588,1,0,0,0,1588,1590,1,0,0,0,1589,1591,3,244,122,0,1590, - 1589,1,0,0,0,1590,1591,1,0,0,0,1591,1592,1,0,0,0,1592,1593,3,252, - 126,0,1593,1598,5,518,0,0,1594,1596,5,17,0,0,1595,1594,1,0,0,0,1595, - 1596,1,0,0,0,1596,1597,1,0,0,0,1597,1599,3,322,161,0,1598,1595,1, - 0,0,0,1598,1599,1,0,0,0,1599,231,1,0,0,0,1600,1601,5,259,0,0,1601, - 1602,5,34,0,0,1602,1607,3,234,117,0,1603,1604,5,521,0,0,1604,1606, - 3,234,117,0,1605,1603,1,0,0,0,1606,1609,1,0,0,0,1607,1605,1,0,0, - 0,1607,1608,1,0,0,0,1608,233,1,0,0,0,1609,1607,1,0,0,0,1610,1612, - 3,52,26,0,1611,1613,7,25,0,0,1612,1611,1,0,0,0,1612,1613,1,0,0,0, - 1613,1616,1,0,0,0,1614,1615,5,477,0,0,1615,1617,7,26,0,0,1616,1614, - 1,0,0,0,1616,1617,1,0,0,0,1617,235,1,0,0,0,1618,1621,5,205,0,0,1619, - 1622,5,5,0,0,1620,1622,3,260,130,0,1621,1619,1,0,0,0,1621,1620,1, - 0,0,0,1622,237,1,0,0,0,1623,1624,5,269,0,0,1624,1627,5,34,0,0,1625, - 1628,3,52,26,0,1626,1628,3,274,137,0,1627,1625,1,0,0,0,1627,1626, - 1,0,0,0,1628,1636,1,0,0,0,1629,1632,5,521,0,0,1630,1633,3,52,26, - 0,1631,1633,3,274,137,0,1632,1630,1,0,0,0,1632,1631,1,0,0,0,1633, - 1635,1,0,0,0,1634,1629,1,0,0,0,1635,1638,1,0,0,0,1636,1634,1,0,0, - 0,1636,1637,1,0,0,0,1637,239,1,0,0,0,1638,1636,1,0,0,0,1639,1656, - 5,528,0,0,1640,1656,5,531,0,0,1641,1656,5,536,0,0,1642,1643,5,519, - 0,0,1643,1644,5,539,0,0,1644,1645,5,521,0,0,1645,1646,5,539,0,0, - 1646,1656,5,520,0,0,1647,1648,5,519,0,0,1648,1649,5,539,0,0,1649, - 1650,5,521,0,0,1650,1656,5,520,0,0,1651,1652,5,519,0,0,1652,1653, - 5,521,0,0,1653,1654,5,539,0,0,1654,1656,5,520,0,0,1655,1639,1,0, - 0,0,1655,1640,1,0,0,0,1655,1641,1,0,0,0,1655,1642,1,0,0,0,1655,1647, - 1,0,0,0,1655,1651,1,0,0,0,1656,241,1,0,0,0,1657,1658,5,216,0,0,1658, - 1663,3,174,87,0,1659,1660,5,521,0,0,1660,1662,3,174,87,0,1661,1659, - 1,0,0,0,1662,1665,1,0,0,0,1663,1661,1,0,0,0,1663,1664,1,0,0,0,1664, - 243,1,0,0,0,1665,1663,1,0,0,0,1666,1667,5,272,0,0,1667,1669,5,517, - 0,0,1668,1670,3,246,123,0,1669,1668,1,0,0,0,1670,1671,1,0,0,0,1671, - 1669,1,0,0,0,1671,1672,1,0,0,0,1672,1673,1,0,0,0,1673,1675,5,518, - 0,0,1674,1676,3,258,129,0,1675,1674,1,0,0,0,1675,1676,1,0,0,0,1676, - 245,1,0,0,0,1677,1679,3,324,162,0,1678,1680,3,240,120,0,1679,1678, - 1,0,0,0,1679,1680,1,0,0,0,1680,247,1,0,0,0,1681,1682,5,5,0,0,1682, - 1683,5,323,0,0,1683,1684,5,273,0,0,1684,1690,5,211,0,0,1685,1686, - 5,255,0,0,1686,1687,5,322,0,0,1687,1688,5,273,0,0,1688,1690,5,211, - 0,0,1689,1681,1,0,0,0,1689,1685,1,0,0,0,1690,249,1,0,0,0,1691,1692, - 5,439,0,0,1692,1693,5,211,0,0,1693,1694,5,344,0,0,1694,1695,5,479, - 0,0,1695,1696,5,468,0,0,1696,1716,5,322,0,0,1697,1698,5,439,0,0, - 1698,1699,5,211,0,0,1699,1700,5,344,0,0,1700,1701,5,389,0,0,1701, - 1702,5,238,0,0,1702,1716,5,322,0,0,1703,1704,5,439,0,0,1704,1705, - 5,211,0,0,1705,1706,5,344,0,0,1706,1707,5,389,0,0,1707,1708,5,468, - 0,0,1708,1716,3,324,162,0,1709,1710,5,439,0,0,1710,1711,5,211,0, - 0,1711,1712,5,344,0,0,1712,1713,5,389,0,0,1713,1714,5,458,0,0,1714, - 1716,3,324,162,0,1715,1691,1,0,0,0,1715,1697,1,0,0,0,1715,1703,1, - 0,0,0,1715,1709,1,0,0,0,1716,251,1,0,0,0,1717,1718,5,105,0,0,1718, - 1723,3,174,87,0,1719,1720,5,521,0,0,1720,1722,3,174,87,0,1721,1719, - 1,0,0,0,1722,1725,1,0,0,0,1723,1721,1,0,0,0,1723,1724,1,0,0,0,1724, - 253,1,0,0,0,1725,1723,1,0,0,0,1726,1727,5,293,0,0,1727,1728,5,27, - 0,0,1728,1729,3,300,150,0,1729,1730,3,256,128,0,1730,1736,1,0,0, - 0,1731,1732,5,323,0,0,1732,1733,5,27,0,0,1733,1734,5,539,0,0,1734, - 1736,3,256,128,0,1735,1726,1,0,0,0,1735,1731,1,0,0,0,1736,255,1, - 0,0,0,1737,1738,5,481,0,0,1738,1739,5,10,0,0,1739,1740,5,76,0,0, - 1740,1741,5,322,0,0,1741,257,1,0,0,0,1742,1743,5,435,0,0,1743,1744, - 3,300,150,0,1744,259,1,0,0,0,1745,1746,3,262,131,0,1746,261,1,0, - 0,0,1747,1748,6,131,-1,0,1748,1749,5,242,0,0,1749,1760,3,262,131, - 6,1750,1751,5,133,0,0,1751,1752,5,517,0,0,1752,1753,3,160,80,0,1753, - 1754,5,518,0,0,1754,1760,1,0,0,0,1755,1757,3,270,135,0,1756,1758, - 3,264,132,0,1757,1756,1,0,0,0,1757,1758,1,0,0,0,1758,1760,1,0,0, - 0,1759,1747,1,0,0,0,1759,1750,1,0,0,0,1759,1755,1,0,0,0,1760,1775, - 1,0,0,0,1761,1762,10,3,0,0,1762,1763,5,10,0,0,1763,1774,3,262,131, - 4,1764,1765,10,2,0,0,1765,1766,5,258,0,0,1766,1774,3,262,131,3,1767, - 1768,10,1,0,0,1768,1770,5,184,0,0,1769,1771,5,242,0,0,1770,1769, - 1,0,0,0,1770,1771,1,0,0,0,1771,1772,1,0,0,0,1772,1774,7,27,0,0,1773, - 1761,1,0,0,0,1773,1764,1,0,0,0,1773,1767,1,0,0,0,1774,1777,1,0,0, - 0,1775,1773,1,0,0,0,1775,1776,1,0,0,0,1776,263,1,0,0,0,1777,1775, - 1,0,0,0,1778,1780,5,242,0,0,1779,1778,1,0,0,0,1779,1780,1,0,0,0, - 1780,1781,1,0,0,0,1781,1783,5,27,0,0,1782,1784,7,28,0,0,1783,1782, - 1,0,0,0,1783,1784,1,0,0,0,1784,1785,1,0,0,0,1785,1786,3,270,135, - 0,1786,1787,5,10,0,0,1787,1788,3,270,135,0,1788,1853,1,0,0,0,1789, - 1791,5,242,0,0,1790,1789,1,0,0,0,1790,1791,1,0,0,0,1791,1792,1,0, - 0,0,1792,1793,5,170,0,0,1793,1794,5,517,0,0,1794,1799,3,260,130, - 0,1795,1796,5,521,0,0,1796,1798,3,260,130,0,1797,1795,1,0,0,0,1798, - 1801,1,0,0,0,1799,1797,1,0,0,0,1799,1800,1,0,0,0,1800,1802,1,0,0, - 0,1801,1799,1,0,0,0,1802,1803,5,518,0,0,1803,1853,1,0,0,0,1804,1806, - 5,242,0,0,1805,1804,1,0,0,0,1805,1806,1,0,0,0,1806,1807,1,0,0,0, - 1807,1808,5,170,0,0,1808,1809,5,517,0,0,1809,1810,3,160,80,0,1810, - 1811,5,518,0,0,1811,1853,1,0,0,0,1812,1813,5,133,0,0,1813,1814,5, - 517,0,0,1814,1815,3,160,80,0,1815,1816,5,518,0,0,1816,1853,1,0,0, - 0,1817,1819,5,242,0,0,1818,1817,1,0,0,0,1818,1819,1,0,0,0,1819,1820, - 1,0,0,0,1820,1821,5,319,0,0,1821,1853,3,270,135,0,1822,1853,3,268, - 134,0,1823,1825,5,184,0,0,1824,1826,5,242,0,0,1825,1824,1,0,0,0, - 1825,1826,1,0,0,0,1826,1827,1,0,0,0,1827,1853,7,27,0,0,1828,1830, - 5,184,0,0,1829,1831,5,242,0,0,1830,1829,1,0,0,0,1830,1831,1,0,0, - 0,1831,1832,1,0,0,0,1832,1833,5,113,0,0,1833,1834,5,151,0,0,1834, - 1853,3,270,135,0,1835,1837,5,242,0,0,1836,1835,1,0,0,0,1836,1837, - 1,0,0,0,1837,1838,1,0,0,0,1838,1839,5,343,0,0,1839,1840,5,389,0, - 0,1840,1843,3,270,135,0,1841,1842,5,127,0,0,1842,1844,3,376,188, - 0,1843,1841,1,0,0,0,1843,1844,1,0,0,0,1844,1853,1,0,0,0,1845,1846, - 5,184,0,0,1846,1850,5,186,0,0,1847,1851,5,414,0,0,1848,1851,5,13, - 0,0,1849,1851,3,322,161,0,1850,1847,1,0,0,0,1850,1848,1,0,0,0,1850, - 1849,1,0,0,0,1850,1851,1,0,0,0,1851,1853,1,0,0,0,1852,1779,1,0,0, - 0,1852,1790,1,0,0,0,1852,1805,1,0,0,0,1852,1812,1,0,0,0,1852,1818, - 1,0,0,0,1852,1822,1,0,0,0,1852,1823,1,0,0,0,1852,1828,1,0,0,0,1852, - 1836,1,0,0,0,1852,1845,1,0,0,0,1853,265,1,0,0,0,1854,1863,5,245, - 0,0,1855,1856,5,121,0,0,1856,1863,5,13,0,0,1857,1858,5,121,0,0,1858, - 1863,3,346,173,0,1859,1863,5,398,0,0,1860,1863,5,140,0,0,1861,1863, - 5,405,0,0,1862,1854,1,0,0,0,1862,1855,1,0,0,0,1862,1857,1,0,0,0, - 1862,1859,1,0,0,0,1862,1860,1,0,0,0,1862,1861,1,0,0,0,1863,267,1, - 0,0,0,1864,1866,5,242,0,0,1865,1864,1,0,0,0,1865,1866,1,0,0,0,1866, - 1867,1,0,0,0,1867,1868,5,203,0,0,1868,1882,7,29,0,0,1869,1870,5, - 517,0,0,1870,1883,5,518,0,0,1871,1872,5,517,0,0,1872,1877,3,260, - 130,0,1873,1874,5,521,0,0,1874,1876,3,260,130,0,1875,1873,1,0,0, - 0,1876,1879,1,0,0,0,1877,1875,1,0,0,0,1877,1878,1,0,0,0,1878,1880, - 1,0,0,0,1879,1877,1,0,0,0,1880,1881,5,518,0,0,1881,1883,1,0,0,0, - 1882,1869,1,0,0,0,1882,1871,1,0,0,0,1883,1894,1,0,0,0,1884,1886, - 5,242,0,0,1885,1884,1,0,0,0,1885,1886,1,0,0,0,1886,1887,1,0,0,0, - 1887,1888,5,203,0,0,1888,1891,3,270,135,0,1889,1890,5,127,0,0,1890, - 1892,3,376,188,0,1891,1889,1,0,0,0,1891,1892,1,0,0,0,1892,1894,1, - 0,0,0,1893,1865,1,0,0,0,1893,1885,1,0,0,0,1894,269,1,0,0,0,1895, - 1896,6,135,-1,0,1896,1900,3,274,137,0,1897,1898,7,30,0,0,1898,1900, - 3,270,135,7,1899,1895,1,0,0,0,1899,1897,1,0,0,0,1900,1922,1,0,0, - 0,1901,1902,10,6,0,0,1902,1903,7,31,0,0,1903,1921,3,270,135,7,1904, - 1905,10,5,0,0,1905,1906,7,32,0,0,1906,1921,3,270,135,6,1907,1908, - 10,4,0,0,1908,1909,5,512,0,0,1909,1921,3,270,135,5,1910,1911,10, - 3,0,0,1911,1912,5,513,0,0,1912,1921,3,270,135,4,1913,1914,10,2,0, - 0,1914,1915,5,511,0,0,1915,1921,3,270,135,3,1916,1917,10,1,0,0,1917, - 1918,3,364,182,0,1918,1919,3,270,135,2,1919,1921,1,0,0,0,1920,1901, - 1,0,0,0,1920,1904,1,0,0,0,1920,1907,1,0,0,0,1920,1910,1,0,0,0,1920, - 1913,1,0,0,0,1920,1916,1,0,0,0,1921,1924,1,0,0,0,1922,1920,1,0,0, - 0,1922,1923,1,0,0,0,1923,271,1,0,0,0,1924,1922,1,0,0,0,1925,1945, - 3,390,195,0,1926,1945,3,280,140,0,1927,1928,3,282,141,0,1928,1940, - 5,517,0,0,1929,1931,3,382,191,0,1930,1929,1,0,0,0,1930,1931,1,0, - 0,0,1931,1932,1,0,0,0,1932,1937,3,284,142,0,1933,1934,5,521,0,0, - 1934,1936,3,284,142,0,1935,1933,1,0,0,0,1936,1939,1,0,0,0,1937,1935, - 1,0,0,0,1937,1938,1,0,0,0,1938,1941,1,0,0,0,1939,1937,1,0,0,0,1940, - 1930,1,0,0,0,1940,1941,1,0,0,0,1941,1942,1,0,0,0,1942,1943,5,518, - 0,0,1943,1945,1,0,0,0,1944,1925,1,0,0,0,1944,1926,1,0,0,0,1944,1927, - 1,0,0,0,1945,273,1,0,0,0,1946,1947,6,137,-1,0,1947,1949,5,40,0,0, - 1948,1950,3,328,164,0,1949,1948,1,0,0,0,1950,1951,1,0,0,0,1951,1949, - 1,0,0,0,1951,1952,1,0,0,0,1952,1955,1,0,0,0,1953,1954,5,120,0,0, - 1954,1956,3,260,130,0,1955,1953,1,0,0,0,1955,1956,1,0,0,0,1956,1957, - 1,0,0,0,1957,1958,5,122,0,0,1958,2022,1,0,0,0,1959,1960,5,40,0,0, - 1960,1962,3,260,130,0,1961,1963,3,328,164,0,1962,1961,1,0,0,0,1963, - 1964,1,0,0,0,1964,1962,1,0,0,0,1964,1965,1,0,0,0,1965,1968,1,0,0, - 0,1966,1967,5,120,0,0,1967,1969,3,260,130,0,1968,1966,1,0,0,0,1968, - 1969,1,0,0,0,1969,1970,1,0,0,0,1970,1971,5,122,0,0,1971,2022,1,0, - 0,0,1972,1973,5,41,0,0,1973,1974,5,517,0,0,1974,1975,3,260,130,0, - 1975,1976,5,17,0,0,1976,1977,3,58,29,0,1977,1978,5,518,0,0,1978, - 2022,1,0,0,0,1979,1980,5,458,0,0,1980,1981,5,517,0,0,1981,1984,3, - 260,130,0,1982,1983,5,462,0,0,1983,1985,5,477,0,0,1984,1982,1,0, - 0,0,1984,1985,1,0,0,0,1985,1986,1,0,0,0,1986,1987,5,518,0,0,1987, - 2022,1,0,0,0,1988,1989,5,468,0,0,1989,1990,5,517,0,0,1990,1993,3, - 260,130,0,1991,1992,5,462,0,0,1992,1994,5,477,0,0,1993,1991,1,0, - 0,0,1993,1994,1,0,0,0,1994,1995,1,0,0,0,1995,1996,5,518,0,0,1996, - 2022,1,0,0,0,1997,1998,5,282,0,0,1998,1999,5,517,0,0,1999,2000,3, - 270,135,0,2000,2001,5,170,0,0,2001,2002,3,270,135,0,2002,2003,5, - 518,0,0,2003,2022,1,0,0,0,2004,2022,3,372,186,0,2005,2022,5,528, - 0,0,2006,2007,3,346,173,0,2007,2008,5,514,0,0,2008,2009,5,528,0, - 0,2009,2022,1,0,0,0,2010,2011,5,517,0,0,2011,2012,3,160,80,0,2012, - 2013,5,518,0,0,2013,2022,1,0,0,0,2014,2022,3,272,136,0,2015,2022, - 3,54,27,0,2016,2022,3,294,147,0,2017,2018,5,517,0,0,2018,2019,3, - 260,130,0,2019,2020,5,518,0,0,2020,2022,1,0,0,0,2021,1946,1,0,0, - 0,2021,1959,1,0,0,0,2021,1972,1,0,0,0,2021,1979,1,0,0,0,2021,1988, - 1,0,0,0,2021,1997,1,0,0,0,2021,2004,1,0,0,0,2021,2005,1,0,0,0,2021, - 2006,1,0,0,0,2021,2010,1,0,0,0,2021,2014,1,0,0,0,2021,2015,1,0,0, - 0,2021,2016,1,0,0,0,2021,2017,1,0,0,0,2022,2030,1,0,0,0,2023,2024, - 10,4,0,0,2024,2025,5,515,0,0,2025,2026,3,270,135,0,2026,2027,5,516, - 0,0,2027,2029,1,0,0,0,2028,2023,1,0,0,0,2029,2032,1,0,0,0,2030,2028, - 1,0,0,0,2030,2031,1,0,0,0,2031,275,1,0,0,0,2032,2030,1,0,0,0,2033, - 2034,3,346,173,0,2034,277,1,0,0,0,2035,2040,3,394,197,0,2036,2040, - 3,390,195,0,2037,2040,3,392,196,0,2038,2040,3,346,173,0,2039,2035, - 1,0,0,0,2039,2036,1,0,0,0,2039,2037,1,0,0,0,2039,2038,1,0,0,0,2040, - 279,1,0,0,0,2041,2042,3,392,196,0,2042,2043,5,538,0,0,2043,2046, - 1,0,0,0,2044,2046,3,300,150,0,2045,2041,1,0,0,0,2045,2044,1,0,0, - 0,2046,281,1,0,0,0,2047,2050,3,394,197,0,2048,2050,3,346,173,0,2049, - 2047,1,0,0,0,2049,2048,1,0,0,0,2050,283,1,0,0,0,2051,2060,3,388, - 194,0,2052,2060,3,386,193,0,2053,2060,3,384,192,0,2054,2060,3,260, - 130,0,2055,2060,3,286,143,0,2056,2060,3,288,144,0,2057,2060,3,290, - 145,0,2058,2060,3,292,146,0,2059,2051,1,0,0,0,2059,2052,1,0,0,0, - 2059,2053,1,0,0,0,2059,2054,1,0,0,0,2059,2055,1,0,0,0,2059,2056, - 1,0,0,0,2059,2057,1,0,0,0,2059,2058,1,0,0,0,2060,285,1,0,0,0,2061, - 2065,3,54,27,0,2062,2063,3,346,173,0,2063,2064,3,58,29,0,2064,2066, - 1,0,0,0,2065,2062,1,0,0,0,2065,2066,1,0,0,0,2066,2075,1,0,0,0,2067, - 2072,3,346,173,0,2068,2072,5,245,0,0,2069,2070,5,104,0,0,2070,2072, - 3,270,135,0,2071,2067,1,0,0,0,2071,2068,1,0,0,0,2071,2069,1,0,0, - 0,2072,2073,1,0,0,0,2073,2074,5,254,0,0,2074,2076,5,121,0,0,2075, - 2071,1,0,0,0,2075,2076,1,0,0,0,2076,2085,1,0,0,0,2077,2082,3,346, - 173,0,2078,2082,5,245,0,0,2079,2080,5,104,0,0,2080,2082,3,270,135, - 0,2081,2077,1,0,0,0,2081,2078,1,0,0,0,2081,2079,1,0,0,0,2082,2083, - 1,0,0,0,2083,2084,5,254,0,0,2084,2086,3,346,173,0,2085,2081,1,0, - 0,0,2085,2086,1,0,0,0,2086,287,1,0,0,0,2087,2099,3,54,27,0,2088, - 2094,5,436,0,0,2089,2091,5,434,0,0,2090,2092,3,346,173,0,2091,2090, - 1,0,0,0,2091,2092,1,0,0,0,2092,2094,1,0,0,0,2093,2088,1,0,0,0,2093, - 2089,1,0,0,0,2094,2096,1,0,0,0,2095,2097,5,13,0,0,2096,2095,1,0, - 0,0,2096,2097,1,0,0,0,2097,2098,1,0,0,0,2098,2100,3,346,173,0,2099, - 2093,1,0,0,0,2099,2100,1,0,0,0,2100,2105,1,0,0,0,2101,2102,3,266, - 133,0,2102,2103,5,254,0,0,2103,2104,5,121,0,0,2104,2106,1,0,0,0, - 2105,2101,1,0,0,0,2105,2106,1,0,0,0,2106,2111,1,0,0,0,2107,2108, - 3,266,133,0,2108,2109,5,254,0,0,2109,2110,3,346,173,0,2110,2112, - 1,0,0,0,2111,2107,1,0,0,0,2111,2112,1,0,0,0,2112,289,1,0,0,0,2113, - 2115,5,467,0,0,2114,2113,1,0,0,0,2114,2115,1,0,0,0,2115,2116,1,0, - 0,0,2116,2118,3,54,27,0,2117,2119,5,414,0,0,2118,2117,1,0,0,0,2118, - 2119,1,0,0,0,2119,2130,1,0,0,0,2120,2131,3,270,135,0,2121,2122,5, - 186,0,0,2122,2126,5,517,0,0,2123,2125,3,270,135,0,2124,2123,1,0, - 0,0,2125,2128,1,0,0,0,2126,2124,1,0,0,0,2126,2127,1,0,0,0,2127,2129, - 1,0,0,0,2128,2126,1,0,0,0,2129,2131,5,518,0,0,2130,2120,1,0,0,0, - 2130,2121,1,0,0,0,2131,2133,1,0,0,0,2132,2114,1,0,0,0,2133,2136, - 1,0,0,0,2134,2132,1,0,0,0,2134,2135,1,0,0,0,2135,2143,1,0,0,0,2136, - 2134,1,0,0,0,2137,2140,5,245,0,0,2138,2140,3,346,173,0,2139,2137, - 1,0,0,0,2139,2138,1,0,0,0,2140,2141,1,0,0,0,2141,2142,5,254,0,0, - 2142,2144,5,245,0,0,2143,2139,1,0,0,0,2143,2144,1,0,0,0,2144,291, - 1,0,0,0,2145,2147,3,270,135,0,2146,2145,1,0,0,0,2147,2150,1,0,0, - 0,2148,2146,1,0,0,0,2148,2149,1,0,0,0,2149,2157,1,0,0,0,2150,2148, - 1,0,0,0,2151,2154,5,245,0,0,2152,2154,3,346,173,0,2153,2151,1,0, - 0,0,2153,2152,1,0,0,0,2154,2155,1,0,0,0,2155,2156,5,254,0,0,2156, - 2158,5,245,0,0,2157,2153,1,0,0,0,2157,2158,1,0,0,0,2158,293,1,0, - 0,0,2159,2160,3,346,173,0,2160,295,1,0,0,0,2161,2162,3,322,161,0, - 2162,297,1,0,0,0,2163,2166,3,322,161,0,2164,2166,3,294,147,0,2165, - 2163,1,0,0,0,2165,2164,1,0,0,0,2166,299,1,0,0,0,2167,2170,5,182, - 0,0,2168,2171,3,302,151,0,2169,2171,3,306,153,0,2170,2168,1,0,0, - 0,2170,2169,1,0,0,0,2170,2171,1,0,0,0,2171,301,1,0,0,0,2172,2174, - 3,304,152,0,2173,2175,3,308,154,0,2174,2173,1,0,0,0,2174,2175,1, - 0,0,0,2175,303,1,0,0,0,2176,2177,3,310,155,0,2177,2178,3,386,193, - 0,2178,2180,1,0,0,0,2179,2176,1,0,0,0,2180,2181,1,0,0,0,2181,2179, - 1,0,0,0,2181,2182,1,0,0,0,2182,305,1,0,0,0,2183,2186,3,308,154,0, - 2184,2187,3,304,152,0,2185,2187,3,308,154,0,2186,2184,1,0,0,0,2186, - 2185,1,0,0,0,2186,2187,1,0,0,0,2187,307,1,0,0,0,2188,2189,3,310, - 155,0,2189,2190,3,386,193,0,2190,2191,5,389,0,0,2191,2192,3,386, - 193,0,2192,309,1,0,0,0,2193,2195,7,33,0,0,2194,2193,1,0,0,0,2194, - 2195,1,0,0,0,2195,2196,1,0,0,0,2196,2199,7,34,0,0,2197,2199,5,538, - 0,0,2198,2194,1,0,0,0,2198,2197,1,0,0,0,2199,311,1,0,0,0,2200,2202, - 5,17,0,0,2201,2200,1,0,0,0,2201,2202,1,0,0,0,2202,2203,1,0,0,0,2203, - 2205,3,322,161,0,2204,2206,3,318,159,0,2205,2204,1,0,0,0,2205,2206, - 1,0,0,0,2206,313,1,0,0,0,2207,2208,3,322,161,0,2208,2209,3,316,158, - 0,2209,315,1,0,0,0,2210,2211,5,222,0,0,2211,2213,3,322,161,0,2212, - 2210,1,0,0,0,2213,2214,1,0,0,0,2214,2212,1,0,0,0,2214,2215,1,0,0, - 0,2215,2218,1,0,0,0,2216,2218,1,0,0,0,2217,2212,1,0,0,0,2217,2216, - 1,0,0,0,2218,317,1,0,0,0,2219,2220,5,517,0,0,2220,2221,3,320,160, - 0,2221,2222,5,518,0,0,2222,319,1,0,0,0,2223,2228,3,322,161,0,2224, - 2225,5,521,0,0,2225,2227,3,322,161,0,2226,2224,1,0,0,0,2227,2230, - 1,0,0,0,2228,2226,1,0,0,0,2228,2229,1,0,0,0,2229,321,1,0,0,0,2230, - 2228,1,0,0,0,2231,2235,3,324,162,0,2232,2235,3,326,163,0,2233,2235, - 3,396,198,0,2234,2231,1,0,0,0,2234,2232,1,0,0,0,2234,2233,1,0,0, - 0,2235,323,1,0,0,0,2236,2237,7,35,0,0,2237,325,1,0,0,0,2238,2239, - 5,538,0,0,2239,327,1,0,0,0,2240,2241,5,429,0,0,2241,2242,3,260,130, - 0,2242,2243,5,377,0,0,2243,2244,3,260,130,0,2244,329,1,0,0,0,2245, - 2246,3,322,161,0,2246,331,1,0,0,0,2247,2248,3,322,161,0,2248,333, - 1,0,0,0,2249,2252,3,322,161,0,2250,2251,5,514,0,0,2251,2253,3,322, - 161,0,2252,2250,1,0,0,0,2252,2253,1,0,0,0,2253,335,1,0,0,0,2254, - 2257,3,322,161,0,2255,2256,5,514,0,0,2256,2258,3,322,161,0,2257, - 2255,1,0,0,0,2257,2258,1,0,0,0,2258,337,1,0,0,0,2259,2262,3,322, - 161,0,2260,2261,5,514,0,0,2261,2263,3,322,161,0,2262,2260,1,0,0, - 0,2262,2263,1,0,0,0,2263,2272,1,0,0,0,2264,2265,3,322,161,0,2265, - 2266,5,514,0,0,2266,2269,3,322,161,0,2267,2268,5,514,0,0,2268,2270, - 3,322,161,0,2269,2267,1,0,0,0,2269,2270,1,0,0,0,2270,2272,1,0,0, - 0,2271,2259,1,0,0,0,2271,2264,1,0,0,0,2272,339,1,0,0,0,2273,2276, - 3,322,161,0,2274,2275,5,514,0,0,2275,2277,3,322,161,0,2276,2274, - 1,0,0,0,2276,2277,1,0,0,0,2277,2286,1,0,0,0,2278,2279,3,322,161, - 0,2279,2280,5,514,0,0,2280,2283,3,322,161,0,2281,2282,5,514,0,0, - 2282,2284,3,322,161,0,2283,2281,1,0,0,0,2283,2284,1,0,0,0,2284,2286, - 1,0,0,0,2285,2273,1,0,0,0,2285,2278,1,0,0,0,2286,341,1,0,0,0,2287, - 2290,3,322,161,0,2288,2289,5,514,0,0,2289,2291,3,322,161,0,2290, - 2288,1,0,0,0,2290,2291,1,0,0,0,2291,2300,1,0,0,0,2292,2293,3,322, - 161,0,2293,2294,5,514,0,0,2294,2297,3,322,161,0,2295,2296,5,514, - 0,0,2296,2298,3,322,161,0,2297,2295,1,0,0,0,2297,2298,1,0,0,0,2298, - 2300,1,0,0,0,2299,2287,1,0,0,0,2299,2292,1,0,0,0,2300,343,1,0,0, - 0,2301,2304,3,322,161,0,2302,2303,5,514,0,0,2303,2305,3,322,161, - 0,2304,2302,1,0,0,0,2304,2305,1,0,0,0,2305,2314,1,0,0,0,2306,2307, - 3,322,161,0,2307,2308,5,514,0,0,2308,2311,3,322,161,0,2309,2310, - 5,514,0,0,2310,2312,3,322,161,0,2311,2309,1,0,0,0,2311,2312,1,0, - 0,0,2312,2314,1,0,0,0,2313,2301,1,0,0,0,2313,2306,1,0,0,0,2314,345, - 1,0,0,0,2315,2320,3,322,161,0,2316,2317,5,514,0,0,2317,2319,3,322, - 161,0,2318,2316,1,0,0,0,2319,2322,1,0,0,0,2320,2321,1,0,0,0,2320, - 2318,1,0,0,0,2321,347,1,0,0,0,2322,2320,1,0,0,0,2323,2324,5,434, - 0,0,2324,2325,3,354,177,0,2325,349,1,0,0,0,2326,2327,5,167,0,0,2327, - 2328,5,242,0,0,2328,2329,5,133,0,0,2329,351,1,0,0,0,2330,2331,5, - 167,0,0,2331,2332,5,133,0,0,2332,353,1,0,0,0,2333,2334,5,517,0,0, - 2334,2339,3,356,178,0,2335,2336,5,521,0,0,2336,2338,3,356,178,0, - 2337,2335,1,0,0,0,2338,2341,1,0,0,0,2339,2337,1,0,0,0,2339,2340, - 1,0,0,0,2340,2342,1,0,0,0,2341,2339,1,0,0,0,2342,2343,5,518,0,0, - 2343,355,1,0,0,0,2344,2349,3,358,179,0,2345,2347,5,506,0,0,2346, - 2345,1,0,0,0,2346,2347,1,0,0,0,2347,2348,1,0,0,0,2348,2350,3,360, - 180,0,2349,2346,1,0,0,0,2349,2350,1,0,0,0,2350,357,1,0,0,0,2351, - 2355,3,322,161,0,2352,2355,3,294,147,0,2353,2355,5,538,0,0,2354, - 2351,1,0,0,0,2354,2352,1,0,0,0,2354,2353,1,0,0,0,2355,359,1,0,0, - 0,2356,2361,5,539,0,0,2357,2361,5,540,0,0,2358,2361,3,380,190,0, - 2359,2361,5,538,0,0,2360,2356,1,0,0,0,2360,2357,1,0,0,0,2360,2358, - 1,0,0,0,2360,2359,1,0,0,0,2361,361,1,0,0,0,2362,2369,5,10,0,0,2363, - 2364,5,512,0,0,2364,2369,5,512,0,0,2365,2369,5,258,0,0,2366,2367, - 5,511,0,0,2367,2369,5,511,0,0,2368,2362,1,0,0,0,2368,2363,1,0,0, - 0,2368,2365,1,0,0,0,2368,2366,1,0,0,0,2369,363,1,0,0,0,2370,2385, - 5,506,0,0,2371,2385,5,507,0,0,2372,2385,5,508,0,0,2373,2374,5,508, - 0,0,2374,2385,5,506,0,0,2375,2376,5,507,0,0,2376,2385,5,506,0,0, - 2377,2378,5,508,0,0,2378,2385,5,507,0,0,2379,2380,5,509,0,0,2380, - 2385,5,506,0,0,2381,2382,5,508,0,0,2382,2383,5,506,0,0,2383,2385, - 5,507,0,0,2384,2370,1,0,0,0,2384,2371,1,0,0,0,2384,2372,1,0,0,0, - 2384,2373,1,0,0,0,2384,2375,1,0,0,0,2384,2377,1,0,0,0,2384,2379, - 1,0,0,0,2384,2381,1,0,0,0,2385,365,1,0,0,0,2386,2387,5,508,0,0,2387, - 2394,5,508,0,0,2388,2389,5,507,0,0,2389,2394,5,507,0,0,2390,2394, - 5,512,0,0,2391,2394,5,513,0,0,2392,2394,5,511,0,0,2393,2386,1,0, - 0,0,2393,2388,1,0,0,0,2393,2390,1,0,0,0,2393,2391,1,0,0,0,2393,2392, - 1,0,0,0,2394,367,1,0,0,0,2395,2396,7,36,0,0,2396,369,1,0,0,0,2397, - 2398,7,37,0,0,2398,371,1,0,0,0,2399,2414,3,300,150,0,2400,2414,3, - 374,187,0,2401,2414,3,376,188,0,2402,2404,5,530,0,0,2403,2402,1, - 0,0,0,2403,2404,1,0,0,0,2404,2405,1,0,0,0,2405,2414,3,378,189,0, - 2406,2414,3,380,190,0,2407,2414,5,540,0,0,2408,2414,5,541,0,0,2409, - 2411,5,242,0,0,2410,2409,1,0,0,0,2410,2411,1,0,0,0,2411,2412,1,0, - 0,0,2412,2414,5,245,0,0,2413,2399,1,0,0,0,2413,2400,1,0,0,0,2413, - 2401,1,0,0,0,2413,2403,1,0,0,0,2413,2406,1,0,0,0,2413,2407,1,0,0, - 0,2413,2408,1,0,0,0,2413,2410,1,0,0,0,2414,373,1,0,0,0,2415,2416, - 3,384,192,0,2416,2417,3,376,188,0,2417,375,1,0,0,0,2418,2419,5,538, - 0,0,2419,377,1,0,0,0,2420,2421,5,539,0,0,2421,379,1,0,0,0,2422,2423, - 7,38,0,0,2423,381,1,0,0,0,2424,2425,7,39,0,0,2425,383,1,0,0,0,2426, - 2427,7,40,0,0,2427,385,1,0,0,0,2428,2429,7,41,0,0,2429,387,1,0,0, - 0,2430,2431,7,42,0,0,2431,389,1,0,0,0,2432,2433,7,43,0,0,2433,391, - 1,0,0,0,2434,2435,7,44,0,0,2435,393,1,0,0,0,2436,2437,7,45,0,0,2437, - 395,1,0,0,0,2438,2439,7,46,0,0,2439,397,1,0,0,0,296,401,408,411, - 425,443,447,456,461,468,479,488,500,503,510,513,521,525,530,533, - 540,548,552,564,572,576,608,611,616,620,624,628,637,642,646,650, - 655,658,662,667,673,678,683,687,691,695,705,713,717,721,725,729, - 733,737,741,745,747,757,765,789,803,808,812,818,821,824,831,834, - 843,855,879,891,896,900,908,912,918,928,933,939,943,947,951,960, - 964,971,974,984,992,1000,1004,1019,1038,1049,1053,1060,1065,1071, - 1075,1082,1086,1090,1094,1102,1106,1111,1117,1123,1126,1130,1141, - 1150,1157,1168,1180,1195,1198,1202,1205,1207,1212,1216,1219,1223, - 1232,1241,1251,1256,1267,1270,1273,1276,1279,1285,1289,1297,1300, - 1305,1308,1312,1315,1317,1331,1342,1347,1355,1358,1361,1366,1368, - 1370,1375,1378,1382,1386,1395,1406,1433,1455,1468,1480,1493,1505, - 1517,1523,1550,1558,1562,1565,1568,1575,1578,1581,1584,1587,1590, - 1595,1598,1607,1612,1616,1621,1627,1632,1636,1655,1663,1671,1675, - 1679,1689,1715,1723,1735,1757,1759,1770,1773,1775,1779,1783,1790, - 1799,1805,1818,1825,1830,1836,1843,1850,1852,1862,1865,1877,1882, - 1885,1891,1893,1899,1920,1922,1930,1937,1940,1944,1951,1955,1964, - 1968,1984,1993,2021,2030,2039,2045,2049,2059,2065,2071,2075,2081, - 2085,2091,2093,2096,2099,2105,2111,2114,2118,2126,2130,2134,2139, - 2143,2148,2153,2157,2165,2170,2174,2181,2186,2194,2198,2201,2205, - 2214,2217,2228,2234,2252,2257,2262,2269,2271,2276,2283,2285,2290, - 2297,2299,2304,2311,2313,2320,2339,2346,2349,2354,2360,2368,2384, - 2393,2403,2410,2413 + 1,137,1,137,1,137,1,137,1,137,1,137,5,137,1952,8,137,10,137,12,137, + 1955,9,137,1,138,1,138,1,138,1,138,1,138,3,138,1962,8,138,1,138, + 1,138,1,138,5,138,1967,8,138,10,138,12,138,1970,9,138,3,138,1972, + 8,138,1,138,1,138,3,138,1976,8,138,1,139,1,139,1,139,4,139,1981, + 8,139,11,139,12,139,1982,1,139,1,139,3,139,1987,8,139,1,139,1,139, + 1,139,1,139,1,139,4,139,1994,8,139,11,139,12,139,1995,1,139,1,139, + 3,139,2000,8,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139, + 1,139,1,139,1,139,1,139,1,139,1,139,3,139,2016,8,139,1,139,1,139, + 1,139,1,139,1,139,1,139,1,139,3,139,2025,8,139,1,139,1,139,1,139, + 1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139, + 1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139, + 1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,3,139,2060,8,139, + 1,139,1,139,1,139,1,139,1,139,5,139,2067,8,139,10,139,12,139,2070, + 9,139,1,140,1,140,1,141,1,141,1,141,1,141,3,141,2078,8,141,1,142, + 1,142,1,142,1,142,3,142,2084,8,142,1,143,1,143,3,143,2088,8,143, + 1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,3,144,2098,8,144, + 1,145,1,145,1,145,1,145,3,145,2104,8,145,1,145,1,145,1,145,1,145, + 3,145,2110,8,145,1,145,1,145,3,145,2114,8,145,1,145,1,145,1,145, + 1,145,3,145,2120,8,145,1,145,1,145,3,145,2124,8,145,1,146,1,146, + 1,146,1,146,3,146,2130,8,146,3,146,2132,8,146,1,146,3,146,2135,8, + 146,1,146,3,146,2138,8,146,1,146,1,146,1,146,1,146,3,146,2144,8, + 146,1,146,1,146,1,146,1,146,3,146,2150,8,146,1,147,3,147,2153,8, + 147,1,147,1,147,3,147,2157,8,147,1,147,1,147,1,147,1,147,5,147,2163, + 8,147,10,147,12,147,2166,9,147,1,147,3,147,2169,8,147,5,147,2171, + 8,147,10,147,12,147,2174,9,147,1,147,1,147,3,147,2178,8,147,1,147, + 1,147,3,147,2182,8,147,1,148,5,148,2185,8,148,10,148,12,148,2188, + 9,148,1,148,1,148,3,148,2192,8,148,1,148,1,148,3,148,2196,8,148, + 1,149,1,149,1,150,1,150,1,151,1,151,3,151,2204,8,151,1,152,1,152, + 1,152,3,152,2209,8,152,1,153,1,153,3,153,2213,8,153,1,154,1,154, + 1,154,4,154,2218,8,154,11,154,12,154,2219,1,155,1,155,1,155,3,155, + 2225,8,155,1,156,1,156,1,156,1,156,1,156,1,157,3,157,2233,8,157, + 1,157,1,157,3,157,2237,8,157,1,158,3,158,2240,8,158,1,158,1,158, + 3,158,2244,8,158,1,159,1,159,1,159,1,160,1,160,4,160,2251,8,160, + 11,160,12,160,2252,1,160,3,160,2256,8,160,1,161,1,161,1,161,1,161, + 1,162,1,162,1,162,5,162,2265,8,162,10,162,12,162,2268,9,162,1,163, + 1,163,1,163,3,163,2273,8,163,1,164,1,164,1,165,1,165,1,166,1,166, + 1,166,1,166,1,166,1,167,1,167,1,168,1,168,1,169,1,169,1,169,3,169, + 2291,8,169,1,170,1,170,1,170,3,170,2296,8,170,1,171,1,171,1,171, + 3,171,2301,8,171,1,171,1,171,1,171,1,171,1,171,3,171,2308,8,171, + 3,171,2310,8,171,1,172,1,172,1,172,3,172,2315,8,172,1,172,1,172, + 1,172,1,172,1,172,3,172,2322,8,172,3,172,2324,8,172,1,173,1,173, + 1,173,3,173,2329,8,173,1,173,1,173,1,173,1,173,1,173,3,173,2336, + 8,173,3,173,2338,8,173,1,174,1,174,1,174,3,174,2343,8,174,1,174, + 1,174,1,174,1,174,1,174,3,174,2350,8,174,3,174,2352,8,174,1,175, + 1,175,1,175,5,175,2357,8,175,10,175,12,175,2360,9,175,1,176,1,176, + 1,176,1,177,1,177,1,177,1,177,1,178,1,178,1,178,1,179,1,179,1,179, + 1,179,5,179,2376,8,179,10,179,12,179,2379,9,179,1,179,1,179,1,180, + 1,180,3,180,2385,8,180,1,180,3,180,2388,8,180,1,181,1,181,1,181, + 3,181,2393,8,181,1,182,1,182,1,182,1,182,3,182,2399,8,182,1,183, + 1,183,1,183,1,183,1,183,1,183,3,183,2407,8,183,1,184,1,184,1,184, + 1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184, + 3,184,2423,8,184,1,185,1,185,1,185,1,185,1,185,1,185,1,185,3,185, + 2432,8,185,1,186,1,186,1,187,1,187,1,188,1,188,1,188,1,188,3,188, + 2442,8,188,1,188,1,188,1,188,1,188,1,188,3,188,2449,8,188,1,188, + 3,188,2452,8,188,1,189,1,189,1,189,1,190,1,190,1,191,1,191,1,192, + 1,192,1,193,1,193,1,194,1,194,1,195,1,195,1,196,1,196,1,197,1,197, + 1,198,1,198,1,199,1,199,1,200,1,200,1,200,1,2358,5,160,180,266,274, + 278,201,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40, + 42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84, + 86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120, + 122,124,126,128,130,132,134,136,138,140,142,144,146,148,150,152, + 154,156,158,160,162,164,166,168,170,172,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,278,280, + 282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312, + 314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344, + 346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376, + 378,380,382,384,386,388,390,392,394,396,398,400,0,48,2,0,109,109, + 453,453,3,0,45,45,128,128,190,190,4,0,42,42,90,90,425,425,467,467, + 2,0,444,444,450,450,2,0,152,152,171,171,2,0,440,440,492,492,2,0, + 485,488,490,490,3,0,32,32,91,91,246,246,11,0,28,29,35,35,46,46,92, + 92,179,180,346,346,362,362,380,380,383,383,389,389,419,420,2,0,436, + 436,438,438,4,0,101,102,115,115,144,144,248,248,2,0,13,13,233,233, + 2,0,458,458,465,465,3,0,5,5,272,272,447,447,3,0,268,268,458,458, + 465,465,3,0,428,428,461,461,480,480,3,0,332,332,468,468,484,484, + 2,0,443,443,493,493,2,0,184,184,267,267,3,0,130,130,181,181,405, + 405,4,0,153,153,175,175,203,203,319,319,3,0,448,448,462,462,502, + 502,4,0,252,252,449,449,497,499,501,501,2,0,74,74,322,322,3,0,462, + 462,495,495,502,502,2,0,442,442,453,453,2,0,460,460,470,470,2,0, + 294,294,324,324,4,0,140,140,246,246,399,399,407,407,2,0,19,19,371, + 371,2,0,5,5,11,11,2,0,512,512,532,533,4,0,455,455,530,530,534,534, + 537,537,2,0,532,533,535,535,1,0,532,533,1,0,541,542,2,0,541,541, + 544,544,4,0,455,455,530,530,532,534,536,537,3,0,243,243,511,512, + 532,533,2,0,140,140,399,399,2,0,5,5,113,113,10,0,97,97,166,166,224, + 224,231,231,336,336,439,439,473,473,475,475,491,491,505,505,15,0, + 97,97,166,166,224,224,231,231,336,336,430,430,439,439,445,445,451, + 452,457,457,463,463,473,478,491,491,494,494,505,506,11,0,5,5,13, + 13,33,33,78,78,84,85,113,113,202,202,209,210,391,391,416,416,530, + 530,3,0,78,78,84,85,209,210,2,0,91,91,380,381,53,0,4,4,13,13,23, + 23,38,38,41,41,43,44,54,54,56,56,69,69,75,75,98,99,107,107,119,119, + 134,134,139,139,143,143,145,145,161,161,166,166,168,168,188,189, + 191,196,199,199,201,201,203,203,207,207,211,211,216,216,222,222, + 224,225,231,231,245,245,247,247,266,266,278,278,283,283,285,285, + 295,295,319,319,323,325,336,336,359,360,366,366,369,369,382,382, + 397,397,400,401,411,411,422,423,439,439,472,472,491,491,505,505, + 1,0,440,507,2719,0,405,1,0,0,0,2,415,1,0,0,0,4,429,1,0,0,0,6,431, + 1,0,0,0,8,447,1,0,0,0,10,451,1,0,0,0,12,453,1,0,0,0,14,456,1,0,0, + 0,16,467,1,0,0,0,18,475,1,0,0,0,20,483,1,0,0,0,22,485,1,0,0,0,24, + 537,1,0,0,0,26,539,1,0,0,0,28,546,1,0,0,0,30,550,1,0,0,0,32,554, + 1,0,0,0,34,558,1,0,0,0,36,612,1,0,0,0,38,618,1,0,0,0,40,624,1,0, + 0,0,42,626,1,0,0,0,44,668,1,0,0,0,46,682,1,0,0,0,48,684,1,0,0,0, + 50,695,1,0,0,0,52,699,1,0,0,0,54,701,1,0,0,0,56,703,1,0,0,0,58,751, + 1,0,0,0,60,753,1,0,0,0,62,757,1,0,0,0,64,765,1,0,0,0,66,773,1,0, + 0,0,68,777,1,0,0,0,70,812,1,0,0,0,72,828,1,0,0,0,74,830,1,0,0,0, + 76,840,1,0,0,0,78,842,1,0,0,0,80,849,1,0,0,0,82,851,1,0,0,0,84,859, + 1,0,0,0,86,867,1,0,0,0,88,869,1,0,0,0,90,873,1,0,0,0,92,877,1,0, + 0,0,94,900,1,0,0,0,96,904,1,0,0,0,98,906,1,0,0,0,100,922,1,0,0,0, + 102,924,1,0,0,0,104,929,1,0,0,0,106,941,1,0,0,0,108,960,1,0,0,0, + 110,980,1,0,0,0,112,991,1,0,0,0,114,993,1,0,0,0,116,1006,1,0,0,0, + 118,1013,1,0,0,0,120,1016,1,0,0,0,122,1025,1,0,0,0,124,1029,1,0, + 0,0,126,1033,1,0,0,0,128,1036,1,0,0,0,130,1044,1,0,0,0,132,1049, + 1,0,0,0,134,1066,1,0,0,0,136,1073,1,0,0,0,138,1083,1,0,0,0,140,1092, + 1,0,0,0,142,1102,1,0,0,0,144,1121,1,0,0,0,146,1123,1,0,0,0,148,1136, + 1,0,0,0,150,1139,1,0,0,0,152,1148,1,0,0,0,154,1161,1,0,0,0,156,1163, + 1,0,0,0,158,1176,1,0,0,0,160,1211,1,0,0,0,162,1230,1,0,0,0,164,1239, + 1,0,0,0,166,1248,1,0,0,0,168,1267,1,0,0,0,170,1289,1,0,0,0,172,1291, + 1,0,0,0,174,1321,1,0,0,0,176,1337,1,0,0,0,178,1339,1,0,0,0,180,1353, + 1,0,0,0,182,1379,1,0,0,0,184,1412,1,0,0,0,186,1414,1,0,0,0,188,1420, + 1,0,0,0,190,1422,1,0,0,0,192,1427,1,0,0,0,194,1432,1,0,0,0,196,1444, + 1,0,0,0,198,1461,1,0,0,0,200,1463,1,0,0,0,202,1465,1,0,0,0,204,1474, + 1,0,0,0,206,1476,1,0,0,0,208,1479,1,0,0,0,210,1529,1,0,0,0,212,1531, + 1,0,0,0,214,1534,1,0,0,0,216,1536,1,0,0,0,218,1543,1,0,0,0,220,1545, + 1,0,0,0,222,1547,1,0,0,0,224,1550,1,0,0,0,226,1559,1,0,0,0,228,1564, + 1,0,0,0,230,1578,1,0,0,0,232,1606,1,0,0,0,234,1618,1,0,0,0,236,1627, + 1,0,0,0,238,1632,1,0,0,0,240,1664,1,0,0,0,242,1666,1,0,0,0,244,1675, + 1,0,0,0,246,1686,1,0,0,0,248,1698,1,0,0,0,250,1724,1,0,0,0,252,1726, + 1,0,0,0,254,1750,1,0,0,0,256,1752,1,0,0,0,258,1763,1,0,0,0,260,1771, + 1,0,0,0,262,1773,1,0,0,0,264,1776,1,0,0,0,266,1790,1,0,0,0,268,1883, + 1,0,0,0,270,1893,1,0,0,0,272,1924,1,0,0,0,274,1930,1,0,0,0,276,1975, + 1,0,0,0,278,2059,1,0,0,0,280,2071,1,0,0,0,282,2077,1,0,0,0,284,2083, + 1,0,0,0,286,2087,1,0,0,0,288,2097,1,0,0,0,290,2099,1,0,0,0,292,2125, + 1,0,0,0,294,2172,1,0,0,0,296,2186,1,0,0,0,298,2197,1,0,0,0,300,2199, + 1,0,0,0,302,2203,1,0,0,0,304,2205,1,0,0,0,306,2210,1,0,0,0,308,2217, + 1,0,0,0,310,2221,1,0,0,0,312,2226,1,0,0,0,314,2236,1,0,0,0,316,2239, + 1,0,0,0,318,2245,1,0,0,0,320,2255,1,0,0,0,322,2257,1,0,0,0,324,2261, + 1,0,0,0,326,2272,1,0,0,0,328,2274,1,0,0,0,330,2276,1,0,0,0,332,2278, + 1,0,0,0,334,2283,1,0,0,0,336,2285,1,0,0,0,338,2287,1,0,0,0,340,2292, + 1,0,0,0,342,2309,1,0,0,0,344,2323,1,0,0,0,346,2337,1,0,0,0,348,2351, + 1,0,0,0,350,2353,1,0,0,0,352,2361,1,0,0,0,354,2364,1,0,0,0,356,2368, + 1,0,0,0,358,2371,1,0,0,0,360,2382,1,0,0,0,362,2392,1,0,0,0,364,2398, + 1,0,0,0,366,2406,1,0,0,0,368,2422,1,0,0,0,370,2431,1,0,0,0,372,2433, + 1,0,0,0,374,2435,1,0,0,0,376,2451,1,0,0,0,378,2453,1,0,0,0,380,2456, + 1,0,0,0,382,2458,1,0,0,0,384,2460,1,0,0,0,386,2462,1,0,0,0,388,2464, + 1,0,0,0,390,2466,1,0,0,0,392,2468,1,0,0,0,394,2470,1,0,0,0,396,2472, + 1,0,0,0,398,2474,1,0,0,0,400,2476,1,0,0,0,402,404,3,2,1,0,403,402, + 1,0,0,0,404,407,1,0,0,0,405,403,1,0,0,0,405,406,1,0,0,0,406,408, + 1,0,0,0,407,405,1,0,0,0,408,409,5,0,0,1,409,1,1,0,0,0,410,412,3, + 4,2,0,411,413,5,524,0,0,412,411,1,0,0,0,412,413,1,0,0,0,413,416, + 1,0,0,0,414,416,3,6,3,0,415,410,1,0,0,0,415,414,1,0,0,0,416,3,1, + 0,0,0,417,430,3,8,4,0,418,430,3,10,5,0,419,430,3,12,6,0,420,430, + 3,14,7,0,421,430,3,20,10,0,422,430,3,24,12,0,423,430,3,26,13,0,424, + 430,3,28,14,0,425,430,3,30,15,0,426,430,3,32,16,0,427,430,3,34,17, + 0,428,430,3,36,18,0,429,417,1,0,0,0,429,418,1,0,0,0,429,419,1,0, + 0,0,429,420,1,0,0,0,429,421,1,0,0,0,429,422,1,0,0,0,429,423,1,0, + 0,0,429,424,1,0,0,0,429,425,1,0,0,0,429,426,1,0,0,0,429,427,1,0, + 0,0,429,428,1,0,0,0,430,5,1,0,0,0,431,432,5,524,0,0,432,7,1,0,0, + 0,433,448,3,40,20,0,434,448,3,104,52,0,435,448,3,106,53,0,436,448, + 3,108,54,0,437,448,3,102,51,0,438,448,3,114,57,0,439,448,3,128,64, + 0,440,448,3,130,65,0,441,448,3,132,66,0,442,448,3,134,67,0,443,448, + 3,136,68,0,444,448,3,138,69,0,445,448,3,140,70,0,446,448,3,142,71, + 0,447,433,1,0,0,0,447,434,1,0,0,0,447,435,1,0,0,0,447,436,1,0,0, + 0,447,437,1,0,0,0,447,438,1,0,0,0,447,439,1,0,0,0,447,440,1,0,0, + 0,447,441,1,0,0,0,447,442,1,0,0,0,447,443,1,0,0,0,447,444,1,0,0, + 0,447,445,1,0,0,0,447,446,1,0,0,0,448,9,1,0,0,0,449,452,3,160,80, + 0,450,452,3,144,72,0,451,449,1,0,0,0,451,450,1,0,0,0,452,11,1,0, + 0,0,453,454,7,0,0,0,454,455,3,344,172,0,455,13,1,0,0,0,456,460,5, + 135,0,0,457,461,3,16,8,0,458,459,5,482,0,0,459,461,5,147,0,0,460, + 457,1,0,0,0,460,458,1,0,0,0,460,461,1,0,0,0,461,465,1,0,0,0,462, + 466,3,10,5,0,463,466,3,146,73,0,464,466,3,158,79,0,465,462,1,0,0, + 0,465,463,1,0,0,0,465,464,1,0,0,0,466,15,1,0,0,0,467,472,3,18,9, + 0,468,469,5,523,0,0,469,471,3,18,9,0,470,468,1,0,0,0,471,474,1,0, + 0,0,472,470,1,0,0,0,472,473,1,0,0,0,473,17,1,0,0,0,474,472,1,0,0, + 0,475,476,7,1,0,0,476,19,1,0,0,0,477,478,5,413,0,0,478,479,5,444, + 0,0,479,484,3,334,167,0,480,481,5,413,0,0,481,484,3,338,169,0,482, + 484,3,22,11,0,483,477,1,0,0,0,483,480,1,0,0,0,483,482,1,0,0,0,484, + 21,1,0,0,0,485,486,5,413,0,0,486,487,5,229,0,0,487,492,3,350,175, + 0,488,489,5,523,0,0,489,491,3,350,175,0,490,488,1,0,0,0,491,494, + 1,0,0,0,492,490,1,0,0,0,492,493,1,0,0,0,493,23,1,0,0,0,494,492,1, + 0,0,0,495,496,5,343,0,0,496,538,7,2,0,0,497,498,5,343,0,0,498,499, + 5,76,0,0,499,538,7,3,0,0,500,501,5,343,0,0,501,504,5,376,0,0,502, + 503,7,4,0,0,503,505,3,338,169,0,504,502,1,0,0,0,504,505,1,0,0,0, + 505,507,1,0,0,0,506,508,3,272,136,0,507,506,1,0,0,0,507,508,1,0, + 0,0,508,538,1,0,0,0,509,510,5,343,0,0,510,511,5,58,0,0,511,514,7, + 4,0,0,512,515,3,346,173,0,513,515,3,344,172,0,514,512,1,0,0,0,514, + 513,1,0,0,0,515,517,1,0,0,0,516,518,3,272,136,0,517,516,1,0,0,0, + 517,518,1,0,0,0,518,538,1,0,0,0,519,520,5,343,0,0,520,525,5,72,0, + 0,521,522,5,375,0,0,522,526,3,344,172,0,523,524,5,504,0,0,524,526, + 3,346,173,0,525,521,1,0,0,0,525,523,1,0,0,0,526,538,1,0,0,0,527, + 529,5,343,0,0,528,530,5,414,0,0,529,528,1,0,0,0,529,530,1,0,0,0, + 530,531,1,0,0,0,531,538,5,155,0,0,532,534,5,343,0,0,533,535,5,153, + 0,0,534,533,1,0,0,0,534,535,1,0,0,0,535,536,1,0,0,0,536,538,5,229, + 0,0,537,495,1,0,0,0,537,497,1,0,0,0,537,500,1,0,0,0,537,509,1,0, + 0,0,537,519,1,0,0,0,537,527,1,0,0,0,537,532,1,0,0,0,538,25,1,0,0, + 0,539,540,5,471,0,0,540,541,5,228,0,0,541,544,3,350,175,0,542,543, + 5,436,0,0,543,545,3,358,179,0,544,542,1,0,0,0,544,545,1,0,0,0,545, + 27,1,0,0,0,546,547,5,503,0,0,547,548,5,228,0,0,548,549,3,350,175, + 0,549,29,1,0,0,0,550,552,5,342,0,0,551,553,3,360,180,0,552,551,1, + 0,0,0,552,553,1,0,0,0,553,31,1,0,0,0,554,556,5,314,0,0,555,557,3, + 362,181,0,556,555,1,0,0,0,556,557,1,0,0,0,557,33,1,0,0,0,558,559, + 7,5,0,0,559,560,5,466,0,0,560,561,3,112,56,0,561,35,1,0,0,0,562, + 563,5,440,0,0,563,564,5,466,0,0,564,565,5,436,0,0,565,568,3,38,19, + 0,566,567,5,17,0,0,567,569,3,350,175,0,568,566,1,0,0,0,568,569,1, + 0,0,0,569,613,1,0,0,0,570,571,5,440,0,0,571,572,5,459,0,0,572,573, + 5,436,0,0,573,576,3,38,19,0,574,575,5,17,0,0,575,577,3,350,175,0, + 576,574,1,0,0,0,576,577,1,0,0,0,577,580,1,0,0,0,578,579,5,313,0, + 0,579,581,3,350,175,0,580,578,1,0,0,0,580,581,1,0,0,0,581,613,1, + 0,0,0,582,583,5,440,0,0,583,584,7,6,0,0,584,585,5,436,0,0,585,586, + 3,38,19,0,586,587,5,313,0,0,587,588,3,350,175,0,588,613,1,0,0,0, + 589,590,5,440,0,0,590,591,5,489,0,0,591,613,3,38,19,0,592,593,5, + 440,0,0,593,594,5,456,0,0,594,595,5,459,0,0,595,596,5,436,0,0,596, + 597,3,38,19,0,597,598,5,313,0,0,598,599,3,350,175,0,599,600,5,469, + 0,0,600,601,3,350,175,0,601,613,1,0,0,0,602,603,5,440,0,0,603,604, + 5,446,0,0,604,605,5,459,0,0,605,606,5,436,0,0,606,607,3,38,19,0, + 607,608,5,147,0,0,608,609,3,350,175,0,609,610,5,17,0,0,610,611,3, + 350,175,0,611,613,1,0,0,0,612,562,1,0,0,0,612,570,1,0,0,0,612,582, + 1,0,0,0,612,589,1,0,0,0,612,592,1,0,0,0,612,602,1,0,0,0,613,37,1, + 0,0,0,614,616,5,537,0,0,615,614,1,0,0,0,615,616,1,0,0,0,616,617, + 1,0,0,0,617,619,3,350,175,0,618,615,1,0,0,0,619,620,1,0,0,0,620, + 618,1,0,0,0,620,621,1,0,0,0,621,39,1,0,0,0,622,625,3,42,21,0,623, + 625,3,44,22,0,624,622,1,0,0,0,624,623,1,0,0,0,625,41,1,0,0,0,626, + 628,5,72,0,0,627,629,5,500,0,0,628,627,1,0,0,0,628,629,1,0,0,0,629, + 630,1,0,0,0,630,632,5,375,0,0,631,633,3,354,177,0,632,631,1,0,0, + 0,632,633,1,0,0,0,633,634,1,0,0,0,634,635,3,342,171,0,635,636,5, + 519,0,0,636,641,3,46,23,0,637,638,5,523,0,0,638,640,3,46,23,0,639, + 637,1,0,0,0,640,643,1,0,0,0,641,639,1,0,0,0,641,642,1,0,0,0,642, + 646,1,0,0,0,643,641,1,0,0,0,644,645,5,523,0,0,645,647,3,82,41,0, + 646,644,1,0,0,0,646,647,1,0,0,0,647,650,1,0,0,0,648,649,5,523,0, + 0,649,651,3,84,42,0,650,648,1,0,0,0,650,651,1,0,0,0,651,654,1,0, + 0,0,652,653,5,523,0,0,653,655,3,88,44,0,654,652,1,0,0,0,654,655, + 1,0,0,0,655,656,1,0,0,0,656,659,5,520,0,0,657,658,5,59,0,0,658,660, + 5,540,0,0,659,657,1,0,0,0,659,660,1,0,0,0,660,662,1,0,0,0,661,663, + 3,90,45,0,662,661,1,0,0,0,662,663,1,0,0,0,663,664,1,0,0,0,664,666, + 3,352,176,0,665,667,3,98,49,0,666,665,1,0,0,0,666,667,1,0,0,0,667, + 43,1,0,0,0,668,669,5,72,0,0,669,671,5,375,0,0,670,672,3,354,177, + 0,671,670,1,0,0,0,671,672,1,0,0,0,672,673,1,0,0,0,673,674,3,342, + 171,0,674,677,3,352,176,0,675,676,5,17,0,0,676,678,3,160,80,0,677, + 675,1,0,0,0,677,678,1,0,0,0,678,45,1,0,0,0,679,683,3,48,24,0,680, + 683,3,74,37,0,681,683,3,78,39,0,682,679,1,0,0,0,682,680,1,0,0,0, + 682,681,1,0,0,0,683,47,1,0,0,0,684,685,3,50,25,0,685,687,3,58,29, + 0,686,688,3,72,36,0,687,686,1,0,0,0,687,688,1,0,0,0,688,691,1,0, + 0,0,689,690,5,59,0,0,690,692,5,540,0,0,691,689,1,0,0,0,691,692,1, + 0,0,0,692,49,1,0,0,0,693,696,3,350,175,0,694,696,3,264,132,0,695, + 693,1,0,0,0,695,694,1,0,0,0,696,51,1,0,0,0,697,700,3,350,175,0,698, + 700,4,26,0,0,699,697,1,0,0,0,699,698,1,0,0,0,700,53,1,0,0,0,701, + 702,3,350,175,0,702,55,1,0,0,0,703,704,5,519,0,0,704,709,3,52,26, + 0,705,706,5,523,0,0,706,708,3,52,26,0,707,705,1,0,0,0,708,711,1, + 0,0,0,709,707,1,0,0,0,709,710,1,0,0,0,710,712,1,0,0,0,711,709,1, + 0,0,0,712,713,5,520,0,0,713,57,1,0,0,0,714,752,7,7,0,0,715,717,7, + 8,0,0,716,718,3,60,30,0,717,716,1,0,0,0,717,718,1,0,0,0,718,752, + 1,0,0,0,719,721,5,381,0,0,720,722,3,60,30,0,721,720,1,0,0,0,721, + 722,1,0,0,0,722,729,1,0,0,0,723,725,7,9,0,0,724,726,5,208,0,0,725, + 724,1,0,0,0,725,726,1,0,0,0,726,727,1,0,0,0,727,728,5,380,0,0,728, + 730,5,507,0,0,729,723,1,0,0,0,729,730,1,0,0,0,730,752,1,0,0,0,731, + 733,7,10,0,0,732,734,3,62,31,0,733,732,1,0,0,0,733,734,1,0,0,0,734, + 752,1,0,0,0,735,737,7,11,0,0,736,738,3,66,33,0,737,736,1,0,0,0,737, + 738,1,0,0,0,738,752,1,0,0,0,739,741,5,472,0,0,740,742,3,68,34,0, + 741,740,1,0,0,0,741,742,1,0,0,0,742,752,1,0,0,0,743,745,5,323,0, + 0,744,746,3,70,35,0,745,744,1,0,0,0,745,746,1,0,0,0,746,752,1,0, + 0,0,747,749,5,296,0,0,748,750,3,64,32,0,749,748,1,0,0,0,749,750, + 1,0,0,0,750,752,1,0,0,0,751,714,1,0,0,0,751,715,1,0,0,0,751,719, + 1,0,0,0,751,731,1,0,0,0,751,735,1,0,0,0,751,739,1,0,0,0,751,743, + 1,0,0,0,751,747,1,0,0,0,752,59,1,0,0,0,753,754,5,519,0,0,754,755, + 3,382,191,0,755,756,5,520,0,0,756,61,1,0,0,0,757,758,5,519,0,0,758, + 761,3,382,191,0,759,760,5,523,0,0,760,762,3,382,191,0,761,759,1, + 0,0,0,761,762,1,0,0,0,762,763,1,0,0,0,763,764,5,520,0,0,764,63,1, + 0,0,0,765,766,5,519,0,0,766,769,3,380,190,0,767,768,5,523,0,0,768, + 770,3,380,190,0,769,767,1,0,0,0,769,770,1,0,0,0,770,771,1,0,0,0, + 771,772,5,520,0,0,772,65,1,0,0,0,773,774,5,510,0,0,774,775,3,58, + 29,0,775,776,5,509,0,0,776,67,1,0,0,0,777,778,5,510,0,0,778,779, + 3,58,29,0,779,780,5,523,0,0,780,781,3,58,29,0,781,782,1,0,0,0,782, + 783,5,509,0,0,783,69,1,0,0,0,784,785,5,510,0,0,785,786,3,52,26,0, + 786,793,3,58,29,0,787,788,5,523,0,0,788,789,3,52,26,0,789,790,3, + 58,29,0,790,792,1,0,0,0,791,787,1,0,0,0,792,795,1,0,0,0,793,791, + 1,0,0,0,793,794,1,0,0,0,794,796,1,0,0,0,795,793,1,0,0,0,796,797, + 5,509,0,0,797,813,1,0,0,0,798,799,5,519,0,0,799,800,3,52,26,0,800, + 807,3,58,29,0,801,802,5,523,0,0,802,803,3,52,26,0,803,804,3,58,29, + 0,804,806,1,0,0,0,805,801,1,0,0,0,806,809,1,0,0,0,807,805,1,0,0, + 0,807,808,1,0,0,0,808,810,1,0,0,0,809,807,1,0,0,0,810,811,5,520, + 0,0,811,813,1,0,0,0,812,784,1,0,0,0,812,798,1,0,0,0,813,71,1,0,0, + 0,814,815,5,64,0,0,815,817,3,86,43,0,816,814,1,0,0,0,816,817,1,0, + 0,0,817,818,1,0,0,0,818,819,5,290,0,0,819,822,5,469,0,0,820,821, + 5,243,0,0,821,823,5,125,0,0,822,820,1,0,0,0,822,823,1,0,0,0,823, + 829,1,0,0,0,824,826,5,243,0,0,825,824,1,0,0,0,825,826,1,0,0,0,826, + 827,1,0,0,0,827,829,5,246,0,0,828,816,1,0,0,0,828,825,1,0,0,0,829, + 73,1,0,0,0,830,831,3,50,25,0,831,832,3,58,29,0,832,835,5,220,0,0, + 833,834,5,152,0,0,834,836,3,76,38,0,835,833,1,0,0,0,835,836,1,0, + 0,0,836,838,1,0,0,0,837,839,5,426,0,0,838,837,1,0,0,0,838,839,1, + 0,0,0,839,75,1,0,0,0,840,841,5,540,0,0,841,77,1,0,0,0,842,843,3, + 50,25,0,843,844,5,17,0,0,844,847,3,80,40,0,845,846,5,59,0,0,846, + 848,5,540,0,0,847,845,1,0,0,0,847,848,1,0,0,0,848,79,1,0,0,0,849, + 850,3,264,132,0,850,81,1,0,0,0,851,852,5,427,0,0,852,853,5,147,0, + 0,853,854,3,52,26,0,854,855,5,17,0,0,855,856,3,264,132,0,856,83, + 1,0,0,0,857,858,5,64,0,0,858,860,3,86,43,0,859,857,1,0,0,0,859,860, + 1,0,0,0,860,861,1,0,0,0,861,862,5,290,0,0,862,863,5,469,0,0,863, + 864,3,56,28,0,864,865,5,243,0,0,865,866,5,125,0,0,866,85,1,0,0,0, + 867,868,3,326,163,0,868,87,1,0,0,0,869,870,5,279,0,0,870,871,5,147, + 0,0,871,872,5,373,0,0,872,89,1,0,0,0,873,874,5,271,0,0,874,875,5, + 34,0,0,875,876,3,92,46,0,876,91,1,0,0,0,877,878,5,519,0,0,878,883, + 3,94,47,0,879,880,5,523,0,0,880,882,3,94,47,0,881,879,1,0,0,0,882, + 885,1,0,0,0,883,881,1,0,0,0,883,884,1,0,0,0,884,886,1,0,0,0,885, + 883,1,0,0,0,886,887,5,520,0,0,887,93,1,0,0,0,888,901,3,52,26,0,889, + 890,5,519,0,0,890,895,3,96,48,0,891,892,5,523,0,0,892,894,3,96,48, + 0,893,891,1,0,0,0,894,897,1,0,0,0,895,893,1,0,0,0,895,896,1,0,0, + 0,896,898,1,0,0,0,897,895,1,0,0,0,898,899,5,520,0,0,899,901,1,0, + 0,0,900,888,1,0,0,0,900,889,1,0,0,0,901,95,1,0,0,0,902,905,3,302, + 151,0,903,905,3,376,188,0,904,902,1,0,0,0,904,903,1,0,0,0,905,97, + 1,0,0,0,906,907,5,204,0,0,907,916,3,344,172,0,908,912,5,519,0,0, + 909,911,3,100,50,0,910,909,1,0,0,0,911,914,1,0,0,0,912,910,1,0,0, + 0,912,913,1,0,0,0,913,915,1,0,0,0,914,912,1,0,0,0,915,917,5,520, + 0,0,916,908,1,0,0,0,916,917,1,0,0,0,917,99,1,0,0,0,918,919,7,12, + 0,0,919,923,7,13,0,0,920,921,7,14,0,0,921,923,7,15,0,0,922,918,1, + 0,0,0,922,920,1,0,0,0,923,101,1,0,0,0,924,925,5,72,0,0,925,926,5, + 444,0,0,926,927,3,336,168,0,927,928,3,352,176,0,928,103,1,0,0,0, + 929,930,5,72,0,0,930,932,5,450,0,0,931,933,3,354,177,0,932,931,1, + 0,0,0,932,933,1,0,0,0,933,934,1,0,0,0,934,937,3,340,170,0,935,936, + 5,59,0,0,936,938,5,540,0,0,937,935,1,0,0,0,937,938,1,0,0,0,938,939, + 1,0,0,0,939,940,3,352,176,0,940,105,1,0,0,0,941,943,5,72,0,0,942, + 944,5,500,0,0,943,942,1,0,0,0,943,944,1,0,0,0,944,945,1,0,0,0,945, + 947,5,504,0,0,946,948,3,354,177,0,947,946,1,0,0,0,947,948,1,0,0, + 0,948,949,1,0,0,0,949,951,3,348,174,0,950,952,3,56,28,0,951,950, + 1,0,0,0,951,952,1,0,0,0,952,955,1,0,0,0,953,954,5,59,0,0,954,956, + 5,540,0,0,955,953,1,0,0,0,955,956,1,0,0,0,956,957,1,0,0,0,957,958, + 5,17,0,0,958,959,3,160,80,0,959,107,1,0,0,0,960,964,5,72,0,0,961, + 965,5,500,0,0,962,963,5,500,0,0,963,965,5,372,0,0,964,961,1,0,0, + 0,964,962,1,0,0,0,964,965,1,0,0,0,965,966,1,0,0,0,966,968,5,154, + 0,0,967,969,3,354,177,0,968,967,1,0,0,0,968,969,1,0,0,0,969,970, + 1,0,0,0,970,971,3,280,140,0,971,972,5,17,0,0,972,975,3,326,163,0, + 973,974,5,197,0,0,974,976,7,16,0,0,975,973,1,0,0,0,975,976,1,0,0, + 0,976,978,1,0,0,0,977,979,3,110,55,0,978,977,1,0,0,0,978,979,1,0, + 0,0,979,109,1,0,0,0,980,981,5,415,0,0,981,982,5,466,0,0,982,988, + 3,112,56,0,983,984,5,523,0,0,984,985,5,466,0,0,985,987,3,112,56, + 0,986,983,1,0,0,0,987,990,1,0,0,0,988,986,1,0,0,0,988,989,1,0,0, + 0,989,111,1,0,0,0,990,988,1,0,0,0,991,992,5,540,0,0,992,113,1,0, + 0,0,993,994,5,8,0,0,994,996,5,375,0,0,995,997,3,356,178,0,996,995, + 1,0,0,0,996,997,1,0,0,0,997,998,1,0,0,0,998,1004,3,344,172,0,999, + 1005,3,116,58,0,1000,1005,3,118,59,0,1001,1005,3,120,60,0,1002,1005, + 3,122,61,0,1003,1005,3,124,62,0,1004,999,1,0,0,0,1004,1000,1,0,0, + 0,1004,1001,1,0,0,0,1004,1002,1,0,0,0,1004,1003,1,0,0,0,1005,115, + 1,0,0,0,1006,1008,5,313,0,0,1007,1009,3,350,175,0,1008,1007,1,0, + 0,0,1008,1009,1,0,0,0,1009,1010,1,0,0,0,1010,1011,5,390,0,0,1011, + 1012,3,350,175,0,1012,117,1,0,0,0,1013,1014,5,342,0,0,1014,1015, + 3,358,179,0,1015,119,1,0,0,0,1016,1017,5,440,0,0,1017,1018,5,64, + 0,0,1018,1019,3,86,43,0,1019,1020,5,290,0,0,1020,1021,5,469,0,0, + 1021,1023,3,56,28,0,1022,1024,3,126,63,0,1023,1022,1,0,0,0,1023, + 1024,1,0,0,0,1024,121,1,0,0,0,1025,1026,5,116,0,0,1026,1027,5,64, + 0,0,1027,1028,3,86,43,0,1028,123,1,0,0,0,1029,1030,5,440,0,0,1030, + 1031,5,406,0,0,1031,1032,3,56,28,0,1032,125,1,0,0,0,1033,1034,5, + 243,0,0,1034,1035,5,125,0,0,1035,127,1,0,0,0,1036,1037,5,8,0,0,1037, + 1038,5,504,0,0,1038,1042,3,346,173,0,1039,1043,3,116,58,0,1040,1041, + 5,17,0,0,1041,1043,3,160,80,0,1042,1039,1,0,0,0,1042,1040,1,0,0, + 0,1043,129,1,0,0,0,1044,1045,5,8,0,0,1045,1046,5,450,0,0,1046,1047, + 3,338,169,0,1047,1048,3,118,59,0,1048,131,1,0,0,0,1049,1053,5,8, + 0,0,1050,1054,5,500,0,0,1051,1052,5,500,0,0,1052,1054,5,372,0,0, + 1053,1050,1,0,0,0,1053,1051,1,0,0,0,1053,1054,1,0,0,0,1054,1055, + 1,0,0,0,1055,1057,5,154,0,0,1056,1058,3,356,178,0,1057,1056,1,0, + 0,0,1057,1058,1,0,0,0,1058,1059,1,0,0,0,1059,1060,3,282,141,0,1060, + 1061,5,17,0,0,1061,1064,3,326,163,0,1062,1063,5,197,0,0,1063,1065, + 7,16,0,0,1064,1062,1,0,0,0,1064,1065,1,0,0,0,1065,133,1,0,0,0,1066, + 1067,5,116,0,0,1067,1069,5,444,0,0,1068,1070,3,356,178,0,1069,1068, + 1,0,0,0,1069,1070,1,0,0,0,1070,1071,1,0,0,0,1071,1072,3,334,167, + 0,1072,135,1,0,0,0,1073,1075,5,116,0,0,1074,1076,5,500,0,0,1075, + 1074,1,0,0,0,1075,1076,1,0,0,0,1076,1077,1,0,0,0,1077,1079,5,375, + 0,0,1078,1080,3,356,178,0,1079,1078,1,0,0,0,1079,1080,1,0,0,0,1080, + 1081,1,0,0,0,1081,1082,3,344,172,0,1082,137,1,0,0,0,1083,1084,5, + 116,0,0,1084,1086,5,450,0,0,1085,1087,3,356,178,0,1086,1085,1,0, + 0,0,1086,1087,1,0,0,0,1087,1088,1,0,0,0,1088,1090,3,338,169,0,1089, + 1091,7,17,0,0,1090,1089,1,0,0,0,1090,1091,1,0,0,0,1091,139,1,0,0, + 0,1092,1094,5,116,0,0,1093,1095,5,500,0,0,1094,1093,1,0,0,0,1094, + 1095,1,0,0,0,1095,1096,1,0,0,0,1096,1098,5,504,0,0,1097,1099,3,356, + 178,0,1098,1097,1,0,0,0,1098,1099,1,0,0,0,1099,1100,1,0,0,0,1100, + 1101,3,346,173,0,1101,141,1,0,0,0,1102,1106,5,116,0,0,1103,1107, + 5,500,0,0,1104,1105,5,500,0,0,1105,1107,5,372,0,0,1106,1103,1,0, + 0,0,1106,1104,1,0,0,0,1106,1107,1,0,0,0,1107,1108,1,0,0,0,1108,1110, + 5,154,0,0,1109,1111,3,356,178,0,1110,1109,1,0,0,0,1110,1111,1,0, + 0,0,1111,1112,1,0,0,0,1112,1113,3,282,141,0,1113,143,1,0,0,0,1114, + 1116,5,132,0,0,1115,1114,1,0,0,0,1115,1116,1,0,0,0,1116,1117,1,0, + 0,0,1117,1122,3,146,73,0,1118,1122,3,156,78,0,1119,1120,5,132,0, + 0,1120,1122,3,158,79,0,1121,1115,1,0,0,0,1121,1118,1,0,0,0,1121, + 1119,1,0,0,0,1122,145,1,0,0,0,1123,1124,5,178,0,0,1124,1125,7,18, + 0,0,1125,1134,3,344,172,0,1126,1128,3,148,74,0,1127,1126,1,0,0,0, + 1127,1128,1,0,0,0,1128,1130,1,0,0,0,1129,1131,3,56,28,0,1130,1129, + 1,0,0,0,1130,1131,1,0,0,0,1131,1132,1,0,0,0,1132,1135,3,160,80,0, + 1133,1135,3,150,75,0,1134,1127,1,0,0,0,1134,1133,1,0,0,0,1135,147, + 1,0,0,0,1136,1137,5,270,0,0,1137,1138,3,358,179,0,1138,149,1,0,0, + 0,1139,1140,5,417,0,0,1140,1145,3,152,76,0,1141,1142,5,523,0,0,1142, + 1144,3,152,76,0,1143,1141,1,0,0,0,1144,1147,1,0,0,0,1145,1143,1, + 0,0,0,1145,1146,1,0,0,0,1146,151,1,0,0,0,1147,1145,1,0,0,0,1148, + 1149,5,519,0,0,1149,1154,3,154,77,0,1150,1151,5,523,0,0,1151,1153, + 3,154,77,0,1152,1150,1,0,0,0,1153,1156,1,0,0,0,1154,1152,1,0,0,0, + 1154,1155,1,0,0,0,1155,1157,1,0,0,0,1156,1154,1,0,0,0,1157,1158, + 5,520,0,0,1158,153,1,0,0,0,1159,1162,3,376,188,0,1160,1162,3,276, + 138,0,1161,1159,1,0,0,0,1161,1160,1,0,0,0,1162,155,1,0,0,0,1163, + 1164,5,24,0,0,1164,1165,5,356,0,0,1165,1166,5,342,0,0,1166,1170, + 5,524,0,0,1167,1168,3,146,73,0,1168,1169,5,524,0,0,1169,1171,1,0, + 0,0,1170,1167,1,0,0,0,1171,1172,1,0,0,0,1172,1170,1,0,0,0,1172,1173, + 1,0,0,0,1173,1174,1,0,0,0,1174,1175,5,122,0,0,1175,157,1,0,0,0,1176, + 1177,5,356,0,0,1177,1178,5,342,0,0,1178,1182,5,24,0,0,1179,1180, + 3,146,73,0,1180,1181,5,524,0,0,1181,1183,1,0,0,0,1182,1179,1,0,0, + 0,1183,1184,1,0,0,0,1184,1182,1,0,0,0,1184,1185,1,0,0,0,1185,1186, + 1,0,0,0,1186,1187,5,122,0,0,1187,159,1,0,0,0,1188,1189,6,80,-1,0, + 1189,1212,3,162,81,0,1190,1191,3,164,82,0,1191,1192,3,160,80,5,1192, + 1212,1,0,0,0,1193,1194,5,519,0,0,1194,1195,3,160,80,0,1195,1196, + 5,520,0,0,1196,1212,1,0,0,0,1197,1199,3,172,86,0,1198,1200,3,232, + 116,0,1199,1198,1,0,0,0,1199,1200,1,0,0,0,1200,1202,1,0,0,0,1201, + 1203,3,236,118,0,1202,1201,1,0,0,0,1202,1203,1,0,0,0,1203,1212,1, + 0,0,0,1204,1206,3,170,85,0,1205,1207,3,232,116,0,1206,1205,1,0,0, + 0,1206,1207,1,0,0,0,1207,1209,1,0,0,0,1208,1210,3,236,118,0,1209, + 1208,1,0,0,0,1209,1210,1,0,0,0,1210,1212,1,0,0,0,1211,1188,1,0,0, + 0,1211,1190,1,0,0,0,1211,1193,1,0,0,0,1211,1197,1,0,0,0,1211,1204, + 1,0,0,0,1212,1227,1,0,0,0,1213,1214,10,3,0,0,1214,1216,7,19,0,0, + 1215,1217,5,5,0,0,1216,1215,1,0,0,0,1216,1217,1,0,0,0,1217,1218, + 1,0,0,0,1218,1220,3,160,80,0,1219,1221,3,232,116,0,1220,1219,1,0, + 0,0,1220,1221,1,0,0,0,1221,1223,1,0,0,0,1222,1224,3,236,118,0,1223, + 1222,1,0,0,0,1223,1224,1,0,0,0,1224,1226,1,0,0,0,1225,1213,1,0,0, + 0,1226,1229,1,0,0,0,1227,1225,1,0,0,0,1227,1228,1,0,0,0,1228,161, + 1,0,0,0,1229,1227,1,0,0,0,1230,1231,5,417,0,0,1231,1236,3,264,132, + 0,1232,1233,5,523,0,0,1233,1235,3,264,132,0,1234,1232,1,0,0,0,1235, + 1238,1,0,0,0,1236,1234,1,0,0,0,1236,1237,1,0,0,0,1237,163,1,0,0, + 0,1238,1236,1,0,0,0,1239,1240,5,436,0,0,1240,1245,3,166,83,0,1241, + 1242,5,523,0,0,1242,1244,3,166,83,0,1243,1241,1,0,0,0,1244,1247, + 1,0,0,0,1245,1243,1,0,0,0,1245,1246,1,0,0,0,1246,165,1,0,0,0,1247, + 1245,1,0,0,0,1248,1260,3,168,84,0,1249,1250,5,519,0,0,1250,1255, + 3,52,26,0,1251,1252,5,523,0,0,1252,1254,3,52,26,0,1253,1251,1,0, + 0,0,1254,1257,1,0,0,0,1255,1253,1,0,0,0,1255,1256,1,0,0,0,1256,1258, + 1,0,0,0,1257,1255,1,0,0,0,1258,1259,5,520,0,0,1259,1261,1,0,0,0, + 1260,1249,1,0,0,0,1260,1261,1,0,0,0,1261,1262,1,0,0,0,1262,1263, + 5,17,0,0,1263,1264,5,519,0,0,1264,1265,3,160,80,0,1265,1266,5,520, + 0,0,1266,167,1,0,0,0,1267,1268,3,326,163,0,1268,169,1,0,0,0,1269, + 1271,3,172,86,0,1270,1272,3,178,89,0,1271,1270,1,0,0,0,1271,1272, + 1,0,0,0,1272,1274,1,0,0,0,1273,1275,3,206,103,0,1274,1273,1,0,0, + 0,1274,1275,1,0,0,0,1275,1277,1,0,0,0,1276,1278,3,208,104,0,1277, + 1276,1,0,0,0,1277,1278,1,0,0,0,1278,1280,1,0,0,0,1279,1281,3,222, + 111,0,1280,1279,1,0,0,0,1280,1281,1,0,0,0,1281,1283,1,0,0,0,1282, + 1284,3,224,112,0,1283,1282,1,0,0,0,1283,1284,1,0,0,0,1284,1290,1, + 0,0,0,1285,1286,3,172,86,0,1286,1287,3,178,89,0,1287,1288,3,230, + 115,0,1288,1290,1,0,0,0,1289,1269,1,0,0,0,1289,1285,1,0,0,0,1290, + 171,1,0,0,0,1291,1293,5,338,0,0,1292,1294,3,386,193,0,1293,1292, + 1,0,0,0,1293,1294,1,0,0,0,1294,1304,1,0,0,0,1295,1305,5,530,0,0, + 1296,1301,3,174,87,0,1297,1298,5,523,0,0,1298,1300,3,174,87,0,1299, + 1297,1,0,0,0,1300,1303,1,0,0,0,1301,1299,1,0,0,0,1301,1302,1,0,0, + 0,1302,1305,1,0,0,0,1303,1301,1,0,0,0,1304,1295,1,0,0,0,1304,1296, + 1,0,0,0,1305,173,1,0,0,0,1306,1322,3,176,88,0,1307,1312,3,264,132, + 0,1308,1310,5,17,0,0,1309,1308,1,0,0,0,1309,1310,1,0,0,0,1310,1311, + 1,0,0,0,1311,1313,3,52,26,0,1312,1309,1,0,0,0,1312,1313,1,0,0,0, + 1313,1322,1,0,0,0,1314,1319,3,52,26,0,1315,1317,5,17,0,0,1316,1315, + 1,0,0,0,1316,1317,1,0,0,0,1317,1318,1,0,0,0,1318,1320,3,264,132, + 0,1319,1316,1,0,0,0,1319,1320,1,0,0,0,1320,1322,1,0,0,0,1321,1306, + 1,0,0,0,1321,1307,1,0,0,0,1321,1314,1,0,0,0,1322,175,1,0,0,0,1323, + 1324,3,278,139,0,1324,1325,5,264,0,0,1325,1328,3,228,114,0,1326, + 1327,5,17,0,0,1327,1329,3,326,163,0,1328,1326,1,0,0,0,1328,1329, + 1,0,0,0,1329,1338,1,0,0,0,1330,1331,3,278,139,0,1331,1332,5,264, + 0,0,1332,1335,3,318,159,0,1333,1334,5,17,0,0,1334,1336,3,326,163, + 0,1335,1333,1,0,0,0,1335,1336,1,0,0,0,1336,1338,1,0,0,0,1337,1323, + 1,0,0,0,1337,1330,1,0,0,0,1338,177,1,0,0,0,1339,1340,5,152,0,0,1340, + 1341,3,180,90,0,1341,179,1,0,0,0,1342,1343,6,90,-1,0,1343,1348,3, + 182,91,0,1344,1345,5,523,0,0,1345,1347,3,182,91,0,1346,1344,1,0, + 0,0,1347,1350,1,0,0,0,1348,1346,1,0,0,0,1348,1349,1,0,0,0,1349,1354, + 1,0,0,0,1350,1348,1,0,0,0,1351,1354,3,190,95,0,1352,1354,3,192,96, + 0,1353,1342,1,0,0,0,1353,1351,1,0,0,0,1353,1352,1,0,0,0,1354,1376, + 1,0,0,0,1355,1356,10,3,0,0,1356,1357,5,73,0,0,1357,1358,5,186,0, + 0,1358,1375,3,180,90,4,1359,1361,10,4,0,0,1360,1362,5,235,0,0,1361, + 1360,1,0,0,0,1361,1362,1,0,0,0,1362,1364,1,0,0,0,1363,1365,7,20, + 0,0,1364,1363,1,0,0,0,1364,1365,1,0,0,0,1365,1367,1,0,0,0,1366,1368, + 5,263,0,0,1367,1366,1,0,0,0,1367,1368,1,0,0,0,1368,1369,1,0,0,0, + 1369,1370,5,186,0,0,1370,1372,3,180,90,0,1371,1373,3,204,102,0,1372, + 1371,1,0,0,0,1372,1373,1,0,0,0,1373,1375,1,0,0,0,1374,1355,1,0,0, + 0,1374,1359,1,0,0,0,1375,1378,1,0,0,0,1376,1374,1,0,0,0,1376,1377, + 1,0,0,0,1377,181,1,0,0,0,1378,1376,1,0,0,0,1379,1381,3,184,92,0, + 1380,1382,3,316,158,0,1381,1380,1,0,0,0,1381,1382,1,0,0,0,1382,183, + 1,0,0,0,1383,1385,5,375,0,0,1384,1383,1,0,0,0,1384,1385,1,0,0,0, + 1385,1386,1,0,0,0,1386,1388,3,344,172,0,1387,1389,3,186,93,0,1388, + 1387,1,0,0,0,1388,1389,1,0,0,0,1389,1413,1,0,0,0,1390,1392,3,346, + 173,0,1391,1393,3,186,93,0,1392,1391,1,0,0,0,1392,1393,1,0,0,0,1393, + 1413,1,0,0,0,1394,1395,5,200,0,0,1395,1396,5,375,0,0,1396,1397,5, + 519,0,0,1397,1398,3,276,138,0,1398,1399,5,520,0,0,1399,1413,1,0, + 0,0,1400,1402,5,200,0,0,1401,1400,1,0,0,0,1401,1402,1,0,0,0,1402, + 1403,1,0,0,0,1403,1404,5,519,0,0,1404,1405,3,160,80,0,1405,1406, + 5,520,0,0,1406,1413,1,0,0,0,1407,1408,5,408,0,0,1408,1409,5,519, + 0,0,1409,1410,3,264,132,0,1410,1411,5,520,0,0,1411,1413,1,0,0,0, + 1412,1384,1,0,0,0,1412,1390,1,0,0,0,1412,1394,1,0,0,0,1412,1401, + 1,0,0,0,1412,1407,1,0,0,0,1413,185,1,0,0,0,1414,1415,5,147,0,0,1415, + 1416,5,373,0,0,1416,1417,5,17,0,0,1417,1418,5,251,0,0,1418,1419, + 3,188,94,0,1419,187,1,0,0,0,1420,1421,3,264,132,0,1421,189,1,0,0, + 0,1422,1423,5,519,0,0,1423,1424,3,150,75,0,1424,1425,5,520,0,0,1425, + 1426,3,316,158,0,1426,191,1,0,0,0,1427,1428,5,375,0,0,1428,1429, + 5,519,0,0,1429,1430,3,194,97,0,1430,1431,5,520,0,0,1431,193,1,0, + 0,0,1432,1433,3,196,98,0,1433,1434,5,519,0,0,1434,1439,3,198,99, + 0,1435,1436,5,523,0,0,1436,1438,3,198,99,0,1437,1435,1,0,0,0,1438, + 1441,1,0,0,0,1439,1437,1,0,0,0,1439,1440,1,0,0,0,1440,1442,1,0,0, + 0,1441,1439,1,0,0,0,1442,1443,5,520,0,0,1443,195,1,0,0,0,1444,1445, + 7,21,0,0,1445,197,1,0,0,0,1446,1447,5,375,0,0,1447,1462,3,220,110, + 0,1448,1462,3,202,101,0,1449,1462,3,304,152,0,1450,1451,5,449,0, + 0,1451,1452,5,539,0,0,1452,1453,5,375,0,0,1453,1462,3,220,110,0, + 1454,1455,5,501,0,0,1455,1456,5,539,0,0,1456,1462,3,202,101,0,1457, + 1458,3,200,100,0,1458,1459,5,539,0,0,1459,1460,3,304,152,0,1460, + 1462,1,0,0,0,1461,1446,1,0,0,0,1461,1448,1,0,0,0,1461,1449,1,0,0, + 0,1461,1450,1,0,0,0,1461,1454,1,0,0,0,1461,1457,1,0,0,0,1462,199, + 1,0,0,0,1463,1464,7,22,0,0,1464,201,1,0,0,0,1465,1466,5,454,0,0, + 1466,1467,5,519,0,0,1467,1468,3,52,26,0,1468,1469,5,520,0,0,1469, + 203,1,0,0,0,1470,1471,5,255,0,0,1471,1475,3,266,133,0,1472,1473, + 5,415,0,0,1473,1475,3,56,28,0,1474,1470,1,0,0,0,1474,1472,1,0,0, + 0,1475,205,1,0,0,0,1476,1477,5,433,0,0,1477,1478,3,266,133,0,1478, + 207,1,0,0,0,1479,1480,5,160,0,0,1480,1481,5,34,0,0,1481,1486,3,210, + 105,0,1482,1483,5,523,0,0,1483,1485,3,210,105,0,1484,1482,1,0,0, + 0,1485,1488,1,0,0,0,1486,1484,1,0,0,0,1486,1487,1,0,0,0,1487,209, + 1,0,0,0,1488,1486,1,0,0,0,1489,1530,3,52,26,0,1490,1530,3,216,108, + 0,1491,1492,5,519,0,0,1492,1530,5,520,0,0,1493,1494,5,519,0,0,1494, + 1499,3,264,132,0,1495,1496,5,523,0,0,1496,1498,3,264,132,0,1497, + 1495,1,0,0,0,1498,1501,1,0,0,0,1499,1497,1,0,0,0,1499,1500,1,0,0, + 0,1500,1502,1,0,0,0,1501,1499,1,0,0,0,1502,1503,5,520,0,0,1503,1530, + 1,0,0,0,1504,1505,3,214,107,0,1505,1506,5,519,0,0,1506,1511,3,264, + 132,0,1507,1508,5,523,0,0,1508,1510,3,264,132,0,1509,1507,1,0,0, + 0,1510,1513,1,0,0,0,1511,1509,1,0,0,0,1511,1512,1,0,0,0,1512,1514, + 1,0,0,0,1513,1511,1,0,0,0,1514,1515,5,520,0,0,1515,1530,1,0,0,0, + 1516,1517,3,212,106,0,1517,1518,5,519,0,0,1518,1523,3,210,105,0, + 1519,1520,5,523,0,0,1520,1522,3,210,105,0,1521,1519,1,0,0,0,1522, + 1525,1,0,0,0,1523,1521,1,0,0,0,1523,1524,1,0,0,0,1524,1526,1,0,0, + 0,1525,1523,1,0,0,0,1526,1527,5,520,0,0,1527,1530,1,0,0,0,1528,1530, + 3,264,132,0,1529,1489,1,0,0,0,1529,1490,1,0,0,0,1529,1491,1,0,0, + 0,1529,1493,1,0,0,0,1529,1504,1,0,0,0,1529,1516,1,0,0,0,1529,1528, + 1,0,0,0,1530,211,1,0,0,0,1531,1532,5,161,0,0,1532,1533,5,496,0,0, + 1533,213,1,0,0,0,1534,1535,7,23,0,0,1535,215,1,0,0,0,1536,1537,3, + 218,109,0,1537,1538,5,519,0,0,1538,1539,3,220,110,0,1539,1540,5, + 523,0,0,1540,1541,3,304,152,0,1541,1542,5,520,0,0,1542,217,1,0,0, + 0,1543,1544,7,24,0,0,1544,219,1,0,0,0,1545,1546,3,350,175,0,1546, + 221,1,0,0,0,1547,1548,5,164,0,0,1548,1549,3,266,133,0,1549,223,1, + 0,0,0,1550,1551,5,435,0,0,1551,1556,3,226,113,0,1552,1553,5,523, + 0,0,1553,1555,3,226,113,0,1554,1552,1,0,0,0,1555,1558,1,0,0,0,1556, + 1554,1,0,0,0,1556,1557,1,0,0,0,1557,225,1,0,0,0,1558,1556,1,0,0, + 0,1559,1560,3,318,159,0,1560,1561,5,17,0,0,1561,1562,3,228,114,0, + 1562,227,1,0,0,0,1563,1565,3,318,159,0,1564,1563,1,0,0,0,1564,1565, + 1,0,0,0,1565,1566,1,0,0,0,1566,1568,5,519,0,0,1567,1569,3,238,119, + 0,1568,1567,1,0,0,0,1568,1569,1,0,0,0,1569,1571,1,0,0,0,1570,1572, + 3,232,116,0,1571,1570,1,0,0,0,1571,1572,1,0,0,0,1572,1574,1,0,0, + 0,1573,1575,3,254,127,0,1574,1573,1,0,0,0,1574,1575,1,0,0,0,1575, + 1576,1,0,0,0,1576,1577,5,520,0,0,1577,229,1,0,0,0,1578,1579,5,215, + 0,0,1579,1581,5,519,0,0,1580,1582,3,238,119,0,1581,1580,1,0,0,0, + 1581,1582,1,0,0,0,1582,1584,1,0,0,0,1583,1585,3,232,116,0,1584,1583, + 1,0,0,0,1584,1585,1,0,0,0,1585,1587,1,0,0,0,1586,1588,3,242,121, + 0,1587,1586,1,0,0,0,1587,1588,1,0,0,0,1588,1590,1,0,0,0,1589,1591, + 3,248,124,0,1590,1589,1,0,0,0,1590,1591,1,0,0,0,1591,1593,1,0,0, + 0,1592,1594,3,250,125,0,1593,1592,1,0,0,0,1593,1594,1,0,0,0,1594, + 1596,1,0,0,0,1595,1597,3,244,122,0,1596,1595,1,0,0,0,1596,1597,1, + 0,0,0,1597,1598,1,0,0,0,1598,1599,3,252,126,0,1599,1604,5,520,0, + 0,1600,1602,5,17,0,0,1601,1600,1,0,0,0,1601,1602,1,0,0,0,1602,1603, + 1,0,0,0,1603,1605,3,326,163,0,1604,1601,1,0,0,0,1604,1605,1,0,0, + 0,1605,231,1,0,0,0,1606,1607,5,260,0,0,1607,1608,5,34,0,0,1608,1613, + 3,234,117,0,1609,1610,5,523,0,0,1610,1612,3,234,117,0,1611,1609, + 1,0,0,0,1612,1615,1,0,0,0,1613,1611,1,0,0,0,1613,1614,1,0,0,0,1614, + 233,1,0,0,0,1615,1613,1,0,0,0,1616,1619,3,52,26,0,1617,1619,3,274, + 137,0,1618,1616,1,0,0,0,1618,1617,1,0,0,0,1619,1621,1,0,0,0,1620, + 1622,7,25,0,0,1621,1620,1,0,0,0,1621,1622,1,0,0,0,1622,1625,1,0, + 0,0,1623,1624,5,479,0,0,1624,1626,7,26,0,0,1625,1623,1,0,0,0,1625, + 1626,1,0,0,0,1626,235,1,0,0,0,1627,1630,5,206,0,0,1628,1631,5,5, + 0,0,1629,1631,3,264,132,0,1630,1628,1,0,0,0,1630,1629,1,0,0,0,1631, + 237,1,0,0,0,1632,1633,5,270,0,0,1633,1636,5,34,0,0,1634,1637,3,52, + 26,0,1635,1637,3,278,139,0,1636,1634,1,0,0,0,1636,1635,1,0,0,0,1637, + 1645,1,0,0,0,1638,1641,5,523,0,0,1639,1642,3,52,26,0,1640,1642,3, + 278,139,0,1641,1639,1,0,0,0,1641,1640,1,0,0,0,1642,1644,1,0,0,0, + 1643,1638,1,0,0,0,1644,1647,1,0,0,0,1645,1643,1,0,0,0,1645,1646, + 1,0,0,0,1646,239,1,0,0,0,1647,1645,1,0,0,0,1648,1665,5,530,0,0,1649, + 1665,5,533,0,0,1650,1665,5,538,0,0,1651,1652,5,521,0,0,1652,1653, + 5,541,0,0,1653,1654,5,523,0,0,1654,1655,5,541,0,0,1655,1665,5,522, + 0,0,1656,1657,5,521,0,0,1657,1658,5,541,0,0,1658,1659,5,523,0,0, + 1659,1665,5,522,0,0,1660,1661,5,521,0,0,1661,1662,5,523,0,0,1662, + 1663,5,541,0,0,1663,1665,5,522,0,0,1664,1648,1,0,0,0,1664,1649,1, + 0,0,0,1664,1650,1,0,0,0,1664,1651,1,0,0,0,1664,1656,1,0,0,0,1664, + 1660,1,0,0,0,1665,241,1,0,0,0,1666,1667,5,217,0,0,1667,1672,3,174, + 87,0,1668,1669,5,523,0,0,1669,1671,3,174,87,0,1670,1668,1,0,0,0, + 1671,1674,1,0,0,0,1672,1670,1,0,0,0,1672,1673,1,0,0,0,1673,243,1, + 0,0,0,1674,1672,1,0,0,0,1675,1676,5,273,0,0,1676,1678,5,519,0,0, + 1677,1679,3,246,123,0,1678,1677,1,0,0,0,1679,1680,1,0,0,0,1680,1678, + 1,0,0,0,1680,1681,1,0,0,0,1681,1682,1,0,0,0,1682,1684,5,520,0,0, + 1683,1685,3,262,131,0,1684,1683,1,0,0,0,1684,1685,1,0,0,0,1685,245, + 1,0,0,0,1686,1688,3,328,164,0,1687,1689,3,240,120,0,1688,1687,1, + 0,0,0,1688,1689,1,0,0,0,1689,247,1,0,0,0,1690,1691,5,5,0,0,1691, + 1692,5,324,0,0,1692,1693,5,274,0,0,1693,1699,5,212,0,0,1694,1695, + 5,256,0,0,1695,1696,5,323,0,0,1696,1697,5,274,0,0,1697,1699,5,212, + 0,0,1698,1690,1,0,0,0,1698,1694,1,0,0,0,1699,249,1,0,0,0,1700,1701, + 5,441,0,0,1701,1702,5,212,0,0,1702,1703,5,345,0,0,1703,1704,5,481, + 0,0,1704,1705,5,470,0,0,1705,1725,5,323,0,0,1706,1707,5,441,0,0, + 1707,1708,5,212,0,0,1708,1709,5,345,0,0,1709,1710,5,390,0,0,1710, + 1711,5,239,0,0,1711,1725,5,323,0,0,1712,1713,5,441,0,0,1713,1714, + 5,212,0,0,1714,1715,5,345,0,0,1715,1716,5,390,0,0,1716,1717,5,470, + 0,0,1717,1725,3,328,164,0,1718,1719,5,441,0,0,1719,1720,5,212,0, + 0,1720,1721,5,345,0,0,1721,1722,5,390,0,0,1722,1723,5,460,0,0,1723, + 1725,3,328,164,0,1724,1700,1,0,0,0,1724,1706,1,0,0,0,1724,1712,1, + 0,0,0,1724,1718,1,0,0,0,1725,251,1,0,0,0,1726,1727,5,105,0,0,1727, + 1732,3,174,87,0,1728,1729,5,523,0,0,1729,1731,3,174,87,0,1730,1728, + 1,0,0,0,1731,1734,1,0,0,0,1732,1730,1,0,0,0,1732,1733,1,0,0,0,1733, + 253,1,0,0,0,1734,1732,1,0,0,0,1735,1736,5,294,0,0,1736,1737,5,27, + 0,0,1737,1738,3,304,152,0,1738,1739,3,256,128,0,1739,1751,1,0,0, + 0,1740,1741,7,27,0,0,1741,1742,5,27,0,0,1742,1743,3,258,129,0,1743, + 1744,5,10,0,0,1744,1745,3,260,130,0,1745,1751,1,0,0,0,1746,1747, + 5,324,0,0,1747,1748,5,27,0,0,1748,1749,5,541,0,0,1749,1751,3,256, + 128,0,1750,1735,1,0,0,0,1750,1740,1,0,0,0,1750,1746,1,0,0,0,1751, + 255,1,0,0,0,1752,1753,5,483,0,0,1753,1754,5,10,0,0,1754,1755,5,76, + 0,0,1755,1756,5,323,0,0,1756,257,1,0,0,0,1757,1758,5,404,0,0,1758, + 1764,5,483,0,0,1759,1760,5,541,0,0,1760,1764,5,483,0,0,1761,1762, + 5,76,0,0,1762,1764,5,323,0,0,1763,1757,1,0,0,0,1763,1759,1,0,0,0, + 1763,1761,1,0,0,0,1764,259,1,0,0,0,1765,1766,5,76,0,0,1766,1772, + 5,323,0,0,1767,1768,5,541,0,0,1768,1772,5,146,0,0,1769,1770,5,404, + 0,0,1770,1772,5,146,0,0,1771,1765,1,0,0,0,1771,1767,1,0,0,0,1771, + 1769,1,0,0,0,1772,261,1,0,0,0,1773,1774,5,437,0,0,1774,1775,3,304, + 152,0,1775,263,1,0,0,0,1776,1777,3,266,133,0,1777,265,1,0,0,0,1778, + 1779,6,133,-1,0,1779,1780,5,243,0,0,1780,1791,3,266,133,6,1781,1782, + 5,133,0,0,1782,1783,5,519,0,0,1783,1784,3,160,80,0,1784,1785,5,520, + 0,0,1785,1791,1,0,0,0,1786,1788,3,274,137,0,1787,1789,3,268,134, + 0,1788,1787,1,0,0,0,1788,1789,1,0,0,0,1789,1791,1,0,0,0,1790,1778, + 1,0,0,0,1790,1781,1,0,0,0,1790,1786,1,0,0,0,1791,1806,1,0,0,0,1792, + 1793,10,3,0,0,1793,1794,5,10,0,0,1794,1805,3,266,133,4,1795,1796, + 10,2,0,0,1796,1797,5,259,0,0,1797,1805,3,266,133,3,1798,1799,10, + 1,0,0,1799,1801,5,185,0,0,1800,1802,5,243,0,0,1801,1800,1,0,0,0, + 1801,1802,1,0,0,0,1802,1803,1,0,0,0,1803,1805,7,28,0,0,1804,1792, + 1,0,0,0,1804,1795,1,0,0,0,1804,1798,1,0,0,0,1805,1808,1,0,0,0,1806, + 1804,1,0,0,0,1806,1807,1,0,0,0,1807,267,1,0,0,0,1808,1806,1,0,0, + 0,1809,1811,5,243,0,0,1810,1809,1,0,0,0,1810,1811,1,0,0,0,1811,1812, + 1,0,0,0,1812,1814,5,27,0,0,1813,1815,7,29,0,0,1814,1813,1,0,0,0, + 1814,1815,1,0,0,0,1815,1816,1,0,0,0,1816,1817,3,274,137,0,1817,1818, + 5,10,0,0,1818,1819,3,274,137,0,1819,1884,1,0,0,0,1820,1822,5,243, + 0,0,1821,1820,1,0,0,0,1821,1822,1,0,0,0,1822,1823,1,0,0,0,1823,1824, + 5,171,0,0,1824,1825,5,519,0,0,1825,1830,3,264,132,0,1826,1827,5, + 523,0,0,1827,1829,3,264,132,0,1828,1826,1,0,0,0,1829,1832,1,0,0, + 0,1830,1828,1,0,0,0,1830,1831,1,0,0,0,1831,1833,1,0,0,0,1832,1830, + 1,0,0,0,1833,1834,5,520,0,0,1834,1884,1,0,0,0,1835,1837,5,243,0, + 0,1836,1835,1,0,0,0,1836,1837,1,0,0,0,1837,1838,1,0,0,0,1838,1839, + 5,171,0,0,1839,1840,5,519,0,0,1840,1841,3,160,80,0,1841,1842,5,520, + 0,0,1842,1884,1,0,0,0,1843,1844,5,133,0,0,1844,1845,5,519,0,0,1845, + 1846,3,160,80,0,1846,1847,5,520,0,0,1847,1884,1,0,0,0,1848,1850, + 5,243,0,0,1849,1848,1,0,0,0,1849,1850,1,0,0,0,1850,1851,1,0,0,0, + 1851,1852,5,320,0,0,1852,1884,3,274,137,0,1853,1884,3,272,136,0, + 1854,1856,5,185,0,0,1855,1857,5,243,0,0,1856,1855,1,0,0,0,1856,1857, + 1,0,0,0,1857,1858,1,0,0,0,1858,1884,7,28,0,0,1859,1861,5,185,0,0, + 1860,1862,5,243,0,0,1861,1860,1,0,0,0,1861,1862,1,0,0,0,1862,1863, + 1,0,0,0,1863,1864,5,113,0,0,1864,1865,5,152,0,0,1865,1884,3,274, + 137,0,1866,1868,5,243,0,0,1867,1866,1,0,0,0,1867,1868,1,0,0,0,1868, + 1869,1,0,0,0,1869,1870,5,344,0,0,1870,1871,5,390,0,0,1871,1874,3, + 274,137,0,1872,1873,5,127,0,0,1873,1875,3,380,190,0,1874,1872,1, + 0,0,0,1874,1875,1,0,0,0,1875,1884,1,0,0,0,1876,1877,5,185,0,0,1877, + 1881,5,187,0,0,1878,1882,5,416,0,0,1879,1882,5,13,0,0,1880,1882, + 3,326,163,0,1881,1878,1,0,0,0,1881,1879,1,0,0,0,1881,1880,1,0,0, + 0,1881,1882,1,0,0,0,1882,1884,1,0,0,0,1883,1810,1,0,0,0,1883,1821, + 1,0,0,0,1883,1836,1,0,0,0,1883,1843,1,0,0,0,1883,1849,1,0,0,0,1883, + 1853,1,0,0,0,1883,1854,1,0,0,0,1883,1859,1,0,0,0,1883,1867,1,0,0, + 0,1883,1876,1,0,0,0,1884,269,1,0,0,0,1885,1894,5,246,0,0,1886,1887, + 5,121,0,0,1887,1894,5,13,0,0,1888,1889,5,121,0,0,1889,1894,3,350, + 175,0,1890,1894,5,399,0,0,1891,1894,5,140,0,0,1892,1894,5,407,0, + 0,1893,1885,1,0,0,0,1893,1886,1,0,0,0,1893,1888,1,0,0,0,1893,1890, + 1,0,0,0,1893,1891,1,0,0,0,1893,1892,1,0,0,0,1894,271,1,0,0,0,1895, + 1897,5,243,0,0,1896,1895,1,0,0,0,1896,1897,1,0,0,0,1897,1898,1,0, + 0,0,1898,1899,5,204,0,0,1899,1913,7,30,0,0,1900,1901,5,519,0,0,1901, + 1914,5,520,0,0,1902,1903,5,519,0,0,1903,1908,3,264,132,0,1904,1905, + 5,523,0,0,1905,1907,3,264,132,0,1906,1904,1,0,0,0,1907,1910,1,0, + 0,0,1908,1906,1,0,0,0,1908,1909,1,0,0,0,1909,1911,1,0,0,0,1910,1908, + 1,0,0,0,1911,1912,5,520,0,0,1912,1914,1,0,0,0,1913,1900,1,0,0,0, + 1913,1902,1,0,0,0,1914,1925,1,0,0,0,1915,1917,5,243,0,0,1916,1915, + 1,0,0,0,1916,1917,1,0,0,0,1917,1918,1,0,0,0,1918,1919,5,204,0,0, + 1919,1922,3,274,137,0,1920,1921,5,127,0,0,1921,1923,3,380,190,0, + 1922,1920,1,0,0,0,1922,1923,1,0,0,0,1923,1925,1,0,0,0,1924,1896, + 1,0,0,0,1924,1916,1,0,0,0,1925,273,1,0,0,0,1926,1927,6,137,-1,0, + 1927,1931,3,278,139,0,1928,1929,7,31,0,0,1929,1931,3,274,137,7,1930, + 1926,1,0,0,0,1930,1928,1,0,0,0,1931,1953,1,0,0,0,1932,1933,10,6, + 0,0,1933,1934,7,32,0,0,1934,1952,3,274,137,7,1935,1936,10,5,0,0, + 1936,1937,7,33,0,0,1937,1952,3,274,137,6,1938,1939,10,4,0,0,1939, + 1940,5,514,0,0,1940,1952,3,274,137,5,1941,1942,10,3,0,0,1942,1943, + 5,515,0,0,1943,1952,3,274,137,4,1944,1945,10,2,0,0,1945,1946,5,513, + 0,0,1946,1952,3,274,137,3,1947,1948,10,1,0,0,1948,1949,3,368,184, + 0,1949,1950,3,274,137,2,1950,1952,1,0,0,0,1951,1932,1,0,0,0,1951, + 1935,1,0,0,0,1951,1938,1,0,0,0,1951,1941,1,0,0,0,1951,1944,1,0,0, + 0,1951,1947,1,0,0,0,1952,1955,1,0,0,0,1953,1951,1,0,0,0,1953,1954, + 1,0,0,0,1954,275,1,0,0,0,1955,1953,1,0,0,0,1956,1976,3,394,197,0, + 1957,1976,3,284,142,0,1958,1959,3,286,143,0,1959,1971,5,519,0,0, + 1960,1962,3,386,193,0,1961,1960,1,0,0,0,1961,1962,1,0,0,0,1962,1963, + 1,0,0,0,1963,1968,3,288,144,0,1964,1965,5,523,0,0,1965,1967,3,288, + 144,0,1966,1964,1,0,0,0,1967,1970,1,0,0,0,1968,1966,1,0,0,0,1968, + 1969,1,0,0,0,1969,1972,1,0,0,0,1970,1968,1,0,0,0,1971,1961,1,0,0, + 0,1971,1972,1,0,0,0,1972,1973,1,0,0,0,1973,1974,5,520,0,0,1974,1976, + 1,0,0,0,1975,1956,1,0,0,0,1975,1957,1,0,0,0,1975,1958,1,0,0,0,1976, + 277,1,0,0,0,1977,1978,6,139,-1,0,1978,1980,5,40,0,0,1979,1981,3, + 332,166,0,1980,1979,1,0,0,0,1981,1982,1,0,0,0,1982,1980,1,0,0,0, + 1982,1983,1,0,0,0,1983,1986,1,0,0,0,1984,1985,5,120,0,0,1985,1987, + 3,264,132,0,1986,1984,1,0,0,0,1986,1987,1,0,0,0,1987,1988,1,0,0, + 0,1988,1989,5,122,0,0,1989,2060,1,0,0,0,1990,1991,5,40,0,0,1991, + 1993,3,264,132,0,1992,1994,3,332,166,0,1993,1992,1,0,0,0,1994,1995, + 1,0,0,0,1995,1993,1,0,0,0,1995,1996,1,0,0,0,1996,1999,1,0,0,0,1997, + 1998,5,120,0,0,1998,2000,3,264,132,0,1999,1997,1,0,0,0,1999,2000, + 1,0,0,0,2000,2001,1,0,0,0,2001,2002,5,122,0,0,2002,2060,1,0,0,0, + 2003,2004,5,41,0,0,2004,2005,5,519,0,0,2005,2006,3,264,132,0,2006, + 2007,5,17,0,0,2007,2008,3,58,29,0,2008,2009,5,520,0,0,2009,2060, + 1,0,0,0,2010,2011,5,460,0,0,2011,2012,5,519,0,0,2012,2015,3,264, + 132,0,2013,2014,5,464,0,0,2014,2016,5,479,0,0,2015,2013,1,0,0,0, + 2015,2016,1,0,0,0,2016,2017,1,0,0,0,2017,2018,5,520,0,0,2018,2060, + 1,0,0,0,2019,2020,5,470,0,0,2020,2021,5,519,0,0,2021,2024,3,264, + 132,0,2022,2023,5,464,0,0,2023,2025,5,479,0,0,2024,2022,1,0,0,0, + 2024,2025,1,0,0,0,2025,2026,1,0,0,0,2026,2027,5,520,0,0,2027,2060, + 1,0,0,0,2028,2029,5,283,0,0,2029,2030,5,519,0,0,2030,2031,3,274, + 137,0,2031,2032,5,171,0,0,2032,2033,3,274,137,0,2033,2034,5,520, + 0,0,2034,2060,1,0,0,0,2035,2060,3,376,188,0,2036,2060,5,530,0,0, + 2037,2038,3,350,175,0,2038,2039,5,516,0,0,2039,2040,5,530,0,0,2040, + 2060,1,0,0,0,2041,2042,5,519,0,0,2042,2043,3,160,80,0,2043,2044, + 5,520,0,0,2044,2060,1,0,0,0,2045,2060,3,276,138,0,2046,2060,3,54, + 27,0,2047,2060,3,298,149,0,2048,2049,5,519,0,0,2049,2050,3,264,132, + 0,2050,2051,5,520,0,0,2051,2060,1,0,0,0,2052,2053,5,139,0,0,2053, + 2054,5,519,0,0,2054,2055,3,326,163,0,2055,2056,5,152,0,0,2056,2057, + 3,274,137,0,2057,2058,5,520,0,0,2058,2060,1,0,0,0,2059,1977,1,0, + 0,0,2059,1990,1,0,0,0,2059,2003,1,0,0,0,2059,2010,1,0,0,0,2059,2019, + 1,0,0,0,2059,2028,1,0,0,0,2059,2035,1,0,0,0,2059,2036,1,0,0,0,2059, + 2037,1,0,0,0,2059,2041,1,0,0,0,2059,2045,1,0,0,0,2059,2046,1,0,0, + 0,2059,2047,1,0,0,0,2059,2048,1,0,0,0,2059,2052,1,0,0,0,2060,2068, + 1,0,0,0,2061,2062,10,5,0,0,2062,2063,5,517,0,0,2063,2064,3,274,137, + 0,2064,2065,5,518,0,0,2065,2067,1,0,0,0,2066,2061,1,0,0,0,2067,2070, + 1,0,0,0,2068,2066,1,0,0,0,2068,2069,1,0,0,0,2069,279,1,0,0,0,2070, + 2068,1,0,0,0,2071,2072,3,350,175,0,2072,281,1,0,0,0,2073,2078,3, + 398,199,0,2074,2078,3,394,197,0,2075,2078,3,396,198,0,2076,2078, + 3,350,175,0,2077,2073,1,0,0,0,2077,2074,1,0,0,0,2077,2075,1,0,0, + 0,2077,2076,1,0,0,0,2078,283,1,0,0,0,2079,2080,3,396,198,0,2080, + 2081,5,540,0,0,2081,2084,1,0,0,0,2082,2084,3,304,152,0,2083,2079, + 1,0,0,0,2083,2082,1,0,0,0,2084,285,1,0,0,0,2085,2088,3,398,199,0, + 2086,2088,3,350,175,0,2087,2085,1,0,0,0,2087,2086,1,0,0,0,2088,287, + 1,0,0,0,2089,2098,3,392,196,0,2090,2098,3,390,195,0,2091,2098,3, + 388,194,0,2092,2098,3,264,132,0,2093,2098,3,290,145,0,2094,2098, + 3,292,146,0,2095,2098,3,294,147,0,2096,2098,3,296,148,0,2097,2089, + 1,0,0,0,2097,2090,1,0,0,0,2097,2091,1,0,0,0,2097,2092,1,0,0,0,2097, + 2093,1,0,0,0,2097,2094,1,0,0,0,2097,2095,1,0,0,0,2097,2096,1,0,0, + 0,2098,289,1,0,0,0,2099,2103,3,54,27,0,2100,2101,3,350,175,0,2101, + 2102,3,58,29,0,2102,2104,1,0,0,0,2103,2100,1,0,0,0,2103,2104,1,0, + 0,0,2104,2113,1,0,0,0,2105,2110,3,350,175,0,2106,2110,5,246,0,0, + 2107,2108,5,104,0,0,2108,2110,3,274,137,0,2109,2105,1,0,0,0,2109, + 2106,1,0,0,0,2109,2107,1,0,0,0,2110,2111,1,0,0,0,2111,2112,5,255, + 0,0,2112,2114,5,121,0,0,2113,2109,1,0,0,0,2113,2114,1,0,0,0,2114, + 2123,1,0,0,0,2115,2120,3,350,175,0,2116,2120,5,246,0,0,2117,2118, + 5,104,0,0,2118,2120,3,274,137,0,2119,2115,1,0,0,0,2119,2116,1,0, + 0,0,2119,2117,1,0,0,0,2120,2121,1,0,0,0,2121,2122,5,255,0,0,2122, + 2124,3,350,175,0,2123,2119,1,0,0,0,2123,2124,1,0,0,0,2124,291,1, + 0,0,0,2125,2137,3,54,27,0,2126,2132,5,438,0,0,2127,2129,5,436,0, + 0,2128,2130,3,350,175,0,2129,2128,1,0,0,0,2129,2130,1,0,0,0,2130, + 2132,1,0,0,0,2131,2126,1,0,0,0,2131,2127,1,0,0,0,2132,2134,1,0,0, + 0,2133,2135,5,13,0,0,2134,2133,1,0,0,0,2134,2135,1,0,0,0,2135,2136, + 1,0,0,0,2136,2138,3,350,175,0,2137,2131,1,0,0,0,2137,2138,1,0,0, + 0,2138,2143,1,0,0,0,2139,2140,3,270,135,0,2140,2141,5,255,0,0,2141, + 2142,5,121,0,0,2142,2144,1,0,0,0,2143,2139,1,0,0,0,2143,2144,1,0, + 0,0,2144,2149,1,0,0,0,2145,2146,3,270,135,0,2146,2147,5,255,0,0, + 2147,2148,3,350,175,0,2148,2150,1,0,0,0,2149,2145,1,0,0,0,2149,2150, + 1,0,0,0,2150,293,1,0,0,0,2151,2153,5,469,0,0,2152,2151,1,0,0,0,2152, + 2153,1,0,0,0,2153,2154,1,0,0,0,2154,2156,3,54,27,0,2155,2157,5,416, + 0,0,2156,2155,1,0,0,0,2156,2157,1,0,0,0,2157,2168,1,0,0,0,2158,2169, + 3,274,137,0,2159,2160,5,187,0,0,2160,2164,5,519,0,0,2161,2163,3, + 274,137,0,2162,2161,1,0,0,0,2163,2166,1,0,0,0,2164,2162,1,0,0,0, + 2164,2165,1,0,0,0,2165,2167,1,0,0,0,2166,2164,1,0,0,0,2167,2169, + 5,520,0,0,2168,2158,1,0,0,0,2168,2159,1,0,0,0,2169,2171,1,0,0,0, + 2170,2152,1,0,0,0,2171,2174,1,0,0,0,2172,2170,1,0,0,0,2172,2173, + 1,0,0,0,2173,2181,1,0,0,0,2174,2172,1,0,0,0,2175,2178,5,246,0,0, + 2176,2178,3,350,175,0,2177,2175,1,0,0,0,2177,2176,1,0,0,0,2178,2179, + 1,0,0,0,2179,2180,5,255,0,0,2180,2182,5,246,0,0,2181,2177,1,0,0, + 0,2181,2182,1,0,0,0,2182,295,1,0,0,0,2183,2185,3,274,137,0,2184, + 2183,1,0,0,0,2185,2188,1,0,0,0,2186,2184,1,0,0,0,2186,2187,1,0,0, + 0,2187,2195,1,0,0,0,2188,2186,1,0,0,0,2189,2192,5,246,0,0,2190,2192, + 3,350,175,0,2191,2189,1,0,0,0,2191,2190,1,0,0,0,2192,2193,1,0,0, + 0,2193,2194,5,255,0,0,2194,2196,5,246,0,0,2195,2191,1,0,0,0,2195, + 2196,1,0,0,0,2196,297,1,0,0,0,2197,2198,3,350,175,0,2198,299,1,0, + 0,0,2199,2200,3,326,163,0,2200,301,1,0,0,0,2201,2204,3,326,163,0, + 2202,2204,3,298,149,0,2203,2201,1,0,0,0,2203,2202,1,0,0,0,2204,303, + 1,0,0,0,2205,2208,5,183,0,0,2206,2209,3,306,153,0,2207,2209,3,310, + 155,0,2208,2206,1,0,0,0,2208,2207,1,0,0,0,2208,2209,1,0,0,0,2209, + 305,1,0,0,0,2210,2212,3,308,154,0,2211,2213,3,312,156,0,2212,2211, + 1,0,0,0,2212,2213,1,0,0,0,2213,307,1,0,0,0,2214,2215,3,314,157,0, + 2215,2216,3,390,195,0,2216,2218,1,0,0,0,2217,2214,1,0,0,0,2218,2219, + 1,0,0,0,2219,2217,1,0,0,0,2219,2220,1,0,0,0,2220,309,1,0,0,0,2221, + 2224,3,312,156,0,2222,2225,3,308,154,0,2223,2225,3,312,156,0,2224, + 2222,1,0,0,0,2224,2223,1,0,0,0,2224,2225,1,0,0,0,2225,311,1,0,0, + 0,2226,2227,3,314,157,0,2227,2228,3,390,195,0,2228,2229,5,390,0, + 0,2229,2230,3,390,195,0,2230,313,1,0,0,0,2231,2233,7,34,0,0,2232, + 2231,1,0,0,0,2232,2233,1,0,0,0,2233,2234,1,0,0,0,2234,2237,7,35, + 0,0,2235,2237,5,540,0,0,2236,2232,1,0,0,0,2236,2235,1,0,0,0,2237, + 315,1,0,0,0,2238,2240,5,17,0,0,2239,2238,1,0,0,0,2239,2240,1,0,0, + 0,2240,2241,1,0,0,0,2241,2243,3,326,163,0,2242,2244,3,322,161,0, + 2243,2242,1,0,0,0,2243,2244,1,0,0,0,2244,317,1,0,0,0,2245,2246,3, + 326,163,0,2246,2247,3,320,160,0,2247,319,1,0,0,0,2248,2249,5,223, + 0,0,2249,2251,3,326,163,0,2250,2248,1,0,0,0,2251,2252,1,0,0,0,2252, + 2250,1,0,0,0,2252,2253,1,0,0,0,2253,2256,1,0,0,0,2254,2256,1,0,0, + 0,2255,2250,1,0,0,0,2255,2254,1,0,0,0,2256,321,1,0,0,0,2257,2258, + 5,519,0,0,2258,2259,3,324,162,0,2259,2260,5,520,0,0,2260,323,1,0, + 0,0,2261,2266,3,326,163,0,2262,2263,5,523,0,0,2263,2265,3,326,163, + 0,2264,2262,1,0,0,0,2265,2268,1,0,0,0,2266,2264,1,0,0,0,2266,2267, + 1,0,0,0,2267,325,1,0,0,0,2268,2266,1,0,0,0,2269,2273,3,328,164,0, + 2270,2273,3,330,165,0,2271,2273,3,400,200,0,2272,2269,1,0,0,0,2272, + 2270,1,0,0,0,2272,2271,1,0,0,0,2273,327,1,0,0,0,2274,2275,7,36,0, + 0,2275,329,1,0,0,0,2276,2277,5,540,0,0,2277,331,1,0,0,0,2278,2279, + 5,431,0,0,2279,2280,3,264,132,0,2280,2281,5,378,0,0,2281,2282,3, + 264,132,0,2282,333,1,0,0,0,2283,2284,3,326,163,0,2284,335,1,0,0, + 0,2285,2286,3,326,163,0,2286,337,1,0,0,0,2287,2290,3,326,163,0,2288, + 2289,5,516,0,0,2289,2291,3,326,163,0,2290,2288,1,0,0,0,2290,2291, + 1,0,0,0,2291,339,1,0,0,0,2292,2295,3,326,163,0,2293,2294,5,516,0, + 0,2294,2296,3,326,163,0,2295,2293,1,0,0,0,2295,2296,1,0,0,0,2296, + 341,1,0,0,0,2297,2300,3,326,163,0,2298,2299,5,516,0,0,2299,2301, + 3,326,163,0,2300,2298,1,0,0,0,2300,2301,1,0,0,0,2301,2310,1,0,0, + 0,2302,2303,3,326,163,0,2303,2304,5,516,0,0,2304,2307,3,326,163, + 0,2305,2306,5,516,0,0,2306,2308,3,326,163,0,2307,2305,1,0,0,0,2307, + 2308,1,0,0,0,2308,2310,1,0,0,0,2309,2297,1,0,0,0,2309,2302,1,0,0, + 0,2310,343,1,0,0,0,2311,2314,3,326,163,0,2312,2313,5,516,0,0,2313, + 2315,3,326,163,0,2314,2312,1,0,0,0,2314,2315,1,0,0,0,2315,2324,1, + 0,0,0,2316,2317,3,326,163,0,2317,2318,5,516,0,0,2318,2321,3,326, + 163,0,2319,2320,5,516,0,0,2320,2322,3,326,163,0,2321,2319,1,0,0, + 0,2321,2322,1,0,0,0,2322,2324,1,0,0,0,2323,2311,1,0,0,0,2323,2316, + 1,0,0,0,2324,345,1,0,0,0,2325,2328,3,326,163,0,2326,2327,5,516,0, + 0,2327,2329,3,326,163,0,2328,2326,1,0,0,0,2328,2329,1,0,0,0,2329, + 2338,1,0,0,0,2330,2331,3,326,163,0,2331,2332,5,516,0,0,2332,2335, + 3,326,163,0,2333,2334,5,516,0,0,2334,2336,3,326,163,0,2335,2333, + 1,0,0,0,2335,2336,1,0,0,0,2336,2338,1,0,0,0,2337,2325,1,0,0,0,2337, + 2330,1,0,0,0,2338,347,1,0,0,0,2339,2342,3,326,163,0,2340,2341,5, + 516,0,0,2341,2343,3,326,163,0,2342,2340,1,0,0,0,2342,2343,1,0,0, + 0,2343,2352,1,0,0,0,2344,2345,3,326,163,0,2345,2346,5,516,0,0,2346, + 2349,3,326,163,0,2347,2348,5,516,0,0,2348,2350,3,326,163,0,2349, + 2347,1,0,0,0,2349,2350,1,0,0,0,2350,2352,1,0,0,0,2351,2339,1,0,0, + 0,2351,2344,1,0,0,0,2352,349,1,0,0,0,2353,2358,3,326,163,0,2354, + 2355,5,516,0,0,2355,2357,3,326,163,0,2356,2354,1,0,0,0,2357,2360, + 1,0,0,0,2358,2359,1,0,0,0,2358,2356,1,0,0,0,2359,351,1,0,0,0,2360, + 2358,1,0,0,0,2361,2362,5,436,0,0,2362,2363,3,358,179,0,2363,353, + 1,0,0,0,2364,2365,5,168,0,0,2365,2366,5,243,0,0,2366,2367,5,133, + 0,0,2367,355,1,0,0,0,2368,2369,5,168,0,0,2369,2370,5,133,0,0,2370, + 357,1,0,0,0,2371,2372,5,519,0,0,2372,2377,3,360,180,0,2373,2374, + 5,523,0,0,2374,2376,3,360,180,0,2375,2373,1,0,0,0,2376,2379,1,0, + 0,0,2377,2375,1,0,0,0,2377,2378,1,0,0,0,2378,2380,1,0,0,0,2379,2377, + 1,0,0,0,2380,2381,5,520,0,0,2381,359,1,0,0,0,2382,2387,3,362,181, + 0,2383,2385,5,508,0,0,2384,2383,1,0,0,0,2384,2385,1,0,0,0,2385,2386, + 1,0,0,0,2386,2388,3,364,182,0,2387,2384,1,0,0,0,2387,2388,1,0,0, + 0,2388,361,1,0,0,0,2389,2393,3,326,163,0,2390,2393,3,298,149,0,2391, + 2393,5,540,0,0,2392,2389,1,0,0,0,2392,2390,1,0,0,0,2392,2391,1,0, + 0,0,2393,363,1,0,0,0,2394,2399,5,541,0,0,2395,2399,5,542,0,0,2396, + 2399,3,384,192,0,2397,2399,5,540,0,0,2398,2394,1,0,0,0,2398,2395, + 1,0,0,0,2398,2396,1,0,0,0,2398,2397,1,0,0,0,2399,365,1,0,0,0,2400, + 2407,5,10,0,0,2401,2402,5,514,0,0,2402,2407,5,514,0,0,2403,2407, + 5,259,0,0,2404,2405,5,513,0,0,2405,2407,5,513,0,0,2406,2400,1,0, + 0,0,2406,2401,1,0,0,0,2406,2403,1,0,0,0,2406,2404,1,0,0,0,2407,367, + 1,0,0,0,2408,2423,5,508,0,0,2409,2423,5,509,0,0,2410,2423,5,510, + 0,0,2411,2412,5,510,0,0,2412,2423,5,508,0,0,2413,2414,5,509,0,0, + 2414,2423,5,508,0,0,2415,2416,5,510,0,0,2416,2423,5,509,0,0,2417, + 2418,5,511,0,0,2418,2423,5,508,0,0,2419,2420,5,510,0,0,2420,2421, + 5,508,0,0,2421,2423,5,509,0,0,2422,2408,1,0,0,0,2422,2409,1,0,0, + 0,2422,2410,1,0,0,0,2422,2411,1,0,0,0,2422,2413,1,0,0,0,2422,2415, + 1,0,0,0,2422,2417,1,0,0,0,2422,2419,1,0,0,0,2423,369,1,0,0,0,2424, + 2425,5,510,0,0,2425,2432,5,510,0,0,2426,2427,5,509,0,0,2427,2432, + 5,509,0,0,2428,2432,5,514,0,0,2429,2432,5,515,0,0,2430,2432,5,513, + 0,0,2431,2424,1,0,0,0,2431,2426,1,0,0,0,2431,2428,1,0,0,0,2431,2429, + 1,0,0,0,2431,2430,1,0,0,0,2432,371,1,0,0,0,2433,2434,7,37,0,0,2434, + 373,1,0,0,0,2435,2436,7,38,0,0,2436,375,1,0,0,0,2437,2452,3,304, + 152,0,2438,2452,3,378,189,0,2439,2452,3,380,190,0,2440,2442,5,532, + 0,0,2441,2440,1,0,0,0,2441,2442,1,0,0,0,2442,2443,1,0,0,0,2443,2452, + 3,382,191,0,2444,2452,3,384,192,0,2445,2452,5,542,0,0,2446,2452, + 5,543,0,0,2447,2449,5,243,0,0,2448,2447,1,0,0,0,2448,2449,1,0,0, + 0,2449,2450,1,0,0,0,2450,2452,5,246,0,0,2451,2437,1,0,0,0,2451,2438, + 1,0,0,0,2451,2439,1,0,0,0,2451,2441,1,0,0,0,2451,2444,1,0,0,0,2451, + 2445,1,0,0,0,2451,2446,1,0,0,0,2451,2448,1,0,0,0,2452,377,1,0,0, + 0,2453,2454,3,388,194,0,2454,2455,3,380,190,0,2455,379,1,0,0,0,2456, + 2457,5,540,0,0,2457,381,1,0,0,0,2458,2459,5,541,0,0,2459,383,1,0, + 0,0,2460,2461,7,39,0,0,2461,385,1,0,0,0,2462,2463,7,40,0,0,2463, + 387,1,0,0,0,2464,2465,7,41,0,0,2465,389,1,0,0,0,2466,2467,7,42,0, + 0,2467,391,1,0,0,0,2468,2469,7,43,0,0,2469,393,1,0,0,0,2470,2471, + 7,44,0,0,2471,395,1,0,0,0,2472,2473,7,45,0,0,2473,397,1,0,0,0,2474, + 2475,7,46,0,0,2475,399,1,0,0,0,2476,2477,7,47,0,0,2477,401,1,0,0, + 0,301,405,412,415,429,447,451,460,465,472,483,492,504,507,514,517, + 525,529,534,537,544,552,556,568,576,580,612,615,620,624,628,632, + 641,646,650,654,659,662,666,671,677,682,687,691,695,699,709,717, + 721,725,729,733,737,741,745,749,751,761,769,793,807,812,816,822, + 825,828,835,838,847,859,883,895,900,904,912,916,922,932,937,943, + 947,951,955,964,968,975,978,988,996,1004,1008,1023,1042,1053,1057, + 1064,1069,1075,1079,1086,1090,1094,1098,1106,1110,1115,1121,1127, + 1130,1134,1145,1154,1161,1172,1184,1199,1202,1206,1209,1211,1216, + 1220,1223,1227,1236,1245,1255,1260,1271,1274,1277,1280,1283,1289, + 1293,1301,1304,1309,1312,1316,1319,1321,1328,1335,1337,1348,1353, + 1361,1364,1367,1372,1374,1376,1381,1384,1388,1392,1401,1412,1439, + 1461,1474,1486,1499,1511,1523,1529,1556,1564,1568,1571,1574,1581, + 1584,1587,1590,1593,1596,1601,1604,1613,1618,1621,1625,1630,1636, + 1641,1645,1664,1672,1680,1684,1688,1698,1724,1732,1750,1763,1771, + 1788,1790,1801,1804,1806,1810,1814,1821,1830,1836,1849,1856,1861, + 1867,1874,1881,1883,1893,1896,1908,1913,1916,1922,1924,1930,1951, + 1953,1961,1968,1971,1975,1982,1986,1995,1999,2015,2024,2059,2068, + 2077,2083,2087,2097,2103,2109,2113,2119,2123,2129,2131,2134,2137, + 2143,2149,2152,2156,2164,2168,2172,2177,2181,2186,2191,2195,2203, + 2208,2212,2219,2224,2232,2236,2239,2243,2252,2255,2266,2272,2290, + 2295,2300,2307,2309,2314,2321,2323,2328,2335,2337,2342,2349,2351, + 2358,2377,2384,2387,2392,2398,2406,2422,2431,2441,2448,2451 ]; private static __ATN: antlr.ATN; @@ -18199,11 +18399,11 @@ export class OverWindowItemContext extends antlr.ParserRuleContext { public windowSpec(): WindowSpecContext | null { return this.getRuleContext(0, WindowSpecContext); } - public KW_AS(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_AS, 0)!; + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_AS, 0); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; + public identifier(): IdentifierContext | null { + return this.getRuleContext(0, IdentifierContext); } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext | null { return this.getRuleContext(0, ErrorCapturingIdentifierContext); @@ -19475,8 +19675,11 @@ export class OrderItemDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnName(): ColumnNameContext { - return this.getRuleContext(0, ColumnNameContext)!; + public columnName(): ColumnNameContext | null { + return this.getRuleContext(0, ColumnNameContext); + } + public valueExpression(): ValueExpressionContext | null { + return this.getRuleContext(0, ValueExpressionContext); } public KW_NULLS(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_NULLS, 0); @@ -19959,8 +20162,17 @@ export class WindowFrameContext extends antlr.ParserRuleContext { public timeIntervalExpression(): TimeIntervalExpressionContext | null { return this.getRuleContext(0, TimeIntervalExpressionContext); } - public frameBound(): FrameBoundContext { - return this.getRuleContext(0, FrameBoundContext)!; + public frameBound(): FrameBoundContext | null { + return this.getRuleContext(0, FrameBoundContext); + } + public frameStart(): FrameStartContext | null { + return this.getRuleContext(0, FrameStartContext); + } + public KW_AND(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_AND, 0); + } + public frameEnd(): FrameEndContext | null { + return this.getRuleContext(0, FrameEndContext); } public KW_ROWS(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_ROWS, 0); @@ -20030,6 +20242,90 @@ export class FrameBoundContext extends antlr.ParserRuleContext { } +export class FrameStartContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_UNBOUNDED(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_UNBOUNDED, 0); + } + public KW_PRECEDING(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_PRECEDING, 0); + } + public DIG_LITERAL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.DIG_LITERAL, 0); + } + public KW_CURRENT(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_CURRENT, 0); + } + public KW_ROW(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_ROW, 0); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_frameStart; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterFrameStart) { + listener.enterFrameStart(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitFrameStart) { + listener.exitFrameStart(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitFrameStart) { + return visitor.visitFrameStart(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FrameEndContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_CURRENT(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_CURRENT, 0); + } + public KW_ROW(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_ROW, 0); + } + public DIG_LITERAL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.DIG_LITERAL, 0); + } + public KW_FOLLOWING(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_FOLLOWING, 0); + } + public KW_UNBOUNDED(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_UNBOUNDED, 0); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_frameEnd; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterFrameEnd) { + listener.enterFrameEnd(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitFrameEnd) { + listener.exitFrameEnd(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitFrameEnd) { + return visitor.visitFrameEnd(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class WithinClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -21144,6 +21440,49 @@ export class ParenthesizedExpressionContext extends PrimaryExpressionContext { } } } +export class ExtractContext extends PrimaryExpressionContext { + public _field?: IdentifierContext; + public _source?: ValueExpressionContext; + public constructor(ctx: PrimaryExpressionContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_EXTRACT(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.KW_EXTRACT, 0)!; + } + public LR_BRACKET(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0)!; + } + public KW_FROM(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.KW_FROM, 0)!; + } + public RR_BRACKET(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0)!; + } + public identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; + } + public valueExpression(): ValueExpressionContext { + return this.getRuleContext(0, ValueExpressionContext)!; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterExtract) { + listener.enterExtract(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitExtract) { + listener.exitExtract(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitExtract) { + return visitor.visitExtract(this); + } else { + return visitor.visitChildren(this); + } + } +} export class FunctionCallContext extends PrimaryExpressionContext { public constructor(ctx: PrimaryExpressionContext) { super(ctx.parent, ctx.invokingState); diff --git a/src/lib/flink/FlinkSqlParserListener.ts b/src/lib/flink/FlinkSqlParserListener.ts index a2eb2e8f..7a1332f6 100644 --- a/src/lib/flink/FlinkSqlParserListener.ts +++ b/src/lib/flink/FlinkSqlParserListener.ts @@ -138,6 +138,8 @@ import { AfterMatchStrategyContext } from "./FlinkSqlParser.js"; import { PatternVariablesDefinitionContext } from "./FlinkSqlParser.js"; import { WindowFrameContext } from "./FlinkSqlParser.js"; import { FrameBoundContext } from "./FlinkSqlParser.js"; +import { FrameStartContext } from "./FlinkSqlParser.js"; +import { FrameEndContext } from "./FlinkSqlParser.js"; import { WithinClauseContext } from "./FlinkSqlParser.js"; import { ExpressionContext } from "./FlinkSqlParser.js"; import { LogicalNotContext } from "./FlinkSqlParser.js"; @@ -163,6 +165,7 @@ import { SubqueryExpressionContext } from "./FlinkSqlParser.js"; import { CastContext } from "./FlinkSqlParser.js"; import { ConstantDefaultContext } from "./FlinkSqlParser.js"; import { ParenthesizedExpressionContext } from "./FlinkSqlParser.js"; +import { ExtractContext } from "./FlinkSqlParser.js"; import { FunctionCallContext } from "./FlinkSqlParser.js"; import { SearchedCaseContext } from "./FlinkSqlParser.js"; import { PositionContext } from "./FlinkSqlParser.js"; @@ -1542,6 +1545,26 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFrameBound?: (ctx: FrameBoundContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.frameStart`. + * @param ctx the parse tree + */ + enterFrameStart?: (ctx: FrameStartContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.frameStart`. + * @param ctx the parse tree + */ + exitFrameStart?: (ctx: FrameStartContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.frameEnd`. + * @param ctx the parse tree + */ + enterFrameEnd?: (ctx: FrameEndContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.frameEnd`. + * @param ctx the parse tree + */ + exitFrameEnd?: (ctx: FrameEndContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.withinClause`. * @param ctx the parse tree @@ -1830,6 +1853,18 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitParenthesizedExpression?: (ctx: ParenthesizedExpressionContext) => void; + /** + * Enter a parse tree produced by the `extract` + * labeled alternative in `FlinkSqlParser.primaryExpression`. + * @param ctx the parse tree + */ + enterExtract?: (ctx: ExtractContext) => void; + /** + * Exit a parse tree produced by the `extract` + * labeled alternative in `FlinkSqlParser.primaryExpression`. + * @param ctx the parse tree + */ + exitExtract?: (ctx: ExtractContext) => void; /** * Enter a parse tree produced by the `functionCall` * labeled alternative in `FlinkSqlParser.primaryExpression`. diff --git a/src/lib/flink/FlinkSqlParserVisitor.ts b/src/lib/flink/FlinkSqlParserVisitor.ts index 765b4de1..cab949d8 100644 --- a/src/lib/flink/FlinkSqlParserVisitor.ts +++ b/src/lib/flink/FlinkSqlParserVisitor.ts @@ -138,6 +138,8 @@ import { AfterMatchStrategyContext } from "./FlinkSqlParser.js"; import { PatternVariablesDefinitionContext } from "./FlinkSqlParser.js"; import { WindowFrameContext } from "./FlinkSqlParser.js"; import { FrameBoundContext } from "./FlinkSqlParser.js"; +import { FrameStartContext } from "./FlinkSqlParser.js"; +import { FrameEndContext } from "./FlinkSqlParser.js"; import { WithinClauseContext } from "./FlinkSqlParser.js"; import { ExpressionContext } from "./FlinkSqlParser.js"; import { LogicalNotContext } from "./FlinkSqlParser.js"; @@ -163,6 +165,7 @@ import { SubqueryExpressionContext } from "./FlinkSqlParser.js"; import { CastContext } from "./FlinkSqlParser.js"; import { ConstantDefaultContext } from "./FlinkSqlParser.js"; import { ParenthesizedExpressionContext } from "./FlinkSqlParser.js"; +import { ExtractContext } from "./FlinkSqlParser.js"; import { FunctionCallContext } from "./FlinkSqlParser.js"; import { SearchedCaseContext } from "./FlinkSqlParser.js"; import { PositionContext } from "./FlinkSqlParser.js"; @@ -1023,6 +1026,18 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.frameStart`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFrameStart?: (ctx: FrameStartContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.frameEnd`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFrameEnd?: (ctx: FrameEndContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.withinClause`. * @param ctx the parse tree @@ -1192,6 +1207,13 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by the `extract` + * labeled alternative in `FlinkSqlParser.primaryExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitExtract?: (ctx: ExtractContext) => Result; /** * Visit a parse tree produced by the `functionCall` * labeled alternative in `FlinkSqlParser.primaryExpression`. diff --git a/test/parser/flink/syntax/fixtures/insertFromSelectQueries.sql b/test/parser/flink/syntax/fixtures/insertFromSelectQueries.sql index f4ebba0d..63e36293 100644 --- a/test/parser/flink/syntax/fixtures/insertFromSelectQueries.sql +++ b/test/parser/flink/syntax/fixtures/insertFromSelectQueries.sql @@ -68,4 +68,17 @@ select from rocketmq_source ; +INSERT INTO Paimon.iov_paimon_prd.ods_track_vcos_log_prs_hi +SELECT +vin AS vin, -- 车架号 +-- Kafka时间戳转毫秒级(含毫秒精度) +UNIX_TIMESTAMP(DATE_FORMAT(kafka_timestamp, 'yyyy-MM-dd HH:mm:ss')) * 1000 ++ EXTRACT(MILLISECOND FROM kafka_timestamp) AS kafka_ts -- Kafka时间戳(毫秒) +FROM ods_track_vcos_log_prs_rt2 +WHERE JSON_VALUE(parse_track_pb(data), '$.eid') = '1570001000'; +INSERT INTO Paimon.iov_paimon_prd.ods_track_vcos_log_prs_hi +SELECT +vin AS vin +FROM ods_track_vcos_log_prs_rt2 +WHERE JSON_VALUE(parse_track_pb(data), '$.eid' RETURNING STRING) = '1570001000'; diff --git a/test/parser/flink/syntax/fixtures/select.sql b/test/parser/flink/syntax/fixtures/select.sql index b656877e..c96d1c8e 100644 --- a/test/parser/flink/syntax/fixtures/select.sql +++ b/test/parser/flink/syntax/fixtures/select.sql @@ -84,4 +84,10 @@ SELECT event_time FROM user_behavior WHERE JSON_VALUE(event_data, '$.eventType' RETURNING STRING) IS NOT NULL -; \ No newline at end of file +; + +SELECT * FROM orders ORDER BY price * quantity ASC LIMIT 10; +SELECT *, COALESCE(quantity, 0) * price AS total_amount FROM orders ORDER BY (COALESCE(quantity, 0) * price) DESC; +SELECT *, COALESCE(quantity, 0) * price AS total_amount FROM orders ORDER BY customer_id ASC, (COALESCE(quantity, 0) * price) DESC, order_time ASC; +SELECT *, ROW_NUMBER() OVER (PARTITION BY customer_id ORDER BY order_time DESC) AS rn FROM orders ORDER BY rn ASC; +SELECT *, SUM(quantity * price) OVER (PARTITION BY customer_id ORDER BY order_time ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS running_total FROM orders ORDER BY running_total DESC; \ No newline at end of file