diff --git a/pom.xml b/pom.xml index 1ae0c05..f7a9553 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ 4.10.1 - 1.3 + 1.4 jdmn-js-runtime ${project.basedir}/src/${package.name}/resources/dmn/${dmn.version} diff --git a/spec/parser/Lexer.spec.js b/spec/parser/Lexer.spec.js index e39e8ac..0443f10 100644 --- a/spec/parser/Lexer.spec.js +++ b/spec/parser/Lexer.spec.js @@ -48,6 +48,10 @@ describe("Lexer", () => { token = checkToken("\"a\\U01F40Eb\"", FEELLexer.STRING, "\"a\uD83D\uDC0Eb\""); checkPosition(token, 1, 1, 1, 6, 0, 12); + // multiline string + token = checkToken("\"l1\\\nl2\"", FEELLexer.STRING, "\"l1\\\nl2\""); + checkPosition(token, 1, 1, 2, 4, 0, 8); + token = checkToken("\".\"", FEELLexer.STRING, "\".\""); checkPosition(token, 1, 1, 1, 3, 0, 3); }); @@ -216,6 +220,7 @@ describe("Lexer", () => { checkToken("substring after", FEELLexer.NAME, "substring after"); checkToken("starts with", FEELLexer.NAME, "starts with"); checkToken("ends with", FEELLexer.NAME, "ends with"); + checkToken("string join", FEELLexer.NAME, "string join"); checkToken("list contains", FEELLexer.NAME, "list contains"); checkToken("insert before", FEELLexer.NAME, "insert before"); checkToken("index of", FEELLexer.NAME, "index of"); @@ -249,6 +254,7 @@ const SPECIAL_NAMES = [ "substring after", "starts with", "ends with", + "string join", // list functions "start position", "list contains", @@ -258,6 +264,8 @@ const SPECIAL_NAMES = [ // context functions "get entries", "get value", + "context put", + "context merge", // range functions "met by", "overlaps before", diff --git a/spec/parser/Parser.spec.js b/spec/parser/Parser.spec.js index 49eb05b..b487869 100644 --- a/spec/parser/Parser.spec.js +++ b/spec/parser/Parser.spec.js @@ -116,4 +116,23 @@ describe("Parser", () => { // Temporal literals validateOutputEntry("@\"2019-03-31\" instance of date"); }); + + it("Expressions - Instance Of", () => { + validateOutputEntry("3 instance of number"); + validateOutputEntry("123 instance of function -> number"); + validateOutputEntry("\"abc\" instance of string"); + validateOutputEntry("true instance of boolean"); + validateOutputEntry("date(\"2011-01-03\") instance of date"); + validateOutputEntry("time(\"12:00:00Z\") instance of time"); + validateOutputEntry("date and time(\"2016-03-01T12:00:00Z\") instance of date and time"); + validateOutputEntry("duration(\"P1Y1M\") instance of years and months duration"); + validateOutputEntry("duration(\"P1DT1H\") instance of days and time duration"); + validateOutputEntry("x instance of number"); + validateOutputEntry("x instance of context"); + validateOutputEntry("x instance of range"); + validateOutputEntry("x instance of function -> number"); + validateOutputEntry("x instance of list"); + // Temporal literals + validateOutputEntry("@\"2019-03-31\" instance of date"); + }); }); \ No newline at end of file diff --git a/src/jdmn-js-runtime/parser/FEELLexer.interp b/src/jdmn-js-runtime/parser/FEELLexer.interp index 9b374ce..22601c3 100644 --- a/src/jdmn-js-runtime/parser/FEELLexer.interp +++ b/src/jdmn-js-runtime/parser/FEELLexer.interp @@ -168,4 +168,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 48, 1153, 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, 1, 0, 1, 0, 1, 0, 1, 0, 5, 0, 122, 8, 0, 10, 0, 12, 0, 125, 9, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 136, 8, 1, 10, 1, 12, 1, 139, 9, 1, 1, 1, 1, 1, 1, 2, 4, 2, 144, 8, 2, 11, 2, 12, 2, 145, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 5, 3, 153, 8, 3, 10, 3, 12, 3, 156, 9, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 3, 4, 164, 8, 4, 1, 4, 1, 4, 3, 4, 168, 8, 4, 1, 5, 1, 5, 5, 5, 172, 8, 5, 10, 5, 12, 5, 175, 9, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 3, 6, 182, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 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, 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, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 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, 4, 46, 343, 8, 46, 11, 46, 12, 46, 344, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 358, 8, 47, 11, 47, 12, 47, 359, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 367, 8, 47, 11, 47, 12, 47, 368, 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, 4, 47, 384, 8, 47, 11, 47, 12, 47, 385, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 393, 8, 47, 11, 47, 12, 47, 394, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 403, 8, 47, 11, 47, 12, 47, 404, 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, 47, 4, 47, 425, 8, 47, 11, 47, 12, 47, 426, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 434, 8, 47, 11, 47, 12, 47, 435, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 446, 8, 47, 11, 47, 12, 47, 447, 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, 47, 1, 47, 4, 47, 469, 8, 47, 11, 47, 12, 47, 470, 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, 4, 47, 489, 8, 47, 11, 47, 12, 47, 490, 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, 4, 47, 507, 8, 47, 11, 47, 12, 47, 508, 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, 47, 4, 47, 529, 8, 47, 11, 47, 12, 47, 530, 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, 47, 1, 47, 1, 47, 4, 47, 553, 8, 47, 11, 47, 12, 47, 554, 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, 4, 47, 573, 8, 47, 11, 47, 12, 47, 574, 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, 4, 47, 590, 8, 47, 11, 47, 12, 47, 591, 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, 4, 47, 608, 8, 47, 11, 47, 12, 47, 609, 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, 4, 47, 629, 8, 47, 11, 47, 12, 47, 630, 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, 47, 1, 47, 4, 47, 652, 8, 47, 11, 47, 12, 47, 653, 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, 4, 47, 672, 8, 47, 11, 47, 12, 47, 673, 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, 4, 47, 691, 8, 47, 11, 47, 12, 47, 692, 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, 4, 47, 709, 8, 47, 11, 47, 12, 47, 710, 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, 4, 47, 728, 8, 47, 11, 47, 12, 47, 729, 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, 4, 47, 745, 8, 47, 11, 47, 12, 47, 746, 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, 4, 47, 764, 8, 47, 11, 47, 12, 47, 765, 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, 47, 1, 47, 4, 47, 787, 8, 47, 11, 47, 12, 47, 788, 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, 47, 4, 47, 809, 8, 47, 11, 47, 12, 47, 810, 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, 4, 47, 827, 8, 47, 11, 47, 12, 47, 828, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 843, 8, 47, 11, 47, 12, 47, 844, 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, 4, 47, 863, 8, 47, 11, 47, 12, 47, 864, 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, 4, 47, 883, 8, 47, 11, 47, 12, 47, 884, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 891, 8, 47, 11, 47, 12, 47, 892, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 907, 8, 47, 11, 47, 12, 47, 908, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 915, 8, 47, 11, 47, 12, 47, 916, 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, 4, 47, 933, 8, 47, 11, 47, 12, 47, 934, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 941, 8, 47, 11, 47, 12, 47, 942, 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, 4, 47, 958, 8, 47, 11, 47, 12, 47, 959, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 966, 8, 47, 11, 47, 12, 47, 967, 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, 4, 47, 984, 8, 47, 11, 47, 12, 47, 985, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 1000, 8, 47, 11, 47, 12, 47, 1001, 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, 4, 47, 1018, 8, 47, 11, 47, 12, 47, 1019, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 1028, 8, 47, 11, 47, 12, 47, 1029, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 1044, 8, 47, 11, 47, 12, 47, 1045, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 1054, 8, 47, 11, 47, 12, 47, 1055, 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, 4, 47, 1071, 8, 47, 11, 47, 12, 47, 1072, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1086, 8, 47, 10, 47, 12, 47, 1089, 9, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1095, 8, 47, 10, 47, 12, 47, 1098, 9, 47, 1, 47, 1, 47, 3, 47, 1102, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1109, 8, 48, 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, 50, 1, 50, 1, 50, 3, 50, 1127, 8, 50, 1, 51, 3, 51, 1130, 8, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1135, 8, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 55, 1, 55, 5, 55, 1143, 8, 55, 10, 55, 12, 55, 1146, 9, 55, 1, 56, 1, 56, 3, 56, 1150, 8, 56, 1, 57, 1, 57, 1, 123, 0, 58, 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, 0, 99, 0, 101, 0, 103, 0, 105, 0, 107, 0, 109, 0, 111, 0, 113, 0, 115, 0, 1, 0, 9, 1, 0, 10, 13, 2, 0, 10, 13, 34, 34, 2, 0, 10, 13, 39, 39, 8, 0, 34, 34, 39, 39, 92, 92, 98, 98, 102, 102, 110, 110, 114, 114, 116, 116, 16, 0, 63, 63, 65, 90, 95, 95, 97, 122, 192, 214, 216, 246, 248, 767, 880, 893, 895, 8191, 8204, 8205, 8304, 8591, 11264, 12271, 12289, 55295, 63744, 64975, 65008, 65533, 65536, 983039, 3, 0, 183, 183, 768, 879, 8255, 8256, 1, 0, 48, 57, 3, 0, 48, 57, 65, 70, 97, 102, 12, 0, 9, 9, 32, 32, 133, 133, 160, 160, 5760, 5760, 6158, 6158, 8192, 8203, 8232, 8233, 8239, 8239, 8287, 8287, 12288, 12288, 65279, 65279, 1241, 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, 1, 117, 1, 0, 0, 0, 3, 131, 1, 0, 0, 0, 5, 143, 1, 0, 0, 0, 7, 149, 1, 0, 0, 0, 9, 167, 1, 0, 0, 0, 11, 169, 1, 0, 0, 0, 13, 181, 1, 0, 0, 0, 15, 183, 1, 0, 0, 0, 17, 186, 1, 0, 0, 0, 19, 188, 1, 0, 0, 0, 21, 190, 1, 0, 0, 0, 23, 193, 1, 0, 0, 0, 25, 196, 1, 0, 0, 0, 27, 198, 1, 0, 0, 0, 29, 200, 1, 0, 0, 0, 31, 202, 1, 0, 0, 0, 33, 204, 1, 0, 0, 0, 35, 207, 1, 0, 0, 0, 37, 210, 1, 0, 0, 0, 39, 212, 1, 0, 0, 0, 41, 214, 1, 0, 0, 0, 43, 216, 1, 0, 0, 0, 45, 218, 1, 0, 0, 0, 47, 220, 1, 0, 0, 0, 49, 222, 1, 0, 0, 0, 51, 224, 1, 0, 0, 0, 53, 226, 1, 0, 0, 0, 55, 228, 1, 0, 0, 0, 57, 231, 1, 0, 0, 0, 59, 235, 1, 0, 0, 0, 61, 240, 1, 0, 0, 0, 63, 246, 1, 0, 0, 0, 65, 251, 1, 0, 0, 0, 67, 260, 1, 0, 0, 0, 69, 269, 1, 0, 0, 0, 71, 273, 1, 0, 0, 0, 73, 276, 1, 0, 0, 0, 75, 283, 1, 0, 0, 0, 77, 286, 1, 0, 0, 0, 79, 291, 1, 0, 0, 0, 81, 296, 1, 0, 0, 0, 83, 301, 1, 0, 0, 0, 85, 307, 1, 0, 0, 0, 87, 317, 1, 0, 0, 0, 89, 321, 1, 0, 0, 0, 91, 324, 1, 0, 0, 0, 93, 332, 1, 0, 0, 0, 95, 1101, 1, 0, 0, 0, 97, 1103, 1, 0, 0, 0, 99, 1110, 1, 0, 0, 0, 101, 1126, 1, 0, 0, 0, 103, 1129, 1, 0, 0, 0, 105, 1134, 1, 0, 0, 0, 107, 1136, 1, 0, 0, 0, 109, 1138, 1, 0, 0, 0, 111, 1140, 1, 0, 0, 0, 113, 1149, 1, 0, 0, 0, 115, 1151, 1, 0, 0, 0, 117, 118, 5, 47, 0, 0, 118, 119, 5, 42, 0, 0, 119, 123, 1, 0, 0, 0, 120, 122, 9, 0, 0, 0, 121, 120, 1, 0, 0, 0, 122, 125, 1, 0, 0, 0, 123, 124, 1, 0, 0, 0, 123, 121, 1, 0, 0, 0, 124, 126, 1, 0, 0, 0, 125, 123, 1, 0, 0, 0, 126, 127, 5, 42, 0, 0, 127, 128, 5, 47, 0, 0, 128, 129, 1, 0, 0, 0, 129, 130, 6, 0, 0, 0, 130, 2, 1, 0, 0, 0, 131, 132, 5, 47, 0, 0, 132, 133, 5, 47, 0, 0, 133, 137, 1, 0, 0, 0, 134, 136, 8, 0, 0, 0, 135, 134, 1, 0, 0, 0, 136, 139, 1, 0, 0, 0, 137, 135, 1, 0, 0, 0, 137, 138, 1, 0, 0, 0, 138, 140, 1, 0, 0, 0, 139, 137, 1, 0, 0, 0, 140, 141, 6, 1, 0, 0, 141, 4, 1, 0, 0, 0, 142, 144, 3, 113, 56, 0, 143, 142, 1, 0, 0, 0, 144, 145, 1, 0, 0, 0, 145, 143, 1, 0, 0, 0, 145, 146, 1, 0, 0, 0, 146, 147, 1, 0, 0, 0, 147, 148, 6, 2, 0, 0, 148, 6, 1, 0, 0, 0, 149, 154, 5, 34, 0, 0, 150, 153, 3, 97, 48, 0, 151, 153, 8, 1, 0, 0, 152, 150, 1, 0, 0, 0, 152, 151, 1, 0, 0, 0, 153, 156, 1, 0, 0, 0, 154, 152, 1, 0, 0, 0, 154, 155, 1, 0, 0, 0, 155, 157, 1, 0, 0, 0, 156, 154, 1, 0, 0, 0, 157, 158, 5, 34, 0, 0, 158, 159, 6, 3, 1, 0, 159, 8, 1, 0, 0, 0, 160, 163, 3, 111, 55, 0, 161, 162, 5, 46, 0, 0, 162, 164, 3, 111, 55, 0, 163, 161, 1, 0, 0, 0, 163, 164, 1, 0, 0, 0, 164, 168, 1, 0, 0, 0, 165, 166, 5, 46, 0, 0, 166, 168, 3, 111, 55, 0, 167, 160, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 10, 1, 0, 0, 0, 169, 173, 5, 64, 0, 0, 170, 172, 3, 113, 56, 0, 171, 170, 1, 0, 0, 0, 172, 175, 1, 0, 0, 0, 173, 171, 1, 0, 0, 0, 173, 174, 1, 0, 0, 0, 174, 176, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 176, 177, 3, 7, 3, 0, 177, 12, 1, 0, 0, 0, 178, 182, 5, 61, 0, 0, 179, 180, 5, 61, 0, 0, 180, 182, 5, 61, 0, 0, 181, 178, 1, 0, 0, 0, 181, 179, 1, 0, 0, 0, 182, 14, 1, 0, 0, 0, 183, 184, 5, 33, 0, 0, 184, 185, 5, 61, 0, 0, 185, 16, 1, 0, 0, 0, 186, 187, 5, 60, 0, 0, 187, 18, 1, 0, 0, 0, 188, 189, 5, 62, 0, 0, 189, 20, 1, 0, 0, 0, 190, 191, 5, 60, 0, 0, 191, 192, 5, 61, 0, 0, 192, 22, 1, 0, 0, 0, 193, 194, 5, 62, 0, 0, 194, 195, 5, 61, 0, 0, 195, 24, 1, 0, 0, 0, 196, 197, 5, 43, 0, 0, 197, 26, 1, 0, 0, 0, 198, 199, 5, 45, 0, 0, 199, 28, 1, 0, 0, 0, 200, 201, 5, 42, 0, 0, 201, 30, 1, 0, 0, 0, 202, 203, 5, 47, 0, 0, 203, 32, 1, 0, 0, 0, 204, 205, 5, 42, 0, 0, 205, 206, 5, 42, 0, 0, 206, 34, 1, 0, 0, 0, 207, 208, 5, 46, 0, 0, 208, 209, 5, 46, 0, 0, 209, 36, 1, 0, 0, 0, 210, 211, 5, 46, 0, 0, 211, 38, 1, 0, 0, 0, 212, 213, 5, 44, 0, 0, 213, 40, 1, 0, 0, 0, 214, 215, 5, 40, 0, 0, 215, 42, 1, 0, 0, 0, 216, 217, 5, 41, 0, 0, 217, 44, 1, 0, 0, 0, 218, 219, 5, 91, 0, 0, 219, 46, 1, 0, 0, 0, 220, 221, 5, 93, 0, 0, 221, 48, 1, 0, 0, 0, 222, 223, 5, 123, 0, 0, 223, 50, 1, 0, 0, 0, 224, 225, 5, 125, 0, 0, 225, 52, 1, 0, 0, 0, 226, 227, 5, 58, 0, 0, 227, 54, 1, 0, 0, 0, 228, 229, 5, 45, 0, 0, 229, 230, 5, 62, 0, 0, 230, 56, 1, 0, 0, 0, 231, 232, 5, 110, 0, 0, 232, 233, 5, 111, 0, 0, 233, 234, 5, 116, 0, 0, 234, 58, 1, 0, 0, 0, 235, 236, 5, 116, 0, 0, 236, 237, 5, 114, 0, 0, 237, 238, 5, 117, 0, 0, 238, 239, 5, 101, 0, 0, 239, 60, 1, 0, 0, 0, 240, 241, 5, 102, 0, 0, 241, 242, 5, 97, 0, 0, 242, 243, 5, 108, 0, 0, 243, 244, 5, 115, 0, 0, 244, 245, 5, 101, 0, 0, 245, 62, 1, 0, 0, 0, 246, 247, 5, 110, 0, 0, 247, 248, 5, 117, 0, 0, 248, 249, 5, 108, 0, 0, 249, 250, 5, 108, 0, 0, 250, 64, 1, 0, 0, 0, 251, 252, 5, 102, 0, 0, 252, 253, 5, 117, 0, 0, 253, 254, 5, 110, 0, 0, 254, 255, 5, 99, 0, 0, 255, 256, 5, 116, 0, 0, 256, 257, 5, 105, 0, 0, 257, 258, 5, 111, 0, 0, 258, 259, 5, 110, 0, 0, 259, 66, 1, 0, 0, 0, 260, 261, 5, 101, 0, 0, 261, 262, 5, 120, 0, 0, 262, 263, 5, 116, 0, 0, 263, 264, 5, 101, 0, 0, 264, 265, 5, 114, 0, 0, 265, 266, 5, 110, 0, 0, 266, 267, 5, 97, 0, 0, 267, 268, 5, 108, 0, 0, 268, 68, 1, 0, 0, 0, 269, 270, 5, 102, 0, 0, 270, 271, 5, 111, 0, 0, 271, 272, 5, 114, 0, 0, 272, 70, 1, 0, 0, 0, 273, 274, 5, 105, 0, 0, 274, 275, 5, 110, 0, 0, 275, 72, 1, 0, 0, 0, 276, 277, 5, 114, 0, 0, 277, 278, 5, 101, 0, 0, 278, 279, 5, 116, 0, 0, 279, 280, 5, 117, 0, 0, 280, 281, 5, 114, 0, 0, 281, 282, 5, 110, 0, 0, 282, 74, 1, 0, 0, 0, 283, 284, 5, 105, 0, 0, 284, 285, 5, 102, 0, 0, 285, 76, 1, 0, 0, 0, 286, 287, 5, 116, 0, 0, 287, 288, 5, 104, 0, 0, 288, 289, 5, 101, 0, 0, 289, 290, 5, 110, 0, 0, 290, 78, 1, 0, 0, 0, 291, 292, 5, 101, 0, 0, 292, 293, 5, 108, 0, 0, 293, 294, 5, 115, 0, 0, 294, 295, 5, 101, 0, 0, 295, 80, 1, 0, 0, 0, 296, 297, 5, 115, 0, 0, 297, 298, 5, 111, 0, 0, 298, 299, 5, 109, 0, 0, 299, 300, 5, 101, 0, 0, 300, 82, 1, 0, 0, 0, 301, 302, 5, 101, 0, 0, 302, 303, 5, 118, 0, 0, 303, 304, 5, 101, 0, 0, 304, 305, 5, 114, 0, 0, 305, 306, 5, 121, 0, 0, 306, 84, 1, 0, 0, 0, 307, 308, 5, 115, 0, 0, 308, 309, 5, 97, 0, 0, 309, 310, 5, 116, 0, 0, 310, 311, 5, 105, 0, 0, 311, 312, 5, 115, 0, 0, 312, 313, 5, 102, 0, 0, 313, 314, 5, 105, 0, 0, 314, 315, 5, 101, 0, 0, 315, 316, 5, 115, 0, 0, 316, 86, 1, 0, 0, 0, 317, 318, 5, 97, 0, 0, 318, 319, 5, 110, 0, 0, 319, 320, 5, 100, 0, 0, 320, 88, 1, 0, 0, 0, 321, 322, 5, 111, 0, 0, 322, 323, 5, 114, 0, 0, 323, 90, 1, 0, 0, 0, 324, 325, 5, 98, 0, 0, 325, 326, 5, 101, 0, 0, 326, 327, 5, 116, 0, 0, 327, 328, 5, 119, 0, 0, 328, 329, 5, 101, 0, 0, 329, 330, 5, 101, 0, 0, 330, 331, 5, 110, 0, 0, 331, 92, 1, 0, 0, 0, 332, 333, 5, 105, 0, 0, 333, 334, 5, 110, 0, 0, 334, 335, 5, 115, 0, 0, 335, 336, 5, 116, 0, 0, 336, 337, 5, 97, 0, 0, 337, 338, 5, 110, 0, 0, 338, 339, 5, 99, 0, 0, 339, 340, 5, 101, 0, 0, 340, 342, 1, 0, 0, 0, 341, 343, 3, 113, 56, 0, 342, 341, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 342, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 347, 5, 111, 0, 0, 347, 348, 5, 102, 0, 0, 348, 349, 1, 0, 0, 0, 349, 350, 6, 46, 2, 0, 350, 94, 1, 0, 0, 0, 351, 352, 5, 100, 0, 0, 352, 353, 5, 97, 0, 0, 353, 354, 5, 116, 0, 0, 354, 355, 5, 101, 0, 0, 355, 357, 1, 0, 0, 0, 356, 358, 3, 113, 56, 0, 357, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 357, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 362, 5, 97, 0, 0, 362, 363, 5, 110, 0, 0, 363, 364, 5, 100, 0, 0, 364, 366, 1, 0, 0, 0, 365, 367, 3, 113, 56, 0, 366, 365, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 371, 5, 116, 0, 0, 371, 372, 5, 105, 0, 0, 372, 373, 5, 109, 0, 0, 373, 374, 5, 101, 0, 0, 374, 375, 1, 0, 0, 0, 375, 376, 6, 47, 3, 0, 376, 1102, 1, 0, 0, 0, 377, 378, 5, 100, 0, 0, 378, 379, 5, 97, 0, 0, 379, 380, 5, 121, 0, 0, 380, 381, 5, 115, 0, 0, 381, 383, 1, 0, 0, 0, 382, 384, 3, 113, 56, 0, 383, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 383, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 388, 5, 97, 0, 0, 388, 389, 5, 110, 0, 0, 389, 390, 5, 100, 0, 0, 390, 392, 1, 0, 0, 0, 391, 393, 3, 113, 56, 0, 392, 391, 1, 0, 0, 0, 393, 394, 1, 0, 0, 0, 394, 392, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 397, 5, 116, 0, 0, 397, 398, 5, 105, 0, 0, 398, 399, 5, 109, 0, 0, 399, 400, 5, 101, 0, 0, 400, 402, 1, 0, 0, 0, 401, 403, 3, 113, 56, 0, 402, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 402, 1, 0, 0, 0, 404, 405, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 407, 5, 100, 0, 0, 407, 408, 5, 117, 0, 0, 408, 409, 5, 114, 0, 0, 409, 410, 5, 97, 0, 0, 410, 411, 5, 116, 0, 0, 411, 412, 5, 105, 0, 0, 412, 413, 5, 111, 0, 0, 413, 414, 5, 110, 0, 0, 414, 415, 1, 0, 0, 0, 415, 416, 6, 47, 4, 0, 416, 1102, 1, 0, 0, 0, 417, 418, 5, 121, 0, 0, 418, 419, 5, 101, 0, 0, 419, 420, 5, 97, 0, 0, 420, 421, 5, 114, 0, 0, 421, 422, 5, 115, 0, 0, 422, 424, 1, 0, 0, 0, 423, 425, 3, 113, 56, 0, 424, 423, 1, 0, 0, 0, 425, 426, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 429, 5, 97, 0, 0, 429, 430, 5, 110, 0, 0, 430, 431, 5, 100, 0, 0, 431, 433, 1, 0, 0, 0, 432, 434, 3, 113, 56, 0, 433, 432, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 438, 5, 109, 0, 0, 438, 439, 5, 111, 0, 0, 439, 440, 5, 110, 0, 0, 440, 441, 5, 116, 0, 0, 441, 442, 5, 104, 0, 0, 442, 443, 5, 115, 0, 0, 443, 445, 1, 0, 0, 0, 444, 446, 3, 113, 56, 0, 445, 444, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 450, 5, 100, 0, 0, 450, 451, 5, 117, 0, 0, 451, 452, 5, 114, 0, 0, 452, 453, 5, 97, 0, 0, 453, 454, 5, 116, 0, 0, 454, 455, 5, 105, 0, 0, 455, 456, 5, 111, 0, 0, 456, 457, 5, 110, 0, 0, 457, 458, 1, 0, 0, 0, 458, 459, 6, 47, 5, 0, 459, 1102, 1, 0, 0, 0, 460, 461, 5, 115, 0, 0, 461, 462, 5, 116, 0, 0, 462, 463, 5, 114, 0, 0, 463, 464, 5, 105, 0, 0, 464, 465, 5, 110, 0, 0, 465, 466, 5, 103, 0, 0, 466, 468, 1, 0, 0, 0, 467, 469, 3, 113, 56, 0, 468, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 473, 5, 108, 0, 0, 473, 474, 5, 101, 0, 0, 474, 475, 5, 110, 0, 0, 475, 476, 5, 103, 0, 0, 476, 477, 5, 116, 0, 0, 477, 478, 5, 104, 0, 0, 478, 479, 1, 0, 0, 0, 479, 480, 6, 47, 6, 0, 480, 1102, 1, 0, 0, 0, 481, 482, 5, 117, 0, 0, 482, 483, 5, 112, 0, 0, 483, 484, 5, 112, 0, 0, 484, 485, 5, 101, 0, 0, 485, 486, 5, 114, 0, 0, 486, 488, 1, 0, 0, 0, 487, 489, 3, 113, 56, 0, 488, 487, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 488, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 493, 5, 99, 0, 0, 493, 494, 5, 97, 0, 0, 494, 495, 5, 115, 0, 0, 495, 496, 5, 101, 0, 0, 496, 497, 1, 0, 0, 0, 497, 498, 6, 47, 7, 0, 498, 1102, 1, 0, 0, 0, 499, 500, 5, 108, 0, 0, 500, 501, 5, 111, 0, 0, 501, 502, 5, 119, 0, 0, 502, 503, 5, 101, 0, 0, 503, 504, 5, 114, 0, 0, 504, 506, 1, 0, 0, 0, 505, 507, 3, 113, 56, 0, 506, 505, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 5, 99, 0, 0, 511, 512, 5, 97, 0, 0, 512, 513, 5, 115, 0, 0, 513, 514, 5, 101, 0, 0, 514, 515, 1, 0, 0, 0, 515, 516, 6, 47, 8, 0, 516, 1102, 1, 0, 0, 0, 517, 518, 5, 115, 0, 0, 518, 519, 5, 117, 0, 0, 519, 520, 5, 98, 0, 0, 520, 521, 5, 115, 0, 0, 521, 522, 5, 116, 0, 0, 522, 523, 5, 114, 0, 0, 523, 524, 5, 105, 0, 0, 524, 525, 5, 110, 0, 0, 525, 526, 5, 103, 0, 0, 526, 528, 1, 0, 0, 0, 527, 529, 3, 113, 56, 0, 528, 527, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 528, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 533, 5, 98, 0, 0, 533, 534, 5, 101, 0, 0, 534, 535, 5, 102, 0, 0, 535, 536, 5, 111, 0, 0, 536, 537, 5, 114, 0, 0, 537, 538, 5, 101, 0, 0, 538, 539, 1, 0, 0, 0, 539, 540, 6, 47, 9, 0, 540, 1102, 1, 0, 0, 0, 541, 542, 5, 115, 0, 0, 542, 543, 5, 117, 0, 0, 543, 544, 5, 98, 0, 0, 544, 545, 5, 115, 0, 0, 545, 546, 5, 116, 0, 0, 546, 547, 5, 114, 0, 0, 547, 548, 5, 105, 0, 0, 548, 549, 5, 110, 0, 0, 549, 550, 5, 103, 0, 0, 550, 552, 1, 0, 0, 0, 551, 553, 3, 113, 56, 0, 552, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 557, 5, 97, 0, 0, 557, 558, 5, 102, 0, 0, 558, 559, 5, 116, 0, 0, 559, 560, 5, 101, 0, 0, 560, 561, 5, 114, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 6, 47, 10, 0, 563, 1102, 1, 0, 0, 0, 564, 565, 5, 115, 0, 0, 565, 566, 5, 116, 0, 0, 566, 567, 5, 97, 0, 0, 567, 568, 5, 114, 0, 0, 568, 569, 5, 116, 0, 0, 569, 570, 5, 115, 0, 0, 570, 572, 1, 0, 0, 0, 571, 573, 3, 113, 56, 0, 572, 571, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 572, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 577, 5, 119, 0, 0, 577, 578, 5, 105, 0, 0, 578, 579, 5, 116, 0, 0, 579, 580, 5, 104, 0, 0, 580, 581, 1, 0, 0, 0, 581, 582, 6, 47, 11, 0, 582, 1102, 1, 0, 0, 0, 583, 584, 5, 101, 0, 0, 584, 585, 5, 110, 0, 0, 585, 586, 5, 100, 0, 0, 586, 587, 5, 115, 0, 0, 587, 589, 1, 0, 0, 0, 588, 590, 3, 113, 56, 0, 589, 588, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 589, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 5, 119, 0, 0, 594, 595, 5, 105, 0, 0, 595, 596, 5, 116, 0, 0, 596, 597, 5, 104, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 6, 47, 12, 0, 599, 1102, 1, 0, 0, 0, 600, 601, 5, 115, 0, 0, 601, 602, 5, 116, 0, 0, 602, 603, 5, 97, 0, 0, 603, 604, 5, 114, 0, 0, 604, 605, 5, 116, 0, 0, 605, 607, 1, 0, 0, 0, 606, 608, 3, 113, 56, 0, 607, 606, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 607, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 5, 112, 0, 0, 612, 613, 5, 111, 0, 0, 613, 614, 5, 115, 0, 0, 614, 615, 5, 105, 0, 0, 615, 616, 5, 116, 0, 0, 616, 617, 5, 105, 0, 0, 617, 618, 5, 111, 0, 0, 618, 619, 5, 110, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 6, 47, 13, 0, 621, 1102, 1, 0, 0, 0, 622, 623, 5, 108, 0, 0, 623, 624, 5, 105, 0, 0, 624, 625, 5, 115, 0, 0, 625, 626, 5, 116, 0, 0, 626, 628, 1, 0, 0, 0, 627, 629, 3, 113, 56, 0, 628, 627, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 633, 5, 99, 0, 0, 633, 634, 5, 111, 0, 0, 634, 635, 5, 110, 0, 0, 635, 636, 5, 116, 0, 0, 636, 637, 5, 97, 0, 0, 637, 638, 5, 105, 0, 0, 638, 639, 5, 110, 0, 0, 639, 640, 5, 115, 0, 0, 640, 641, 1, 0, 0, 0, 641, 642, 6, 47, 14, 0, 642, 1102, 1, 0, 0, 0, 643, 644, 5, 105, 0, 0, 644, 645, 5, 110, 0, 0, 645, 646, 5, 115, 0, 0, 646, 647, 5, 101, 0, 0, 647, 648, 5, 114, 0, 0, 648, 649, 5, 116, 0, 0, 649, 651, 1, 0, 0, 0, 650, 652, 3, 113, 56, 0, 651, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 5, 98, 0, 0, 656, 657, 5, 101, 0, 0, 657, 658, 5, 102, 0, 0, 658, 659, 5, 111, 0, 0, 659, 660, 5, 114, 0, 0, 660, 661, 5, 101, 0, 0, 661, 662, 1, 0, 0, 0, 662, 663, 6, 47, 15, 0, 663, 1102, 1, 0, 0, 0, 664, 665, 5, 105, 0, 0, 665, 666, 5, 110, 0, 0, 666, 667, 5, 100, 0, 0, 667, 668, 5, 101, 0, 0, 668, 669, 5, 120, 0, 0, 669, 671, 1, 0, 0, 0, 670, 672, 3, 113, 56, 0, 671, 670, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 676, 5, 111, 0, 0, 676, 677, 5, 102, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 6, 47, 16, 0, 679, 1102, 1, 0, 0, 0, 680, 681, 5, 100, 0, 0, 681, 682, 5, 105, 0, 0, 682, 683, 5, 115, 0, 0, 683, 684, 5, 116, 0, 0, 684, 685, 5, 105, 0, 0, 685, 686, 5, 110, 0, 0, 686, 687, 5, 99, 0, 0, 687, 688, 5, 116, 0, 0, 688, 690, 1, 0, 0, 0, 689, 691, 3, 113, 56, 0, 690, 689, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 690, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 5, 118, 0, 0, 695, 696, 5, 97, 0, 0, 696, 697, 5, 108, 0, 0, 697, 698, 5, 117, 0, 0, 698, 699, 5, 101, 0, 0, 699, 700, 5, 115, 0, 0, 700, 701, 1, 0, 0, 0, 701, 702, 6, 47, 17, 0, 702, 1102, 1, 0, 0, 0, 703, 704, 5, 103, 0, 0, 704, 705, 5, 101, 0, 0, 705, 706, 5, 116, 0, 0, 706, 708, 1, 0, 0, 0, 707, 709, 3, 113, 56, 0, 708, 707, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 708, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 5, 101, 0, 0, 713, 714, 5, 110, 0, 0, 714, 715, 5, 116, 0, 0, 715, 716, 5, 114, 0, 0, 716, 717, 5, 105, 0, 0, 717, 718, 5, 101, 0, 0, 718, 719, 5, 115, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 6, 47, 18, 0, 721, 1102, 1, 0, 0, 0, 722, 723, 5, 103, 0, 0, 723, 724, 5, 101, 0, 0, 724, 725, 5, 116, 0, 0, 725, 727, 1, 0, 0, 0, 726, 728, 3, 113, 56, 0, 727, 726, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 732, 5, 118, 0, 0, 732, 733, 5, 97, 0, 0, 733, 734, 5, 108, 0, 0, 734, 735, 5, 117, 0, 0, 735, 736, 5, 101, 0, 0, 736, 737, 1, 0, 0, 0, 737, 738, 6, 47, 19, 0, 738, 1102, 1, 0, 0, 0, 739, 740, 5, 109, 0, 0, 740, 741, 5, 101, 0, 0, 741, 742, 5, 116, 0, 0, 742, 744, 1, 0, 0, 0, 743, 745, 3, 113, 56, 0, 744, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 744, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 5, 98, 0, 0, 749, 750, 5, 121, 0, 0, 750, 751, 1, 0, 0, 0, 751, 752, 6, 47, 20, 0, 752, 1102, 1, 0, 0, 0, 753, 754, 5, 111, 0, 0, 754, 755, 5, 118, 0, 0, 755, 756, 5, 101, 0, 0, 756, 757, 5, 114, 0, 0, 757, 758, 5, 108, 0, 0, 758, 759, 5, 97, 0, 0, 759, 760, 5, 112, 0, 0, 760, 761, 5, 115, 0, 0, 761, 763, 1, 0, 0, 0, 762, 764, 3, 113, 56, 0, 763, 762, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 763, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 98, 0, 0, 768, 769, 5, 101, 0, 0, 769, 770, 5, 102, 0, 0, 770, 771, 5, 111, 0, 0, 771, 772, 5, 114, 0, 0, 772, 773, 5, 101, 0, 0, 773, 774, 1, 0, 0, 0, 774, 775, 6, 47, 21, 0, 775, 1102, 1, 0, 0, 0, 776, 777, 5, 111, 0, 0, 777, 778, 5, 118, 0, 0, 778, 779, 5, 101, 0, 0, 779, 780, 5, 114, 0, 0, 780, 781, 5, 108, 0, 0, 781, 782, 5, 97, 0, 0, 782, 783, 5, 112, 0, 0, 783, 784, 5, 115, 0, 0, 784, 786, 1, 0, 0, 0, 785, 787, 3, 113, 56, 0, 786, 785, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 786, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 791, 5, 97, 0, 0, 791, 792, 5, 102, 0, 0, 792, 793, 5, 116, 0, 0, 793, 794, 5, 101, 0, 0, 794, 795, 5, 114, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 6, 47, 22, 0, 797, 1102, 1, 0, 0, 0, 798, 799, 5, 102, 0, 0, 799, 800, 5, 105, 0, 0, 800, 801, 5, 110, 0, 0, 801, 802, 5, 105, 0, 0, 802, 803, 5, 115, 0, 0, 803, 804, 5, 104, 0, 0, 804, 805, 5, 101, 0, 0, 805, 806, 5, 100, 0, 0, 806, 808, 1, 0, 0, 0, 807, 809, 3, 113, 56, 0, 808, 807, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 813, 5, 98, 0, 0, 813, 814, 5, 121, 0, 0, 814, 815, 1, 0, 0, 0, 815, 816, 6, 47, 23, 0, 816, 1102, 1, 0, 0, 0, 817, 818, 5, 115, 0, 0, 818, 819, 5, 116, 0, 0, 819, 820, 5, 97, 0, 0, 820, 821, 5, 114, 0, 0, 821, 822, 5, 116, 0, 0, 822, 823, 5, 101, 0, 0, 823, 824, 5, 100, 0, 0, 824, 826, 1, 0, 0, 0, 825, 827, 3, 113, 56, 0, 826, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 831, 5, 98, 0, 0, 831, 832, 5, 121, 0, 0, 832, 833, 1, 0, 0, 0, 833, 834, 6, 47, 24, 0, 834, 1102, 1, 0, 0, 0, 835, 836, 5, 115, 0, 0, 836, 837, 5, 116, 0, 0, 837, 838, 5, 97, 0, 0, 838, 839, 5, 114, 0, 0, 839, 840, 5, 116, 0, 0, 840, 842, 1, 0, 0, 0, 841, 843, 3, 113, 56, 0, 842, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 847, 5, 105, 0, 0, 847, 848, 5, 110, 0, 0, 848, 849, 5, 99, 0, 0, 849, 850, 5, 108, 0, 0, 850, 851, 5, 117, 0, 0, 851, 852, 5, 100, 0, 0, 852, 853, 5, 101, 0, 0, 853, 854, 5, 100, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 6, 47, 25, 0, 856, 1102, 1, 0, 0, 0, 857, 858, 5, 101, 0, 0, 858, 859, 5, 110, 0, 0, 859, 860, 5, 100, 0, 0, 860, 862, 1, 0, 0, 0, 861, 863, 3, 113, 56, 0, 862, 861, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 862, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 867, 5, 105, 0, 0, 867, 868, 5, 110, 0, 0, 868, 869, 5, 99, 0, 0, 869, 870, 5, 108, 0, 0, 870, 871, 5, 117, 0, 0, 871, 872, 5, 100, 0, 0, 872, 873, 5, 101, 0, 0, 873, 874, 5, 100, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 6, 47, 26, 0, 876, 1102, 1, 0, 0, 0, 877, 878, 5, 100, 0, 0, 878, 879, 5, 97, 0, 0, 879, 880, 5, 121, 0, 0, 880, 882, 1, 0, 0, 0, 881, 883, 3, 113, 56, 0, 882, 881, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 882, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 887, 5, 111, 0, 0, 887, 888, 5, 102, 0, 0, 888, 890, 1, 0, 0, 0, 889, 891, 3, 113, 56, 0, 890, 889, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 895, 5, 121, 0, 0, 895, 896, 5, 101, 0, 0, 896, 897, 5, 97, 0, 0, 897, 898, 5, 114, 0, 0, 898, 899, 1, 0, 0, 0, 899, 900, 6, 47, 27, 0, 900, 1102, 1, 0, 0, 0, 901, 902, 5, 100, 0, 0, 902, 903, 5, 97, 0, 0, 903, 904, 5, 121, 0, 0, 904, 906, 1, 0, 0, 0, 905, 907, 3, 113, 56, 0, 906, 905, 1, 0, 0, 0, 907, 908, 1, 0, 0, 0, 908, 906, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 911, 5, 111, 0, 0, 911, 912, 5, 102, 0, 0, 912, 914, 1, 0, 0, 0, 913, 915, 3, 113, 56, 0, 914, 913, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 914, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 919, 5, 119, 0, 0, 919, 920, 5, 101, 0, 0, 920, 921, 5, 101, 0, 0, 921, 922, 5, 107, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 6, 47, 28, 0, 924, 1102, 1, 0, 0, 0, 925, 926, 5, 109, 0, 0, 926, 927, 5, 111, 0, 0, 927, 928, 5, 110, 0, 0, 928, 929, 5, 116, 0, 0, 929, 930, 5, 104, 0, 0, 930, 932, 1, 0, 0, 0, 931, 933, 3, 113, 56, 0, 932, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 932, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 5, 111, 0, 0, 937, 938, 5, 102, 0, 0, 938, 940, 1, 0, 0, 0, 939, 941, 3, 113, 56, 0, 940, 939, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 940, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 945, 5, 121, 0, 0, 945, 946, 5, 101, 0, 0, 946, 947, 5, 97, 0, 0, 947, 948, 5, 114, 0, 0, 948, 949, 1, 0, 0, 0, 949, 950, 6, 47, 29, 0, 950, 1102, 1, 0, 0, 0, 951, 952, 5, 119, 0, 0, 952, 953, 5, 101, 0, 0, 953, 954, 5, 101, 0, 0, 954, 955, 5, 107, 0, 0, 955, 957, 1, 0, 0, 0, 956, 958, 3, 113, 56, 0, 957, 956, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 957, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 5, 111, 0, 0, 962, 963, 5, 102, 0, 0, 963, 965, 1, 0, 0, 0, 964, 966, 3, 113, 56, 0, 965, 964, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 965, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 970, 5, 121, 0, 0, 970, 971, 5, 101, 0, 0, 971, 972, 5, 97, 0, 0, 972, 973, 5, 114, 0, 0, 973, 974, 1, 0, 0, 0, 974, 975, 6, 47, 30, 0, 975, 1102, 1, 0, 0, 0, 976, 977, 5, 114, 0, 0, 977, 978, 5, 111, 0, 0, 978, 979, 5, 117, 0, 0, 979, 980, 5, 110, 0, 0, 980, 981, 5, 100, 0, 0, 981, 983, 1, 0, 0, 0, 982, 984, 3, 113, 56, 0, 983, 982, 1, 0, 0, 0, 984, 985, 1, 0, 0, 0, 985, 983, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 5, 117, 0, 0, 988, 989, 5, 112, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 6, 47, 31, 0, 991, 1102, 1, 0, 0, 0, 992, 993, 5, 114, 0, 0, 993, 994, 5, 111, 0, 0, 994, 995, 5, 117, 0, 0, 995, 996, 5, 110, 0, 0, 996, 997, 5, 100, 0, 0, 997, 999, 1, 0, 0, 0, 998, 1000, 3, 113, 56, 0, 999, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 999, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1004, 5, 100, 0, 0, 1004, 1005, 5, 111, 0, 0, 1005, 1006, 5, 119, 0, 0, 1006, 1007, 5, 110, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1009, 6, 47, 32, 0, 1009, 1102, 1, 0, 0, 0, 1010, 1011, 5, 114, 0, 0, 1011, 1012, 5, 111, 0, 0, 1012, 1013, 5, 117, 0, 0, 1013, 1014, 5, 110, 0, 0, 1014, 1015, 5, 100, 0, 0, 1015, 1017, 1, 0, 0, 0, 1016, 1018, 3, 113, 56, 0, 1017, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1017, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1022, 5, 104, 0, 0, 1022, 1023, 5, 97, 0, 0, 1023, 1024, 5, 108, 0, 0, 1024, 1025, 5, 102, 0, 0, 1025, 1027, 1, 0, 0, 0, 1026, 1028, 3, 113, 56, 0, 1027, 1026, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1027, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1032, 5, 117, 0, 0, 1032, 1033, 5, 112, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 6, 47, 33, 0, 1035, 1102, 1, 0, 0, 0, 1036, 1037, 5, 114, 0, 0, 1037, 1038, 5, 111, 0, 0, 1038, 1039, 5, 117, 0, 0, 1039, 1040, 5, 110, 0, 0, 1040, 1041, 5, 100, 0, 0, 1041, 1043, 1, 0, 0, 0, 1042, 1044, 3, 113, 56, 0, 1043, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1043, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 5, 104, 0, 0, 1048, 1049, 5, 97, 0, 0, 1049, 1050, 5, 108, 0, 0, 1050, 1051, 5, 102, 0, 0, 1051, 1053, 1, 0, 0, 0, 1052, 1054, 3, 113, 56, 0, 1053, 1052, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1053, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1058, 5, 100, 0, 0, 1058, 1059, 5, 111, 0, 0, 1059, 1060, 5, 119, 0, 0, 1060, 1061, 5, 110, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 6, 47, 34, 0, 1063, 1102, 1, 0, 0, 0, 1064, 1065, 5, 116, 0, 0, 1065, 1066, 5, 105, 0, 0, 1066, 1067, 5, 109, 0, 0, 1067, 1068, 5, 101, 0, 0, 1068, 1070, 1, 0, 0, 0, 1069, 1071, 3, 113, 56, 0, 1070, 1069, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1070, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1075, 5, 111, 0, 0, 1075, 1076, 5, 102, 0, 0, 1076, 1077, 5, 102, 0, 0, 1077, 1078, 5, 115, 0, 0, 1078, 1079, 5, 101, 0, 0, 1079, 1080, 5, 116, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 6, 47, 35, 0, 1082, 1102, 1, 0, 0, 0, 1083, 1087, 3, 103, 51, 0, 1084, 1086, 3, 105, 52, 0, 1085, 1084, 1, 0, 0, 0, 1086, 1089, 1, 0, 0, 0, 1087, 1085, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1102, 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1090, 1096, 5, 39, 0, 0, 1091, 1095, 8, 2, 0, 0, 1092, 1093, 5, 39, 0, 0, 1093, 1095, 5, 39, 0, 0, 1094, 1091, 1, 0, 0, 0, 1094, 1092, 1, 0, 0, 0, 1095, 1098, 1, 0, 0, 0, 1096, 1094, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1099, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1099, 1100, 5, 39, 0, 0, 1100, 1102, 6, 47, 36, 0, 1101, 351, 1, 0, 0, 0, 1101, 377, 1, 0, 0, 0, 1101, 417, 1, 0, 0, 0, 1101, 460, 1, 0, 0, 0, 1101, 481, 1, 0, 0, 0, 1101, 499, 1, 0, 0, 0, 1101, 517, 1, 0, 0, 0, 1101, 541, 1, 0, 0, 0, 1101, 564, 1, 0, 0, 0, 1101, 583, 1, 0, 0, 0, 1101, 600, 1, 0, 0, 0, 1101, 622, 1, 0, 0, 0, 1101, 643, 1, 0, 0, 0, 1101, 664, 1, 0, 0, 0, 1101, 680, 1, 0, 0, 0, 1101, 703, 1, 0, 0, 0, 1101, 722, 1, 0, 0, 0, 1101, 739, 1, 0, 0, 0, 1101, 753, 1, 0, 0, 0, 1101, 776, 1, 0, 0, 0, 1101, 798, 1, 0, 0, 0, 1101, 817, 1, 0, 0, 0, 1101, 835, 1, 0, 0, 0, 1101, 857, 1, 0, 0, 0, 1101, 877, 1, 0, 0, 0, 1101, 901, 1, 0, 0, 0, 1101, 925, 1, 0, 0, 0, 1101, 951, 1, 0, 0, 0, 1101, 976, 1, 0, 0, 0, 1101, 992, 1, 0, 0, 0, 1101, 1010, 1, 0, 0, 0, 1101, 1036, 1, 0, 0, 0, 1101, 1064, 1, 0, 0, 0, 1101, 1083, 1, 0, 0, 0, 1101, 1090, 1, 0, 0, 0, 1102, 96, 1, 0, 0, 0, 1103, 1108, 3, 99, 49, 0, 1104, 1109, 7, 3, 0, 0, 1105, 1109, 3, 101, 50, 0, 1106, 1109, 9, 0, 0, 0, 1107, 1109, 5, 0, 0, 1, 1108, 1104, 1, 0, 0, 0, 1108, 1105, 1, 0, 0, 0, 1108, 1106, 1, 0, 0, 0, 1108, 1107, 1, 0, 0, 0, 1109, 98, 1, 0, 0, 0, 1110, 1111, 5, 92, 0, 0, 1111, 100, 1, 0, 0, 0, 1112, 1113, 5, 117, 0, 0, 1113, 1114, 3, 109, 54, 0, 1114, 1115, 3, 109, 54, 0, 1115, 1116, 3, 109, 54, 0, 1116, 1117, 3, 109, 54, 0, 1117, 1127, 1, 0, 0, 0, 1118, 1119, 5, 85, 0, 0, 1119, 1120, 3, 109, 54, 0, 1120, 1121, 3, 109, 54, 0, 1121, 1122, 3, 109, 54, 0, 1122, 1123, 3, 109, 54, 0, 1123, 1124, 3, 109, 54, 0, 1124, 1125, 3, 109, 54, 0, 1125, 1127, 1, 0, 0, 0, 1126, 1112, 1, 0, 0, 0, 1126, 1118, 1, 0, 0, 0, 1127, 102, 1, 0, 0, 0, 1128, 1130, 7, 4, 0, 0, 1129, 1128, 1, 0, 0, 0, 1130, 104, 1, 0, 0, 0, 1131, 1135, 3, 103, 51, 0, 1132, 1135, 3, 107, 53, 0, 1133, 1135, 7, 5, 0, 0, 1134, 1131, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1134, 1133, 1, 0, 0, 0, 1135, 106, 1, 0, 0, 0, 1136, 1137, 7, 6, 0, 0, 1137, 108, 1, 0, 0, 0, 1138, 1139, 7, 7, 0, 0, 1139, 110, 1, 0, 0, 0, 1140, 1144, 3, 107, 53, 0, 1141, 1143, 3, 107, 53, 0, 1142, 1141, 1, 0, 0, 0, 1143, 1146, 1, 0, 0, 0, 1144, 1142, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 112, 1, 0, 0, 0, 1146, 1144, 1, 0, 0, 0, 1147, 1150, 3, 115, 57, 0, 1148, 1150, 7, 8, 0, 0, 1149, 1147, 1, 0, 0, 0, 1149, 1148, 1, 0, 0, 0, 1150, 114, 1, 0, 0, 0, 1151, 1152, 7, 0, 0, 0, 1152, 116, 1, 0, 0, 0, 65, 0, 123, 137, 145, 152, 154, 163, 167, 173, 181, 344, 359, 368, 385, 394, 404, 426, 435, 447, 470, 490, 508, 530, 554, 574, 591, 609, 630, 653, 673, 692, 710, 729, 746, 765, 788, 810, 828, 844, 864, 884, 892, 908, 916, 934, 942, 959, 967, 985, 1001, 1019, 1029, 1045, 1055, 1072, 1087, 1094, 1096, 1101, 1108, 1126, 1129, 1134, 1144, 1149, 37, 6, 0, 0, 1, 3, 0, 1, 46, 1, 1, 47, 2, 1, 47, 3, 1, 47, 4, 1, 47, 5, 1, 47, 6, 1, 47, 7, 1, 47, 8, 1, 47, 9, 1, 47, 10, 1, 47, 11, 1, 47, 12, 1, 47, 13, 1, 47, 14, 1, 47, 15, 1, 47, 16, 1, 47, 17, 1, 47, 18, 1, 47, 19, 1, 47, 20, 1, 47, 21, 1, 47, 22, 1, 47, 23, 1, 47, 24, 1, 47, 25, 1, 47, 26, 1, 47, 27, 1, 47, 28, 1, 47, 29, 1, 47, 30, 1, 47, 31, 1, 47, 32, 1, 47, 33, 1, 47, 34, 1, 47, 35] \ No newline at end of file +[4, 0, 48, 1212, 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, 1, 0, 1, 0, 1, 0, 1, 0, 5, 0, 122, 8, 0, 10, 0, 12, 0, 125, 9, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 136, 8, 1, 10, 1, 12, 1, 139, 9, 1, 1, 1, 1, 1, 1, 2, 4, 2, 144, 8, 2, 11, 2, 12, 2, 145, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 5, 3, 153, 8, 3, 10, 3, 12, 3, 156, 9, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 3, 4, 164, 8, 4, 1, 4, 1, 4, 3, 4, 168, 8, 4, 1, 5, 1, 5, 5, 5, 172, 8, 5, 10, 5, 12, 5, 175, 9, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 3, 6, 182, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 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, 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, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 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, 4, 46, 343, 8, 46, 11, 46, 12, 46, 344, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 358, 8, 47, 11, 47, 12, 47, 359, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 367, 8, 47, 11, 47, 12, 47, 368, 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, 4, 47, 384, 8, 47, 11, 47, 12, 47, 385, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 393, 8, 47, 11, 47, 12, 47, 394, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 403, 8, 47, 11, 47, 12, 47, 404, 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, 47, 4, 47, 425, 8, 47, 11, 47, 12, 47, 426, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 434, 8, 47, 11, 47, 12, 47, 435, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 446, 8, 47, 11, 47, 12, 47, 447, 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, 47, 4, 47, 468, 8, 47, 11, 47, 12, 47, 469, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 484, 8, 47, 11, 47, 12, 47, 485, 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, 4, 47, 502, 8, 47, 11, 47, 12, 47, 503, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 512, 8, 47, 11, 47, 12, 47, 513, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 528, 8, 47, 11, 47, 12, 47, 529, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 538, 8, 47, 11, 47, 12, 47, 539, 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, 4, 47, 557, 8, 47, 11, 47, 12, 47, 558, 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, 4, 47, 577, 8, 47, 11, 47, 12, 47, 578, 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, 4, 47, 595, 8, 47, 11, 47, 12, 47, 596, 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, 47, 4, 47, 617, 8, 47, 11, 47, 12, 47, 618, 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, 47, 1, 47, 1, 47, 4, 47, 641, 8, 47, 11, 47, 12, 47, 642, 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, 4, 47, 661, 8, 47, 11, 47, 12, 47, 662, 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, 4, 47, 678, 8, 47, 11, 47, 12, 47, 679, 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, 4, 47, 697, 8, 47, 11, 47, 12, 47, 698, 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, 4, 47, 715, 8, 47, 11, 47, 12, 47, 716, 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, 4, 47, 736, 8, 47, 11, 47, 12, 47, 737, 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, 47, 1, 47, 4, 47, 759, 8, 47, 11, 47, 12, 47, 760, 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, 4, 47, 779, 8, 47, 11, 47, 12, 47, 780, 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, 4, 47, 798, 8, 47, 11, 47, 12, 47, 799, 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, 4, 47, 816, 8, 47, 11, 47, 12, 47, 817, 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, 4, 47, 835, 8, 47, 11, 47, 12, 47, 836, 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, 4, 47, 856, 8, 47, 11, 47, 12, 47, 857, 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, 4, 47, 875, 8, 47, 11, 47, 12, 47, 876, 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, 4, 47, 892, 8, 47, 11, 47, 12, 47, 893, 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, 4, 47, 911, 8, 47, 11, 47, 12, 47, 912, 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, 47, 1, 47, 4, 47, 934, 8, 47, 11, 47, 12, 47, 935, 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, 47, 4, 47, 956, 8, 47, 11, 47, 12, 47, 957, 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, 4, 47, 974, 8, 47, 11, 47, 12, 47, 975, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 990, 8, 47, 11, 47, 12, 47, 991, 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, 4, 47, 1010, 8, 47, 11, 47, 12, 47, 1011, 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, 4, 47, 1030, 8, 47, 11, 47, 12, 47, 1031, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 1038, 8, 47, 11, 47, 12, 47, 1039, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 1054, 8, 47, 11, 47, 12, 47, 1055, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 1062, 8, 47, 11, 47, 12, 47, 1063, 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, 4, 47, 1080, 8, 47, 11, 47, 12, 47, 1081, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 1088, 8, 47, 11, 47, 12, 47, 1089, 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, 4, 47, 1105, 8, 47, 11, 47, 12, 47, 1106, 1, 47, 1, 47, 1, 47, 1, 47, 4, 47, 1113, 8, 47, 11, 47, 12, 47, 1114, 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, 4, 47, 1130, 8, 47, 11, 47, 12, 47, 1131, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1145, 8, 47, 10, 47, 12, 47, 1148, 9, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1154, 8, 47, 10, 47, 12, 47, 1157, 9, 47, 1, 47, 1, 47, 3, 47, 1161, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1168, 8, 48, 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, 50, 1, 50, 1, 50, 3, 50, 1186, 8, 50, 1, 51, 3, 51, 1189, 8, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1194, 8, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 55, 1, 55, 5, 55, 1202, 8, 55, 10, 55, 12, 55, 1205, 9, 55, 1, 56, 1, 56, 3, 56, 1209, 8, 56, 1, 57, 1, 57, 1, 123, 0, 58, 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, 0, 99, 0, 101, 0, 103, 0, 105, 0, 107, 0, 109, 0, 111, 0, 113, 0, 115, 0, 1, 0, 9, 1, 0, 10, 13, 2, 0, 10, 13, 34, 34, 2, 0, 10, 13, 39, 39, 8, 0, 34, 34, 39, 39, 92, 92, 98, 98, 102, 102, 110, 110, 114, 114, 116, 116, 16, 0, 63, 63, 65, 90, 95, 95, 97, 122, 192, 214, 216, 246, 248, 767, 880, 893, 895, 8191, 8204, 8205, 8304, 8591, 11264, 12271, 12289, 55295, 63744, 64975, 65008, 65533, 65536, 983039, 3, 0, 183, 183, 768, 879, 8255, 8256, 1, 0, 48, 57, 3, 0, 48, 57, 65, 70, 97, 102, 12, 0, 9, 9, 32, 32, 133, 133, 160, 160, 5760, 5760, 6158, 6158, 8192, 8203, 8232, 8233, 8239, 8239, 8287, 8287, 12288, 12288, 65279, 65279, 1306, 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, 1, 117, 1, 0, 0, 0, 3, 131, 1, 0, 0, 0, 5, 143, 1, 0, 0, 0, 7, 149, 1, 0, 0, 0, 9, 167, 1, 0, 0, 0, 11, 169, 1, 0, 0, 0, 13, 181, 1, 0, 0, 0, 15, 183, 1, 0, 0, 0, 17, 186, 1, 0, 0, 0, 19, 188, 1, 0, 0, 0, 21, 190, 1, 0, 0, 0, 23, 193, 1, 0, 0, 0, 25, 196, 1, 0, 0, 0, 27, 198, 1, 0, 0, 0, 29, 200, 1, 0, 0, 0, 31, 202, 1, 0, 0, 0, 33, 204, 1, 0, 0, 0, 35, 207, 1, 0, 0, 0, 37, 210, 1, 0, 0, 0, 39, 212, 1, 0, 0, 0, 41, 214, 1, 0, 0, 0, 43, 216, 1, 0, 0, 0, 45, 218, 1, 0, 0, 0, 47, 220, 1, 0, 0, 0, 49, 222, 1, 0, 0, 0, 51, 224, 1, 0, 0, 0, 53, 226, 1, 0, 0, 0, 55, 228, 1, 0, 0, 0, 57, 231, 1, 0, 0, 0, 59, 235, 1, 0, 0, 0, 61, 240, 1, 0, 0, 0, 63, 246, 1, 0, 0, 0, 65, 251, 1, 0, 0, 0, 67, 260, 1, 0, 0, 0, 69, 269, 1, 0, 0, 0, 71, 273, 1, 0, 0, 0, 73, 276, 1, 0, 0, 0, 75, 283, 1, 0, 0, 0, 77, 286, 1, 0, 0, 0, 79, 291, 1, 0, 0, 0, 81, 296, 1, 0, 0, 0, 83, 301, 1, 0, 0, 0, 85, 307, 1, 0, 0, 0, 87, 317, 1, 0, 0, 0, 89, 321, 1, 0, 0, 0, 91, 324, 1, 0, 0, 0, 93, 332, 1, 0, 0, 0, 95, 1160, 1, 0, 0, 0, 97, 1162, 1, 0, 0, 0, 99, 1169, 1, 0, 0, 0, 101, 1185, 1, 0, 0, 0, 103, 1188, 1, 0, 0, 0, 105, 1193, 1, 0, 0, 0, 107, 1195, 1, 0, 0, 0, 109, 1197, 1, 0, 0, 0, 111, 1199, 1, 0, 0, 0, 113, 1208, 1, 0, 0, 0, 115, 1210, 1, 0, 0, 0, 117, 118, 5, 47, 0, 0, 118, 119, 5, 42, 0, 0, 119, 123, 1, 0, 0, 0, 120, 122, 9, 0, 0, 0, 121, 120, 1, 0, 0, 0, 122, 125, 1, 0, 0, 0, 123, 124, 1, 0, 0, 0, 123, 121, 1, 0, 0, 0, 124, 126, 1, 0, 0, 0, 125, 123, 1, 0, 0, 0, 126, 127, 5, 42, 0, 0, 127, 128, 5, 47, 0, 0, 128, 129, 1, 0, 0, 0, 129, 130, 6, 0, 0, 0, 130, 2, 1, 0, 0, 0, 131, 132, 5, 47, 0, 0, 132, 133, 5, 47, 0, 0, 133, 137, 1, 0, 0, 0, 134, 136, 8, 0, 0, 0, 135, 134, 1, 0, 0, 0, 136, 139, 1, 0, 0, 0, 137, 135, 1, 0, 0, 0, 137, 138, 1, 0, 0, 0, 138, 140, 1, 0, 0, 0, 139, 137, 1, 0, 0, 0, 140, 141, 6, 1, 0, 0, 141, 4, 1, 0, 0, 0, 142, 144, 3, 113, 56, 0, 143, 142, 1, 0, 0, 0, 144, 145, 1, 0, 0, 0, 145, 143, 1, 0, 0, 0, 145, 146, 1, 0, 0, 0, 146, 147, 1, 0, 0, 0, 147, 148, 6, 2, 0, 0, 148, 6, 1, 0, 0, 0, 149, 154, 5, 34, 0, 0, 150, 153, 3, 97, 48, 0, 151, 153, 8, 1, 0, 0, 152, 150, 1, 0, 0, 0, 152, 151, 1, 0, 0, 0, 153, 156, 1, 0, 0, 0, 154, 152, 1, 0, 0, 0, 154, 155, 1, 0, 0, 0, 155, 157, 1, 0, 0, 0, 156, 154, 1, 0, 0, 0, 157, 158, 5, 34, 0, 0, 158, 159, 6, 3, 1, 0, 159, 8, 1, 0, 0, 0, 160, 163, 3, 111, 55, 0, 161, 162, 5, 46, 0, 0, 162, 164, 3, 111, 55, 0, 163, 161, 1, 0, 0, 0, 163, 164, 1, 0, 0, 0, 164, 168, 1, 0, 0, 0, 165, 166, 5, 46, 0, 0, 166, 168, 3, 111, 55, 0, 167, 160, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 10, 1, 0, 0, 0, 169, 173, 5, 64, 0, 0, 170, 172, 3, 113, 56, 0, 171, 170, 1, 0, 0, 0, 172, 175, 1, 0, 0, 0, 173, 171, 1, 0, 0, 0, 173, 174, 1, 0, 0, 0, 174, 176, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 176, 177, 3, 7, 3, 0, 177, 12, 1, 0, 0, 0, 178, 182, 5, 61, 0, 0, 179, 180, 5, 61, 0, 0, 180, 182, 5, 61, 0, 0, 181, 178, 1, 0, 0, 0, 181, 179, 1, 0, 0, 0, 182, 14, 1, 0, 0, 0, 183, 184, 5, 33, 0, 0, 184, 185, 5, 61, 0, 0, 185, 16, 1, 0, 0, 0, 186, 187, 5, 60, 0, 0, 187, 18, 1, 0, 0, 0, 188, 189, 5, 62, 0, 0, 189, 20, 1, 0, 0, 0, 190, 191, 5, 60, 0, 0, 191, 192, 5, 61, 0, 0, 192, 22, 1, 0, 0, 0, 193, 194, 5, 62, 0, 0, 194, 195, 5, 61, 0, 0, 195, 24, 1, 0, 0, 0, 196, 197, 5, 43, 0, 0, 197, 26, 1, 0, 0, 0, 198, 199, 5, 45, 0, 0, 199, 28, 1, 0, 0, 0, 200, 201, 5, 42, 0, 0, 201, 30, 1, 0, 0, 0, 202, 203, 5, 47, 0, 0, 203, 32, 1, 0, 0, 0, 204, 205, 5, 42, 0, 0, 205, 206, 5, 42, 0, 0, 206, 34, 1, 0, 0, 0, 207, 208, 5, 46, 0, 0, 208, 209, 5, 46, 0, 0, 209, 36, 1, 0, 0, 0, 210, 211, 5, 46, 0, 0, 211, 38, 1, 0, 0, 0, 212, 213, 5, 44, 0, 0, 213, 40, 1, 0, 0, 0, 214, 215, 5, 40, 0, 0, 215, 42, 1, 0, 0, 0, 216, 217, 5, 41, 0, 0, 217, 44, 1, 0, 0, 0, 218, 219, 5, 91, 0, 0, 219, 46, 1, 0, 0, 0, 220, 221, 5, 93, 0, 0, 221, 48, 1, 0, 0, 0, 222, 223, 5, 123, 0, 0, 223, 50, 1, 0, 0, 0, 224, 225, 5, 125, 0, 0, 225, 52, 1, 0, 0, 0, 226, 227, 5, 58, 0, 0, 227, 54, 1, 0, 0, 0, 228, 229, 5, 45, 0, 0, 229, 230, 5, 62, 0, 0, 230, 56, 1, 0, 0, 0, 231, 232, 5, 110, 0, 0, 232, 233, 5, 111, 0, 0, 233, 234, 5, 116, 0, 0, 234, 58, 1, 0, 0, 0, 235, 236, 5, 116, 0, 0, 236, 237, 5, 114, 0, 0, 237, 238, 5, 117, 0, 0, 238, 239, 5, 101, 0, 0, 239, 60, 1, 0, 0, 0, 240, 241, 5, 102, 0, 0, 241, 242, 5, 97, 0, 0, 242, 243, 5, 108, 0, 0, 243, 244, 5, 115, 0, 0, 244, 245, 5, 101, 0, 0, 245, 62, 1, 0, 0, 0, 246, 247, 5, 110, 0, 0, 247, 248, 5, 117, 0, 0, 248, 249, 5, 108, 0, 0, 249, 250, 5, 108, 0, 0, 250, 64, 1, 0, 0, 0, 251, 252, 5, 102, 0, 0, 252, 253, 5, 117, 0, 0, 253, 254, 5, 110, 0, 0, 254, 255, 5, 99, 0, 0, 255, 256, 5, 116, 0, 0, 256, 257, 5, 105, 0, 0, 257, 258, 5, 111, 0, 0, 258, 259, 5, 110, 0, 0, 259, 66, 1, 0, 0, 0, 260, 261, 5, 101, 0, 0, 261, 262, 5, 120, 0, 0, 262, 263, 5, 116, 0, 0, 263, 264, 5, 101, 0, 0, 264, 265, 5, 114, 0, 0, 265, 266, 5, 110, 0, 0, 266, 267, 5, 97, 0, 0, 267, 268, 5, 108, 0, 0, 268, 68, 1, 0, 0, 0, 269, 270, 5, 102, 0, 0, 270, 271, 5, 111, 0, 0, 271, 272, 5, 114, 0, 0, 272, 70, 1, 0, 0, 0, 273, 274, 5, 105, 0, 0, 274, 275, 5, 110, 0, 0, 275, 72, 1, 0, 0, 0, 276, 277, 5, 114, 0, 0, 277, 278, 5, 101, 0, 0, 278, 279, 5, 116, 0, 0, 279, 280, 5, 117, 0, 0, 280, 281, 5, 114, 0, 0, 281, 282, 5, 110, 0, 0, 282, 74, 1, 0, 0, 0, 283, 284, 5, 105, 0, 0, 284, 285, 5, 102, 0, 0, 285, 76, 1, 0, 0, 0, 286, 287, 5, 116, 0, 0, 287, 288, 5, 104, 0, 0, 288, 289, 5, 101, 0, 0, 289, 290, 5, 110, 0, 0, 290, 78, 1, 0, 0, 0, 291, 292, 5, 101, 0, 0, 292, 293, 5, 108, 0, 0, 293, 294, 5, 115, 0, 0, 294, 295, 5, 101, 0, 0, 295, 80, 1, 0, 0, 0, 296, 297, 5, 115, 0, 0, 297, 298, 5, 111, 0, 0, 298, 299, 5, 109, 0, 0, 299, 300, 5, 101, 0, 0, 300, 82, 1, 0, 0, 0, 301, 302, 5, 101, 0, 0, 302, 303, 5, 118, 0, 0, 303, 304, 5, 101, 0, 0, 304, 305, 5, 114, 0, 0, 305, 306, 5, 121, 0, 0, 306, 84, 1, 0, 0, 0, 307, 308, 5, 115, 0, 0, 308, 309, 5, 97, 0, 0, 309, 310, 5, 116, 0, 0, 310, 311, 5, 105, 0, 0, 311, 312, 5, 115, 0, 0, 312, 313, 5, 102, 0, 0, 313, 314, 5, 105, 0, 0, 314, 315, 5, 101, 0, 0, 315, 316, 5, 115, 0, 0, 316, 86, 1, 0, 0, 0, 317, 318, 5, 97, 0, 0, 318, 319, 5, 110, 0, 0, 319, 320, 5, 100, 0, 0, 320, 88, 1, 0, 0, 0, 321, 322, 5, 111, 0, 0, 322, 323, 5, 114, 0, 0, 323, 90, 1, 0, 0, 0, 324, 325, 5, 98, 0, 0, 325, 326, 5, 101, 0, 0, 326, 327, 5, 116, 0, 0, 327, 328, 5, 119, 0, 0, 328, 329, 5, 101, 0, 0, 329, 330, 5, 101, 0, 0, 330, 331, 5, 110, 0, 0, 331, 92, 1, 0, 0, 0, 332, 333, 5, 105, 0, 0, 333, 334, 5, 110, 0, 0, 334, 335, 5, 115, 0, 0, 335, 336, 5, 116, 0, 0, 336, 337, 5, 97, 0, 0, 337, 338, 5, 110, 0, 0, 338, 339, 5, 99, 0, 0, 339, 340, 5, 101, 0, 0, 340, 342, 1, 0, 0, 0, 341, 343, 3, 113, 56, 0, 342, 341, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 342, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 347, 5, 111, 0, 0, 347, 348, 5, 102, 0, 0, 348, 349, 1, 0, 0, 0, 349, 350, 6, 46, 2, 0, 350, 94, 1, 0, 0, 0, 351, 352, 5, 100, 0, 0, 352, 353, 5, 97, 0, 0, 353, 354, 5, 116, 0, 0, 354, 355, 5, 101, 0, 0, 355, 357, 1, 0, 0, 0, 356, 358, 3, 113, 56, 0, 357, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 357, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 362, 5, 97, 0, 0, 362, 363, 5, 110, 0, 0, 363, 364, 5, 100, 0, 0, 364, 366, 1, 0, 0, 0, 365, 367, 3, 113, 56, 0, 366, 365, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 371, 5, 116, 0, 0, 371, 372, 5, 105, 0, 0, 372, 373, 5, 109, 0, 0, 373, 374, 5, 101, 0, 0, 374, 375, 1, 0, 0, 0, 375, 376, 6, 47, 3, 0, 376, 1161, 1, 0, 0, 0, 377, 378, 5, 100, 0, 0, 378, 379, 5, 97, 0, 0, 379, 380, 5, 121, 0, 0, 380, 381, 5, 115, 0, 0, 381, 383, 1, 0, 0, 0, 382, 384, 3, 113, 56, 0, 383, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 383, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 388, 5, 97, 0, 0, 388, 389, 5, 110, 0, 0, 389, 390, 5, 100, 0, 0, 390, 392, 1, 0, 0, 0, 391, 393, 3, 113, 56, 0, 392, 391, 1, 0, 0, 0, 393, 394, 1, 0, 0, 0, 394, 392, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 397, 5, 116, 0, 0, 397, 398, 5, 105, 0, 0, 398, 399, 5, 109, 0, 0, 399, 400, 5, 101, 0, 0, 400, 402, 1, 0, 0, 0, 401, 403, 3, 113, 56, 0, 402, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 402, 1, 0, 0, 0, 404, 405, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 407, 5, 100, 0, 0, 407, 408, 5, 117, 0, 0, 408, 409, 5, 114, 0, 0, 409, 410, 5, 97, 0, 0, 410, 411, 5, 116, 0, 0, 411, 412, 5, 105, 0, 0, 412, 413, 5, 111, 0, 0, 413, 414, 5, 110, 0, 0, 414, 415, 1, 0, 0, 0, 415, 416, 6, 47, 4, 0, 416, 1161, 1, 0, 0, 0, 417, 418, 5, 121, 0, 0, 418, 419, 5, 101, 0, 0, 419, 420, 5, 97, 0, 0, 420, 421, 5, 114, 0, 0, 421, 422, 5, 115, 0, 0, 422, 424, 1, 0, 0, 0, 423, 425, 3, 113, 56, 0, 424, 423, 1, 0, 0, 0, 425, 426, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 429, 5, 97, 0, 0, 429, 430, 5, 110, 0, 0, 430, 431, 5, 100, 0, 0, 431, 433, 1, 0, 0, 0, 432, 434, 3, 113, 56, 0, 433, 432, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 438, 5, 109, 0, 0, 438, 439, 5, 111, 0, 0, 439, 440, 5, 110, 0, 0, 440, 441, 5, 116, 0, 0, 441, 442, 5, 104, 0, 0, 442, 443, 5, 115, 0, 0, 443, 445, 1, 0, 0, 0, 444, 446, 3, 113, 56, 0, 445, 444, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 450, 5, 100, 0, 0, 450, 451, 5, 117, 0, 0, 451, 452, 5, 114, 0, 0, 452, 453, 5, 97, 0, 0, 453, 454, 5, 116, 0, 0, 454, 455, 5, 105, 0, 0, 455, 456, 5, 111, 0, 0, 456, 457, 5, 110, 0, 0, 457, 458, 1, 0, 0, 0, 458, 459, 6, 47, 5, 0, 459, 1161, 1, 0, 0, 0, 460, 461, 5, 114, 0, 0, 461, 462, 5, 111, 0, 0, 462, 463, 5, 117, 0, 0, 463, 464, 5, 110, 0, 0, 464, 465, 5, 100, 0, 0, 465, 467, 1, 0, 0, 0, 466, 468, 3, 113, 56, 0, 467, 466, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 472, 5, 117, 0, 0, 472, 473, 5, 112, 0, 0, 473, 474, 1, 0, 0, 0, 474, 475, 6, 47, 6, 0, 475, 1161, 1, 0, 0, 0, 476, 477, 5, 114, 0, 0, 477, 478, 5, 111, 0, 0, 478, 479, 5, 117, 0, 0, 479, 480, 5, 110, 0, 0, 480, 481, 5, 100, 0, 0, 481, 483, 1, 0, 0, 0, 482, 484, 3, 113, 56, 0, 483, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 483, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 5, 100, 0, 0, 488, 489, 5, 111, 0, 0, 489, 490, 5, 119, 0, 0, 490, 491, 5, 110, 0, 0, 491, 492, 1, 0, 0, 0, 492, 493, 6, 47, 7, 0, 493, 1161, 1, 0, 0, 0, 494, 495, 5, 114, 0, 0, 495, 496, 5, 111, 0, 0, 496, 497, 5, 117, 0, 0, 497, 498, 5, 110, 0, 0, 498, 499, 5, 100, 0, 0, 499, 501, 1, 0, 0, 0, 500, 502, 3, 113, 56, 0, 501, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 506, 5, 104, 0, 0, 506, 507, 5, 97, 0, 0, 507, 508, 5, 108, 0, 0, 508, 509, 5, 102, 0, 0, 509, 511, 1, 0, 0, 0, 510, 512, 3, 113, 56, 0, 511, 510, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 511, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 516, 5, 117, 0, 0, 516, 517, 5, 112, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 6, 47, 8, 0, 519, 1161, 1, 0, 0, 0, 520, 521, 5, 114, 0, 0, 521, 522, 5, 111, 0, 0, 522, 523, 5, 117, 0, 0, 523, 524, 5, 110, 0, 0, 524, 525, 5, 100, 0, 0, 525, 527, 1, 0, 0, 0, 526, 528, 3, 113, 56, 0, 527, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 5, 104, 0, 0, 532, 533, 5, 97, 0, 0, 533, 534, 5, 108, 0, 0, 534, 535, 5, 102, 0, 0, 535, 537, 1, 0, 0, 0, 536, 538, 3, 113, 56, 0, 537, 536, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 537, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 542, 5, 100, 0, 0, 542, 543, 5, 111, 0, 0, 543, 544, 5, 119, 0, 0, 544, 545, 5, 110, 0, 0, 545, 546, 1, 0, 0, 0, 546, 547, 6, 47, 9, 0, 547, 1161, 1, 0, 0, 0, 548, 549, 5, 115, 0, 0, 549, 550, 5, 116, 0, 0, 550, 551, 5, 114, 0, 0, 551, 552, 5, 105, 0, 0, 552, 553, 5, 110, 0, 0, 553, 554, 5, 103, 0, 0, 554, 556, 1, 0, 0, 0, 555, 557, 3, 113, 56, 0, 556, 555, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 5, 108, 0, 0, 561, 562, 5, 101, 0, 0, 562, 563, 5, 110, 0, 0, 563, 564, 5, 103, 0, 0, 564, 565, 5, 116, 0, 0, 565, 566, 5, 104, 0, 0, 566, 567, 1, 0, 0, 0, 567, 568, 6, 47, 10, 0, 568, 1161, 1, 0, 0, 0, 569, 570, 5, 117, 0, 0, 570, 571, 5, 112, 0, 0, 571, 572, 5, 112, 0, 0, 572, 573, 5, 101, 0, 0, 573, 574, 5, 114, 0, 0, 574, 576, 1, 0, 0, 0, 575, 577, 3, 113, 56, 0, 576, 575, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 576, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 581, 5, 99, 0, 0, 581, 582, 5, 97, 0, 0, 582, 583, 5, 115, 0, 0, 583, 584, 5, 101, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 6, 47, 11, 0, 586, 1161, 1, 0, 0, 0, 587, 588, 5, 108, 0, 0, 588, 589, 5, 111, 0, 0, 589, 590, 5, 119, 0, 0, 590, 591, 5, 101, 0, 0, 591, 592, 5, 114, 0, 0, 592, 594, 1, 0, 0, 0, 593, 595, 3, 113, 56, 0, 594, 593, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 594, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 5, 99, 0, 0, 599, 600, 5, 97, 0, 0, 600, 601, 5, 115, 0, 0, 601, 602, 5, 101, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 6, 47, 12, 0, 604, 1161, 1, 0, 0, 0, 605, 606, 5, 115, 0, 0, 606, 607, 5, 117, 0, 0, 607, 608, 5, 98, 0, 0, 608, 609, 5, 115, 0, 0, 609, 610, 5, 116, 0, 0, 610, 611, 5, 114, 0, 0, 611, 612, 5, 105, 0, 0, 612, 613, 5, 110, 0, 0, 613, 614, 5, 103, 0, 0, 614, 616, 1, 0, 0, 0, 615, 617, 3, 113, 56, 0, 616, 615, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 616, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 5, 98, 0, 0, 621, 622, 5, 101, 0, 0, 622, 623, 5, 102, 0, 0, 623, 624, 5, 111, 0, 0, 624, 625, 5, 114, 0, 0, 625, 626, 5, 101, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 6, 47, 13, 0, 628, 1161, 1, 0, 0, 0, 629, 630, 5, 115, 0, 0, 630, 631, 5, 117, 0, 0, 631, 632, 5, 98, 0, 0, 632, 633, 5, 115, 0, 0, 633, 634, 5, 116, 0, 0, 634, 635, 5, 114, 0, 0, 635, 636, 5, 105, 0, 0, 636, 637, 5, 110, 0, 0, 637, 638, 5, 103, 0, 0, 638, 640, 1, 0, 0, 0, 639, 641, 3, 113, 56, 0, 640, 639, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 645, 5, 97, 0, 0, 645, 646, 5, 102, 0, 0, 646, 647, 5, 116, 0, 0, 647, 648, 5, 101, 0, 0, 648, 649, 5, 114, 0, 0, 649, 650, 1, 0, 0, 0, 650, 651, 6, 47, 14, 0, 651, 1161, 1, 0, 0, 0, 652, 653, 5, 115, 0, 0, 653, 654, 5, 116, 0, 0, 654, 655, 5, 97, 0, 0, 655, 656, 5, 114, 0, 0, 656, 657, 5, 116, 0, 0, 657, 658, 5, 115, 0, 0, 658, 660, 1, 0, 0, 0, 659, 661, 3, 113, 56, 0, 660, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 660, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 5, 119, 0, 0, 665, 666, 5, 105, 0, 0, 666, 667, 5, 116, 0, 0, 667, 668, 5, 104, 0, 0, 668, 669, 1, 0, 0, 0, 669, 670, 6, 47, 15, 0, 670, 1161, 1, 0, 0, 0, 671, 672, 5, 101, 0, 0, 672, 673, 5, 110, 0, 0, 673, 674, 5, 100, 0, 0, 674, 675, 5, 115, 0, 0, 675, 677, 1, 0, 0, 0, 676, 678, 3, 113, 56, 0, 677, 676, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 681, 1, 0, 0, 0, 681, 682, 5, 119, 0, 0, 682, 683, 5, 105, 0, 0, 683, 684, 5, 116, 0, 0, 684, 685, 5, 104, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 6, 47, 16, 0, 687, 1161, 1, 0, 0, 0, 688, 689, 5, 115, 0, 0, 689, 690, 5, 116, 0, 0, 690, 691, 5, 114, 0, 0, 691, 692, 5, 105, 0, 0, 692, 693, 5, 110, 0, 0, 693, 694, 5, 103, 0, 0, 694, 696, 1, 0, 0, 0, 695, 697, 3, 113, 56, 0, 696, 695, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 696, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 5, 106, 0, 0, 701, 702, 5, 111, 0, 0, 702, 703, 5, 105, 0, 0, 703, 704, 5, 110, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 6, 47, 17, 0, 706, 1161, 1, 0, 0, 0, 707, 708, 5, 115, 0, 0, 708, 709, 5, 116, 0, 0, 709, 710, 5, 97, 0, 0, 710, 711, 5, 114, 0, 0, 711, 712, 5, 116, 0, 0, 712, 714, 1, 0, 0, 0, 713, 715, 3, 113, 56, 0, 714, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 714, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 719, 5, 112, 0, 0, 719, 720, 5, 111, 0, 0, 720, 721, 5, 115, 0, 0, 721, 722, 5, 105, 0, 0, 722, 723, 5, 116, 0, 0, 723, 724, 5, 105, 0, 0, 724, 725, 5, 111, 0, 0, 725, 726, 5, 110, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 6, 47, 18, 0, 728, 1161, 1, 0, 0, 0, 729, 730, 5, 108, 0, 0, 730, 731, 5, 105, 0, 0, 731, 732, 5, 115, 0, 0, 732, 733, 5, 116, 0, 0, 733, 735, 1, 0, 0, 0, 734, 736, 3, 113, 56, 0, 735, 734, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 5, 99, 0, 0, 740, 741, 5, 111, 0, 0, 741, 742, 5, 110, 0, 0, 742, 743, 5, 116, 0, 0, 743, 744, 5, 97, 0, 0, 744, 745, 5, 105, 0, 0, 745, 746, 5, 110, 0, 0, 746, 747, 5, 115, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 6, 47, 19, 0, 749, 1161, 1, 0, 0, 0, 750, 751, 5, 105, 0, 0, 751, 752, 5, 110, 0, 0, 752, 753, 5, 115, 0, 0, 753, 754, 5, 101, 0, 0, 754, 755, 5, 114, 0, 0, 755, 756, 5, 116, 0, 0, 756, 758, 1, 0, 0, 0, 757, 759, 3, 113, 56, 0, 758, 757, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 758, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 763, 5, 98, 0, 0, 763, 764, 5, 101, 0, 0, 764, 765, 5, 102, 0, 0, 765, 766, 5, 111, 0, 0, 766, 767, 5, 114, 0, 0, 767, 768, 5, 101, 0, 0, 768, 769, 1, 0, 0, 0, 769, 770, 6, 47, 20, 0, 770, 1161, 1, 0, 0, 0, 771, 772, 5, 105, 0, 0, 772, 773, 5, 110, 0, 0, 773, 774, 5, 100, 0, 0, 774, 775, 5, 101, 0, 0, 775, 776, 5, 120, 0, 0, 776, 778, 1, 0, 0, 0, 777, 779, 3, 113, 56, 0, 778, 777, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 778, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 5, 111, 0, 0, 783, 784, 5, 102, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 6, 47, 21, 0, 786, 1161, 1, 0, 0, 0, 787, 788, 5, 100, 0, 0, 788, 789, 5, 105, 0, 0, 789, 790, 5, 115, 0, 0, 790, 791, 5, 116, 0, 0, 791, 792, 5, 105, 0, 0, 792, 793, 5, 110, 0, 0, 793, 794, 5, 99, 0, 0, 794, 795, 5, 116, 0, 0, 795, 797, 1, 0, 0, 0, 796, 798, 3, 113, 56, 0, 797, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 5, 118, 0, 0, 802, 803, 5, 97, 0, 0, 803, 804, 5, 108, 0, 0, 804, 805, 5, 117, 0, 0, 805, 806, 5, 101, 0, 0, 806, 807, 5, 115, 0, 0, 807, 808, 1, 0, 0, 0, 808, 809, 6, 47, 22, 0, 809, 1161, 1, 0, 0, 0, 810, 811, 5, 103, 0, 0, 811, 812, 5, 101, 0, 0, 812, 813, 5, 116, 0, 0, 813, 815, 1, 0, 0, 0, 814, 816, 3, 113, 56, 0, 815, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 815, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 820, 5, 101, 0, 0, 820, 821, 5, 110, 0, 0, 821, 822, 5, 116, 0, 0, 822, 823, 5, 114, 0, 0, 823, 824, 5, 105, 0, 0, 824, 825, 5, 101, 0, 0, 825, 826, 5, 115, 0, 0, 826, 827, 1, 0, 0, 0, 827, 828, 6, 47, 23, 0, 828, 1161, 1, 0, 0, 0, 829, 830, 5, 103, 0, 0, 830, 831, 5, 101, 0, 0, 831, 832, 5, 116, 0, 0, 832, 834, 1, 0, 0, 0, 833, 835, 3, 113, 56, 0, 834, 833, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 834, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 839, 5, 118, 0, 0, 839, 840, 5, 97, 0, 0, 840, 841, 5, 108, 0, 0, 841, 842, 5, 117, 0, 0, 842, 843, 5, 101, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 6, 47, 24, 0, 845, 1161, 1, 0, 0, 0, 846, 847, 5, 99, 0, 0, 847, 848, 5, 111, 0, 0, 848, 849, 5, 110, 0, 0, 849, 850, 5, 116, 0, 0, 850, 851, 5, 101, 0, 0, 851, 852, 5, 120, 0, 0, 852, 853, 5, 116, 0, 0, 853, 855, 1, 0, 0, 0, 854, 856, 3, 113, 56, 0, 855, 854, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 855, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 5, 112, 0, 0, 860, 861, 5, 117, 0, 0, 861, 862, 5, 116, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 6, 47, 25, 0, 864, 1161, 1, 0, 0, 0, 865, 866, 5, 99, 0, 0, 866, 867, 5, 111, 0, 0, 867, 868, 5, 110, 0, 0, 868, 869, 5, 116, 0, 0, 869, 870, 5, 101, 0, 0, 870, 871, 5, 120, 0, 0, 871, 872, 5, 116, 0, 0, 872, 874, 1, 0, 0, 0, 873, 875, 3, 113, 56, 0, 874, 873, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 874, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 5, 109, 0, 0, 879, 880, 5, 101, 0, 0, 880, 881, 5, 114, 0, 0, 881, 882, 5, 103, 0, 0, 882, 883, 5, 101, 0, 0, 883, 884, 1, 0, 0, 0, 884, 885, 6, 47, 26, 0, 885, 1161, 1, 0, 0, 0, 886, 887, 5, 109, 0, 0, 887, 888, 5, 101, 0, 0, 888, 889, 5, 116, 0, 0, 889, 891, 1, 0, 0, 0, 890, 892, 3, 113, 56, 0, 891, 890, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 891, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 896, 5, 98, 0, 0, 896, 897, 5, 121, 0, 0, 897, 898, 1, 0, 0, 0, 898, 899, 6, 47, 27, 0, 899, 1161, 1, 0, 0, 0, 900, 901, 5, 111, 0, 0, 901, 902, 5, 118, 0, 0, 902, 903, 5, 101, 0, 0, 903, 904, 5, 114, 0, 0, 904, 905, 5, 108, 0, 0, 905, 906, 5, 97, 0, 0, 906, 907, 5, 112, 0, 0, 907, 908, 5, 115, 0, 0, 908, 910, 1, 0, 0, 0, 909, 911, 3, 113, 56, 0, 910, 909, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 915, 5, 98, 0, 0, 915, 916, 5, 101, 0, 0, 916, 917, 5, 102, 0, 0, 917, 918, 5, 111, 0, 0, 918, 919, 5, 114, 0, 0, 919, 920, 5, 101, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 6, 47, 28, 0, 922, 1161, 1, 0, 0, 0, 923, 924, 5, 111, 0, 0, 924, 925, 5, 118, 0, 0, 925, 926, 5, 101, 0, 0, 926, 927, 5, 114, 0, 0, 927, 928, 5, 108, 0, 0, 928, 929, 5, 97, 0, 0, 929, 930, 5, 112, 0, 0, 930, 931, 5, 115, 0, 0, 931, 933, 1, 0, 0, 0, 932, 934, 3, 113, 56, 0, 933, 932, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 938, 5, 97, 0, 0, 938, 939, 5, 102, 0, 0, 939, 940, 5, 116, 0, 0, 940, 941, 5, 101, 0, 0, 941, 942, 5, 114, 0, 0, 942, 943, 1, 0, 0, 0, 943, 944, 6, 47, 29, 0, 944, 1161, 1, 0, 0, 0, 945, 946, 5, 102, 0, 0, 946, 947, 5, 105, 0, 0, 947, 948, 5, 110, 0, 0, 948, 949, 5, 105, 0, 0, 949, 950, 5, 115, 0, 0, 950, 951, 5, 104, 0, 0, 951, 952, 5, 101, 0, 0, 952, 953, 5, 100, 0, 0, 953, 955, 1, 0, 0, 0, 954, 956, 3, 113, 56, 0, 955, 954, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 955, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 960, 5, 98, 0, 0, 960, 961, 5, 121, 0, 0, 961, 962, 1, 0, 0, 0, 962, 963, 6, 47, 30, 0, 963, 1161, 1, 0, 0, 0, 964, 965, 5, 115, 0, 0, 965, 966, 5, 116, 0, 0, 966, 967, 5, 97, 0, 0, 967, 968, 5, 114, 0, 0, 968, 969, 5, 116, 0, 0, 969, 970, 5, 101, 0, 0, 970, 971, 5, 100, 0, 0, 971, 973, 1, 0, 0, 0, 972, 974, 3, 113, 56, 0, 973, 972, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 973, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 978, 5, 98, 0, 0, 978, 979, 5, 121, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 6, 47, 31, 0, 981, 1161, 1, 0, 0, 0, 982, 983, 5, 115, 0, 0, 983, 984, 5, 116, 0, 0, 984, 985, 5, 97, 0, 0, 985, 986, 5, 114, 0, 0, 986, 987, 5, 116, 0, 0, 987, 989, 1, 0, 0, 0, 988, 990, 3, 113, 56, 0, 989, 988, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 989, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 5, 105, 0, 0, 994, 995, 5, 110, 0, 0, 995, 996, 5, 99, 0, 0, 996, 997, 5, 108, 0, 0, 997, 998, 5, 117, 0, 0, 998, 999, 5, 100, 0, 0, 999, 1000, 5, 101, 0, 0, 1000, 1001, 5, 100, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1003, 6, 47, 32, 0, 1003, 1161, 1, 0, 0, 0, 1004, 1005, 5, 101, 0, 0, 1005, 1006, 5, 110, 0, 0, 1006, 1007, 5, 100, 0, 0, 1007, 1009, 1, 0, 0, 0, 1008, 1010, 3, 113, 56, 0, 1009, 1008, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1009, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 5, 105, 0, 0, 1014, 1015, 5, 110, 0, 0, 1015, 1016, 5, 99, 0, 0, 1016, 1017, 5, 108, 0, 0, 1017, 1018, 5, 117, 0, 0, 1018, 1019, 5, 100, 0, 0, 1019, 1020, 5, 101, 0, 0, 1020, 1021, 5, 100, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1023, 6, 47, 33, 0, 1023, 1161, 1, 0, 0, 0, 1024, 1025, 5, 100, 0, 0, 1025, 1026, 5, 97, 0, 0, 1026, 1027, 5, 121, 0, 0, 1027, 1029, 1, 0, 0, 0, 1028, 1030, 3, 113, 56, 0, 1029, 1028, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1029, 1, 0, 0, 0, 1031, 1032, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 5, 111, 0, 0, 1034, 1035, 5, 102, 0, 0, 1035, 1037, 1, 0, 0, 0, 1036, 1038, 3, 113, 56, 0, 1037, 1036, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1037, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 5, 121, 0, 0, 1042, 1043, 5, 101, 0, 0, 1043, 1044, 5, 97, 0, 0, 1044, 1045, 5, 114, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1047, 6, 47, 34, 0, 1047, 1161, 1, 0, 0, 0, 1048, 1049, 5, 100, 0, 0, 1049, 1050, 5, 97, 0, 0, 1050, 1051, 5, 121, 0, 0, 1051, 1053, 1, 0, 0, 0, 1052, 1054, 3, 113, 56, 0, 1053, 1052, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1053, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1058, 5, 111, 0, 0, 1058, 1059, 5, 102, 0, 0, 1059, 1061, 1, 0, 0, 0, 1060, 1062, 3, 113, 56, 0, 1061, 1060, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1061, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 5, 119, 0, 0, 1066, 1067, 5, 101, 0, 0, 1067, 1068, 5, 101, 0, 0, 1068, 1069, 5, 107, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 6, 47, 35, 0, 1071, 1161, 1, 0, 0, 0, 1072, 1073, 5, 109, 0, 0, 1073, 1074, 5, 111, 0, 0, 1074, 1075, 5, 110, 0, 0, 1075, 1076, 5, 116, 0, 0, 1076, 1077, 5, 104, 0, 0, 1077, 1079, 1, 0, 0, 0, 1078, 1080, 3, 113, 56, 0, 1079, 1078, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1079, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 5, 111, 0, 0, 1084, 1085, 5, 102, 0, 0, 1085, 1087, 1, 0, 0, 0, 1086, 1088, 3, 113, 56, 0, 1087, 1086, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 5, 121, 0, 0, 1092, 1093, 5, 101, 0, 0, 1093, 1094, 5, 97, 0, 0, 1094, 1095, 5, 114, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 6, 47, 36, 0, 1097, 1161, 1, 0, 0, 0, 1098, 1099, 5, 119, 0, 0, 1099, 1100, 5, 101, 0, 0, 1100, 1101, 5, 101, 0, 0, 1101, 1102, 5, 107, 0, 0, 1102, 1104, 1, 0, 0, 0, 1103, 1105, 3, 113, 56, 0, 1104, 1103, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1104, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 5, 111, 0, 0, 1109, 1110, 5, 102, 0, 0, 1110, 1112, 1, 0, 0, 0, 1111, 1113, 3, 113, 56, 0, 1112, 1111, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1112, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 5, 121, 0, 0, 1117, 1118, 5, 101, 0, 0, 1118, 1119, 5, 97, 0, 0, 1119, 1120, 5, 114, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1122, 6, 47, 37, 0, 1122, 1161, 1, 0, 0, 0, 1123, 1124, 5, 116, 0, 0, 1124, 1125, 5, 105, 0, 0, 1125, 1126, 5, 109, 0, 0, 1126, 1127, 5, 101, 0, 0, 1127, 1129, 1, 0, 0, 0, 1128, 1130, 3, 113, 56, 0, 1129, 1128, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 5, 111, 0, 0, 1134, 1135, 5, 102, 0, 0, 1135, 1136, 5, 102, 0, 0, 1136, 1137, 5, 115, 0, 0, 1137, 1138, 5, 101, 0, 0, 1138, 1139, 5, 116, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1141, 6, 47, 38, 0, 1141, 1161, 1, 0, 0, 0, 1142, 1146, 3, 103, 51, 0, 1143, 1145, 3, 105, 52, 0, 1144, 1143, 1, 0, 0, 0, 1145, 1148, 1, 0, 0, 0, 1146, 1144, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1161, 1, 0, 0, 0, 1148, 1146, 1, 0, 0, 0, 1149, 1155, 5, 39, 0, 0, 1150, 1154, 8, 2, 0, 0, 1151, 1152, 5, 39, 0, 0, 1152, 1154, 5, 39, 0, 0, 1153, 1150, 1, 0, 0, 0, 1153, 1151, 1, 0, 0, 0, 1154, 1157, 1, 0, 0, 0, 1155, 1153, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1158, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1158, 1159, 5, 39, 0, 0, 1159, 1161, 6, 47, 39, 0, 1160, 351, 1, 0, 0, 0, 1160, 377, 1, 0, 0, 0, 1160, 417, 1, 0, 0, 0, 1160, 460, 1, 0, 0, 0, 1160, 476, 1, 0, 0, 0, 1160, 494, 1, 0, 0, 0, 1160, 520, 1, 0, 0, 0, 1160, 548, 1, 0, 0, 0, 1160, 569, 1, 0, 0, 0, 1160, 587, 1, 0, 0, 0, 1160, 605, 1, 0, 0, 0, 1160, 629, 1, 0, 0, 0, 1160, 652, 1, 0, 0, 0, 1160, 671, 1, 0, 0, 0, 1160, 688, 1, 0, 0, 0, 1160, 707, 1, 0, 0, 0, 1160, 729, 1, 0, 0, 0, 1160, 750, 1, 0, 0, 0, 1160, 771, 1, 0, 0, 0, 1160, 787, 1, 0, 0, 0, 1160, 810, 1, 0, 0, 0, 1160, 829, 1, 0, 0, 0, 1160, 846, 1, 0, 0, 0, 1160, 865, 1, 0, 0, 0, 1160, 886, 1, 0, 0, 0, 1160, 900, 1, 0, 0, 0, 1160, 923, 1, 0, 0, 0, 1160, 945, 1, 0, 0, 0, 1160, 964, 1, 0, 0, 0, 1160, 982, 1, 0, 0, 0, 1160, 1004, 1, 0, 0, 0, 1160, 1024, 1, 0, 0, 0, 1160, 1048, 1, 0, 0, 0, 1160, 1072, 1, 0, 0, 0, 1160, 1098, 1, 0, 0, 0, 1160, 1123, 1, 0, 0, 0, 1160, 1142, 1, 0, 0, 0, 1160, 1149, 1, 0, 0, 0, 1161, 96, 1, 0, 0, 0, 1162, 1167, 3, 99, 49, 0, 1163, 1168, 7, 3, 0, 0, 1164, 1168, 3, 101, 50, 0, 1165, 1168, 9, 0, 0, 0, 1166, 1168, 5, 0, 0, 1, 1167, 1163, 1, 0, 0, 0, 1167, 1164, 1, 0, 0, 0, 1167, 1165, 1, 0, 0, 0, 1167, 1166, 1, 0, 0, 0, 1168, 98, 1, 0, 0, 0, 1169, 1170, 5, 92, 0, 0, 1170, 100, 1, 0, 0, 0, 1171, 1172, 5, 117, 0, 0, 1172, 1173, 3, 109, 54, 0, 1173, 1174, 3, 109, 54, 0, 1174, 1175, 3, 109, 54, 0, 1175, 1176, 3, 109, 54, 0, 1176, 1186, 1, 0, 0, 0, 1177, 1178, 5, 85, 0, 0, 1178, 1179, 3, 109, 54, 0, 1179, 1180, 3, 109, 54, 0, 1180, 1181, 3, 109, 54, 0, 1181, 1182, 3, 109, 54, 0, 1182, 1183, 3, 109, 54, 0, 1183, 1184, 3, 109, 54, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1171, 1, 0, 0, 0, 1185, 1177, 1, 0, 0, 0, 1186, 102, 1, 0, 0, 0, 1187, 1189, 7, 4, 0, 0, 1188, 1187, 1, 0, 0, 0, 1189, 104, 1, 0, 0, 0, 1190, 1194, 3, 103, 51, 0, 1191, 1194, 3, 107, 53, 0, 1192, 1194, 7, 5, 0, 0, 1193, 1190, 1, 0, 0, 0, 1193, 1191, 1, 0, 0, 0, 1193, 1192, 1, 0, 0, 0, 1194, 106, 1, 0, 0, 0, 1195, 1196, 7, 6, 0, 0, 1196, 108, 1, 0, 0, 0, 1197, 1198, 7, 7, 0, 0, 1198, 110, 1, 0, 0, 0, 1199, 1203, 3, 107, 53, 0, 1200, 1202, 3, 107, 53, 0, 1201, 1200, 1, 0, 0, 0, 1202, 1205, 1, 0, 0, 0, 1203, 1201, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 112, 1, 0, 0, 0, 1205, 1203, 1, 0, 0, 0, 1206, 1209, 3, 115, 57, 0, 1207, 1209, 7, 8, 0, 0, 1208, 1206, 1, 0, 0, 0, 1208, 1207, 1, 0, 0, 0, 1209, 114, 1, 0, 0, 0, 1210, 1211, 7, 0, 0, 0, 1211, 116, 1, 0, 0, 0, 68, 0, 123, 137, 145, 152, 154, 163, 167, 173, 181, 344, 359, 368, 385, 394, 404, 426, 435, 447, 469, 485, 503, 513, 529, 539, 558, 578, 596, 618, 642, 662, 679, 698, 716, 737, 760, 780, 799, 817, 836, 857, 876, 893, 912, 935, 957, 975, 991, 1011, 1031, 1039, 1055, 1063, 1081, 1089, 1106, 1114, 1131, 1146, 1153, 1155, 1160, 1167, 1185, 1188, 1193, 1203, 1208, 40, 6, 0, 0, 1, 3, 0, 1, 46, 1, 1, 47, 2, 1, 47, 3, 1, 47, 4, 1, 47, 5, 1, 47, 6, 1, 47, 7, 1, 47, 8, 1, 47, 9, 1, 47, 10, 1, 47, 11, 1, 47, 12, 1, 47, 13, 1, 47, 14, 1, 47, 15, 1, 47, 16, 1, 47, 17, 1, 47, 18, 1, 47, 19, 1, 47, 20, 1, 47, 21, 1, 47, 22, 1, 47, 23, 1, 47, 24, 1, 47, 25, 1, 47, 26, 1, 47, 27, 1, 47, 28, 1, 47, 29, 1, 47, 30, 1, 47, 31, 1, 47, 32, 1, 47, 33, 1, 47, 34, 1, 47, 35, 1, 47, 36, 1, 47, 37, 1, 47, 38] \ No newline at end of file diff --git a/src/jdmn-js-runtime/parser/FEELLexer.js b/src/jdmn-js-runtime/parser/FEELLexer.js index 7c1668b..00c7945 100644 --- a/src/jdmn-js-runtime/parser/FEELLexer.js +++ b/src/jdmn-js-runtime/parser/FEELLexer.js @@ -38,7 +38,7 @@ function convertUnicodeEscape(str) { } -const serializedATN = [4,0,48,1153,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3, +const serializedATN = [4,0,48,1212,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, @@ -71,154 +71,159 @@ const serializedATN = [4,0,48,1153,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3, 47,1,47,4,47,425,8,47,11,47,12,47,426,1,47,1,47,1,47,1,47,1,47,4,47,434, 8,47,11,47,12,47,435,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,4,47,446,8, 47,11,47,12,47,447,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,47,1,47,4,47,469,8,47,11,47,12,47,470,1, + 1,47,1,47,1,47,1,47,1,47,1,47,1,47,4,47,468,8,47,11,47,12,47,469,1,47,1, + 47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,4,47,484,8,47,11,47, + 12,47,485,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,4,47,502,8,47,11,47,12,47,503,1,47,1,47,1,47,1,47,1,47,1,47,4,47, + 512,8,47,11,47,12,47,513,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1, + 47,1,47,1,47,4,47,528,8,47,11,47,12,47,529,1,47,1,47,1,47,1,47,1,47,1,47, + 4,47,538,8,47,11,47,12,47,539,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,4,47,557,8,47,11,47,12,47,558,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,4, + 47,577,8,47,11,47,12,47,578,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,4,47,595,8,47,11,47,12,47,596,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,47, - 1,47,4,47,489,8,47,11,47,12,47,490,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,4,47,507,8,47,11,47,12,47,508,1,47,1,47, + 4,47,617,8,47,11,47,12,47,618,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,47,1,47,1,47,4,47,641,8,47, + 11,47,12,47,642,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,4,47,661,8,47,11,47,12,47,662,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,4,47,678,8,47,11,47,12,47,679, 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,4,47,529,8,47,11,47,12,47,530,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,47,1,47,1,47,4,47,553, - 8,47,11,47,12,47,554,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,4,47,573,8,47,11,47,12,47,574,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,4,47,590,8,47,11,47,12, - 47,591,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,4,47,608,8,47,11,47,12,47,609,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,4,47,629,8,47,11,47,12,47, - 630,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,47,1,47,4,47,652,8,47,11,47,12,47,653,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,4,47,672, - 8,47,11,47,12,47,673,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,4,47,691,8,47,11,47,12,47,692,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,4,47,709,8,47,11,47,12, - 47,710,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,4,47,728,8,47,11,47,12,47,729,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,4,47,745,8,47,11,47,12,47,746,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,4,47,764, - 8,47,11,47,12,47,765,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,47,1,47,4,47,787,8,47,11,47,12,47,788, + 47,4,47,697,8,47,11,47,12,47,698,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,4,47,715,8,47,11,47,12,47,716,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, + 4,47,736,8,47,11,47,12,47,737,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,47,1,47,4,47,759,8,47,11,47, + 12,47,760,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,4,47,779,8,47,11,47,12,47,780,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,4,47,798,8,47,11,47,12, + 47,799,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,4,47,816,8,47,11,47,12,47,817,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,4,47,835,8,47,11,47,12,47,836,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,4,47,856,8,47,11,47,12,47,857,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,4,47,875,8,47,11,47,12,47,876,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,4,47,892, + 8,47,11,47,12,47,893,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,4,47,911,8,47,11,47,12,47,912,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,47,1, - 47,1,47,1,47,1,47,4,47,809,8,47,11,47,12,47,810,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,4,47,827,8,47,11,47,12,47,828, - 1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,4,47,843,8,47, - 11,47,12,47,844,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,4,47,863,8,47,11,47,12,47,864,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,4,47,883,8,47, - 11,47,12,47,884,1,47,1,47,1,47,1,47,4,47,891,8,47,11,47,12,47,892,1,47,1, - 47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,4,47,907,8,47,11,47, - 12,47,908,1,47,1,47,1,47,1,47,4,47,915,8,47,11,47,12,47,916,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,4,47,933,8,47, - 11,47,12,47,934,1,47,1,47,1,47,1,47,4,47,941,8,47,11,47,12,47,942,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,4,47,958,8,47, - 11,47,12,47,959,1,47,1,47,1,47,1,47,4,47,966,8,47,11,47,12,47,967,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,4,47,984, - 8,47,11,47,12,47,985,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1, - 47,1,47,4,47,1000,8,47,11,47,12,47,1001,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,4,47,1018,8,47,11,47,12,47,1019,1, - 47,1,47,1,47,1,47,1,47,1,47,4,47,1028,8,47,11,47,12,47,1029,1,47,1,47,1, - 47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,4,47,1044,8,47,11,47,12, - 47,1045,1,47,1,47,1,47,1,47,1,47,1,47,4,47,1054,8,47,11,47,12,47,1055,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,4,47,1071, - 8,47,11,47,12,47,1072,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47, - 1,47,5,47,1086,8,47,10,47,12,47,1089,9,47,1,47,1,47,1,47,1,47,5,47,1095, - 8,47,10,47,12,47,1098,9,47,1,47,1,47,3,47,1102,8,47,1,48,1,48,1,48,1,48, - 1,48,3,48,1109,8,48,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,50,1,50,1,50,3,50,1127,8,50,1,51,3,51,1130,8,51,1,52,1,52, - 1,52,3,52,1135,8,52,1,53,1,53,1,54,1,54,1,55,1,55,5,55,1143,8,55,10,55,12, - 55,1146,9,55,1,56,1,56,3,56,1150,8,56,1,57,1,57,1,123,0,58,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,0,99,0,101,0,103,0,105,0,107, - 0,109,0,111,0,113,0,115,0,1,0,9,1,0,10,13,2,0,10,13,34,34,2,0,10,13,39,39, - 8,0,34,34,39,39,92,92,98,98,102,102,110,110,114,114,116,116,16,0,63,63,65, - 90,95,95,97,122,192,214,216,246,248,767,880,893,895,8191,8204,8205,8304, - 8591,11264,12271,12289,55295,63744,64975,65008,65533,65536,983039,3,0,183, - 183,768,879,8255,8256,1,0,48,57,3,0,48,57,65,70,97,102,12,0,9,9,32,32,133, - 133,160,160,5760,5760,6158,6158,8192,8203,8232,8233,8239,8239,8287,8287, - 12288,12288,65279,65279,1241,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,1,117,1, - 0,0,0,3,131,1,0,0,0,5,143,1,0,0,0,7,149,1,0,0,0,9,167,1,0,0,0,11,169,1,0, - 0,0,13,181,1,0,0,0,15,183,1,0,0,0,17,186,1,0,0,0,19,188,1,0,0,0,21,190,1, - 0,0,0,23,193,1,0,0,0,25,196,1,0,0,0,27,198,1,0,0,0,29,200,1,0,0,0,31,202, - 1,0,0,0,33,204,1,0,0,0,35,207,1,0,0,0,37,210,1,0,0,0,39,212,1,0,0,0,41,214, - 1,0,0,0,43,216,1,0,0,0,45,218,1,0,0,0,47,220,1,0,0,0,49,222,1,0,0,0,51,224, - 1,0,0,0,53,226,1,0,0,0,55,228,1,0,0,0,57,231,1,0,0,0,59,235,1,0,0,0,61,240, - 1,0,0,0,63,246,1,0,0,0,65,251,1,0,0,0,67,260,1,0,0,0,69,269,1,0,0,0,71,273, - 1,0,0,0,73,276,1,0,0,0,75,283,1,0,0,0,77,286,1,0,0,0,79,291,1,0,0,0,81,296, - 1,0,0,0,83,301,1,0,0,0,85,307,1,0,0,0,87,317,1,0,0,0,89,321,1,0,0,0,91,324, - 1,0,0,0,93,332,1,0,0,0,95,1101,1,0,0,0,97,1103,1,0,0,0,99,1110,1,0,0,0,101, - 1126,1,0,0,0,103,1129,1,0,0,0,105,1134,1,0,0,0,107,1136,1,0,0,0,109,1138, - 1,0,0,0,111,1140,1,0,0,0,113,1149,1,0,0,0,115,1151,1,0,0,0,117,118,5,47, - 0,0,118,119,5,42,0,0,119,123,1,0,0,0,120,122,9,0,0,0,121,120,1,0,0,0,122, - 125,1,0,0,0,123,124,1,0,0,0,123,121,1,0,0,0,124,126,1,0,0,0,125,123,1,0, - 0,0,126,127,5,42,0,0,127,128,5,47,0,0,128,129,1,0,0,0,129,130,6,0,0,0,130, - 2,1,0,0,0,131,132,5,47,0,0,132,133,5,47,0,0,133,137,1,0,0,0,134,136,8,0, - 0,0,135,134,1,0,0,0,136,139,1,0,0,0,137,135,1,0,0,0,137,138,1,0,0,0,138, - 140,1,0,0,0,139,137,1,0,0,0,140,141,6,1,0,0,141,4,1,0,0,0,142,144,3,113, - 56,0,143,142,1,0,0,0,144,145,1,0,0,0,145,143,1,0,0,0,145,146,1,0,0,0,146, - 147,1,0,0,0,147,148,6,2,0,0,148,6,1,0,0,0,149,154,5,34,0,0,150,153,3,97, - 48,0,151,153,8,1,0,0,152,150,1,0,0,0,152,151,1,0,0,0,153,156,1,0,0,0,154, - 152,1,0,0,0,154,155,1,0,0,0,155,157,1,0,0,0,156,154,1,0,0,0,157,158,5,34, - 0,0,158,159,6,3,1,0,159,8,1,0,0,0,160,163,3,111,55,0,161,162,5,46,0,0,162, - 164,3,111,55,0,163,161,1,0,0,0,163,164,1,0,0,0,164,168,1,0,0,0,165,166,5, - 46,0,0,166,168,3,111,55,0,167,160,1,0,0,0,167,165,1,0,0,0,168,10,1,0,0,0, - 169,173,5,64,0,0,170,172,3,113,56,0,171,170,1,0,0,0,172,175,1,0,0,0,173, - 171,1,0,0,0,173,174,1,0,0,0,174,176,1,0,0,0,175,173,1,0,0,0,176,177,3,7, - 3,0,177,12,1,0,0,0,178,182,5,61,0,0,179,180,5,61,0,0,180,182,5,61,0,0,181, - 178,1,0,0,0,181,179,1,0,0,0,182,14,1,0,0,0,183,184,5,33,0,0,184,185,5,61, - 0,0,185,16,1,0,0,0,186,187,5,60,0,0,187,18,1,0,0,0,188,189,5,62,0,0,189, - 20,1,0,0,0,190,191,5,60,0,0,191,192,5,61,0,0,192,22,1,0,0,0,193,194,5,62, - 0,0,194,195,5,61,0,0,195,24,1,0,0,0,196,197,5,43,0,0,197,26,1,0,0,0,198, - 199,5,45,0,0,199,28,1,0,0,0,200,201,5,42,0,0,201,30,1,0,0,0,202,203,5,47, - 0,0,203,32,1,0,0,0,204,205,5,42,0,0,205,206,5,42,0,0,206,34,1,0,0,0,207, - 208,5,46,0,0,208,209,5,46,0,0,209,36,1,0,0,0,210,211,5,46,0,0,211,38,1,0, - 0,0,212,213,5,44,0,0,213,40,1,0,0,0,214,215,5,40,0,0,215,42,1,0,0,0,216, - 217,5,41,0,0,217,44,1,0,0,0,218,219,5,91,0,0,219,46,1,0,0,0,220,221,5,93, - 0,0,221,48,1,0,0,0,222,223,5,123,0,0,223,50,1,0,0,0,224,225,5,125,0,0,225, - 52,1,0,0,0,226,227,5,58,0,0,227,54,1,0,0,0,228,229,5,45,0,0,229,230,5,62, - 0,0,230,56,1,0,0,0,231,232,5,110,0,0,232,233,5,111,0,0,233,234,5,116,0,0, - 234,58,1,0,0,0,235,236,5,116,0,0,236,237,5,114,0,0,237,238,5,117,0,0,238, - 239,5,101,0,0,239,60,1,0,0,0,240,241,5,102,0,0,241,242,5,97,0,0,242,243, - 5,108,0,0,243,244,5,115,0,0,244,245,5,101,0,0,245,62,1,0,0,0,246,247,5,110, - 0,0,247,248,5,117,0,0,248,249,5,108,0,0,249,250,5,108,0,0,250,64,1,0,0,0, - 251,252,5,102,0,0,252,253,5,117,0,0,253,254,5,110,0,0,254,255,5,99,0,0,255, - 256,5,116,0,0,256,257,5,105,0,0,257,258,5,111,0,0,258,259,5,110,0,0,259, - 66,1,0,0,0,260,261,5,101,0,0,261,262,5,120,0,0,262,263,5,116,0,0,263,264, - 5,101,0,0,264,265,5,114,0,0,265,266,5,110,0,0,266,267,5,97,0,0,267,268,5, - 108,0,0,268,68,1,0,0,0,269,270,5,102,0,0,270,271,5,111,0,0,271,272,5,114, - 0,0,272,70,1,0,0,0,273,274,5,105,0,0,274,275,5,110,0,0,275,72,1,0,0,0,276, - 277,5,114,0,0,277,278,5,101,0,0,278,279,5,116,0,0,279,280,5,117,0,0,280, - 281,5,114,0,0,281,282,5,110,0,0,282,74,1,0,0,0,283,284,5,105,0,0,284,285, - 5,102,0,0,285,76,1,0,0,0,286,287,5,116,0,0,287,288,5,104,0,0,288,289,5,101, - 0,0,289,290,5,110,0,0,290,78,1,0,0,0,291,292,5,101,0,0,292,293,5,108,0,0, - 293,294,5,115,0,0,294,295,5,101,0,0,295,80,1,0,0,0,296,297,5,115,0,0,297, - 298,5,111,0,0,298,299,5,109,0,0,299,300,5,101,0,0,300,82,1,0,0,0,301,302, - 5,101,0,0,302,303,5,118,0,0,303,304,5,101,0,0,304,305,5,114,0,0,305,306, - 5,121,0,0,306,84,1,0,0,0,307,308,5,115,0,0,308,309,5,97,0,0,309,310,5,116, - 0,0,310,311,5,105,0,0,311,312,5,115,0,0,312,313,5,102,0,0,313,314,5,105, - 0,0,314,315,5,101,0,0,315,316,5,115,0,0,316,86,1,0,0,0,317,318,5,97,0,0, - 318,319,5,110,0,0,319,320,5,100,0,0,320,88,1,0,0,0,321,322,5,111,0,0,322, - 323,5,114,0,0,323,90,1,0,0,0,324,325,5,98,0,0,325,326,5,101,0,0,326,327, - 5,116,0,0,327,328,5,119,0,0,328,329,5,101,0,0,329,330,5,101,0,0,330,331, - 5,110,0,0,331,92,1,0,0,0,332,333,5,105,0,0,333,334,5,110,0,0,334,335,5,115, - 0,0,335,336,5,116,0,0,336,337,5,97,0,0,337,338,5,110,0,0,338,339,5,99,0, - 0,339,340,5,101,0,0,340,342,1,0,0,0,341,343,3,113,56,0,342,341,1,0,0,0,343, - 344,1,0,0,0,344,342,1,0,0,0,344,345,1,0,0,0,345,346,1,0,0,0,346,347,5,111, - 0,0,347,348,5,102,0,0,348,349,1,0,0,0,349,350,6,46,2,0,350,94,1,0,0,0,351, + 47,4,47,934,8,47,11,47,12,47,935,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,47,4,47,956,8,47,11,47,12, + 47,957,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,4,47,974,8,47,11,47,12,47,975,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1, + 47,1,47,1,47,1,47,1,47,4,47,990,8,47,11,47,12,47,991,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,4,47,1010,8, + 47,11,47,12,47,1011,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,4,47,1030,8,47,11,47,12,47,1031,1,47,1,47,1, + 47,1,47,4,47,1038,8,47,11,47,12,47,1039,1,47,1,47,1,47,1,47,1,47,1,47,1, + 47,1,47,1,47,1,47,1,47,1,47,4,47,1054,8,47,11,47,12,47,1055,1,47,1,47,1, + 47,1,47,4,47,1062,8,47,11,47,12,47,1063,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,4,47,1080,8,47,11,47,12,47,1081,1, + 47,1,47,1,47,1,47,4,47,1088,8,47,11,47,12,47,1089,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,4,47,1105,8,47,11,47,12,47,1106, + 1,47,1,47,1,47,1,47,4,47,1113,8,47,11,47,12,47,1114,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,4,47,1130,8,47,11,47,12,47, + 1131,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,5,47,1145,8, + 47,10,47,12,47,1148,9,47,1,47,1,47,1,47,1,47,5,47,1154,8,47,10,47,12,47, + 1157,9,47,1,47,1,47,3,47,1161,8,47,1,48,1,48,1,48,1,48,1,48,3,48,1168,8, + 48,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,50, + 1,50,1,50,3,50,1186,8,50,1,51,3,51,1189,8,51,1,52,1,52,1,52,3,52,1194,8, + 52,1,53,1,53,1,54,1,54,1,55,1,55,5,55,1202,8,55,10,55,12,55,1205,9,55,1, + 56,1,56,3,56,1209,8,56,1,57,1,57,1,123,0,58,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,0,99,0,101,0,103,0,105,0,107,0,109,0,111, + 0,113,0,115,0,1,0,9,1,0,10,13,2,0,10,13,34,34,2,0,10,13,39,39,8,0,34,34, + 39,39,92,92,98,98,102,102,110,110,114,114,116,116,16,0,63,63,65,90,95,95, + 97,122,192,214,216,246,248,767,880,893,895,8191,8204,8205,8304,8591,11264, + 12271,12289,55295,63744,64975,65008,65533,65536,983039,3,0,183,183,768,879, + 8255,8256,1,0,48,57,3,0,48,57,65,70,97,102,12,0,9,9,32,32,133,133,160,160, + 5760,5760,6158,6158,8192,8203,8232,8233,8239,8239,8287,8287,12288,12288, + 65279,65279,1306,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,1,117,1,0,0,0,3,131, + 1,0,0,0,5,143,1,0,0,0,7,149,1,0,0,0,9,167,1,0,0,0,11,169,1,0,0,0,13,181, + 1,0,0,0,15,183,1,0,0,0,17,186,1,0,0,0,19,188,1,0,0,0,21,190,1,0,0,0,23,193, + 1,0,0,0,25,196,1,0,0,0,27,198,1,0,0,0,29,200,1,0,0,0,31,202,1,0,0,0,33,204, + 1,0,0,0,35,207,1,0,0,0,37,210,1,0,0,0,39,212,1,0,0,0,41,214,1,0,0,0,43,216, + 1,0,0,0,45,218,1,0,0,0,47,220,1,0,0,0,49,222,1,0,0,0,51,224,1,0,0,0,53,226, + 1,0,0,0,55,228,1,0,0,0,57,231,1,0,0,0,59,235,1,0,0,0,61,240,1,0,0,0,63,246, + 1,0,0,0,65,251,1,0,0,0,67,260,1,0,0,0,69,269,1,0,0,0,71,273,1,0,0,0,73,276, + 1,0,0,0,75,283,1,0,0,0,77,286,1,0,0,0,79,291,1,0,0,0,81,296,1,0,0,0,83,301, + 1,0,0,0,85,307,1,0,0,0,87,317,1,0,0,0,89,321,1,0,0,0,91,324,1,0,0,0,93,332, + 1,0,0,0,95,1160,1,0,0,0,97,1162,1,0,0,0,99,1169,1,0,0,0,101,1185,1,0,0,0, + 103,1188,1,0,0,0,105,1193,1,0,0,0,107,1195,1,0,0,0,109,1197,1,0,0,0,111, + 1199,1,0,0,0,113,1208,1,0,0,0,115,1210,1,0,0,0,117,118,5,47,0,0,118,119, + 5,42,0,0,119,123,1,0,0,0,120,122,9,0,0,0,121,120,1,0,0,0,122,125,1,0,0,0, + 123,124,1,0,0,0,123,121,1,0,0,0,124,126,1,0,0,0,125,123,1,0,0,0,126,127, + 5,42,0,0,127,128,5,47,0,0,128,129,1,0,0,0,129,130,6,0,0,0,130,2,1,0,0,0, + 131,132,5,47,0,0,132,133,5,47,0,0,133,137,1,0,0,0,134,136,8,0,0,0,135,134, + 1,0,0,0,136,139,1,0,0,0,137,135,1,0,0,0,137,138,1,0,0,0,138,140,1,0,0,0, + 139,137,1,0,0,0,140,141,6,1,0,0,141,4,1,0,0,0,142,144,3,113,56,0,143,142, + 1,0,0,0,144,145,1,0,0,0,145,143,1,0,0,0,145,146,1,0,0,0,146,147,1,0,0,0, + 147,148,6,2,0,0,148,6,1,0,0,0,149,154,5,34,0,0,150,153,3,97,48,0,151,153, + 8,1,0,0,152,150,1,0,0,0,152,151,1,0,0,0,153,156,1,0,0,0,154,152,1,0,0,0, + 154,155,1,0,0,0,155,157,1,0,0,0,156,154,1,0,0,0,157,158,5,34,0,0,158,159, + 6,3,1,0,159,8,1,0,0,0,160,163,3,111,55,0,161,162,5,46,0,0,162,164,3,111, + 55,0,163,161,1,0,0,0,163,164,1,0,0,0,164,168,1,0,0,0,165,166,5,46,0,0,166, + 168,3,111,55,0,167,160,1,0,0,0,167,165,1,0,0,0,168,10,1,0,0,0,169,173,5, + 64,0,0,170,172,3,113,56,0,171,170,1,0,0,0,172,175,1,0,0,0,173,171,1,0,0, + 0,173,174,1,0,0,0,174,176,1,0,0,0,175,173,1,0,0,0,176,177,3,7,3,0,177,12, + 1,0,0,0,178,182,5,61,0,0,179,180,5,61,0,0,180,182,5,61,0,0,181,178,1,0,0, + 0,181,179,1,0,0,0,182,14,1,0,0,0,183,184,5,33,0,0,184,185,5,61,0,0,185,16, + 1,0,0,0,186,187,5,60,0,0,187,18,1,0,0,0,188,189,5,62,0,0,189,20,1,0,0,0, + 190,191,5,60,0,0,191,192,5,61,0,0,192,22,1,0,0,0,193,194,5,62,0,0,194,195, + 5,61,0,0,195,24,1,0,0,0,196,197,5,43,0,0,197,26,1,0,0,0,198,199,5,45,0,0, + 199,28,1,0,0,0,200,201,5,42,0,0,201,30,1,0,0,0,202,203,5,47,0,0,203,32,1, + 0,0,0,204,205,5,42,0,0,205,206,5,42,0,0,206,34,1,0,0,0,207,208,5,46,0,0, + 208,209,5,46,0,0,209,36,1,0,0,0,210,211,5,46,0,0,211,38,1,0,0,0,212,213, + 5,44,0,0,213,40,1,0,0,0,214,215,5,40,0,0,215,42,1,0,0,0,216,217,5,41,0,0, + 217,44,1,0,0,0,218,219,5,91,0,0,219,46,1,0,0,0,220,221,5,93,0,0,221,48,1, + 0,0,0,222,223,5,123,0,0,223,50,1,0,0,0,224,225,5,125,0,0,225,52,1,0,0,0, + 226,227,5,58,0,0,227,54,1,0,0,0,228,229,5,45,0,0,229,230,5,62,0,0,230,56, + 1,0,0,0,231,232,5,110,0,0,232,233,5,111,0,0,233,234,5,116,0,0,234,58,1,0, + 0,0,235,236,5,116,0,0,236,237,5,114,0,0,237,238,5,117,0,0,238,239,5,101, + 0,0,239,60,1,0,0,0,240,241,5,102,0,0,241,242,5,97,0,0,242,243,5,108,0,0, + 243,244,5,115,0,0,244,245,5,101,0,0,245,62,1,0,0,0,246,247,5,110,0,0,247, + 248,5,117,0,0,248,249,5,108,0,0,249,250,5,108,0,0,250,64,1,0,0,0,251,252, + 5,102,0,0,252,253,5,117,0,0,253,254,5,110,0,0,254,255,5,99,0,0,255,256,5, + 116,0,0,256,257,5,105,0,0,257,258,5,111,0,0,258,259,5,110,0,0,259,66,1,0, + 0,0,260,261,5,101,0,0,261,262,5,120,0,0,262,263,5,116,0,0,263,264,5,101, + 0,0,264,265,5,114,0,0,265,266,5,110,0,0,266,267,5,97,0,0,267,268,5,108,0, + 0,268,68,1,0,0,0,269,270,5,102,0,0,270,271,5,111,0,0,271,272,5,114,0,0,272, + 70,1,0,0,0,273,274,5,105,0,0,274,275,5,110,0,0,275,72,1,0,0,0,276,277,5, + 114,0,0,277,278,5,101,0,0,278,279,5,116,0,0,279,280,5,117,0,0,280,281,5, + 114,0,0,281,282,5,110,0,0,282,74,1,0,0,0,283,284,5,105,0,0,284,285,5,102, + 0,0,285,76,1,0,0,0,286,287,5,116,0,0,287,288,5,104,0,0,288,289,5,101,0,0, + 289,290,5,110,0,0,290,78,1,0,0,0,291,292,5,101,0,0,292,293,5,108,0,0,293, + 294,5,115,0,0,294,295,5,101,0,0,295,80,1,0,0,0,296,297,5,115,0,0,297,298, + 5,111,0,0,298,299,5,109,0,0,299,300,5,101,0,0,300,82,1,0,0,0,301,302,5,101, + 0,0,302,303,5,118,0,0,303,304,5,101,0,0,304,305,5,114,0,0,305,306,5,121, + 0,0,306,84,1,0,0,0,307,308,5,115,0,0,308,309,5,97,0,0,309,310,5,116,0,0, + 310,311,5,105,0,0,311,312,5,115,0,0,312,313,5,102,0,0,313,314,5,105,0,0, + 314,315,5,101,0,0,315,316,5,115,0,0,316,86,1,0,0,0,317,318,5,97,0,0,318, + 319,5,110,0,0,319,320,5,100,0,0,320,88,1,0,0,0,321,322,5,111,0,0,322,323, + 5,114,0,0,323,90,1,0,0,0,324,325,5,98,0,0,325,326,5,101,0,0,326,327,5,116, + 0,0,327,328,5,119,0,0,328,329,5,101,0,0,329,330,5,101,0,0,330,331,5,110, + 0,0,331,92,1,0,0,0,332,333,5,105,0,0,333,334,5,110,0,0,334,335,5,115,0,0, + 335,336,5,116,0,0,336,337,5,97,0,0,337,338,5,110,0,0,338,339,5,99,0,0,339, + 340,5,101,0,0,340,342,1,0,0,0,341,343,3,113,56,0,342,341,1,0,0,0,343,344, + 1,0,0,0,344,342,1,0,0,0,344,345,1,0,0,0,345,346,1,0,0,0,346,347,5,111,0, + 0,347,348,5,102,0,0,348,349,1,0,0,0,349,350,6,46,2,0,350,94,1,0,0,0,351, 352,5,100,0,0,352,353,5,97,0,0,353,354,5,116,0,0,354,355,5,101,0,0,355,357, 1,0,0,0,356,358,3,113,56,0,357,356,1,0,0,0,358,359,1,0,0,0,359,357,1,0,0, 0,359,360,1,0,0,0,360,361,1,0,0,0,361,362,5,97,0,0,362,363,5,110,0,0,363, 364,5,100,0,0,364,366,1,0,0,0,365,367,3,113,56,0,366,365,1,0,0,0,367,368, 1,0,0,0,368,366,1,0,0,0,368,369,1,0,0,0,369,370,1,0,0,0,370,371,5,116,0, 0,371,372,5,105,0,0,372,373,5,109,0,0,373,374,5,101,0,0,374,375,1,0,0,0, - 375,376,6,47,3,0,376,1102,1,0,0,0,377,378,5,100,0,0,378,379,5,97,0,0,379, + 375,376,6,47,3,0,376,1161,1,0,0,0,377,378,5,100,0,0,378,379,5,97,0,0,379, 380,5,121,0,0,380,381,5,115,0,0,381,383,1,0,0,0,382,384,3,113,56,0,383,382, 1,0,0,0,384,385,1,0,0,0,385,383,1,0,0,0,385,386,1,0,0,0,386,387,1,0,0,0, 387,388,5,97,0,0,388,389,5,110,0,0,389,390,5,100,0,0,390,392,1,0,0,0,391, @@ -228,7 +233,7 @@ const serializedATN = [4,0,48,1153,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3, 403,404,1,0,0,0,404,402,1,0,0,0,404,405,1,0,0,0,405,406,1,0,0,0,406,407, 5,100,0,0,407,408,5,117,0,0,408,409,5,114,0,0,409,410,5,97,0,0,410,411,5, 116,0,0,411,412,5,105,0,0,412,413,5,111,0,0,413,414,5,110,0,0,414,415,1, - 0,0,0,415,416,6,47,4,0,416,1102,1,0,0,0,417,418,5,121,0,0,418,419,5,101, + 0,0,0,415,416,6,47,4,0,416,1161,1,0,0,0,417,418,5,121,0,0,418,419,5,101, 0,0,419,420,5,97,0,0,420,421,5,114,0,0,421,422,5,115,0,0,422,424,1,0,0,0, 423,425,3,113,56,0,424,423,1,0,0,0,425,426,1,0,0,0,426,424,1,0,0,0,426,427, 1,0,0,0,427,428,1,0,0,0,428,429,5,97,0,0,429,430,5,110,0,0,430,431,5,100, @@ -239,201 +244,218 @@ const serializedATN = [4,0,48,1153,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3, 0,447,445,1,0,0,0,447,448,1,0,0,0,448,449,1,0,0,0,449,450,5,100,0,0,450, 451,5,117,0,0,451,452,5,114,0,0,452,453,5,97,0,0,453,454,5,116,0,0,454,455, 5,105,0,0,455,456,5,111,0,0,456,457,5,110,0,0,457,458,1,0,0,0,458,459,6, - 47,5,0,459,1102,1,0,0,0,460,461,5,115,0,0,461,462,5,116,0,0,462,463,5,114, - 0,0,463,464,5,105,0,0,464,465,5,110,0,0,465,466,5,103,0,0,466,468,1,0,0, - 0,467,469,3,113,56,0,468,467,1,0,0,0,469,470,1,0,0,0,470,468,1,0,0,0,470, - 471,1,0,0,0,471,472,1,0,0,0,472,473,5,108,0,0,473,474,5,101,0,0,474,475, - 5,110,0,0,475,476,5,103,0,0,476,477,5,116,0,0,477,478,5,104,0,0,478,479, - 1,0,0,0,479,480,6,47,6,0,480,1102,1,0,0,0,481,482,5,117,0,0,482,483,5,112, - 0,0,483,484,5,112,0,0,484,485,5,101,0,0,485,486,5,114,0,0,486,488,1,0,0, - 0,487,489,3,113,56,0,488,487,1,0,0,0,489,490,1,0,0,0,490,488,1,0,0,0,490, - 491,1,0,0,0,491,492,1,0,0,0,492,493,5,99,0,0,493,494,5,97,0,0,494,495,5, - 115,0,0,495,496,5,101,0,0,496,497,1,0,0,0,497,498,6,47,7,0,498,1102,1,0, - 0,0,499,500,5,108,0,0,500,501,5,111,0,0,501,502,5,119,0,0,502,503,5,101, - 0,0,503,504,5,114,0,0,504,506,1,0,0,0,505,507,3,113,56,0,506,505,1,0,0,0, - 507,508,1,0,0,0,508,506,1,0,0,0,508,509,1,0,0,0,509,510,1,0,0,0,510,511, - 5,99,0,0,511,512,5,97,0,0,512,513,5,115,0,0,513,514,5,101,0,0,514,515,1, - 0,0,0,515,516,6,47,8,0,516,1102,1,0,0,0,517,518,5,115,0,0,518,519,5,117, - 0,0,519,520,5,98,0,0,520,521,5,115,0,0,521,522,5,116,0,0,522,523,5,114,0, - 0,523,524,5,105,0,0,524,525,5,110,0,0,525,526,5,103,0,0,526,528,1,0,0,0, - 527,529,3,113,56,0,528,527,1,0,0,0,529,530,1,0,0,0,530,528,1,0,0,0,530,531, - 1,0,0,0,531,532,1,0,0,0,532,533,5,98,0,0,533,534,5,101,0,0,534,535,5,102, - 0,0,535,536,5,111,0,0,536,537,5,114,0,0,537,538,5,101,0,0,538,539,1,0,0, - 0,539,540,6,47,9,0,540,1102,1,0,0,0,541,542,5,115,0,0,542,543,5,117,0,0, - 543,544,5,98,0,0,544,545,5,115,0,0,545,546,5,116,0,0,546,547,5,114,0,0,547, - 548,5,105,0,0,548,549,5,110,0,0,549,550,5,103,0,0,550,552,1,0,0,0,551,553, - 3,113,56,0,552,551,1,0,0,0,553,554,1,0,0,0,554,552,1,0,0,0,554,555,1,0,0, - 0,555,556,1,0,0,0,556,557,5,97,0,0,557,558,5,102,0,0,558,559,5,116,0,0,559, - 560,5,101,0,0,560,561,5,114,0,0,561,562,1,0,0,0,562,563,6,47,10,0,563,1102, - 1,0,0,0,564,565,5,115,0,0,565,566,5,116,0,0,566,567,5,97,0,0,567,568,5,114, - 0,0,568,569,5,116,0,0,569,570,5,115,0,0,570,572,1,0,0,0,571,573,3,113,56, - 0,572,571,1,0,0,0,573,574,1,0,0,0,574,572,1,0,0,0,574,575,1,0,0,0,575,576, - 1,0,0,0,576,577,5,119,0,0,577,578,5,105,0,0,578,579,5,116,0,0,579,580,5, - 104,0,0,580,581,1,0,0,0,581,582,6,47,11,0,582,1102,1,0,0,0,583,584,5,101, - 0,0,584,585,5,110,0,0,585,586,5,100,0,0,586,587,5,115,0,0,587,589,1,0,0, - 0,588,590,3,113,56,0,589,588,1,0,0,0,590,591,1,0,0,0,591,589,1,0,0,0,591, - 592,1,0,0,0,592,593,1,0,0,0,593,594,5,119,0,0,594,595,5,105,0,0,595,596, - 5,116,0,0,596,597,5,104,0,0,597,598,1,0,0,0,598,599,6,47,12,0,599,1102,1, - 0,0,0,600,601,5,115,0,0,601,602,5,116,0,0,602,603,5,97,0,0,603,604,5,114, - 0,0,604,605,5,116,0,0,605,607,1,0,0,0,606,608,3,113,56,0,607,606,1,0,0,0, - 608,609,1,0,0,0,609,607,1,0,0,0,609,610,1,0,0,0,610,611,1,0,0,0,611,612, - 5,112,0,0,612,613,5,111,0,0,613,614,5,115,0,0,614,615,5,105,0,0,615,616, - 5,116,0,0,616,617,5,105,0,0,617,618,5,111,0,0,618,619,5,110,0,0,619,620, - 1,0,0,0,620,621,6,47,13,0,621,1102,1,0,0,0,622,623,5,108,0,0,623,624,5,105, - 0,0,624,625,5,115,0,0,625,626,5,116,0,0,626,628,1,0,0,0,627,629,3,113,56, - 0,628,627,1,0,0,0,629,630,1,0,0,0,630,628,1,0,0,0,630,631,1,0,0,0,631,632, - 1,0,0,0,632,633,5,99,0,0,633,634,5,111,0,0,634,635,5,110,0,0,635,636,5,116, - 0,0,636,637,5,97,0,0,637,638,5,105,0,0,638,639,5,110,0,0,639,640,5,115,0, - 0,640,641,1,0,0,0,641,642,6,47,14,0,642,1102,1,0,0,0,643,644,5,105,0,0,644, - 645,5,110,0,0,645,646,5,115,0,0,646,647,5,101,0,0,647,648,5,114,0,0,648, - 649,5,116,0,0,649,651,1,0,0,0,650,652,3,113,56,0,651,650,1,0,0,0,652,653, - 1,0,0,0,653,651,1,0,0,0,653,654,1,0,0,0,654,655,1,0,0,0,655,656,5,98,0,0, - 656,657,5,101,0,0,657,658,5,102,0,0,658,659,5,111,0,0,659,660,5,114,0,0, - 660,661,5,101,0,0,661,662,1,0,0,0,662,663,6,47,15,0,663,1102,1,0,0,0,664, - 665,5,105,0,0,665,666,5,110,0,0,666,667,5,100,0,0,667,668,5,101,0,0,668, - 669,5,120,0,0,669,671,1,0,0,0,670,672,3,113,56,0,671,670,1,0,0,0,672,673, - 1,0,0,0,673,671,1,0,0,0,673,674,1,0,0,0,674,675,1,0,0,0,675,676,5,111,0, - 0,676,677,5,102,0,0,677,678,1,0,0,0,678,679,6,47,16,0,679,1102,1,0,0,0,680, - 681,5,100,0,0,681,682,5,105,0,0,682,683,5,115,0,0,683,684,5,116,0,0,684, - 685,5,105,0,0,685,686,5,110,0,0,686,687,5,99,0,0,687,688,5,116,0,0,688,690, - 1,0,0,0,689,691,3,113,56,0,690,689,1,0,0,0,691,692,1,0,0,0,692,690,1,0,0, - 0,692,693,1,0,0,0,693,694,1,0,0,0,694,695,5,118,0,0,695,696,5,97,0,0,696, - 697,5,108,0,0,697,698,5,117,0,0,698,699,5,101,0,0,699,700,5,115,0,0,700, - 701,1,0,0,0,701,702,6,47,17,0,702,1102,1,0,0,0,703,704,5,103,0,0,704,705, - 5,101,0,0,705,706,5,116,0,0,706,708,1,0,0,0,707,709,3,113,56,0,708,707,1, - 0,0,0,709,710,1,0,0,0,710,708,1,0,0,0,710,711,1,0,0,0,711,712,1,0,0,0,712, - 713,5,101,0,0,713,714,5,110,0,0,714,715,5,116,0,0,715,716,5,114,0,0,716, - 717,5,105,0,0,717,718,5,101,0,0,718,719,5,115,0,0,719,720,1,0,0,0,720,721, - 6,47,18,0,721,1102,1,0,0,0,722,723,5,103,0,0,723,724,5,101,0,0,724,725,5, - 116,0,0,725,727,1,0,0,0,726,728,3,113,56,0,727,726,1,0,0,0,728,729,1,0,0, - 0,729,727,1,0,0,0,729,730,1,0,0,0,730,731,1,0,0,0,731,732,5,118,0,0,732, - 733,5,97,0,0,733,734,5,108,0,0,734,735,5,117,0,0,735,736,5,101,0,0,736,737, - 1,0,0,0,737,738,6,47,19,0,738,1102,1,0,0,0,739,740,5,109,0,0,740,741,5,101, - 0,0,741,742,5,116,0,0,742,744,1,0,0,0,743,745,3,113,56,0,744,743,1,0,0,0, - 745,746,1,0,0,0,746,744,1,0,0,0,746,747,1,0,0,0,747,748,1,0,0,0,748,749, - 5,98,0,0,749,750,5,121,0,0,750,751,1,0,0,0,751,752,6,47,20,0,752,1102,1, - 0,0,0,753,754,5,111,0,0,754,755,5,118,0,0,755,756,5,101,0,0,756,757,5,114, - 0,0,757,758,5,108,0,0,758,759,5,97,0,0,759,760,5,112,0,0,760,761,5,115,0, - 0,761,763,1,0,0,0,762,764,3,113,56,0,763,762,1,0,0,0,764,765,1,0,0,0,765, - 763,1,0,0,0,765,766,1,0,0,0,766,767,1,0,0,0,767,768,5,98,0,0,768,769,5,101, - 0,0,769,770,5,102,0,0,770,771,5,111,0,0,771,772,5,114,0,0,772,773,5,101, - 0,0,773,774,1,0,0,0,774,775,6,47,21,0,775,1102,1,0,0,0,776,777,5,111,0,0, - 777,778,5,118,0,0,778,779,5,101,0,0,779,780,5,114,0,0,780,781,5,108,0,0, - 781,782,5,97,0,0,782,783,5,112,0,0,783,784,5,115,0,0,784,786,1,0,0,0,785, - 787,3,113,56,0,786,785,1,0,0,0,787,788,1,0,0,0,788,786,1,0,0,0,788,789,1, - 0,0,0,789,790,1,0,0,0,790,791,5,97,0,0,791,792,5,102,0,0,792,793,5,116,0, - 0,793,794,5,101,0,0,794,795,5,114,0,0,795,796,1,0,0,0,796,797,6,47,22,0, - 797,1102,1,0,0,0,798,799,5,102,0,0,799,800,5,105,0,0,800,801,5,110,0,0,801, - 802,5,105,0,0,802,803,5,115,0,0,803,804,5,104,0,0,804,805,5,101,0,0,805, - 806,5,100,0,0,806,808,1,0,0,0,807,809,3,113,56,0,808,807,1,0,0,0,809,810, - 1,0,0,0,810,808,1,0,0,0,810,811,1,0,0,0,811,812,1,0,0,0,812,813,5,98,0,0, - 813,814,5,121,0,0,814,815,1,0,0,0,815,816,6,47,23,0,816,1102,1,0,0,0,817, - 818,5,115,0,0,818,819,5,116,0,0,819,820,5,97,0,0,820,821,5,114,0,0,821,822, - 5,116,0,0,822,823,5,101,0,0,823,824,5,100,0,0,824,826,1,0,0,0,825,827,3, - 113,56,0,826,825,1,0,0,0,827,828,1,0,0,0,828,826,1,0,0,0,828,829,1,0,0,0, - 829,830,1,0,0,0,830,831,5,98,0,0,831,832,5,121,0,0,832,833,1,0,0,0,833,834, - 6,47,24,0,834,1102,1,0,0,0,835,836,5,115,0,0,836,837,5,116,0,0,837,838,5, - 97,0,0,838,839,5,114,0,0,839,840,5,116,0,0,840,842,1,0,0,0,841,843,3,113, - 56,0,842,841,1,0,0,0,843,844,1,0,0,0,844,842,1,0,0,0,844,845,1,0,0,0,845, - 846,1,0,0,0,846,847,5,105,0,0,847,848,5,110,0,0,848,849,5,99,0,0,849,850, - 5,108,0,0,850,851,5,117,0,0,851,852,5,100,0,0,852,853,5,101,0,0,853,854, - 5,100,0,0,854,855,1,0,0,0,855,856,6,47,25,0,856,1102,1,0,0,0,857,858,5,101, - 0,0,858,859,5,110,0,0,859,860,5,100,0,0,860,862,1,0,0,0,861,863,3,113,56, - 0,862,861,1,0,0,0,863,864,1,0,0,0,864,862,1,0,0,0,864,865,1,0,0,0,865,866, - 1,0,0,0,866,867,5,105,0,0,867,868,5,110,0,0,868,869,5,99,0,0,869,870,5,108, - 0,0,870,871,5,117,0,0,871,872,5,100,0,0,872,873,5,101,0,0,873,874,5,100, - 0,0,874,875,1,0,0,0,875,876,6,47,26,0,876,1102,1,0,0,0,877,878,5,100,0,0, - 878,879,5,97,0,0,879,880,5,121,0,0,880,882,1,0,0,0,881,883,3,113,56,0,882, - 881,1,0,0,0,883,884,1,0,0,0,884,882,1,0,0,0,884,885,1,0,0,0,885,886,1,0, - 0,0,886,887,5,111,0,0,887,888,5,102,0,0,888,890,1,0,0,0,889,891,3,113,56, - 0,890,889,1,0,0,0,891,892,1,0,0,0,892,890,1,0,0,0,892,893,1,0,0,0,893,894, - 1,0,0,0,894,895,5,121,0,0,895,896,5,101,0,0,896,897,5,97,0,0,897,898,5,114, - 0,0,898,899,1,0,0,0,899,900,6,47,27,0,900,1102,1,0,0,0,901,902,5,100,0,0, - 902,903,5,97,0,0,903,904,5,121,0,0,904,906,1,0,0,0,905,907,3,113,56,0,906, - 905,1,0,0,0,907,908,1,0,0,0,908,906,1,0,0,0,908,909,1,0,0,0,909,910,1,0, - 0,0,910,911,5,111,0,0,911,912,5,102,0,0,912,914,1,0,0,0,913,915,3,113,56, - 0,914,913,1,0,0,0,915,916,1,0,0,0,916,914,1,0,0,0,916,917,1,0,0,0,917,918, - 1,0,0,0,918,919,5,119,0,0,919,920,5,101,0,0,920,921,5,101,0,0,921,922,5, - 107,0,0,922,923,1,0,0,0,923,924,6,47,28,0,924,1102,1,0,0,0,925,926,5,109, - 0,0,926,927,5,111,0,0,927,928,5,110,0,0,928,929,5,116,0,0,929,930,5,104, - 0,0,930,932,1,0,0,0,931,933,3,113,56,0,932,931,1,0,0,0,933,934,1,0,0,0,934, - 932,1,0,0,0,934,935,1,0,0,0,935,936,1,0,0,0,936,937,5,111,0,0,937,938,5, - 102,0,0,938,940,1,0,0,0,939,941,3,113,56,0,940,939,1,0,0,0,941,942,1,0,0, - 0,942,940,1,0,0,0,942,943,1,0,0,0,943,944,1,0,0,0,944,945,5,121,0,0,945, - 946,5,101,0,0,946,947,5,97,0,0,947,948,5,114,0,0,948,949,1,0,0,0,949,950, - 6,47,29,0,950,1102,1,0,0,0,951,952,5,119,0,0,952,953,5,101,0,0,953,954,5, - 101,0,0,954,955,5,107,0,0,955,957,1,0,0,0,956,958,3,113,56,0,957,956,1,0, - 0,0,958,959,1,0,0,0,959,957,1,0,0,0,959,960,1,0,0,0,960,961,1,0,0,0,961, - 962,5,111,0,0,962,963,5,102,0,0,963,965,1,0,0,0,964,966,3,113,56,0,965,964, - 1,0,0,0,966,967,1,0,0,0,967,965,1,0,0,0,967,968,1,0,0,0,968,969,1,0,0,0, - 969,970,5,121,0,0,970,971,5,101,0,0,971,972,5,97,0,0,972,973,5,114,0,0,973, - 974,1,0,0,0,974,975,6,47,30,0,975,1102,1,0,0,0,976,977,5,114,0,0,977,978, - 5,111,0,0,978,979,5,117,0,0,979,980,5,110,0,0,980,981,5,100,0,0,981,983, - 1,0,0,0,982,984,3,113,56,0,983,982,1,0,0,0,984,985,1,0,0,0,985,983,1,0,0, - 0,985,986,1,0,0,0,986,987,1,0,0,0,987,988,5,117,0,0,988,989,5,112,0,0,989, - 990,1,0,0,0,990,991,6,47,31,0,991,1102,1,0,0,0,992,993,5,114,0,0,993,994, - 5,111,0,0,994,995,5,117,0,0,995,996,5,110,0,0,996,997,5,100,0,0,997,999, - 1,0,0,0,998,1000,3,113,56,0,999,998,1,0,0,0,1000,1001,1,0,0,0,1001,999,1, - 0,0,0,1001,1002,1,0,0,0,1002,1003,1,0,0,0,1003,1004,5,100,0,0,1004,1005, - 5,111,0,0,1005,1006,5,119,0,0,1006,1007,5,110,0,0,1007,1008,1,0,0,0,1008, - 1009,6,47,32,0,1009,1102,1,0,0,0,1010,1011,5,114,0,0,1011,1012,5,111,0,0, - 1012,1013,5,117,0,0,1013,1014,5,110,0,0,1014,1015,5,100,0,0,1015,1017,1, - 0,0,0,1016,1018,3,113,56,0,1017,1016,1,0,0,0,1018,1019,1,0,0,0,1019,1017, - 1,0,0,0,1019,1020,1,0,0,0,1020,1021,1,0,0,0,1021,1022,5,104,0,0,1022,1023, - 5,97,0,0,1023,1024,5,108,0,0,1024,1025,5,102,0,0,1025,1027,1,0,0,0,1026, - 1028,3,113,56,0,1027,1026,1,0,0,0,1028,1029,1,0,0,0,1029,1027,1,0,0,0,1029, - 1030,1,0,0,0,1030,1031,1,0,0,0,1031,1032,5,117,0,0,1032,1033,5,112,0,0,1033, - 1034,1,0,0,0,1034,1035,6,47,33,0,1035,1102,1,0,0,0,1036,1037,5,114,0,0,1037, - 1038,5,111,0,0,1038,1039,5,117,0,0,1039,1040,5,110,0,0,1040,1041,5,100,0, - 0,1041,1043,1,0,0,0,1042,1044,3,113,56,0,1043,1042,1,0,0,0,1044,1045,1,0, - 0,0,1045,1043,1,0,0,0,1045,1046,1,0,0,0,1046,1047,1,0,0,0,1047,1048,5,104, - 0,0,1048,1049,5,97,0,0,1049,1050,5,108,0,0,1050,1051,5,102,0,0,1051,1053, - 1,0,0,0,1052,1054,3,113,56,0,1053,1052,1,0,0,0,1054,1055,1,0,0,0,1055,1053, - 1,0,0,0,1055,1056,1,0,0,0,1056,1057,1,0,0,0,1057,1058,5,100,0,0,1058,1059, - 5,111,0,0,1059,1060,5,119,0,0,1060,1061,5,110,0,0,1061,1062,1,0,0,0,1062, - 1063,6,47,34,0,1063,1102,1,0,0,0,1064,1065,5,116,0,0,1065,1066,5,105,0,0, - 1066,1067,5,109,0,0,1067,1068,5,101,0,0,1068,1070,1,0,0,0,1069,1071,3,113, - 56,0,1070,1069,1,0,0,0,1071,1072,1,0,0,0,1072,1070,1,0,0,0,1072,1073,1,0, - 0,0,1073,1074,1,0,0,0,1074,1075,5,111,0,0,1075,1076,5,102,0,0,1076,1077, - 5,102,0,0,1077,1078,5,115,0,0,1078,1079,5,101,0,0,1079,1080,5,116,0,0,1080, - 1081,1,0,0,0,1081,1082,6,47,35,0,1082,1102,1,0,0,0,1083,1087,3,103,51,0, - 1084,1086,3,105,52,0,1085,1084,1,0,0,0,1086,1089,1,0,0,0,1087,1085,1,0,0, - 0,1087,1088,1,0,0,0,1088,1102,1,0,0,0,1089,1087,1,0,0,0,1090,1096,5,39,0, - 0,1091,1095,8,2,0,0,1092,1093,5,39,0,0,1093,1095,5,39,0,0,1094,1091,1,0, - 0,0,1094,1092,1,0,0,0,1095,1098,1,0,0,0,1096,1094,1,0,0,0,1096,1097,1,0, - 0,0,1097,1099,1,0,0,0,1098,1096,1,0,0,0,1099,1100,5,39,0,0,1100,1102,6,47, - 36,0,1101,351,1,0,0,0,1101,377,1,0,0,0,1101,417,1,0,0,0,1101,460,1,0,0,0, - 1101,481,1,0,0,0,1101,499,1,0,0,0,1101,517,1,0,0,0,1101,541,1,0,0,0,1101, - 564,1,0,0,0,1101,583,1,0,0,0,1101,600,1,0,0,0,1101,622,1,0,0,0,1101,643, - 1,0,0,0,1101,664,1,0,0,0,1101,680,1,0,0,0,1101,703,1,0,0,0,1101,722,1,0, - 0,0,1101,739,1,0,0,0,1101,753,1,0,0,0,1101,776,1,0,0,0,1101,798,1,0,0,0, - 1101,817,1,0,0,0,1101,835,1,0,0,0,1101,857,1,0,0,0,1101,877,1,0,0,0,1101, - 901,1,0,0,0,1101,925,1,0,0,0,1101,951,1,0,0,0,1101,976,1,0,0,0,1101,992, - 1,0,0,0,1101,1010,1,0,0,0,1101,1036,1,0,0,0,1101,1064,1,0,0,0,1101,1083, - 1,0,0,0,1101,1090,1,0,0,0,1102,96,1,0,0,0,1103,1108,3,99,49,0,1104,1109, - 7,3,0,0,1105,1109,3,101,50,0,1106,1109,9,0,0,0,1107,1109,5,0,0,1,1108,1104, - 1,0,0,0,1108,1105,1,0,0,0,1108,1106,1,0,0,0,1108,1107,1,0,0,0,1109,98,1, - 0,0,0,1110,1111,5,92,0,0,1111,100,1,0,0,0,1112,1113,5,117,0,0,1113,1114, - 3,109,54,0,1114,1115,3,109,54,0,1115,1116,3,109,54,0,1116,1117,3,109,54, - 0,1117,1127,1,0,0,0,1118,1119,5,85,0,0,1119,1120,3,109,54,0,1120,1121,3, - 109,54,0,1121,1122,3,109,54,0,1122,1123,3,109,54,0,1123,1124,3,109,54,0, - 1124,1125,3,109,54,0,1125,1127,1,0,0,0,1126,1112,1,0,0,0,1126,1118,1,0,0, - 0,1127,102,1,0,0,0,1128,1130,7,4,0,0,1129,1128,1,0,0,0,1130,104,1,0,0,0, - 1131,1135,3,103,51,0,1132,1135,3,107,53,0,1133,1135,7,5,0,0,1134,1131,1, - 0,0,0,1134,1132,1,0,0,0,1134,1133,1,0,0,0,1135,106,1,0,0,0,1136,1137,7,6, - 0,0,1137,108,1,0,0,0,1138,1139,7,7,0,0,1139,110,1,0,0,0,1140,1144,3,107, - 53,0,1141,1143,3,107,53,0,1142,1141,1,0,0,0,1143,1146,1,0,0,0,1144,1142, - 1,0,0,0,1144,1145,1,0,0,0,1145,112,1,0,0,0,1146,1144,1,0,0,0,1147,1150,3, - 115,57,0,1148,1150,7,8,0,0,1149,1147,1,0,0,0,1149,1148,1,0,0,0,1150,114, - 1,0,0,0,1151,1152,7,0,0,0,1152,116,1,0,0,0,65,0,123,137,145,152,154,163, - 167,173,181,344,359,368,385,394,404,426,435,447,470,490,508,530,554,574, - 591,609,630,653,673,692,710,729,746,765,788,810,828,844,864,884,892,908, - 916,934,942,959,967,985,1001,1019,1029,1045,1055,1072,1087,1094,1096,1101, - 1108,1126,1129,1134,1144,1149,37,6,0,0,1,3,0,1,46,1,1,47,2,1,47,3,1,47,4, - 1,47,5,1,47,6,1,47,7,1,47,8,1,47,9,1,47,10,1,47,11,1,47,12,1,47,13,1,47, - 14,1,47,15,1,47,16,1,47,17,1,47,18,1,47,19,1,47,20,1,47,21,1,47,22,1,47, - 23,1,47,24,1,47,25,1,47,26,1,47,27,1,47,28,1,47,29,1,47,30,1,47,31,1,47, - 32,1,47,33,1,47,34,1,47,35]; + 47,5,0,459,1161,1,0,0,0,460,461,5,114,0,0,461,462,5,111,0,0,462,463,5,117, + 0,0,463,464,5,110,0,0,464,465,5,100,0,0,465,467,1,0,0,0,466,468,3,113,56, + 0,467,466,1,0,0,0,468,469,1,0,0,0,469,467,1,0,0,0,469,470,1,0,0,0,470,471, + 1,0,0,0,471,472,5,117,0,0,472,473,5,112,0,0,473,474,1,0,0,0,474,475,6,47, + 6,0,475,1161,1,0,0,0,476,477,5,114,0,0,477,478,5,111,0,0,478,479,5,117,0, + 0,479,480,5,110,0,0,480,481,5,100,0,0,481,483,1,0,0,0,482,484,3,113,56,0, + 483,482,1,0,0,0,484,485,1,0,0,0,485,483,1,0,0,0,485,486,1,0,0,0,486,487, + 1,0,0,0,487,488,5,100,0,0,488,489,5,111,0,0,489,490,5,119,0,0,490,491,5, + 110,0,0,491,492,1,0,0,0,492,493,6,47,7,0,493,1161,1,0,0,0,494,495,5,114, + 0,0,495,496,5,111,0,0,496,497,5,117,0,0,497,498,5,110,0,0,498,499,5,100, + 0,0,499,501,1,0,0,0,500,502,3,113,56,0,501,500,1,0,0,0,502,503,1,0,0,0,503, + 501,1,0,0,0,503,504,1,0,0,0,504,505,1,0,0,0,505,506,5,104,0,0,506,507,5, + 97,0,0,507,508,5,108,0,0,508,509,5,102,0,0,509,511,1,0,0,0,510,512,3,113, + 56,0,511,510,1,0,0,0,512,513,1,0,0,0,513,511,1,0,0,0,513,514,1,0,0,0,514, + 515,1,0,0,0,515,516,5,117,0,0,516,517,5,112,0,0,517,518,1,0,0,0,518,519, + 6,47,8,0,519,1161,1,0,0,0,520,521,5,114,0,0,521,522,5,111,0,0,522,523,5, + 117,0,0,523,524,5,110,0,0,524,525,5,100,0,0,525,527,1,0,0,0,526,528,3,113, + 56,0,527,526,1,0,0,0,528,529,1,0,0,0,529,527,1,0,0,0,529,530,1,0,0,0,530, + 531,1,0,0,0,531,532,5,104,0,0,532,533,5,97,0,0,533,534,5,108,0,0,534,535, + 5,102,0,0,535,537,1,0,0,0,536,538,3,113,56,0,537,536,1,0,0,0,538,539,1,0, + 0,0,539,537,1,0,0,0,539,540,1,0,0,0,540,541,1,0,0,0,541,542,5,100,0,0,542, + 543,5,111,0,0,543,544,5,119,0,0,544,545,5,110,0,0,545,546,1,0,0,0,546,547, + 6,47,9,0,547,1161,1,0,0,0,548,549,5,115,0,0,549,550,5,116,0,0,550,551,5, + 114,0,0,551,552,5,105,0,0,552,553,5,110,0,0,553,554,5,103,0,0,554,556,1, + 0,0,0,555,557,3,113,56,0,556,555,1,0,0,0,557,558,1,0,0,0,558,556,1,0,0,0, + 558,559,1,0,0,0,559,560,1,0,0,0,560,561,5,108,0,0,561,562,5,101,0,0,562, + 563,5,110,0,0,563,564,5,103,0,0,564,565,5,116,0,0,565,566,5,104,0,0,566, + 567,1,0,0,0,567,568,6,47,10,0,568,1161,1,0,0,0,569,570,5,117,0,0,570,571, + 5,112,0,0,571,572,5,112,0,0,572,573,5,101,0,0,573,574,5,114,0,0,574,576, + 1,0,0,0,575,577,3,113,56,0,576,575,1,0,0,0,577,578,1,0,0,0,578,576,1,0,0, + 0,578,579,1,0,0,0,579,580,1,0,0,0,580,581,5,99,0,0,581,582,5,97,0,0,582, + 583,5,115,0,0,583,584,5,101,0,0,584,585,1,0,0,0,585,586,6,47,11,0,586,1161, + 1,0,0,0,587,588,5,108,0,0,588,589,5,111,0,0,589,590,5,119,0,0,590,591,5, + 101,0,0,591,592,5,114,0,0,592,594,1,0,0,0,593,595,3,113,56,0,594,593,1,0, + 0,0,595,596,1,0,0,0,596,594,1,0,0,0,596,597,1,0,0,0,597,598,1,0,0,0,598, + 599,5,99,0,0,599,600,5,97,0,0,600,601,5,115,0,0,601,602,5,101,0,0,602,603, + 1,0,0,0,603,604,6,47,12,0,604,1161,1,0,0,0,605,606,5,115,0,0,606,607,5,117, + 0,0,607,608,5,98,0,0,608,609,5,115,0,0,609,610,5,116,0,0,610,611,5,114,0, + 0,611,612,5,105,0,0,612,613,5,110,0,0,613,614,5,103,0,0,614,616,1,0,0,0, + 615,617,3,113,56,0,616,615,1,0,0,0,617,618,1,0,0,0,618,616,1,0,0,0,618,619, + 1,0,0,0,619,620,1,0,0,0,620,621,5,98,0,0,621,622,5,101,0,0,622,623,5,102, + 0,0,623,624,5,111,0,0,624,625,5,114,0,0,625,626,5,101,0,0,626,627,1,0,0, + 0,627,628,6,47,13,0,628,1161,1,0,0,0,629,630,5,115,0,0,630,631,5,117,0,0, + 631,632,5,98,0,0,632,633,5,115,0,0,633,634,5,116,0,0,634,635,5,114,0,0,635, + 636,5,105,0,0,636,637,5,110,0,0,637,638,5,103,0,0,638,640,1,0,0,0,639,641, + 3,113,56,0,640,639,1,0,0,0,641,642,1,0,0,0,642,640,1,0,0,0,642,643,1,0,0, + 0,643,644,1,0,0,0,644,645,5,97,0,0,645,646,5,102,0,0,646,647,5,116,0,0,647, + 648,5,101,0,0,648,649,5,114,0,0,649,650,1,0,0,0,650,651,6,47,14,0,651,1161, + 1,0,0,0,652,653,5,115,0,0,653,654,5,116,0,0,654,655,5,97,0,0,655,656,5,114, + 0,0,656,657,5,116,0,0,657,658,5,115,0,0,658,660,1,0,0,0,659,661,3,113,56, + 0,660,659,1,0,0,0,661,662,1,0,0,0,662,660,1,0,0,0,662,663,1,0,0,0,663,664, + 1,0,0,0,664,665,5,119,0,0,665,666,5,105,0,0,666,667,5,116,0,0,667,668,5, + 104,0,0,668,669,1,0,0,0,669,670,6,47,15,0,670,1161,1,0,0,0,671,672,5,101, + 0,0,672,673,5,110,0,0,673,674,5,100,0,0,674,675,5,115,0,0,675,677,1,0,0, + 0,676,678,3,113,56,0,677,676,1,0,0,0,678,679,1,0,0,0,679,677,1,0,0,0,679, + 680,1,0,0,0,680,681,1,0,0,0,681,682,5,119,0,0,682,683,5,105,0,0,683,684, + 5,116,0,0,684,685,5,104,0,0,685,686,1,0,0,0,686,687,6,47,16,0,687,1161,1, + 0,0,0,688,689,5,115,0,0,689,690,5,116,0,0,690,691,5,114,0,0,691,692,5,105, + 0,0,692,693,5,110,0,0,693,694,5,103,0,0,694,696,1,0,0,0,695,697,3,113,56, + 0,696,695,1,0,0,0,697,698,1,0,0,0,698,696,1,0,0,0,698,699,1,0,0,0,699,700, + 1,0,0,0,700,701,5,106,0,0,701,702,5,111,0,0,702,703,5,105,0,0,703,704,5, + 110,0,0,704,705,1,0,0,0,705,706,6,47,17,0,706,1161,1,0,0,0,707,708,5,115, + 0,0,708,709,5,116,0,0,709,710,5,97,0,0,710,711,5,114,0,0,711,712,5,116,0, + 0,712,714,1,0,0,0,713,715,3,113,56,0,714,713,1,0,0,0,715,716,1,0,0,0,716, + 714,1,0,0,0,716,717,1,0,0,0,717,718,1,0,0,0,718,719,5,112,0,0,719,720,5, + 111,0,0,720,721,5,115,0,0,721,722,5,105,0,0,722,723,5,116,0,0,723,724,5, + 105,0,0,724,725,5,111,0,0,725,726,5,110,0,0,726,727,1,0,0,0,727,728,6,47, + 18,0,728,1161,1,0,0,0,729,730,5,108,0,0,730,731,5,105,0,0,731,732,5,115, + 0,0,732,733,5,116,0,0,733,735,1,0,0,0,734,736,3,113,56,0,735,734,1,0,0,0, + 736,737,1,0,0,0,737,735,1,0,0,0,737,738,1,0,0,0,738,739,1,0,0,0,739,740, + 5,99,0,0,740,741,5,111,0,0,741,742,5,110,0,0,742,743,5,116,0,0,743,744,5, + 97,0,0,744,745,5,105,0,0,745,746,5,110,0,0,746,747,5,115,0,0,747,748,1,0, + 0,0,748,749,6,47,19,0,749,1161,1,0,0,0,750,751,5,105,0,0,751,752,5,110,0, + 0,752,753,5,115,0,0,753,754,5,101,0,0,754,755,5,114,0,0,755,756,5,116,0, + 0,756,758,1,0,0,0,757,759,3,113,56,0,758,757,1,0,0,0,759,760,1,0,0,0,760, + 758,1,0,0,0,760,761,1,0,0,0,761,762,1,0,0,0,762,763,5,98,0,0,763,764,5,101, + 0,0,764,765,5,102,0,0,765,766,5,111,0,0,766,767,5,114,0,0,767,768,5,101, + 0,0,768,769,1,0,0,0,769,770,6,47,20,0,770,1161,1,0,0,0,771,772,5,105,0,0, + 772,773,5,110,0,0,773,774,5,100,0,0,774,775,5,101,0,0,775,776,5,120,0,0, + 776,778,1,0,0,0,777,779,3,113,56,0,778,777,1,0,0,0,779,780,1,0,0,0,780,778, + 1,0,0,0,780,781,1,0,0,0,781,782,1,0,0,0,782,783,5,111,0,0,783,784,5,102, + 0,0,784,785,1,0,0,0,785,786,6,47,21,0,786,1161,1,0,0,0,787,788,5,100,0,0, + 788,789,5,105,0,0,789,790,5,115,0,0,790,791,5,116,0,0,791,792,5,105,0,0, + 792,793,5,110,0,0,793,794,5,99,0,0,794,795,5,116,0,0,795,797,1,0,0,0,796, + 798,3,113,56,0,797,796,1,0,0,0,798,799,1,0,0,0,799,797,1,0,0,0,799,800,1, + 0,0,0,800,801,1,0,0,0,801,802,5,118,0,0,802,803,5,97,0,0,803,804,5,108,0, + 0,804,805,5,117,0,0,805,806,5,101,0,0,806,807,5,115,0,0,807,808,1,0,0,0, + 808,809,6,47,22,0,809,1161,1,0,0,0,810,811,5,103,0,0,811,812,5,101,0,0,812, + 813,5,116,0,0,813,815,1,0,0,0,814,816,3,113,56,0,815,814,1,0,0,0,816,817, + 1,0,0,0,817,815,1,0,0,0,817,818,1,0,0,0,818,819,1,0,0,0,819,820,5,101,0, + 0,820,821,5,110,0,0,821,822,5,116,0,0,822,823,5,114,0,0,823,824,5,105,0, + 0,824,825,5,101,0,0,825,826,5,115,0,0,826,827,1,0,0,0,827,828,6,47,23,0, + 828,1161,1,0,0,0,829,830,5,103,0,0,830,831,5,101,0,0,831,832,5,116,0,0,832, + 834,1,0,0,0,833,835,3,113,56,0,834,833,1,0,0,0,835,836,1,0,0,0,836,834,1, + 0,0,0,836,837,1,0,0,0,837,838,1,0,0,0,838,839,5,118,0,0,839,840,5,97,0,0, + 840,841,5,108,0,0,841,842,5,117,0,0,842,843,5,101,0,0,843,844,1,0,0,0,844, + 845,6,47,24,0,845,1161,1,0,0,0,846,847,5,99,0,0,847,848,5,111,0,0,848,849, + 5,110,0,0,849,850,5,116,0,0,850,851,5,101,0,0,851,852,5,120,0,0,852,853, + 5,116,0,0,853,855,1,0,0,0,854,856,3,113,56,0,855,854,1,0,0,0,856,857,1,0, + 0,0,857,855,1,0,0,0,857,858,1,0,0,0,858,859,1,0,0,0,859,860,5,112,0,0,860, + 861,5,117,0,0,861,862,5,116,0,0,862,863,1,0,0,0,863,864,6,47,25,0,864,1161, + 1,0,0,0,865,866,5,99,0,0,866,867,5,111,0,0,867,868,5,110,0,0,868,869,5,116, + 0,0,869,870,5,101,0,0,870,871,5,120,0,0,871,872,5,116,0,0,872,874,1,0,0, + 0,873,875,3,113,56,0,874,873,1,0,0,0,875,876,1,0,0,0,876,874,1,0,0,0,876, + 877,1,0,0,0,877,878,1,0,0,0,878,879,5,109,0,0,879,880,5,101,0,0,880,881, + 5,114,0,0,881,882,5,103,0,0,882,883,5,101,0,0,883,884,1,0,0,0,884,885,6, + 47,26,0,885,1161,1,0,0,0,886,887,5,109,0,0,887,888,5,101,0,0,888,889,5,116, + 0,0,889,891,1,0,0,0,890,892,3,113,56,0,891,890,1,0,0,0,892,893,1,0,0,0,893, + 891,1,0,0,0,893,894,1,0,0,0,894,895,1,0,0,0,895,896,5,98,0,0,896,897,5,121, + 0,0,897,898,1,0,0,0,898,899,6,47,27,0,899,1161,1,0,0,0,900,901,5,111,0,0, + 901,902,5,118,0,0,902,903,5,101,0,0,903,904,5,114,0,0,904,905,5,108,0,0, + 905,906,5,97,0,0,906,907,5,112,0,0,907,908,5,115,0,0,908,910,1,0,0,0,909, + 911,3,113,56,0,910,909,1,0,0,0,911,912,1,0,0,0,912,910,1,0,0,0,912,913,1, + 0,0,0,913,914,1,0,0,0,914,915,5,98,0,0,915,916,5,101,0,0,916,917,5,102,0, + 0,917,918,5,111,0,0,918,919,5,114,0,0,919,920,5,101,0,0,920,921,1,0,0,0, + 921,922,6,47,28,0,922,1161,1,0,0,0,923,924,5,111,0,0,924,925,5,118,0,0,925, + 926,5,101,0,0,926,927,5,114,0,0,927,928,5,108,0,0,928,929,5,97,0,0,929,930, + 5,112,0,0,930,931,5,115,0,0,931,933,1,0,0,0,932,934,3,113,56,0,933,932,1, + 0,0,0,934,935,1,0,0,0,935,933,1,0,0,0,935,936,1,0,0,0,936,937,1,0,0,0,937, + 938,5,97,0,0,938,939,5,102,0,0,939,940,5,116,0,0,940,941,5,101,0,0,941,942, + 5,114,0,0,942,943,1,0,0,0,943,944,6,47,29,0,944,1161,1,0,0,0,945,946,5,102, + 0,0,946,947,5,105,0,0,947,948,5,110,0,0,948,949,5,105,0,0,949,950,5,115, + 0,0,950,951,5,104,0,0,951,952,5,101,0,0,952,953,5,100,0,0,953,955,1,0,0, + 0,954,956,3,113,56,0,955,954,1,0,0,0,956,957,1,0,0,0,957,955,1,0,0,0,957, + 958,1,0,0,0,958,959,1,0,0,0,959,960,5,98,0,0,960,961,5,121,0,0,961,962,1, + 0,0,0,962,963,6,47,30,0,963,1161,1,0,0,0,964,965,5,115,0,0,965,966,5,116, + 0,0,966,967,5,97,0,0,967,968,5,114,0,0,968,969,5,116,0,0,969,970,5,101,0, + 0,970,971,5,100,0,0,971,973,1,0,0,0,972,974,3,113,56,0,973,972,1,0,0,0,974, + 975,1,0,0,0,975,973,1,0,0,0,975,976,1,0,0,0,976,977,1,0,0,0,977,978,5,98, + 0,0,978,979,5,121,0,0,979,980,1,0,0,0,980,981,6,47,31,0,981,1161,1,0,0,0, + 982,983,5,115,0,0,983,984,5,116,0,0,984,985,5,97,0,0,985,986,5,114,0,0,986, + 987,5,116,0,0,987,989,1,0,0,0,988,990,3,113,56,0,989,988,1,0,0,0,990,991, + 1,0,0,0,991,989,1,0,0,0,991,992,1,0,0,0,992,993,1,0,0,0,993,994,5,105,0, + 0,994,995,5,110,0,0,995,996,5,99,0,0,996,997,5,108,0,0,997,998,5,117,0,0, + 998,999,5,100,0,0,999,1000,5,101,0,0,1000,1001,5,100,0,0,1001,1002,1,0,0, + 0,1002,1003,6,47,32,0,1003,1161,1,0,0,0,1004,1005,5,101,0,0,1005,1006,5, + 110,0,0,1006,1007,5,100,0,0,1007,1009,1,0,0,0,1008,1010,3,113,56,0,1009, + 1008,1,0,0,0,1010,1011,1,0,0,0,1011,1009,1,0,0,0,1011,1012,1,0,0,0,1012, + 1013,1,0,0,0,1013,1014,5,105,0,0,1014,1015,5,110,0,0,1015,1016,5,99,0,0, + 1016,1017,5,108,0,0,1017,1018,5,117,0,0,1018,1019,5,100,0,0,1019,1020,5, + 101,0,0,1020,1021,5,100,0,0,1021,1022,1,0,0,0,1022,1023,6,47,33,0,1023,1161, + 1,0,0,0,1024,1025,5,100,0,0,1025,1026,5,97,0,0,1026,1027,5,121,0,0,1027, + 1029,1,0,0,0,1028,1030,3,113,56,0,1029,1028,1,0,0,0,1030,1031,1,0,0,0,1031, + 1029,1,0,0,0,1031,1032,1,0,0,0,1032,1033,1,0,0,0,1033,1034,5,111,0,0,1034, + 1035,5,102,0,0,1035,1037,1,0,0,0,1036,1038,3,113,56,0,1037,1036,1,0,0,0, + 1038,1039,1,0,0,0,1039,1037,1,0,0,0,1039,1040,1,0,0,0,1040,1041,1,0,0,0, + 1041,1042,5,121,0,0,1042,1043,5,101,0,0,1043,1044,5,97,0,0,1044,1045,5,114, + 0,0,1045,1046,1,0,0,0,1046,1047,6,47,34,0,1047,1161,1,0,0,0,1048,1049,5, + 100,0,0,1049,1050,5,97,0,0,1050,1051,5,121,0,0,1051,1053,1,0,0,0,1052,1054, + 3,113,56,0,1053,1052,1,0,0,0,1054,1055,1,0,0,0,1055,1053,1,0,0,0,1055,1056, + 1,0,0,0,1056,1057,1,0,0,0,1057,1058,5,111,0,0,1058,1059,5,102,0,0,1059,1061, + 1,0,0,0,1060,1062,3,113,56,0,1061,1060,1,0,0,0,1062,1063,1,0,0,0,1063,1061, + 1,0,0,0,1063,1064,1,0,0,0,1064,1065,1,0,0,0,1065,1066,5,119,0,0,1066,1067, + 5,101,0,0,1067,1068,5,101,0,0,1068,1069,5,107,0,0,1069,1070,1,0,0,0,1070, + 1071,6,47,35,0,1071,1161,1,0,0,0,1072,1073,5,109,0,0,1073,1074,5,111,0,0, + 1074,1075,5,110,0,0,1075,1076,5,116,0,0,1076,1077,5,104,0,0,1077,1079,1, + 0,0,0,1078,1080,3,113,56,0,1079,1078,1,0,0,0,1080,1081,1,0,0,0,1081,1079, + 1,0,0,0,1081,1082,1,0,0,0,1082,1083,1,0,0,0,1083,1084,5,111,0,0,1084,1085, + 5,102,0,0,1085,1087,1,0,0,0,1086,1088,3,113,56,0,1087,1086,1,0,0,0,1088, + 1089,1,0,0,0,1089,1087,1,0,0,0,1089,1090,1,0,0,0,1090,1091,1,0,0,0,1091, + 1092,5,121,0,0,1092,1093,5,101,0,0,1093,1094,5,97,0,0,1094,1095,5,114,0, + 0,1095,1096,1,0,0,0,1096,1097,6,47,36,0,1097,1161,1,0,0,0,1098,1099,5,119, + 0,0,1099,1100,5,101,0,0,1100,1101,5,101,0,0,1101,1102,5,107,0,0,1102,1104, + 1,0,0,0,1103,1105,3,113,56,0,1104,1103,1,0,0,0,1105,1106,1,0,0,0,1106,1104, + 1,0,0,0,1106,1107,1,0,0,0,1107,1108,1,0,0,0,1108,1109,5,111,0,0,1109,1110, + 5,102,0,0,1110,1112,1,0,0,0,1111,1113,3,113,56,0,1112,1111,1,0,0,0,1113, + 1114,1,0,0,0,1114,1112,1,0,0,0,1114,1115,1,0,0,0,1115,1116,1,0,0,0,1116, + 1117,5,121,0,0,1117,1118,5,101,0,0,1118,1119,5,97,0,0,1119,1120,5,114,0, + 0,1120,1121,1,0,0,0,1121,1122,6,47,37,0,1122,1161,1,0,0,0,1123,1124,5,116, + 0,0,1124,1125,5,105,0,0,1125,1126,5,109,0,0,1126,1127,5,101,0,0,1127,1129, + 1,0,0,0,1128,1130,3,113,56,0,1129,1128,1,0,0,0,1130,1131,1,0,0,0,1131,1129, + 1,0,0,0,1131,1132,1,0,0,0,1132,1133,1,0,0,0,1133,1134,5,111,0,0,1134,1135, + 5,102,0,0,1135,1136,5,102,0,0,1136,1137,5,115,0,0,1137,1138,5,101,0,0,1138, + 1139,5,116,0,0,1139,1140,1,0,0,0,1140,1141,6,47,38,0,1141,1161,1,0,0,0,1142, + 1146,3,103,51,0,1143,1145,3,105,52,0,1144,1143,1,0,0,0,1145,1148,1,0,0,0, + 1146,1144,1,0,0,0,1146,1147,1,0,0,0,1147,1161,1,0,0,0,1148,1146,1,0,0,0, + 1149,1155,5,39,0,0,1150,1154,8,2,0,0,1151,1152,5,39,0,0,1152,1154,5,39,0, + 0,1153,1150,1,0,0,0,1153,1151,1,0,0,0,1154,1157,1,0,0,0,1155,1153,1,0,0, + 0,1155,1156,1,0,0,0,1156,1158,1,0,0,0,1157,1155,1,0,0,0,1158,1159,5,39,0, + 0,1159,1161,6,47,39,0,1160,351,1,0,0,0,1160,377,1,0,0,0,1160,417,1,0,0,0, + 1160,460,1,0,0,0,1160,476,1,0,0,0,1160,494,1,0,0,0,1160,520,1,0,0,0,1160, + 548,1,0,0,0,1160,569,1,0,0,0,1160,587,1,0,0,0,1160,605,1,0,0,0,1160,629, + 1,0,0,0,1160,652,1,0,0,0,1160,671,1,0,0,0,1160,688,1,0,0,0,1160,707,1,0, + 0,0,1160,729,1,0,0,0,1160,750,1,0,0,0,1160,771,1,0,0,0,1160,787,1,0,0,0, + 1160,810,1,0,0,0,1160,829,1,0,0,0,1160,846,1,0,0,0,1160,865,1,0,0,0,1160, + 886,1,0,0,0,1160,900,1,0,0,0,1160,923,1,0,0,0,1160,945,1,0,0,0,1160,964, + 1,0,0,0,1160,982,1,0,0,0,1160,1004,1,0,0,0,1160,1024,1,0,0,0,1160,1048,1, + 0,0,0,1160,1072,1,0,0,0,1160,1098,1,0,0,0,1160,1123,1,0,0,0,1160,1142,1, + 0,0,0,1160,1149,1,0,0,0,1161,96,1,0,0,0,1162,1167,3,99,49,0,1163,1168,7, + 3,0,0,1164,1168,3,101,50,0,1165,1168,9,0,0,0,1166,1168,5,0,0,1,1167,1163, + 1,0,0,0,1167,1164,1,0,0,0,1167,1165,1,0,0,0,1167,1166,1,0,0,0,1168,98,1, + 0,0,0,1169,1170,5,92,0,0,1170,100,1,0,0,0,1171,1172,5,117,0,0,1172,1173, + 3,109,54,0,1173,1174,3,109,54,0,1174,1175,3,109,54,0,1175,1176,3,109,54, + 0,1176,1186,1,0,0,0,1177,1178,5,85,0,0,1178,1179,3,109,54,0,1179,1180,3, + 109,54,0,1180,1181,3,109,54,0,1181,1182,3,109,54,0,1182,1183,3,109,54,0, + 1183,1184,3,109,54,0,1184,1186,1,0,0,0,1185,1171,1,0,0,0,1185,1177,1,0,0, + 0,1186,102,1,0,0,0,1187,1189,7,4,0,0,1188,1187,1,0,0,0,1189,104,1,0,0,0, + 1190,1194,3,103,51,0,1191,1194,3,107,53,0,1192,1194,7,5,0,0,1193,1190,1, + 0,0,0,1193,1191,1,0,0,0,1193,1192,1,0,0,0,1194,106,1,0,0,0,1195,1196,7,6, + 0,0,1196,108,1,0,0,0,1197,1198,7,7,0,0,1198,110,1,0,0,0,1199,1203,3,107, + 53,0,1200,1202,3,107,53,0,1201,1200,1,0,0,0,1202,1205,1,0,0,0,1203,1201, + 1,0,0,0,1203,1204,1,0,0,0,1204,112,1,0,0,0,1205,1203,1,0,0,0,1206,1209,3, + 115,57,0,1207,1209,7,8,0,0,1208,1206,1,0,0,0,1208,1207,1,0,0,0,1209,114, + 1,0,0,0,1210,1211,7,0,0,0,1211,116,1,0,0,0,68,0,123,137,145,152,154,163, + 167,173,181,344,359,368,385,394,404,426,435,447,469,485,503,513,529,539, + 558,578,596,618,642,662,679,698,716,737,760,780,799,817,836,857,876,893, + 912,935,957,975,991,1011,1031,1039,1055,1063,1081,1089,1106,1114,1131,1146, + 1153,1155,1160,1167,1185,1188,1193,1203,1208,40,6,0,0,1,3,0,1,46,1,1,47, + 2,1,47,3,1,47,4,1,47,5,1,47,6,1,47,7,1,47,8,1,47,9,1,47,10,1,47,11,1,47, + 12,1,47,13,1,47,14,1,47,15,1,47,16,1,47,17,1,47,18,1,47,19,1,47,20,1,47, + 21,1,47,22,1,47,23,1,47,24,1,47,25,1,47,26,1,47,27,1,47,28,1,47,29,1,47, + 30,1,47,31,1,47,32,1,47,33,1,47,34,1,47,35,1,47,36,1,47,37,1,47,38]; const atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); @@ -586,96 +608,105 @@ FEELLexer.prototype.NAME_action = function(localctx , actionIndex) { this._text = "years and months duration"; break; case 5: - this._text = "string length"; + this._text = "round up"; break; case 6: - this._text = "upper case"; + this._text = "round down"; break; case 7: - this._text = "lower case"; + this._text = "round half up"; break; case 8: - this._text = "substring before"; + this._text = "round half down"; break; case 9: - this._text = "substring after"; + this._text = "string length"; break; case 10: - this._text = "starts with"; + this._text = "upper case"; break; case 11: - this._text = "ends with"; + this._text = "lower case"; break; case 12: - this._text = "start position"; + this._text = "substring before"; break; case 13: - this._text = "list contains"; + this._text = "substring after"; break; case 14: - this._text = "insert before"; + this._text = "starts with"; break; case 15: - this._text = "index of"; + this._text = "ends with"; break; case 16: - this._text = "distinct values"; + this._text = "string join"; break; case 17: - this._text = "get entries"; + this._text = "start position"; break; case 18: - this._text = "get value"; + this._text = "list contains"; break; case 19: - this._text = "met by"; + this._text = "insert before"; break; case 20: - this._text = "overlaps before"; + this._text = "index of"; break; case 21: - this._text = "overlaps after"; + this._text = "distinct values"; break; case 22: - this._text = "finished by"; + this._text = "get entries"; break; case 23: - this._text = "started by"; + this._text = "get value"; break; case 24: - this._text = "start included"; + this._text = "context put"; break; case 25: - this._text = "end included"; + this._text = "context merge"; break; case 26: - this._text = "day of year"; + this._text = "met by"; break; case 27: - this._text = "day of week"; + this._text = "overlaps before"; break; case 28: - this._text = "month of year"; + this._text = "overlaps after"; break; case 29: - this._text = "week of year"; + this._text = "finished by"; break; case 30: - this._text = "round up"; + this._text = "started by"; break; case 31: - this._text = "round down"; + this._text = "start included"; break; case 32: - this._text = "round half up"; + this._text = "end included"; break; case 33: - this._text = "round half down"; + this._text = "day of year"; break; case 34: - this._text = "time offset"; + this._text = "day of week"; break; case 35: + this._text = "month of year"; + break; + case 36: + this._text = "week of year"; + break; + case 37: + this._text = "time offset"; + break; + case 38: this._text = removeSingleQuotes(this.text); break; default: diff --git a/src/jdmn-js-runtime/parser/FEELParser.interp b/src/jdmn-js-runtime/parser/FEELParser.interp index f76d602..46903db 100644 --- a/src/jdmn-js-runtime/parser/FEELParser.interp +++ b/src/jdmn-js-runtime/parser/FEELParser.interp @@ -155,4 +155,4 @@ identifier atn: -[4, 1, 48, 492, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 122, 8, 4, 1, 5, 1, 5, 1, 5, 5, 5, 127, 8, 5, 10, 5, 12, 5, 130, 9, 5, 1, 6, 1, 6, 1, 7, 3, 7, 135, 8, 7, 1, 7, 1, 7, 3, 7, 139, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 11, 3, 11, 152, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 161, 8, 13, 10, 13, 12, 13, 164, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 170, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 5, 15, 177, 8, 15, 10, 15, 12, 15, 180, 9, 15, 3, 15, 182, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 187, 8, 15, 1, 15, 3, 15, 190, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 3, 16, 197, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 208, 8, 17, 10, 17, 12, 17, 211, 9, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 3, 18, 219, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 236, 8, 20, 10, 20, 12, 20, 239, 9, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 5, 21, 247, 8, 21, 10, 21, 12, 21, 250, 9, 21, 1, 22, 1, 22, 1, 22, 5, 22, 255, 8, 22, 10, 22, 12, 22, 258, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 275, 8, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 5, 25, 282, 8, 25, 10, 25, 12, 25, 285, 9, 25, 1, 26, 1, 26, 1, 26, 5, 26, 290, 8, 26, 10, 26, 12, 26, 293, 9, 26, 1, 27, 1, 27, 1, 27, 5, 27, 298, 8, 27, 10, 27, 12, 27, 301, 9, 27, 1, 28, 5, 28, 304, 8, 28, 10, 28, 12, 28, 307, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 314, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 334, 8, 30, 10, 30, 12, 30, 337, 9, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 347, 8, 30, 10, 30, 12, 30, 350, 9, 30, 3, 30, 352, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 358, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 368, 8, 31, 10, 31, 12, 31, 371, 9, 31, 1, 32, 1, 32, 1, 32, 3, 32, 376, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 388, 8, 33, 10, 33, 12, 33, 391, 9, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 5, 35, 398, 8, 35, 10, 35, 12, 35, 401, 9, 35, 3, 35, 403, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 413, 8, 36, 1, 37, 1, 37, 3, 37, 417, 8, 37, 1, 38, 1, 38, 1, 38, 5, 38, 422, 8, 38, 10, 38, 12, 38, 425, 9, 38, 1, 39, 1, 39, 3, 39, 429, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 435, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 3, 44, 446, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 452, 8, 45, 10, 45, 12, 45, 455, 9, 45, 3, 45, 457, 8, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 465, 8, 46, 10, 46, 12, 46, 468, 9, 46, 3, 46, 470, 8, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 3, 48, 480, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 488, 8, 49, 1, 50, 1, 50, 1, 50, 0, 0, 51, 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, 0, 10, 1, 0, 9, 12, 2, 0, 21, 21, 23, 24, 1, 0, 22, 24, 1, 0, 41, 42, 1, 0, 7, 12, 1, 0, 13, 14, 1, 0, 15, 16, 2, 0, 14, 14, 29, 29, 1, 0, 30, 31, 3, 0, 33, 33, 44, 45, 48, 48, 500, 0, 102, 1, 0, 0, 0, 2, 105, 1, 0, 0, 0, 4, 108, 1, 0, 0, 0, 6, 111, 1, 0, 0, 0, 8, 121, 1, 0, 0, 0, 10, 123, 1, 0, 0, 0, 12, 131, 1, 0, 0, 0, 14, 138, 1, 0, 0, 0, 16, 140, 1, 0, 0, 0, 18, 146, 1, 0, 0, 0, 20, 148, 1, 0, 0, 0, 22, 151, 1, 0, 0, 0, 24, 155, 1, 0, 0, 0, 26, 157, 1, 0, 0, 0, 28, 169, 1, 0, 0, 0, 30, 171, 1, 0, 0, 0, 32, 193, 1, 0, 0, 0, 34, 198, 1, 0, 0, 0, 36, 215, 1, 0, 0, 0, 38, 220, 1, 0, 0, 0, 40, 227, 1, 0, 0, 0, 42, 243, 1, 0, 0, 0, 44, 251, 1, 0, 0, 0, 46, 259, 1, 0, 0, 0, 48, 276, 1, 0, 0, 0, 50, 278, 1, 0, 0, 0, 52, 286, 1, 0, 0, 0, 54, 294, 1, 0, 0, 0, 56, 305, 1, 0, 0, 0, 58, 310, 1, 0, 0, 0, 60, 357, 1, 0, 0, 0, 62, 359, 1, 0, 0, 0, 64, 372, 1, 0, 0, 0, 66, 379, 1, 0, 0, 0, 68, 392, 1, 0, 0, 0, 70, 402, 1, 0, 0, 0, 72, 412, 1, 0, 0, 0, 74, 416, 1, 0, 0, 0, 76, 418, 1, 0, 0, 0, 78, 428, 1, 0, 0, 0, 80, 434, 1, 0, 0, 0, 82, 436, 1, 0, 0, 0, 84, 438, 1, 0, 0, 0, 86, 440, 1, 0, 0, 0, 88, 445, 1, 0, 0, 0, 90, 447, 1, 0, 0, 0, 92, 460, 1, 0, 0, 0, 94, 473, 1, 0, 0, 0, 96, 479, 1, 0, 0, 0, 98, 487, 1, 0, 0, 0, 100, 489, 1, 0, 0, 0, 102, 103, 3, 8, 4, 0, 103, 104, 5, 0, 0, 1, 104, 1, 1, 0, 0, 0, 105, 106, 3, 24, 12, 0, 106, 107, 5, 0, 0, 1, 107, 3, 1, 0, 0, 0, 108, 109, 3, 26, 13, 0, 109, 110, 5, 0, 0, 1, 110, 5, 1, 0, 0, 0, 111, 112, 3, 88, 44, 0, 112, 113, 5, 0, 0, 1, 113, 7, 1, 0, 0, 0, 114, 115, 5, 29, 0, 0, 115, 116, 5, 21, 0, 0, 116, 117, 3, 10, 5, 0, 117, 118, 5, 22, 0, 0, 118, 122, 1, 0, 0, 0, 119, 122, 3, 10, 5, 0, 120, 122, 5, 14, 0, 0, 121, 114, 1, 0, 0, 0, 121, 119, 1, 0, 0, 0, 121, 120, 1, 0, 0, 0, 122, 9, 1, 0, 0, 0, 123, 128, 3, 12, 6, 0, 124, 125, 5, 20, 0, 0, 125, 127, 3, 12, 6, 0, 126, 124, 1, 0, 0, 0, 127, 130, 1, 0, 0, 0, 128, 126, 1, 0, 0, 0, 128, 129, 1, 0, 0, 0, 129, 11, 1, 0, 0, 0, 130, 128, 1, 0, 0, 0, 131, 132, 3, 24, 12, 0, 132, 13, 1, 0, 0, 0, 133, 135, 7, 0, 0, 0, 134, 133, 1, 0, 0, 0, 134, 135, 1, 0, 0, 0, 135, 136, 1, 0, 0, 0, 136, 139, 3, 22, 11, 0, 137, 139, 3, 16, 8, 0, 138, 134, 1, 0, 0, 0, 138, 137, 1, 0, 0, 0, 139, 15, 1, 0, 0, 0, 140, 141, 3, 18, 9, 0, 141, 142, 3, 22, 11, 0, 142, 143, 5, 18, 0, 0, 143, 144, 3, 22, 11, 0, 144, 145, 3, 20, 10, 0, 145, 17, 1, 0, 0, 0, 146, 147, 7, 1, 0, 0, 147, 19, 1, 0, 0, 0, 148, 149, 7, 2, 0, 0, 149, 21, 1, 0, 0, 0, 150, 152, 5, 14, 0, 0, 151, 150, 1, 0, 0, 0, 151, 152, 1, 0, 0, 0, 152, 153, 1, 0, 0, 0, 153, 154, 3, 74, 37, 0, 154, 23, 1, 0, 0, 0, 155, 156, 3, 28, 14, 0, 156, 25, 1, 0, 0, 0, 157, 162, 3, 28, 14, 0, 158, 159, 5, 20, 0, 0, 159, 161, 3, 28, 14, 0, 160, 158, 1, 0, 0, 0, 161, 164, 1, 0, 0, 0, 162, 160, 1, 0, 0, 0, 162, 163, 1, 0, 0, 0, 163, 27, 1, 0, 0, 0, 164, 162, 1, 0, 0, 0, 165, 170, 3, 34, 17, 0, 166, 170, 3, 38, 19, 0, 167, 170, 3, 40, 20, 0, 168, 170, 3, 42, 21, 0, 169, 165, 1, 0, 0, 0, 169, 166, 1, 0, 0, 0, 169, 167, 1, 0, 0, 0, 169, 168, 1, 0, 0, 0, 170, 29, 1, 0, 0, 0, 171, 172, 5, 33, 0, 0, 172, 181, 5, 21, 0, 0, 173, 178, 3, 32, 16, 0, 174, 175, 5, 20, 0, 0, 175, 177, 3, 32, 16, 0, 176, 174, 1, 0, 0, 0, 177, 180, 1, 0, 0, 0, 178, 176, 1, 0, 0, 0, 178, 179, 1, 0, 0, 0, 179, 182, 1, 0, 0, 0, 180, 178, 1, 0, 0, 0, 181, 173, 1, 0, 0, 0, 181, 182, 1, 0, 0, 0, 182, 183, 1, 0, 0, 0, 183, 186, 5, 22, 0, 0, 184, 185, 5, 27, 0, 0, 185, 187, 3, 60, 30, 0, 186, 184, 1, 0, 0, 0, 186, 187, 1, 0, 0, 0, 187, 189, 1, 0, 0, 0, 188, 190, 5, 34, 0, 0, 189, 188, 1, 0, 0, 0, 189, 190, 1, 0, 0, 0, 190, 191, 1, 0, 0, 0, 191, 192, 3, 24, 12, 0, 192, 31, 1, 0, 0, 0, 193, 196, 3, 68, 34, 0, 194, 195, 5, 27, 0, 0, 195, 197, 3, 60, 30, 0, 196, 194, 1, 0, 0, 0, 196, 197, 1, 0, 0, 0, 197, 33, 1, 0, 0, 0, 198, 199, 5, 35, 0, 0, 199, 200, 3, 100, 50, 0, 200, 201, 5, 36, 0, 0, 201, 209, 3, 36, 18, 0, 202, 203, 5, 20, 0, 0, 203, 204, 3, 100, 50, 0, 204, 205, 5, 36, 0, 0, 205, 206, 3, 36, 18, 0, 206, 208, 1, 0, 0, 0, 207, 202, 1, 0, 0, 0, 208, 211, 1, 0, 0, 0, 209, 207, 1, 0, 0, 0, 209, 210, 1, 0, 0, 0, 210, 212, 1, 0, 0, 0, 211, 209, 1, 0, 0, 0, 212, 213, 5, 37, 0, 0, 213, 214, 3, 24, 12, 0, 214, 35, 1, 0, 0, 0, 215, 218, 3, 24, 12, 0, 216, 217, 5, 18, 0, 0, 217, 219, 3, 24, 12, 0, 218, 216, 1, 0, 0, 0, 218, 219, 1, 0, 0, 0, 219, 37, 1, 0, 0, 0, 220, 221, 5, 38, 0, 0, 221, 222, 3, 24, 12, 0, 222, 223, 5, 39, 0, 0, 223, 224, 3, 24, 12, 0, 224, 225, 5, 40, 0, 0, 225, 226, 3, 24, 12, 0, 226, 39, 1, 0, 0, 0, 227, 228, 7, 3, 0, 0, 228, 229, 3, 100, 50, 0, 229, 230, 5, 36, 0, 0, 230, 237, 3, 24, 12, 0, 231, 232, 3, 100, 50, 0, 232, 233, 5, 36, 0, 0, 233, 234, 3, 24, 12, 0, 234, 236, 1, 0, 0, 0, 235, 231, 1, 0, 0, 0, 236, 239, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 240, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 240, 241, 5, 43, 0, 0, 241, 242, 3, 24, 12, 0, 242, 41, 1, 0, 0, 0, 243, 248, 3, 44, 22, 0, 244, 245, 5, 45, 0, 0, 245, 247, 3, 44, 22, 0, 246, 244, 1, 0, 0, 0, 247, 250, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 43, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 251, 256, 3, 46, 23, 0, 252, 253, 5, 44, 0, 0, 253, 255, 3, 46, 23, 0, 254, 252, 1, 0, 0, 0, 255, 258, 1, 0, 0, 0, 256, 254, 1, 0, 0, 0, 256, 257, 1, 0, 0, 0, 257, 45, 1, 0, 0, 0, 258, 256, 1, 0, 0, 0, 259, 274, 3, 48, 24, 0, 260, 261, 7, 4, 0, 0, 261, 275, 3, 48, 24, 0, 262, 263, 5, 46, 0, 0, 263, 264, 3, 24, 12, 0, 264, 265, 5, 44, 0, 0, 265, 266, 3, 24, 12, 0, 266, 275, 1, 0, 0, 0, 267, 268, 5, 36, 0, 0, 268, 275, 3, 12, 6, 0, 269, 270, 5, 36, 0, 0, 270, 271, 5, 21, 0, 0, 271, 272, 3, 10, 5, 0, 272, 273, 5, 22, 0, 0, 273, 275, 1, 0, 0, 0, 274, 260, 1, 0, 0, 0, 274, 262, 1, 0, 0, 0, 274, 267, 1, 0, 0, 0, 274, 269, 1, 0, 0, 0, 274, 275, 1, 0, 0, 0, 275, 47, 1, 0, 0, 0, 276, 277, 3, 50, 25, 0, 277, 49, 1, 0, 0, 0, 278, 283, 3, 52, 26, 0, 279, 280, 7, 5, 0, 0, 280, 282, 3, 52, 26, 0, 281, 279, 1, 0, 0, 0, 282, 285, 1, 0, 0, 0, 283, 281, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 51, 1, 0, 0, 0, 285, 283, 1, 0, 0, 0, 286, 291, 3, 54, 27, 0, 287, 288, 7, 6, 0, 0, 288, 290, 3, 54, 27, 0, 289, 287, 1, 0, 0, 0, 290, 293, 1, 0, 0, 0, 291, 289, 1, 0, 0, 0, 291, 292, 1, 0, 0, 0, 292, 53, 1, 0, 0, 0, 293, 291, 1, 0, 0, 0, 294, 299, 3, 56, 28, 0, 295, 296, 5, 17, 0, 0, 296, 298, 3, 56, 28, 0, 297, 295, 1, 0, 0, 0, 298, 301, 1, 0, 0, 0, 299, 297, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 55, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 302, 304, 7, 7, 0, 0, 303, 302, 1, 0, 0, 0, 304, 307, 1, 0, 0, 0, 305, 303, 1, 0, 0, 0, 305, 306, 1, 0, 0, 0, 306, 308, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 308, 309, 3, 58, 29, 0, 309, 57, 1, 0, 0, 0, 310, 313, 3, 62, 31, 0, 311, 312, 5, 47, 0, 0, 312, 314, 3, 60, 30, 0, 313, 311, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 59, 1, 0, 0, 0, 315, 358, 3, 76, 38, 0, 316, 317, 3, 100, 50, 0, 317, 318, 4, 30, 0, 1, 318, 319, 5, 9, 0, 0, 319, 320, 3, 60, 30, 0, 320, 321, 5, 10, 0, 0, 321, 358, 1, 0, 0, 0, 322, 323, 3, 100, 50, 0, 323, 324, 4, 30, 1, 1, 324, 325, 5, 9, 0, 0, 325, 326, 3, 100, 50, 0, 326, 327, 5, 27, 0, 0, 327, 335, 3, 60, 30, 0, 328, 329, 5, 20, 0, 0, 329, 330, 3, 100, 50, 0, 330, 331, 5, 27, 0, 0, 331, 332, 3, 60, 30, 0, 332, 334, 1, 0, 0, 0, 333, 328, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 338, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 339, 5, 10, 0, 0, 339, 358, 1, 0, 0, 0, 340, 341, 3, 100, 50, 0, 341, 342, 4, 30, 2, 1, 342, 351, 5, 9, 0, 0, 343, 348, 3, 60, 30, 0, 344, 345, 5, 20, 0, 0, 345, 347, 3, 60, 30, 0, 346, 344, 1, 0, 0, 0, 347, 350, 1, 0, 0, 0, 348, 346, 1, 0, 0, 0, 348, 349, 1, 0, 0, 0, 349, 352, 1, 0, 0, 0, 350, 348, 1, 0, 0, 0, 351, 343, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 5, 10, 0, 0, 354, 355, 5, 28, 0, 0, 355, 356, 3, 60, 30, 0, 356, 358, 1, 0, 0, 0, 357, 315, 1, 0, 0, 0, 357, 316, 1, 0, 0, 0, 357, 322, 1, 0, 0, 0, 357, 340, 1, 0, 0, 0, 358, 61, 1, 0, 0, 0, 359, 369, 3, 72, 36, 0, 360, 361, 5, 23, 0, 0, 361, 362, 3, 24, 12, 0, 362, 363, 5, 24, 0, 0, 363, 368, 1, 0, 0, 0, 364, 368, 3, 64, 32, 0, 365, 366, 5, 19, 0, 0, 366, 368, 3, 100, 50, 0, 367, 360, 1, 0, 0, 0, 367, 364, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 368, 371, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 63, 1, 0, 0, 0, 371, 369, 1, 0, 0, 0, 372, 375, 5, 21, 0, 0, 373, 376, 3, 66, 33, 0, 374, 376, 3, 70, 35, 0, 375, 373, 1, 0, 0, 0, 375, 374, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 378, 5, 22, 0, 0, 378, 65, 1, 0, 0, 0, 379, 380, 3, 68, 34, 0, 380, 381, 5, 27, 0, 0, 381, 389, 3, 24, 12, 0, 382, 383, 5, 20, 0, 0, 383, 384, 3, 68, 34, 0, 384, 385, 5, 27, 0, 0, 385, 386, 3, 24, 12, 0, 386, 388, 1, 0, 0, 0, 387, 382, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 67, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 393, 3, 100, 50, 0, 393, 69, 1, 0, 0, 0, 394, 399, 3, 24, 12, 0, 395, 396, 5, 20, 0, 0, 396, 398, 3, 24, 12, 0, 397, 395, 1, 0, 0, 0, 398, 401, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 402, 394, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 71, 1, 0, 0, 0, 404, 413, 3, 78, 39, 0, 405, 413, 3, 100, 50, 0, 406, 407, 5, 21, 0, 0, 407, 408, 3, 24, 12, 0, 408, 409, 5, 22, 0, 0, 409, 413, 1, 0, 0, 0, 410, 413, 3, 88, 44, 0, 411, 413, 3, 14, 7, 0, 412, 404, 1, 0, 0, 0, 412, 405, 1, 0, 0, 0, 412, 406, 1, 0, 0, 0, 412, 410, 1, 0, 0, 0, 412, 411, 1, 0, 0, 0, 413, 73, 1, 0, 0, 0, 414, 417, 3, 80, 40, 0, 415, 417, 3, 76, 38, 0, 416, 414, 1, 0, 0, 0, 416, 415, 1, 0, 0, 0, 417, 75, 1, 0, 0, 0, 418, 423, 3, 100, 50, 0, 419, 420, 5, 19, 0, 0, 420, 422, 3, 100, 50, 0, 421, 419, 1, 0, 0, 0, 422, 425, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 77, 1, 0, 0, 0, 425, 423, 1, 0, 0, 0, 426, 429, 3, 80, 40, 0, 427, 429, 5, 32, 0, 0, 428, 426, 1, 0, 0, 0, 428, 427, 1, 0, 0, 0, 429, 79, 1, 0, 0, 0, 430, 435, 3, 86, 43, 0, 431, 435, 3, 82, 41, 0, 432, 435, 3, 84, 42, 0, 433, 435, 3, 98, 49, 0, 434, 430, 1, 0, 0, 0, 434, 431, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 434, 433, 1, 0, 0, 0, 435, 81, 1, 0, 0, 0, 436, 437, 5, 4, 0, 0, 437, 83, 1, 0, 0, 0, 438, 439, 7, 8, 0, 0, 439, 85, 1, 0, 0, 0, 440, 441, 5, 5, 0, 0, 441, 87, 1, 0, 0, 0, 442, 446, 3, 90, 45, 0, 443, 446, 3, 30, 15, 0, 444, 446, 3, 92, 46, 0, 445, 442, 1, 0, 0, 0, 445, 443, 1, 0, 0, 0, 445, 444, 1, 0, 0, 0, 446, 89, 1, 0, 0, 0, 447, 456, 5, 23, 0, 0, 448, 453, 3, 24, 12, 0, 449, 450, 5, 20, 0, 0, 450, 452, 3, 24, 12, 0, 451, 449, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 457, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 456, 448, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 459, 5, 24, 0, 0, 459, 91, 1, 0, 0, 0, 460, 469, 5, 25, 0, 0, 461, 466, 3, 94, 47, 0, 462, 463, 5, 20, 0, 0, 463, 465, 3, 94, 47, 0, 464, 462, 1, 0, 0, 0, 465, 468, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 470, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 469, 461, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 472, 5, 26, 0, 0, 472, 93, 1, 0, 0, 0, 473, 474, 3, 96, 48, 0, 474, 475, 5, 27, 0, 0, 475, 476, 3, 24, 12, 0, 476, 95, 1, 0, 0, 0, 477, 480, 3, 100, 50, 0, 478, 480, 3, 82, 41, 0, 479, 477, 1, 0, 0, 0, 479, 478, 1, 0, 0, 0, 480, 97, 1, 0, 0, 0, 481, 488, 5, 6, 0, 0, 482, 483, 3, 100, 50, 0, 483, 484, 5, 21, 0, 0, 484, 485, 3, 24, 12, 0, 485, 486, 5, 22, 0, 0, 486, 488, 1, 0, 0, 0, 487, 481, 1, 0, 0, 0, 487, 482, 1, 0, 0, 0, 488, 99, 1, 0, 0, 0, 489, 490, 7, 9, 0, 0, 490, 101, 1, 0, 0, 0, 45, 121, 128, 134, 138, 151, 162, 169, 178, 181, 186, 189, 196, 209, 218, 237, 248, 256, 274, 283, 291, 299, 305, 313, 335, 348, 351, 357, 367, 369, 375, 389, 399, 402, 412, 416, 423, 428, 434, 445, 453, 456, 466, 469, 479, 487] \ No newline at end of file +[4, 1, 48, 487, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 122, 8, 4, 1, 5, 1, 5, 1, 5, 5, 5, 127, 8, 5, 10, 5, 12, 5, 130, 9, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 3, 7, 137, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 156, 8, 13, 10, 13, 12, 13, 159, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 165, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 5, 15, 172, 8, 15, 10, 15, 12, 15, 175, 9, 15, 3, 15, 177, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 182, 8, 15, 1, 15, 3, 15, 185, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 3, 16, 192, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 203, 8, 17, 10, 17, 12, 17, 206, 9, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 3, 18, 214, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 231, 8, 20, 10, 20, 12, 20, 234, 9, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 5, 21, 242, 8, 21, 10, 21, 12, 21, 245, 9, 21, 1, 22, 1, 22, 1, 22, 5, 22, 250, 8, 22, 10, 22, 12, 22, 253, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 270, 8, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 5, 25, 277, 8, 25, 10, 25, 12, 25, 280, 9, 25, 1, 26, 1, 26, 1, 26, 5, 26, 285, 8, 26, 10, 26, 12, 26, 288, 9, 26, 1, 27, 1, 27, 1, 27, 5, 27, 293, 8, 27, 10, 27, 12, 27, 296, 9, 27, 1, 28, 5, 28, 299, 8, 28, 10, 28, 12, 28, 302, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 309, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 329, 8, 30, 10, 30, 12, 30, 332, 9, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 342, 8, 30, 10, 30, 12, 30, 345, 9, 30, 3, 30, 347, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 353, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 363, 8, 31, 10, 31, 12, 31, 366, 9, 31, 1, 32, 1, 32, 1, 32, 3, 32, 371, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 383, 8, 33, 10, 33, 12, 33, 386, 9, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 5, 35, 393, 8, 35, 10, 35, 12, 35, 396, 9, 35, 3, 35, 398, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 408, 8, 36, 1, 37, 1, 37, 3, 37, 412, 8, 37, 1, 38, 1, 38, 1, 38, 5, 38, 417, 8, 38, 10, 38, 12, 38, 420, 9, 38, 1, 39, 1, 39, 3, 39, 424, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 430, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 3, 44, 441, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 447, 8, 45, 10, 45, 12, 45, 450, 9, 45, 3, 45, 452, 8, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 460, 8, 46, 10, 46, 12, 46, 463, 9, 46, 3, 46, 465, 8, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 3, 48, 475, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 483, 8, 49, 1, 50, 1, 50, 1, 50, 0, 0, 51, 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, 0, 10, 1, 0, 9, 12, 2, 0, 21, 21, 23, 24, 1, 0, 22, 24, 1, 0, 41, 42, 1, 0, 7, 12, 1, 0, 13, 14, 1, 0, 15, 16, 2, 0, 14, 14, 29, 29, 1, 0, 30, 31, 4, 0, 29, 29, 33, 33, 44, 45, 48, 48, 493, 0, 102, 1, 0, 0, 0, 2, 105, 1, 0, 0, 0, 4, 108, 1, 0, 0, 0, 6, 111, 1, 0, 0, 0, 8, 121, 1, 0, 0, 0, 10, 123, 1, 0, 0, 0, 12, 131, 1, 0, 0, 0, 14, 136, 1, 0, 0, 0, 16, 138, 1, 0, 0, 0, 18, 144, 1, 0, 0, 0, 20, 146, 1, 0, 0, 0, 22, 148, 1, 0, 0, 0, 24, 150, 1, 0, 0, 0, 26, 152, 1, 0, 0, 0, 28, 164, 1, 0, 0, 0, 30, 166, 1, 0, 0, 0, 32, 188, 1, 0, 0, 0, 34, 193, 1, 0, 0, 0, 36, 210, 1, 0, 0, 0, 38, 215, 1, 0, 0, 0, 40, 222, 1, 0, 0, 0, 42, 238, 1, 0, 0, 0, 44, 246, 1, 0, 0, 0, 46, 254, 1, 0, 0, 0, 48, 271, 1, 0, 0, 0, 50, 273, 1, 0, 0, 0, 52, 281, 1, 0, 0, 0, 54, 289, 1, 0, 0, 0, 56, 300, 1, 0, 0, 0, 58, 305, 1, 0, 0, 0, 60, 352, 1, 0, 0, 0, 62, 354, 1, 0, 0, 0, 64, 367, 1, 0, 0, 0, 66, 374, 1, 0, 0, 0, 68, 387, 1, 0, 0, 0, 70, 397, 1, 0, 0, 0, 72, 407, 1, 0, 0, 0, 74, 411, 1, 0, 0, 0, 76, 413, 1, 0, 0, 0, 78, 423, 1, 0, 0, 0, 80, 429, 1, 0, 0, 0, 82, 431, 1, 0, 0, 0, 84, 433, 1, 0, 0, 0, 86, 435, 1, 0, 0, 0, 88, 440, 1, 0, 0, 0, 90, 442, 1, 0, 0, 0, 92, 455, 1, 0, 0, 0, 94, 468, 1, 0, 0, 0, 96, 474, 1, 0, 0, 0, 98, 482, 1, 0, 0, 0, 100, 484, 1, 0, 0, 0, 102, 103, 3, 8, 4, 0, 103, 104, 5, 0, 0, 1, 104, 1, 1, 0, 0, 0, 105, 106, 3, 24, 12, 0, 106, 107, 5, 0, 0, 1, 107, 3, 1, 0, 0, 0, 108, 109, 3, 26, 13, 0, 109, 110, 5, 0, 0, 1, 110, 5, 1, 0, 0, 0, 111, 112, 3, 88, 44, 0, 112, 113, 5, 0, 0, 1, 113, 7, 1, 0, 0, 0, 114, 115, 5, 29, 0, 0, 115, 116, 5, 21, 0, 0, 116, 117, 3, 10, 5, 0, 117, 118, 5, 22, 0, 0, 118, 122, 1, 0, 0, 0, 119, 122, 3, 10, 5, 0, 120, 122, 5, 14, 0, 0, 121, 114, 1, 0, 0, 0, 121, 119, 1, 0, 0, 0, 121, 120, 1, 0, 0, 0, 122, 9, 1, 0, 0, 0, 123, 128, 3, 12, 6, 0, 124, 125, 5, 20, 0, 0, 125, 127, 3, 12, 6, 0, 126, 124, 1, 0, 0, 0, 127, 130, 1, 0, 0, 0, 128, 126, 1, 0, 0, 0, 128, 129, 1, 0, 0, 0, 129, 11, 1, 0, 0, 0, 130, 128, 1, 0, 0, 0, 131, 132, 3, 24, 12, 0, 132, 13, 1, 0, 0, 0, 133, 134, 7, 0, 0, 0, 134, 137, 3, 22, 11, 0, 135, 137, 3, 16, 8, 0, 136, 133, 1, 0, 0, 0, 136, 135, 1, 0, 0, 0, 137, 15, 1, 0, 0, 0, 138, 139, 3, 18, 9, 0, 139, 140, 3, 22, 11, 0, 140, 141, 5, 18, 0, 0, 141, 142, 3, 22, 11, 0, 142, 143, 3, 20, 10, 0, 143, 17, 1, 0, 0, 0, 144, 145, 7, 1, 0, 0, 145, 19, 1, 0, 0, 0, 146, 147, 7, 2, 0, 0, 147, 21, 1, 0, 0, 0, 148, 149, 3, 24, 12, 0, 149, 23, 1, 0, 0, 0, 150, 151, 3, 28, 14, 0, 151, 25, 1, 0, 0, 0, 152, 157, 3, 28, 14, 0, 153, 154, 5, 20, 0, 0, 154, 156, 3, 28, 14, 0, 155, 153, 1, 0, 0, 0, 156, 159, 1, 0, 0, 0, 157, 155, 1, 0, 0, 0, 157, 158, 1, 0, 0, 0, 158, 27, 1, 0, 0, 0, 159, 157, 1, 0, 0, 0, 160, 165, 3, 34, 17, 0, 161, 165, 3, 38, 19, 0, 162, 165, 3, 40, 20, 0, 163, 165, 3, 42, 21, 0, 164, 160, 1, 0, 0, 0, 164, 161, 1, 0, 0, 0, 164, 162, 1, 0, 0, 0, 164, 163, 1, 0, 0, 0, 165, 29, 1, 0, 0, 0, 166, 167, 5, 33, 0, 0, 167, 176, 5, 21, 0, 0, 168, 173, 3, 32, 16, 0, 169, 170, 5, 20, 0, 0, 170, 172, 3, 32, 16, 0, 171, 169, 1, 0, 0, 0, 172, 175, 1, 0, 0, 0, 173, 171, 1, 0, 0, 0, 173, 174, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 176, 168, 1, 0, 0, 0, 176, 177, 1, 0, 0, 0, 177, 178, 1, 0, 0, 0, 178, 181, 5, 22, 0, 0, 179, 180, 5, 27, 0, 0, 180, 182, 3, 60, 30, 0, 181, 179, 1, 0, 0, 0, 181, 182, 1, 0, 0, 0, 182, 184, 1, 0, 0, 0, 183, 185, 5, 34, 0, 0, 184, 183, 1, 0, 0, 0, 184, 185, 1, 0, 0, 0, 185, 186, 1, 0, 0, 0, 186, 187, 3, 24, 12, 0, 187, 31, 1, 0, 0, 0, 188, 191, 3, 68, 34, 0, 189, 190, 5, 27, 0, 0, 190, 192, 3, 60, 30, 0, 191, 189, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 33, 1, 0, 0, 0, 193, 194, 5, 35, 0, 0, 194, 195, 3, 100, 50, 0, 195, 196, 5, 36, 0, 0, 196, 204, 3, 36, 18, 0, 197, 198, 5, 20, 0, 0, 198, 199, 3, 100, 50, 0, 199, 200, 5, 36, 0, 0, 200, 201, 3, 36, 18, 0, 201, 203, 1, 0, 0, 0, 202, 197, 1, 0, 0, 0, 203, 206, 1, 0, 0, 0, 204, 202, 1, 0, 0, 0, 204, 205, 1, 0, 0, 0, 205, 207, 1, 0, 0, 0, 206, 204, 1, 0, 0, 0, 207, 208, 5, 37, 0, 0, 208, 209, 3, 24, 12, 0, 209, 35, 1, 0, 0, 0, 210, 213, 3, 24, 12, 0, 211, 212, 5, 18, 0, 0, 212, 214, 3, 24, 12, 0, 213, 211, 1, 0, 0, 0, 213, 214, 1, 0, 0, 0, 214, 37, 1, 0, 0, 0, 215, 216, 5, 38, 0, 0, 216, 217, 3, 24, 12, 0, 217, 218, 5, 39, 0, 0, 218, 219, 3, 24, 12, 0, 219, 220, 5, 40, 0, 0, 220, 221, 3, 24, 12, 0, 221, 39, 1, 0, 0, 0, 222, 223, 7, 3, 0, 0, 223, 224, 3, 100, 50, 0, 224, 225, 5, 36, 0, 0, 225, 232, 3, 24, 12, 0, 226, 227, 3, 100, 50, 0, 227, 228, 5, 36, 0, 0, 228, 229, 3, 24, 12, 0, 229, 231, 1, 0, 0, 0, 230, 226, 1, 0, 0, 0, 231, 234, 1, 0, 0, 0, 232, 230, 1, 0, 0, 0, 232, 233, 1, 0, 0, 0, 233, 235, 1, 0, 0, 0, 234, 232, 1, 0, 0, 0, 235, 236, 5, 43, 0, 0, 236, 237, 3, 24, 12, 0, 237, 41, 1, 0, 0, 0, 238, 243, 3, 44, 22, 0, 239, 240, 5, 45, 0, 0, 240, 242, 3, 44, 22, 0, 241, 239, 1, 0, 0, 0, 242, 245, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 43, 1, 0, 0, 0, 245, 243, 1, 0, 0, 0, 246, 251, 3, 46, 23, 0, 247, 248, 5, 44, 0, 0, 248, 250, 3, 46, 23, 0, 249, 247, 1, 0, 0, 0, 250, 253, 1, 0, 0, 0, 251, 249, 1, 0, 0, 0, 251, 252, 1, 0, 0, 0, 252, 45, 1, 0, 0, 0, 253, 251, 1, 0, 0, 0, 254, 269, 3, 48, 24, 0, 255, 256, 7, 4, 0, 0, 256, 270, 3, 48, 24, 0, 257, 258, 5, 46, 0, 0, 258, 259, 3, 24, 12, 0, 259, 260, 5, 44, 0, 0, 260, 261, 3, 24, 12, 0, 261, 270, 1, 0, 0, 0, 262, 263, 5, 36, 0, 0, 263, 270, 3, 12, 6, 0, 264, 265, 5, 36, 0, 0, 265, 266, 5, 21, 0, 0, 266, 267, 3, 10, 5, 0, 267, 268, 5, 22, 0, 0, 268, 270, 1, 0, 0, 0, 269, 255, 1, 0, 0, 0, 269, 257, 1, 0, 0, 0, 269, 262, 1, 0, 0, 0, 269, 264, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 47, 1, 0, 0, 0, 271, 272, 3, 50, 25, 0, 272, 49, 1, 0, 0, 0, 273, 278, 3, 52, 26, 0, 274, 275, 7, 5, 0, 0, 275, 277, 3, 52, 26, 0, 276, 274, 1, 0, 0, 0, 277, 280, 1, 0, 0, 0, 278, 276, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 51, 1, 0, 0, 0, 280, 278, 1, 0, 0, 0, 281, 286, 3, 54, 27, 0, 282, 283, 7, 6, 0, 0, 283, 285, 3, 54, 27, 0, 284, 282, 1, 0, 0, 0, 285, 288, 1, 0, 0, 0, 286, 284, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, 53, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 289, 294, 3, 56, 28, 0, 290, 291, 5, 17, 0, 0, 291, 293, 3, 56, 28, 0, 292, 290, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 55, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 297, 299, 7, 7, 0, 0, 298, 297, 1, 0, 0, 0, 299, 302, 1, 0, 0, 0, 300, 298, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 303, 1, 0, 0, 0, 302, 300, 1, 0, 0, 0, 303, 304, 3, 58, 29, 0, 304, 57, 1, 0, 0, 0, 305, 308, 3, 62, 31, 0, 306, 307, 5, 47, 0, 0, 307, 309, 3, 60, 30, 0, 308, 306, 1, 0, 0, 0, 308, 309, 1, 0, 0, 0, 309, 59, 1, 0, 0, 0, 310, 353, 3, 76, 38, 0, 311, 312, 3, 100, 50, 0, 312, 313, 4, 30, 0, 1, 313, 314, 5, 9, 0, 0, 314, 315, 3, 60, 30, 0, 315, 316, 5, 10, 0, 0, 316, 353, 1, 0, 0, 0, 317, 318, 3, 100, 50, 0, 318, 319, 4, 30, 1, 1, 319, 320, 5, 9, 0, 0, 320, 321, 3, 100, 50, 0, 321, 322, 5, 27, 0, 0, 322, 330, 3, 60, 30, 0, 323, 324, 5, 20, 0, 0, 324, 325, 3, 100, 50, 0, 325, 326, 5, 27, 0, 0, 326, 327, 3, 60, 30, 0, 327, 329, 1, 0, 0, 0, 328, 323, 1, 0, 0, 0, 329, 332, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 333, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 334, 5, 10, 0, 0, 334, 353, 1, 0, 0, 0, 335, 336, 3, 100, 50, 0, 336, 337, 4, 30, 2, 1, 337, 346, 5, 9, 0, 0, 338, 343, 3, 60, 30, 0, 339, 340, 5, 20, 0, 0, 340, 342, 3, 60, 30, 0, 341, 339, 1, 0, 0, 0, 342, 345, 1, 0, 0, 0, 343, 341, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 347, 1, 0, 0, 0, 345, 343, 1, 0, 0, 0, 346, 338, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 349, 5, 10, 0, 0, 349, 350, 5, 28, 0, 0, 350, 351, 3, 60, 30, 0, 351, 353, 1, 0, 0, 0, 352, 310, 1, 0, 0, 0, 352, 311, 1, 0, 0, 0, 352, 317, 1, 0, 0, 0, 352, 335, 1, 0, 0, 0, 353, 61, 1, 0, 0, 0, 354, 364, 3, 72, 36, 0, 355, 356, 5, 23, 0, 0, 356, 357, 3, 24, 12, 0, 357, 358, 5, 24, 0, 0, 358, 363, 1, 0, 0, 0, 359, 363, 3, 64, 32, 0, 360, 361, 5, 19, 0, 0, 361, 363, 3, 100, 50, 0, 362, 355, 1, 0, 0, 0, 362, 359, 1, 0, 0, 0, 362, 360, 1, 0, 0, 0, 363, 366, 1, 0, 0, 0, 364, 362, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 63, 1, 0, 0, 0, 366, 364, 1, 0, 0, 0, 367, 370, 5, 21, 0, 0, 368, 371, 3, 66, 33, 0, 369, 371, 3, 70, 35, 0, 370, 368, 1, 0, 0, 0, 370, 369, 1, 0, 0, 0, 371, 372, 1, 0, 0, 0, 372, 373, 5, 22, 0, 0, 373, 65, 1, 0, 0, 0, 374, 375, 3, 68, 34, 0, 375, 376, 5, 27, 0, 0, 376, 384, 3, 24, 12, 0, 377, 378, 5, 20, 0, 0, 378, 379, 3, 68, 34, 0, 379, 380, 5, 27, 0, 0, 380, 381, 3, 24, 12, 0, 381, 383, 1, 0, 0, 0, 382, 377, 1, 0, 0, 0, 383, 386, 1, 0, 0, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 67, 1, 0, 0, 0, 386, 384, 1, 0, 0, 0, 387, 388, 3, 100, 50, 0, 388, 69, 1, 0, 0, 0, 389, 394, 3, 24, 12, 0, 390, 391, 5, 20, 0, 0, 391, 393, 3, 24, 12, 0, 392, 390, 1, 0, 0, 0, 393, 396, 1, 0, 0, 0, 394, 392, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 397, 389, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 71, 1, 0, 0, 0, 399, 408, 3, 78, 39, 0, 400, 408, 3, 100, 50, 0, 401, 402, 5, 21, 0, 0, 402, 403, 3, 24, 12, 0, 403, 404, 5, 22, 0, 0, 404, 408, 1, 0, 0, 0, 405, 408, 3, 88, 44, 0, 406, 408, 3, 14, 7, 0, 407, 399, 1, 0, 0, 0, 407, 400, 1, 0, 0, 0, 407, 401, 1, 0, 0, 0, 407, 405, 1, 0, 0, 0, 407, 406, 1, 0, 0, 0, 408, 73, 1, 0, 0, 0, 409, 412, 3, 80, 40, 0, 410, 412, 3, 76, 38, 0, 411, 409, 1, 0, 0, 0, 411, 410, 1, 0, 0, 0, 412, 75, 1, 0, 0, 0, 413, 418, 3, 100, 50, 0, 414, 415, 5, 19, 0, 0, 415, 417, 3, 100, 50, 0, 416, 414, 1, 0, 0, 0, 417, 420, 1, 0, 0, 0, 418, 416, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 77, 1, 0, 0, 0, 420, 418, 1, 0, 0, 0, 421, 424, 3, 80, 40, 0, 422, 424, 5, 32, 0, 0, 423, 421, 1, 0, 0, 0, 423, 422, 1, 0, 0, 0, 424, 79, 1, 0, 0, 0, 425, 430, 3, 86, 43, 0, 426, 430, 3, 82, 41, 0, 427, 430, 3, 84, 42, 0, 428, 430, 3, 98, 49, 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, 81, 1, 0, 0, 0, 431, 432, 5, 4, 0, 0, 432, 83, 1, 0, 0, 0, 433, 434, 7, 8, 0, 0, 434, 85, 1, 0, 0, 0, 435, 436, 5, 5, 0, 0, 436, 87, 1, 0, 0, 0, 437, 441, 3, 90, 45, 0, 438, 441, 3, 30, 15, 0, 439, 441, 3, 92, 46, 0, 440, 437, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 440, 439, 1, 0, 0, 0, 441, 89, 1, 0, 0, 0, 442, 451, 5, 23, 0, 0, 443, 448, 3, 24, 12, 0, 444, 445, 5, 20, 0, 0, 445, 447, 3, 24, 12, 0, 446, 444, 1, 0, 0, 0, 447, 450, 1, 0, 0, 0, 448, 446, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 452, 1, 0, 0, 0, 450, 448, 1, 0, 0, 0, 451, 443, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 454, 5, 24, 0, 0, 454, 91, 1, 0, 0, 0, 455, 464, 5, 25, 0, 0, 456, 461, 3, 94, 47, 0, 457, 458, 5, 20, 0, 0, 458, 460, 3, 94, 47, 0, 459, 457, 1, 0, 0, 0, 460, 463, 1, 0, 0, 0, 461, 459, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 465, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 464, 456, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 467, 5, 26, 0, 0, 467, 93, 1, 0, 0, 0, 468, 469, 3, 96, 48, 0, 469, 470, 5, 27, 0, 0, 470, 471, 3, 24, 12, 0, 471, 95, 1, 0, 0, 0, 472, 475, 3, 100, 50, 0, 473, 475, 3, 82, 41, 0, 474, 472, 1, 0, 0, 0, 474, 473, 1, 0, 0, 0, 475, 97, 1, 0, 0, 0, 476, 483, 5, 6, 0, 0, 477, 478, 3, 100, 50, 0, 478, 479, 5, 21, 0, 0, 479, 480, 3, 24, 12, 0, 480, 481, 5, 22, 0, 0, 481, 483, 1, 0, 0, 0, 482, 476, 1, 0, 0, 0, 482, 477, 1, 0, 0, 0, 483, 99, 1, 0, 0, 0, 484, 485, 7, 9, 0, 0, 485, 101, 1, 0, 0, 0, 43, 121, 128, 136, 157, 164, 173, 176, 181, 184, 191, 204, 213, 232, 243, 251, 269, 278, 286, 294, 300, 308, 330, 343, 346, 352, 362, 364, 370, 384, 394, 397, 407, 411, 418, 423, 429, 440, 448, 451, 461, 464, 474, 482] \ No newline at end of file diff --git a/src/jdmn-js-runtime/parser/FEELParser.js b/src/jdmn-js-runtime/parser/FEELParser.js index 8fc7bc2..93337b3 100644 --- a/src/jdmn-js-runtime/parser/FEELParser.js +++ b/src/jdmn-js-runtime/parser/FEELParser.js @@ -3,7 +3,7 @@ import antlr4 from "antlr4"; -const serializedATN = [4,1,48,492,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7, +const serializedATN = [4,1,48,487,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, @@ -12,153 +12,152 @@ const serializedATN = [4,1,48,492,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7, 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,1,0,1,0,1,0,1,1,1,1,1,1,1,2,1,2,1,2,1,3,1,3,1,3,1,4,1, 4,1,4,1,4,1,4,1,4,1,4,3,4,122,8,4,1,5,1,5,1,5,5,5,127,8,5,10,5,12,5,130, - 9,5,1,6,1,6,1,7,3,7,135,8,7,1,7,1,7,3,7,139,8,7,1,8,1,8,1,8,1,8,1,8,1,8, - 1,9,1,9,1,10,1,10,1,11,3,11,152,8,11,1,11,1,11,1,12,1,12,1,13,1,13,1,13, - 5,13,161,8,13,10,13,12,13,164,9,13,1,14,1,14,1,14,1,14,3,14,170,8,14,1,15, - 1,15,1,15,1,15,1,15,5,15,177,8,15,10,15,12,15,180,9,15,3,15,182,8,15,1,15, - 1,15,1,15,3,15,187,8,15,1,15,3,15,190,8,15,1,15,1,15,1,16,1,16,1,16,3,16, - 197,8,16,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,5,17,208,8,17,10,17, - 12,17,211,9,17,1,17,1,17,1,17,1,18,1,18,1,18,3,18,219,8,18,1,19,1,19,1,19, - 1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,5,20,236,8,20, - 10,20,12,20,239,9,20,1,20,1,20,1,20,1,21,1,21,1,21,5,21,247,8,21,10,21,12, - 21,250,9,21,1,22,1,22,1,22,5,22,255,8,22,10,22,12,22,258,9,22,1,23,1,23, - 1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,3,23,275, - 8,23,1,24,1,24,1,25,1,25,1,25,5,25,282,8,25,10,25,12,25,285,9,25,1,26,1, - 26,1,26,5,26,290,8,26,10,26,12,26,293,9,26,1,27,1,27,1,27,5,27,298,8,27, - 10,27,12,27,301,9,27,1,28,5,28,304,8,28,10,28,12,28,307,9,28,1,28,1,28,1, - 29,1,29,1,29,3,29,314,8,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30, - 1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,5,30,334,8,30,10,30,12,30,337, - 9,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,5,30,347,8,30,10,30,12,30,350, - 9,30,3,30,352,8,30,1,30,1,30,1,30,1,30,3,30,358,8,30,1,31,1,31,1,31,1,31, - 1,31,1,31,1,31,1,31,5,31,368,8,31,10,31,12,31,371,9,31,1,32,1,32,1,32,3, - 32,376,8,32,1,32,1,32,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,5,33,388,8, - 33,10,33,12,33,391,9,33,1,34,1,34,1,35,1,35,1,35,5,35,398,8,35,10,35,12, - 35,401,9,35,3,35,403,8,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,413, - 8,36,1,37,1,37,3,37,417,8,37,1,38,1,38,1,38,5,38,422,8,38,10,38,12,38,425, - 9,38,1,39,1,39,3,39,429,8,39,1,40,1,40,1,40,1,40,3,40,435,8,40,1,41,1,41, - 1,42,1,42,1,43,1,43,1,44,1,44,1,44,3,44,446,8,44,1,45,1,45,1,45,1,45,5,45, - 452,8,45,10,45,12,45,455,9,45,3,45,457,8,45,1,45,1,45,1,46,1,46,1,46,1,46, - 5,46,465,8,46,10,46,12,46,468,9,46,3,46,470,8,46,1,46,1,46,1,47,1,47,1,47, - 1,47,1,48,1,48,3,48,480,8,48,1,49,1,49,1,49,1,49,1,49,1,49,3,49,488,8,49, - 1,50,1,50,1,50,0,0,51,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,0,10,1,0,9,12,2,0,21,21,23,24,1,0,22,24,1,0,41, - 42,1,0,7,12,1,0,13,14,1,0,15,16,2,0,14,14,29,29,1,0,30,31,3,0,33,33,44,45, - 48,48,500,0,102,1,0,0,0,2,105,1,0,0,0,4,108,1,0,0,0,6,111,1,0,0,0,8,121, - 1,0,0,0,10,123,1,0,0,0,12,131,1,0,0,0,14,138,1,0,0,0,16,140,1,0,0,0,18,146, - 1,0,0,0,20,148,1,0,0,0,22,151,1,0,0,0,24,155,1,0,0,0,26,157,1,0,0,0,28,169, - 1,0,0,0,30,171,1,0,0,0,32,193,1,0,0,0,34,198,1,0,0,0,36,215,1,0,0,0,38,220, - 1,0,0,0,40,227,1,0,0,0,42,243,1,0,0,0,44,251,1,0,0,0,46,259,1,0,0,0,48,276, - 1,0,0,0,50,278,1,0,0,0,52,286,1,0,0,0,54,294,1,0,0,0,56,305,1,0,0,0,58,310, - 1,0,0,0,60,357,1,0,0,0,62,359,1,0,0,0,64,372,1,0,0,0,66,379,1,0,0,0,68,392, - 1,0,0,0,70,402,1,0,0,0,72,412,1,0,0,0,74,416,1,0,0,0,76,418,1,0,0,0,78,428, - 1,0,0,0,80,434,1,0,0,0,82,436,1,0,0,0,84,438,1,0,0,0,86,440,1,0,0,0,88,445, - 1,0,0,0,90,447,1,0,0,0,92,460,1,0,0,0,94,473,1,0,0,0,96,479,1,0,0,0,98,487, - 1,0,0,0,100,489,1,0,0,0,102,103,3,8,4,0,103,104,5,0,0,1,104,1,1,0,0,0,105, + 9,5,1,6,1,6,1,7,1,7,1,7,3,7,137,8,7,1,8,1,8,1,8,1,8,1,8,1,8,1,9,1,9,1,10, + 1,10,1,11,1,11,1,12,1,12,1,13,1,13,1,13,5,13,156,8,13,10,13,12,13,159,9, + 13,1,14,1,14,1,14,1,14,3,14,165,8,14,1,15,1,15,1,15,1,15,1,15,5,15,172,8, + 15,10,15,12,15,175,9,15,3,15,177,8,15,1,15,1,15,1,15,3,15,182,8,15,1,15, + 3,15,185,8,15,1,15,1,15,1,16,1,16,1,16,3,16,192,8,16,1,17,1,17,1,17,1,17, + 1,17,1,17,1,17,1,17,1,17,5,17,203,8,17,10,17,12,17,206,9,17,1,17,1,17,1, + 17,1,18,1,18,1,18,3,18,214,8,18,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,20, + 1,20,1,20,1,20,1,20,1,20,1,20,1,20,5,20,231,8,20,10,20,12,20,234,9,20,1, + 20,1,20,1,20,1,21,1,21,1,21,5,21,242,8,21,10,21,12,21,245,9,21,1,22,1,22, + 1,22,5,22,250,8,22,10,22,12,22,253,9,22,1,23,1,23,1,23,1,23,1,23,1,23,1, + 23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,3,23,270,8,23,1,24,1,24,1,25, + 1,25,1,25,5,25,277,8,25,10,25,12,25,280,9,25,1,26,1,26,1,26,5,26,285,8,26, + 10,26,12,26,288,9,26,1,27,1,27,1,27,5,27,293,8,27,10,27,12,27,296,9,27,1, + 28,5,28,299,8,28,10,28,12,28,302,9,28,1,28,1,28,1,29,1,29,1,29,3,29,309, + 8,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1, + 30,1,30,1,30,1,30,1,30,5,30,329,8,30,10,30,12,30,332,9,30,1,30,1,30,1,30, + 1,30,1,30,1,30,1,30,1,30,5,30,342,8,30,10,30,12,30,345,9,30,3,30,347,8,30, + 1,30,1,30,1,30,1,30,3,30,353,8,30,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31, + 5,31,363,8,31,10,31,12,31,366,9,31,1,32,1,32,1,32,3,32,371,8,32,1,32,1,32, + 1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,5,33,383,8,33,10,33,12,33,386,9, + 33,1,34,1,34,1,35,1,35,1,35,5,35,393,8,35,10,35,12,35,396,9,35,3,35,398, + 8,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,408,8,36,1,37,1,37,3,37, + 412,8,37,1,38,1,38,1,38,5,38,417,8,38,10,38,12,38,420,9,38,1,39,1,39,3,39, + 424,8,39,1,40,1,40,1,40,1,40,3,40,430,8,40,1,41,1,41,1,42,1,42,1,43,1,43, + 1,44,1,44,1,44,3,44,441,8,44,1,45,1,45,1,45,1,45,5,45,447,8,45,10,45,12, + 45,450,9,45,3,45,452,8,45,1,45,1,45,1,46,1,46,1,46,1,46,5,46,460,8,46,10, + 46,12,46,463,9,46,3,46,465,8,46,1,46,1,46,1,47,1,47,1,47,1,47,1,48,1,48, + 3,48,475,8,48,1,49,1,49,1,49,1,49,1,49,1,49,3,49,483,8,49,1,50,1,50,1,50, + 0,0,51,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,0,10,1,0,9,12,2,0,21,21,23,24,1,0,22,24,1,0,41,42,1,0,7,12,1,0, + 13,14,1,0,15,16,2,0,14,14,29,29,1,0,30,31,4,0,29,29,33,33,44,45,48,48,493, + 0,102,1,0,0,0,2,105,1,0,0,0,4,108,1,0,0,0,6,111,1,0,0,0,8,121,1,0,0,0,10, + 123,1,0,0,0,12,131,1,0,0,0,14,136,1,0,0,0,16,138,1,0,0,0,18,144,1,0,0,0, + 20,146,1,0,0,0,22,148,1,0,0,0,24,150,1,0,0,0,26,152,1,0,0,0,28,164,1,0,0, + 0,30,166,1,0,0,0,32,188,1,0,0,0,34,193,1,0,0,0,36,210,1,0,0,0,38,215,1,0, + 0,0,40,222,1,0,0,0,42,238,1,0,0,0,44,246,1,0,0,0,46,254,1,0,0,0,48,271,1, + 0,0,0,50,273,1,0,0,0,52,281,1,0,0,0,54,289,1,0,0,0,56,300,1,0,0,0,58,305, + 1,0,0,0,60,352,1,0,0,0,62,354,1,0,0,0,64,367,1,0,0,0,66,374,1,0,0,0,68,387, + 1,0,0,0,70,397,1,0,0,0,72,407,1,0,0,0,74,411,1,0,0,0,76,413,1,0,0,0,78,423, + 1,0,0,0,80,429,1,0,0,0,82,431,1,0,0,0,84,433,1,0,0,0,86,435,1,0,0,0,88,440, + 1,0,0,0,90,442,1,0,0,0,92,455,1,0,0,0,94,468,1,0,0,0,96,474,1,0,0,0,98,482, + 1,0,0,0,100,484,1,0,0,0,102,103,3,8,4,0,103,104,5,0,0,1,104,1,1,0,0,0,105, 106,3,24,12,0,106,107,5,0,0,1,107,3,1,0,0,0,108,109,3,26,13,0,109,110,5, 0,0,1,110,5,1,0,0,0,111,112,3,88,44,0,112,113,5,0,0,1,113,7,1,0,0,0,114, 115,5,29,0,0,115,116,5,21,0,0,116,117,3,10,5,0,117,118,5,22,0,0,118,122, 1,0,0,0,119,122,3,10,5,0,120,122,5,14,0,0,121,114,1,0,0,0,121,119,1,0,0, 0,121,120,1,0,0,0,122,9,1,0,0,0,123,128,3,12,6,0,124,125,5,20,0,0,125,127, 3,12,6,0,126,124,1,0,0,0,127,130,1,0,0,0,128,126,1,0,0,0,128,129,1,0,0,0, - 129,11,1,0,0,0,130,128,1,0,0,0,131,132,3,24,12,0,132,13,1,0,0,0,133,135, - 7,0,0,0,134,133,1,0,0,0,134,135,1,0,0,0,135,136,1,0,0,0,136,139,3,22,11, - 0,137,139,3,16,8,0,138,134,1,0,0,0,138,137,1,0,0,0,139,15,1,0,0,0,140,141, - 3,18,9,0,141,142,3,22,11,0,142,143,5,18,0,0,143,144,3,22,11,0,144,145,3, - 20,10,0,145,17,1,0,0,0,146,147,7,1,0,0,147,19,1,0,0,0,148,149,7,2,0,0,149, - 21,1,0,0,0,150,152,5,14,0,0,151,150,1,0,0,0,151,152,1,0,0,0,152,153,1,0, - 0,0,153,154,3,74,37,0,154,23,1,0,0,0,155,156,3,28,14,0,156,25,1,0,0,0,157, - 162,3,28,14,0,158,159,5,20,0,0,159,161,3,28,14,0,160,158,1,0,0,0,161,164, - 1,0,0,0,162,160,1,0,0,0,162,163,1,0,0,0,163,27,1,0,0,0,164,162,1,0,0,0,165, - 170,3,34,17,0,166,170,3,38,19,0,167,170,3,40,20,0,168,170,3,42,21,0,169, - 165,1,0,0,0,169,166,1,0,0,0,169,167,1,0,0,0,169,168,1,0,0,0,170,29,1,0,0, - 0,171,172,5,33,0,0,172,181,5,21,0,0,173,178,3,32,16,0,174,175,5,20,0,0,175, - 177,3,32,16,0,176,174,1,0,0,0,177,180,1,0,0,0,178,176,1,0,0,0,178,179,1, - 0,0,0,179,182,1,0,0,0,180,178,1,0,0,0,181,173,1,0,0,0,181,182,1,0,0,0,182, - 183,1,0,0,0,183,186,5,22,0,0,184,185,5,27,0,0,185,187,3,60,30,0,186,184, - 1,0,0,0,186,187,1,0,0,0,187,189,1,0,0,0,188,190,5,34,0,0,189,188,1,0,0,0, - 189,190,1,0,0,0,190,191,1,0,0,0,191,192,3,24,12,0,192,31,1,0,0,0,193,196, - 3,68,34,0,194,195,5,27,0,0,195,197,3,60,30,0,196,194,1,0,0,0,196,197,1,0, - 0,0,197,33,1,0,0,0,198,199,5,35,0,0,199,200,3,100,50,0,200,201,5,36,0,0, - 201,209,3,36,18,0,202,203,5,20,0,0,203,204,3,100,50,0,204,205,5,36,0,0,205, - 206,3,36,18,0,206,208,1,0,0,0,207,202,1,0,0,0,208,211,1,0,0,0,209,207,1, - 0,0,0,209,210,1,0,0,0,210,212,1,0,0,0,211,209,1,0,0,0,212,213,5,37,0,0,213, - 214,3,24,12,0,214,35,1,0,0,0,215,218,3,24,12,0,216,217,5,18,0,0,217,219, - 3,24,12,0,218,216,1,0,0,0,218,219,1,0,0,0,219,37,1,0,0,0,220,221,5,38,0, - 0,221,222,3,24,12,0,222,223,5,39,0,0,223,224,3,24,12,0,224,225,5,40,0,0, - 225,226,3,24,12,0,226,39,1,0,0,0,227,228,7,3,0,0,228,229,3,100,50,0,229, - 230,5,36,0,0,230,237,3,24,12,0,231,232,3,100,50,0,232,233,5,36,0,0,233,234, - 3,24,12,0,234,236,1,0,0,0,235,231,1,0,0,0,236,239,1,0,0,0,237,235,1,0,0, - 0,237,238,1,0,0,0,238,240,1,0,0,0,239,237,1,0,0,0,240,241,5,43,0,0,241,242, - 3,24,12,0,242,41,1,0,0,0,243,248,3,44,22,0,244,245,5,45,0,0,245,247,3,44, - 22,0,246,244,1,0,0,0,247,250,1,0,0,0,248,246,1,0,0,0,248,249,1,0,0,0,249, - 43,1,0,0,0,250,248,1,0,0,0,251,256,3,46,23,0,252,253,5,44,0,0,253,255,3, - 46,23,0,254,252,1,0,0,0,255,258,1,0,0,0,256,254,1,0,0,0,256,257,1,0,0,0, - 257,45,1,0,0,0,258,256,1,0,0,0,259,274,3,48,24,0,260,261,7,4,0,0,261,275, - 3,48,24,0,262,263,5,46,0,0,263,264,3,24,12,0,264,265,5,44,0,0,265,266,3, - 24,12,0,266,275,1,0,0,0,267,268,5,36,0,0,268,275,3,12,6,0,269,270,5,36,0, - 0,270,271,5,21,0,0,271,272,3,10,5,0,272,273,5,22,0,0,273,275,1,0,0,0,274, - 260,1,0,0,0,274,262,1,0,0,0,274,267,1,0,0,0,274,269,1,0,0,0,274,275,1,0, - 0,0,275,47,1,0,0,0,276,277,3,50,25,0,277,49,1,0,0,0,278,283,3,52,26,0,279, - 280,7,5,0,0,280,282,3,52,26,0,281,279,1,0,0,0,282,285,1,0,0,0,283,281,1, - 0,0,0,283,284,1,0,0,0,284,51,1,0,0,0,285,283,1,0,0,0,286,291,3,54,27,0,287, - 288,7,6,0,0,288,290,3,54,27,0,289,287,1,0,0,0,290,293,1,0,0,0,291,289,1, - 0,0,0,291,292,1,0,0,0,292,53,1,0,0,0,293,291,1,0,0,0,294,299,3,56,28,0,295, - 296,5,17,0,0,296,298,3,56,28,0,297,295,1,0,0,0,298,301,1,0,0,0,299,297,1, - 0,0,0,299,300,1,0,0,0,300,55,1,0,0,0,301,299,1,0,0,0,302,304,7,7,0,0,303, - 302,1,0,0,0,304,307,1,0,0,0,305,303,1,0,0,0,305,306,1,0,0,0,306,308,1,0, - 0,0,307,305,1,0,0,0,308,309,3,58,29,0,309,57,1,0,0,0,310,313,3,62,31,0,311, - 312,5,47,0,0,312,314,3,60,30,0,313,311,1,0,0,0,313,314,1,0,0,0,314,59,1, - 0,0,0,315,358,3,76,38,0,316,317,3,100,50,0,317,318,4,30,0,1,318,319,5,9, - 0,0,319,320,3,60,30,0,320,321,5,10,0,0,321,358,1,0,0,0,322,323,3,100,50, - 0,323,324,4,30,1,1,324,325,5,9,0,0,325,326,3,100,50,0,326,327,5,27,0,0,327, - 335,3,60,30,0,328,329,5,20,0,0,329,330,3,100,50,0,330,331,5,27,0,0,331,332, - 3,60,30,0,332,334,1,0,0,0,333,328,1,0,0,0,334,337,1,0,0,0,335,333,1,0,0, - 0,335,336,1,0,0,0,336,338,1,0,0,0,337,335,1,0,0,0,338,339,5,10,0,0,339,358, - 1,0,0,0,340,341,3,100,50,0,341,342,4,30,2,1,342,351,5,9,0,0,343,348,3,60, - 30,0,344,345,5,20,0,0,345,347,3,60,30,0,346,344,1,0,0,0,347,350,1,0,0,0, - 348,346,1,0,0,0,348,349,1,0,0,0,349,352,1,0,0,0,350,348,1,0,0,0,351,343, - 1,0,0,0,351,352,1,0,0,0,352,353,1,0,0,0,353,354,5,10,0,0,354,355,5,28,0, - 0,355,356,3,60,30,0,356,358,1,0,0,0,357,315,1,0,0,0,357,316,1,0,0,0,357, - 322,1,0,0,0,357,340,1,0,0,0,358,61,1,0,0,0,359,369,3,72,36,0,360,361,5,23, - 0,0,361,362,3,24,12,0,362,363,5,24,0,0,363,368,1,0,0,0,364,368,3,64,32,0, - 365,366,5,19,0,0,366,368,3,100,50,0,367,360,1,0,0,0,367,364,1,0,0,0,367, - 365,1,0,0,0,368,371,1,0,0,0,369,367,1,0,0,0,369,370,1,0,0,0,370,63,1,0,0, - 0,371,369,1,0,0,0,372,375,5,21,0,0,373,376,3,66,33,0,374,376,3,70,35,0,375, - 373,1,0,0,0,375,374,1,0,0,0,376,377,1,0,0,0,377,378,5,22,0,0,378,65,1,0, - 0,0,379,380,3,68,34,0,380,381,5,27,0,0,381,389,3,24,12,0,382,383,5,20,0, - 0,383,384,3,68,34,0,384,385,5,27,0,0,385,386,3,24,12,0,386,388,1,0,0,0,387, - 382,1,0,0,0,388,391,1,0,0,0,389,387,1,0,0,0,389,390,1,0,0,0,390,67,1,0,0, - 0,391,389,1,0,0,0,392,393,3,100,50,0,393,69,1,0,0,0,394,399,3,24,12,0,395, - 396,5,20,0,0,396,398,3,24,12,0,397,395,1,0,0,0,398,401,1,0,0,0,399,397,1, - 0,0,0,399,400,1,0,0,0,400,403,1,0,0,0,401,399,1,0,0,0,402,394,1,0,0,0,402, - 403,1,0,0,0,403,71,1,0,0,0,404,413,3,78,39,0,405,413,3,100,50,0,406,407, - 5,21,0,0,407,408,3,24,12,0,408,409,5,22,0,0,409,413,1,0,0,0,410,413,3,88, - 44,0,411,413,3,14,7,0,412,404,1,0,0,0,412,405,1,0,0,0,412,406,1,0,0,0,412, - 410,1,0,0,0,412,411,1,0,0,0,413,73,1,0,0,0,414,417,3,80,40,0,415,417,3,76, - 38,0,416,414,1,0,0,0,416,415,1,0,0,0,417,75,1,0,0,0,418,423,3,100,50,0,419, - 420,5,19,0,0,420,422,3,100,50,0,421,419,1,0,0,0,422,425,1,0,0,0,423,421, - 1,0,0,0,423,424,1,0,0,0,424,77,1,0,0,0,425,423,1,0,0,0,426,429,3,80,40,0, - 427,429,5,32,0,0,428,426,1,0,0,0,428,427,1,0,0,0,429,79,1,0,0,0,430,435, - 3,86,43,0,431,435,3,82,41,0,432,435,3,84,42,0,433,435,3,98,49,0,434,430, - 1,0,0,0,434,431,1,0,0,0,434,432,1,0,0,0,434,433,1,0,0,0,435,81,1,0,0,0,436, - 437,5,4,0,0,437,83,1,0,0,0,438,439,7,8,0,0,439,85,1,0,0,0,440,441,5,5,0, - 0,441,87,1,0,0,0,442,446,3,90,45,0,443,446,3,30,15,0,444,446,3,92,46,0,445, - 442,1,0,0,0,445,443,1,0,0,0,445,444,1,0,0,0,446,89,1,0,0,0,447,456,5,23, - 0,0,448,453,3,24,12,0,449,450,5,20,0,0,450,452,3,24,12,0,451,449,1,0,0,0, - 452,455,1,0,0,0,453,451,1,0,0,0,453,454,1,0,0,0,454,457,1,0,0,0,455,453, - 1,0,0,0,456,448,1,0,0,0,456,457,1,0,0,0,457,458,1,0,0,0,458,459,5,24,0,0, - 459,91,1,0,0,0,460,469,5,25,0,0,461,466,3,94,47,0,462,463,5,20,0,0,463,465, - 3,94,47,0,464,462,1,0,0,0,465,468,1,0,0,0,466,464,1,0,0,0,466,467,1,0,0, - 0,467,470,1,0,0,0,468,466,1,0,0,0,469,461,1,0,0,0,469,470,1,0,0,0,470,471, - 1,0,0,0,471,472,5,26,0,0,472,93,1,0,0,0,473,474,3,96,48,0,474,475,5,27,0, - 0,475,476,3,24,12,0,476,95,1,0,0,0,477,480,3,100,50,0,478,480,3,82,41,0, - 479,477,1,0,0,0,479,478,1,0,0,0,480,97,1,0,0,0,481,488,5,6,0,0,482,483,3, - 100,50,0,483,484,5,21,0,0,484,485,3,24,12,0,485,486,5,22,0,0,486,488,1,0, - 0,0,487,481,1,0,0,0,487,482,1,0,0,0,488,99,1,0,0,0,489,490,7,9,0,0,490,101, - 1,0,0,0,45,121,128,134,138,151,162,169,178,181,186,189,196,209,218,237,248, - 256,274,283,291,299,305,313,335,348,351,357,367,369,375,389,399,402,412, - 416,423,428,434,445,453,456,466,469,479,487]; + 129,11,1,0,0,0,130,128,1,0,0,0,131,132,3,24,12,0,132,13,1,0,0,0,133,134, + 7,0,0,0,134,137,3,22,11,0,135,137,3,16,8,0,136,133,1,0,0,0,136,135,1,0,0, + 0,137,15,1,0,0,0,138,139,3,18,9,0,139,140,3,22,11,0,140,141,5,18,0,0,141, + 142,3,22,11,0,142,143,3,20,10,0,143,17,1,0,0,0,144,145,7,1,0,0,145,19,1, + 0,0,0,146,147,7,2,0,0,147,21,1,0,0,0,148,149,3,24,12,0,149,23,1,0,0,0,150, + 151,3,28,14,0,151,25,1,0,0,0,152,157,3,28,14,0,153,154,5,20,0,0,154,156, + 3,28,14,0,155,153,1,0,0,0,156,159,1,0,0,0,157,155,1,0,0,0,157,158,1,0,0, + 0,158,27,1,0,0,0,159,157,1,0,0,0,160,165,3,34,17,0,161,165,3,38,19,0,162, + 165,3,40,20,0,163,165,3,42,21,0,164,160,1,0,0,0,164,161,1,0,0,0,164,162, + 1,0,0,0,164,163,1,0,0,0,165,29,1,0,0,0,166,167,5,33,0,0,167,176,5,21,0,0, + 168,173,3,32,16,0,169,170,5,20,0,0,170,172,3,32,16,0,171,169,1,0,0,0,172, + 175,1,0,0,0,173,171,1,0,0,0,173,174,1,0,0,0,174,177,1,0,0,0,175,173,1,0, + 0,0,176,168,1,0,0,0,176,177,1,0,0,0,177,178,1,0,0,0,178,181,5,22,0,0,179, + 180,5,27,0,0,180,182,3,60,30,0,181,179,1,0,0,0,181,182,1,0,0,0,182,184,1, + 0,0,0,183,185,5,34,0,0,184,183,1,0,0,0,184,185,1,0,0,0,185,186,1,0,0,0,186, + 187,3,24,12,0,187,31,1,0,0,0,188,191,3,68,34,0,189,190,5,27,0,0,190,192, + 3,60,30,0,191,189,1,0,0,0,191,192,1,0,0,0,192,33,1,0,0,0,193,194,5,35,0, + 0,194,195,3,100,50,0,195,196,5,36,0,0,196,204,3,36,18,0,197,198,5,20,0,0, + 198,199,3,100,50,0,199,200,5,36,0,0,200,201,3,36,18,0,201,203,1,0,0,0,202, + 197,1,0,0,0,203,206,1,0,0,0,204,202,1,0,0,0,204,205,1,0,0,0,205,207,1,0, + 0,0,206,204,1,0,0,0,207,208,5,37,0,0,208,209,3,24,12,0,209,35,1,0,0,0,210, + 213,3,24,12,0,211,212,5,18,0,0,212,214,3,24,12,0,213,211,1,0,0,0,213,214, + 1,0,0,0,214,37,1,0,0,0,215,216,5,38,0,0,216,217,3,24,12,0,217,218,5,39,0, + 0,218,219,3,24,12,0,219,220,5,40,0,0,220,221,3,24,12,0,221,39,1,0,0,0,222, + 223,7,3,0,0,223,224,3,100,50,0,224,225,5,36,0,0,225,232,3,24,12,0,226,227, + 3,100,50,0,227,228,5,36,0,0,228,229,3,24,12,0,229,231,1,0,0,0,230,226,1, + 0,0,0,231,234,1,0,0,0,232,230,1,0,0,0,232,233,1,0,0,0,233,235,1,0,0,0,234, + 232,1,0,0,0,235,236,5,43,0,0,236,237,3,24,12,0,237,41,1,0,0,0,238,243,3, + 44,22,0,239,240,5,45,0,0,240,242,3,44,22,0,241,239,1,0,0,0,242,245,1,0,0, + 0,243,241,1,0,0,0,243,244,1,0,0,0,244,43,1,0,0,0,245,243,1,0,0,0,246,251, + 3,46,23,0,247,248,5,44,0,0,248,250,3,46,23,0,249,247,1,0,0,0,250,253,1,0, + 0,0,251,249,1,0,0,0,251,252,1,0,0,0,252,45,1,0,0,0,253,251,1,0,0,0,254,269, + 3,48,24,0,255,256,7,4,0,0,256,270,3,48,24,0,257,258,5,46,0,0,258,259,3,24, + 12,0,259,260,5,44,0,0,260,261,3,24,12,0,261,270,1,0,0,0,262,263,5,36,0,0, + 263,270,3,12,6,0,264,265,5,36,0,0,265,266,5,21,0,0,266,267,3,10,5,0,267, + 268,5,22,0,0,268,270,1,0,0,0,269,255,1,0,0,0,269,257,1,0,0,0,269,262,1,0, + 0,0,269,264,1,0,0,0,269,270,1,0,0,0,270,47,1,0,0,0,271,272,3,50,25,0,272, + 49,1,0,0,0,273,278,3,52,26,0,274,275,7,5,0,0,275,277,3,52,26,0,276,274,1, + 0,0,0,277,280,1,0,0,0,278,276,1,0,0,0,278,279,1,0,0,0,279,51,1,0,0,0,280, + 278,1,0,0,0,281,286,3,54,27,0,282,283,7,6,0,0,283,285,3,54,27,0,284,282, + 1,0,0,0,285,288,1,0,0,0,286,284,1,0,0,0,286,287,1,0,0,0,287,53,1,0,0,0,288, + 286,1,0,0,0,289,294,3,56,28,0,290,291,5,17,0,0,291,293,3,56,28,0,292,290, + 1,0,0,0,293,296,1,0,0,0,294,292,1,0,0,0,294,295,1,0,0,0,295,55,1,0,0,0,296, + 294,1,0,0,0,297,299,7,7,0,0,298,297,1,0,0,0,299,302,1,0,0,0,300,298,1,0, + 0,0,300,301,1,0,0,0,301,303,1,0,0,0,302,300,1,0,0,0,303,304,3,58,29,0,304, + 57,1,0,0,0,305,308,3,62,31,0,306,307,5,47,0,0,307,309,3,60,30,0,308,306, + 1,0,0,0,308,309,1,0,0,0,309,59,1,0,0,0,310,353,3,76,38,0,311,312,3,100,50, + 0,312,313,4,30,0,1,313,314,5,9,0,0,314,315,3,60,30,0,315,316,5,10,0,0,316, + 353,1,0,0,0,317,318,3,100,50,0,318,319,4,30,1,1,319,320,5,9,0,0,320,321, + 3,100,50,0,321,322,5,27,0,0,322,330,3,60,30,0,323,324,5,20,0,0,324,325,3, + 100,50,0,325,326,5,27,0,0,326,327,3,60,30,0,327,329,1,0,0,0,328,323,1,0, + 0,0,329,332,1,0,0,0,330,328,1,0,0,0,330,331,1,0,0,0,331,333,1,0,0,0,332, + 330,1,0,0,0,333,334,5,10,0,0,334,353,1,0,0,0,335,336,3,100,50,0,336,337, + 4,30,2,1,337,346,5,9,0,0,338,343,3,60,30,0,339,340,5,20,0,0,340,342,3,60, + 30,0,341,339,1,0,0,0,342,345,1,0,0,0,343,341,1,0,0,0,343,344,1,0,0,0,344, + 347,1,0,0,0,345,343,1,0,0,0,346,338,1,0,0,0,346,347,1,0,0,0,347,348,1,0, + 0,0,348,349,5,10,0,0,349,350,5,28,0,0,350,351,3,60,30,0,351,353,1,0,0,0, + 352,310,1,0,0,0,352,311,1,0,0,0,352,317,1,0,0,0,352,335,1,0,0,0,353,61,1, + 0,0,0,354,364,3,72,36,0,355,356,5,23,0,0,356,357,3,24,12,0,357,358,5,24, + 0,0,358,363,1,0,0,0,359,363,3,64,32,0,360,361,5,19,0,0,361,363,3,100,50, + 0,362,355,1,0,0,0,362,359,1,0,0,0,362,360,1,0,0,0,363,366,1,0,0,0,364,362, + 1,0,0,0,364,365,1,0,0,0,365,63,1,0,0,0,366,364,1,0,0,0,367,370,5,21,0,0, + 368,371,3,66,33,0,369,371,3,70,35,0,370,368,1,0,0,0,370,369,1,0,0,0,371, + 372,1,0,0,0,372,373,5,22,0,0,373,65,1,0,0,0,374,375,3,68,34,0,375,376,5, + 27,0,0,376,384,3,24,12,0,377,378,5,20,0,0,378,379,3,68,34,0,379,380,5,27, + 0,0,380,381,3,24,12,0,381,383,1,0,0,0,382,377,1,0,0,0,383,386,1,0,0,0,384, + 382,1,0,0,0,384,385,1,0,0,0,385,67,1,0,0,0,386,384,1,0,0,0,387,388,3,100, + 50,0,388,69,1,0,0,0,389,394,3,24,12,0,390,391,5,20,0,0,391,393,3,24,12,0, + 392,390,1,0,0,0,393,396,1,0,0,0,394,392,1,0,0,0,394,395,1,0,0,0,395,398, + 1,0,0,0,396,394,1,0,0,0,397,389,1,0,0,0,397,398,1,0,0,0,398,71,1,0,0,0,399, + 408,3,78,39,0,400,408,3,100,50,0,401,402,5,21,0,0,402,403,3,24,12,0,403, + 404,5,22,0,0,404,408,1,0,0,0,405,408,3,88,44,0,406,408,3,14,7,0,407,399, + 1,0,0,0,407,400,1,0,0,0,407,401,1,0,0,0,407,405,1,0,0,0,407,406,1,0,0,0, + 408,73,1,0,0,0,409,412,3,80,40,0,410,412,3,76,38,0,411,409,1,0,0,0,411,410, + 1,0,0,0,412,75,1,0,0,0,413,418,3,100,50,0,414,415,5,19,0,0,415,417,3,100, + 50,0,416,414,1,0,0,0,417,420,1,0,0,0,418,416,1,0,0,0,418,419,1,0,0,0,419, + 77,1,0,0,0,420,418,1,0,0,0,421,424,3,80,40,0,422,424,5,32,0,0,423,421,1, + 0,0,0,423,422,1,0,0,0,424,79,1,0,0,0,425,430,3,86,43,0,426,430,3,82,41,0, + 427,430,3,84,42,0,428,430,3,98,49,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,81,1,0,0,0,431,432,5,4,0,0,432,83,1,0,0, + 0,433,434,7,8,0,0,434,85,1,0,0,0,435,436,5,5,0,0,436,87,1,0,0,0,437,441, + 3,90,45,0,438,441,3,30,15,0,439,441,3,92,46,0,440,437,1,0,0,0,440,438,1, + 0,0,0,440,439,1,0,0,0,441,89,1,0,0,0,442,451,5,23,0,0,443,448,3,24,12,0, + 444,445,5,20,0,0,445,447,3,24,12,0,446,444,1,0,0,0,447,450,1,0,0,0,448,446, + 1,0,0,0,448,449,1,0,0,0,449,452,1,0,0,0,450,448,1,0,0,0,451,443,1,0,0,0, + 451,452,1,0,0,0,452,453,1,0,0,0,453,454,5,24,0,0,454,91,1,0,0,0,455,464, + 5,25,0,0,456,461,3,94,47,0,457,458,5,20,0,0,458,460,3,94,47,0,459,457,1, + 0,0,0,460,463,1,0,0,0,461,459,1,0,0,0,461,462,1,0,0,0,462,465,1,0,0,0,463, + 461,1,0,0,0,464,456,1,0,0,0,464,465,1,0,0,0,465,466,1,0,0,0,466,467,5,26, + 0,0,467,93,1,0,0,0,468,469,3,96,48,0,469,470,5,27,0,0,470,471,3,24,12,0, + 471,95,1,0,0,0,472,475,3,100,50,0,473,475,3,82,41,0,474,472,1,0,0,0,474, + 473,1,0,0,0,475,97,1,0,0,0,476,483,5,6,0,0,477,478,3,100,50,0,478,479,5, + 21,0,0,479,480,3,24,12,0,480,481,5,22,0,0,481,483,1,0,0,0,482,476,1,0,0, + 0,482,477,1,0,0,0,483,99,1,0,0,0,484,485,7,9,0,0,485,101,1,0,0,0,43,121, + 128,136,157,164,173,176,181,184,191,204,213,232,243,251,269,278,286,294, + 300,308,330,343,346,352,362,364,370,384,394,397,407,411,418,423,429,440, + 448,451,461,464,474,482]; const atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); @@ -232,7 +231,7 @@ export default class FEELParser extends antlr4.Parser { type_sempred(localctx, predIndex) { switch(predIndex) { case 0: - return "list" == (localctx.typeName===null ? null : this._input.getText(new antlr4.Interval(localctx.typeName.start,localctx.typeName.stop))); + return "range" == (localctx.typeName===null ? null : this._input.getText(new antlr4.Interval(localctx.typeName.start,localctx.typeName.stop))) || "list" == (localctx.typeName===null ? null : this._input.getText(new antlr4.Interval(localctx.typeName.start,localctx.typeName.stop))); case 1: return "context" == (localctx.typeName===null ? null : this._input.getText(new antlr4.Interval(localctx.typeName.start,localctx.typeName.stop))); case 2: @@ -458,47 +457,31 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 14, FEELParser.RULE_simplePositiveUnaryTest); var _la = 0; // Token type try { - this.state = 138; + this.state = 136; this._errHandler.sync(this); switch(this._input.LA(1)) { - case FEELParser.STRING: - case FEELParser.NUMBER: - case FEELParser.TEMPORAL: case FEELParser.LT: case FEELParser.GT: case FEELParser.LE: case FEELParser.GE: - case FEELParser.MINUS: - case FEELParser.TRUE: - case FEELParser.FALSE: - case FEELParser.FUNCTION: - case FEELParser.AND: - case FEELParser.OR: - case FEELParser.NAME: this.enterOuterAlt(localctx, 1); - this.state = 134; - this._errHandler.sync(this); + this.state = 133; _la = this._input.LA(1); - if((((_la) & ~0x1f) == 0 && ((1 << _la) & ((1 << FEELParser.LT) | (1 << FEELParser.GT) | (1 << FEELParser.LE) | (1 << FEELParser.GE))) !== 0)) { - this.state = 133; - _la = this._input.LA(1); - if(!((((_la) & ~0x1f) == 0 && ((1 << _la) & ((1 << FEELParser.LT) | (1 << FEELParser.GT) | (1 << FEELParser.LE) | (1 << FEELParser.GE))) !== 0))) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + if(!((((_la) & ~0x1f) == 0 && ((1 << _la) & ((1 << FEELParser.LT) | (1 << FEELParser.GT) | (1 << FEELParser.LE) | (1 << FEELParser.GE))) !== 0))) { + this._errHandler.recoverInline(this); } - - this.state = 136; + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 134; this.endpoint(); break; case FEELParser.PAREN_OPEN: case FEELParser.BRACKET_OPEN: case FEELParser.BRACKET_CLOSE: this.enterOuterAlt(localctx, 2); - this.state = 137; + this.state = 135; this.interval(); break; default: @@ -525,15 +508,15 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 16, FEELParser.RULE_interval); try { this.enterOuterAlt(localctx, 1); - this.state = 140; + this.state = 138; this.intervalStartPar(); - this.state = 141; + this.state = 139; this.endpoint(); - this.state = 142; + this.state = 140; this.match(FEELParser.DOT_DOT); - this.state = 143; + this.state = 141; this.endpoint(); - this.state = 144; + this.state = 142; this.intervalEndPar(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -557,7 +540,7 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 146; + this.state = 144; _la = this._input.LA(1); if(!((((_la) & ~0x1f) == 0 && ((1 << _la) & ((1 << FEELParser.PAREN_OPEN) | (1 << FEELParser.BRACKET_OPEN) | (1 << FEELParser.BRACKET_CLOSE))) !== 0))) { this._errHandler.recoverInline(this); @@ -588,7 +571,7 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 148; + this.state = 146; _la = this._input.LA(1); if(!((((_la) & ~0x1f) == 0 && ((1 << _la) & ((1 << FEELParser.PAREN_CLOSE) | (1 << FEELParser.BRACKET_OPEN) | (1 << FEELParser.BRACKET_CLOSE))) !== 0))) { this._errHandler.recoverInline(this); @@ -616,19 +599,10 @@ export default class FEELParser extends antlr4.Parser { endpoint() { let localctx = new EndpointContext(this, this._ctx, this.state); this.enterRule(localctx, 22, FEELParser.RULE_endpoint); - var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 151; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FEELParser.MINUS) { - this.state = 150; - this.match(FEELParser.MINUS); - } - - this.state = 153; - this.simpleValue(); + this.state = 148; + this.expression(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -650,7 +624,7 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 24, FEELParser.RULE_expression); try { this.enterOuterAlt(localctx, 1); - this.state = 155; + this.state = 150; this.textualExpression(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -674,17 +648,17 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 157; + this.state = 152; this.textualExpression(); - this.state = 162; + this.state = 157; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FEELParser.COMMA) { - this.state = 158; + this.state = 153; this.match(FEELParser.COMMA); - this.state = 159; + this.state = 154; this.textualExpression(); - this.state = 164; + this.state = 159; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -708,23 +682,23 @@ export default class FEELParser extends antlr4.Parser { let localctx = new TextualExpressionContext(this, this._ctx, this.state); this.enterRule(localctx, 28, FEELParser.RULE_textualExpression); try { - this.state = 169; + this.state = 164; this._errHandler.sync(this); switch(this._input.LA(1)) { case FEELParser.FOR: this.enterOuterAlt(localctx, 1); - this.state = 165; + this.state = 160; this.forExpression(); break; case FEELParser.IF: this.enterOuterAlt(localctx, 2); - this.state = 166; + this.state = 161; this.ifExpression(); break; case FEELParser.SOME: case FEELParser.EVERY: this.enterOuterAlt(localctx, 3); - this.state = 167; + this.state = 162; this.quantifiedExpression(); break; case FEELParser.STRING: @@ -748,7 +722,7 @@ export default class FEELParser extends antlr4.Parser { case FEELParser.OR: case FEELParser.NAME: this.enterOuterAlt(localctx, 4); - this.state = 168; + this.state = 163; this.disjunction(); break; default: @@ -776,51 +750,51 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 171; + this.state = 166; this.match(FEELParser.FUNCTION); - this.state = 172; + this.state = 167; this.match(FEELParser.PAREN_OPEN); - this.state = 181; + this.state = 176; this._errHandler.sync(this); _la = this._input.LA(1); - if(((((_la - 33)) & ~0x1f) == 0 && ((1 << (_la - 33)) & ((1 << (FEELParser.FUNCTION - 33)) | (1 << (FEELParser.AND - 33)) | (1 << (FEELParser.OR - 33)) | (1 << (FEELParser.NAME - 33)))) !== 0)) { - this.state = 173; + if(((((_la - 29)) & ~0x1f) == 0 && ((1 << (_la - 29)) & ((1 << (FEELParser.NOT - 29)) | (1 << (FEELParser.FUNCTION - 29)) | (1 << (FEELParser.AND - 29)) | (1 << (FEELParser.OR - 29)) | (1 << (FEELParser.NAME - 29)))) !== 0)) { + this.state = 168; this.formalParameter(); - this.state = 178; + this.state = 173; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FEELParser.COMMA) { - this.state = 174; + this.state = 169; this.match(FEELParser.COMMA); - this.state = 175; + this.state = 170; this.formalParameter(); - this.state = 180; + this.state = 175; this._errHandler.sync(this); _la = this._input.LA(1); } } - this.state = 183; + this.state = 178; this.match(FEELParser.PAREN_CLOSE); - this.state = 186; + this.state = 181; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FEELParser.COLON) { - this.state = 184; + this.state = 179; this.match(FEELParser.COLON); - this.state = 185; + this.state = 180; this.type(); } - this.state = 189; + this.state = 184; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FEELParser.EXTERNAL) { - this.state = 188; + this.state = 183; this.match(FEELParser.EXTERNAL); } - this.state = 191; + this.state = 186; this.expression(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -844,15 +818,15 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 193; + this.state = 188; this.parameterName(); - this.state = 196; + this.state = 191; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FEELParser.COLON) { - this.state = 194; + this.state = 189; this.match(FEELParser.COLON); - this.state = 195; + this.state = 190; this.type(); } @@ -878,33 +852,33 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 198; + this.state = 193; this.match(FEELParser.FOR); - this.state = 199; + this.state = 194; this.identifier(); - this.state = 200; + this.state = 195; this.match(FEELParser.IN); - this.state = 201; + this.state = 196; this.iterationDomain(); - this.state = 209; + this.state = 204; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FEELParser.COMMA) { - this.state = 202; + this.state = 197; this.match(FEELParser.COMMA); - this.state = 203; + this.state = 198; this.identifier(); - this.state = 204; + this.state = 199; this.match(FEELParser.IN); - this.state = 205; + this.state = 200; this.iterationDomain(); - this.state = 211; + this.state = 206; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 212; + this.state = 207; this.match(FEELParser.RETURN); - this.state = 213; + this.state = 208; this.expression(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -928,15 +902,15 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 215; + this.state = 210; this.expression(); - this.state = 218; + this.state = 213; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FEELParser.DOT_DOT) { - this.state = 216; + this.state = 211; this.match(FEELParser.DOT_DOT); - this.state = 217; + this.state = 212; this.expression(); } @@ -961,17 +935,17 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 38, FEELParser.RULE_ifExpression); try { this.enterOuterAlt(localctx, 1); - this.state = 220; + this.state = 215; this.match(FEELParser.IF); - this.state = 221; + this.state = 216; this.expression(); - this.state = 222; + this.state = 217; this.match(FEELParser.THEN); - this.state = 223; + this.state = 218; this.expression(); - this.state = 224; + this.state = 219; this.match(FEELParser.ELSE); - this.state = 225; + this.state = 220; this.expression(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -995,7 +969,7 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 227; + this.state = 222; _la = this._input.LA(1); if(!(_la===FEELParser.SOME || _la===FEELParser.EVERY)) { this._errHandler.recoverInline(this); @@ -1004,29 +978,29 @@ export default class FEELParser extends antlr4.Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 228; + this.state = 223; this.identifier(); - this.state = 229; + this.state = 224; this.match(FEELParser.IN); - this.state = 230; + this.state = 225; this.expression(); - this.state = 237; + this.state = 232; this._errHandler.sync(this); _la = this._input.LA(1); - while(((((_la - 33)) & ~0x1f) == 0 && ((1 << (_la - 33)) & ((1 << (FEELParser.FUNCTION - 33)) | (1 << (FEELParser.AND - 33)) | (1 << (FEELParser.OR - 33)) | (1 << (FEELParser.NAME - 33)))) !== 0)) { - this.state = 231; + while(((((_la - 29)) & ~0x1f) == 0 && ((1 << (_la - 29)) & ((1 << (FEELParser.NOT - 29)) | (1 << (FEELParser.FUNCTION - 29)) | (1 << (FEELParser.AND - 29)) | (1 << (FEELParser.OR - 29)) | (1 << (FEELParser.NAME - 29)))) !== 0)) { + this.state = 226; this.identifier(); - this.state = 232; + this.state = 227; this.match(FEELParser.IN); - this.state = 233; + this.state = 228; this.expression(); - this.state = 239; + this.state = 234; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 240; + this.state = 235; this.match(FEELParser.SATISFIES); - this.state = 241; + this.state = 236; this.expression(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1049,21 +1023,21 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 42, FEELParser.RULE_disjunction); try { this.enterOuterAlt(localctx, 1); - this.state = 243; + this.state = 238; this.conjunction(); - this.state = 248; + this.state = 243; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,15,this._ctx); + var _alt = this._interp.adaptivePredict(this._input,13,this._ctx); while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { - this.state = 244; + this.state = 239; this.match(FEELParser.OR); - this.state = 245; + this.state = 240; this.conjunction(); } - this.state = 250; + this.state = 245; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,15,this._ctx); + _alt = this._interp.adaptivePredict(this._input,13,this._ctx); } } catch (re) { @@ -1087,21 +1061,21 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 44, FEELParser.RULE_conjunction); try { this.enterOuterAlt(localctx, 1); - this.state = 251; + this.state = 246; this.comparison(); - this.state = 256; + this.state = 251; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,16,this._ctx); + var _alt = this._interp.adaptivePredict(this._input,14,this._ctx); while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { - this.state = 252; + this.state = 247; this.match(FEELParser.AND); - this.state = 253; + this.state = 248; this.comparison(); } - this.state = 258; + this.state = 253; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,16,this._ctx); + _alt = this._interp.adaptivePredict(this._input,14,this._ctx); } } catch (re) { @@ -1126,13 +1100,13 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 259; + this.state = 254; this.arithmeticExpression(); - this.state = 274; + this.state = 269; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,17,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,15,this._ctx); if(la_===1) { - this.state = 260; + this.state = 255; _la = this._input.LA(1); if(!((((_la) & ~0x1f) == 0 && ((1 << _la) & ((1 << FEELParser.EQ) | (1 << FEELParser.NE) | (1 << FEELParser.LT) | (1 << FEELParser.GT) | (1 << FEELParser.LE) | (1 << FEELParser.GE))) !== 0))) { this._errHandler.recoverInline(this); @@ -1141,33 +1115,33 @@ export default class FEELParser extends antlr4.Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 261; + this.state = 256; this.arithmeticExpression(); } else if(la_===2) { - this.state = 262; + this.state = 257; this.match(FEELParser.BETWEEN); - this.state = 263; + this.state = 258; this.expression(); - this.state = 264; + this.state = 259; this.match(FEELParser.AND); - this.state = 265; + this.state = 260; this.expression(); } else if(la_===3) { - this.state = 267; + this.state = 262; this.match(FEELParser.IN); - this.state = 268; + this.state = 263; this.positiveUnaryTest(); } else if(la_===4) { - this.state = 269; + this.state = 264; this.match(FEELParser.IN); - this.state = 270; + this.state = 265; this.match(FEELParser.PAREN_OPEN); - this.state = 271; + this.state = 266; this.positiveUnaryTests(); - this.state = 272; + this.state = 267; this.match(FEELParser.PAREN_CLOSE); } @@ -1192,7 +1166,7 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 48, FEELParser.RULE_arithmeticExpression); try { this.enterOuterAlt(localctx, 1); - this.state = 276; + this.state = 271; this.addition(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1216,14 +1190,14 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 278; + this.state = 273; this.multiplication(); - this.state = 283; + this.state = 278; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,18,this._ctx); + var _alt = this._interp.adaptivePredict(this._input,16,this._ctx); while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { - this.state = 279; + this.state = 274; _la = this._input.LA(1); if(!(_la===FEELParser.PLUS || _la===FEELParser.MINUS)) { this._errHandler.recoverInline(this); @@ -1232,12 +1206,12 @@ export default class FEELParser extends antlr4.Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 280; + this.state = 275; this.multiplication(); } - this.state = 285; + this.state = 280; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,18,this._ctx); + _alt = this._interp.adaptivePredict(this._input,16,this._ctx); } } catch (re) { @@ -1262,14 +1236,14 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 286; + this.state = 281; this.exponentiation(); - this.state = 291; + this.state = 286; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,19,this._ctx); + var _alt = this._interp.adaptivePredict(this._input,17,this._ctx); while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { - this.state = 287; + this.state = 282; _la = this._input.LA(1); if(!(_la===FEELParser.STAR || _la===FEELParser.FORWARD_SLASH)) { this._errHandler.recoverInline(this); @@ -1278,12 +1252,12 @@ export default class FEELParser extends antlr4.Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 288; + this.state = 283; this.exponentiation(); } - this.state = 293; + this.state = 288; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,19,this._ctx); + _alt = this._interp.adaptivePredict(this._input,17,this._ctx); } } catch (re) { @@ -1307,21 +1281,21 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 54, FEELParser.RULE_exponentiation); try { this.enterOuterAlt(localctx, 1); - this.state = 294; + this.state = 289; this.arithmeticNegation(); - this.state = 299; + this.state = 294; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,20,this._ctx); + var _alt = this._interp.adaptivePredict(this._input,18,this._ctx); while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { - this.state = 295; + this.state = 290; this.match(FEELParser.STAR_STAR); - this.state = 296; + this.state = 291; this.arithmeticNegation(); } - this.state = 301; + this.state = 296; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,20,this._ctx); + _alt = this._interp.adaptivePredict(this._input,18,this._ctx); } } catch (re) { @@ -1346,12 +1320,12 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 305; + this.state = 300; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,21,this._ctx); + var _alt = this._interp.adaptivePredict(this._input,19,this._ctx); while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { - this.state = 302; + this.state = 297; _la = this._input.LA(1); if(!(_la===FEELParser.MINUS || _la===FEELParser.NOT)) { this._errHandler.recoverInline(this); @@ -1361,12 +1335,12 @@ export default class FEELParser extends antlr4.Parser { this.consume(); } } - this.state = 307; + this.state = 302; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,21,this._ctx); + _alt = this._interp.adaptivePredict(this._input,19,this._ctx); } - this.state = 308; + this.state = 303; this.instanceOf(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1389,15 +1363,15 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 58, FEELParser.RULE_instanceOf); try { this.enterOuterAlt(localctx, 1); - this.state = 310; + this.state = 305; this.postfixExpression(); - this.state = 313; + this.state = 308; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,22,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,20,this._ctx); if(la_===1) { - this.state = 311; + this.state = 306; this.match(FEELParser.INSTANCE_OF); - this.state = 312; + this.state = 307; this.type(); } @@ -1422,103 +1396,103 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 60, FEELParser.RULE_type); var _la = 0; // Token type try { - this.state = 357; + this.state = 352; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,26,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,24,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 315; + this.state = 310; this.qualifiedName(); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 316; + this.state = 311; localctx.typeName = this.identifier(); - this.state = 317; - if (!( "list" == (localctx.typeName===null ? null : this._input.getText(new antlr4.Interval(localctx.typeName.start,localctx.typeName.stop))))) { - throw new antlr4.error.FailedPredicateException(this, "\"list\" == $typeName.text"); + this.state = 312; + if (!( "range" == (localctx.typeName===null ? null : this._input.getText(new antlr4.Interval(localctx.typeName.start,localctx.typeName.stop))) || "list" == (localctx.typeName===null ? null : this._input.getText(new antlr4.Interval(localctx.typeName.start,localctx.typeName.stop))))) { + throw new antlr4.error.FailedPredicateException(this, "\"range\" == $typeName.text || \"list\" == $typeName.text"); } - this.state = 318; + this.state = 313; this.match(FEELParser.LT); - this.state = 319; + this.state = 314; this.type(); - this.state = 320; + this.state = 315; this.match(FEELParser.GT); break; case 3: this.enterOuterAlt(localctx, 3); - this.state = 322; + this.state = 317; localctx.typeName = this.identifier(); - this.state = 323; + this.state = 318; if (!( "context" == (localctx.typeName===null ? null : this._input.getText(new antlr4.Interval(localctx.typeName.start,localctx.typeName.stop))))) { throw new antlr4.error.FailedPredicateException(this, "\"context\" == $typeName.text"); } - this.state = 324; + this.state = 319; this.match(FEELParser.LT); - this.state = 325; + this.state = 320; this.identifier(); - this.state = 326; + this.state = 321; this.match(FEELParser.COLON); - this.state = 327; + this.state = 322; this.type(); - this.state = 335; + this.state = 330; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FEELParser.COMMA) { - this.state = 328; + this.state = 323; this.match(FEELParser.COMMA); - this.state = 329; + this.state = 324; this.identifier(); - this.state = 330; + this.state = 325; this.match(FEELParser.COLON); - this.state = 331; + this.state = 326; this.type(); - this.state = 337; + this.state = 332; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 338; + this.state = 333; this.match(FEELParser.GT); break; case 4: this.enterOuterAlt(localctx, 4); - this.state = 340; + this.state = 335; localctx.typeName = this.identifier(); - this.state = 341; + this.state = 336; if (!( "function" == (localctx.typeName===null ? null : this._input.getText(new antlr4.Interval(localctx.typeName.start,localctx.typeName.stop))))) { throw new antlr4.error.FailedPredicateException(this, "\"function\" == $typeName.text"); } - this.state = 342; + this.state = 337; this.match(FEELParser.LT); - this.state = 351; + this.state = 346; this._errHandler.sync(this); _la = this._input.LA(1); - if(((((_la - 33)) & ~0x1f) == 0 && ((1 << (_la - 33)) & ((1 << (FEELParser.FUNCTION - 33)) | (1 << (FEELParser.AND - 33)) | (1 << (FEELParser.OR - 33)) | (1 << (FEELParser.NAME - 33)))) !== 0)) { - this.state = 343; + if(((((_la - 29)) & ~0x1f) == 0 && ((1 << (_la - 29)) & ((1 << (FEELParser.NOT - 29)) | (1 << (FEELParser.FUNCTION - 29)) | (1 << (FEELParser.AND - 29)) | (1 << (FEELParser.OR - 29)) | (1 << (FEELParser.NAME - 29)))) !== 0)) { + this.state = 338; this.type(); - this.state = 348; + this.state = 343; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FEELParser.COMMA) { - this.state = 344; + this.state = 339; this.match(FEELParser.COMMA); - this.state = 345; + this.state = 340; this.type(); - this.state = 350; + this.state = 345; this._errHandler.sync(this); _la = this._input.LA(1); } } - this.state = 353; + this.state = 348; this.match(FEELParser.GT); - this.state = 354; + this.state = 349; this.match(FEELParser.ARROW); - this.state = 355; + this.state = 350; this.type(); break; @@ -1544,41 +1518,41 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 62, FEELParser.RULE_postfixExpression); try { this.enterOuterAlt(localctx, 1); - this.state = 359; + this.state = 354; this.primaryExpression(); - this.state = 369; + this.state = 364; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,28,this._ctx); + var _alt = this._interp.adaptivePredict(this._input,26,this._ctx); while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { - this.state = 367; + this.state = 362; this._errHandler.sync(this); switch(this._input.LA(1)) { case FEELParser.BRACKET_OPEN: - this.state = 360; + this.state = 355; this.match(FEELParser.BRACKET_OPEN); - this.state = 361; + this.state = 356; this.expression(); - this.state = 362; + this.state = 357; this.match(FEELParser.BRACKET_CLOSE); break; case FEELParser.PAREN_OPEN: - this.state = 364; + this.state = 359; this.parameters(); break; case FEELParser.DOT: - this.state = 365; + this.state = 360; this.match(FEELParser.DOT); - this.state = 366; + this.state = 361; this.identifier(); break; default: throw new antlr4.error.NoViableAltException(this); } } - this.state = 371; + this.state = 366; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,28,this._ctx); + _alt = this._interp.adaptivePredict(this._input,26,this._ctx); } } catch (re) { @@ -1602,24 +1576,24 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 64, FEELParser.RULE_parameters); try { this.enterOuterAlt(localctx, 1); - this.state = 372; + this.state = 367; this.match(FEELParser.PAREN_OPEN); - this.state = 375; + this.state = 370; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,29,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,27,this._ctx); switch(la_) { case 1: - this.state = 373; + this.state = 368; this.namedParameters(); break; case 2: - this.state = 374; + this.state = 369; this.positionalParameters(); break; } - this.state = 377; + this.state = 372; this.match(FEELParser.PAREN_CLOSE); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1643,25 +1617,25 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 379; + this.state = 374; this.parameterName(); - this.state = 380; + this.state = 375; this.match(FEELParser.COLON); - this.state = 381; + this.state = 376; this.expression(); - this.state = 389; + this.state = 384; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FEELParser.COMMA) { - this.state = 382; + this.state = 377; this.match(FEELParser.COMMA); - this.state = 383; + this.state = 378; this.parameterName(); - this.state = 384; + this.state = 379; this.match(FEELParser.COLON); - this.state = 385; + this.state = 380; this.expression(); - this.state = 391; + this.state = 386; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1686,7 +1660,7 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 68, FEELParser.RULE_parameterName); try { this.enterOuterAlt(localctx, 1); - this.state = 392; + this.state = 387; this.identifier(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1710,21 +1684,21 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 402; + this.state = 397; this._errHandler.sync(this); _la = this._input.LA(1); if((((_la) & ~0x1f) == 0 && ((1 << _la) & ((1 << FEELParser.STRING) | (1 << FEELParser.NUMBER) | (1 << FEELParser.TEMPORAL) | (1 << FEELParser.LT) | (1 << FEELParser.GT) | (1 << FEELParser.LE) | (1 << FEELParser.GE) | (1 << FEELParser.MINUS) | (1 << FEELParser.PAREN_OPEN) | (1 << FEELParser.BRACKET_OPEN) | (1 << FEELParser.BRACKET_CLOSE) | (1 << FEELParser.BRACE_OPEN) | (1 << FEELParser.NOT) | (1 << FEELParser.TRUE) | (1 << FEELParser.FALSE))) !== 0) || ((((_la - 32)) & ~0x1f) == 0 && ((1 << (_la - 32)) & ((1 << (FEELParser.NULL - 32)) | (1 << (FEELParser.FUNCTION - 32)) | (1 << (FEELParser.FOR - 32)) | (1 << (FEELParser.IF - 32)) | (1 << (FEELParser.SOME - 32)) | (1 << (FEELParser.EVERY - 32)) | (1 << (FEELParser.AND - 32)) | (1 << (FEELParser.OR - 32)) | (1 << (FEELParser.NAME - 32)))) !== 0)) { - this.state = 394; + this.state = 389; this.expression(); - this.state = 399; + this.state = 394; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FEELParser.COMMA) { - this.state = 395; + this.state = 390; this.match(FEELParser.COMMA); - this.state = 396; + this.state = 391; this.expression(); - this.state = 401; + this.state = 396; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1750,41 +1724,41 @@ export default class FEELParser extends antlr4.Parser { let localctx = new PrimaryExpressionContext(this, this._ctx, this.state); this.enterRule(localctx, 72, FEELParser.RULE_primaryExpression); try { - this.state = 412; + this.state = 407; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,33,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,31,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 404; + this.state = 399; this.literal(); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 405; + this.state = 400; this.identifier(); break; case 3: this.enterOuterAlt(localctx, 3); - this.state = 406; + this.state = 401; this.match(FEELParser.PAREN_OPEN); - this.state = 407; + this.state = 402; this.expression(); - this.state = 408; + this.state = 403; this.match(FEELParser.PAREN_CLOSE); break; case 4: this.enterOuterAlt(localctx, 4); - this.state = 410; + this.state = 405; this.boxedExpression(); break; case 5: this.enterOuterAlt(localctx, 5); - this.state = 411; + this.state = 406; this.simplePositiveUnaryTest(); break; @@ -1809,19 +1783,19 @@ export default class FEELParser extends antlr4.Parser { let localctx = new SimpleValueContext(this, this._ctx, this.state); this.enterRule(localctx, 74, FEELParser.RULE_simpleValue); try { - this.state = 416; + this.state = 411; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,34,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,32,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 414; + this.state = 409; this.simpleLiteral(); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 415; + this.state = 410; this.qualifiedName(); break; @@ -1847,21 +1821,21 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 76, FEELParser.RULE_qualifiedName); try { this.enterOuterAlt(localctx, 1); - this.state = 418; + this.state = 413; this.identifier(); - this.state = 423; + this.state = 418; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,35,this._ctx); + var _alt = this._interp.adaptivePredict(this._input,33,this._ctx); while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { - this.state = 419; + this.state = 414; this.match(FEELParser.DOT); - this.state = 420; + this.state = 415; this.identifier(); } - this.state = 425; + this.state = 420; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,35,this._ctx); + _alt = this._interp.adaptivePredict(this._input,33,this._ctx); } } catch (re) { @@ -1884,12 +1858,13 @@ export default class FEELParser extends antlr4.Parser { let localctx = new LiteralContext(this, this._ctx, this.state); this.enterRule(localctx, 78, FEELParser.RULE_literal); try { - this.state = 428; + this.state = 423; this._errHandler.sync(this); switch(this._input.LA(1)) { case FEELParser.STRING: case FEELParser.NUMBER: case FEELParser.TEMPORAL: + case FEELParser.NOT: case FEELParser.TRUE: case FEELParser.FALSE: case FEELParser.FUNCTION: @@ -1897,12 +1872,12 @@ export default class FEELParser extends antlr4.Parser { case FEELParser.OR: case FEELParser.NAME: this.enterOuterAlt(localctx, 1); - this.state = 426; + this.state = 421; this.simpleLiteral(); break; case FEELParser.NULL: this.enterOuterAlt(localctx, 2); - this.state = 427; + this.state = 422; this.match(FEELParser.NULL); break; default: @@ -1928,32 +1903,33 @@ export default class FEELParser extends antlr4.Parser { let localctx = new SimpleLiteralContext(this, this._ctx, this.state); this.enterRule(localctx, 80, FEELParser.RULE_simpleLiteral); try { - this.state = 434; + this.state = 429; this._errHandler.sync(this); switch(this._input.LA(1)) { case FEELParser.NUMBER: this.enterOuterAlt(localctx, 1); - this.state = 430; + this.state = 425; this.numericLiteral(); break; case FEELParser.STRING: this.enterOuterAlt(localctx, 2); - this.state = 431; + this.state = 426; this.stringLiteral(); break; case FEELParser.TRUE: case FEELParser.FALSE: this.enterOuterAlt(localctx, 3); - this.state = 432; + this.state = 427; this.booleanLiteral(); break; case FEELParser.TEMPORAL: + case FEELParser.NOT: case FEELParser.FUNCTION: case FEELParser.AND: case FEELParser.OR: case FEELParser.NAME: this.enterOuterAlt(localctx, 4); - this.state = 433; + this.state = 428; this.dateTimeLiteral(); break; default: @@ -1980,7 +1956,7 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 82, FEELParser.RULE_stringLiteral); try { this.enterOuterAlt(localctx, 1); - this.state = 436; + this.state = 431; this.match(FEELParser.STRING); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2004,7 +1980,7 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 438; + this.state = 433; _la = this._input.LA(1); if(!(_la===FEELParser.TRUE || _la===FEELParser.FALSE)) { this._errHandler.recoverInline(this); @@ -2034,7 +2010,7 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 86, FEELParser.RULE_numericLiteral); try { this.enterOuterAlt(localctx, 1); - this.state = 440; + this.state = 435; this.match(FEELParser.NUMBER); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2056,22 +2032,22 @@ export default class FEELParser extends antlr4.Parser { let localctx = new BoxedExpressionContext(this, this._ctx, this.state); this.enterRule(localctx, 88, FEELParser.RULE_boxedExpression); try { - this.state = 445; + this.state = 440; this._errHandler.sync(this); switch(this._input.LA(1)) { case FEELParser.BRACKET_OPEN: this.enterOuterAlt(localctx, 1); - this.state = 442; + this.state = 437; this.list(); break; case FEELParser.FUNCTION: this.enterOuterAlt(localctx, 2); - this.state = 443; + this.state = 438; this.functionDefinition(); break; case FEELParser.BRACE_OPEN: this.enterOuterAlt(localctx, 3); - this.state = 444; + this.state = 439; this.context(); break; default: @@ -2099,29 +2075,29 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 447; + this.state = 442; this.match(FEELParser.BRACKET_OPEN); - this.state = 456; + this.state = 451; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,40,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,38,this._ctx); if(la_===1) { - this.state = 448; + this.state = 443; this.expression(); - this.state = 453; + this.state = 448; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FEELParser.COMMA) { - this.state = 449; + this.state = 444; this.match(FEELParser.COMMA); - this.state = 450; + this.state = 445; this.expression(); - this.state = 455; + this.state = 450; this._errHandler.sync(this); _la = this._input.LA(1); } } - this.state = 458; + this.state = 453; this.match(FEELParser.BRACKET_CLOSE); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2145,29 +2121,29 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 460; + this.state = 455; this.match(FEELParser.BRACE_OPEN); - this.state = 469; + this.state = 464; this._errHandler.sync(this); _la = this._input.LA(1); - if(_la===FEELParser.STRING || ((((_la - 33)) & ~0x1f) == 0 && ((1 << (_la - 33)) & ((1 << (FEELParser.FUNCTION - 33)) | (1 << (FEELParser.AND - 33)) | (1 << (FEELParser.OR - 33)) | (1 << (FEELParser.NAME - 33)))) !== 0)) { - this.state = 461; + if(_la===FEELParser.STRING || _la===FEELParser.NOT || ((((_la - 33)) & ~0x1f) == 0 && ((1 << (_la - 33)) & ((1 << (FEELParser.FUNCTION - 33)) | (1 << (FEELParser.AND - 33)) | (1 << (FEELParser.OR - 33)) | (1 << (FEELParser.NAME - 33)))) !== 0)) { + this.state = 456; this.contextEntry(); - this.state = 466; + this.state = 461; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FEELParser.COMMA) { - this.state = 462; + this.state = 457; this.match(FEELParser.COMMA); - this.state = 463; + this.state = 458; this.contextEntry(); - this.state = 468; + this.state = 463; this._errHandler.sync(this); _la = this._input.LA(1); } } - this.state = 471; + this.state = 466; this.match(FEELParser.BRACE_CLOSE); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2190,11 +2166,11 @@ export default class FEELParser extends antlr4.Parser { this.enterRule(localctx, 94, FEELParser.RULE_contextEntry); try { this.enterOuterAlt(localctx, 1); - this.state = 473; + this.state = 468; this.key(); - this.state = 474; + this.state = 469; this.match(FEELParser.COLON); - this.state = 475; + this.state = 470; this.expression(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2216,20 +2192,21 @@ export default class FEELParser extends antlr4.Parser { let localctx = new KeyContext(this, this._ctx, this.state); this.enterRule(localctx, 96, FEELParser.RULE_key); try { - this.state = 479; + this.state = 474; this._errHandler.sync(this); switch(this._input.LA(1)) { + case FEELParser.NOT: case FEELParser.FUNCTION: case FEELParser.AND: case FEELParser.OR: case FEELParser.NAME: this.enterOuterAlt(localctx, 1); - this.state = 477; + this.state = 472; this.identifier(); break; case FEELParser.STRING: this.enterOuterAlt(localctx, 2); - this.state = 478; + this.state = 473; this.stringLiteral(); break; default: @@ -2255,26 +2232,27 @@ export default class FEELParser extends antlr4.Parser { let localctx = new DateTimeLiteralContext(this, this._ctx, this.state); this.enterRule(localctx, 98, FEELParser.RULE_dateTimeLiteral); try { - this.state = 487; + this.state = 482; this._errHandler.sync(this); switch(this._input.LA(1)) { case FEELParser.TEMPORAL: this.enterOuterAlt(localctx, 1); - this.state = 481; + this.state = 476; this.match(FEELParser.TEMPORAL); break; + case FEELParser.NOT: case FEELParser.FUNCTION: case FEELParser.AND: case FEELParser.OR: case FEELParser.NAME: this.enterOuterAlt(localctx, 2); - this.state = 482; + this.state = 477; this.identifier(); - this.state = 483; + this.state = 478; this.match(FEELParser.PAREN_OPEN); - this.state = 484; + this.state = 479; this.expression(); - this.state = 485; + this.state = 480; this.match(FEELParser.PAREN_CLOSE); break; default: @@ -2302,9 +2280,9 @@ export default class FEELParser extends antlr4.Parser { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 489; + this.state = 484; _la = this._input.LA(1); - if(!(((((_la - 33)) & ~0x1f) == 0 && ((1 << (_la - 33)) & ((1 << (FEELParser.FUNCTION - 33)) | (1 << (FEELParser.AND - 33)) | (1 << (FEELParser.OR - 33)) | (1 << (FEELParser.NAME - 33)))) !== 0))) { + if(!(((((_la - 29)) & ~0x1f) == 0 && ((1 << (_la - 29)) & ((1 << (FEELParser.NOT - 29)) | (1 << (FEELParser.FUNCTION - 29)) | (1 << (FEELParser.AND - 29)) | (1 << (FEELParser.OR - 29)) | (1 << (FEELParser.NAME - 29)))) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -2803,12 +2781,8 @@ class EndpointContext extends antlr4.ParserRuleContext { this.ruleIndex = FEELParser.RULE_endpoint; } - simpleValue() { - return this.getTypedRuleContext(SimpleValueContext,0); - } - - MINUS() { - return this.getToken(FEELParser.MINUS, 0); + expression() { + return this.getTypedRuleContext(ExpressionContext,0); } @@ -4499,6 +4473,10 @@ class IdentifierContext extends antlr4.ParserRuleContext { return this.getToken(FEELParser.NAME, 0); } + NOT() { + return this.getToken(FEELParser.NOT, 0); + } + OR() { return this.getToken(FEELParser.OR, 0); } diff --git a/src/jdmn-js-runtime/resources/dmn/1.4/FEELLexer.g4 b/src/jdmn-js-runtime/resources/dmn/1.4/FEELLexer.g4 new file mode 100644 index 0000000..0708a56 --- /dev/null +++ b/src/jdmn-js-runtime/resources/dmn/1.4/FEELLexer.g4 @@ -0,0 +1,370 @@ +lexer grammar FEELLexer; + +@header { + function removeSingleQuotes(name) { + if (!name) { + return name; + } else { + name = name.trim(); + if (name.startsWith("'") && name.endsWith("'")) { + name = name.replace("''", "'"); + name = name.substring(1, name.length - 1); + } + return name; + } + } + + function codePointToSurrogatePair(codePoint) { + if (codePoint < 0 || codePoint > 0x10FFFF) { + return "?"; + } + + if (codePoint < 0x10000) { + return String.fromCharCode(codePoint); + } else { + codePoint -= 0x10000; + const highSurrogate = 0xD800 + (codePoint >> 10); + const lowSurrogate = 0xDC00 + (codePoint & 0x3FF); + return String.fromCharCode(highSurrogate, lowSurrogate); + } + } + + function convertUnicodeEscape(str) { + return str.replace(/\\U([0-9a-fA-F]{6})/g, function (match, grp) { + return codePointToSurrogatePair(parseInt(grp, 16)); + }); + } +} + +@lexer::members { +} + +// Tokens +BLOCK_COMMENT: + '/*' .*? '*/' -> skip + ; + +LINE_COMMENT: + '//' ~[\u000A-\u000D]* -> skip + ; + +// White spaces +WS: + WhiteSpace+ -> skip + ; + +// Literals +STRING: + // 33. string literal = """, { character – (""" | vertical space) | string escape sequence}, """ ; + '"' ( StringEscSeq | ~(["] | [\u000A-\u000D]) )* '"' + { this._text = convertUnicodeEscape(this.text); } + ; +NUMBER: + Digits ('.' Digits)? | '.' Digits + ; + +TEMPORAL: + '@' WhiteSpace* STRING + ; + +// Operators +EQ: + '=' | '==' + ; +NE: + '!=' + ; +LT: + '<' + ; +GT: + '>' + ; +LE: + '<=' + ; +GE: + '>=' + ; +PLUS: + '+' + ; +MINUS: + '-' + ; +STAR: + '*' + ; +FORWARD_SLASH: + '/' + ; +STAR_STAR: + '**' + ; + +// Punctuation +DOT_DOT: + '..' + ; +DOT: + '.' + ; +COMMA: + ',' + ; +PAREN_OPEN: + '(' + ; +PAREN_CLOSE: + ')' + ; +BRACKET_OPEN: + '[' + ; +BRACKET_CLOSE: + ']' + ; +BRACE_OPEN: + '{' + ; +BRACE_CLOSE: + '}' + ; +COLON: + ':' + ; +ARROW: + '->' + ; + +// Keywords +NOT: + 'not' + ; +TRUE: + 'true' + ; +FALSE: + 'false' + ; +NULL: + 'null' + ; +FUNCTION: + 'function' + ; +EXTERNAL: + 'external' + ; +FOR: + 'for' + ; +IN: + 'in' + ; +RETURN: + 'return' + ; +IF: + 'if' + ; +THEN: + 'then' + ; +ELSE: + 'else' + ; +SOME: + 'some' + ; +EVERY: + 'every' + ; +SATISFIES: + 'satisfies' + ; +AND: + 'and' + ; +OR: + 'or' + ; +BETWEEN: + 'between' + ; +INSTANCE_OF: + 'instance' WhiteSpace+ 'of' + { this._text = "instance of"; } + ; + +NAME: + // contructors + 'date' WhiteSpace+ 'and' WhiteSpace+ 'time' + { this._text = "date and time"; } + | + 'days' WhiteSpace+ 'and' WhiteSpace+ 'time' WhiteSpace+ 'duration' + { this._text = "days and time duration"; } + | + 'years' WhiteSpace+ 'and' WhiteSpace+ 'months' WhiteSpace+ 'duration' + { this._text = "years and months duration"; } + | + // number functions + 'round' WhiteSpace+ 'up' + { this._text = "round up"; } + | + 'round' WhiteSpace+ 'down' + { this._text = "round down"; } + | + 'round' WhiteSpace+ 'half' WhiteSpace+ 'up' + { this._text = "round half up"; } + | + 'round' WhiteSpace+ 'half' WhiteSpace+ 'down' + { this._text = "round half down"; } + | + // string functions + 'string' WhiteSpace+ 'length' + { this._text = "string length"; } + | + 'upper' WhiteSpace+ 'case' + { this._text = "upper case"; } + | + 'lower' WhiteSpace+ 'case' + { this._text = "lower case"; } + | + 'substring' WhiteSpace+ 'before' + { this._text = "substring before"; } + | + 'substring' WhiteSpace+ 'after' + { this._text = "substring after"; } + | + 'starts' WhiteSpace+ 'with' + { this._text = "starts with"; } + | + 'ends' WhiteSpace+ 'with' + { this._text = "ends with"; } + | + 'string' WhiteSpace+ 'join' + { this._text = "string join"; } + | + // list functions + 'start' WhiteSpace+ 'position' + { this._text = "start position"; } + | + 'list' WhiteSpace+ 'contains' + { this._text = "list contains"; } + | + 'insert' WhiteSpace+ 'before' + { this._text = "insert before"; } + | + 'index' WhiteSpace+ 'of' + { this._text = "index of"; } + | + 'distinct' WhiteSpace+ 'values' + { this._text = "distinct values"; } + | + // context functions + 'get' WhiteSpace+ 'entries' + { this._text = "get entries"; } + | + 'get' WhiteSpace+ 'value' + { this._text = "get value"; } + | + 'context' WhiteSpace+ 'put' + { this._text = "context put"; } + | + 'context' WhiteSpace+ 'merge' + { this._text = "context merge"; } + | + // range functions + 'met' WhiteSpace+ 'by' + { this._text = "met by"; } + | + 'overlaps' WhiteSpace+ 'before' + { this._text = "overlaps before"; } + | + 'overlaps' WhiteSpace+ 'after' + { this._text = "overlaps after"; } + | + 'finished' WhiteSpace+ 'by' + { this._text = "finished by"; } + | + 'started' WhiteSpace+ 'by' + { this._text = "started by"; } + | + 'start' WhiteSpace+ 'included' + { this._text = "start included"; } + | + 'end' WhiteSpace+ 'included' + { this._text = "end included"; } + | + // date time properties + 'day' WhiteSpace+ 'of' WhiteSpace+ 'year' + { this._text = "day of year"; } + | + 'day' WhiteSpace+ 'of' WhiteSpace+ 'week' + { this._text = "day of week"; } + | + 'month' WhiteSpace+ 'of' WhiteSpace+ 'year' + { this._text = "month of year"; } + | + 'week' WhiteSpace+ 'of' WhiteSpace+ 'year' + { this._text = "week of year"; } + | + 'time' WhiteSpace+ 'offset' + { this._text = "time offset"; } + | + NameStartChar ( NamePartChar )* + | + '\'' ( ~(['] | [\u000A-\u000D]) | '\'\'')* '\'' + { this._text = removeSingleQuotes(this.text); } + ; + +fragment StringEscSeq: + // 64. string escape sequence = "\'" | "\"" | "\\" | "\n" | "\r" | "\t" | code point; + Esc + ( + [btnfr"'\\] // The standard escaped character set such as tab, newline, etc. + | CodePoint // A Unicode escape sequence + | . // Invalid escape character + | EOF // Incomplete at EOF + ) + ; + +fragment Esc : '\\' ; + +fragment CodePoint: + 'u' HexDigit HexDigit HexDigit HexDigit + | + 'U' HexDigit HexDigit HexDigit HexDigit HexDigit HexDigit + ; + +fragment NameStartChar: + '?' | [A-Z] | '_' | [a-z] | [\u00C0-\u00D6] | [\u00D8-\u00F6] | [\u00F8-\u02FF] | [\u0370-\u037D] | [\u037F-\u1FFF] + | [\u200C-\u200D] | [\u2070-\u218F] | [\u2C00-\u2FEF] | [\u3001-\uD7FF] | [\uF900-\uFDCF] | [\uFDF0-\uFFFD] + | [\u{10000}-\u{EFFFF}] + ; + +fragment NamePartChar: + NameStartChar | Digit | '\u00B7' | [\u0300-\u036F] | [\u203F-\u2040] + ; + +fragment Digit: + [0-9] + ; + +fragment HexDigit: + [0-9a-fA-F] + ; + +fragment Digits: + Digit (Digit)* + ; + +fragment WhiteSpace: + VerticalSpace | '\u0009' | '\u0020' | '\u0085' | '\u00A0' | '\u1680' | '\u180E' | + [\u2000-\u200B] | '\u2028' | '\u2029' | '\u202F' | '\u205F' | '\u3000' | '\uFEFF' + ; + +fragment VerticalSpace: + [\u000A-\u000D] + ; diff --git a/src/jdmn-js-runtime/resources/dmn/1.4/FEELParser.g4 b/src/jdmn-js-runtime/resources/dmn/1.4/FEELParser.g4 new file mode 100644 index 0000000..f2cbf9f --- /dev/null +++ b/src/jdmn-js-runtime/resources/dmn/1.4/FEELParser.g4 @@ -0,0 +1,387 @@ +parser grammar FEELParser; + +options { tokenVocab=FEELLexer; } + +@header { +} + +@parser::members { +} + +// Start rules +unaryTestsRoot : + unaryTests + EOF +; + +expressionRoot : + expression + EOF +; + +textualExpressionsRoot : + textualExpressions + EOF +; + +boxedExpressionRoot : + boxedExpression + EOF +; + +// Tests +unaryTests : + NOT PAREN_OPEN positiveUnaryTests PAREN_CLOSE + | + positiveUnaryTests + | + MINUS +; + +positiveUnaryTests : + positiveUnaryTest + ( + COMMA + positiveUnaryTest + )* +; + +positiveUnaryTest : + expression +; + +simplePositiveUnaryTest : + ( LT | LE | GT | GE ) endpoint + | + interval +; + +interval : + intervalStartPar endpoint DOT_DOT endpoint intervalEndPar +; + +intervalStartPar : + PAREN_OPEN + | + BRACKET_CLOSE + | + BRACKET_OPEN +; + +intervalEndPar : + PAREN_CLOSE + | + BRACKET_OPEN + | + BRACKET_CLOSE +; + +endpoint : + expression +; + +// +// Expression +// +expression : + textualExpression +; + +textualExpressions : + textualExpression + ( + COMMA textualExpression + )* +; + +textualExpression : + forExpression + | + ifExpression + | + quantifiedExpression + | + disjunction +; + +functionDefinition : + FUNCTION PAREN_OPEN + ( + formalParameter + ( + COMMA formalParameter + )* + )? + PAREN_CLOSE ( COLON type )? EXTERNAL? + expression +; + +formalParameter : + parameterName (COLON type)? +; + +forExpression : + FOR identifier IN iterationDomain + ( + COMMA identifier IN iterationDomain + )* + RETURN expression +; + +iterationDomain : + expression (DOT_DOT expression)? +; + +ifExpression : + IF expression THEN + expression ELSE expression +; + +quantifiedExpression : + ( SOME | EVERY ) identifier IN expression + ( + identifier IN expression + )* + SATISFIES expression +; + +disjunction : + conjunction + ( + OR conjunction + )* +; + +conjunction : + comparison + ( + AND comparison + )* +; + +comparison : + arithmeticExpression + ( + (EQ | NE | LT | GT | LE | GE) arithmeticExpression + | + BETWEEN expression AND expression + | + IN positiveUnaryTest + | + IN PAREN_OPEN positiveUnaryTests PAREN_CLOSE + )? +; + +arithmeticExpression : + addition +; + +addition : + multiplication + ( + (PLUS | MINUS) multiplication + )* +; + +multiplication : + exponentiation + ( + (STAR | FORWARD_SLASH) exponentiation + )* +; + +exponentiation : + arithmeticNegation + ( + STAR_STAR arithmeticNegation + )* +; + +// Extended to support boolean negation +arithmeticNegation : + ( + MINUS + | + NOT + )* + instanceOf +; + +instanceOf : + postfixExpression + ( + INSTANCE_OF + type + )? +; + +type : + qualifiedName + | + typeName = identifier {"range" == $typeName.text || "list" == $typeName.text}? LT type GT + | + typeName = identifier {"context" == $typeName.text}? LT + identifier COLON type + ( COMMA identifier COLON type )* + GT + | + typeName = identifier {"function" == $typeName.text}? LT + ( + type + ( COMMA type )* + )? + GT ARROW type + ; + +postfixExpression : + primaryExpression + ( + BRACKET_OPEN expression BRACKET_CLOSE + | + parameters + | + DOT identifier + )* +; + +parameters : + PAREN_OPEN + ( + namedParameters + | + positionalParameters + ) + PAREN_CLOSE +; + +namedParameters : + parameterName COLON expression + ( + COMMA parameterName COLON expression + )* +; + +parameterName : + identifier +; + +positionalParameters : + ( + expression + ( + COMMA expression + )* + )? +; + +primaryExpression : + literal + | + identifier + | + PAREN_OPEN expression PAREN_CLOSE + | + boxedExpression + | + simplePositiveUnaryTest +; + +simpleValue : + simpleLiteral + | + qualifiedName +; + +qualifiedName : + identifier + ( + DOT identifier + )* +; + +literal : + simpleLiteral + | + NULL +; + +simpleLiteral : + numericLiteral + | + stringLiteral + | + booleanLiteral + | + dateTimeLiteral +; + +stringLiteral : + STRING +; + +booleanLiteral : + TRUE | FALSE +; + +numericLiteral : + NUMBER +; + +boxedExpression : + list + | + functionDefinition + | + context +; + +list : + BRACKET_OPEN + ( + expression + ( + COMMA expression + )* + )? + BRACKET_CLOSE +; + +context : + BRACE_OPEN + ( + contextEntry + ( + COMMA contextEntry + )* + )? + BRACE_CLOSE +; + +contextEntry : + key COLON expression +; + +key : + identifier + | + stringLiteral +; + +dateTimeLiteral : + TEMPORAL + | + identifier + PAREN_OPEN expression PAREN_CLOSE +; + +identifier : + NAME + | + NOT + | + OR + | + AND + | + FUNCTION +; \ No newline at end of file