diff --git a/.editorconfig b/.editorconfig index 65330c4..230a502 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,6 +2,8 @@ root = true [*] charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true [*.{json,toml,yml,gyp}] indent_style = space diff --git a/grammar.js b/grammar.js index e4ea295..9bfae62 100644 --- a/grammar.js +++ b/grammar.js @@ -41,40 +41,57 @@ module.exports = grammar({ seq("/-", /([^-]|-+[^/])-/, "/"), ), ), - _arr: ($) => choice("->", "→"), + _arr: _ => choice("->", "→"), number: $ => /\d+/, lamExpr: $ => seq( choice("\\", "λ"), repeat1($.identifier), "=>", - $.typeExpr + $._typeExpr ), // hole, parenTypeExpression, record update - _atom: $ => choice($.identifier, $.string, $.character, $.number, $.recUpdate, seq("(", $.typeExpr, ")")), - _parg: $ => choice(seq("{{", $.typeExpr, "}}"), seq("{", $.typeExpr, "}"), $._atom), + _atom: $ => choice($.identifier, $.string, $.character, $.number, $.recUpdate, seq("(", $._typeExpr, ")")), + _parg: $ => choice(seq("{{", $._typeExpr, "}}"), seq("{", $._typeExpr, "}"), $._atom), recUpdate: $ => seq("[", sep(";", seq($.identifier, choice(":=", "$="), $.term)), "]"), _appExpr: $ => (seq($._atom, repeat($._parg))), qname: ($) => sep1(".", $.identifier), - string: $ => /"[^"]*"/, - character: $ => /'(\\)?.'/, - doCaseLet: $ => seq("let", "(", $.term, ")", "=", $.typeExpr, repeat($.orAlt)), + string: _ => /"[^"]*"/, + character: _ => /'(\\)?.'/, + doLet: $ => seq("let", $.identifier, "=", $._typeExpr), + doCaseLet: $ => seq("let", "(", $.term, ")", "=", $._typeExpr, repeat($.orAlt)), caseAlt: $ => seq($.term, "=>", $.term), orAlt: $ => seq("|", $.caseAlt), // layout was causing trouble here. I kinda wanted to ditch it, but there // could be a shift/reduce thing in the real parser - _doArrow: $ => seq("<-", $.typeExpr, repeat($.orAlt)), + _doArrow: $ => seq("<-", $._typeExpr, repeat($.orAlt)), doArrow: $ => seq($.term, optional($._doArrow)), - doLet: $ => seq("let", $.identifier, "=", $.term), _doExpr: $ => choice( $.doCaseLet, $.doLet, $.doArrow), doBlock: $ => seq("do", layout($, $._doExpr)), ifThen: ($) => seq("if", $.term, "then", $.term, "else", $.term), + caseExpr: $ => seq( + "case", + $._typeExpr, + "of", + layout($,$.caseAlt) + ), + caseLet: $ => seq( + // what do we do with "in" - it makes an end without a start... + "let", "(", $._typeExpr,")","=",repeat($.orAlt),"in" + ), + letAssign: $ => seq($.identifier, "=", $._typeExpr), + letStmt: $ => seq( + "let", + layout($,$.letAssign), + "in", + $._typeExpr), _term2: ($) => choice( - // caseExpr - // caseLet + $.caseExpr, + $.caseLet, + $.letStmt, // caseLamExpr $.lamExpr, $.doBlock, @@ -91,14 +108,14 @@ module.exports = grammar({ binder: ($) => choice( // repeat($.identifier) has a conflict - seq("(", alias(optional("0"), "quantity"), $.identifier, ":", $.typeExpr, ")"), - seq("{{", $.typeExpr, "}}"), - seq("{", alias(optional("0"), "quantity"), repeat1($.identifier), ":", $.typeExpr, "}"), + seq("(", alias(optional("0"), "quantity"), $.identifier, ":", $._typeExpr, ")"), + seq("{{", $._typeExpr, "}}"), + seq("{", alias(optional("0"), "quantity"), repeat1($.identifier), ":", $._typeExpr, "}"), ), - forall: ($) => seq("∀", repeat1($.identifier), ".", $.typeExpr), - binders: ($) => seq(choice(repeat1($.binder)), $._arr, $.typeExpr), - typeExpr: ($) => prec.right(choice($.forall, $.binders, seq($.term, optional(seq($._arr, $.typeExpr))))), + forall: ($) => seq(choice("∀", "forall"), repeat1($.identifier), ".", $._typeExpr), + binders: ($) => seq(choice(repeat1($.binder)), $._arr, $._typeExpr), + _typeExpr: ($) => prec.right(choice($.forall, $.binders, seq($.term, optional(seq($._arr, $._typeExpr))))), // pitype: ($) => // seq( @@ -106,9 +123,9 @@ module.exports = grammar({ // repeat(seq(repeat1(choice($.identifier, $.binder)), $._arr)), // $.identifier, // ), - sigDecl: ($) => seq($.identifier, ":", $.typeExpr), + sigDecl: ($) => seq($.identifier, ":", $._typeExpr), whereClause: $ => seq("where", layout($, choice($.sigDecl, $.defDecl))), - defDecl: ($) => seq(alias($._appExpr, $.lhs), "=", $.typeExpr, optional($.whereClause)), + defDecl: ($) => seq(alias($._appExpr, $.lhs), "=", $._typeExpr, optional($.whereClause)), shortDataDecl: $ => seq( "data", alias($.identifier, "typeName"), @@ -121,7 +138,7 @@ module.exports = grammar({ "data", alias($.identifier, "typeName"), ":", - $.typeExpr, + $._typeExpr, // the layout here can be empty (so no start tag) // optional doesn't seem to help, so we have an error at void optional(seq("where", optional(layout($, $.sigDecl)))), @@ -133,14 +150,14 @@ module.exports = grammar({ alias($.identifier, "name"), optional(seq("uses", "(", repeat1($.identifier), ")")), ":", - $.typeExpr, + $._typeExpr, ":=", $.jsLitString ), ptypeDecl: $ => seq( "ptype", alias($.identifier, $.name), - optional(seq(":", $.typeExpr)) + optional(seq(":", $._typeExpr)) ), importDef: ($) => seq("import", $.qname), mixfixDecl: $ => seq( @@ -165,7 +182,7 @@ module.exports = grammar({ ), instanceDecl: $ => seq( "instance", - $.typeExpr, + $._typeExpr, "where", layout($, choice($.sigDecl, $.defDecl)) ), diff --git a/queries/highlights.scm b/queries/highlights.scm index b00671d..34a1ef7 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -1,19 +1,19 @@ [ - "let" - ; "in" - "where" - ; "case" "of" - "data" + "let" + ; "in" + "where" + "case" "of" + "data" ;"U" - "do" - "ptype" "pfunc" - "module" - ; "infixl" "infixr" "infix" - "∀" ; "forall" - "import" - "uses" "derive" + "do" + "ptype" "pfunc" + "module" + ; "infixl" "infixr" "infix" + "∀" "forall" + "import" + "uses" "derive" "class" "instance" "record" "constructor" - "if" "then" "else" + "if" "then" "else" "|" "<-" "=>" "$" ":" ] @keyword (comment) @comment diff --git a/queries/injections.scm b/queries/injections.scm new file mode 100644 index 0000000..8728e55 --- /dev/null +++ b/queries/injections.scm @@ -0,0 +1,3 @@ + +(jsLitString (jsStringFragment) @injection.content + (#set! injection.language "javascript")) diff --git a/src/grammar.json b/src/grammar.json index 954e050..13eadfd 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -91,7 +91,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" } ] }, @@ -127,7 +127,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" }, { "type": "STRING", @@ -149,7 +149,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" }, { "type": "STRING", @@ -166,7 +166,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" }, { "type": "STRING", @@ -319,6 +319,27 @@ "type": "PATTERN", "value": "'(\\\\)?.'" }, + "doLet": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_typeExpr" + } + ] + }, "doCaseLet": { "type": "SEQ", "members": [ @@ -344,7 +365,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" }, { "type": "REPEAT", @@ -394,7 +415,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" }, { "type": "REPEAT", @@ -426,27 +447,6 @@ } ] }, - "doLet": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "term" - } - ] - }, "_doExpr": { "type": "CHOICE", "members": [ @@ -531,9 +531,166 @@ } ] }, + "caseExpr": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "case" + }, + { + "type": "SYMBOL", + "name": "_typeExpr" + }, + { + "type": "STRING", + "value": "of" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "start" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "semi" + }, + { + "type": "SYMBOL", + "name": "caseAlt" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "end" + } + ] + } + ] + }, + "caseLet": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_typeExpr" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "orAlt" + } + }, + { + "type": "STRING", + "value": "in" + } + ] + }, + "letAssign": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_typeExpr" + } + ] + }, + "letStmt": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "start" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "semi" + }, + { + "type": "SYMBOL", + "name": "letAssign" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "end" + } + ] + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "SYMBOL", + "name": "_typeExpr" + } + ] + }, "_term2": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "caseExpr" + }, + { + "type": "SYMBOL", + "name": "caseLet" + }, + { + "type": "SYMBOL", + "name": "letStmt" + }, { "type": "SYMBOL", "name": "lamExpr" @@ -627,7 +784,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" }, { "type": "STRING", @@ -644,7 +801,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" }, { "type": "STRING", @@ -689,7 +846,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" }, { "type": "STRING", @@ -703,8 +860,17 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "∀" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "∀" + }, + { + "type": "STRING", + "value": "forall" + } + ] }, { "type": "REPEAT1", @@ -719,7 +885,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" } ] }, @@ -744,11 +910,11 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" } ] }, - "typeExpr": { + "_typeExpr": { "type": "PREC_RIGHT", "value": 0, "content": { @@ -781,7 +947,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" } ] }, @@ -808,7 +974,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" } ] }, @@ -877,7 +1043,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" }, { "type": "CHOICE", @@ -1003,7 +1169,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" }, { "type": "CHOICE", @@ -1153,7 +1319,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" }, { "type": "STRING", @@ -1193,7 +1359,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" } ] }, @@ -1427,7 +1593,7 @@ }, { "type": "SYMBOL", - "name": "typeExpr" + "name": "_typeExpr" }, { "type": "STRING", diff --git a/src/node-types.json b/src/node-types.json index 320615c..e14ddb2 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -7,12 +7,20 @@ "multiple": true, "required": true, "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "forall", + "named": true + }, { "type": "identifier", "named": true }, { - "type": "typeExpr", + "type": "term", "named": true } ] @@ -31,7 +39,15 @@ "named": true }, { - "type": "typeExpr", + "type": "binders", + "named": true + }, + { + "type": "forall", + "named": true + }, + { + "type": "term", "named": true } ] @@ -52,6 +68,72 @@ ] } }, + { + "type": "caseExpr", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "caseAlt", + "named": true + }, + { + "type": "end", + "named": true + }, + { + "type": "forall", + "named": true + }, + { + "type": "semi", + "named": true + }, + { + "type": "start", + "named": true + }, + { + "type": "term", + "named": true + } + ] + } + }, + { + "type": "caseLet", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "forall", + "named": true + }, + { + "type": "orAlt", + "named": true + }, + { + "type": "term", + "named": true + } + ] + } + }, { "type": "classDecl", "named": true, @@ -99,10 +181,18 @@ "multiple": true, "required": true, "types": [ + { + "type": "binders", + "named": true + }, { "type": "end", "named": true }, + { + "type": "forall", + "named": true + }, { "type": "semi", "named": true @@ -116,7 +206,7 @@ "named": true }, { - "type": "typeExpr", + "type": "term", "named": true } ] @@ -130,12 +220,20 @@ "multiple": true, "required": true, "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "forall", + "named": true + }, { "type": "lhs", "named": true }, { - "type": "typeExpr", + "type": "term", "named": true }, { @@ -168,6 +266,14 @@ "multiple": true, "required": true, "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "forall", + "named": true + }, { "type": "orAlt", "named": true @@ -175,10 +281,6 @@ { "type": "term", "named": true - }, - { - "type": "typeExpr", - "named": true } ] } @@ -226,6 +328,14 @@ "multiple": true, "required": true, "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "forall", + "named": true + }, { "type": "orAlt", "named": true @@ -233,10 +343,6 @@ { "type": "term", "named": true - }, - { - "type": "typeExpr", - "named": true } ] } @@ -249,6 +355,14 @@ "multiple": true, "required": true, "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "forall", + "named": true + }, { "type": "identifier", "named": true @@ -283,12 +397,20 @@ "multiple": true, "required": true, "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "forall", + "named": true + }, { "type": "identifier", "named": true }, { - "type": "typeExpr", + "type": "term", "named": true } ] @@ -332,6 +454,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "binders", + "named": true + }, { "type": "defDecl", "named": true @@ -340,6 +466,10 @@ "type": "end", "named": true }, + { + "type": "forall", + "named": true + }, { "type": "semi", "named": true @@ -353,7 +483,7 @@ "named": true }, { - "type": "typeExpr", + "type": "term", "named": true } ] @@ -382,12 +512,86 @@ "multiple": true, "required": true, "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "forall", + "named": true + }, { "type": "identifier", "named": true }, { - "type": "typeExpr", + "type": "term", + "named": true + } + ] + } + }, + { + "type": "letAssign", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "forall", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "term", + "named": true + } + ] + } + }, + { + "type": "letStmt", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "end", + "named": true + }, + { + "type": "forall", + "named": true + }, + { + "type": "letAssign", + "named": true + }, + { + "type": "semi", + "named": true + }, + { + "type": "start", + "named": true + }, + { + "type": "term", "named": true } ] @@ -401,10 +605,18 @@ "multiple": true, "required": true, "types": [ + { + "type": "binders", + "named": true + }, { "type": "character", "named": true }, + { + "type": "forall", + "named": true + }, { "type": "identifier", "named": true @@ -422,7 +634,7 @@ "named": true }, { - "type": "typeExpr", + "type": "term", "named": true } ] @@ -537,6 +749,14 @@ "multiple": true, "required": true, "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "forall", + "named": true + }, { "type": "identifier", "named": true @@ -546,7 +766,7 @@ "named": true }, { - "type": "typeExpr", + "type": "term", "named": true } ] @@ -560,12 +780,20 @@ "multiple": true, "required": true, "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "forall", + "named": true + }, { "type": "name", "named": true }, { - "type": "typeExpr", + "type": "term", "named": true } ] @@ -652,10 +880,18 @@ "multiple": true, "required": false, "types": [ + { + "type": "binders", + "named": true + }, { "type": "character", "named": true }, + { + "type": "forall", + "named": true + }, { "type": "identifier", "named": true @@ -673,7 +909,7 @@ "named": true }, { - "type": "typeExpr", + "type": "term", "named": true } ] @@ -687,12 +923,20 @@ "multiple": true, "required": true, "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "forall", + "named": true + }, { "type": "identifier", "named": true }, { - "type": "typeExpr", + "type": "term", "named": true } ] @@ -722,6 +966,18 @@ "multiple": true, "required": true, "types": [ + { + "type": "binders", + "named": true + }, + { + "type": "caseExpr", + "named": true + }, + { + "type": "caseLet", + "named": true + }, { "type": "character", "named": true @@ -734,6 +990,10 @@ "type": "dollar", "named": true }, + { + "type": "forall", + "named": true + }, { "type": "identifier", "named": true @@ -746,6 +1006,10 @@ "type": "lamExpr", "named": true }, + { + "type": "letStmt", + "named": true + }, { "type": "number", "named": true @@ -758,36 +1022,9 @@ "type": "string", "named": true }, - { - "type": "typeExpr", - "named": true - } - ] - } - }, - { - "type": "typeExpr", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "binders", - "named": true - }, - { - "type": "forall", - "named": true - }, { "type": "term", "named": true - }, - { - "type": "typeExpr", - "named": true } ] } @@ -887,6 +1124,10 @@ "type": "`", "named": false }, + { + "type": "case", + "named": false + }, { "type": "character", "named": true @@ -932,6 +1173,10 @@ "type": "end", "named": true }, + { + "type": "forall", + "named": false + }, { "type": "identifier", "named": true @@ -944,6 +1189,10 @@ "type": "import", "named": false }, + { + "type": "in", + "named": false + }, { "type": "infixl", "named": false @@ -980,6 +1229,10 @@ "type": "number", "named": true }, + { + "type": "of", + "named": false + }, { "type": "pfunc", "named": false diff --git a/src/parser.c b/src/parser.c index 186e9ee..da0d334 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,11 +7,11 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 945 +#define STATE_COUNT 1227 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 111 +#define SYMBOL_COUNT 121 #define ALIAS_COUNT 7 -#define TOKEN_COUNT 55 +#define TOKEN_COUNT 59 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -50,93 +50,103 @@ enum ts_symbol_identifiers { anon_sym_if = 28, anon_sym_then = 29, anon_sym_else = 30, - anon_sym_DOLLAR = 31, - anon_sym_0 = 32, - anon_sym_COLON = 33, - anon_sym_u2200 = 34, - anon_sym_where = 35, - anon_sym_data = 36, - anon_sym_BQUOTE = 37, - aux_sym_jsLitString_token1 = 38, - anon_sym_derive = 39, - anon_sym_pfunc = 40, - anon_sym_uses = 41, - anon_sym_ptype = 42, - anon_sym_import = 43, - anon_sym_infixr = 44, - anon_sym_infixl = 45, - anon_sym_record = 46, - anon_sym_constructor = 47, - anon_sym_class = 48, - anon_sym_instance = 49, - anon_sym_module = 50, - sym_start = 51, - sym_semi = 52, - sym_end = 53, - sym__ws = 54, - sym_source_file = 55, - sym__arr = 56, - sym_lamExpr = 57, - sym__atom = 58, - sym__parg = 59, - sym_recUpdate = 60, - sym__appExpr = 61, - sym_qname = 62, - sym_doCaseLet = 63, - sym_caseAlt = 64, - sym_orAlt = 65, - sym__doArrow = 66, - sym_doArrow = 67, - sym_doLet = 68, - sym__doExpr = 69, - sym_doBlock = 70, - sym_ifThen = 71, - sym__term2 = 72, - sym_dollar = 73, - sym_term = 74, - sym_binder = 75, - sym_forall = 76, - sym_binders = 77, - sym_typeExpr = 78, - sym_sigDecl = 79, - sym_whereClause = 80, - sym_defDecl = 81, - sym_shortDataDecl = 82, - sym_dataDecl = 83, - sym_jsLitString = 84, - sym_deriveDecl = 85, - sym_pfuncDecl = 86, - sym_ptypeDecl = 87, - sym_importDef = 88, - sym_mixfixDecl = 89, - sym__telescope = 90, - sym_recordDecl = 91, - sym_classDecl = 92, - sym_instanceDecl = 93, - sym__decl = 94, - sym_module = 95, - aux_sym_lamExpr_repeat1 = 96, - aux_sym_recUpdate_repeat1 = 97, - aux_sym__appExpr_repeat1 = 98, - aux_sym_qname_repeat1 = 99, - aux_sym_doCaseLet_repeat1 = 100, - aux_sym_doBlock_repeat1 = 101, - aux_sym_binders_repeat1 = 102, - aux_sym_whereClause_repeat1 = 103, - aux_sym_shortDataDecl_repeat1 = 104, - aux_sym_shortDataDecl_repeat2 = 105, - aux_sym_dataDecl_repeat1 = 106, - aux_sym_mixfixDecl_repeat1 = 107, - aux_sym_recordDecl_repeat1 = 108, - aux_sym_module_repeat1 = 109, - aux_sym_module_repeat2 = 110, - alias_sym_className = 111, - anon_alias_sym_conName = 112, - alias_sym_lhs = 113, - anon_alias_sym_name = 114, - alias_sym_name = 115, - alias_sym_recordName = 116, - anon_alias_sym_typeName = 117, + anon_sym_case = 31, + anon_sym_of = 32, + anon_sym_in = 33, + anon_sym_DOLLAR = 34, + anon_sym_0 = 35, + anon_sym_COLON = 36, + anon_sym_u2200 = 37, + anon_sym_forall = 38, + anon_sym_where = 39, + anon_sym_data = 40, + anon_sym_BQUOTE = 41, + aux_sym_jsLitString_token1 = 42, + anon_sym_derive = 43, + anon_sym_pfunc = 44, + anon_sym_uses = 45, + anon_sym_ptype = 46, + anon_sym_import = 47, + anon_sym_infixr = 48, + anon_sym_infixl = 49, + anon_sym_record = 50, + anon_sym_constructor = 51, + anon_sym_class = 52, + anon_sym_instance = 53, + anon_sym_module = 54, + sym_start = 55, + sym_semi = 56, + sym_end = 57, + sym__ws = 58, + sym_source_file = 59, + sym__arr = 60, + sym_lamExpr = 61, + sym__atom = 62, + sym__parg = 63, + sym_recUpdate = 64, + sym__appExpr = 65, + sym_qname = 66, + sym_doLet = 67, + sym_doCaseLet = 68, + sym_caseAlt = 69, + sym_orAlt = 70, + sym__doArrow = 71, + sym_doArrow = 72, + sym__doExpr = 73, + sym_doBlock = 74, + sym_ifThen = 75, + sym_caseExpr = 76, + sym_caseLet = 77, + sym_letAssign = 78, + sym_letStmt = 79, + sym__term2 = 80, + sym_dollar = 81, + sym_term = 82, + sym_binder = 83, + sym_forall = 84, + sym_binders = 85, + sym__typeExpr = 86, + sym_sigDecl = 87, + sym_whereClause = 88, + sym_defDecl = 89, + sym_shortDataDecl = 90, + sym_dataDecl = 91, + sym_jsLitString = 92, + sym_deriveDecl = 93, + sym_pfuncDecl = 94, + sym_ptypeDecl = 95, + sym_importDef = 96, + sym_mixfixDecl = 97, + sym__telescope = 98, + sym_recordDecl = 99, + sym_classDecl = 100, + sym_instanceDecl = 101, + sym__decl = 102, + sym_module = 103, + aux_sym_lamExpr_repeat1 = 104, + aux_sym_recUpdate_repeat1 = 105, + aux_sym__appExpr_repeat1 = 106, + aux_sym_qname_repeat1 = 107, + aux_sym_doCaseLet_repeat1 = 108, + aux_sym_doBlock_repeat1 = 109, + aux_sym_caseExpr_repeat1 = 110, + aux_sym_letStmt_repeat1 = 111, + aux_sym_binders_repeat1 = 112, + aux_sym_whereClause_repeat1 = 113, + aux_sym_shortDataDecl_repeat1 = 114, + aux_sym_shortDataDecl_repeat2 = 115, + aux_sym_dataDecl_repeat1 = 116, + aux_sym_mixfixDecl_repeat1 = 117, + aux_sym_recordDecl_repeat1 = 118, + aux_sym_module_repeat1 = 119, + aux_sym_module_repeat2 = 120, + alias_sym_className = 121, + anon_alias_sym_conName = 122, + alias_sym_lhs = 123, + anon_alias_sym_name = 124, + alias_sym_name = 125, + alias_sym_recordName = 126, + anon_alias_sym_typeName = 127, }; static const char * const ts_symbol_names[] = { @@ -171,10 +181,14 @@ static const char * const ts_symbol_names[] = { [anon_sym_if] = "if", [anon_sym_then] = "then", [anon_sym_else] = "else", + [anon_sym_case] = "case", + [anon_sym_of] = "of", + [anon_sym_in] = "in", [anon_sym_DOLLAR] = "$", [anon_sym_0] = "quantity", [anon_sym_COLON] = ":", [anon_sym_u2200] = "\u2200", + [anon_sym_forall] = "forall", [anon_sym_where] = "where", [anon_sym_data] = "data", [anon_sym_BQUOTE] = "`", @@ -203,22 +217,26 @@ static const char * const ts_symbol_names[] = { [sym_recUpdate] = "recUpdate", [sym__appExpr] = "_appExpr", [sym_qname] = "qname", + [sym_doLet] = "doLet", [sym_doCaseLet] = "doCaseLet", [sym_caseAlt] = "caseAlt", [sym_orAlt] = "orAlt", [sym__doArrow] = "_doArrow", [sym_doArrow] = "doArrow", - [sym_doLet] = "doLet", [sym__doExpr] = "_doExpr", [sym_doBlock] = "doBlock", [sym_ifThen] = "ifThen", + [sym_caseExpr] = "caseExpr", + [sym_caseLet] = "caseLet", + [sym_letAssign] = "letAssign", + [sym_letStmt] = "letStmt", [sym__term2] = "_term2", [sym_dollar] = "dollar", [sym_term] = "term", [sym_binder] = "binder", [sym_forall] = "forall", [sym_binders] = "binders", - [sym_typeExpr] = "typeExpr", + [sym__typeExpr] = "_typeExpr", [sym_sigDecl] = "sigDecl", [sym_whereClause] = "whereClause", [sym_defDecl] = "defDecl", @@ -242,6 +260,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_qname_repeat1] = "qname_repeat1", [aux_sym_doCaseLet_repeat1] = "doCaseLet_repeat1", [aux_sym_doBlock_repeat1] = "doBlock_repeat1", + [aux_sym_caseExpr_repeat1] = "caseExpr_repeat1", + [aux_sym_letStmt_repeat1] = "letStmt_repeat1", [aux_sym_binders_repeat1] = "binders_repeat1", [aux_sym_whereClause_repeat1] = "whereClause_repeat1", [aux_sym_shortDataDecl_repeat1] = "shortDataDecl_repeat1", @@ -292,10 +312,14 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_if] = anon_sym_if, [anon_sym_then] = anon_sym_then, [anon_sym_else] = anon_sym_else, + [anon_sym_case] = anon_sym_case, + [anon_sym_of] = anon_sym_of, + [anon_sym_in] = anon_sym_in, [anon_sym_DOLLAR] = anon_sym_DOLLAR, [anon_sym_0] = anon_sym_0, [anon_sym_COLON] = anon_sym_COLON, [anon_sym_u2200] = anon_sym_u2200, + [anon_sym_forall] = anon_sym_forall, [anon_sym_where] = anon_sym_where, [anon_sym_data] = anon_sym_data, [anon_sym_BQUOTE] = anon_sym_BQUOTE, @@ -324,22 +348,26 @@ static const TSSymbol ts_symbol_map[] = { [sym_recUpdate] = sym_recUpdate, [sym__appExpr] = sym__appExpr, [sym_qname] = sym_qname, + [sym_doLet] = sym_doLet, [sym_doCaseLet] = sym_doCaseLet, [sym_caseAlt] = sym_caseAlt, [sym_orAlt] = sym_orAlt, [sym__doArrow] = sym__doArrow, [sym_doArrow] = sym_doArrow, - [sym_doLet] = sym_doLet, [sym__doExpr] = sym__doExpr, [sym_doBlock] = sym_doBlock, [sym_ifThen] = sym_ifThen, + [sym_caseExpr] = sym_caseExpr, + [sym_caseLet] = sym_caseLet, + [sym_letAssign] = sym_letAssign, + [sym_letStmt] = sym_letStmt, [sym__term2] = sym__term2, [sym_dollar] = sym_dollar, [sym_term] = sym_term, [sym_binder] = sym_binder, [sym_forall] = sym_forall, [sym_binders] = sym_binders, - [sym_typeExpr] = sym_typeExpr, + [sym__typeExpr] = sym__typeExpr, [sym_sigDecl] = sym_sigDecl, [sym_whereClause] = sym_whereClause, [sym_defDecl] = sym_defDecl, @@ -363,6 +391,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_qname_repeat1] = aux_sym_qname_repeat1, [aux_sym_doCaseLet_repeat1] = aux_sym_doCaseLet_repeat1, [aux_sym_doBlock_repeat1] = aux_sym_doBlock_repeat1, + [aux_sym_caseExpr_repeat1] = aux_sym_caseExpr_repeat1, + [aux_sym_letStmt_repeat1] = aux_sym_letStmt_repeat1, [aux_sym_binders_repeat1] = aux_sym_binders_repeat1, [aux_sym_whereClause_repeat1] = aux_sym_whereClause_repeat1, [aux_sym_shortDataDecl_repeat1] = aux_sym_shortDataDecl_repeat1, @@ -506,6 +536,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_case] = { + .visible = true, + .named = false, + }, + [anon_sym_of] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, [anon_sym_DOLLAR] = { .visible = true, .named = false, @@ -522,6 +564,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_forall] = { + .visible = true, + .named = false, + }, [anon_sym_where] = { .visible = true, .named = false, @@ -634,6 +680,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_doLet] = { + .visible = true, + .named = true, + }, [sym_doCaseLet] = { .visible = true, .named = true, @@ -654,10 +704,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_doLet] = { - .visible = true, - .named = true, - }, [sym__doExpr] = { .visible = false, .named = true, @@ -670,6 +716,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_caseExpr] = { + .visible = true, + .named = true, + }, + [sym_caseLet] = { + .visible = true, + .named = true, + }, + [sym_letAssign] = { + .visible = true, + .named = true, + }, + [sym_letStmt] = { + .visible = true, + .named = true, + }, [sym__term2] = { .visible = false, .named = true, @@ -694,8 +756,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_typeExpr] = { - .visible = true, + [sym__typeExpr] = { + .visible = false, .named = true, }, [sym_sigDecl] = { @@ -790,6 +852,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_caseExpr_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_letStmt_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_binders_repeat1] = { .visible = false, .named = false, @@ -903,20 +973,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, - [4] = 4, - [5] = 4, - [6] = 4, - [7] = 4, - [8] = 4, - [9] = 4, - [10] = 4, - [11] = 4, - [12] = 4, - [13] = 4, - [14] = 4, - [15] = 4, - [16] = 4, + [3] = 2, + [4] = 2, + [5] = 2, + [6] = 2, + [7] = 2, + [8] = 2, + [9] = 2, + [10] = 2, + [11] = 2, + [12] = 2, + [13] = 2, + [14] = 2, + [15] = 2, + [16] = 2, [17] = 17, [18] = 18, [19] = 19, @@ -925,926 +995,1208 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [22] = 22, [23] = 23, [24] = 24, - [25] = 25, + [25] = 17, [26] = 26, [27] = 27, [28] = 28, [29] = 29, - [30] = 19, - [31] = 27, - [32] = 28, - [33] = 29, - [34] = 19, - [35] = 27, - [36] = 28, - [37] = 29, - [38] = 19, - [39] = 27, - [40] = 28, - [41] = 29, - [42] = 19, - [43] = 27, - [44] = 28, - [45] = 29, - [46] = 19, - [47] = 27, - [48] = 28, - [49] = 29, - [50] = 19, - [51] = 27, - [52] = 28, - [53] = 29, - [54] = 19, - [55] = 27, - [56] = 28, - [57] = 29, - [58] = 19, - [59] = 27, - [60] = 28, - [61] = 29, - [62] = 19, - [63] = 27, - [64] = 28, - [65] = 29, - [66] = 19, - [67] = 18, - [68] = 27, - [69] = 28, - [70] = 29, - [71] = 19, - [72] = 27, - [73] = 28, - [74] = 29, - [75] = 19, - [76] = 18, - [77] = 77, - [78] = 78, - [79] = 79, - [80] = 18, - [81] = 25, - [82] = 78, - [83] = 17, - [84] = 18, - [85] = 78, - [86] = 78, - [87] = 17, - [88] = 18, - [89] = 89, - [90] = 78, - [91] = 17, - [92] = 18, - [93] = 26, - [94] = 78, - [95] = 17, - [96] = 18, - [97] = 27, - [98] = 78, + [30] = 30, + [31] = 31, + [32] = 32, + [33] = 33, + [34] = 34, + [35] = 35, + [36] = 20, + [37] = 23, + [38] = 17, + [39] = 33, + [40] = 34, + [41] = 35, + [42] = 20, + [43] = 23, + [44] = 17, + [45] = 33, + [46] = 34, + [47] = 35, + [48] = 20, + [49] = 23, + [50] = 17, + [51] = 33, + [52] = 34, + [53] = 35, + [54] = 20, + [55] = 23, + [56] = 17, + [57] = 33, + [58] = 34, + [59] = 35, + [60] = 20, + [61] = 23, + [62] = 17, + [63] = 33, + [64] = 34, + [65] = 35, + [66] = 20, + [67] = 23, + [68] = 17, + [69] = 33, + [70] = 34, + [71] = 35, + [72] = 20, + [73] = 23, + [74] = 17, + [75] = 33, + [76] = 34, + [77] = 35, + [78] = 20, + [79] = 23, + [80] = 17, + [81] = 33, + [82] = 34, + [83] = 35, + [84] = 20, + [85] = 23, + [86] = 17, + [87] = 33, + [88] = 34, + [89] = 35, + [90] = 20, + [91] = 23, + [92] = 17, + [93] = 93, + [94] = 33, + [95] = 34, + [96] = 35, + [97] = 20, + [98] = 23, [99] = 17, - [100] = 18, - [101] = 28, - [102] = 78, - [103] = 17, - [104] = 18, - [105] = 105, - [106] = 78, - [107] = 17, - [108] = 18, - [109] = 109, - [110] = 78, - [111] = 17, - [112] = 18, - [113] = 113, - [114] = 78, - [115] = 17, - [116] = 18, - [117] = 29, - [118] = 78, - [119] = 17, - [120] = 18, - [121] = 121, - [122] = 78, - [123] = 17, - [124] = 18, - [125] = 78, - [126] = 17, - [127] = 18, - [128] = 78, - [129] = 17, - [130] = 18, - [131] = 78, - [132] = 17, - [133] = 18, - [134] = 78, - [135] = 17, - [136] = 18, - [137] = 78, - [138] = 17, - [139] = 18, - [140] = 78, - [141] = 17, - [142] = 18, - [143] = 78, - [144] = 17, - [145] = 18, - [146] = 78, - [147] = 17, - [148] = 17, - [149] = 149, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, - [154] = 154, - [155] = 154, - [156] = 151, - [157] = 152, - [158] = 153, - [159] = 151, - [160] = 152, - [161] = 153, - [162] = 151, - [163] = 152, - [164] = 153, - [165] = 151, - [166] = 152, - [167] = 153, - [168] = 168, - [169] = 169, + [100] = 33, + [101] = 34, + [102] = 35, + [103] = 20, + [104] = 23, + [105] = 17, + [106] = 33, + [107] = 34, + [108] = 35, + [109] = 20, + [110] = 23, + [111] = 111, + [112] = 33, + [113] = 34, + [114] = 35, + [115] = 20, + [116] = 23, + [117] = 17, + [118] = 118, + [119] = 119, + [120] = 120, + [121] = 118, + [122] = 118, + [123] = 119, + [124] = 124, + [125] = 118, + [126] = 126, + [127] = 119, + [128] = 124, + [129] = 118, + [130] = 130, + [131] = 119, + [132] = 124, + [133] = 118, + [134] = 31, + [135] = 119, + [136] = 124, + [137] = 118, + [138] = 119, + [139] = 119, + [140] = 124, + [141] = 118, + [142] = 124, + [143] = 119, + [144] = 124, + [145] = 118, + [146] = 32, + [147] = 119, + [148] = 124, + [149] = 118, + [150] = 111, + [151] = 119, + [152] = 124, + [153] = 118, + [154] = 33, + [155] = 119, + [156] = 124, + [157] = 118, + [158] = 34, + [159] = 119, + [160] = 124, + [161] = 118, + [162] = 162, + [163] = 119, + [164] = 124, + [165] = 118, + [166] = 166, + [167] = 119, + [168] = 124, + [169] = 118, [170] = 170, - [171] = 168, - [172] = 170, - [173] = 168, - [174] = 170, - [175] = 168, - [176] = 170, - [177] = 168, - [178] = 178, - [179] = 170, - [180] = 168, - [181] = 170, - [182] = 168, - [183] = 170, - [184] = 168, - [185] = 170, - [186] = 168, - [187] = 170, - [188] = 168, - [189] = 189, - [190] = 170, - [191] = 170, - [192] = 168, - [193] = 154, - [194] = 168, - [195] = 195, - [196] = 170, - [197] = 168, - [198] = 170, - [199] = 168, - [200] = 170, - [201] = 168, - [202] = 170, - [203] = 168, - [204] = 170, - [205] = 168, - [206] = 170, - [207] = 168, - [208] = 170, - [209] = 168, - [210] = 170, - [211] = 211, - [212] = 169, - [213] = 154, - [214] = 169, + [171] = 119, + [172] = 124, + [173] = 118, + [174] = 119, + [175] = 124, + [176] = 118, + [177] = 119, + [178] = 124, + [179] = 118, + [180] = 119, + [181] = 124, + [182] = 118, + [183] = 119, + [184] = 124, + [185] = 118, + [186] = 119, + [187] = 124, + [188] = 118, + [189] = 119, + [190] = 124, + [191] = 118, + [192] = 119, + [193] = 124, + [194] = 118, + [195] = 119, + [196] = 124, + [197] = 118, + [198] = 119, + [199] = 124, + [200] = 118, + [201] = 35, + [202] = 130, + [203] = 111, + [204] = 130, + [205] = 111, + [206] = 130, + [207] = 124, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 210, + [212] = 212, + [213] = 213, + [214] = 214, [215] = 215, - [216] = 169, - [217] = 168, - [218] = 169, - [219] = 169, - [220] = 169, - [221] = 169, - [222] = 169, - [223] = 169, - [224] = 169, - [225] = 169, - [226] = 169, - [227] = 169, - [228] = 169, - [229] = 169, - [230] = 169, - [231] = 169, - [232] = 169, - [233] = 169, - [234] = 169, - [235] = 169, - [236] = 178, - [237] = 178, - [238] = 178, - [239] = 178, - [240] = 178, - [241] = 178, - [242] = 178, - [243] = 178, - [244] = 178, - [245] = 178, - [246] = 178, - [247] = 178, - [248] = 178, - [249] = 178, - [250] = 178, - [251] = 178, - [252] = 178, - [253] = 178, - [254] = 178, - [255] = 154, - [256] = 154, - [257] = 154, - [258] = 154, - [259] = 154, - [260] = 154, - [261] = 154, - [262] = 154, - [263] = 154, - [264] = 154, - [265] = 154, - [266] = 154, - [267] = 154, - [268] = 154, - [269] = 154, - [270] = 154, - [271] = 170, - [272] = 153, - [273] = 151, - [274] = 151, - [275] = 152, - [276] = 153, - [277] = 152, - [278] = 151, - [279] = 153, - [280] = 152, - [281] = 151, - [282] = 152, - [283] = 153, - [284] = 153, - [285] = 151, - [286] = 151, - [287] = 153, - [288] = 151, - [289] = 152, - [290] = 153, - [291] = 151, - [292] = 151, - [293] = 152, - [294] = 153, - [295] = 151, - [296] = 152, - [297] = 153, - [298] = 152, - [299] = 152, - [300] = 153, - [301] = 151, - [302] = 152, - [303] = 153, - [304] = 152, - [305] = 305, - [306] = 152, - [307] = 153, - [308] = 308, - [309] = 309, - [310] = 151, - [311] = 311, - [312] = 312, - [313] = 305, - [314] = 153, - [315] = 152, - [316] = 308, - [317] = 153, - [318] = 312, - [319] = 311, - [320] = 312, - [321] = 305, - [322] = 308, - [323] = 309, - [324] = 308, - [325] = 309, - [326] = 309, - [327] = 311, - [328] = 312, - [329] = 151, - [330] = 152, - [331] = 153, - [332] = 305, - [333] = 151, - [334] = 152, - [335] = 311, - [336] = 151, - [337] = 308, - [338] = 309, - [339] = 311, - [340] = 312, - [341] = 305, - [342] = 342, - [343] = 305, - [344] = 311, - [345] = 345, - [346] = 346, - [347] = 305, - [348] = 312, - [349] = 309, - [350] = 151, - [351] = 308, - [352] = 352, - [353] = 311, - [354] = 152, - [355] = 312, - [356] = 356, - [357] = 309, - [358] = 153, - [359] = 308, - [360] = 360, - [361] = 308, - [362] = 309, - [363] = 311, - [364] = 308, - [365] = 309, - [366] = 311, - [367] = 312, - [368] = 305, - [369] = 311, - [370] = 308, - [371] = 371, - [372] = 309, - [373] = 311, - [374] = 311, - [375] = 312, - [376] = 305, - [377] = 308, - [378] = 309, - [379] = 312, - [380] = 305, - [381] = 381, - [382] = 382, - [383] = 312, - [384] = 308, - [385] = 385, - [386] = 311, - [387] = 311, - [388] = 312, - [389] = 305, - [390] = 311, - [391] = 308, - [392] = 392, - [393] = 309, + [216] = 215, + [217] = 213, + [218] = 218, + [219] = 215, + [220] = 220, + [221] = 214, + [222] = 213, + [223] = 218, + [224] = 215, + [225] = 213, + [226] = 215, + [227] = 213, + [228] = 215, + [229] = 229, + [230] = 213, + [231] = 215, + [232] = 213, + [233] = 215, + [234] = 213, + [235] = 215, + [236] = 213, + [237] = 215, + [238] = 213, + [239] = 215, + [240] = 215, + [241] = 213, + [242] = 215, + [243] = 213, + [244] = 213, + [245] = 213, + [246] = 215, + [247] = 213, + [248] = 215, + [249] = 213, + [250] = 215, + [251] = 213, + [252] = 215, + [253] = 213, + [254] = 215, + [255] = 213, + [256] = 215, + [257] = 213, + [258] = 215, + [259] = 213, + [260] = 215, + [261] = 213, + [262] = 215, + [263] = 213, + [264] = 220, + [265] = 220, + [266] = 220, + [267] = 220, + [268] = 220, + [269] = 269, + [270] = 220, + [271] = 220, + [272] = 218, + [273] = 220, + [274] = 220, + [275] = 220, + [276] = 220, + [277] = 220, + [278] = 220, + [279] = 220, + [280] = 220, + [281] = 220, + [282] = 220, + [283] = 220, + [284] = 220, + [285] = 220, + [286] = 220, + [287] = 220, + [288] = 220, + [289] = 220, + [290] = 229, + [291] = 229, + [292] = 229, + [293] = 229, + [294] = 229, + [295] = 229, + [296] = 229, + [297] = 229, + [298] = 229, + [299] = 229, + [300] = 229, + [301] = 229, + [302] = 229, + [303] = 229, + [304] = 229, + [305] = 229, + [306] = 229, + [307] = 229, + [308] = 229, + [309] = 229, + [310] = 229, + [311] = 229, + [312] = 214, + [313] = 214, + [314] = 214, + [315] = 214, + [316] = 214, + [317] = 214, + [318] = 214, + [319] = 214, + [320] = 214, + [321] = 214, + [322] = 214, + [323] = 214, + [324] = 214, + [325] = 214, + [326] = 214, + [327] = 214, + [328] = 214, + [329] = 214, + [330] = 214, + [331] = 214, + [332] = 214, + [333] = 215, + [334] = 334, + [335] = 335, + [336] = 336, + [337] = 335, + [338] = 334, + [339] = 335, + [340] = 336, + [341] = 334, + [342] = 336, + [343] = 334, + [344] = 335, + [345] = 336, + [346] = 334, + [347] = 335, + [348] = 336, + [349] = 335, + [350] = 334, + [351] = 335, + [352] = 336, + [353] = 336, + [354] = 334, + [355] = 334, + [356] = 335, + [357] = 336, + [358] = 336, + [359] = 336, + [360] = 334, + [361] = 335, + [362] = 336, + [363] = 334, + [364] = 335, + [365] = 335, + [366] = 334, + [367] = 335, + [368] = 336, + [369] = 334, + [370] = 335, + [371] = 336, + [372] = 334, + [373] = 336, + [374] = 334, + [375] = 335, + [376] = 336, + [377] = 335, + [378] = 336, + [379] = 334, + [380] = 334, + [381] = 335, + [382] = 335, + [383] = 336, + [384] = 334, + [385] = 335, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 335, + [390] = 335, + [391] = 336, + [392] = 334, + [393] = 393, [394] = 394, [395] = 395, - [396] = 305, - [397] = 312, - [398] = 398, - [399] = 305, - [400] = 308, - [401] = 312, + [396] = 396, + [397] = 397, + [398] = 336, + [399] = 399, + [400] = 334, + [401] = 401, [402] = 402, - [403] = 309, - [404] = 308, + [403] = 403, + [404] = 404, [405] = 405, [406] = 406, - [407] = 305, - [408] = 312, - [409] = 305, - [410] = 309, - [411] = 309, - [412] = 311, - [413] = 312, - [414] = 305, - [415] = 308, - [416] = 416, - [417] = 309, - [418] = 311, - [419] = 305, - [420] = 309, - [421] = 308, - [422] = 312, - [423] = 423, - [424] = 311, - [425] = 309, - [426] = 311, - [427] = 427, - [428] = 312, - [429] = 305, - [430] = 308, - [431] = 309, - [432] = 311, - [433] = 312, - [434] = 312, - [435] = 309, - [436] = 305, - [437] = 308, - [438] = 427, - [439] = 305, - [440] = 308, - [441] = 305, - [442] = 308, - [443] = 312, - [444] = 309, - [445] = 305, - [446] = 309, - [447] = 311, - [448] = 312, - [449] = 308, - [450] = 450, - [451] = 451, - [452] = 398, - [453] = 402, - [454] = 405, - [455] = 406, - [456] = 371, - [457] = 457, - [458] = 451, - [459] = 451, - [460] = 381, - [461] = 451, - [462] = 451, - [463] = 451, - [464] = 451, - [465] = 451, - [466] = 392, - [467] = 451, - [468] = 451, - [469] = 382, - [470] = 451, - [471] = 394, - [472] = 451, - [473] = 395, - [474] = 451, - [475] = 457, - [476] = 476, - [477] = 450, - [478] = 457, - [479] = 457, - [480] = 457, - [481] = 450, - [482] = 482, - [483] = 450, - [484] = 450, - [485] = 485, - [486] = 486, - [487] = 450, - [488] = 394, - [489] = 395, - [490] = 490, - [491] = 398, - [492] = 381, - [493] = 402, - [494] = 405, - [495] = 450, - [496] = 406, - [497] = 382, + [407] = 407, + [408] = 336, + [409] = 409, + [410] = 410, + [411] = 411, + [412] = 334, + [413] = 413, + [414] = 403, + [415] = 401, + [416] = 334, + [417] = 404, + [418] = 335, + [419] = 336, + [420] = 334, + [421] = 405, + [422] = 403, + [423] = 404, + [424] = 403, + [425] = 401, + [426] = 402, + [427] = 404, + [428] = 405, + [429] = 335, + [430] = 336, + [431] = 335, + [432] = 334, + [433] = 403, + [434] = 401, + [435] = 402, + [436] = 401, + [437] = 404, + [438] = 405, + [439] = 336, + [440] = 405, + [441] = 402, + [442] = 402, + [443] = 404, + [444] = 405, + [445] = 405, + [446] = 334, + [447] = 404, + [448] = 402, + [449] = 336, + [450] = 403, + [451] = 335, + [452] = 401, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 402, + [457] = 403, + [458] = 458, + [459] = 459, + [460] = 405, + [461] = 403, + [462] = 401, + [463] = 402, + [464] = 404, + [465] = 401, + [466] = 403, + [467] = 404, + [468] = 405, + [469] = 405, + [470] = 402, + [471] = 471, + [472] = 404, + [473] = 405, + [474] = 403, + [475] = 401, + [476] = 403, + [477] = 402, + [478] = 401, + [479] = 402, + [480] = 404, + [481] = 403, + [482] = 405, + [483] = 401, + [484] = 402, + [485] = 402, + [486] = 403, + [487] = 403, + [488] = 404, + [489] = 402, + [490] = 405, + [491] = 404, + [492] = 405, + [493] = 404, + [494] = 401, + [495] = 405, + [496] = 402, + [497] = 497, [498] = 498, - [499] = 371, - [500] = 457, - [501] = 392, - [502] = 457, - [503] = 457, - [504] = 457, - [505] = 450, - [506] = 457, - [507] = 450, - [508] = 508, - [509] = 509, - [510] = 457, - [511] = 457, - [512] = 450, - [513] = 513, - [514] = 457, - [515] = 450, - [516] = 457, - [517] = 517, - [518] = 518, - [519] = 457, - [520] = 457, - [521] = 450, - [522] = 450, - [523] = 523, - [524] = 395, - [525] = 381, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 529, - [530] = 382, - [531] = 531, - [532] = 532, - [533] = 402, - [534] = 534, - [535] = 535, - [536] = 536, - [537] = 526, - [538] = 457, - [539] = 539, - [540] = 540, - [541] = 405, - [542] = 542, - [543] = 406, - [544] = 544, - [545] = 535, - [546] = 546, - [547] = 392, - [548] = 394, - [549] = 549, - [550] = 371, - [551] = 398, - [552] = 552, - [553] = 553, - [554] = 554, - [555] = 553, - [556] = 554, - [557] = 557, - [558] = 554, - [559] = 553, - [560] = 554, - [561] = 561, - [562] = 553, - [563] = 554, - [564] = 553, - [565] = 554, - [566] = 553, - [567] = 554, - [568] = 553, - [569] = 554, - [570] = 570, - [571] = 553, - [572] = 554, - [573] = 553, - [574] = 554, - [575] = 575, - [576] = 553, - [577] = 554, - [578] = 578, - [579] = 553, - [580] = 554, - [581] = 553, - [582] = 554, - [583] = 553, - [584] = 554, - [585] = 526, - [586] = 586, + [499] = 401, + [500] = 401, + [501] = 403, + [502] = 402, + [503] = 403, + [504] = 403, + [505] = 401, + [506] = 404, + [507] = 402, + [508] = 405, + [509] = 404, + [510] = 404, + [511] = 405, + [512] = 401, + [513] = 401, + [514] = 402, + [515] = 401, + [516] = 516, + [517] = 404, + [518] = 401, + [519] = 401, + [520] = 405, + [521] = 402, + [522] = 403, + [523] = 404, + [524] = 405, + [525] = 402, + [526] = 403, + [527] = 405, + [528] = 403, + [529] = 404, + [530] = 405, + [531] = 402, + [532] = 401, + [533] = 404, + [534] = 405, + [535] = 402, + [536] = 401, + [537] = 404, + [538] = 403, + [539] = 402, + [540] = 401, + [541] = 541, + [542] = 404, + [543] = 541, + [544] = 403, + [545] = 405, + [546] = 403, + [547] = 404, + [548] = 401, + [549] = 402, + [550] = 405, + [551] = 404, + [552] = 403, + [553] = 405, + [554] = 402, + [555] = 401, + [556] = 407, + [557] = 409, + [558] = 410, + [559] = 411, + [560] = 560, + [561] = 413, + [562] = 386, + [563] = 560, + [564] = 387, + [565] = 388, + [566] = 394, + [567] = 560, + [568] = 560, + [569] = 560, + [570] = 560, + [571] = 560, + [572] = 560, + [573] = 395, + [574] = 396, + [575] = 397, + [576] = 399, + [577] = 560, + [578] = 560, + [579] = 579, + [580] = 560, + [581] = 560, + [582] = 560, + [583] = 393, + [584] = 560, + [585] = 560, + [586] = 406, [587] = 587, - [588] = 588, - [589] = 589, - [590] = 553, + [588] = 579, + [589] = 579, + [590] = 579, [591] = 591, - [592] = 592, - [593] = 457, - [594] = 588, - [595] = 589, + [592] = 587, + [593] = 587, + [594] = 587, + [595] = 595, [596] = 596, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 526, - [601] = 601, - [602] = 588, - [603] = 589, - [604] = 588, - [605] = 605, - [606] = 588, - [607] = 589, + [597] = 579, + [598] = 587, + [599] = 396, + [600] = 579, + [601] = 409, + [602] = 394, + [603] = 387, + [604] = 395, + [605] = 413, + [606] = 397, + [607] = 607, [608] = 608, - [609] = 457, - [610] = 610, - [611] = 611, - [612] = 554, - [613] = 588, - [614] = 589, - [615] = 589, - [616] = 616, - [617] = 617, - [618] = 618, - [619] = 588, - [620] = 589, - [621] = 621, - [622] = 622, - [623] = 611, - [624] = 588, - [625] = 589, - [626] = 626, - [627] = 457, + [609] = 399, + [610] = 388, + [611] = 587, + [612] = 587, + [613] = 579, + [614] = 579, + [615] = 615, + [616] = 393, + [617] = 410, + [618] = 406, + [619] = 386, + [620] = 407, + [621] = 587, + [622] = 411, + [623] = 587, + [624] = 579, + [625] = 579, + [626] = 587, + [627] = 587, [628] = 628, - [629] = 586, - [630] = 588, - [631] = 589, - [632] = 553, - [633] = 554, + [629] = 579, + [630] = 587, + [631] = 587, + [632] = 579, + [633] = 579, [634] = 634, [635] = 635, - [636] = 588, - [637] = 589, - [638] = 611, - [639] = 526, + [636] = 636, + [637] = 579, + [638] = 579, + [639] = 587, [640] = 640, - [641] = 634, - [642] = 588, - [643] = 589, - [644] = 586, - [645] = 553, - [646] = 554, - [647] = 588, - [648] = 589, - [649] = 611, - [650] = 650, - [651] = 588, - [652] = 589, - [653] = 586, - [654] = 553, - [655] = 554, - [656] = 656, - [657] = 553, - [658] = 554, + [641] = 579, + [642] = 579, + [643] = 587, + [644] = 644, + [645] = 645, + [646] = 640, + [647] = 647, + [648] = 407, + [649] = 649, + [650] = 410, + [651] = 579, + [652] = 652, + [653] = 653, + [654] = 579, + [655] = 411, + [656] = 579, + [657] = 657, + [658] = 652, [659] = 659, - [660] = 660, - [661] = 553, - [662] = 554, - [663] = 663, - [664] = 553, - [665] = 554, - [666] = 666, - [667] = 667, - [668] = 668, - [669] = 553, - [670] = 554, + [660] = 413, + [661] = 659, + [662] = 386, + [663] = 649, + [664] = 399, + [665] = 665, + [666] = 659, + [667] = 649, + [668] = 387, + [669] = 669, + [670] = 388, [671] = 671, - [672] = 635, - [673] = 553, + [672] = 672, + [673] = 406, [674] = 674, [675] = 675, - [676] = 676, - [677] = 677, - [678] = 676, - [679] = 679, - [680] = 676, + [676] = 657, + [677] = 659, + [678] = 649, + [679] = 394, + [680] = 395, [681] = 681, - [682] = 682, - [683] = 676, - [684] = 676, - [685] = 676, + [682] = 409, + [683] = 683, + [684] = 396, + [685] = 685, [686] = 686, - [687] = 676, + [687] = 687, [688] = 688, - [689] = 689, - [690] = 690, - [691] = 676, + [689] = 397, + [690] = 393, + [691] = 691, [692] = 692, [693] = 693, - [694] = 694, + [694] = 692, [695] = 695, [696] = 696, - [697] = 676, - [698] = 676, - [699] = 699, - [700] = 676, - [701] = 701, + [697] = 697, + [698] = 698, + [699] = 652, + [700] = 700, + [701] = 692, [702] = 702, - [703] = 679, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 707, + [703] = 703, + [704] = 696, + [705] = 700, + [706] = 692, + [707] = 691, [708] = 708, - [709] = 676, - [710] = 710, + [709] = 700, + [710] = 692, [711] = 711, - [712] = 675, - [713] = 713, + [712] = 652, + [713] = 696, [714] = 714, - [715] = 676, - [716] = 676, - [717] = 676, - [718] = 718, - [719] = 719, - [720] = 689, + [715] = 691, + [716] = 696, + [717] = 717, + [718] = 700, + [719] = 692, + [720] = 700, [721] = 721, - [722] = 676, - [723] = 713, - [724] = 675, - [725] = 702, - [726] = 713, - [727] = 675, - [728] = 702, - [729] = 729, - [730] = 713, - [731] = 675, - [732] = 702, - [733] = 713, - [734] = 734, - [735] = 735, - [736] = 713, - [737] = 675, - [738] = 702, + [722] = 696, + [723] = 703, + [724] = 691, + [725] = 725, + [726] = 726, + [727] = 700, + [728] = 692, + [729] = 691, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 733, + [734] = 696, + [735] = 700, + [736] = 692, + [737] = 692, + [738] = 691, [739] = 739, - [740] = 713, - [741] = 675, - [742] = 702, - [743] = 743, - [744] = 713, - [745] = 675, - [746] = 702, - [747] = 676, - [748] = 713, - [749] = 675, - [750] = 702, - [751] = 751, - [752] = 713, - [753] = 675, - [754] = 702, + [740] = 740, + [741] = 741, + [742] = 695, + [743] = 700, + [744] = 692, + [745] = 745, + [746] = 691, + [747] = 747, + [748] = 696, + [749] = 749, + [750] = 750, + [751] = 691, + [752] = 579, + [753] = 691, + [754] = 754, [755] = 755, - [756] = 713, - [757] = 675, - [758] = 702, - [759] = 676, - [760] = 713, - [761] = 675, - [762] = 702, - [763] = 713, - [764] = 675, - [765] = 702, - [766] = 766, - [767] = 702, - [768] = 768, - [769] = 702, - [770] = 676, - [771] = 702, - [772] = 702, - [773] = 702, - [774] = 774, - [775] = 702, - [776] = 776, - [777] = 702, - [778] = 778, - [779] = 702, - [780] = 702, - [781] = 676, - [782] = 782, - [783] = 676, - [784] = 784, - [785] = 784, - [786] = 786, - [787] = 787, - [788] = 786, - [789] = 676, - [790] = 702, - [791] = 791, - [792] = 792, - [793] = 792, - [794] = 794, - [795] = 795, - [796] = 792, - [797] = 797, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 700, + [760] = 692, + [761] = 696, + [762] = 762, + [763] = 652, + [764] = 764, + [765] = 745, + [766] = 708, + [767] = 700, + [768] = 696, + [769] = 769, + [770] = 747, + [771] = 703, + [772] = 696, + [773] = 696, + [774] = 691, + [775] = 775, + [776] = 691, + [777] = 692, + [778] = 696, + [779] = 691, + [780] = 745, + [781] = 781, + [782] = 696, + [783] = 783, + [784] = 781, + [785] = 785, + [786] = 745, + [787] = 781, + [788] = 785, + [789] = 754, + [790] = 781, + [791] = 785, + [792] = 696, + [793] = 781, + [794] = 785, + [795] = 691, + [796] = 781, + [797] = 785, [798] = 798, - [799] = 798, - [800] = 800, - [801] = 797, - [802] = 797, - [803] = 800, - [804] = 804, - [805] = 800, - [806] = 806, - [807] = 798, - [808] = 797, - [809] = 809, - [810] = 800, - [811] = 792, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 800, - [816] = 798, - [817] = 797, - [818] = 818, - [819] = 819, - [820] = 800, - [821] = 821, - [822] = 792, - [823] = 823, - [824] = 798, - [825] = 800, - [826] = 792, - [827] = 827, - [828] = 828, - [829] = 800, - [830] = 800, - [831] = 798, - [832] = 797, - [833] = 833, - [834] = 797, - [835] = 800, - [836] = 798, - [837] = 800, - [838] = 838, - [839] = 792, - [840] = 792, - [841] = 841, - [842] = 792, + [799] = 781, + [800] = 785, + [801] = 754, + [802] = 781, + [803] = 785, + [804] = 696, + [805] = 781, + [806] = 785, + [807] = 691, + [808] = 781, + [809] = 785, + [810] = 691, + [811] = 781, + [812] = 785, + [813] = 754, + [814] = 781, + [815] = 785, + [816] = 696, + [817] = 781, + [818] = 785, + [819] = 691, + [820] = 781, + [821] = 785, + [822] = 822, + [823] = 781, + [824] = 785, + [825] = 696, + [826] = 696, + [827] = 691, + [828] = 692, + [829] = 691, + [830] = 696, + [831] = 691, + [832] = 785, + [833] = 700, + [834] = 696, + [835] = 691, + [836] = 708, + [837] = 696, + [838] = 691, + [839] = 700, + [840] = 692, + [841] = 696, + [842] = 691, [843] = 843, - [844] = 797, + [844] = 696, [845] = 845, - [846] = 792, - [847] = 798, - [848] = 797, - [849] = 849, - [850] = 800, - [851] = 851, - [852] = 798, - [853] = 798, - [854] = 797, + [846] = 846, + [847] = 579, + [848] = 708, + [849] = 691, + [850] = 850, + [851] = 700, + [852] = 692, + [853] = 696, + [854] = 696, [855] = 855, - [856] = 792, - [857] = 797, + [856] = 691, + [857] = 700, [858] = 858, [859] = 859, - [860] = 792, - [861] = 792, - [862] = 862, - [863] = 800, - [864] = 798, - [865] = 792, - [866] = 804, - [867] = 798, - [868] = 797, - [869] = 862, + [860] = 579, + [861] = 700, + [862] = 703, + [863] = 691, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, [870] = 870, [871] = 871, [872] = 872, - [873] = 798, - [874] = 800, - [875] = 797, - [876] = 797, + [873] = 873, + [874] = 874, + [875] = 871, + [876] = 871, [877] = 877, - [878] = 806, - [879] = 800, - [880] = 797, - [881] = 792, + [878] = 878, + [879] = 855, + [880] = 880, + [881] = 871, [882] = 882, - [883] = 798, - [884] = 800, - [885] = 792, - [886] = 797, + [883] = 883, + [884] = 871, + [885] = 864, + [886] = 871, [887] = 887, - [888] = 804, - [889] = 792, + [888] = 888, + [889] = 871, [890] = 890, - [891] = 792, + [891] = 891, [892] = 892, [893] = 893, [894] = 894, - [895] = 798, - [896] = 800, - [897] = 797, - [898] = 792, + [895] = 895, + [896] = 871, + [897] = 897, + [898] = 898, [899] = 899, - [900] = 798, - [901] = 798, - [902] = 797, - [903] = 800, - [904] = 797, - [905] = 905, - [906] = 851, - [907] = 851, - [908] = 851, - [909] = 851, - [910] = 851, - [911] = 851, - [912] = 851, - [913] = 851, - [914] = 851, - [915] = 851, - [916] = 851, - [917] = 851, - [918] = 851, - [919] = 851, - [920] = 851, - [921] = 851, - [922] = 851, - [923] = 851, - [924] = 851, - [925] = 800, - [926] = 797, - [927] = 927, - [928] = 792, - [929] = 929, + [900] = 900, + [901] = 871, + [902] = 902, + [903] = 874, + [904] = 871, + [905] = 871, + [906] = 906, + [907] = 871, + [908] = 868, + [909] = 871, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 871, + [914] = 914, + [915] = 871, + [916] = 871, + [917] = 917, + [918] = 871, + [919] = 919, + [920] = 871, + [921] = 921, + [922] = 880, + [923] = 864, + [924] = 921, + [925] = 880, + [926] = 864, + [927] = 921, + [928] = 880, + [929] = 864, [930] = 930, - [931] = 798, - [932] = 798, - [933] = 797, - [934] = 934, - [935] = 935, - [936] = 804, - [937] = 937, - [938] = 792, - [939] = 798, - [940] = 792, - [941] = 941, - [942] = 942, - [943] = 800, - [944] = 798, + [931] = 871, + [932] = 921, + [933] = 880, + [934] = 864, + [935] = 871, + [936] = 921, + [937] = 880, + [938] = 864, + [939] = 939, + [940] = 940, + [941] = 921, + [942] = 880, + [943] = 864, + [944] = 944, + [945] = 921, + [946] = 880, + [947] = 864, + [948] = 877, + [949] = 921, + [950] = 880, + [951] = 864, + [952] = 871, + [953] = 921, + [954] = 880, + [955] = 864, + [956] = 750, + [957] = 957, + [958] = 921, + [959] = 880, + [960] = 864, + [961] = 921, + [962] = 880, + [963] = 864, + [964] = 964, + [965] = 921, + [966] = 921, + [967] = 880, + [968] = 864, + [969] = 871, + [970] = 970, + [971] = 921, + [972] = 880, + [973] = 864, + [974] = 974, + [975] = 975, + [976] = 921, + [977] = 880, + [978] = 864, + [979] = 864, + [980] = 864, + [981] = 864, + [982] = 864, + [983] = 864, + [984] = 864, + [985] = 864, + [986] = 986, + [987] = 864, + [988] = 864, + [989] = 866, + [990] = 866, + [991] = 991, + [992] = 866, + [993] = 871, + [994] = 866, + [995] = 866, + [996] = 866, + [997] = 866, + [998] = 866, + [999] = 866, + [1000] = 866, + [1001] = 866, + [1002] = 866, + [1003] = 866, + [1004] = 866, + [1005] = 1005, + [1006] = 1005, + [1007] = 1007, + [1008] = 871, + [1009] = 871, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 1013, + [1014] = 1014, + [1015] = 1015, + [1016] = 1012, + [1017] = 1012, + [1018] = 1018, + [1019] = 1019, + [1020] = 1018, + [1021] = 1021, + [1022] = 1012, + [1023] = 1019, + [1024] = 1019, + [1025] = 1015, + [1026] = 1013, + [1027] = 1012, + [1028] = 1018, + [1029] = 1019, + [1030] = 1030, + [1031] = 1031, + [1032] = 1012, + [1033] = 1015, + [1034] = 1014, + [1035] = 1015, + [1036] = 1036, + [1037] = 1012, + [1038] = 1018, + [1039] = 1019, + [1040] = 1040, + [1041] = 1015, + [1042] = 1012, + [1043] = 1018, + [1044] = 1044, + [1045] = 1015, + [1046] = 1019, + [1047] = 1012, + [1048] = 1018, + [1049] = 1019, + [1050] = 1050, + [1051] = 1012, + [1052] = 1014, + [1053] = 1053, + [1054] = 1018, + [1055] = 1013, + [1056] = 1014, + [1057] = 1015, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 1018, + [1062] = 1012, + [1063] = 1019, + [1064] = 1064, + [1065] = 1019, + [1066] = 1058, + [1067] = 1067, + [1068] = 1060, + [1069] = 1069, + [1070] = 1010, + [1071] = 1058, + [1072] = 1015, + [1073] = 1073, + [1074] = 1058, + [1075] = 1015, + [1076] = 1060, + [1077] = 1015, + [1078] = 1078, + [1079] = 1079, + [1080] = 1013, + [1081] = 1014, + [1082] = 1018, + [1083] = 1019, + [1084] = 1012, + [1085] = 1015, + [1086] = 1086, + [1087] = 1015, + [1088] = 1069, + [1089] = 1089, + [1090] = 1018, + [1091] = 1019, + [1092] = 1092, + [1093] = 1015, + [1094] = 1015, + [1095] = 1018, + [1096] = 1096, + [1097] = 1013, + [1098] = 1014, + [1099] = 1019, + [1100] = 1012, + [1101] = 1018, + [1102] = 1018, + [1103] = 1019, + [1104] = 1104, + [1105] = 1018, + [1106] = 1015, + [1107] = 1019, + [1108] = 1108, + [1109] = 1015, + [1110] = 1019, + [1111] = 1012, + [1112] = 1112, + [1113] = 1113, + [1114] = 1013, + [1115] = 1014, + [1116] = 1012, + [1117] = 1086, + [1118] = 1118, + [1119] = 1119, + [1120] = 1018, + [1121] = 1019, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, + [1126] = 1013, + [1127] = 1127, + [1128] = 1013, + [1129] = 1014, + [1130] = 1053, + [1131] = 1013, + [1132] = 1014, + [1133] = 1012, + [1134] = 1012, + [1135] = 1015, + [1136] = 1015, + [1137] = 1013, + [1138] = 1138, + [1139] = 1014, + [1140] = 1018, + [1141] = 1053, + [1142] = 1011, + [1143] = 1014, + [1144] = 1019, + [1145] = 1069, + [1146] = 1015, + [1147] = 1012, + [1148] = 1148, + [1149] = 1030, + [1150] = 1013, + [1151] = 1018, + [1152] = 1014, + [1153] = 1019, + [1154] = 1154, + [1155] = 1155, + [1156] = 1012, + [1157] = 1012, + [1158] = 1015, + [1159] = 1018, + [1160] = 1160, + [1161] = 1060, + [1162] = 1018, + [1163] = 1119, + [1164] = 1164, + [1165] = 1010, + [1166] = 1019, + [1167] = 1015, + [1168] = 1168, + [1169] = 1010, + [1170] = 1018, + [1171] = 1013, + [1172] = 1015, + [1173] = 1010, + [1174] = 1014, + [1175] = 1010, + [1176] = 1012, + [1177] = 1010, + [1178] = 1018, + [1179] = 1010, + [1180] = 1019, + [1181] = 1010, + [1182] = 1019, + [1183] = 1010, + [1184] = 1184, + [1185] = 1010, + [1186] = 1119, + [1187] = 1010, + [1188] = 1188, + [1189] = 1010, + [1190] = 1015, + [1191] = 1010, + [1192] = 1192, + [1193] = 1010, + [1194] = 1013, + [1195] = 1010, + [1196] = 1010, + [1197] = 1010, + [1198] = 1010, + [1199] = 1013, + [1200] = 1010, + [1201] = 1010, + [1202] = 1010, + [1203] = 1010, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1013, + [1208] = 1053, + [1209] = 1014, + [1210] = 1069, + [1211] = 1012, + [1212] = 1030, + [1213] = 1018, + [1214] = 1019, + [1215] = 1215, + [1216] = 1216, + [1217] = 1119, + [1218] = 1014, + [1219] = 1018, + [1220] = 1019, + [1221] = 1012, + [1222] = 1018, + [1223] = 1019, + [1224] = 1015, + [1225] = 1225, + [1226] = 1015, }; static const TSCharacterRange sym_identifier_character_set_2[] = { @@ -1857,1012 +2209,787 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(76); + if (eof) ADVANCE(80); ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ')', 93, - ',', 146, - '-', 150, - '.', 104, - '/', 152, - '0', 122, - ':', 125, - ';', 102, - '<', 153, - '=', 111, - '[', 98, - '\\', 89, - ']', 103, - '_', 149, - '`', 130, - 'e', 173, - 'i', 174, - 'm', 176, - 't', 170, - 'u', 182, - 'w', 171, - '{', 96, - '|', 113, - '}', 97, - 0x2192, 86, - 0x2200, 126, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ')', 97, + ',', 154, + '-', 158, + '.', 108, + '/', 160, + '0', 130, + ':', 133, + ';', 106, + '<', 161, + '=', 115, + '[', 102, + '\\', 93, + ']', 107, + '_', 157, + '`', 138, + 'e', 182, + 'i', 183, + 'm', 187, + 'o', 178, + 't', 179, + 'u', 193, + 'w', 180, + '{', 100, + '|', 117, + '}', 101, + 0x2192, 90, + 0x2200, 134, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(87); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(91); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '@') ADVANCE(186); + lookahead != '@') ADVANCE(197); END_STATE(); case 1: ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ')', 93, - ',', 146, - '-', 150, - '/', 152, - ':', 125, - '[', 98, - '_', 149, - '{', 96, - 0x2192, 86, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ')', 97, + ',', 154, + '-', 158, + '/', 160, + ':', 133, + '[', 102, + '_', 157, + '{', 100, + 0x2192, 90, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && (lookahead < ',' || ';' < lookahead) && lookahead != '@' && (lookahead < '[' || ']' < lookahead) && - lookahead != '}') ADVANCE(186); + lookahead != '}') ADVANCE(197); END_STATE(); case 2: ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ')', 93, - ',', 146, - '-', 151, - '/', 152, - ';', 102, - '[', 98, - ']', 103, - '_', 149, - '{', 96, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 158, + '/', 160, + ':', 168, + '[', 102, + '_', 157, + '{', 100, + 0x2192, 90, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - (lookahead < ',' || '9' < lookahead) && - lookahead != '@' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '}') ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 3: ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ',', 146, - '-', 150, - '/', 152, - ':', 160, - '[', 98, - '_', 149, - '{', 96, - 0x2192, 86, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 158, + '/', 160, + '<', 161, + '[', 102, + '_', 157, + '{', 100, + 0x2192, 90, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 4: ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ',', 146, - '-', 150, - '/', 152, - '<', 153, - '[', 98, - '_', 149, - '{', 96, - 0x2192, 86, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 158, + '/', 160, + '=', 169, + '[', 102, + '_', 157, + '{', 100, + 0x2192, 90, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 5: ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ',', 146, - '-', 150, - '/', 152, - '=', 161, - '[', 98, - '_', 149, - '{', 96, - 0x2192, 86, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 158, + '/', 160, + '[', 102, + '_', 157, + 'e', 182, + '{', 100, + 0x2192, 90, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 6: ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ',', 146, - '-', 150, - '/', 152, - '[', 98, - '_', 149, - 'e', 173, - '{', 96, - 0x2192, 86, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 158, + '/', 160, + '[', 102, + '_', 157, + 'i', 185, + '{', 100, + '|', 117, + 0x2192, 90, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 7: ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ',', 146, - '-', 150, - '/', 152, - '[', 98, - '_', 149, - 't', 170, - '{', 96, - 0x2192, 86, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 158, + '/', 160, + '[', 102, + '_', 157, + 'o', 178, + '{', 100, + 0x2192, 90, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 8: ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ',', 146, - '-', 150, - '/', 152, - '[', 98, - '_', 149, - '{', 96, - '|', 113, - 0x2192, 86, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 158, + '/', 160, + '[', 102, + '_', 157, + 't', 179, + '{', 100, + 0x2192, 90, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 9: ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ',', 146, - '-', 150, - '/', 152, - '[', 98, - '_', 149, - '{', 96, - '}', 97, - 0x2192, 86, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 158, + '/', 160, + '[', 102, + '_', 157, + '{', 100, + '|', 117, + 0x2192, 90, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 10: ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ',', 146, - '-', 151, - '/', 152, - '<', 153, - '[', 98, - '_', 149, - '{', 96, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 158, + '/', 160, + '[', 102, + '_', 157, + '{', 100, + '}', 101, + 0x2192, 90, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 11: ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ',', 146, - '-', 151, - '/', 152, - '=', 161, - '[', 98, - '_', 149, - '{', 96, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 159, + '/', 160, + ';', 106, + '[', 102, + ']', 107, + '_', 157, + '{', 100, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 12: ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ',', 146, - '-', 151, - '/', 152, - '[', 98, - '_', 149, - 'e', 173, - '{', 96, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 159, + '/', 160, + '<', 161, + '[', 102, + '_', 157, + '{', 100, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 13: ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ',', 146, - '-', 151, - '/', 152, - '[', 98, - '_', 149, - 't', 170, - '{', 96, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 159, + '/', 160, + '=', 169, + '[', 102, + '_', 157, + '{', 100, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 14: ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ',', 146, - '-', 151, - '/', 152, - '[', 98, - '_', 149, - '{', 96, - '|', 113, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 159, + '/', 160, + '[', 102, + '_', 157, + 'e', 182, + '{', 100, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 15: ADVANCE_MAP( - '"', 147, - '\'', 162, - '(', 92, - ',', 146, - '-', 151, - '/', 152, - '0', 122, - '[', 98, - '\\', 89, - '_', 149, - '{', 96, - 0x2200, 126, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 159, + '/', 160, + '[', 102, + '_', 157, + 'i', 185, + '{', 100, + '|', 117, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 16: ADVANCE_MAP( - '"', 147, - '\'', 162, - '(', 92, - ',', 146, - '-', 151, - '/', 152, - ':', 125, - '=', 111, - '[', 98, - '_', 149, - '{', 96, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 159, + '/', 160, + '[', 102, + '_', 157, + 't', 179, + '{', 100, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 17: ADVANCE_MAP( - '"', 147, - '\'', 162, - '(', 92, - ',', 146, - '-', 151, - '/', 152, - '=', 111, - '[', 98, - '_', 149, - '{', 96, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 159, + '/', 160, + '[', 102, + '_', 157, + '{', 100, + '|', 117, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 18: ADVANCE_MAP( - '"', 147, - '\'', 162, - '(', 92, - ',', 146, - '-', 151, - '/', 152, - '[', 98, - '\\', 89, - '_', 149, - '{', 96, - 0x2200, 126, + '"', 155, + '\'', 170, + '(', 96, + ',', 154, + '-', 159, + '/', 160, + '0', 130, + '[', 102, + '\\', 93, + '_', 157, + '{', 100, + 0x2200, 134, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 19: ADVANCE_MAP( - '"', 147, - '\'', 162, - '(', 92, - ',', 146, - '-', 151, - '/', 152, - '[', 98, - '\\', 89, - '_', 149, + '"', 155, + '\'', 170, + '(', 96, + ',', 154, + '-', 159, + '/', 160, + ':', 133, + '=', 115, + '[', 102, + '_', 157, + '{', 100, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 20: ADVANCE_MAP( - '"', 147, - '\'', 162, - '(', 92, - ',', 146, - '-', 151, - '/', 152, - '[', 98, - '_', 149, - 'i', 174, + '"', 155, + '\'', 170, + '(', 96, + ',', 154, + '-', 159, + '/', 160, + '=', 115, + '[', 102, + '_', 157, + '{', 100, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 21: - if (lookahead == '"') ADVANCE(105); - if (lookahead != 0) ADVANCE(21); + ADVANCE_MAP( + '"', 155, + '\'', 170, + '(', 96, + ',', 154, + '-', 159, + '/', 160, + '[', 102, + '\\', 93, + '_', 157, + '{', 100, + 0x2200, 134, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 22: - if (lookahead == '$') ADVANCE(43); - if (lookahead == '-') ADVANCE(31); - if (lookahead == '/') ADVANCE(34); - if (lookahead == ':') ADVANCE(42); + ADVANCE_MAP( + '"', 155, + '\'', 170, + '(', 96, + ',', 154, + '-', 159, + '/', 160, + '[', 102, + '\\', 93, + '_', 157, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 23: - if (lookahead == '\'') ADVANCE(108); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(24); + ADVANCE_MAP( + '"', 155, + '\'', 170, + '(', 96, + ',', 154, + '-', 159, + '/', 160, + '[', 102, + '_', 157, + 'i', 184, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 24: - if (lookahead == '\'') ADVANCE(107); + if (lookahead == '"') ADVANCE(109); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 25: - if (lookahead == '(') ADVANCE(92); - if (lookahead == ',') ADVANCE(146); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '/') ADVANCE(152); - if (lookahead == '_') ADVANCE(149); - if (lookahead == 'w') ADVANCE(171); - if (lookahead == '{') ADVANCE(96); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == '$') ADVANCE(46); + if (lookahead == '-') ADVANCE(34); + if (lookahead == '/') ADVANCE(37); + if (lookahead == ':') ADVANCE(45); END_STATE(); case 26: - if (lookahead == ',') ADVANCE(146); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '/') ADVANCE(152); - if (lookahead == '0') ADVANCE(123); - if (lookahead == '_') ADVANCE(149); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == '\'') ADVANCE(112); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(27); END_STATE(); case 27: - if (lookahead == ',') ADVANCE(146); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '/') ADVANCE(152); - if (lookahead == ':') ADVANCE(125); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '_') ADVANCE(149); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == '\'') ADVANCE(111); END_STATE(); case 28: - if (lookahead == ',') ADVANCE(146); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '/') ADVANCE(152); - if (lookahead == ':') ADVANCE(125); - if (lookahead == '_') ADVANCE(149); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == '(') ADVANCE(96); + if (lookahead == ',') ADVANCE(154); + if (lookahead == '-') ADVANCE(159); + if (lookahead == '/') ADVANCE(160); + if (lookahead == '_') ADVANCE(157); + if (lookahead == 'w') ADVANCE(180); + if (lookahead == '{') ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 29: - if (lookahead == ',') ADVANCE(146); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '/') ADVANCE(152); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '_') ADVANCE(149); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == ',') ADVANCE(154); + if (lookahead == '-') ADVANCE(159); + if (lookahead == '/') ADVANCE(160); + if (lookahead == '0') ADVANCE(131); + if (lookahead == '_') ADVANCE(157); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 30: - if (lookahead == ',') ADVANCE(146); - if (lookahead == '-') ADVANCE(151); - if (lookahead == '/') ADVANCE(152); - if (lookahead == '=') ADVANCE(161); - if (lookahead == '_') ADVANCE(149); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == ',') ADVANCE(154); + if (lookahead == '-') ADVANCE(159); + if (lookahead == '/') ADVANCE(160); + if (lookahead == ':') ADVANCE(133); + if (lookahead == '=') ADVANCE(115); + if (lookahead == '_') ADVANCE(157); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 31: - if (lookahead == '-') ADVANCE(81); + if (lookahead == ',') ADVANCE(154); + if (lookahead == '-') ADVANCE(159); + if (lookahead == '/') ADVANCE(160); + if (lookahead == ':') ADVANCE(133); + if (lookahead == '_') ADVANCE(157); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 32: - if (lookahead == '-') ADVANCE(81); - if (lookahead == '>') ADVANCE(83); + if (lookahead == ',') ADVANCE(154); + if (lookahead == '-') ADVANCE(159); + if (lookahead == '/') ADVANCE(160); + if (lookahead == '=') ADVANCE(115); + if (lookahead == '_') ADVANCE(157); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 33: - if (lookahead == '-') ADVANCE(41); + if (lookahead == ',') ADVANCE(154); + if (lookahead == '-') ADVANCE(159); + if (lookahead == '/') ADVANCE(160); + if (lookahead == '=') ADVANCE(169); + if (lookahead == '_') ADVANCE(157); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 34: - if (lookahead == '-') ADVANCE(36); + if (lookahead == '-') ADVANCE(85); END_STATE(); case 35: - if (lookahead == '-') ADVANCE(114); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '>') ADVANCE(87); END_STATE(); case 36: - if (lookahead == '-') ADVANCE(40); - if (lookahead != 0) ADVANCE(33); + if (lookahead == '-') ADVANCE(44); END_STATE(); case 37: - if (lookahead == '-') ADVANCE(37); - if (lookahead == '/') ADVANCE(77); - if (lookahead != 0) ADVANCE(33); + if (lookahead == '-') ADVANCE(39); END_STATE(); case 38: - if (lookahead == '-') ADVANCE(37); - if (lookahead != 0 && - lookahead != '/') ADVANCE(33); + if (lookahead == '-') ADVANCE(118); END_STATE(); case 39: - if (lookahead == '-') ADVANCE(131); - if (lookahead == '/') ADVANCE(132); - if (lookahead != 0 && - lookahead != '`') ADVANCE(139); + if (lookahead == '-') ADVANCE(43); + if (lookahead != 0) ADVANCE(36); END_STATE(); case 40: - if (lookahead == '-') ADVANCE(38); - if (lookahead != 0 && - lookahead != '/') ADVANCE(33); + if (lookahead == '-') ADVANCE(40); + if (lookahead == '/') ADVANCE(81); + if (lookahead != 0) ADVANCE(36); END_STATE(); case 41: - if (lookahead == '/') ADVANCE(77); + if (lookahead == '-') ADVANCE(40); + if (lookahead != 0 && + lookahead != '/') ADVANCE(36); END_STATE(); case 42: - if (lookahead == '=') ADVANCE(99); + if (lookahead == '-') ADVANCE(139); + if (lookahead == '/') ADVANCE(140); + if (lookahead != 0 && + lookahead != '`') ADVANCE(147); END_STATE(); case 43: - if (lookahead == '=') ADVANCE(101); + if (lookahead == '-') ADVANCE(41); + if (lookahead != 0 && + lookahead != '/') ADVANCE(36); END_STATE(); case 44: - if (lookahead == '>') ADVANCE(90); + if (lookahead == '/') ADVANCE(81); END_STATE(); case 45: - if (lookahead == '_') ADVANCE(146); + if (lookahead == '=') ADVANCE(103); END_STATE(); case 46: - if (lookahead == 'd') ADVANCE(68); + if (lookahead == '=') ADVANCE(105); END_STATE(); case 47: - if (lookahead == 'e') ADVANCE(58); + if (lookahead == '>') ADVANCE(94); END_STATE(); case 48: - if (lookahead == 'e') ADVANCE(63); + if (lookahead == '_') ADVANCE(154); END_STATE(); case 49: - if (lookahead == 'e') ADVANCE(118); + if (lookahead == 'd') ADVANCE(72); END_STATE(); case 50: - if (lookahead == 'e') ADVANCE(127); + if (lookahead == 'e') ADVANCE(62); END_STATE(); case 51: - if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'e') ADVANCE(67); END_STATE(); case 52: - if (lookahead == 'e') ADVANCE(64); + if (lookahead == 'e') ADVANCE(122); END_STATE(); case 53: - if (lookahead == 'h') ADVANCE(47); + if (lookahead == 'e') ADVANCE(135); END_STATE(); case 54: - if (lookahead == 'h') ADVANCE(48); + if (lookahead == 'e') ADVANCE(152); END_STATE(); case 55: - if (lookahead == 'l') ADVANCE(65); + if (lookahead == 'e') ADVANCE(68); END_STATE(); case 56: - if (lookahead == 'l') ADVANCE(51); + if (lookahead == 'f') ADVANCE(124); END_STATE(); case 57: - if (lookahead == 'm') ADVANCE(61); + if (lookahead == 'h') ADVANCE(50); END_STATE(); case 58: - if (lookahead == 'n') ADVANCE(116); + if (lookahead == 'h') ADVANCE(51); END_STATE(); case 59: - if (lookahead == 'o') ADVANCE(46); + if (lookahead == 'l') ADVANCE(69); END_STATE(); case 60: - if (lookahead == 'o') ADVANCE(62); + if (lookahead == 'l') ADVANCE(54); END_STATE(); case 61: - if (lookahead == 'p') ADVANCE(60); + if (lookahead == 'm') ADVANCE(65); + if (lookahead == 'n') ADVANCE(126); END_STATE(); case 62: - if (lookahead == 'r') ADVANCE(67); + if (lookahead == 'n') ADVANCE(120); END_STATE(); case 63: - if (lookahead == 'r') ADVANCE(50); + if (lookahead == 'o') ADVANCE(49); END_STATE(); case 64: - if (lookahead == 's') ADVANCE(140); + if (lookahead == 'o') ADVANCE(66); END_STATE(); case 65: - if (lookahead == 's') ADVANCE(49); + if (lookahead == 'p') ADVANCE(64); END_STATE(); case 66: - if (lookahead == 's') ADVANCE(52); + if (lookahead == 'r') ADVANCE(71); END_STATE(); case 67: - if (lookahead == 't') ADVANCE(142); + if (lookahead == 'r') ADVANCE(53); END_STATE(); case 68: - if (lookahead == 'u') ADVANCE(56); + if (lookahead == 's') ADVANCE(148); END_STATE(); case 69: - if (lookahead == '}') ADVANCE(95); + if (lookahead == 's') ADVANCE(52); END_STATE(); case 70: - if (eof) ADVANCE(76); + if (lookahead == 's') ADVANCE(55); + END_STATE(); + case 71: + if (lookahead == 't') ADVANCE(150); + END_STATE(); + case 72: + if (lookahead == 'u') ADVANCE(60); + END_STATE(); + case 73: + if (lookahead == '}') ADVANCE(99); + END_STATE(); + case 74: + if (eof) ADVANCE(80); ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ')', 93, - ',', 146, - '-', 150, - '/', 152, - ';', 102, - '[', 98, - ']', 103, - '_', 149, - '{', 96, - '}', 69, - 0x2192, 86, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ')', 97, + ',', 154, + '-', 158, + '/', 160, + ';', 106, + '[', 102, + ']', 107, + '_', 157, + '{', 100, + '}', 73, + 0x2192, 90, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && (lookahead < ',' || '9' < lookahead) && lookahead != '@' && - (lookahead < '[' || ']' < lookahead)) ADVANCE(186); - END_STATE(); - case 71: - if (eof) ADVANCE(76); - ADVANCE_MAP( - '"', 147, - '$', 121, - '\'', 162, - '(', 92, - ',', 146, - '-', 150, - '/', 152, - '[', 98, - '_', 149, - 'w', 171, - '{', 96, - 0x2192, 86, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 72: - if (eof) ADVANCE(76); - ADVANCE_MAP( - '"', 147, - '\'', 162, - '(', 92, - ',', 146, - '-', 151, - '/', 152, - '[', 98, - '_', 149, - '|', 113, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 73: - if (eof) ADVANCE(76); - ADVANCE_MAP( - '$', 120, - '(', 92, - ')', 93, - '-', 32, - '.', 104, - '/', 34, - ':', 42, - ';', 102, - '<', 35, - '=', 44, - ']', 103, - '`', 129, - 'e', 55, - 'i', 57, - 'm', 59, - 't', 53, - 'w', 54, - '{', 96, - '|', 112, - '}', 69, - 0x2192, 85, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); - END_STATE(); - case 74: - if (eof) ADVANCE(76); - ADVANCE_MAP( - '$', 120, - '-', 32, - '/', 34, - ':', 124, - '=', 110, - 'u', 66, - '}', 97, - 0x2192, 85, - ); + (lookahead < '[' || ']' < lookahead)) ADVANCE(197); END_STATE(); case 75: - if (eof) ADVANCE(76); + if (eof) ADVANCE(80); ADVANCE_MAP( - '(', 92, - ')', 93, - ',', 146, - '-', 151, - '.', 104, - '/', 152, - ']', 103, - '_', 149, + '"', 155, + '$', 129, + '\'', 170, + '(', 96, + ',', 154, + '-', 158, + '/', 160, + '[', 102, + '_', 157, + 'w', 180, + '{', 100, + 0x2192, 90, ); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 76: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(80); + ADVANCE_MAP( + '"', 155, + '\'', 170, + '(', 96, + ',', 154, + '-', 159, + '/', 160, + '[', 102, + '_', 157, + '|', 117, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 77: - ACCEPT_TOKEN(sym_comment); + if (eof) ADVANCE(80); + ADVANCE_MAP( + '$', 128, + '(', 96, + ')', 97, + '-', 35, + '.', 108, + '/', 37, + ':', 45, + ';', 106, + '<', 38, + '=', 47, + ']', 107, + '`', 137, + 'e', 59, + 'i', 61, + 'm', 63, + 'o', 56, + 't', 57, + 'w', 58, + '{', 100, + '|', 116, + '}', 73, + 0x2192, 89, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(92); END_STATE(); case 78: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(139); - if (lookahead == '`') ADVANCE(81); - if (lookahead != 0) ADVANCE(78); + if (eof) ADVANCE(80); + ADVANCE_MAP( + '$', 128, + '-', 35, + '/', 37, + ':', 132, + '=', 114, + 'u', 70, + '}', 101, + 0x2192, 89, + ); END_STATE(); case 79: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ',' || - lookahead == '.' || - lookahead == ';' || - lookahead == '@' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '{' || - lookahead == '}') ADVANCE(81); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(79); + if (eof) ADVANCE(80); + ADVANCE_MAP( + '(', 96, + ')', 97, + ',', 154, + '-', 159, + '.', 108, + '/', 160, + ']', 107, + '_', 157, + ); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 80: - ACCEPT_TOKEN(sym_comment); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 81: ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(81); END_STATE(); case 82: ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '`') ADVANCE(139); + if (lookahead == '\n') ADVANCE(147); + if (lookahead == '`') ADVANCE(85); + if (lookahead != 0) ADVANCE(82); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_DASH_GT); - END_STATE(); - case 84: - ACCEPT_TOKEN(anon_sym_DASH_GT); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 85: - ACCEPT_TOKEN(anon_sym_u2192); - END_STATE(); - case 86: - ACCEPT_TOKEN(anon_sym_u2192); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 87: - ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 88: - ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); - END_STATE(); - case 89: - ACCEPT_TOKEN(anon_sym_BSLASH); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_EQ_GT); - END_STATE(); - case 91: - ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 92: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 93: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 94: - ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); - END_STATE(); - case 95: - ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); - END_STATE(); - case 96: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '{') ADVANCE(94); - END_STATE(); - case 97: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 98: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 99: - ACCEPT_TOKEN(anon_sym_COLON_EQ); - END_STATE(); - case 100: - ACCEPT_TOKEN(anon_sym_COLON_EQ); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 101: - ACCEPT_TOKEN(anon_sym_DOLLAR_EQ); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 103: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 104: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 105: - ACCEPT_TOKEN(sym_string); - END_STATE(); - case 106: - ACCEPT_TOKEN(sym_string); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 107: - ACCEPT_TOKEN(sym_character); - END_STATE(); - case 108: - ACCEPT_TOKEN(sym_character); - if (lookahead == '\'') ADVANCE(107); - END_STATE(); - case 109: - ACCEPT_TOKEN(sym_character); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 110: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 111: - ACCEPT_TOKEN(anon_sym_EQ); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 112: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 113: - ACCEPT_TOKEN(anon_sym_PIPE); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 114: - ACCEPT_TOKEN(anon_sym_LT_DASH); - END_STATE(); - case 115: - ACCEPT_TOKEN(anon_sym_LT_DASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 116: - ACCEPT_TOKEN(anon_sym_then); - END_STATE(); - case 117: - ACCEPT_TOKEN(anon_sym_then); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 118: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 119: - ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 120: - ACCEPT_TOKEN(anon_sym_DOLLAR); - END_STATE(); - case 121: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 122: - ACCEPT_TOKEN(anon_sym_0); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 123: - ACCEPT_TOKEN(anon_sym_0); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 124: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 125: - ACCEPT_TOKEN(anon_sym_COLON); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 126: - ACCEPT_TOKEN(anon_sym_u2200); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 127: - ACCEPT_TOKEN(anon_sym_where); - END_STATE(); - case 128: - ACCEPT_TOKEN(anon_sym_where); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 129: - ACCEPT_TOKEN(anon_sym_BQUOTE); - END_STATE(); - case 130: - ACCEPT_TOKEN(anon_sym_BQUOTE); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 131: - ACCEPT_TOKEN(aux_sym_jsLitString_token1); - if (lookahead == '-') ADVANCE(78); - if (lookahead != 0 && - lookahead != '`') ADVANCE(139); - END_STATE(); - case 132: - ACCEPT_TOKEN(aux_sym_jsLitString_token1); - if (lookahead == '-') ADVANCE(133); - if (lookahead != 0 && - lookahead != '`') ADVANCE(139); - END_STATE(); - case 133: - ACCEPT_TOKEN(aux_sym_jsLitString_token1); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '`') ADVANCE(33); - if (lookahead != 0) ADVANCE(134); - END_STATE(); - case 134: - ACCEPT_TOKEN(aux_sym_jsLitString_token1); - if (lookahead == '-') ADVANCE(138); - if (lookahead != 0 && - lookahead != '`') ADVANCE(139); - END_STATE(); - case 135: - ACCEPT_TOKEN(aux_sym_jsLitString_token1); - if (lookahead == '-') ADVANCE(136); - if (lookahead == '/') ADVANCE(139); - if (lookahead == '`') ADVANCE(33); - if (lookahead != 0) ADVANCE(134); - END_STATE(); - case 136: - ACCEPT_TOKEN(aux_sym_jsLitString_token1); - if (lookahead == '-') ADVANCE(136); - if (lookahead == '/') ADVANCE(82); - if (lookahead == '`') ADVANCE(33); - if (lookahead != 0) ADVANCE(134); - END_STATE(); - case 137: - ACCEPT_TOKEN(aux_sym_jsLitString_token1); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '/') ADVANCE(139); - if (lookahead == '`') ADVANCE(33); - if (lookahead != 0) ADVANCE(134); - END_STATE(); - case 138: - ACCEPT_TOKEN(aux_sym_jsLitString_token1); - if (lookahead == '/') ADVANCE(82); - if (lookahead != 0 && - lookahead != '`') ADVANCE(139); - END_STATE(); - case 139: - ACCEPT_TOKEN(aux_sym_jsLitString_token1); - if (lookahead != 0 && - lookahead != '`') ADVANCE(139); - END_STATE(); - case 140: - ACCEPT_TOKEN(anon_sym_uses); - END_STATE(); - case 141: - ACCEPT_TOKEN(anon_sym_uses); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 142: - ACCEPT_TOKEN(anon_sym_import); - END_STATE(); - case 143: - ACCEPT_TOKEN(anon_sym_import); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 144: - ACCEPT_TOKEN(anon_sym_module); - END_STATE(); - case 145: - ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 146: - ACCEPT_TOKEN(sym_identifier); - END_STATE(); - case 147: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(106); - if (('\t' <= lookahead && lookahead <= '\r') || + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || @@ -2872,128 +2999,290 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(21); - if (lookahead != 0) ADVANCE(147); + lookahead == '}') ADVANCE(85); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(83); + END_STATE(); + case 84: + ACCEPT_TOKEN(sym_comment); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 85: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(85); + END_STATE(); + case 86: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '`') ADVANCE(147); + END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 88: + ACCEPT_TOKEN(anon_sym_DASH_GT); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_u2192); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_u2192); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 91: + ACCEPT_TOKEN(sym_number); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 92: + ACCEPT_TOKEN(sym_number); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(92); + END_STATE(); + case 93: + ACCEPT_TOKEN(anon_sym_BSLASH); + END_STATE(); + case 94: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 95: + ACCEPT_TOKEN(anon_sym_EQ_GT); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 96: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 97: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 98: + ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); + END_STATE(); + case 99: + ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); + END_STATE(); + case 100: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '{') ADVANCE(98); + END_STATE(); + case 101: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 102: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 103: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + END_STATE(); + case 104: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 105: + ACCEPT_TOKEN(anon_sym_DOLLAR_EQ); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 108: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 109: + ACCEPT_TOKEN(sym_string); + END_STATE(); + case 110: + ACCEPT_TOKEN(sym_string); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 111: + ACCEPT_TOKEN(sym_character); + END_STATE(); + case 112: + ACCEPT_TOKEN(sym_character); + if (lookahead == '\'') ADVANCE(111); + END_STATE(); + case 113: + ACCEPT_TOKEN(sym_character); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 114: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_EQ); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 117: + ACCEPT_TOKEN(anon_sym_PIPE); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_LT_DASH); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_LT_DASH); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_then); + END_STATE(); + case 121: + ACCEPT_TOKEN(anon_sym_then); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_else); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 124: + ACCEPT_TOKEN(anon_sym_of); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_of); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 126: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_in); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 128: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 129: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 130: + ACCEPT_TOKEN(anon_sym_0); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_0); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 133: + ACCEPT_TOKEN(anon_sym_COLON); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 134: + ACCEPT_TOKEN(anon_sym_u2200); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_where); + END_STATE(); + case 136: + ACCEPT_TOKEN(anon_sym_where); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_BQUOTE); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 139: + ACCEPT_TOKEN(aux_sym_jsLitString_token1); + if (lookahead == '-') ADVANCE(82); + if (lookahead != 0 && + lookahead != '`') ADVANCE(147); + END_STATE(); + case 140: + ACCEPT_TOKEN(aux_sym_jsLitString_token1); + if (lookahead == '-') ADVANCE(141); + if (lookahead != 0 && + lookahead != '`') ADVANCE(147); + END_STATE(); + case 141: + ACCEPT_TOKEN(aux_sym_jsLitString_token1); + if (lookahead == '-') ADVANCE(145); + if (lookahead == '`') ADVANCE(36); + if (lookahead != 0) ADVANCE(142); + END_STATE(); + case 142: + ACCEPT_TOKEN(aux_sym_jsLitString_token1); + if (lookahead == '-') ADVANCE(146); + if (lookahead != 0 && + lookahead != '`') ADVANCE(147); + END_STATE(); + case 143: + ACCEPT_TOKEN(aux_sym_jsLitString_token1); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '/') ADVANCE(147); + if (lookahead == '`') ADVANCE(36); + if (lookahead != 0) ADVANCE(142); + END_STATE(); + case 144: + ACCEPT_TOKEN(aux_sym_jsLitString_token1); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '/') ADVANCE(86); + if (lookahead == '`') ADVANCE(36); + if (lookahead != 0) ADVANCE(142); + END_STATE(); + case 145: + ACCEPT_TOKEN(aux_sym_jsLitString_token1); + if (lookahead == '-') ADVANCE(143); + if (lookahead == '/') ADVANCE(147); + if (lookahead == '`') ADVANCE(36); + if (lookahead != 0) ADVANCE(142); + END_STATE(); + case 146: + ACCEPT_TOKEN(aux_sym_jsLitString_token1); + if (lookahead == '/') ADVANCE(86); + if (lookahead != 0 && + lookahead != '`') ADVANCE(147); + END_STATE(); + case 147: + ACCEPT_TOKEN(aux_sym_jsLitString_token1); + if (lookahead != 0 && + lookahead != '`') ADVANCE(147); END_STATE(); case 148: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(109); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + ACCEPT_TOKEN(anon_sym_uses); END_STATE(); case 149: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == ',') ADVANCE(45); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + ACCEPT_TOKEN(anon_sym_uses); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 150: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '>') ADVANCE(84); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 151: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(79); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + ACCEPT_TOKEN(anon_sym_import); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 152: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(154); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 153: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(115); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + ACCEPT_TOKEN(anon_sym_module); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 154: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(158); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - (',' <= lookahead && lookahead <= '.') || - lookahead == ';' || - lookahead == '@' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '{' || - lookahead == '}') ADVANCE(33); - if (lookahead != 0) ADVANCE(155); END_STATE(); case 155: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(159); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 156: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(157); - if (lookahead == '/') ADVANCE(186); + if (lookahead == '"') ADVANCE(110); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - (',' <= lookahead && lookahead <= '.') || - lookahead == ';' || - lookahead == '@' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '{' || - lookahead == '}') ADVANCE(33); - if (lookahead != 0) ADVANCE(155); - END_STATE(); - case 157: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(157); - if (lookahead == '/') ADVANCE(80); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - (',' <= lookahead && lookahead <= '.') || - lookahead == ';' || - lookahead == '@' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '{' || - lookahead == '}') ADVANCE(33); - if (lookahead != 0) ADVANCE(155); - END_STATE(); - case 158: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(156); - if (lookahead == '/') ADVANCE(186); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - (',' <= lookahead && lookahead <= '.') || - lookahead == ';' || - lookahead == '@' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '{' || - lookahead == '}') ADVANCE(33); - if (lookahead != 0) ADVANCE(155); - END_STATE(); - case 159: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '/') ADVANCE(80); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 160: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '=') ADVANCE(100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 161: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(91); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); - END_STATE(); - case 162: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(23); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || @@ -3004,127 +3293,274 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || lookahead == '}') ADVANCE(24); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(148); + if (lookahead != 0) ADVANCE(155); + END_STATE(); + case 156: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(113); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 157: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == ',') ADVANCE(48); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 158: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(83); + if (lookahead == '>') ADVANCE(88); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 159: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(83); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 160: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(162); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 161: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(119); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 162: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(166); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + (',' <= lookahead && lookahead <= '.') || + lookahead == ';' || + lookahead == '@' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '{' || + lookahead == '}') ADVANCE(36); + if (lookahead != 0) ADVANCE(163); END_STATE(); case 163: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(185); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == '-') ADVANCE(167); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 164: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(175); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == '-') ADVANCE(165); + if (lookahead == '/') ADVANCE(197); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + (',' <= lookahead && lookahead <= '.') || + lookahead == ';' || + lookahead == '@' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '{' || + lookahead == '}') ADVANCE(36); + if (lookahead != 0) ADVANCE(163); END_STATE(); case 165: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(180); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == '-') ADVANCE(165); + if (lookahead == '/') ADVANCE(84); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + (',' <= lookahead && lookahead <= '.') || + lookahead == ';' || + lookahead == '@' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '{' || + lookahead == '}') ADVANCE(36); + if (lookahead != 0) ADVANCE(163); END_STATE(); case 166: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(119); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == '-') ADVANCE(164); + if (lookahead == '/') ADVANCE(197); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + (',' <= lookahead && lookahead <= '.') || + lookahead == ';' || + lookahead == '@' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '{' || + lookahead == '}') ADVANCE(36); + if (lookahead != 0) ADVANCE(163); END_STATE(); case 167: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(128); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == '/') ADVANCE(84); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 168: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(145); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == '=') ADVANCE(104); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 169: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(181); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == '>') ADVANCE(95); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 170: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(164); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == '\\') ADVANCE(26); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ',' || + lookahead == '.' || + lookahead == ';' || + lookahead == '@' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '{' || + lookahead == '}') ADVANCE(27); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(156); END_STATE(); case 171: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(165); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'd') ADVANCE(196); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 172: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(168); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'e') ADVANCE(186); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 173: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(183); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'e') ADVANCE(191); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 174: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(178); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'e') ADVANCE(123); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 175: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(117); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'e') ADVANCE(136); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 176: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(163); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'e') ADVANCE(153); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 177: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(179); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'e') ADVANCE(192); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 178: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(177); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'f') ADVANCE(125); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 179: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(184); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'h') ADVANCE(172); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 180: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(167); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'h') ADVANCE(173); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 181: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(141); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'l') ADVANCE(176); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 182: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(169); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'l') ADVANCE(194); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 183: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(166); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'm') ADVANCE(189); + if (lookahead == 'n') ADVANCE(127); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 184: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(143); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'm') ADVANCE(189); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 185: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(172); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'n') ADVANCE(127); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); case 186: ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(186); + if (lookahead == 'n') ADVANCE(121); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 187: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(171); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 188: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(190); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 189: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(188); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 190: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(195); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 191: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(175); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 192: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(149); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 193: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(177); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 194: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(174); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 195: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(151); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 196: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(181); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); + END_STATE(); + case 197: + ACCEPT_TOKEN(sym_identifier); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(197); END_STATE(); default: return false; @@ -3136,193 +3572,224 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (lookahead == 'c') ADVANCE(1); - if (lookahead == 'd') ADVANCE(2); - if (lookahead == 'i') ADVANCE(3); - if (lookahead == 'l') ADVANCE(4); - if (lookahead == 'p') ADVANCE(5); - if (lookahead == 'r') ADVANCE(6); - if (lookahead == 0x3bb) ADVANCE(7); + ADVANCE_MAP( + 'c', 1, + 'd', 2, + 'f', 3, + 'i', 4, + 'l', 5, + 'p', 6, + 'r', 7, + 0x3bb, 8, + ); END_STATE(); case 1: - if (lookahead == 'l') ADVANCE(8); - if (lookahead == 'o') ADVANCE(9); + if (lookahead == 'a') ADVANCE(9); + if (lookahead == 'l') ADVANCE(10); + if (lookahead == 'o') ADVANCE(11); END_STATE(); case 2: - if (lookahead == 'a') ADVANCE(10); - if (lookahead == 'e') ADVANCE(11); - if (lookahead == 'o') ADVANCE(12); + if (lookahead == 'a') ADVANCE(12); + if (lookahead == 'e') ADVANCE(13); + if (lookahead == 'o') ADVANCE(14); END_STATE(); case 3: - if (lookahead == 'f') ADVANCE(13); - if (lookahead == 'n') ADVANCE(14); + if (lookahead == 'o') ADVANCE(15); END_STATE(); case 4: - if (lookahead == 'e') ADVANCE(15); + if (lookahead == 'f') ADVANCE(16); + if (lookahead == 'n') ADVANCE(17); END_STATE(); case 5: - if (lookahead == 'f') ADVANCE(16); - if (lookahead == 't') ADVANCE(17); - END_STATE(); - case 6: if (lookahead == 'e') ADVANCE(18); END_STATE(); + case 6: + if (lookahead == 'f') ADVANCE(19); + if (lookahead == 't') ADVANCE(20); + END_STATE(); case 7: - ACCEPT_TOKEN(anon_sym_u03bb); + if (lookahead == 'e') ADVANCE(21); END_STATE(); case 8: - if (lookahead == 'a') ADVANCE(19); + ACCEPT_TOKEN(anon_sym_u03bb); END_STATE(); case 9: - if (lookahead == 'n') ADVANCE(20); + if (lookahead == 's') ADVANCE(22); END_STATE(); case 10: - if (lookahead == 't') ADVANCE(21); + if (lookahead == 'a') ADVANCE(23); END_STATE(); case 11: - if (lookahead == 'r') ADVANCE(22); + if (lookahead == 'n') ADVANCE(24); END_STATE(); case 12: - ACCEPT_TOKEN(anon_sym_do); - END_STATE(); - case 13: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 14: - if (lookahead == 'f') ADVANCE(23); - if (lookahead == 's') ADVANCE(24); - END_STATE(); - case 15: if (lookahead == 't') ADVANCE(25); END_STATE(); + case 13: + if (lookahead == 'r') ADVANCE(26); + END_STATE(); + case 14: + ACCEPT_TOKEN(anon_sym_do); + END_STATE(); + case 15: + if (lookahead == 'r') ADVANCE(27); + END_STATE(); case 16: - if (lookahead == 'u') ADVANCE(26); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 17: - if (lookahead == 'y') ADVANCE(27); - END_STATE(); - case 18: - if (lookahead == 'c') ADVANCE(28); - END_STATE(); - case 19: + if (lookahead == 'f') ADVANCE(28); if (lookahead == 's') ADVANCE(29); END_STATE(); + case 18: + if (lookahead == 't') ADVANCE(30); + END_STATE(); + case 19: + if (lookahead == 'u') ADVANCE(31); + END_STATE(); case 20: - if (lookahead == 's') ADVANCE(30); + if (lookahead == 'y') ADVANCE(32); END_STATE(); case 21: - if (lookahead == 'a') ADVANCE(31); + if (lookahead == 'c') ADVANCE(33); END_STATE(); case 22: - if (lookahead == 'i') ADVANCE(32); + if (lookahead == 'e') ADVANCE(34); END_STATE(); case 23: - if (lookahead == 'i') ADVANCE(33); + if (lookahead == 's') ADVANCE(35); END_STATE(); case 24: - if (lookahead == 't') ADVANCE(34); + if (lookahead == 's') ADVANCE(36); END_STATE(); case 25: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'a') ADVANCE(37); END_STATE(); case 26: - if (lookahead == 'n') ADVANCE(35); + if (lookahead == 'i') ADVANCE(38); END_STATE(); case 27: - if (lookahead == 'p') ADVANCE(36); + if (lookahead == 'a') ADVANCE(39); END_STATE(); case 28: - if (lookahead == 'o') ADVANCE(37); + if (lookahead == 'i') ADVANCE(40); END_STATE(); case 29: - if (lookahead == 's') ADVANCE(38); + if (lookahead == 't') ADVANCE(41); END_STATE(); case 30: - if (lookahead == 't') ADVANCE(39); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_data); + if (lookahead == 'n') ADVANCE(42); END_STATE(); case 32: - if (lookahead == 'v') ADVANCE(40); + if (lookahead == 'p') ADVANCE(43); END_STATE(); case 33: - if (lookahead == 'x') ADVANCE(41); + if (lookahead == 'o') ADVANCE(44); END_STATE(); case 34: - if (lookahead == 'a') ADVANCE(42); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 35: - if (lookahead == 'c') ADVANCE(43); + if (lookahead == 's') ADVANCE(45); END_STATE(); case 36: - if (lookahead == 'e') ADVANCE(44); + if (lookahead == 't') ADVANCE(46); END_STATE(); case 37: - if (lookahead == 'r') ADVANCE(45); + ACCEPT_TOKEN(anon_sym_data); END_STATE(); case 38: - ACCEPT_TOKEN(anon_sym_class); + if (lookahead == 'v') ADVANCE(47); END_STATE(); case 39: - if (lookahead == 'r') ADVANCE(46); + if (lookahead == 'l') ADVANCE(48); END_STATE(); case 40: - if (lookahead == 'e') ADVANCE(47); + if (lookahead == 'x') ADVANCE(49); END_STATE(); case 41: - if (lookahead == 'l') ADVANCE(48); - if (lookahead == 'r') ADVANCE(49); + if (lookahead == 'a') ADVANCE(50); END_STATE(); case 42: - if (lookahead == 'n') ADVANCE(50); + if (lookahead == 'c') ADVANCE(51); END_STATE(); case 43: - ACCEPT_TOKEN(anon_sym_pfunc); + if (lookahead == 'e') ADVANCE(52); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_ptype); + if (lookahead == 'r') ADVANCE(53); END_STATE(); case 45: - if (lookahead == 'd') ADVANCE(51); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 46: - if (lookahead == 'u') ADVANCE(52); + if (lookahead == 'r') ADVANCE(54); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_derive); - END_STATE(); - case 48: - ACCEPT_TOKEN(anon_sym_infixl); - END_STATE(); - case 49: - ACCEPT_TOKEN(anon_sym_infixr); - END_STATE(); - case 50: - if (lookahead == 'c') ADVANCE(53); - END_STATE(); - case 51: - ACCEPT_TOKEN(anon_sym_record); - END_STATE(); - case 52: - if (lookahead == 'c') ADVANCE(54); - END_STATE(); - case 53: if (lookahead == 'e') ADVANCE(55); END_STATE(); - case 54: - if (lookahead == 't') ADVANCE(56); + case 48: + if (lookahead == 'l') ADVANCE(56); END_STATE(); - case 55: - ACCEPT_TOKEN(anon_sym_instance); - END_STATE(); - case 56: - if (lookahead == 'o') ADVANCE(57); - END_STATE(); - case 57: + case 49: + if (lookahead == 'l') ADVANCE(57); if (lookahead == 'r') ADVANCE(58); END_STATE(); + case 50: + if (lookahead == 'n') ADVANCE(59); + END_STATE(); + case 51: + ACCEPT_TOKEN(anon_sym_pfunc); + END_STATE(); + case 52: + ACCEPT_TOKEN(anon_sym_ptype); + END_STATE(); + case 53: + if (lookahead == 'd') ADVANCE(60); + END_STATE(); + case 54: + if (lookahead == 'u') ADVANCE(61); + END_STATE(); + case 55: + ACCEPT_TOKEN(anon_sym_derive); + END_STATE(); + case 56: + ACCEPT_TOKEN(anon_sym_forall); + END_STATE(); + case 57: + ACCEPT_TOKEN(anon_sym_infixl); + END_STATE(); case 58: + ACCEPT_TOKEN(anon_sym_infixr); + END_STATE(); + case 59: + if (lookahead == 'c') ADVANCE(62); + END_STATE(); + case 60: + ACCEPT_TOKEN(anon_sym_record); + END_STATE(); + case 61: + if (lookahead == 'c') ADVANCE(63); + END_STATE(); + case 62: + if (lookahead == 'e') ADVANCE(64); + END_STATE(); + case 63: + if (lookahead == 't') ADVANCE(65); + END_STATE(); + case 64: + ACCEPT_TOKEN(anon_sym_instance); + END_STATE(); + case 65: + if (lookahead == 'o') ADVANCE(66); + END_STATE(); + case 66: + if (lookahead == 'r') ADVANCE(67); + END_STATE(); + case 67: ACCEPT_TOKEN(anon_sym_constructor); END_STATE(); default: @@ -3332,950 +3799,1232 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 73, .external_lex_state = 2}, - [2] = {.lex_state = 20, .external_lex_state = 2}, - [3] = {.lex_state = 19, .external_lex_state = 2}, - [4] = {.lex_state = 15, .external_lex_state = 2}, - [5] = {.lex_state = 15, .external_lex_state = 2}, - [6] = {.lex_state = 15, .external_lex_state = 2}, - [7] = {.lex_state = 15, .external_lex_state = 2}, - [8] = {.lex_state = 15, .external_lex_state = 2}, - [9] = {.lex_state = 15, .external_lex_state = 2}, - [10] = {.lex_state = 15, .external_lex_state = 2}, - [11] = {.lex_state = 15, .external_lex_state = 2}, - [12] = {.lex_state = 15, .external_lex_state = 2}, - [13] = {.lex_state = 15, .external_lex_state = 2}, - [14] = {.lex_state = 15, .external_lex_state = 2}, - [15] = {.lex_state = 15, .external_lex_state = 2}, - [16] = {.lex_state = 15, .external_lex_state = 2}, - [17] = {.lex_state = 18, .external_lex_state = 2}, - [18] = {.lex_state = 18, .external_lex_state = 2}, - [19] = {.lex_state = 18, .external_lex_state = 2}, - [20] = {.lex_state = 18, .external_lex_state = 2}, - [21] = {.lex_state = 18, .external_lex_state = 2}, - [22] = {.lex_state = 18, .external_lex_state = 2}, - [23] = {.lex_state = 18, .external_lex_state = 2}, - [24] = {.lex_state = 18, .external_lex_state = 2}, - [25] = {.lex_state = 18, .external_lex_state = 2}, - [26] = {.lex_state = 18, .external_lex_state = 2}, - [27] = {.lex_state = 18, .external_lex_state = 2}, - [28] = {.lex_state = 18, .external_lex_state = 2}, - [29] = {.lex_state = 18, .external_lex_state = 2}, - [30] = {.lex_state = 18, .external_lex_state = 2}, - [31] = {.lex_state = 18, .external_lex_state = 2}, - [32] = {.lex_state = 18, .external_lex_state = 2}, - [33] = {.lex_state = 18, .external_lex_state = 2}, - [34] = {.lex_state = 18, .external_lex_state = 2}, - [35] = {.lex_state = 18, .external_lex_state = 2}, - [36] = {.lex_state = 18, .external_lex_state = 2}, - [37] = {.lex_state = 18, .external_lex_state = 2}, - [38] = {.lex_state = 18, .external_lex_state = 2}, - [39] = {.lex_state = 18, .external_lex_state = 2}, - [40] = {.lex_state = 18, .external_lex_state = 2}, - [41] = {.lex_state = 18, .external_lex_state = 2}, - [42] = {.lex_state = 18, .external_lex_state = 2}, - [43] = {.lex_state = 18, .external_lex_state = 2}, - [44] = {.lex_state = 18, .external_lex_state = 2}, - [45] = {.lex_state = 18, .external_lex_state = 2}, - [46] = {.lex_state = 18, .external_lex_state = 2}, - [47] = {.lex_state = 18, .external_lex_state = 2}, - [48] = {.lex_state = 18, .external_lex_state = 2}, - [49] = {.lex_state = 18, .external_lex_state = 2}, - [50] = {.lex_state = 18, .external_lex_state = 2}, - [51] = {.lex_state = 18, .external_lex_state = 2}, - [52] = {.lex_state = 18, .external_lex_state = 2}, - [53] = {.lex_state = 18, .external_lex_state = 2}, - [54] = {.lex_state = 18, .external_lex_state = 2}, - [55] = {.lex_state = 18, .external_lex_state = 2}, - [56] = {.lex_state = 18, .external_lex_state = 2}, - [57] = {.lex_state = 18, .external_lex_state = 2}, - [58] = {.lex_state = 18, .external_lex_state = 2}, - [59] = {.lex_state = 18, .external_lex_state = 2}, - [60] = {.lex_state = 18, .external_lex_state = 2}, - [61] = {.lex_state = 18, .external_lex_state = 2}, - [62] = {.lex_state = 18, .external_lex_state = 2}, - [63] = {.lex_state = 18, .external_lex_state = 2}, - [64] = {.lex_state = 18, .external_lex_state = 2}, - [65] = {.lex_state = 18, .external_lex_state = 2}, - [66] = {.lex_state = 18, .external_lex_state = 2}, - [67] = {.lex_state = 18, .external_lex_state = 2}, - [68] = {.lex_state = 18, .external_lex_state = 2}, - [69] = {.lex_state = 18, .external_lex_state = 2}, - [70] = {.lex_state = 18, .external_lex_state = 2}, - [71] = {.lex_state = 18, .external_lex_state = 2}, - [72] = {.lex_state = 18, .external_lex_state = 2}, - [73] = {.lex_state = 18, .external_lex_state = 2}, - [74] = {.lex_state = 18, .external_lex_state = 2}, - [75] = {.lex_state = 18, .external_lex_state = 2}, - [76] = {.lex_state = 18, .external_lex_state = 2}, - [77] = {.lex_state = 18, .external_lex_state = 2}, - [78] = {.lex_state = 18, .external_lex_state = 2}, - [79] = {.lex_state = 18, .external_lex_state = 2}, - [80] = {.lex_state = 18, .external_lex_state = 2}, - [81] = {.lex_state = 18, .external_lex_state = 2}, - [82] = {.lex_state = 18, .external_lex_state = 2}, - [83] = {.lex_state = 18, .external_lex_state = 2}, - [84] = {.lex_state = 18, .external_lex_state = 2}, - [85] = {.lex_state = 18, .external_lex_state = 2}, - [86] = {.lex_state = 18, .external_lex_state = 2}, - [87] = {.lex_state = 18, .external_lex_state = 2}, - [88] = {.lex_state = 18, .external_lex_state = 2}, - [89] = {.lex_state = 18, .external_lex_state = 2}, - [90] = {.lex_state = 18, .external_lex_state = 2}, - [91] = {.lex_state = 18, .external_lex_state = 2}, - [92] = {.lex_state = 18, .external_lex_state = 2}, - [93] = {.lex_state = 18, .external_lex_state = 2}, - [94] = {.lex_state = 18, .external_lex_state = 2}, - [95] = {.lex_state = 18, .external_lex_state = 2}, - [96] = {.lex_state = 18, .external_lex_state = 2}, - [97] = {.lex_state = 18, .external_lex_state = 2}, - [98] = {.lex_state = 18, .external_lex_state = 2}, - [99] = {.lex_state = 18, .external_lex_state = 2}, - [100] = {.lex_state = 18, .external_lex_state = 2}, - [101] = {.lex_state = 18, .external_lex_state = 2}, - [102] = {.lex_state = 18, .external_lex_state = 2}, - [103] = {.lex_state = 18, .external_lex_state = 2}, - [104] = {.lex_state = 18, .external_lex_state = 2}, - [105] = {.lex_state = 18, .external_lex_state = 2}, - [106] = {.lex_state = 18, .external_lex_state = 2}, - [107] = {.lex_state = 18, .external_lex_state = 2}, - [108] = {.lex_state = 18, .external_lex_state = 2}, - [109] = {.lex_state = 18, .external_lex_state = 2}, - [110] = {.lex_state = 18, .external_lex_state = 2}, - [111] = {.lex_state = 18, .external_lex_state = 2}, - [112] = {.lex_state = 18, .external_lex_state = 2}, - [113] = {.lex_state = 18, .external_lex_state = 2}, - [114] = {.lex_state = 18, .external_lex_state = 2}, - [115] = {.lex_state = 18, .external_lex_state = 2}, - [116] = {.lex_state = 18, .external_lex_state = 2}, - [117] = {.lex_state = 18, .external_lex_state = 2}, - [118] = {.lex_state = 18, .external_lex_state = 2}, - [119] = {.lex_state = 18, .external_lex_state = 2}, - [120] = {.lex_state = 18, .external_lex_state = 2}, - [121] = {.lex_state = 18, .external_lex_state = 2}, - [122] = {.lex_state = 18, .external_lex_state = 2}, - [123] = {.lex_state = 18, .external_lex_state = 2}, - [124] = {.lex_state = 18, .external_lex_state = 2}, - [125] = {.lex_state = 18, .external_lex_state = 2}, - [126] = {.lex_state = 18, .external_lex_state = 2}, - [127] = {.lex_state = 18, .external_lex_state = 2}, - [128] = {.lex_state = 18, .external_lex_state = 2}, - [129] = {.lex_state = 18, .external_lex_state = 2}, - [130] = {.lex_state = 18, .external_lex_state = 2}, - [131] = {.lex_state = 18, .external_lex_state = 2}, - [132] = {.lex_state = 18, .external_lex_state = 2}, - [133] = {.lex_state = 18, .external_lex_state = 2}, - [134] = {.lex_state = 18, .external_lex_state = 2}, - [135] = {.lex_state = 18, .external_lex_state = 2}, - [136] = {.lex_state = 18, .external_lex_state = 2}, - [137] = {.lex_state = 18, .external_lex_state = 2}, - [138] = {.lex_state = 18, .external_lex_state = 2}, - [139] = {.lex_state = 18, .external_lex_state = 2}, - [140] = {.lex_state = 18, .external_lex_state = 2}, - [141] = {.lex_state = 18, .external_lex_state = 2}, - [142] = {.lex_state = 18, .external_lex_state = 2}, - [143] = {.lex_state = 18, .external_lex_state = 2}, - [144] = {.lex_state = 18, .external_lex_state = 2}, - [145] = {.lex_state = 18, .external_lex_state = 2}, - [146] = {.lex_state = 18, .external_lex_state = 2}, - [147] = {.lex_state = 18, .external_lex_state = 2}, - [148] = {.lex_state = 18, .external_lex_state = 2}, - [149] = {.lex_state = 19, .external_lex_state = 2}, - [150] = {.lex_state = 19, .external_lex_state = 2}, - [151] = {.lex_state = 70, .external_lex_state = 2}, - [152] = {.lex_state = 70, .external_lex_state = 2}, - [153] = {.lex_state = 70, .external_lex_state = 2}, - [154] = {.lex_state = 19, .external_lex_state = 2}, - [155] = {.lex_state = 19, .external_lex_state = 2}, - [156] = {.lex_state = 71, .external_lex_state = 3}, - [157] = {.lex_state = 71, .external_lex_state = 3}, - [158] = {.lex_state = 71, .external_lex_state = 3}, - [159] = {.lex_state = 8, .external_lex_state = 4}, - [160] = {.lex_state = 8, .external_lex_state = 4}, - [161] = {.lex_state = 8, .external_lex_state = 4}, - [162] = {.lex_state = 4, .external_lex_state = 4}, - [163] = {.lex_state = 4, .external_lex_state = 4}, - [164] = {.lex_state = 4, .external_lex_state = 4}, - [165] = {.lex_state = 71, .external_lex_state = 4}, - [166] = {.lex_state = 71, .external_lex_state = 4}, - [167] = {.lex_state = 71, .external_lex_state = 4}, - [168] = {.lex_state = 19, .external_lex_state = 2}, - [169] = {.lex_state = 19, .external_lex_state = 2}, - [170] = {.lex_state = 19, .external_lex_state = 2}, - [171] = {.lex_state = 19, .external_lex_state = 2}, - [172] = {.lex_state = 19, .external_lex_state = 2}, - [173] = {.lex_state = 19, .external_lex_state = 2}, - [174] = {.lex_state = 19, .external_lex_state = 2}, - [175] = {.lex_state = 19, .external_lex_state = 2}, - [176] = {.lex_state = 19, .external_lex_state = 2}, - [177] = {.lex_state = 19, .external_lex_state = 2}, - [178] = {.lex_state = 19, .external_lex_state = 2}, - [179] = {.lex_state = 19, .external_lex_state = 2}, - [180] = {.lex_state = 19, .external_lex_state = 2}, - [181] = {.lex_state = 19, .external_lex_state = 2}, - [182] = {.lex_state = 19, .external_lex_state = 2}, - [183] = {.lex_state = 19, .external_lex_state = 2}, - [184] = {.lex_state = 19, .external_lex_state = 2}, - [185] = {.lex_state = 19, .external_lex_state = 2}, - [186] = {.lex_state = 19, .external_lex_state = 2}, - [187] = {.lex_state = 19, .external_lex_state = 2}, - [188] = {.lex_state = 19, .external_lex_state = 2}, - [189] = {.lex_state = 19, .external_lex_state = 2}, - [190] = {.lex_state = 19, .external_lex_state = 2}, - [191] = {.lex_state = 19, .external_lex_state = 2}, - [192] = {.lex_state = 19, .external_lex_state = 2}, - [193] = {.lex_state = 19, .external_lex_state = 2}, - [194] = {.lex_state = 19, .external_lex_state = 2}, - [195] = {.lex_state = 19, .external_lex_state = 2}, - [196] = {.lex_state = 19, .external_lex_state = 2}, - [197] = {.lex_state = 19, .external_lex_state = 2}, - [198] = {.lex_state = 19, .external_lex_state = 2}, - [199] = {.lex_state = 19, .external_lex_state = 2}, - [200] = {.lex_state = 19, .external_lex_state = 2}, - [201] = {.lex_state = 19, .external_lex_state = 2}, - [202] = {.lex_state = 19, .external_lex_state = 2}, - [203] = {.lex_state = 19, .external_lex_state = 2}, - [204] = {.lex_state = 19, .external_lex_state = 2}, - [205] = {.lex_state = 19, .external_lex_state = 2}, - [206] = {.lex_state = 19, .external_lex_state = 2}, - [207] = {.lex_state = 19, .external_lex_state = 2}, - [208] = {.lex_state = 19, .external_lex_state = 2}, - [209] = {.lex_state = 19, .external_lex_state = 2}, - [210] = {.lex_state = 19, .external_lex_state = 2}, - [211] = {.lex_state = 19, .external_lex_state = 2}, - [212] = {.lex_state = 19, .external_lex_state = 2}, - [213] = {.lex_state = 19, .external_lex_state = 2}, - [214] = {.lex_state = 19, .external_lex_state = 2}, - [215] = {.lex_state = 19, .external_lex_state = 2}, - [216] = {.lex_state = 19, .external_lex_state = 2}, - [217] = {.lex_state = 19, .external_lex_state = 2}, - [218] = {.lex_state = 19, .external_lex_state = 2}, - [219] = {.lex_state = 19, .external_lex_state = 2}, - [220] = {.lex_state = 19, .external_lex_state = 2}, - [221] = {.lex_state = 19, .external_lex_state = 2}, - [222] = {.lex_state = 19, .external_lex_state = 2}, - [223] = {.lex_state = 19, .external_lex_state = 2}, - [224] = {.lex_state = 19, .external_lex_state = 2}, - [225] = {.lex_state = 19, .external_lex_state = 2}, - [226] = {.lex_state = 19, .external_lex_state = 2}, - [227] = {.lex_state = 19, .external_lex_state = 2}, - [228] = {.lex_state = 19, .external_lex_state = 2}, - [229] = {.lex_state = 19, .external_lex_state = 2}, - [230] = {.lex_state = 19, .external_lex_state = 2}, - [231] = {.lex_state = 19, .external_lex_state = 2}, - [232] = {.lex_state = 19, .external_lex_state = 2}, - [233] = {.lex_state = 19, .external_lex_state = 2}, - [234] = {.lex_state = 19, .external_lex_state = 2}, - [235] = {.lex_state = 19, .external_lex_state = 2}, - [236] = {.lex_state = 19, .external_lex_state = 2}, - [237] = {.lex_state = 19, .external_lex_state = 2}, - [238] = {.lex_state = 19, .external_lex_state = 2}, - [239] = {.lex_state = 19, .external_lex_state = 2}, - [240] = {.lex_state = 19, .external_lex_state = 2}, - [241] = {.lex_state = 19, .external_lex_state = 2}, - [242] = {.lex_state = 19, .external_lex_state = 2}, - [243] = {.lex_state = 19, .external_lex_state = 2}, - [244] = {.lex_state = 19, .external_lex_state = 2}, - [245] = {.lex_state = 19, .external_lex_state = 2}, - [246] = {.lex_state = 19, .external_lex_state = 2}, - [247] = {.lex_state = 19, .external_lex_state = 2}, - [248] = {.lex_state = 19, .external_lex_state = 2}, - [249] = {.lex_state = 19, .external_lex_state = 2}, - [250] = {.lex_state = 19, .external_lex_state = 2}, - [251] = {.lex_state = 19, .external_lex_state = 2}, - [252] = {.lex_state = 19, .external_lex_state = 2}, - [253] = {.lex_state = 19, .external_lex_state = 2}, - [254] = {.lex_state = 19, .external_lex_state = 2}, - [255] = {.lex_state = 19, .external_lex_state = 2}, - [256] = {.lex_state = 19, .external_lex_state = 2}, - [257] = {.lex_state = 19, .external_lex_state = 2}, - [258] = {.lex_state = 19, .external_lex_state = 2}, - [259] = {.lex_state = 19, .external_lex_state = 2}, - [260] = {.lex_state = 19, .external_lex_state = 2}, - [261] = {.lex_state = 19, .external_lex_state = 2}, - [262] = {.lex_state = 19, .external_lex_state = 2}, - [263] = {.lex_state = 19, .external_lex_state = 2}, - [264] = {.lex_state = 19, .external_lex_state = 2}, - [265] = {.lex_state = 19, .external_lex_state = 2}, - [266] = {.lex_state = 19, .external_lex_state = 2}, - [267] = {.lex_state = 19, .external_lex_state = 2}, - [268] = {.lex_state = 19, .external_lex_state = 2}, - [269] = {.lex_state = 19, .external_lex_state = 2}, - [270] = {.lex_state = 19, .external_lex_state = 2}, - [271] = {.lex_state = 19, .external_lex_state = 2}, - [272] = {.lex_state = 70, .external_lex_state = 3}, - [273] = {.lex_state = 70, .external_lex_state = 3}, - [274] = {.lex_state = 70, .external_lex_state = 4}, - [275] = {.lex_state = 70, .external_lex_state = 4}, - [276] = {.lex_state = 70, .external_lex_state = 4}, - [277] = {.lex_state = 70, .external_lex_state = 3}, - [278] = {.lex_state = 10, .external_lex_state = 4}, - [279] = {.lex_state = 6, .external_lex_state = 2}, - [280] = {.lex_state = 9, .external_lex_state = 2}, - [281] = {.lex_state = 71, .external_lex_state = 2}, - [282] = {.lex_state = 71, .external_lex_state = 2}, - [283] = {.lex_state = 9, .external_lex_state = 2}, - [284] = {.lex_state = 71, .external_lex_state = 2}, - [285] = {.lex_state = 14, .external_lex_state = 4}, - [286] = {.lex_state = 9, .external_lex_state = 2}, - [287] = {.lex_state = 14, .external_lex_state = 4}, - [288] = {.lex_state = 5, .external_lex_state = 2}, - [289] = {.lex_state = 5, .external_lex_state = 2}, - [290] = {.lex_state = 5, .external_lex_state = 2}, - [291] = {.lex_state = 6, .external_lex_state = 2}, - [292] = {.lex_state = 2, .external_lex_state = 2}, - [293] = {.lex_state = 2, .external_lex_state = 2}, - [294] = {.lex_state = 2, .external_lex_state = 2}, - [295] = {.lex_state = 3, .external_lex_state = 2}, - [296] = {.lex_state = 3, .external_lex_state = 2}, - [297] = {.lex_state = 3, .external_lex_state = 2}, - [298] = {.lex_state = 6, .external_lex_state = 2}, - [299] = {.lex_state = 10, .external_lex_state = 4}, - [300] = {.lex_state = 10, .external_lex_state = 4}, - [301] = {.lex_state = 7, .external_lex_state = 2}, - [302] = {.lex_state = 7, .external_lex_state = 2}, - [303] = {.lex_state = 7, .external_lex_state = 2}, - [304] = {.lex_state = 14, .external_lex_state = 4}, - [305] = {.lex_state = 70, .external_lex_state = 2}, - [306] = {.lex_state = 2, .external_lex_state = 4}, - [307] = {.lex_state = 2, .external_lex_state = 4}, - [308] = {.lex_state = 70, .external_lex_state = 2}, - [309] = {.lex_state = 70, .external_lex_state = 2}, - [310] = {.lex_state = 2, .external_lex_state = 4}, - [311] = {.lex_state = 70, .external_lex_state = 2}, - [312] = {.lex_state = 70, .external_lex_state = 2}, - [313] = {.lex_state = 4, .external_lex_state = 4}, - [314] = {.lex_state = 11, .external_lex_state = 2}, - [315] = {.lex_state = 13, .external_lex_state = 2}, - [316] = {.lex_state = 71, .external_lex_state = 3}, - [317] = {.lex_state = 13, .external_lex_state = 2}, - [318] = {.lex_state = 4, .external_lex_state = 4}, - [319] = {.lex_state = 71, .external_lex_state = 3}, - [320] = {.lex_state = 71, .external_lex_state = 3}, - [321] = {.lex_state = 71, .external_lex_state = 3}, - [322] = {.lex_state = 71, .external_lex_state = 4}, - [323] = {.lex_state = 71, .external_lex_state = 3}, - [324] = {.lex_state = 4, .external_lex_state = 4}, - [325] = {.lex_state = 71, .external_lex_state = 4}, - [326] = {.lex_state = 4, .external_lex_state = 4}, - [327] = {.lex_state = 71, .external_lex_state = 4}, - [328] = {.lex_state = 71, .external_lex_state = 4}, - [329] = {.lex_state = 12, .external_lex_state = 2}, - [330] = {.lex_state = 12, .external_lex_state = 2}, - [331] = {.lex_state = 12, .external_lex_state = 2}, - [332] = {.lex_state = 71, .external_lex_state = 4}, - [333] = {.lex_state = 11, .external_lex_state = 2}, - [334] = {.lex_state = 11, .external_lex_state = 2}, - [335] = {.lex_state = 8, .external_lex_state = 4}, - [336] = {.lex_state = 13, .external_lex_state = 2}, - [337] = {.lex_state = 8, .external_lex_state = 4}, - [338] = {.lex_state = 8, .external_lex_state = 4}, - [339] = {.lex_state = 4, .external_lex_state = 4}, - [340] = {.lex_state = 8, .external_lex_state = 4}, - [341] = {.lex_state = 8, .external_lex_state = 4}, - [342] = {.lex_state = 1, .external_lex_state = 2}, - [343] = {.lex_state = 70, .external_lex_state = 4}, - [344] = {.lex_state = 70, .external_lex_state = 4}, - [345] = {.lex_state = 72, .external_lex_state = 3}, - [346] = {.lex_state = 72, .external_lex_state = 3}, - [347] = {.lex_state = 70, .external_lex_state = 3}, - [348] = {.lex_state = 70, .external_lex_state = 4}, - [349] = {.lex_state = 70, .external_lex_state = 4}, - [350] = {.lex_state = 17, .external_lex_state = 2}, - [351] = {.lex_state = 70, .external_lex_state = 3}, - [352] = {.lex_state = 72, .external_lex_state = 3}, - [353] = {.lex_state = 70, .external_lex_state = 3}, - [354] = {.lex_state = 17, .external_lex_state = 2}, - [355] = {.lex_state = 70, .external_lex_state = 3}, - [356] = {.lex_state = 72, .external_lex_state = 3}, - [357] = {.lex_state = 70, .external_lex_state = 3}, - [358] = {.lex_state = 17, .external_lex_state = 2}, - [359] = {.lex_state = 70, .external_lex_state = 4}, - [360] = {.lex_state = 72, .external_lex_state = 3}, - [361] = {.lex_state = 2, .external_lex_state = 2}, - [362] = {.lex_state = 3, .external_lex_state = 2}, - [363] = {.lex_state = 14, .external_lex_state = 4}, - [364] = {.lex_state = 14, .external_lex_state = 4}, - [365] = {.lex_state = 14, .external_lex_state = 4}, - [366] = {.lex_state = 5, .external_lex_state = 2}, - [367] = {.lex_state = 14, .external_lex_state = 4}, - [368] = {.lex_state = 14, .external_lex_state = 4}, - [369] = {.lex_state = 2, .external_lex_state = 2}, - [370] = {.lex_state = 5, .external_lex_state = 2}, - [371] = {.lex_state = 73, .external_lex_state = 2}, - [372] = {.lex_state = 5, .external_lex_state = 2}, - [373] = {.lex_state = 3, .external_lex_state = 2}, - [374] = {.lex_state = 9, .external_lex_state = 2}, - [375] = {.lex_state = 5, .external_lex_state = 2}, - [376] = {.lex_state = 5, .external_lex_state = 2}, - [377] = {.lex_state = 9, .external_lex_state = 2}, - [378] = {.lex_state = 9, .external_lex_state = 2}, - [379] = {.lex_state = 9, .external_lex_state = 2}, - [380] = {.lex_state = 9, .external_lex_state = 2}, - [381] = {.lex_state = 73, .external_lex_state = 2}, - [382] = {.lex_state = 73, .external_lex_state = 2}, - [383] = {.lex_state = 3, .external_lex_state = 2}, - [384] = {.lex_state = 71, .external_lex_state = 2}, - [385] = {.lex_state = 72, .external_lex_state = 3}, - [386] = {.lex_state = 6, .external_lex_state = 2}, - [387] = {.lex_state = 71, .external_lex_state = 2}, - [388] = {.lex_state = 71, .external_lex_state = 2}, - [389] = {.lex_state = 71, .external_lex_state = 2}, - [390] = {.lex_state = 7, .external_lex_state = 2}, - [391] = {.lex_state = 6, .external_lex_state = 2}, - [392] = {.lex_state = 73, .external_lex_state = 2}, - [393] = {.lex_state = 6, .external_lex_state = 2}, - [394] = {.lex_state = 73, .external_lex_state = 2}, - [395] = {.lex_state = 73, .external_lex_state = 2}, - [396] = {.lex_state = 3, .external_lex_state = 2}, - [397] = {.lex_state = 6, .external_lex_state = 2}, - [398] = {.lex_state = 73, .external_lex_state = 2}, - [399] = {.lex_state = 6, .external_lex_state = 2}, - [400] = {.lex_state = 7, .external_lex_state = 2}, - [401] = {.lex_state = 2, .external_lex_state = 2}, - [402] = {.lex_state = 73, .external_lex_state = 2}, - [403] = {.lex_state = 7, .external_lex_state = 2}, - [404] = {.lex_state = 10, .external_lex_state = 4}, - [405] = {.lex_state = 73, .external_lex_state = 2}, - [406] = {.lex_state = 73, .external_lex_state = 2}, - [407] = {.lex_state = 2, .external_lex_state = 2}, - [408] = {.lex_state = 7, .external_lex_state = 2}, - [409] = {.lex_state = 7, .external_lex_state = 2}, - [410] = {.lex_state = 10, .external_lex_state = 4}, - [411] = {.lex_state = 2, .external_lex_state = 2}, - [412] = {.lex_state = 10, .external_lex_state = 4}, - [413] = {.lex_state = 10, .external_lex_state = 4}, - [414] = {.lex_state = 10, .external_lex_state = 4}, - [415] = {.lex_state = 3, .external_lex_state = 2}, - [416] = {.lex_state = 72, .external_lex_state = 3}, - [417] = {.lex_state = 71, .external_lex_state = 2}, - [418] = {.lex_state = 2, .external_lex_state = 4}, - [419] = {.lex_state = 2, .external_lex_state = 4}, - [420] = {.lex_state = 2, .external_lex_state = 4}, - [421] = {.lex_state = 2, .external_lex_state = 4}, - [422] = {.lex_state = 2, .external_lex_state = 4}, - [423] = {.lex_state = 19, .external_lex_state = 2}, - [424] = {.lex_state = 11, .external_lex_state = 2}, - [425] = {.lex_state = 11, .external_lex_state = 2}, - [426] = {.lex_state = 12, .external_lex_state = 2}, - [427] = {.lex_state = 16, .external_lex_state = 2}, - [428] = {.lex_state = 11, .external_lex_state = 2}, - [429] = {.lex_state = 11, .external_lex_state = 2}, + [1] = {.lex_state = 77, .external_lex_state = 2}, + [2] = {.lex_state = 18, .external_lex_state = 2}, + [3] = {.lex_state = 18, .external_lex_state = 2}, + [4] = {.lex_state = 18, .external_lex_state = 2}, + [5] = {.lex_state = 18, .external_lex_state = 2}, + [6] = {.lex_state = 18, .external_lex_state = 2}, + [7] = {.lex_state = 18, .external_lex_state = 2}, + [8] = {.lex_state = 18, .external_lex_state = 2}, + [9] = {.lex_state = 18, .external_lex_state = 2}, + [10] = {.lex_state = 18, .external_lex_state = 2}, + [11] = {.lex_state = 18, .external_lex_state = 2}, + [12] = {.lex_state = 18, .external_lex_state = 2}, + [13] = {.lex_state = 18, .external_lex_state = 2}, + [14] = {.lex_state = 18, .external_lex_state = 2}, + [15] = {.lex_state = 18, .external_lex_state = 2}, + [16] = {.lex_state = 18, .external_lex_state = 2}, + [17] = {.lex_state = 21, .external_lex_state = 2}, + [18] = {.lex_state = 21, .external_lex_state = 2}, + [19] = {.lex_state = 21, .external_lex_state = 2}, + [20] = {.lex_state = 21, .external_lex_state = 2}, + [21] = {.lex_state = 21, .external_lex_state = 2}, + [22] = {.lex_state = 21, .external_lex_state = 2}, + [23] = {.lex_state = 21, .external_lex_state = 2}, + [24] = {.lex_state = 21, .external_lex_state = 2}, + [25] = {.lex_state = 21, .external_lex_state = 2}, + [26] = {.lex_state = 21, .external_lex_state = 2}, + [27] = {.lex_state = 21, .external_lex_state = 2}, + [28] = {.lex_state = 21, .external_lex_state = 2}, + [29] = {.lex_state = 21, .external_lex_state = 2}, + [30] = {.lex_state = 21, .external_lex_state = 2}, + [31] = {.lex_state = 21, .external_lex_state = 2}, + [32] = {.lex_state = 21, .external_lex_state = 2}, + [33] = {.lex_state = 21, .external_lex_state = 2}, + [34] = {.lex_state = 21, .external_lex_state = 2}, + [35] = {.lex_state = 21, .external_lex_state = 2}, + [36] = {.lex_state = 21, .external_lex_state = 2}, + [37] = {.lex_state = 21, .external_lex_state = 2}, + [38] = {.lex_state = 21, .external_lex_state = 2}, + [39] = {.lex_state = 21, .external_lex_state = 2}, + [40] = {.lex_state = 21, .external_lex_state = 2}, + [41] = {.lex_state = 21, .external_lex_state = 2}, + [42] = {.lex_state = 21, .external_lex_state = 2}, + [43] = {.lex_state = 21, .external_lex_state = 2}, + [44] = {.lex_state = 21, .external_lex_state = 2}, + [45] = {.lex_state = 21, .external_lex_state = 2}, + [46] = {.lex_state = 21, .external_lex_state = 2}, + [47] = {.lex_state = 21, .external_lex_state = 2}, + [48] = {.lex_state = 21, .external_lex_state = 2}, + [49] = {.lex_state = 21, .external_lex_state = 2}, + [50] = {.lex_state = 21, .external_lex_state = 2}, + [51] = {.lex_state = 21, .external_lex_state = 2}, + [52] = {.lex_state = 21, .external_lex_state = 2}, + [53] = {.lex_state = 21, .external_lex_state = 2}, + [54] = {.lex_state = 21, .external_lex_state = 2}, + [55] = {.lex_state = 21, .external_lex_state = 2}, + [56] = {.lex_state = 21, .external_lex_state = 2}, + [57] = {.lex_state = 21, .external_lex_state = 2}, + [58] = {.lex_state = 21, .external_lex_state = 2}, + [59] = {.lex_state = 21, .external_lex_state = 2}, + [60] = {.lex_state = 21, .external_lex_state = 2}, + [61] = {.lex_state = 21, .external_lex_state = 2}, + [62] = {.lex_state = 21, .external_lex_state = 2}, + [63] = {.lex_state = 21, .external_lex_state = 2}, + [64] = {.lex_state = 21, .external_lex_state = 2}, + [65] = {.lex_state = 21, .external_lex_state = 2}, + [66] = {.lex_state = 21, .external_lex_state = 2}, + [67] = {.lex_state = 21, .external_lex_state = 2}, + [68] = {.lex_state = 21, .external_lex_state = 2}, + [69] = {.lex_state = 21, .external_lex_state = 2}, + [70] = {.lex_state = 21, .external_lex_state = 2}, + [71] = {.lex_state = 21, .external_lex_state = 2}, + [72] = {.lex_state = 21, .external_lex_state = 2}, + [73] = {.lex_state = 21, .external_lex_state = 2}, + [74] = {.lex_state = 21, .external_lex_state = 2}, + [75] = {.lex_state = 21, .external_lex_state = 2}, + [76] = {.lex_state = 21, .external_lex_state = 2}, + [77] = {.lex_state = 21, .external_lex_state = 2}, + [78] = {.lex_state = 21, .external_lex_state = 2}, + [79] = {.lex_state = 21, .external_lex_state = 2}, + [80] = {.lex_state = 21, .external_lex_state = 2}, + [81] = {.lex_state = 21, .external_lex_state = 2}, + [82] = {.lex_state = 21, .external_lex_state = 2}, + [83] = {.lex_state = 21, .external_lex_state = 2}, + [84] = {.lex_state = 21, .external_lex_state = 2}, + [85] = {.lex_state = 21, .external_lex_state = 2}, + [86] = {.lex_state = 21, .external_lex_state = 2}, + [87] = {.lex_state = 21, .external_lex_state = 2}, + [88] = {.lex_state = 21, .external_lex_state = 2}, + [89] = {.lex_state = 21, .external_lex_state = 2}, + [90] = {.lex_state = 21, .external_lex_state = 2}, + [91] = {.lex_state = 21, .external_lex_state = 2}, + [92] = {.lex_state = 21, .external_lex_state = 2}, + [93] = {.lex_state = 21, .external_lex_state = 2}, + [94] = {.lex_state = 21, .external_lex_state = 2}, + [95] = {.lex_state = 21, .external_lex_state = 2}, + [96] = {.lex_state = 21, .external_lex_state = 2}, + [97] = {.lex_state = 21, .external_lex_state = 2}, + [98] = {.lex_state = 21, .external_lex_state = 2}, + [99] = {.lex_state = 21, .external_lex_state = 2}, + [100] = {.lex_state = 21, .external_lex_state = 2}, + [101] = {.lex_state = 21, .external_lex_state = 2}, + [102] = {.lex_state = 21, .external_lex_state = 2}, + [103] = {.lex_state = 21, .external_lex_state = 2}, + [104] = {.lex_state = 21, .external_lex_state = 2}, + [105] = {.lex_state = 21, .external_lex_state = 2}, + [106] = {.lex_state = 21, .external_lex_state = 2}, + [107] = {.lex_state = 21, .external_lex_state = 2}, + [108] = {.lex_state = 21, .external_lex_state = 2}, + [109] = {.lex_state = 21, .external_lex_state = 2}, + [110] = {.lex_state = 21, .external_lex_state = 2}, + [111] = {.lex_state = 21, .external_lex_state = 2}, + [112] = {.lex_state = 21, .external_lex_state = 2}, + [113] = {.lex_state = 21, .external_lex_state = 2}, + [114] = {.lex_state = 21, .external_lex_state = 2}, + [115] = {.lex_state = 21, .external_lex_state = 2}, + [116] = {.lex_state = 21, .external_lex_state = 2}, + [117] = {.lex_state = 21, .external_lex_state = 2}, + [118] = {.lex_state = 21, .external_lex_state = 2}, + [119] = {.lex_state = 21, .external_lex_state = 2}, + [120] = {.lex_state = 23, .external_lex_state = 2}, + [121] = {.lex_state = 21, .external_lex_state = 2}, + [122] = {.lex_state = 21, .external_lex_state = 2}, + [123] = {.lex_state = 21, .external_lex_state = 2}, + [124] = {.lex_state = 21, .external_lex_state = 2}, + [125] = {.lex_state = 21, .external_lex_state = 2}, + [126] = {.lex_state = 21, .external_lex_state = 2}, + [127] = {.lex_state = 21, .external_lex_state = 2}, + [128] = {.lex_state = 21, .external_lex_state = 2}, + [129] = {.lex_state = 21, .external_lex_state = 2}, + [130] = {.lex_state = 21, .external_lex_state = 2}, + [131] = {.lex_state = 21, .external_lex_state = 2}, + [132] = {.lex_state = 21, .external_lex_state = 2}, + [133] = {.lex_state = 21, .external_lex_state = 2}, + [134] = {.lex_state = 21, .external_lex_state = 2}, + [135] = {.lex_state = 21, .external_lex_state = 2}, + [136] = {.lex_state = 21, .external_lex_state = 2}, + [137] = {.lex_state = 21, .external_lex_state = 2}, + [138] = {.lex_state = 21, .external_lex_state = 2}, + [139] = {.lex_state = 21, .external_lex_state = 2}, + [140] = {.lex_state = 21, .external_lex_state = 2}, + [141] = {.lex_state = 21, .external_lex_state = 2}, + [142] = {.lex_state = 21, .external_lex_state = 2}, + [143] = {.lex_state = 21, .external_lex_state = 2}, + [144] = {.lex_state = 21, .external_lex_state = 2}, + [145] = {.lex_state = 21, .external_lex_state = 2}, + [146] = {.lex_state = 21, .external_lex_state = 2}, + [147] = {.lex_state = 21, .external_lex_state = 2}, + [148] = {.lex_state = 21, .external_lex_state = 2}, + [149] = {.lex_state = 21, .external_lex_state = 2}, + [150] = {.lex_state = 21, .external_lex_state = 2}, + [151] = {.lex_state = 21, .external_lex_state = 2}, + [152] = {.lex_state = 21, .external_lex_state = 2}, + [153] = {.lex_state = 21, .external_lex_state = 2}, + [154] = {.lex_state = 21, .external_lex_state = 2}, + [155] = {.lex_state = 21, .external_lex_state = 2}, + [156] = {.lex_state = 21, .external_lex_state = 2}, + [157] = {.lex_state = 21, .external_lex_state = 2}, + [158] = {.lex_state = 21, .external_lex_state = 2}, + [159] = {.lex_state = 21, .external_lex_state = 2}, + [160] = {.lex_state = 21, .external_lex_state = 2}, + [161] = {.lex_state = 21, .external_lex_state = 2}, + [162] = {.lex_state = 21, .external_lex_state = 2}, + [163] = {.lex_state = 21, .external_lex_state = 2}, + [164] = {.lex_state = 21, .external_lex_state = 2}, + [165] = {.lex_state = 21, .external_lex_state = 2}, + [166] = {.lex_state = 21, .external_lex_state = 2}, + [167] = {.lex_state = 21, .external_lex_state = 2}, + [168] = {.lex_state = 21, .external_lex_state = 2}, + [169] = {.lex_state = 21, .external_lex_state = 2}, + [170] = {.lex_state = 21, .external_lex_state = 2}, + [171] = {.lex_state = 21, .external_lex_state = 2}, + [172] = {.lex_state = 21, .external_lex_state = 2}, + [173] = {.lex_state = 21, .external_lex_state = 2}, + [174] = {.lex_state = 21, .external_lex_state = 2}, + [175] = {.lex_state = 21, .external_lex_state = 2}, + [176] = {.lex_state = 21, .external_lex_state = 2}, + [177] = {.lex_state = 21, .external_lex_state = 2}, + [178] = {.lex_state = 21, .external_lex_state = 2}, + [179] = {.lex_state = 21, .external_lex_state = 2}, + [180] = {.lex_state = 21, .external_lex_state = 2}, + [181] = {.lex_state = 21, .external_lex_state = 2}, + [182] = {.lex_state = 21, .external_lex_state = 2}, + [183] = {.lex_state = 21, .external_lex_state = 2}, + [184] = {.lex_state = 21, .external_lex_state = 2}, + [185] = {.lex_state = 21, .external_lex_state = 2}, + [186] = {.lex_state = 21, .external_lex_state = 2}, + [187] = {.lex_state = 21, .external_lex_state = 2}, + [188] = {.lex_state = 21, .external_lex_state = 2}, + [189] = {.lex_state = 21, .external_lex_state = 2}, + [190] = {.lex_state = 21, .external_lex_state = 2}, + [191] = {.lex_state = 21, .external_lex_state = 2}, + [192] = {.lex_state = 21, .external_lex_state = 2}, + [193] = {.lex_state = 21, .external_lex_state = 2}, + [194] = {.lex_state = 21, .external_lex_state = 2}, + [195] = {.lex_state = 21, .external_lex_state = 2}, + [196] = {.lex_state = 21, .external_lex_state = 2}, + [197] = {.lex_state = 21, .external_lex_state = 2}, + [198] = {.lex_state = 21, .external_lex_state = 2}, + [199] = {.lex_state = 21, .external_lex_state = 2}, + [200] = {.lex_state = 21, .external_lex_state = 2}, + [201] = {.lex_state = 21, .external_lex_state = 2}, + [202] = {.lex_state = 21, .external_lex_state = 2}, + [203] = {.lex_state = 21, .external_lex_state = 2}, + [204] = {.lex_state = 21, .external_lex_state = 2}, + [205] = {.lex_state = 21, .external_lex_state = 2}, + [206] = {.lex_state = 21, .external_lex_state = 2}, + [207] = {.lex_state = 21, .external_lex_state = 2}, + [208] = {.lex_state = 22, .external_lex_state = 2}, + [209] = {.lex_state = 22, .external_lex_state = 2}, + [210] = {.lex_state = 22, .external_lex_state = 2}, + [211] = {.lex_state = 22, .external_lex_state = 2}, + [212] = {.lex_state = 22, .external_lex_state = 2}, + [213] = {.lex_state = 22, .external_lex_state = 2}, + [214] = {.lex_state = 22, .external_lex_state = 2}, + [215] = {.lex_state = 22, .external_lex_state = 2}, + [216] = {.lex_state = 22, .external_lex_state = 2}, + [217] = {.lex_state = 22, .external_lex_state = 2}, + [218] = {.lex_state = 22, .external_lex_state = 2}, + [219] = {.lex_state = 22, .external_lex_state = 2}, + [220] = {.lex_state = 22, .external_lex_state = 2}, + [221] = {.lex_state = 22, .external_lex_state = 2}, + [222] = {.lex_state = 22, .external_lex_state = 2}, + [223] = {.lex_state = 22, .external_lex_state = 2}, + [224] = {.lex_state = 22, .external_lex_state = 2}, + [225] = {.lex_state = 22, .external_lex_state = 2}, + [226] = {.lex_state = 22, .external_lex_state = 2}, + [227] = {.lex_state = 22, .external_lex_state = 2}, + [228] = {.lex_state = 22, .external_lex_state = 2}, + [229] = {.lex_state = 22, .external_lex_state = 2}, + [230] = {.lex_state = 22, .external_lex_state = 2}, + [231] = {.lex_state = 22, .external_lex_state = 2}, + [232] = {.lex_state = 22, .external_lex_state = 2}, + [233] = {.lex_state = 22, .external_lex_state = 2}, + [234] = {.lex_state = 22, .external_lex_state = 2}, + [235] = {.lex_state = 22, .external_lex_state = 2}, + [236] = {.lex_state = 22, .external_lex_state = 2}, + [237] = {.lex_state = 22, .external_lex_state = 2}, + [238] = {.lex_state = 22, .external_lex_state = 2}, + [239] = {.lex_state = 22, .external_lex_state = 2}, + [240] = {.lex_state = 22, .external_lex_state = 2}, + [241] = {.lex_state = 22, .external_lex_state = 2}, + [242] = {.lex_state = 22, .external_lex_state = 2}, + [243] = {.lex_state = 22, .external_lex_state = 2}, + [244] = {.lex_state = 22, .external_lex_state = 2}, + [245] = {.lex_state = 22, .external_lex_state = 2}, + [246] = {.lex_state = 22, .external_lex_state = 2}, + [247] = {.lex_state = 22, .external_lex_state = 2}, + [248] = {.lex_state = 22, .external_lex_state = 2}, + [249] = {.lex_state = 22, .external_lex_state = 2}, + [250] = {.lex_state = 22, .external_lex_state = 2}, + [251] = {.lex_state = 22, .external_lex_state = 2}, + [252] = {.lex_state = 22, .external_lex_state = 2}, + [253] = {.lex_state = 22, .external_lex_state = 2}, + [254] = {.lex_state = 22, .external_lex_state = 2}, + [255] = {.lex_state = 22, .external_lex_state = 2}, + [256] = {.lex_state = 22, .external_lex_state = 2}, + [257] = {.lex_state = 22, .external_lex_state = 2}, + [258] = {.lex_state = 22, .external_lex_state = 2}, + [259] = {.lex_state = 22, .external_lex_state = 2}, + [260] = {.lex_state = 22, .external_lex_state = 2}, + [261] = {.lex_state = 22, .external_lex_state = 2}, + [262] = {.lex_state = 22, .external_lex_state = 2}, + [263] = {.lex_state = 22, .external_lex_state = 2}, + [264] = {.lex_state = 22, .external_lex_state = 2}, + [265] = {.lex_state = 22, .external_lex_state = 2}, + [266] = {.lex_state = 22, .external_lex_state = 2}, + [267] = {.lex_state = 22, .external_lex_state = 2}, + [268] = {.lex_state = 22, .external_lex_state = 2}, + [269] = {.lex_state = 22, .external_lex_state = 2}, + [270] = {.lex_state = 22, .external_lex_state = 2}, + [271] = {.lex_state = 22, .external_lex_state = 2}, + [272] = {.lex_state = 22, .external_lex_state = 2}, + [273] = {.lex_state = 22, .external_lex_state = 2}, + [274] = {.lex_state = 22, .external_lex_state = 2}, + [275] = {.lex_state = 22, .external_lex_state = 2}, + [276] = {.lex_state = 22, .external_lex_state = 2}, + [277] = {.lex_state = 22, .external_lex_state = 2}, + [278] = {.lex_state = 22, .external_lex_state = 2}, + [279] = {.lex_state = 22, .external_lex_state = 2}, + [280] = {.lex_state = 22, .external_lex_state = 2}, + [281] = {.lex_state = 22, .external_lex_state = 2}, + [282] = {.lex_state = 22, .external_lex_state = 2}, + [283] = {.lex_state = 22, .external_lex_state = 2}, + [284] = {.lex_state = 22, .external_lex_state = 2}, + [285] = {.lex_state = 22, .external_lex_state = 2}, + [286] = {.lex_state = 22, .external_lex_state = 2}, + [287] = {.lex_state = 22, .external_lex_state = 2}, + [288] = {.lex_state = 22, .external_lex_state = 2}, + [289] = {.lex_state = 22, .external_lex_state = 2}, + [290] = {.lex_state = 22, .external_lex_state = 2}, + [291] = {.lex_state = 22, .external_lex_state = 2}, + [292] = {.lex_state = 22, .external_lex_state = 2}, + [293] = {.lex_state = 22, .external_lex_state = 2}, + [294] = {.lex_state = 22, .external_lex_state = 2}, + [295] = {.lex_state = 22, .external_lex_state = 2}, + [296] = {.lex_state = 22, .external_lex_state = 2}, + [297] = {.lex_state = 22, .external_lex_state = 2}, + [298] = {.lex_state = 22, .external_lex_state = 2}, + [299] = {.lex_state = 22, .external_lex_state = 2}, + [300] = {.lex_state = 22, .external_lex_state = 2}, + [301] = {.lex_state = 22, .external_lex_state = 2}, + [302] = {.lex_state = 22, .external_lex_state = 2}, + [303] = {.lex_state = 22, .external_lex_state = 2}, + [304] = {.lex_state = 22, .external_lex_state = 2}, + [305] = {.lex_state = 22, .external_lex_state = 2}, + [306] = {.lex_state = 22, .external_lex_state = 2}, + [307] = {.lex_state = 22, .external_lex_state = 2}, + [308] = {.lex_state = 22, .external_lex_state = 2}, + [309] = {.lex_state = 22, .external_lex_state = 2}, + [310] = {.lex_state = 22, .external_lex_state = 2}, + [311] = {.lex_state = 22, .external_lex_state = 2}, + [312] = {.lex_state = 22, .external_lex_state = 2}, + [313] = {.lex_state = 22, .external_lex_state = 2}, + [314] = {.lex_state = 22, .external_lex_state = 2}, + [315] = {.lex_state = 22, .external_lex_state = 2}, + [316] = {.lex_state = 22, .external_lex_state = 2}, + [317] = {.lex_state = 22, .external_lex_state = 2}, + [318] = {.lex_state = 22, .external_lex_state = 2}, + [319] = {.lex_state = 22, .external_lex_state = 2}, + [320] = {.lex_state = 22, .external_lex_state = 2}, + [321] = {.lex_state = 22, .external_lex_state = 2}, + [322] = {.lex_state = 22, .external_lex_state = 2}, + [323] = {.lex_state = 22, .external_lex_state = 2}, + [324] = {.lex_state = 22, .external_lex_state = 2}, + [325] = {.lex_state = 22, .external_lex_state = 2}, + [326] = {.lex_state = 22, .external_lex_state = 2}, + [327] = {.lex_state = 22, .external_lex_state = 2}, + [328] = {.lex_state = 22, .external_lex_state = 2}, + [329] = {.lex_state = 22, .external_lex_state = 2}, + [330] = {.lex_state = 22, .external_lex_state = 2}, + [331] = {.lex_state = 22, .external_lex_state = 2}, + [332] = {.lex_state = 22, .external_lex_state = 2}, + [333] = {.lex_state = 22, .external_lex_state = 2}, + [334] = {.lex_state = 74, .external_lex_state = 2}, + [335] = {.lex_state = 74, .external_lex_state = 2}, + [336] = {.lex_state = 74, .external_lex_state = 2}, + [337] = {.lex_state = 75, .external_lex_state = 3}, + [338] = {.lex_state = 3, .external_lex_state = 3}, + [339] = {.lex_state = 75, .external_lex_state = 4}, + [340] = {.lex_state = 75, .external_lex_state = 4}, + [341] = {.lex_state = 75, .external_lex_state = 4}, + [342] = {.lex_state = 75, .external_lex_state = 3}, + [343] = {.lex_state = 75, .external_lex_state = 3}, + [344] = {.lex_state = 9, .external_lex_state = 3}, + [345] = {.lex_state = 9, .external_lex_state = 3}, + [346] = {.lex_state = 9, .external_lex_state = 3}, + [347] = {.lex_state = 3, .external_lex_state = 3}, + [348] = {.lex_state = 3, .external_lex_state = 3}, + [349] = {.lex_state = 74, .external_lex_state = 3}, + [350] = {.lex_state = 74, .external_lex_state = 4}, + [351] = {.lex_state = 6, .external_lex_state = 2}, + [352] = {.lex_state = 6, .external_lex_state = 2}, + [353] = {.lex_state = 74, .external_lex_state = 3}, + [354] = {.lex_state = 74, .external_lex_state = 3}, + [355] = {.lex_state = 6, .external_lex_state = 2}, + [356] = {.lex_state = 74, .external_lex_state = 4}, + [357] = {.lex_state = 74, .external_lex_state = 4}, + [358] = {.lex_state = 4, .external_lex_state = 2}, + [359] = {.lex_state = 2, .external_lex_state = 2}, + [360] = {.lex_state = 2, .external_lex_state = 2}, + [361] = {.lex_state = 12, .external_lex_state = 3}, + [362] = {.lex_state = 12, .external_lex_state = 3}, + [363] = {.lex_state = 12, .external_lex_state = 3}, + [364] = {.lex_state = 10, .external_lex_state = 2}, + [365] = {.lex_state = 4, .external_lex_state = 2}, + [366] = {.lex_state = 4, .external_lex_state = 2}, + [367] = {.lex_state = 75, .external_lex_state = 2}, + [368] = {.lex_state = 75, .external_lex_state = 2}, + [369] = {.lex_state = 75, .external_lex_state = 2}, + [370] = {.lex_state = 8, .external_lex_state = 2}, + [371] = {.lex_state = 8, .external_lex_state = 2}, + [372] = {.lex_state = 8, .external_lex_state = 2}, + [373] = {.lex_state = 10, .external_lex_state = 2}, + [374] = {.lex_state = 10, .external_lex_state = 2}, + [375] = {.lex_state = 17, .external_lex_state = 3}, + [376] = {.lex_state = 17, .external_lex_state = 3}, + [377] = {.lex_state = 7, .external_lex_state = 2}, + [378] = {.lex_state = 7, .external_lex_state = 2}, + [379] = {.lex_state = 7, .external_lex_state = 2}, + [380] = {.lex_state = 17, .external_lex_state = 3}, + [381] = {.lex_state = 2, .external_lex_state = 2}, + [382] = {.lex_state = 5, .external_lex_state = 2}, + [383] = {.lex_state = 5, .external_lex_state = 2}, + [384] = {.lex_state = 5, .external_lex_state = 2}, + [385] = {.lex_state = 15, .external_lex_state = 2}, + [386] = {.lex_state = 77, .external_lex_state = 2}, + [387] = {.lex_state = 77, .external_lex_state = 2}, + [388] = {.lex_state = 77, .external_lex_state = 2}, + [389] = {.lex_state = 11, .external_lex_state = 3}, + [390] = {.lex_state = 11, .external_lex_state = 2}, + [391] = {.lex_state = 11, .external_lex_state = 2}, + [392] = {.lex_state = 11, .external_lex_state = 2}, + [393] = {.lex_state = 77, .external_lex_state = 2}, + [394] = {.lex_state = 77, .external_lex_state = 2}, + [395] = {.lex_state = 77, .external_lex_state = 2}, + [396] = {.lex_state = 77, .external_lex_state = 2}, + [397] = {.lex_state = 77, .external_lex_state = 2}, + [398] = {.lex_state = 11, .external_lex_state = 3}, + [399] = {.lex_state = 77, .external_lex_state = 2}, + [400] = {.lex_state = 11, .external_lex_state = 3}, + [401] = {.lex_state = 74, .external_lex_state = 2}, + [402] = {.lex_state = 74, .external_lex_state = 2}, + [403] = {.lex_state = 74, .external_lex_state = 2}, + [404] = {.lex_state = 74, .external_lex_state = 2}, + [405] = {.lex_state = 74, .external_lex_state = 2}, + [406] = {.lex_state = 77, .external_lex_state = 2}, + [407] = {.lex_state = 77, .external_lex_state = 2}, + [408] = {.lex_state = 15, .external_lex_state = 2}, + [409] = {.lex_state = 77, .external_lex_state = 2}, + [410] = {.lex_state = 77, .external_lex_state = 2}, + [411] = {.lex_state = 77, .external_lex_state = 2}, + [412] = {.lex_state = 15, .external_lex_state = 2}, + [413] = {.lex_state = 77, .external_lex_state = 2}, + [414] = {.lex_state = 75, .external_lex_state = 3}, + [415] = {.lex_state = 75, .external_lex_state = 3}, + [416] = {.lex_state = 16, .external_lex_state = 2}, + [417] = {.lex_state = 75, .external_lex_state = 3}, + [418] = {.lex_state = 14, .external_lex_state = 2}, + [419] = {.lex_state = 14, .external_lex_state = 2}, + [420] = {.lex_state = 14, .external_lex_state = 2}, + [421] = {.lex_state = 75, .external_lex_state = 3}, + [422] = {.lex_state = 75, .external_lex_state = 4}, + [423] = {.lex_state = 75, .external_lex_state = 4}, + [424] = {.lex_state = 9, .external_lex_state = 3}, + [425] = {.lex_state = 9, .external_lex_state = 3}, + [426] = {.lex_state = 9, .external_lex_state = 3}, + [427] = {.lex_state = 9, .external_lex_state = 3}, + [428] = {.lex_state = 9, .external_lex_state = 3}, + [429] = {.lex_state = 13, .external_lex_state = 2}, [430] = {.lex_state = 13, .external_lex_state = 2}, - [431] = {.lex_state = 13, .external_lex_state = 2}, + [431] = {.lex_state = 16, .external_lex_state = 2}, [432] = {.lex_state = 13, .external_lex_state = 2}, - [433] = {.lex_state = 12, .external_lex_state = 2}, - [434] = {.lex_state = 13, .external_lex_state = 2}, - [435] = {.lex_state = 12, .external_lex_state = 2}, - [436] = {.lex_state = 12, .external_lex_state = 2}, - [437] = {.lex_state = 11, .external_lex_state = 2}, - [438] = {.lex_state = 16, .external_lex_state = 2}, - [439] = {.lex_state = 13, .external_lex_state = 2}, - [440] = {.lex_state = 12, .external_lex_state = 2}, - [441] = {.lex_state = 17, .external_lex_state = 2}, - [442] = {.lex_state = 72, .external_lex_state = 3}, - [443] = {.lex_state = 72, .external_lex_state = 3}, - [444] = {.lex_state = 72, .external_lex_state = 3}, - [445] = {.lex_state = 72, .external_lex_state = 3}, - [446] = {.lex_state = 17, .external_lex_state = 2}, - [447] = {.lex_state = 17, .external_lex_state = 2}, - [448] = {.lex_state = 17, .external_lex_state = 2}, - [449] = {.lex_state = 17, .external_lex_state = 2}, - [450] = {.lex_state = 73, .external_lex_state = 2}, - [451] = {.lex_state = 73, .external_lex_state = 2}, - [452] = {.lex_state = 73, .external_lex_state = 4}, - [453] = {.lex_state = 73, .external_lex_state = 4}, - [454] = {.lex_state = 73, .external_lex_state = 4}, - [455] = {.lex_state = 73, .external_lex_state = 4}, - [456] = {.lex_state = 73, .external_lex_state = 4}, - [457] = {.lex_state = 73, .external_lex_state = 2}, - [458] = {.lex_state = 73, .external_lex_state = 2}, - [459] = {.lex_state = 73, .external_lex_state = 2}, - [460] = {.lex_state = 73, .external_lex_state = 4}, - [461] = {.lex_state = 73, .external_lex_state = 2}, - [462] = {.lex_state = 73, .external_lex_state = 2}, - [463] = {.lex_state = 73, .external_lex_state = 2}, - [464] = {.lex_state = 73, .external_lex_state = 2}, - [465] = {.lex_state = 73, .external_lex_state = 2}, - [466] = {.lex_state = 73, .external_lex_state = 4}, - [467] = {.lex_state = 73, .external_lex_state = 2}, - [468] = {.lex_state = 73, .external_lex_state = 2}, - [469] = {.lex_state = 73, .external_lex_state = 4}, - [470] = {.lex_state = 73, .external_lex_state = 2}, - [471] = {.lex_state = 73, .external_lex_state = 4}, - [472] = {.lex_state = 73, .external_lex_state = 2}, - [473] = {.lex_state = 73, .external_lex_state = 4}, - [474] = {.lex_state = 73, .external_lex_state = 2}, - [475] = {.lex_state = 73, .external_lex_state = 4}, - [476] = {.lex_state = 73, .external_lex_state = 2}, - [477] = {.lex_state = 73, .external_lex_state = 4}, - [478] = {.lex_state = 73, .external_lex_state = 4}, - [479] = {.lex_state = 73, .external_lex_state = 4}, - [480] = {.lex_state = 73, .external_lex_state = 3}, - [481] = {.lex_state = 73, .external_lex_state = 4}, - [482] = {.lex_state = 25, .external_lex_state = 2}, - [483] = {.lex_state = 73, .external_lex_state = 4}, - [484] = {.lex_state = 73, .external_lex_state = 3}, - [485] = {.lex_state = 25, .external_lex_state = 2}, - [486] = {.lex_state = 73, .external_lex_state = 2}, - [487] = {.lex_state = 73, .external_lex_state = 3}, - [488] = {.lex_state = 73, .external_lex_state = 3}, - [489] = {.lex_state = 73, .external_lex_state = 3}, - [490] = {.lex_state = 73, .external_lex_state = 2}, - [491] = {.lex_state = 73, .external_lex_state = 3}, - [492] = {.lex_state = 73, .external_lex_state = 3}, - [493] = {.lex_state = 73, .external_lex_state = 3}, - [494] = {.lex_state = 73, .external_lex_state = 3}, - [495] = {.lex_state = 73, .external_lex_state = 4}, - [496] = {.lex_state = 73, .external_lex_state = 3}, - [497] = {.lex_state = 73, .external_lex_state = 3}, - [498] = {.lex_state = 73, .external_lex_state = 2}, - [499] = {.lex_state = 73, .external_lex_state = 3}, - [500] = {.lex_state = 73, .external_lex_state = 4}, - [501] = {.lex_state = 73, .external_lex_state = 3}, - [502] = {.lex_state = 73, .external_lex_state = 3}, - [503] = {.lex_state = 73, .external_lex_state = 2}, - [504] = {.lex_state = 73, .external_lex_state = 4}, - [505] = {.lex_state = 73, .external_lex_state = 2}, - [506] = {.lex_state = 73, .external_lex_state = 4}, - [507] = {.lex_state = 73, .external_lex_state = 2}, - [508] = {.lex_state = 73, .external_lex_state = 4}, - [509] = {.lex_state = 73, .external_lex_state = 4}, - [510] = {.lex_state = 74, .external_lex_state = 2}, - [511] = {.lex_state = 73, .external_lex_state = 2}, - [512] = {.lex_state = 74, .external_lex_state = 2}, - [513] = {.lex_state = 73, .external_lex_state = 4}, - [514] = {.lex_state = 73, .external_lex_state = 2}, - [515] = {.lex_state = 73, .external_lex_state = 2}, - [516] = {.lex_state = 73, .external_lex_state = 2}, - [517] = {.lex_state = 73, .external_lex_state = 4}, - [518] = {.lex_state = 73, .external_lex_state = 4}, - [519] = {.lex_state = 73, .external_lex_state = 2}, - [520] = {.lex_state = 73, .external_lex_state = 2}, - [521] = {.lex_state = 73, .external_lex_state = 2}, - [522] = {.lex_state = 73, .external_lex_state = 2}, - [523] = {.lex_state = 73, .external_lex_state = 3}, - [524] = {.lex_state = 74, .external_lex_state = 2}, - [525] = {.lex_state = 74, .external_lex_state = 2}, - [526] = {.lex_state = 75, .external_lex_state = 3}, - [527] = {.lex_state = 73, .external_lex_state = 3}, - [528] = {.lex_state = 27, .external_lex_state = 2}, - [529] = {.lex_state = 73, .external_lex_state = 3}, - [530] = {.lex_state = 74, .external_lex_state = 2}, - [531] = {.lex_state = 75, .external_lex_state = 3}, - [532] = {.lex_state = 73, .external_lex_state = 4}, - [533] = {.lex_state = 74, .external_lex_state = 2}, - [534] = {.lex_state = 75, .external_lex_state = 3}, - [535] = {.lex_state = 73, .external_lex_state = 4}, - [536] = {.lex_state = 73, .external_lex_state = 3}, - [537] = {.lex_state = 75, .external_lex_state = 2}, - [538] = {.lex_state = 73, .external_lex_state = 4}, - [539] = {.lex_state = 73, .external_lex_state = 3}, - [540] = {.lex_state = 73, .external_lex_state = 3}, - [541] = {.lex_state = 74, .external_lex_state = 2}, - [542] = {.lex_state = 73, .external_lex_state = 3}, - [543] = {.lex_state = 74, .external_lex_state = 2}, - [544] = {.lex_state = 73, .external_lex_state = 3}, - [545] = {.lex_state = 73, .external_lex_state = 3}, - [546] = {.lex_state = 73, .external_lex_state = 3}, - [547] = {.lex_state = 74, .external_lex_state = 2}, - [548] = {.lex_state = 74, .external_lex_state = 2}, - [549] = {.lex_state = 75, .external_lex_state = 3}, - [550] = {.lex_state = 74, .external_lex_state = 2}, - [551] = {.lex_state = 74, .external_lex_state = 2}, - [552] = {.lex_state = 73, .external_lex_state = 3}, - [553] = {.lex_state = 73, .external_lex_state = 2}, - [554] = {.lex_state = 73, .external_lex_state = 2}, - [555] = {.lex_state = 73, .external_lex_state = 2}, - [556] = {.lex_state = 73, .external_lex_state = 2}, - [557] = {.lex_state = 73, .external_lex_state = 4}, - [558] = {.lex_state = 73, .external_lex_state = 2}, - [559] = {.lex_state = 73, .external_lex_state = 2}, - [560] = {.lex_state = 73, .external_lex_state = 2}, - [561] = {.lex_state = 73, .external_lex_state = 4}, - [562] = {.lex_state = 73, .external_lex_state = 2}, - [563] = {.lex_state = 73, .external_lex_state = 2}, - [564] = {.lex_state = 73, .external_lex_state = 2}, - [565] = {.lex_state = 73, .external_lex_state = 2}, - [566] = {.lex_state = 73, .external_lex_state = 2}, - [567] = {.lex_state = 73, .external_lex_state = 2}, - [568] = {.lex_state = 73, .external_lex_state = 2}, - [569] = {.lex_state = 73, .external_lex_state = 2}, - [570] = {.lex_state = 73, .external_lex_state = 4}, - [571] = {.lex_state = 73, .external_lex_state = 2}, - [572] = {.lex_state = 73, .external_lex_state = 2}, - [573] = {.lex_state = 73, .external_lex_state = 2}, - [574] = {.lex_state = 73, .external_lex_state = 2}, - [575] = {.lex_state = 74, .external_lex_state = 3}, - [576] = {.lex_state = 73, .external_lex_state = 2}, - [577] = {.lex_state = 73, .external_lex_state = 2}, - [578] = {.lex_state = 28, .external_lex_state = 2}, - [579] = {.lex_state = 73, .external_lex_state = 2}, - [580] = {.lex_state = 73, .external_lex_state = 2}, - [581] = {.lex_state = 73, .external_lex_state = 2}, - [582] = {.lex_state = 73, .external_lex_state = 2}, - [583] = {.lex_state = 73, .external_lex_state = 2}, - [584] = {.lex_state = 73, .external_lex_state = 2}, - [585] = {.lex_state = 30, .external_lex_state = 2}, - [586] = {.lex_state = 73, .external_lex_state = 4}, - [587] = {.lex_state = 73, .external_lex_state = 3}, - [588] = {.lex_state = 30, .external_lex_state = 2}, - [589] = {.lex_state = 75, .external_lex_state = 2}, - [590] = {.lex_state = 73, .external_lex_state = 2}, - [591] = {.lex_state = 73, .external_lex_state = 3}, - [592] = {.lex_state = 73, .external_lex_state = 3}, - [593] = {.lex_state = 73, .external_lex_state = 2}, - [594] = {.lex_state = 30, .external_lex_state = 2}, - [595] = {.lex_state = 75, .external_lex_state = 2}, - [596] = {.lex_state = 73, .external_lex_state = 3}, - [597] = {.lex_state = 73, .external_lex_state = 3}, - [598] = {.lex_state = 73, .external_lex_state = 4}, - [599] = {.lex_state = 73, .external_lex_state = 4}, - [600] = {.lex_state = 28, .external_lex_state = 2}, - [601] = {.lex_state = 73, .external_lex_state = 4}, - [602] = {.lex_state = 30, .external_lex_state = 2}, - [603] = {.lex_state = 75, .external_lex_state = 2}, - [604] = {.lex_state = 30, .external_lex_state = 2}, - [605] = {.lex_state = 73, .external_lex_state = 3}, - [606] = {.lex_state = 30, .external_lex_state = 2}, - [607] = {.lex_state = 75, .external_lex_state = 2}, - [608] = {.lex_state = 73, .external_lex_state = 4}, - [609] = {.lex_state = 73, .external_lex_state = 2}, - [610] = {.lex_state = 28, .external_lex_state = 2}, - [611] = {.lex_state = 73, .external_lex_state = 4}, - [612] = {.lex_state = 73, .external_lex_state = 2}, - [613] = {.lex_state = 30, .external_lex_state = 2}, - [614] = {.lex_state = 75, .external_lex_state = 2}, - [615] = {.lex_state = 75, .external_lex_state = 2}, - [616] = {.lex_state = 73, .external_lex_state = 5}, - [617] = {.lex_state = 75, .external_lex_state = 2}, - [618] = {.lex_state = 75, .external_lex_state = 2}, - [619] = {.lex_state = 30, .external_lex_state = 2}, - [620] = {.lex_state = 75, .external_lex_state = 2}, - [621] = {.lex_state = 73, .external_lex_state = 4}, - [622] = {.lex_state = 73, .external_lex_state = 4}, - [623] = {.lex_state = 73, .external_lex_state = 4}, - [624] = {.lex_state = 30, .external_lex_state = 2}, - [625] = {.lex_state = 75, .external_lex_state = 2}, - [626] = {.lex_state = 73, .external_lex_state = 4}, - [627] = {.lex_state = 73, .external_lex_state = 2}, - [628] = {.lex_state = 73, .external_lex_state = 4}, - [629] = {.lex_state = 73, .external_lex_state = 4}, - [630] = {.lex_state = 30, .external_lex_state = 2}, - [631] = {.lex_state = 75, .external_lex_state = 2}, - [632] = {.lex_state = 73, .external_lex_state = 2}, - [633] = {.lex_state = 73, .external_lex_state = 2}, - [634] = {.lex_state = 73, .external_lex_state = 4}, - [635] = {.lex_state = 73, .external_lex_state = 4}, - [636] = {.lex_state = 30, .external_lex_state = 2}, - [637] = {.lex_state = 75, .external_lex_state = 2}, - [638] = {.lex_state = 73, .external_lex_state = 4}, - [639] = {.lex_state = 29, .external_lex_state = 2}, - [640] = {.lex_state = 73, .external_lex_state = 4}, - [641] = {.lex_state = 73, .external_lex_state = 4}, - [642] = {.lex_state = 30, .external_lex_state = 2}, - [643] = {.lex_state = 75, .external_lex_state = 2}, - [644] = {.lex_state = 73, .external_lex_state = 4}, - [645] = {.lex_state = 73, .external_lex_state = 2}, - [646] = {.lex_state = 73, .external_lex_state = 2}, - [647] = {.lex_state = 30, .external_lex_state = 2}, - [648] = {.lex_state = 75, .external_lex_state = 2}, - [649] = {.lex_state = 73, .external_lex_state = 4}, - [650] = {.lex_state = 26, .external_lex_state = 2}, - [651] = {.lex_state = 30, .external_lex_state = 2}, - [652] = {.lex_state = 75, .external_lex_state = 2}, - [653] = {.lex_state = 73, .external_lex_state = 4}, - [654] = {.lex_state = 73, .external_lex_state = 2}, - [655] = {.lex_state = 73, .external_lex_state = 2}, - [656] = {.lex_state = 73, .external_lex_state = 2}, - [657] = {.lex_state = 73, .external_lex_state = 2}, - [658] = {.lex_state = 73, .external_lex_state = 2}, - [659] = {.lex_state = 29, .external_lex_state = 2}, - [660] = {.lex_state = 73, .external_lex_state = 4}, - [661] = {.lex_state = 73, .external_lex_state = 2}, - [662] = {.lex_state = 73, .external_lex_state = 2}, - [663] = {.lex_state = 73, .external_lex_state = 4}, - [664] = {.lex_state = 73, .external_lex_state = 2}, - [665] = {.lex_state = 73, .external_lex_state = 2}, - [666] = {.lex_state = 73, .external_lex_state = 4}, - [667] = {.lex_state = 73, .external_lex_state = 4}, - [668] = {.lex_state = 73, .external_lex_state = 4}, - [669] = {.lex_state = 73, .external_lex_state = 2}, - [670] = {.lex_state = 73, .external_lex_state = 2}, - [671] = {.lex_state = 73, .external_lex_state = 4}, - [672] = {.lex_state = 73, .external_lex_state = 4}, - [673] = {.lex_state = 73, .external_lex_state = 2}, - [674] = {.lex_state = 75, .external_lex_state = 3}, - [675] = {.lex_state = 75, .external_lex_state = 2}, - [676] = {.lex_state = 75, .external_lex_state = 2}, - [677] = {.lex_state = 73, .external_lex_state = 3}, - [678] = {.lex_state = 75, .external_lex_state = 2}, - [679] = {.lex_state = 73, .external_lex_state = 3}, - [680] = {.lex_state = 75, .external_lex_state = 2}, - [681] = {.lex_state = 73, .external_lex_state = 2}, - [682] = {.lex_state = 73, .external_lex_state = 3}, - [683] = {.lex_state = 75, .external_lex_state = 2}, - [684] = {.lex_state = 75, .external_lex_state = 2}, - [685] = {.lex_state = 75, .external_lex_state = 2}, - [686] = {.lex_state = 73, .external_lex_state = 4}, - [687] = {.lex_state = 75, .external_lex_state = 2}, - [688] = {.lex_state = 73, .external_lex_state = 2}, - [689] = {.lex_state = 73, .external_lex_state = 3}, - [690] = {.lex_state = 73, .external_lex_state = 3}, - [691] = {.lex_state = 75, .external_lex_state = 2}, - [692] = {.lex_state = 75, .external_lex_state = 2}, - [693] = {.lex_state = 73, .external_lex_state = 4}, - [694] = {.lex_state = 73, .external_lex_state = 2}, - [695] = {.lex_state = 73, .external_lex_state = 4}, - [696] = {.lex_state = 75, .external_lex_state = 2}, - [697] = {.lex_state = 75, .external_lex_state = 2}, - [698] = {.lex_state = 75, .external_lex_state = 2}, - [699] = {.lex_state = 73, .external_lex_state = 3}, - [700] = {.lex_state = 75, .external_lex_state = 2}, - [701] = {.lex_state = 26, .external_lex_state = 2}, - [702] = {.lex_state = 22, .external_lex_state = 2}, - [703] = {.lex_state = 73, .external_lex_state = 4}, - [704] = {.lex_state = 73, .external_lex_state = 4}, - [705] = {.lex_state = 75, .external_lex_state = 2}, - [706] = {.lex_state = 73, .external_lex_state = 3}, - [707] = {.lex_state = 73, .external_lex_state = 3}, - [708] = {.lex_state = 22, .external_lex_state = 2}, - [709] = {.lex_state = 75, .external_lex_state = 2}, - [710] = {.lex_state = 75, .external_lex_state = 2}, - [711] = {.lex_state = 73, .external_lex_state = 3}, - [712] = {.lex_state = 75, .external_lex_state = 2}, - [713] = {.lex_state = 75, .external_lex_state = 2}, - [714] = {.lex_state = 73, .external_lex_state = 2}, - [715] = {.lex_state = 75, .external_lex_state = 2}, - [716] = {.lex_state = 75, .external_lex_state = 2}, - [717] = {.lex_state = 75, .external_lex_state = 2}, - [718] = {.lex_state = 75, .external_lex_state = 2}, - [719] = {.lex_state = 73, .external_lex_state = 3}, - [720] = {.lex_state = 73, .external_lex_state = 4}, - [721] = {.lex_state = 73, .external_lex_state = 3}, - [722] = {.lex_state = 75, .external_lex_state = 2}, - [723] = {.lex_state = 75, .external_lex_state = 2}, - [724] = {.lex_state = 75, .external_lex_state = 2}, - [725] = {.lex_state = 22, .external_lex_state = 2}, - [726] = {.lex_state = 75, .external_lex_state = 2}, - [727] = {.lex_state = 75, .external_lex_state = 2}, - [728] = {.lex_state = 22, .external_lex_state = 2}, - [729] = {.lex_state = 73, .external_lex_state = 4}, - [730] = {.lex_state = 75, .external_lex_state = 2}, - [731] = {.lex_state = 75, .external_lex_state = 2}, - [732] = {.lex_state = 22, .external_lex_state = 2}, - [733] = {.lex_state = 75, .external_lex_state = 2}, - [734] = {.lex_state = 73, .external_lex_state = 3}, - [735] = {.lex_state = 74, .external_lex_state = 2}, - [736] = {.lex_state = 75, .external_lex_state = 2}, - [737] = {.lex_state = 75, .external_lex_state = 2}, - [738] = {.lex_state = 22, .external_lex_state = 2}, - [739] = {.lex_state = 73, .external_lex_state = 3}, - [740] = {.lex_state = 75, .external_lex_state = 2}, - [741] = {.lex_state = 75, .external_lex_state = 2}, - [742] = {.lex_state = 22, .external_lex_state = 2}, - [743] = {.lex_state = 73, .external_lex_state = 3}, - [744] = {.lex_state = 75, .external_lex_state = 2}, - [745] = {.lex_state = 75, .external_lex_state = 2}, - [746] = {.lex_state = 22, .external_lex_state = 2}, - [747] = {.lex_state = 75, .external_lex_state = 2}, - [748] = {.lex_state = 75, .external_lex_state = 2}, - [749] = {.lex_state = 75, .external_lex_state = 2}, - [750] = {.lex_state = 22, .external_lex_state = 2}, - [751] = {.lex_state = 73, .external_lex_state = 3}, - [752] = {.lex_state = 75, .external_lex_state = 2}, - [753] = {.lex_state = 75, .external_lex_state = 2}, - [754] = {.lex_state = 22, .external_lex_state = 2}, - [755] = {.lex_state = 73, .external_lex_state = 3}, - [756] = {.lex_state = 75, .external_lex_state = 2}, - [757] = {.lex_state = 75, .external_lex_state = 2}, - [758] = {.lex_state = 22, .external_lex_state = 2}, - [759] = {.lex_state = 75, .external_lex_state = 2}, - [760] = {.lex_state = 75, .external_lex_state = 2}, - [761] = {.lex_state = 75, .external_lex_state = 2}, - [762] = {.lex_state = 22, .external_lex_state = 2}, - [763] = {.lex_state = 75, .external_lex_state = 2}, - [764] = {.lex_state = 75, .external_lex_state = 2}, - [765] = {.lex_state = 22, .external_lex_state = 2}, - [766] = {.lex_state = 73, .external_lex_state = 4}, - [767] = {.lex_state = 22, .external_lex_state = 2}, - [768] = {.lex_state = 73, .external_lex_state = 3}, - [769] = {.lex_state = 22, .external_lex_state = 2}, - [770] = {.lex_state = 75, .external_lex_state = 2}, - [771] = {.lex_state = 22, .external_lex_state = 2}, - [772] = {.lex_state = 22, .external_lex_state = 2}, - [773] = {.lex_state = 22, .external_lex_state = 2}, - [774] = {.lex_state = 75, .external_lex_state = 2}, - [775] = {.lex_state = 22, .external_lex_state = 2}, - [776] = {.lex_state = 73, .external_lex_state = 4}, - [777] = {.lex_state = 22, .external_lex_state = 2}, - [778] = {.lex_state = 73, .external_lex_state = 3}, - [779] = {.lex_state = 22, .external_lex_state = 2}, - [780] = {.lex_state = 22, .external_lex_state = 2}, - [781] = {.lex_state = 75, .external_lex_state = 2}, - [782] = {.lex_state = 73, .external_lex_state = 3}, - [783] = {.lex_state = 75, .external_lex_state = 2}, - [784] = {.lex_state = 73, .external_lex_state = 4}, - [785] = {.lex_state = 73, .external_lex_state = 3}, - [786] = {.lex_state = 73, .external_lex_state = 4}, - [787] = {.lex_state = 75, .external_lex_state = 2}, - [788] = {.lex_state = 73, .external_lex_state = 3}, - [789] = {.lex_state = 75, .external_lex_state = 2}, - [790] = {.lex_state = 22, .external_lex_state = 2}, - [791] = {.lex_state = 74, .external_lex_state = 2}, - [792] = {.lex_state = 73, .external_lex_state = 2}, - [793] = {.lex_state = 73, .external_lex_state = 2}, - [794] = {.lex_state = 73, .external_lex_state = 6}, - [795] = {.lex_state = 74, .external_lex_state = 2}, - [796] = {.lex_state = 73, .external_lex_state = 2}, - [797] = {.lex_state = 74, .external_lex_state = 2}, - [798] = {.lex_state = 73, .external_lex_state = 2}, - [799] = {.lex_state = 73, .external_lex_state = 2}, - [800] = {.lex_state = 73, .external_lex_state = 2}, - [801] = {.lex_state = 74, .external_lex_state = 2}, - [802] = {.lex_state = 74, .external_lex_state = 2}, - [803] = {.lex_state = 73, .external_lex_state = 2}, - [804] = {.lex_state = 73, .external_lex_state = 6}, - [805] = {.lex_state = 73, .external_lex_state = 2}, - [806] = {.lex_state = 73, .external_lex_state = 6}, - [807] = {.lex_state = 73, .external_lex_state = 2}, - [808] = {.lex_state = 74, .external_lex_state = 2}, - [809] = {.lex_state = 75, .external_lex_state = 2}, - [810] = {.lex_state = 73, .external_lex_state = 2}, - [811] = {.lex_state = 73, .external_lex_state = 2}, - [812] = {.lex_state = 73, .external_lex_state = 2}, - [813] = {.lex_state = 73, .external_lex_state = 2}, - [814] = {.lex_state = 74, .external_lex_state = 2}, - [815] = {.lex_state = 73, .external_lex_state = 2}, - [816] = {.lex_state = 73, .external_lex_state = 2}, - [817] = {.lex_state = 74, .external_lex_state = 2}, - [818] = {.lex_state = 75, .external_lex_state = 2}, - [819] = {.lex_state = 75, .external_lex_state = 2}, - [820] = {.lex_state = 73, .external_lex_state = 2}, - [821] = {.lex_state = 75, .external_lex_state = 2}, - [822] = {.lex_state = 73, .external_lex_state = 2}, - [823] = {.lex_state = 73, .external_lex_state = 2}, - [824] = {.lex_state = 73, .external_lex_state = 2}, - [825] = {.lex_state = 73, .external_lex_state = 2}, - [826] = {.lex_state = 73, .external_lex_state = 2}, - [827] = {.lex_state = 73, .external_lex_state = 2}, - [828] = {.lex_state = 75, .external_lex_state = 2}, - [829] = {.lex_state = 73, .external_lex_state = 2}, - [830] = {.lex_state = 73, .external_lex_state = 2}, - [831] = {.lex_state = 73, .external_lex_state = 2}, - [832] = {.lex_state = 74, .external_lex_state = 2}, - [833] = {.lex_state = 39, .external_lex_state = 2}, - [834] = {.lex_state = 74, .external_lex_state = 2}, - [835] = {.lex_state = 73, .external_lex_state = 2}, - [836] = {.lex_state = 73, .external_lex_state = 2}, - [837] = {.lex_state = 73, .external_lex_state = 2}, - [838] = {.lex_state = 74, .external_lex_state = 2}, - [839] = {.lex_state = 73, .external_lex_state = 2}, - [840] = {.lex_state = 73, .external_lex_state = 2}, - [841] = {.lex_state = 75, .external_lex_state = 2}, - [842] = {.lex_state = 73, .external_lex_state = 2}, - [843] = {.lex_state = 75, .external_lex_state = 2}, - [844] = {.lex_state = 74, .external_lex_state = 2}, - [845] = {.lex_state = 74, .external_lex_state = 2}, - [846] = {.lex_state = 73, .external_lex_state = 2}, - [847] = {.lex_state = 73, .external_lex_state = 2}, - [848] = {.lex_state = 74, .external_lex_state = 2}, - [849] = {.lex_state = 75, .external_lex_state = 2}, - [850] = {.lex_state = 73, .external_lex_state = 2}, - [851] = {.lex_state = 73, .external_lex_state = 2}, - [852] = {.lex_state = 73, .external_lex_state = 2}, - [853] = {.lex_state = 73, .external_lex_state = 2}, - [854] = {.lex_state = 74, .external_lex_state = 2}, - [855] = {.lex_state = 73, .external_lex_state = 6}, - [856] = {.lex_state = 73, .external_lex_state = 2}, - [857] = {.lex_state = 74, .external_lex_state = 2}, - [858] = {.lex_state = 73, .external_lex_state = 2}, - [859] = {.lex_state = 73, .external_lex_state = 2}, - [860] = {.lex_state = 73, .external_lex_state = 2}, - [861] = {.lex_state = 73, .external_lex_state = 2}, - [862] = {.lex_state = 74, .external_lex_state = 2}, - [863] = {.lex_state = 73, .external_lex_state = 2}, - [864] = {.lex_state = 73, .external_lex_state = 2}, - [865] = {.lex_state = 73, .external_lex_state = 2}, - [866] = {.lex_state = 73, .external_lex_state = 6}, - [867] = {.lex_state = 73, .external_lex_state = 2}, - [868] = {.lex_state = 74, .external_lex_state = 2}, - [869] = {.lex_state = 74, .external_lex_state = 2}, - [870] = {.lex_state = 73, .external_lex_state = 2}, - [871] = {.lex_state = 73, .external_lex_state = 2}, - [872] = {.lex_state = 73, .external_lex_state = 6}, - [873] = {.lex_state = 73, .external_lex_state = 2}, - [874] = {.lex_state = 73, .external_lex_state = 2}, - [875] = {.lex_state = 74, .external_lex_state = 2}, - [876] = {.lex_state = 74, .external_lex_state = 2}, - [877] = {.lex_state = 74, .external_lex_state = 2}, - [878] = {.lex_state = 73, .external_lex_state = 6}, - [879] = {.lex_state = 73, .external_lex_state = 2}, - [880] = {.lex_state = 74, .external_lex_state = 2}, - [881] = {.lex_state = 73, .external_lex_state = 2}, - [882] = {.lex_state = 75, .external_lex_state = 2}, - [883] = {.lex_state = 73, .external_lex_state = 2}, - [884] = {.lex_state = 73, .external_lex_state = 2}, - [885] = {.lex_state = 73, .external_lex_state = 2}, - [886] = {.lex_state = 74, .external_lex_state = 2}, - [887] = {.lex_state = 75, .external_lex_state = 2}, - [888] = {.lex_state = 73, .external_lex_state = 6}, - [889] = {.lex_state = 73, .external_lex_state = 2}, - [890] = {.lex_state = 73, .external_lex_state = 2}, - [891] = {.lex_state = 73, .external_lex_state = 2}, - [892] = {.lex_state = 73, .external_lex_state = 2}, - [893] = {.lex_state = 73, .external_lex_state = 2}, - [894] = {.lex_state = 74, .external_lex_state = 2}, - [895] = {.lex_state = 73, .external_lex_state = 2}, - [896] = {.lex_state = 73, .external_lex_state = 2}, - [897] = {.lex_state = 74, .external_lex_state = 2}, - [898] = {.lex_state = 73, .external_lex_state = 2}, - [899] = {.lex_state = 74, .external_lex_state = 2}, - [900] = {.lex_state = 73, .external_lex_state = 2}, - [901] = {.lex_state = 73, .external_lex_state = 2}, - [902] = {.lex_state = 74, .external_lex_state = 2}, - [903] = {.lex_state = 73, .external_lex_state = 2}, - [904] = {.lex_state = 74, .external_lex_state = 2}, - [905] = {.lex_state = 73, .external_lex_state = 2}, - [906] = {.lex_state = 73, .external_lex_state = 2}, - [907] = {.lex_state = 73, .external_lex_state = 2}, - [908] = {.lex_state = 73, .external_lex_state = 2}, - [909] = {.lex_state = 73, .external_lex_state = 2}, - [910] = {.lex_state = 73, .external_lex_state = 2}, - [911] = {.lex_state = 73, .external_lex_state = 2}, - [912] = {.lex_state = 73, .external_lex_state = 2}, - [913] = {.lex_state = 73, .external_lex_state = 2}, - [914] = {.lex_state = 73, .external_lex_state = 2}, - [915] = {.lex_state = 73, .external_lex_state = 2}, - [916] = {.lex_state = 73, .external_lex_state = 2}, - [917] = {.lex_state = 73, .external_lex_state = 2}, - [918] = {.lex_state = 73, .external_lex_state = 2}, - [919] = {.lex_state = 73, .external_lex_state = 2}, - [920] = {.lex_state = 73, .external_lex_state = 2}, - [921] = {.lex_state = 73, .external_lex_state = 2}, - [922] = {.lex_state = 73, .external_lex_state = 2}, - [923] = {.lex_state = 73, .external_lex_state = 2}, - [924] = {.lex_state = 73, .external_lex_state = 2}, - [925] = {.lex_state = 73, .external_lex_state = 2}, - [926] = {.lex_state = 74, .external_lex_state = 2}, - [927] = {.lex_state = 75, .external_lex_state = 2}, - [928] = {.lex_state = 73, .external_lex_state = 2}, - [929] = {.lex_state = 75, .external_lex_state = 2}, - [930] = {.lex_state = 73, .external_lex_state = 6}, - [931] = {.lex_state = 73, .external_lex_state = 2}, - [932] = {.lex_state = 73, .external_lex_state = 2}, - [933] = {.lex_state = 74, .external_lex_state = 2}, - [934] = {.lex_state = 73, .external_lex_state = 2}, - [935] = {.lex_state = 73, .external_lex_state = 2}, - [936] = {.lex_state = 73, .external_lex_state = 6}, - [937] = {.lex_state = 73, .external_lex_state = 6}, - [938] = {.lex_state = 73, .external_lex_state = 2}, - [939] = {.lex_state = 73, .external_lex_state = 2}, - [940] = {.lex_state = 73, .external_lex_state = 2}, - [941] = {.lex_state = 75, .external_lex_state = 2}, - [942] = {.lex_state = 73, .external_lex_state = 2}, - [943] = {.lex_state = 73, .external_lex_state = 2}, - [944] = {.lex_state = 73, .external_lex_state = 2}, + [433] = {.lex_state = 3, .external_lex_state = 3}, + [434] = {.lex_state = 3, .external_lex_state = 3}, + [435] = {.lex_state = 3, .external_lex_state = 3}, + [436] = {.lex_state = 75, .external_lex_state = 4}, + [437] = {.lex_state = 3, .external_lex_state = 3}, + [438] = {.lex_state = 3, .external_lex_state = 3}, + [439] = {.lex_state = 16, .external_lex_state = 2}, + [440] = {.lex_state = 75, .external_lex_state = 4}, + [441] = {.lex_state = 75, .external_lex_state = 3}, + [442] = {.lex_state = 75, .external_lex_state = 4}, + [443] = {.lex_state = 74, .external_lex_state = 3}, + [444] = {.lex_state = 6, .external_lex_state = 2}, + [445] = {.lex_state = 74, .external_lex_state = 4}, + [446] = {.lex_state = 20, .external_lex_state = 2}, + [447] = {.lex_state = 6, .external_lex_state = 2}, + [448] = {.lex_state = 74, .external_lex_state = 4}, + [449] = {.lex_state = 20, .external_lex_state = 2}, + [450] = {.lex_state = 74, .external_lex_state = 3}, + [451] = {.lex_state = 20, .external_lex_state = 2}, + [452] = {.lex_state = 74, .external_lex_state = 3}, + [453] = {.lex_state = 1, .external_lex_state = 2}, + [454] = {.lex_state = 76, .external_lex_state = 4}, + [455] = {.lex_state = 76, .external_lex_state = 4}, + [456] = {.lex_state = 74, .external_lex_state = 3}, + [457] = {.lex_state = 6, .external_lex_state = 2}, + [458] = {.lex_state = 76, .external_lex_state = 4}, + [459] = {.lex_state = 76, .external_lex_state = 4}, + [460] = {.lex_state = 74, .external_lex_state = 3}, + [461] = {.lex_state = 74, .external_lex_state = 4}, + [462] = {.lex_state = 6, .external_lex_state = 2}, + [463] = {.lex_state = 6, .external_lex_state = 2}, + [464] = {.lex_state = 74, .external_lex_state = 4}, + [465] = {.lex_state = 74, .external_lex_state = 4}, + [466] = {.lex_state = 17, .external_lex_state = 3}, + [467] = {.lex_state = 12, .external_lex_state = 3}, + [468] = {.lex_state = 7, .external_lex_state = 2}, + [469] = {.lex_state = 12, .external_lex_state = 3}, + [470] = {.lex_state = 17, .external_lex_state = 3}, + [471] = {.lex_state = 76, .external_lex_state = 4}, + [472] = {.lex_state = 17, .external_lex_state = 3}, + [473] = {.lex_state = 17, .external_lex_state = 3}, + [474] = {.lex_state = 4, .external_lex_state = 2}, + [475] = {.lex_state = 4, .external_lex_state = 2}, + [476] = {.lex_state = 10, .external_lex_state = 2}, + [477] = {.lex_state = 4, .external_lex_state = 2}, + [478] = {.lex_state = 10, .external_lex_state = 2}, + [479] = {.lex_state = 10, .external_lex_state = 2}, + [480] = {.lex_state = 10, .external_lex_state = 2}, + [481] = {.lex_state = 8, .external_lex_state = 2}, + [482] = {.lex_state = 10, .external_lex_state = 2}, + [483] = {.lex_state = 75, .external_lex_state = 2}, + [484] = {.lex_state = 75, .external_lex_state = 2}, + [485] = {.lex_state = 12, .external_lex_state = 3}, + [486] = {.lex_state = 12, .external_lex_state = 3}, + [487] = {.lex_state = 75, .external_lex_state = 2}, + [488] = {.lex_state = 75, .external_lex_state = 2}, + [489] = {.lex_state = 8, .external_lex_state = 2}, + [490] = {.lex_state = 75, .external_lex_state = 2}, + [491] = {.lex_state = 8, .external_lex_state = 2}, + [492] = {.lex_state = 8, .external_lex_state = 2}, + [493] = {.lex_state = 4, .external_lex_state = 2}, + [494] = {.lex_state = 7, .external_lex_state = 2}, + [495] = {.lex_state = 4, .external_lex_state = 2}, + [496] = {.lex_state = 7, .external_lex_state = 2}, + [497] = {.lex_state = 76, .external_lex_state = 4}, + [498] = {.lex_state = 76, .external_lex_state = 4}, + [499] = {.lex_state = 17, .external_lex_state = 3}, + [500] = {.lex_state = 2, .external_lex_state = 2}, + [501] = {.lex_state = 5, .external_lex_state = 2}, + [502] = {.lex_state = 2, .external_lex_state = 2}, + [503] = {.lex_state = 7, .external_lex_state = 2}, + [504] = {.lex_state = 2, .external_lex_state = 2}, + [505] = {.lex_state = 5, .external_lex_state = 2}, + [506] = {.lex_state = 2, .external_lex_state = 2}, + [507] = {.lex_state = 5, .external_lex_state = 2}, + [508] = {.lex_state = 2, .external_lex_state = 2}, + [509] = {.lex_state = 7, .external_lex_state = 2}, + [510] = {.lex_state = 5, .external_lex_state = 2}, + [511] = {.lex_state = 5, .external_lex_state = 2}, + [512] = {.lex_state = 12, .external_lex_state = 3}, + [513] = {.lex_state = 8, .external_lex_state = 2}, + [514] = {.lex_state = 15, .external_lex_state = 2}, + [515] = {.lex_state = 11, .external_lex_state = 3}, + [516] = {.lex_state = 22, .external_lex_state = 2}, + [517] = {.lex_state = 15, .external_lex_state = 2}, + [518] = {.lex_state = 15, .external_lex_state = 2}, + [519] = {.lex_state = 11, .external_lex_state = 2}, + [520] = {.lex_state = 15, .external_lex_state = 2}, + [521] = {.lex_state = 11, .external_lex_state = 2}, + [522] = {.lex_state = 11, .external_lex_state = 2}, + [523] = {.lex_state = 11, .external_lex_state = 2}, + [524] = {.lex_state = 11, .external_lex_state = 2}, + [525] = {.lex_state = 11, .external_lex_state = 3}, + [526] = {.lex_state = 15, .external_lex_state = 2}, + [527] = {.lex_state = 11, .external_lex_state = 3}, + [528] = {.lex_state = 11, .external_lex_state = 3}, + [529] = {.lex_state = 11, .external_lex_state = 3}, + [530] = {.lex_state = 14, .external_lex_state = 2}, + [531] = {.lex_state = 13, .external_lex_state = 2}, + [532] = {.lex_state = 13, .external_lex_state = 2}, + [533] = {.lex_state = 14, .external_lex_state = 2}, + [534] = {.lex_state = 13, .external_lex_state = 2}, + [535] = {.lex_state = 14, .external_lex_state = 2}, + [536] = {.lex_state = 16, .external_lex_state = 2}, + [537] = {.lex_state = 13, .external_lex_state = 2}, + [538] = {.lex_state = 16, .external_lex_state = 2}, + [539] = {.lex_state = 16, .external_lex_state = 2}, + [540] = {.lex_state = 14, .external_lex_state = 2}, + [541] = {.lex_state = 19, .external_lex_state = 2}, + [542] = {.lex_state = 16, .external_lex_state = 2}, + [543] = {.lex_state = 19, .external_lex_state = 2}, + [544] = {.lex_state = 13, .external_lex_state = 2}, + [545] = {.lex_state = 16, .external_lex_state = 2}, + [546] = {.lex_state = 14, .external_lex_state = 2}, + [547] = {.lex_state = 76, .external_lex_state = 4}, + [548] = {.lex_state = 76, .external_lex_state = 4}, + [549] = {.lex_state = 76, .external_lex_state = 4}, + [550] = {.lex_state = 76, .external_lex_state = 4}, + [551] = {.lex_state = 20, .external_lex_state = 2}, + [552] = {.lex_state = 20, .external_lex_state = 2}, + [553] = {.lex_state = 20, .external_lex_state = 2}, + [554] = {.lex_state = 20, .external_lex_state = 2}, + [555] = {.lex_state = 20, .external_lex_state = 2}, + [556] = {.lex_state = 77, .external_lex_state = 3}, + [557] = {.lex_state = 77, .external_lex_state = 3}, + [558] = {.lex_state = 77, .external_lex_state = 3}, + [559] = {.lex_state = 77, .external_lex_state = 3}, + [560] = {.lex_state = 77, .external_lex_state = 2}, + [561] = {.lex_state = 77, .external_lex_state = 3}, + [562] = {.lex_state = 77, .external_lex_state = 3}, + [563] = {.lex_state = 77, .external_lex_state = 2}, + [564] = {.lex_state = 77, .external_lex_state = 3}, + [565] = {.lex_state = 77, .external_lex_state = 3}, + [566] = {.lex_state = 77, .external_lex_state = 3}, + [567] = {.lex_state = 77, .external_lex_state = 2}, + [568] = {.lex_state = 77, .external_lex_state = 2}, + [569] = {.lex_state = 77, .external_lex_state = 2}, + [570] = {.lex_state = 77, .external_lex_state = 2}, + [571] = {.lex_state = 77, .external_lex_state = 2}, + [572] = {.lex_state = 77, .external_lex_state = 2}, + [573] = {.lex_state = 77, .external_lex_state = 3}, + [574] = {.lex_state = 77, .external_lex_state = 3}, + [575] = {.lex_state = 77, .external_lex_state = 3}, + [576] = {.lex_state = 77, .external_lex_state = 3}, + [577] = {.lex_state = 77, .external_lex_state = 2}, + [578] = {.lex_state = 77, .external_lex_state = 2}, + [579] = {.lex_state = 77, .external_lex_state = 2}, + [580] = {.lex_state = 77, .external_lex_state = 2}, + [581] = {.lex_state = 77, .external_lex_state = 2}, + [582] = {.lex_state = 77, .external_lex_state = 2}, + [583] = {.lex_state = 77, .external_lex_state = 3}, + [584] = {.lex_state = 77, .external_lex_state = 2}, + [585] = {.lex_state = 77, .external_lex_state = 2}, + [586] = {.lex_state = 77, .external_lex_state = 3}, + [587] = {.lex_state = 77, .external_lex_state = 2}, + [588] = {.lex_state = 77, .external_lex_state = 4}, + [589] = {.lex_state = 77, .external_lex_state = 3}, + [590] = {.lex_state = 77, .external_lex_state = 3}, + [591] = {.lex_state = 28, .external_lex_state = 2}, + [592] = {.lex_state = 77, .external_lex_state = 4}, + [593] = {.lex_state = 77, .external_lex_state = 3}, + [594] = {.lex_state = 77, .external_lex_state = 3}, + [595] = {.lex_state = 28, .external_lex_state = 2}, + [596] = {.lex_state = 77, .external_lex_state = 2}, + [597] = {.lex_state = 77, .external_lex_state = 3}, + [598] = {.lex_state = 77, .external_lex_state = 3}, + [599] = {.lex_state = 77, .external_lex_state = 4}, + [600] = {.lex_state = 77, .external_lex_state = 3}, + [601] = {.lex_state = 77, .external_lex_state = 4}, + [602] = {.lex_state = 77, .external_lex_state = 4}, + [603] = {.lex_state = 77, .external_lex_state = 4}, + [604] = {.lex_state = 77, .external_lex_state = 4}, + [605] = {.lex_state = 77, .external_lex_state = 4}, + [606] = {.lex_state = 77, .external_lex_state = 4}, + [607] = {.lex_state = 77, .external_lex_state = 2}, + [608] = {.lex_state = 77, .external_lex_state = 2}, + [609] = {.lex_state = 77, .external_lex_state = 4}, + [610] = {.lex_state = 77, .external_lex_state = 4}, + [611] = {.lex_state = 77, .external_lex_state = 2}, + [612] = {.lex_state = 77, .external_lex_state = 3}, + [613] = {.lex_state = 77, .external_lex_state = 4}, + [614] = {.lex_state = 77, .external_lex_state = 2}, + [615] = {.lex_state = 77, .external_lex_state = 2}, + [616] = {.lex_state = 77, .external_lex_state = 4}, + [617] = {.lex_state = 77, .external_lex_state = 4}, + [618] = {.lex_state = 77, .external_lex_state = 4}, + [619] = {.lex_state = 77, .external_lex_state = 4}, + [620] = {.lex_state = 77, .external_lex_state = 4}, + [621] = {.lex_state = 77, .external_lex_state = 4}, + [622] = {.lex_state = 77, .external_lex_state = 4}, + [623] = {.lex_state = 77, .external_lex_state = 2}, + [624] = {.lex_state = 77, .external_lex_state = 2}, + [625] = {.lex_state = 77, .external_lex_state = 2}, + [626] = {.lex_state = 77, .external_lex_state = 2}, + [627] = {.lex_state = 77, .external_lex_state = 2}, + [628] = {.lex_state = 77, .external_lex_state = 3}, + [629] = {.lex_state = 77, .external_lex_state = 2}, + [630] = {.lex_state = 77, .external_lex_state = 2}, + [631] = {.lex_state = 77, .external_lex_state = 2}, + [632] = {.lex_state = 77, .external_lex_state = 3}, + [633] = {.lex_state = 77, .external_lex_state = 2}, + [634] = {.lex_state = 77, .external_lex_state = 3}, + [635] = {.lex_state = 77, .external_lex_state = 3}, + [636] = {.lex_state = 77, .external_lex_state = 3}, + [637] = {.lex_state = 77, .external_lex_state = 2}, + [638] = {.lex_state = 77, .external_lex_state = 2}, + [639] = {.lex_state = 77, .external_lex_state = 2}, + [640] = {.lex_state = 77, .external_lex_state = 3}, + [641] = {.lex_state = 77, .external_lex_state = 3}, + [642] = {.lex_state = 78, .external_lex_state = 2}, + [643] = {.lex_state = 78, .external_lex_state = 2}, + [644] = {.lex_state = 77, .external_lex_state = 4}, + [645] = {.lex_state = 77, .external_lex_state = 4}, + [646] = {.lex_state = 77, .external_lex_state = 2}, + [647] = {.lex_state = 79, .external_lex_state = 4}, + [648] = {.lex_state = 78, .external_lex_state = 2}, + [649] = {.lex_state = 77, .external_lex_state = 2}, + [650] = {.lex_state = 78, .external_lex_state = 2}, + [651] = {.lex_state = 77, .external_lex_state = 2}, + [652] = {.lex_state = 79, .external_lex_state = 2}, + [653] = {.lex_state = 77, .external_lex_state = 3}, + [654] = {.lex_state = 77, .external_lex_state = 2}, + [655] = {.lex_state = 78, .external_lex_state = 2}, + [656] = {.lex_state = 77, .external_lex_state = 3}, + [657] = {.lex_state = 77, .external_lex_state = 3}, + [658] = {.lex_state = 79, .external_lex_state = 4}, + [659] = {.lex_state = 77, .external_lex_state = 2}, + [660] = {.lex_state = 78, .external_lex_state = 2}, + [661] = {.lex_state = 77, .external_lex_state = 2}, + [662] = {.lex_state = 78, .external_lex_state = 2}, + [663] = {.lex_state = 77, .external_lex_state = 2}, + [664] = {.lex_state = 78, .external_lex_state = 2}, + [665] = {.lex_state = 77, .external_lex_state = 4}, + [666] = {.lex_state = 77, .external_lex_state = 2}, + [667] = {.lex_state = 77, .external_lex_state = 2}, + [668] = {.lex_state = 78, .external_lex_state = 2}, + [669] = {.lex_state = 77, .external_lex_state = 4}, + [670] = {.lex_state = 78, .external_lex_state = 2}, + [671] = {.lex_state = 77, .external_lex_state = 4}, + [672] = {.lex_state = 79, .external_lex_state = 4}, + [673] = {.lex_state = 78, .external_lex_state = 2}, + [674] = {.lex_state = 77, .external_lex_state = 4}, + [675] = {.lex_state = 77, .external_lex_state = 4}, + [676] = {.lex_state = 77, .external_lex_state = 4}, + [677] = {.lex_state = 77, .external_lex_state = 2}, + [678] = {.lex_state = 77, .external_lex_state = 2}, + [679] = {.lex_state = 78, .external_lex_state = 2}, + [680] = {.lex_state = 78, .external_lex_state = 2}, + [681] = {.lex_state = 77, .external_lex_state = 2}, + [682] = {.lex_state = 78, .external_lex_state = 2}, + [683] = {.lex_state = 30, .external_lex_state = 2}, + [684] = {.lex_state = 78, .external_lex_state = 2}, + [685] = {.lex_state = 77, .external_lex_state = 4}, + [686] = {.lex_state = 77, .external_lex_state = 4}, + [687] = {.lex_state = 77, .external_lex_state = 4}, + [688] = {.lex_state = 79, .external_lex_state = 4}, + [689] = {.lex_state = 78, .external_lex_state = 2}, + [690] = {.lex_state = 78, .external_lex_state = 2}, + [691] = {.lex_state = 77, .external_lex_state = 2}, + [692] = {.lex_state = 79, .external_lex_state = 2}, + [693] = {.lex_state = 79, .external_lex_state = 5}, + [694] = {.lex_state = 79, .external_lex_state = 2}, + [695] = {.lex_state = 77, .external_lex_state = 3}, + [696] = {.lex_state = 77, .external_lex_state = 2}, + [697] = {.lex_state = 77, .external_lex_state = 4}, + [698] = {.lex_state = 77, .external_lex_state = 3}, + [699] = {.lex_state = 32, .external_lex_state = 2}, + [700] = {.lex_state = 33, .external_lex_state = 2}, + [701] = {.lex_state = 79, .external_lex_state = 2}, + [702] = {.lex_state = 77, .external_lex_state = 3}, + [703] = {.lex_state = 77, .external_lex_state = 3}, + [704] = {.lex_state = 77, .external_lex_state = 2}, + [705] = {.lex_state = 33, .external_lex_state = 2}, + [706] = {.lex_state = 79, .external_lex_state = 2}, + [707] = {.lex_state = 77, .external_lex_state = 2}, + [708] = {.lex_state = 77, .external_lex_state = 3}, + [709] = {.lex_state = 33, .external_lex_state = 2}, + [710] = {.lex_state = 79, .external_lex_state = 2}, + [711] = {.lex_state = 32, .external_lex_state = 2}, + [712] = {.lex_state = 33, .external_lex_state = 2}, + [713] = {.lex_state = 77, .external_lex_state = 2}, + [714] = {.lex_state = 77, .external_lex_state = 3}, + [715] = {.lex_state = 77, .external_lex_state = 2}, + [716] = {.lex_state = 77, .external_lex_state = 2}, + [717] = {.lex_state = 77, .external_lex_state = 3}, + [718] = {.lex_state = 33, .external_lex_state = 2}, + [719] = {.lex_state = 79, .external_lex_state = 2}, + [720] = {.lex_state = 33, .external_lex_state = 2}, + [721] = {.lex_state = 77, .external_lex_state = 6}, + [722] = {.lex_state = 77, .external_lex_state = 2}, + [723] = {.lex_state = 77, .external_lex_state = 3}, + [724] = {.lex_state = 77, .external_lex_state = 2}, + [725] = {.lex_state = 79, .external_lex_state = 2}, + [726] = {.lex_state = 79, .external_lex_state = 2}, + [727] = {.lex_state = 33, .external_lex_state = 2}, + [728] = {.lex_state = 79, .external_lex_state = 2}, + [729] = {.lex_state = 77, .external_lex_state = 2}, + [730] = {.lex_state = 77, .external_lex_state = 3}, + [731] = {.lex_state = 77, .external_lex_state = 3}, + [732] = {.lex_state = 77, .external_lex_state = 3}, + [733] = {.lex_state = 77, .external_lex_state = 3}, + [734] = {.lex_state = 77, .external_lex_state = 2}, + [735] = {.lex_state = 33, .external_lex_state = 2}, + [736] = {.lex_state = 79, .external_lex_state = 2}, + [737] = {.lex_state = 79, .external_lex_state = 2}, + [738] = {.lex_state = 77, .external_lex_state = 2}, + [739] = {.lex_state = 77, .external_lex_state = 3}, + [740] = {.lex_state = 77, .external_lex_state = 3}, + [741] = {.lex_state = 77, .external_lex_state = 4}, + [742] = {.lex_state = 77, .external_lex_state = 3}, + [743] = {.lex_state = 33, .external_lex_state = 2}, + [744] = {.lex_state = 79, .external_lex_state = 2}, + [745] = {.lex_state = 77, .external_lex_state = 3}, + [746] = {.lex_state = 77, .external_lex_state = 2}, + [747] = {.lex_state = 77, .external_lex_state = 3}, + [748] = {.lex_state = 77, .external_lex_state = 2}, + [749] = {.lex_state = 77, .external_lex_state = 4}, + [750] = {.lex_state = 77, .external_lex_state = 3}, + [751] = {.lex_state = 77, .external_lex_state = 2}, + [752] = {.lex_state = 77, .external_lex_state = 2}, + [753] = {.lex_state = 77, .external_lex_state = 2}, + [754] = {.lex_state = 77, .external_lex_state = 3}, + [755] = {.lex_state = 29, .external_lex_state = 2}, + [756] = {.lex_state = 77, .external_lex_state = 3}, + [757] = {.lex_state = 77, .external_lex_state = 4}, + [758] = {.lex_state = 77, .external_lex_state = 4}, + [759] = {.lex_state = 33, .external_lex_state = 2}, + [760] = {.lex_state = 79, .external_lex_state = 2}, + [761] = {.lex_state = 77, .external_lex_state = 2}, + [762] = {.lex_state = 79, .external_lex_state = 4}, + [763] = {.lex_state = 31, .external_lex_state = 2}, + [764] = {.lex_state = 77, .external_lex_state = 3}, + [765] = {.lex_state = 77, .external_lex_state = 3}, + [766] = {.lex_state = 77, .external_lex_state = 3}, + [767] = {.lex_state = 33, .external_lex_state = 2}, + [768] = {.lex_state = 77, .external_lex_state = 2}, + [769] = {.lex_state = 77, .external_lex_state = 2}, + [770] = {.lex_state = 77, .external_lex_state = 3}, + [771] = {.lex_state = 77, .external_lex_state = 3}, + [772] = {.lex_state = 77, .external_lex_state = 2}, + [773] = {.lex_state = 77, .external_lex_state = 2}, + [774] = {.lex_state = 77, .external_lex_state = 2}, + [775] = {.lex_state = 78, .external_lex_state = 4}, + [776] = {.lex_state = 77, .external_lex_state = 2}, + [777] = {.lex_state = 79, .external_lex_state = 2}, + [778] = {.lex_state = 77, .external_lex_state = 2}, + [779] = {.lex_state = 77, .external_lex_state = 2}, + [780] = {.lex_state = 77, .external_lex_state = 3}, + [781] = {.lex_state = 77, .external_lex_state = 3}, + [782] = {.lex_state = 77, .external_lex_state = 2}, + [783] = {.lex_state = 77, .external_lex_state = 3}, + [784] = {.lex_state = 77, .external_lex_state = 3}, + [785] = {.lex_state = 77, .external_lex_state = 3}, + [786] = {.lex_state = 77, .external_lex_state = 3}, + [787] = {.lex_state = 77, .external_lex_state = 3}, + [788] = {.lex_state = 77, .external_lex_state = 3}, + [789] = {.lex_state = 77, .external_lex_state = 3}, + [790] = {.lex_state = 77, .external_lex_state = 3}, + [791] = {.lex_state = 77, .external_lex_state = 3}, + [792] = {.lex_state = 77, .external_lex_state = 2}, + [793] = {.lex_state = 77, .external_lex_state = 3}, + [794] = {.lex_state = 77, .external_lex_state = 3}, + [795] = {.lex_state = 77, .external_lex_state = 2}, + [796] = {.lex_state = 77, .external_lex_state = 3}, + [797] = {.lex_state = 77, .external_lex_state = 3}, + [798] = {.lex_state = 77, .external_lex_state = 4}, + [799] = {.lex_state = 77, .external_lex_state = 3}, + [800] = {.lex_state = 77, .external_lex_state = 3}, + [801] = {.lex_state = 77, .external_lex_state = 3}, + [802] = {.lex_state = 77, .external_lex_state = 3}, + [803] = {.lex_state = 77, .external_lex_state = 3}, + [804] = {.lex_state = 77, .external_lex_state = 2}, + [805] = {.lex_state = 77, .external_lex_state = 3}, + [806] = {.lex_state = 77, .external_lex_state = 3}, + [807] = {.lex_state = 77, .external_lex_state = 2}, + [808] = {.lex_state = 77, .external_lex_state = 3}, + [809] = {.lex_state = 77, .external_lex_state = 3}, + [810] = {.lex_state = 77, .external_lex_state = 2}, + [811] = {.lex_state = 77, .external_lex_state = 3}, + [812] = {.lex_state = 77, .external_lex_state = 3}, + [813] = {.lex_state = 77, .external_lex_state = 3}, + [814] = {.lex_state = 77, .external_lex_state = 3}, + [815] = {.lex_state = 77, .external_lex_state = 3}, + [816] = {.lex_state = 77, .external_lex_state = 2}, + [817] = {.lex_state = 77, .external_lex_state = 3}, + [818] = {.lex_state = 77, .external_lex_state = 3}, + [819] = {.lex_state = 77, .external_lex_state = 2}, + [820] = {.lex_state = 77, .external_lex_state = 3}, + [821] = {.lex_state = 77, .external_lex_state = 3}, + [822] = {.lex_state = 31, .external_lex_state = 2}, + [823] = {.lex_state = 77, .external_lex_state = 3}, + [824] = {.lex_state = 77, .external_lex_state = 3}, + [825] = {.lex_state = 77, .external_lex_state = 2}, + [826] = {.lex_state = 77, .external_lex_state = 2}, + [827] = {.lex_state = 77, .external_lex_state = 2}, + [828] = {.lex_state = 79, .external_lex_state = 2}, + [829] = {.lex_state = 77, .external_lex_state = 2}, + [830] = {.lex_state = 77, .external_lex_state = 2}, + [831] = {.lex_state = 77, .external_lex_state = 2}, + [832] = {.lex_state = 77, .external_lex_state = 3}, + [833] = {.lex_state = 33, .external_lex_state = 2}, + [834] = {.lex_state = 77, .external_lex_state = 2}, + [835] = {.lex_state = 77, .external_lex_state = 2}, + [836] = {.lex_state = 77, .external_lex_state = 3}, + [837] = {.lex_state = 77, .external_lex_state = 2}, + [838] = {.lex_state = 77, .external_lex_state = 2}, + [839] = {.lex_state = 33, .external_lex_state = 2}, + [840] = {.lex_state = 79, .external_lex_state = 2}, + [841] = {.lex_state = 77, .external_lex_state = 2}, + [842] = {.lex_state = 77, .external_lex_state = 2}, + [843] = {.lex_state = 77, .external_lex_state = 3}, + [844] = {.lex_state = 77, .external_lex_state = 2}, + [845] = {.lex_state = 77, .external_lex_state = 3}, + [846] = {.lex_state = 31, .external_lex_state = 2}, + [847] = {.lex_state = 77, .external_lex_state = 2}, + [848] = {.lex_state = 77, .external_lex_state = 3}, + [849] = {.lex_state = 77, .external_lex_state = 2}, + [850] = {.lex_state = 77, .external_lex_state = 3}, + [851] = {.lex_state = 33, .external_lex_state = 2}, + [852] = {.lex_state = 79, .external_lex_state = 2}, + [853] = {.lex_state = 77, .external_lex_state = 2}, + [854] = {.lex_state = 77, .external_lex_state = 2}, + [855] = {.lex_state = 77, .external_lex_state = 3}, + [856] = {.lex_state = 77, .external_lex_state = 2}, + [857] = {.lex_state = 33, .external_lex_state = 2}, + [858] = {.lex_state = 77, .external_lex_state = 3}, + [859] = {.lex_state = 77, .external_lex_state = 3}, + [860] = {.lex_state = 77, .external_lex_state = 2}, + [861] = {.lex_state = 33, .external_lex_state = 2}, + [862] = {.lex_state = 77, .external_lex_state = 3}, + [863] = {.lex_state = 77, .external_lex_state = 2}, + [864] = {.lex_state = 25, .external_lex_state = 2}, + [865] = {.lex_state = 77, .external_lex_state = 4}, + [866] = {.lex_state = 77, .external_lex_state = 5}, + [867] = {.lex_state = 79, .external_lex_state = 2}, + [868] = {.lex_state = 77, .external_lex_state = 3}, + [869] = {.lex_state = 77, .external_lex_state = 4}, + [870] = {.lex_state = 77, .external_lex_state = 2}, + [871] = {.lex_state = 79, .external_lex_state = 2}, + [872] = {.lex_state = 77, .external_lex_state = 4}, + [873] = {.lex_state = 79, .external_lex_state = 2}, + [874] = {.lex_state = 77, .external_lex_state = 3}, + [875] = {.lex_state = 79, .external_lex_state = 2}, + [876] = {.lex_state = 79, .external_lex_state = 2}, + [877] = {.lex_state = 77, .external_lex_state = 3}, + [878] = {.lex_state = 79, .external_lex_state = 2}, + [879] = {.lex_state = 77, .external_lex_state = 2}, + [880] = {.lex_state = 79, .external_lex_state = 2}, + [881] = {.lex_state = 79, .external_lex_state = 2}, + [882] = {.lex_state = 77, .external_lex_state = 3}, + [883] = {.lex_state = 25, .external_lex_state = 2}, + [884] = {.lex_state = 79, .external_lex_state = 2}, + [885] = {.lex_state = 25, .external_lex_state = 2}, + [886] = {.lex_state = 79, .external_lex_state = 2}, + [887] = {.lex_state = 79, .external_lex_state = 2}, + [888] = {.lex_state = 77, .external_lex_state = 4}, + [889] = {.lex_state = 79, .external_lex_state = 2}, + [890] = {.lex_state = 77, .external_lex_state = 4}, + [891] = {.lex_state = 77, .external_lex_state = 3}, + [892] = {.lex_state = 77, .external_lex_state = 4}, + [893] = {.lex_state = 77, .external_lex_state = 4}, + [894] = {.lex_state = 29, .external_lex_state = 2}, + [895] = {.lex_state = 77, .external_lex_state = 3}, + [896] = {.lex_state = 79, .external_lex_state = 2}, + [897] = {.lex_state = 77, .external_lex_state = 4}, + [898] = {.lex_state = 77, .external_lex_state = 4}, + [899] = {.lex_state = 78, .external_lex_state = 2}, + [900] = {.lex_state = 77, .external_lex_state = 3}, + [901] = {.lex_state = 79, .external_lex_state = 2}, + [902] = {.lex_state = 77, .external_lex_state = 4}, + [903] = {.lex_state = 77, .external_lex_state = 4}, + [904] = {.lex_state = 79, .external_lex_state = 2}, + [905] = {.lex_state = 79, .external_lex_state = 2}, + [906] = {.lex_state = 77, .external_lex_state = 3}, + [907] = {.lex_state = 79, .external_lex_state = 2}, + [908] = {.lex_state = 77, .external_lex_state = 4}, + [909] = {.lex_state = 79, .external_lex_state = 2}, + [910] = {.lex_state = 77, .external_lex_state = 4}, + [911] = {.lex_state = 79, .external_lex_state = 2}, + [912] = {.lex_state = 79, .external_lex_state = 2}, + [913] = {.lex_state = 79, .external_lex_state = 2}, + [914] = {.lex_state = 77, .external_lex_state = 3}, + [915] = {.lex_state = 79, .external_lex_state = 2}, + [916] = {.lex_state = 79, .external_lex_state = 2}, + [917] = {.lex_state = 77, .external_lex_state = 3}, + [918] = {.lex_state = 79, .external_lex_state = 2}, + [919] = {.lex_state = 77, .external_lex_state = 4}, + [920] = {.lex_state = 79, .external_lex_state = 2}, + [921] = {.lex_state = 79, .external_lex_state = 2}, + [922] = {.lex_state = 79, .external_lex_state = 2}, + [923] = {.lex_state = 25, .external_lex_state = 2}, + [924] = {.lex_state = 79, .external_lex_state = 2}, + [925] = {.lex_state = 79, .external_lex_state = 2}, + [926] = {.lex_state = 25, .external_lex_state = 2}, + [927] = {.lex_state = 79, .external_lex_state = 2}, + [928] = {.lex_state = 79, .external_lex_state = 2}, + [929] = {.lex_state = 25, .external_lex_state = 2}, + [930] = {.lex_state = 77, .external_lex_state = 3}, + [931] = {.lex_state = 79, .external_lex_state = 2}, + [932] = {.lex_state = 79, .external_lex_state = 2}, + [933] = {.lex_state = 79, .external_lex_state = 2}, + [934] = {.lex_state = 25, .external_lex_state = 2}, + [935] = {.lex_state = 79, .external_lex_state = 2}, + [936] = {.lex_state = 79, .external_lex_state = 2}, + [937] = {.lex_state = 79, .external_lex_state = 2}, + [938] = {.lex_state = 25, .external_lex_state = 2}, + [939] = {.lex_state = 77, .external_lex_state = 4}, + [940] = {.lex_state = 77, .external_lex_state = 4}, + [941] = {.lex_state = 79, .external_lex_state = 2}, + [942] = {.lex_state = 79, .external_lex_state = 2}, + [943] = {.lex_state = 25, .external_lex_state = 2}, + [944] = {.lex_state = 79, .external_lex_state = 2}, + [945] = {.lex_state = 79, .external_lex_state = 2}, + [946] = {.lex_state = 79, .external_lex_state = 2}, + [947] = {.lex_state = 25, .external_lex_state = 2}, + [948] = {.lex_state = 77, .external_lex_state = 4}, + [949] = {.lex_state = 79, .external_lex_state = 2}, + [950] = {.lex_state = 79, .external_lex_state = 2}, + [951] = {.lex_state = 25, .external_lex_state = 2}, + [952] = {.lex_state = 79, .external_lex_state = 2}, + [953] = {.lex_state = 79, .external_lex_state = 2}, + [954] = {.lex_state = 79, .external_lex_state = 2}, + [955] = {.lex_state = 25, .external_lex_state = 2}, + [956] = {.lex_state = 77, .external_lex_state = 2}, + [957] = {.lex_state = 77, .external_lex_state = 3}, + [958] = {.lex_state = 79, .external_lex_state = 2}, + [959] = {.lex_state = 79, .external_lex_state = 2}, + [960] = {.lex_state = 25, .external_lex_state = 2}, + [961] = {.lex_state = 79, .external_lex_state = 2}, + [962] = {.lex_state = 79, .external_lex_state = 2}, + [963] = {.lex_state = 25, .external_lex_state = 2}, + [964] = {.lex_state = 77, .external_lex_state = 3}, + [965] = {.lex_state = 79, .external_lex_state = 2}, + [966] = {.lex_state = 79, .external_lex_state = 2}, + [967] = {.lex_state = 79, .external_lex_state = 2}, + [968] = {.lex_state = 25, .external_lex_state = 2}, + [969] = {.lex_state = 79, .external_lex_state = 2}, + [970] = {.lex_state = 77, .external_lex_state = 2}, + [971] = {.lex_state = 79, .external_lex_state = 2}, + [972] = {.lex_state = 79, .external_lex_state = 2}, + [973] = {.lex_state = 25, .external_lex_state = 2}, + [974] = {.lex_state = 77, .external_lex_state = 4}, + [975] = {.lex_state = 77, .external_lex_state = 4}, + [976] = {.lex_state = 79, .external_lex_state = 2}, + [977] = {.lex_state = 79, .external_lex_state = 2}, + [978] = {.lex_state = 25, .external_lex_state = 2}, + [979] = {.lex_state = 25, .external_lex_state = 2}, + [980] = {.lex_state = 25, .external_lex_state = 2}, + [981] = {.lex_state = 25, .external_lex_state = 2}, + [982] = {.lex_state = 25, .external_lex_state = 2}, + [983] = {.lex_state = 25, .external_lex_state = 2}, + [984] = {.lex_state = 25, .external_lex_state = 2}, + [985] = {.lex_state = 25, .external_lex_state = 2}, + [986] = {.lex_state = 77, .external_lex_state = 2}, + [987] = {.lex_state = 25, .external_lex_state = 2}, + [988] = {.lex_state = 25, .external_lex_state = 2}, + [989] = {.lex_state = 77, .external_lex_state = 5}, + [990] = {.lex_state = 77, .external_lex_state = 5}, + [991] = {.lex_state = 77, .external_lex_state = 4}, + [992] = {.lex_state = 77, .external_lex_state = 5}, + [993] = {.lex_state = 79, .external_lex_state = 2}, + [994] = {.lex_state = 77, .external_lex_state = 5}, + [995] = {.lex_state = 77, .external_lex_state = 5}, + [996] = {.lex_state = 77, .external_lex_state = 5}, + [997] = {.lex_state = 77, .external_lex_state = 5}, + [998] = {.lex_state = 77, .external_lex_state = 5}, + [999] = {.lex_state = 77, .external_lex_state = 5}, + [1000] = {.lex_state = 77, .external_lex_state = 5}, + [1001] = {.lex_state = 77, .external_lex_state = 5}, + [1002] = {.lex_state = 77, .external_lex_state = 5}, + [1003] = {.lex_state = 77, .external_lex_state = 5}, + [1004] = {.lex_state = 77, .external_lex_state = 5}, + [1005] = {.lex_state = 77, .external_lex_state = 4}, + [1006] = {.lex_state = 77, .external_lex_state = 3}, + [1007] = {.lex_state = 77, .external_lex_state = 2}, + [1008] = {.lex_state = 79, .external_lex_state = 2}, + [1009] = {.lex_state = 79, .external_lex_state = 2}, + [1010] = {.lex_state = 77, .external_lex_state = 2}, + [1011] = {.lex_state = 77, .external_lex_state = 5}, + [1012] = {.lex_state = 77, .external_lex_state = 2}, + [1013] = {.lex_state = 77, .external_lex_state = 2}, + [1014] = {.lex_state = 77, .external_lex_state = 2}, + [1015] = {.lex_state = 77, .external_lex_state = 2}, + [1016] = {.lex_state = 77, .external_lex_state = 2}, + [1017] = {.lex_state = 77, .external_lex_state = 2}, + [1018] = {.lex_state = 77, .external_lex_state = 2}, + [1019] = {.lex_state = 78, .external_lex_state = 2}, + [1020] = {.lex_state = 77, .external_lex_state = 2}, + [1021] = {.lex_state = 77, .external_lex_state = 2}, + [1022] = {.lex_state = 77, .external_lex_state = 2}, + [1023] = {.lex_state = 78, .external_lex_state = 2}, + [1024] = {.lex_state = 78, .external_lex_state = 2}, + [1025] = {.lex_state = 77, .external_lex_state = 2}, + [1026] = {.lex_state = 77, .external_lex_state = 2}, + [1027] = {.lex_state = 77, .external_lex_state = 2}, + [1028] = {.lex_state = 77, .external_lex_state = 2}, + [1029] = {.lex_state = 78, .external_lex_state = 2}, + [1030] = {.lex_state = 77, .external_lex_state = 2}, + [1031] = {.lex_state = 78, .external_lex_state = 2}, + [1032] = {.lex_state = 77, .external_lex_state = 2}, + [1033] = {.lex_state = 77, .external_lex_state = 2}, + [1034] = {.lex_state = 77, .external_lex_state = 2}, + [1035] = {.lex_state = 77, .external_lex_state = 2}, + [1036] = {.lex_state = 78, .external_lex_state = 2}, + [1037] = {.lex_state = 77, .external_lex_state = 2}, + [1038] = {.lex_state = 77, .external_lex_state = 2}, + [1039] = {.lex_state = 78, .external_lex_state = 2}, + [1040] = {.lex_state = 78, .external_lex_state = 2}, + [1041] = {.lex_state = 77, .external_lex_state = 2}, + [1042] = {.lex_state = 77, .external_lex_state = 2}, + [1043] = {.lex_state = 77, .external_lex_state = 2}, + [1044] = {.lex_state = 77, .external_lex_state = 2}, + [1045] = {.lex_state = 77, .external_lex_state = 2}, + [1046] = {.lex_state = 78, .external_lex_state = 2}, + [1047] = {.lex_state = 77, .external_lex_state = 2}, + [1048] = {.lex_state = 77, .external_lex_state = 2}, + [1049] = {.lex_state = 78, .external_lex_state = 2}, + [1050] = {.lex_state = 77, .external_lex_state = 2}, + [1051] = {.lex_state = 77, .external_lex_state = 2}, + [1052] = {.lex_state = 77, .external_lex_state = 2}, + [1053] = {.lex_state = 77, .external_lex_state = 5}, + [1054] = {.lex_state = 77, .external_lex_state = 2}, + [1055] = {.lex_state = 77, .external_lex_state = 2}, + [1056] = {.lex_state = 77, .external_lex_state = 2}, + [1057] = {.lex_state = 77, .external_lex_state = 2}, + [1058] = {.lex_state = 77, .external_lex_state = 2}, + [1059] = {.lex_state = 79, .external_lex_state = 2}, + [1060] = {.lex_state = 77, .external_lex_state = 2}, + [1061] = {.lex_state = 77, .external_lex_state = 2}, + [1062] = {.lex_state = 77, .external_lex_state = 2}, + [1063] = {.lex_state = 78, .external_lex_state = 2}, + [1064] = {.lex_state = 79, .external_lex_state = 2}, + [1065] = {.lex_state = 78, .external_lex_state = 2}, + [1066] = {.lex_state = 77, .external_lex_state = 2}, + [1067] = {.lex_state = 77, .external_lex_state = 2}, + [1068] = {.lex_state = 77, .external_lex_state = 2}, + [1069] = {.lex_state = 78, .external_lex_state = 2}, + [1070] = {.lex_state = 77, .external_lex_state = 2}, + [1071] = {.lex_state = 77, .external_lex_state = 2}, + [1072] = {.lex_state = 77, .external_lex_state = 2}, + [1073] = {.lex_state = 78, .external_lex_state = 2}, + [1074] = {.lex_state = 77, .external_lex_state = 2}, + [1075] = {.lex_state = 77, .external_lex_state = 2}, + [1076] = {.lex_state = 77, .external_lex_state = 2}, + [1077] = {.lex_state = 77, .external_lex_state = 2}, + [1078] = {.lex_state = 77, .external_lex_state = 2}, + [1079] = {.lex_state = 79, .external_lex_state = 2}, + [1080] = {.lex_state = 77, .external_lex_state = 2}, + [1081] = {.lex_state = 77, .external_lex_state = 2}, + [1082] = {.lex_state = 77, .external_lex_state = 2}, + [1083] = {.lex_state = 78, .external_lex_state = 2}, + [1084] = {.lex_state = 77, .external_lex_state = 2}, + [1085] = {.lex_state = 77, .external_lex_state = 2}, + [1086] = {.lex_state = 78, .external_lex_state = 2}, + [1087] = {.lex_state = 77, .external_lex_state = 2}, + [1088] = {.lex_state = 78, .external_lex_state = 2}, + [1089] = {.lex_state = 79, .external_lex_state = 2}, + [1090] = {.lex_state = 77, .external_lex_state = 2}, + [1091] = {.lex_state = 78, .external_lex_state = 2}, + [1092] = {.lex_state = 79, .external_lex_state = 2}, + [1093] = {.lex_state = 77, .external_lex_state = 2}, + [1094] = {.lex_state = 77, .external_lex_state = 2}, + [1095] = {.lex_state = 77, .external_lex_state = 2}, + [1096] = {.lex_state = 77, .external_lex_state = 2}, + [1097] = {.lex_state = 77, .external_lex_state = 2}, + [1098] = {.lex_state = 77, .external_lex_state = 2}, + [1099] = {.lex_state = 78, .external_lex_state = 2}, + [1100] = {.lex_state = 77, .external_lex_state = 2}, + [1101] = {.lex_state = 77, .external_lex_state = 2}, + [1102] = {.lex_state = 77, .external_lex_state = 2}, + [1103] = {.lex_state = 78, .external_lex_state = 2}, + [1104] = {.lex_state = 42, .external_lex_state = 2}, + [1105] = {.lex_state = 77, .external_lex_state = 2}, + [1106] = {.lex_state = 77, .external_lex_state = 2}, + [1107] = {.lex_state = 78, .external_lex_state = 2}, + [1108] = {.lex_state = 78, .external_lex_state = 2}, + [1109] = {.lex_state = 77, .external_lex_state = 2}, + [1110] = {.lex_state = 78, .external_lex_state = 2}, + [1111] = {.lex_state = 77, .external_lex_state = 2}, + [1112] = {.lex_state = 79, .external_lex_state = 2}, + [1113] = {.lex_state = 78, .external_lex_state = 2}, + [1114] = {.lex_state = 77, .external_lex_state = 2}, + [1115] = {.lex_state = 77, .external_lex_state = 2}, + [1116] = {.lex_state = 77, .external_lex_state = 2}, + [1117] = {.lex_state = 78, .external_lex_state = 2}, + [1118] = {.lex_state = 78, .external_lex_state = 2}, + [1119] = {.lex_state = 77, .external_lex_state = 5}, + [1120] = {.lex_state = 77, .external_lex_state = 2}, + [1121] = {.lex_state = 78, .external_lex_state = 2}, + [1122] = {.lex_state = 79, .external_lex_state = 2}, + [1123] = {.lex_state = 78, .external_lex_state = 2}, + [1124] = {.lex_state = 77, .external_lex_state = 2}, + [1125] = {.lex_state = 77, .external_lex_state = 2}, + [1126] = {.lex_state = 77, .external_lex_state = 2}, + [1127] = {.lex_state = 77, .external_lex_state = 2}, + [1128] = {.lex_state = 77, .external_lex_state = 2}, + [1129] = {.lex_state = 77, .external_lex_state = 2}, + [1130] = {.lex_state = 77, .external_lex_state = 5}, + [1131] = {.lex_state = 77, .external_lex_state = 2}, + [1132] = {.lex_state = 77, .external_lex_state = 2}, + [1133] = {.lex_state = 77, .external_lex_state = 2}, + [1134] = {.lex_state = 77, .external_lex_state = 2}, + [1135] = {.lex_state = 77, .external_lex_state = 2}, + [1136] = {.lex_state = 77, .external_lex_state = 2}, + [1137] = {.lex_state = 77, .external_lex_state = 2}, + [1138] = {.lex_state = 78, .external_lex_state = 2}, + [1139] = {.lex_state = 77, .external_lex_state = 2}, + [1140] = {.lex_state = 77, .external_lex_state = 2}, + [1141] = {.lex_state = 77, .external_lex_state = 5}, + [1142] = {.lex_state = 77, .external_lex_state = 5}, + [1143] = {.lex_state = 77, .external_lex_state = 2}, + [1144] = {.lex_state = 78, .external_lex_state = 2}, + [1145] = {.lex_state = 78, .external_lex_state = 2}, + [1146] = {.lex_state = 77, .external_lex_state = 2}, + [1147] = {.lex_state = 77, .external_lex_state = 2}, + [1148] = {.lex_state = 77, .external_lex_state = 2}, + [1149] = {.lex_state = 77, .external_lex_state = 2}, + [1150] = {.lex_state = 77, .external_lex_state = 2}, + [1151] = {.lex_state = 77, .external_lex_state = 2}, + [1152] = {.lex_state = 77, .external_lex_state = 2}, + [1153] = {.lex_state = 78, .external_lex_state = 2}, + [1154] = {.lex_state = 77, .external_lex_state = 2}, + [1155] = {.lex_state = 79, .external_lex_state = 2}, + [1156] = {.lex_state = 77, .external_lex_state = 2}, + [1157] = {.lex_state = 77, .external_lex_state = 2}, + [1158] = {.lex_state = 77, .external_lex_state = 2}, + [1159] = {.lex_state = 77, .external_lex_state = 2}, + [1160] = {.lex_state = 77, .external_lex_state = 5}, + [1161] = {.lex_state = 77, .external_lex_state = 2}, + [1162] = {.lex_state = 77, .external_lex_state = 2}, + [1163] = {.lex_state = 77, .external_lex_state = 5}, + [1164] = {.lex_state = 77, .external_lex_state = 5}, + [1165] = {.lex_state = 77, .external_lex_state = 2}, + [1166] = {.lex_state = 78, .external_lex_state = 2}, + [1167] = {.lex_state = 77, .external_lex_state = 2}, + [1168] = {.lex_state = 77, .external_lex_state = 2}, + [1169] = {.lex_state = 77, .external_lex_state = 2}, + [1170] = {.lex_state = 77, .external_lex_state = 2}, + [1171] = {.lex_state = 77, .external_lex_state = 2}, + [1172] = {.lex_state = 77, .external_lex_state = 2}, + [1173] = {.lex_state = 77, .external_lex_state = 2}, + [1174] = {.lex_state = 77, .external_lex_state = 2}, + [1175] = {.lex_state = 77, .external_lex_state = 2}, + [1176] = {.lex_state = 77, .external_lex_state = 2}, + [1177] = {.lex_state = 77, .external_lex_state = 2}, + [1178] = {.lex_state = 77, .external_lex_state = 2}, + [1179] = {.lex_state = 77, .external_lex_state = 2}, + [1180] = {.lex_state = 78, .external_lex_state = 2}, + [1181] = {.lex_state = 77, .external_lex_state = 2}, + [1182] = {.lex_state = 78, .external_lex_state = 2}, + [1183] = {.lex_state = 77, .external_lex_state = 2}, + [1184] = {.lex_state = 77, .external_lex_state = 5}, + [1185] = {.lex_state = 77, .external_lex_state = 2}, + [1186] = {.lex_state = 77, .external_lex_state = 5}, + [1187] = {.lex_state = 77, .external_lex_state = 2}, + [1188] = {.lex_state = 79, .external_lex_state = 2}, + [1189] = {.lex_state = 77, .external_lex_state = 2}, + [1190] = {.lex_state = 77, .external_lex_state = 2}, + [1191] = {.lex_state = 77, .external_lex_state = 2}, + [1192] = {.lex_state = 79, .external_lex_state = 2}, + [1193] = {.lex_state = 77, .external_lex_state = 2}, + [1194] = {.lex_state = 77, .external_lex_state = 2}, + [1195] = {.lex_state = 77, .external_lex_state = 2}, + [1196] = {.lex_state = 77, .external_lex_state = 2}, + [1197] = {.lex_state = 77, .external_lex_state = 2}, + [1198] = {.lex_state = 77, .external_lex_state = 2}, + [1199] = {.lex_state = 77, .external_lex_state = 2}, + [1200] = {.lex_state = 77, .external_lex_state = 2}, + [1201] = {.lex_state = 77, .external_lex_state = 2}, + [1202] = {.lex_state = 77, .external_lex_state = 2}, + [1203] = {.lex_state = 77, .external_lex_state = 2}, + [1204] = {.lex_state = 79, .external_lex_state = 2}, + [1205] = {.lex_state = 77, .external_lex_state = 5}, + [1206] = {.lex_state = 77, .external_lex_state = 2}, + [1207] = {.lex_state = 77, .external_lex_state = 2}, + [1208] = {.lex_state = 77, .external_lex_state = 5}, + [1209] = {.lex_state = 77, .external_lex_state = 2}, + [1210] = {.lex_state = 78, .external_lex_state = 2}, + [1211] = {.lex_state = 77, .external_lex_state = 2}, + [1212] = {.lex_state = 77, .external_lex_state = 2}, + [1213] = {.lex_state = 77, .external_lex_state = 2}, + [1214] = {.lex_state = 78, .external_lex_state = 2}, + [1215] = {.lex_state = 79, .external_lex_state = 2}, + [1216] = {.lex_state = 77, .external_lex_state = 5}, + [1217] = {.lex_state = 77, .external_lex_state = 5}, + [1218] = {.lex_state = 77, .external_lex_state = 2}, + [1219] = {.lex_state = 77, .external_lex_state = 2}, + [1220] = {.lex_state = 78, .external_lex_state = 2}, + [1221] = {.lex_state = 77, .external_lex_state = 2}, + [1222] = {.lex_state = 77, .external_lex_state = 2}, + [1223] = {.lex_state = 78, .external_lex_state = 2}, + [1224] = {.lex_state = 77, .external_lex_state = 2}, + [1225] = {.lex_state = 79, .external_lex_state = 2}, + [1226] = {.lex_state = 77, .external_lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4307,10 +5056,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1), [anon_sym_then] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_of] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), [anon_sym_DOLLAR] = ACTIONS(1), [anon_sym_0] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_u2200] = ACTIONS(1), + [anon_sym_forall] = ACTIONS(1), [anon_sym_where] = ACTIONS(1), [anon_sym_data] = ACTIONS(1), [anon_sym_BQUOTE] = ACTIONS(1), @@ -4332,8 +5085,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ws] = ACTIONS(5), }, [STATE(1)] = { - [sym_source_file] = STATE(893), - [sym_module] = STATE(823), + [sym_source_file] = STATE(1078), + [sym_module] = STATE(1044), [sym_comment] = ACTIONS(5), [anon_sym_module] = ACTIONS(7), [sym__ws] = ACTIONS(5), @@ -4341,7 +5094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 19, + [0] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -4349,53 +5102,56 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9), 1, sym_identifier, ACTIONS(13), 1, - anon_sym_LPAREN, + anon_sym_BSLASH, ACTIONS(15), 1, - anon_sym_LBRACK, + anon_sym_u03bb, ACTIONS(17), 1, - anon_sym_data, + anon_sym_LPAREN, ACTIONS(19), 1, - anon_sym_derive, + anon_sym_LBRACE_LBRACE, ACTIONS(21), 1, - anon_sym_pfunc, + anon_sym_LBRACE, ACTIONS(23), 1, - anon_sym_ptype, + anon_sym_LBRACK, ACTIONS(25), 1, - anon_sym_import, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, ACTIONS(29), 1, - anon_sym_record, + anon_sym_if, ACTIONS(31), 1, - anon_sym_class, + anon_sym_case, ACTIONS(33), 1, - anon_sym_instance, - STATE(711), 1, - sym_importDef, - STATE(869), 1, - sym__appExpr, - ACTIONS(27), 2, - anon_sym_infixr, - anon_sym_infixl, - STATE(350), 2, + anon_sym_0, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, sym__atom, sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, ACTIONS(11), 3, sym_number, sym_string, sym_character, - STATE(721), 12, - sym_sigDecl, - sym_defDecl, - sym_shortDataDecl, - sym_dataDecl, - sym_deriveDecl, - sym_pfuncDecl, - sym_ptypeDecl, - sym_mixfixDecl, - sym_recordDecl, - sym_classDecl, - sym_instanceDecl, - sym__decl, - [73] = 17, + STATE(1136), 3, + sym_forall, + sym_binders, + sym__typeExpr, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [78] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -4403,12926 +5159,16778 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9), 1, sym_identifier, ACTIONS(13), 1, - anon_sym_LPAREN, + anon_sym_BSLASH, ACTIONS(15), 1, - anon_sym_LBRACK, + anon_sym_u03bb, ACTIONS(17), 1, - anon_sym_data, + anon_sym_LPAREN, ACTIONS(19), 1, - anon_sym_derive, + anon_sym_LBRACE_LBRACE, ACTIONS(21), 1, - anon_sym_pfunc, + anon_sym_LBRACE, ACTIONS(23), 1, - anon_sym_ptype, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, ACTIONS(29), 1, - anon_sym_record, + anon_sym_if, ACTIONS(31), 1, - anon_sym_class, + anon_sym_case, ACTIONS(33), 1, - anon_sym_instance, - STATE(869), 1, - sym__appExpr, - ACTIONS(27), 2, - anon_sym_infixr, - anon_sym_infixl, - STATE(350), 2, + anon_sym_0, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, sym__atom, sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, ACTIONS(11), 3, sym_number, sym_string, sym_character, - STATE(721), 12, - sym_sigDecl, - sym_defDecl, - sym_shortDataDecl, - sym_dataDecl, - sym_deriveDecl, - sym_pfuncDecl, - sym_ptypeDecl, - sym_mixfixDecl, - sym_recordDecl, - sym_classDecl, - sym_instanceDecl, - sym__decl, - [140] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(35), 1, - sym_identifier, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(55), 1, - anon_sym_0, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(865), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 3, - sym_number, - sym_string, - sym_character, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [210] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(35), 1, - sym_identifier, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(55), 1, - anon_sym_0, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(891), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 3, - sym_number, - sym_string, - sym_character, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [280] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(35), 1, - sym_identifier, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(55), 1, - anon_sym_0, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(811), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 3, - sym_number, - sym_string, - sym_character, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [350] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(35), 1, - sym_identifier, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(55), 1, - anon_sym_0, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(826), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 3, - sym_number, - sym_string, - sym_character, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [420] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(35), 1, - sym_identifier, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(55), 1, - anon_sym_0, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(840), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 3, - sym_number, - sym_string, - sym_character, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [490] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(35), 1, - sym_identifier, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(55), 1, - anon_sym_0, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(928), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 3, - sym_number, - sym_string, - sym_character, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [560] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(35), 1, - sym_identifier, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(55), 1, - anon_sym_0, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(860), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 3, - sym_number, - sym_string, - sym_character, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [630] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(35), 1, - sym_identifier, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(55), 1, - anon_sym_0, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(793), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 3, - sym_number, - sym_string, - sym_character, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [700] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(35), 1, - sym_identifier, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(55), 1, - anon_sym_0, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(842), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 3, - sym_number, - sym_string, - sym_character, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [770] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(35), 1, - sym_identifier, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(55), 1, - anon_sym_0, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(881), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 3, - sym_number, - sym_string, - sym_character, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [840] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(35), 1, - sym_identifier, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(55), 1, - anon_sym_0, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(898), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 3, - sym_number, - sym_string, - sym_character, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [910] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(35), 1, - sym_identifier, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(55), 1, - anon_sym_0, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(796), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 3, - sym_number, - sym_string, - sym_character, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [980] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(35), 1, - sym_identifier, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(55), 1, - anon_sym_0, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(856), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 3, - sym_number, - sym_string, - sym_character, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1050] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(876), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1115] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(856), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1180] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(406), 1, - sym_typeExpr, - STATE(450), 1, - sym_term, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1245] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(905), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1310] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(791), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1375] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - anon_sym_BSLASH, - ACTIONS(79), 1, - anon_sym_u03bb, - ACTIONS(81), 1, - anon_sym_LPAREN, - ACTIONS(83), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(87), 1, - anon_sym_if, - ACTIONS(89), 1, - anon_sym_u2200, - STATE(477), 1, - sym_term, - STATE(508), 1, - sym_typeExpr, - STATE(159), 2, - sym__atom, - sym_recUpdate, - STATE(459), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(75), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(479), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1440] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(93), 1, - anon_sym_BSLASH, - ACTIONS(95), 1, - anon_sym_u03bb, - ACTIONS(97), 1, - anon_sym_LPAREN, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_if, - ACTIONS(103), 1, - anon_sym_u2200, - STATE(507), 1, - sym_term, - STATE(871), 1, - sym_typeExpr, - STATE(295), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(464), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(91), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(520), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1505] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - anon_sym_BSLASH, - ACTIONS(79), 1, - anon_sym_u03bb, - ACTIONS(81), 1, - anon_sym_LPAREN, - ACTIONS(83), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(87), 1, - anon_sym_if, - ACTIONS(89), 1, - anon_sym_u2200, - STATE(477), 1, - sym_term, - STATE(517), 1, - sym_typeExpr, - STATE(159), 2, - sym__atom, - sym_recUpdate, - STATE(459), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(75), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(479), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1570] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(107), 1, - anon_sym_BSLASH, - ACTIONS(109), 1, - anon_sym_u03bb, - ACTIONS(111), 1, - anon_sym_LPAREN, - ACTIONS(113), 1, - anon_sym_LBRACK, - ACTIONS(115), 1, - anon_sym_if, - ACTIONS(117), 1, - anon_sym_u2200, - STATE(495), 1, - sym_term, - STATE(703), 1, - sym_typeExpr, - STATE(274), 2, - sym__atom, - sym_recUpdate, - STATE(469), 2, - sym_forall, - sym_binders, - STATE(474), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(105), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(500), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1635] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(121), 1, - anon_sym_BSLASH, - ACTIONS(123), 1, - anon_sym_u03bb, - ACTIONS(125), 1, - anon_sym_LPAREN, - ACTIONS(127), 1, - anon_sym_LBRACK, - ACTIONS(129), 1, - anon_sym_if, - ACTIONS(131), 1, - anon_sym_u2200, - STATE(481), 1, - sym_term, - STATE(535), 1, - sym_typeExpr, - STATE(165), 2, - sym__atom, - sym_recUpdate, - STATE(461), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(119), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(478), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1700] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(135), 1, - anon_sym_BSLASH, - ACTIONS(137), 1, - anon_sym_u03bb, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACK, - ACTIONS(143), 1, - anon_sym_if, - ACTIONS(145), 1, - anon_sym_u2200, - STATE(395), 1, - sym_typeExpr, - STATE(505), 1, - sym_term, - STATE(281), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(465), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(133), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(519), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1765] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(135), 1, - anon_sym_BSLASH, - ACTIONS(137), 1, - anon_sym_u03bb, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACK, - ACTIONS(143), 1, - anon_sym_if, - ACTIONS(145), 1, - anon_sym_u2200, - STATE(398), 1, - sym_typeExpr, - STATE(505), 1, - sym_term, - STATE(281), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(465), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(133), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(519), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1830] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(135), 1, - anon_sym_BSLASH, - ACTIONS(137), 1, - anon_sym_u03bb, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACK, - ACTIONS(143), 1, - anon_sym_if, - ACTIONS(145), 1, - anon_sym_u2200, - STATE(402), 1, - sym_typeExpr, - STATE(505), 1, - sym_term, - STATE(281), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(465), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(133), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(519), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1895] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(135), 1, - anon_sym_BSLASH, - ACTIONS(137), 1, - anon_sym_u03bb, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACK, - ACTIONS(143), 1, - anon_sym_if, - ACTIONS(145), 1, - anon_sym_u2200, - STATE(406), 1, - sym_typeExpr, - STATE(505), 1, - sym_term, - STATE(281), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(465), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(133), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(519), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [1960] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(149), 1, - anon_sym_BSLASH, - ACTIONS(151), 1, - anon_sym_u03bb, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(159), 1, - anon_sym_if, - ACTIONS(161), 1, - anon_sym_u2200, - STATE(487), 1, - sym_term, - STATE(489), 1, - sym_typeExpr, - STATE(273), 2, - sym__atom, - sym_recUpdate, - STATE(462), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(497), 2, - sym_forall, - sym_binders, - ACTIONS(147), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(502), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2025] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(149), 1, - anon_sym_BSLASH, - ACTIONS(151), 1, - anon_sym_u03bb, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(159), 1, - anon_sym_if, - ACTIONS(161), 1, - anon_sym_u2200, - STATE(487), 1, - sym_term, - STATE(491), 1, - sym_typeExpr, - STATE(273), 2, - sym__atom, - sym_recUpdate, - STATE(462), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(497), 2, - sym_forall, - sym_binders, - ACTIONS(147), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(502), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2090] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(169), 1, - anon_sym_LPAREN, - ACTIONS(171), 1, - anon_sym_LBRACK, - ACTIONS(173), 1, - anon_sym_if, - ACTIONS(175), 1, - anon_sym_u2200, - STATE(402), 1, - sym_typeExpr, - STATE(515), 1, - sym_term, - STATE(301), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(458), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(163), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(511), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2155] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(149), 1, - anon_sym_BSLASH, - ACTIONS(151), 1, - anon_sym_u03bb, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(159), 1, - anon_sym_if, - ACTIONS(161), 1, - anon_sym_u2200, - STATE(487), 1, - sym_term, - STATE(496), 1, - sym_typeExpr, - STATE(273), 2, - sym__atom, - sym_recUpdate, - STATE(462), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(497), 2, - sym_forall, - sym_binders, - ACTIONS(147), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(502), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2220] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(524), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2285] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(551), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2350] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(149), 1, - anon_sym_BSLASH, - ACTIONS(151), 1, - anon_sym_u03bb, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(159), 1, - anon_sym_if, - ACTIONS(161), 1, - anon_sym_u2200, - STATE(487), 1, - sym_term, - STATE(493), 1, - sym_typeExpr, - STATE(273), 2, - sym__atom, - sym_recUpdate, - STATE(462), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(497), 2, - sym_forall, - sym_binders, - ACTIONS(147), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(502), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2415] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(543), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2480] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(179), 1, - anon_sym_BSLASH, - ACTIONS(181), 1, - anon_sym_u03bb, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - anon_sym_if, - ACTIONS(189), 1, - anon_sym_u2200, - STATE(484), 1, - sym_term, - STATE(489), 1, - sym_typeExpr, - STATE(156), 2, - sym__atom, - sym_recUpdate, - STATE(472), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(497), 2, - sym_forall, - sym_binders, - ACTIONS(177), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(480), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2545] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(179), 1, - anon_sym_BSLASH, - ACTIONS(181), 1, - anon_sym_u03bb, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - anon_sym_if, - ACTIONS(189), 1, - anon_sym_u2200, - STATE(484), 1, - sym_term, - STATE(491), 1, - sym_typeExpr, - STATE(156), 2, - sym__atom, - sym_recUpdate, - STATE(472), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(497), 2, - sym_forall, - sym_binders, - ACTIONS(177), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(480), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2610] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(533), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2675] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(179), 1, - anon_sym_BSLASH, - ACTIONS(181), 1, - anon_sym_u03bb, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - anon_sym_if, - ACTIONS(189), 1, - anon_sym_u2200, - STATE(484), 1, - sym_term, - STATE(496), 1, - sym_typeExpr, - STATE(156), 2, - sym__atom, - sym_recUpdate, - STATE(472), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(497), 2, - sym_forall, - sym_binders, - ACTIONS(177), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(480), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2740] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(93), 1, - anon_sym_BSLASH, - ACTIONS(95), 1, - anon_sym_u03bb, - ACTIONS(97), 1, - anon_sym_LPAREN, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_if, - ACTIONS(103), 1, - anon_sym_u2200, - STATE(395), 1, - sym_typeExpr, - STATE(507), 1, - sym_term, - STATE(295), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(464), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(91), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(520), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2805] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(93), 1, - anon_sym_BSLASH, - ACTIONS(95), 1, - anon_sym_u03bb, - ACTIONS(97), 1, - anon_sym_LPAREN, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_if, - ACTIONS(103), 1, - anon_sym_u2200, - STATE(398), 1, - sym_typeExpr, - STATE(507), 1, - sym_term, - STATE(295), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(464), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(91), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(520), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2870] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(179), 1, - anon_sym_BSLASH, - ACTIONS(181), 1, - anon_sym_u03bb, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - anon_sym_if, - ACTIONS(189), 1, - anon_sym_u2200, - STATE(484), 1, - sym_term, - STATE(493), 1, - sym_typeExpr, - STATE(156), 2, - sym__atom, - sym_recUpdate, - STATE(472), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(497), 2, - sym_forall, - sym_binders, - ACTIONS(177), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(480), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [2935] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(93), 1, - anon_sym_BSLASH, - ACTIONS(95), 1, - anon_sym_u03bb, - ACTIONS(97), 1, - anon_sym_LPAREN, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_if, - ACTIONS(103), 1, - anon_sym_u2200, - STATE(406), 1, - sym_typeExpr, - STATE(507), 1, - sym_term, - STATE(295), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(464), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(91), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(520), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3000] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(169), 1, - anon_sym_LPAREN, - ACTIONS(171), 1, - anon_sym_LBRACK, - ACTIONS(173), 1, - anon_sym_if, - ACTIONS(175), 1, - anon_sym_u2200, - STATE(395), 1, - sym_typeExpr, - STATE(515), 1, - sym_term, - STATE(301), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(458), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(163), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(511), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3065] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(169), 1, - anon_sym_LPAREN, - ACTIONS(171), 1, - anon_sym_LBRACK, - ACTIONS(173), 1, - anon_sym_if, - ACTIONS(175), 1, - anon_sym_u2200, - STATE(398), 1, - sym_typeExpr, - STATE(515), 1, - sym_term, - STATE(301), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(458), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(163), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(511), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3130] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(93), 1, - anon_sym_BSLASH, - ACTIONS(95), 1, - anon_sym_u03bb, - ACTIONS(97), 1, - anon_sym_LPAREN, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_if, - ACTIONS(103), 1, - anon_sym_u2200, - STATE(402), 1, - sym_typeExpr, - STATE(507), 1, - sym_term, - STATE(295), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(464), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(91), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(520), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3195] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(169), 1, - anon_sym_LPAREN, - ACTIONS(171), 1, - anon_sym_LBRACK, - ACTIONS(173), 1, - anon_sym_if, - ACTIONS(175), 1, - anon_sym_u2200, - STATE(406), 1, - sym_typeExpr, - STATE(515), 1, - sym_term, - STATE(301), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(458), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(163), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(511), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3260] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - anon_sym_BSLASH, - ACTIONS(79), 1, - anon_sym_u03bb, - ACTIONS(81), 1, - anon_sym_LPAREN, - ACTIONS(83), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(87), 1, - anon_sym_if, - ACTIONS(89), 1, - anon_sym_u2200, - STATE(473), 1, - sym_typeExpr, - STATE(477), 1, - sym_term, - STATE(159), 2, - sym__atom, - sym_recUpdate, - STATE(459), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(75), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(479), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3325] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - anon_sym_BSLASH, - ACTIONS(79), 1, - anon_sym_u03bb, - ACTIONS(81), 1, - anon_sym_LPAREN, - ACTIONS(83), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(87), 1, - anon_sym_if, - ACTIONS(89), 1, - anon_sym_u2200, - STATE(452), 1, - sym_typeExpr, - STATE(477), 1, - sym_term, - STATE(159), 2, - sym__atom, - sym_recUpdate, - STATE(459), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(75), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(479), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3390] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(193), 1, - anon_sym_BSLASH, - ACTIONS(195), 1, - anon_sym_u03bb, - ACTIONS(197), 1, - anon_sym_LPAREN, - ACTIONS(199), 1, - anon_sym_LBRACK, - ACTIONS(201), 1, - anon_sym_if, - ACTIONS(203), 1, - anon_sym_u2200, - STATE(453), 1, - sym_typeExpr, - STATE(483), 1, - sym_term, - STATE(162), 2, - sym__atom, - sym_recUpdate, - STATE(463), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(191), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(475), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3455] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - anon_sym_BSLASH, - ACTIONS(79), 1, - anon_sym_u03bb, - ACTIONS(81), 1, - anon_sym_LPAREN, - ACTIONS(83), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(87), 1, - anon_sym_if, - ACTIONS(89), 1, - anon_sym_u2200, - STATE(455), 1, - sym_typeExpr, - STATE(477), 1, - sym_term, - STATE(159), 2, - sym__atom, - sym_recUpdate, - STATE(459), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(75), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(479), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3520] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(193), 1, - anon_sym_BSLASH, - ACTIONS(195), 1, - anon_sym_u03bb, - ACTIONS(197), 1, - anon_sym_LPAREN, - ACTIONS(199), 1, - anon_sym_LBRACK, - ACTIONS(201), 1, - anon_sym_if, - ACTIONS(203), 1, - anon_sym_u2200, - STATE(473), 1, - sym_typeExpr, - STATE(483), 1, - sym_term, - STATE(162), 2, - sym__atom, - sym_recUpdate, - STATE(463), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(191), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(475), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3585] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(193), 1, - anon_sym_BSLASH, - ACTIONS(195), 1, - anon_sym_u03bb, - ACTIONS(197), 1, - anon_sym_LPAREN, - ACTIONS(199), 1, - anon_sym_LBRACK, - ACTIONS(201), 1, - anon_sym_if, - ACTIONS(203), 1, - anon_sym_u2200, - STATE(452), 1, - sym_typeExpr, - STATE(483), 1, - sym_term, - STATE(162), 2, - sym__atom, - sym_recUpdate, - STATE(463), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(191), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(475), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3650] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, - anon_sym_BSLASH, - ACTIONS(209), 1, - anon_sym_u03bb, - ACTIONS(211), 1, - anon_sym_LPAREN, - ACTIONS(213), 1, - anon_sym_LBRACK, - ACTIONS(215), 1, - anon_sym_if, - ACTIONS(217), 1, - anon_sym_u2200, - STATE(402), 1, - sym_typeExpr, - STATE(521), 1, - sym_term, - STATE(291), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(467), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(205), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(516), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3715] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(193), 1, - anon_sym_BSLASH, - ACTIONS(195), 1, - anon_sym_u03bb, - ACTIONS(197), 1, - anon_sym_LPAREN, - ACTIONS(199), 1, - anon_sym_LBRACK, - ACTIONS(201), 1, - anon_sym_if, - ACTIONS(203), 1, - anon_sym_u2200, - STATE(455), 1, - sym_typeExpr, - STATE(483), 1, - sym_term, - STATE(162), 2, - sym__atom, - sym_recUpdate, - STATE(463), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(191), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(475), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3780] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, - anon_sym_BSLASH, - ACTIONS(209), 1, - anon_sym_u03bb, - ACTIONS(211), 1, - anon_sym_LPAREN, - ACTIONS(213), 1, - anon_sym_LBRACK, - ACTIONS(215), 1, - anon_sym_if, - ACTIONS(217), 1, - anon_sym_u2200, - STATE(395), 1, - sym_typeExpr, - STATE(521), 1, - sym_term, - STATE(291), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(467), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(205), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(516), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3845] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, - anon_sym_BSLASH, - ACTIONS(209), 1, - anon_sym_u03bb, - ACTIONS(211), 1, - anon_sym_LPAREN, - ACTIONS(213), 1, - anon_sym_LBRACK, - ACTIONS(215), 1, - anon_sym_if, - ACTIONS(217), 1, - anon_sym_u2200, - STATE(398), 1, - sym_typeExpr, - STATE(521), 1, - sym_term, - STATE(291), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(467), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(205), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(516), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3910] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - anon_sym_BSLASH, - ACTIONS(79), 1, - anon_sym_u03bb, - ACTIONS(81), 1, - anon_sym_LPAREN, - ACTIONS(83), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(87), 1, - anon_sym_if, - ACTIONS(89), 1, - anon_sym_u2200, - STATE(453), 1, - sym_typeExpr, - STATE(477), 1, - sym_term, - STATE(159), 2, - sym__atom, - sym_recUpdate, - STATE(459), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(75), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(479), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [3975] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, - anon_sym_BSLASH, - ACTIONS(209), 1, - anon_sym_u03bb, - ACTIONS(211), 1, - anon_sym_LPAREN, - ACTIONS(213), 1, - anon_sym_LBRACK, - ACTIONS(215), 1, - anon_sym_if, - ACTIONS(217), 1, - anon_sym_u2200, - STATE(406), 1, - sym_typeExpr, - STATE(521), 1, - sym_term, - STATE(291), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(467), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(205), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(516), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4040] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(107), 1, - anon_sym_BSLASH, - ACTIONS(109), 1, - anon_sym_u03bb, - ACTIONS(111), 1, - anon_sym_LPAREN, - ACTIONS(113), 1, - anon_sym_LBRACK, - ACTIONS(115), 1, - anon_sym_if, - ACTIONS(117), 1, - anon_sym_u2200, - STATE(473), 1, - sym_typeExpr, - STATE(495), 1, - sym_term, - STATE(274), 2, - sym__atom, - sym_recUpdate, - STATE(469), 2, - sym_forall, - sym_binders, - STATE(474), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(105), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(500), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4105] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(107), 1, - anon_sym_BSLASH, - ACTIONS(109), 1, - anon_sym_u03bb, - ACTIONS(111), 1, - anon_sym_LPAREN, - ACTIONS(113), 1, - anon_sym_LBRACK, - ACTIONS(115), 1, - anon_sym_if, - ACTIONS(117), 1, - anon_sym_u2200, - STATE(452), 1, - sym_typeExpr, - STATE(495), 1, - sym_term, - STATE(274), 2, - sym__atom, - sym_recUpdate, - STATE(469), 2, - sym_forall, - sym_binders, - STATE(474), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(105), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(500), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4170] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(107), 1, - anon_sym_BSLASH, - ACTIONS(109), 1, - anon_sym_u03bb, - ACTIONS(111), 1, - anon_sym_LPAREN, - ACTIONS(113), 1, - anon_sym_LBRACK, - ACTIONS(115), 1, - anon_sym_if, - ACTIONS(117), 1, - anon_sym_u2200, - STATE(453), 1, - sym_typeExpr, - STATE(495), 1, - sym_term, - STATE(274), 2, - sym__atom, - sym_recUpdate, - STATE(469), 2, - sym_forall, - sym_binders, - STATE(474), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(105), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(500), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4235] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(107), 1, - anon_sym_BSLASH, - ACTIONS(109), 1, - anon_sym_u03bb, - ACTIONS(111), 1, - anon_sym_LPAREN, - ACTIONS(113), 1, - anon_sym_LBRACK, - ACTIONS(115), 1, - anon_sym_if, - ACTIONS(117), 1, - anon_sym_u2200, - STATE(455), 1, - sym_typeExpr, - STATE(495), 1, - sym_term, - STATE(274), 2, - sym__atom, - sym_recUpdate, - STATE(469), 2, - sym_forall, - sym_binders, - STATE(474), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(105), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(500), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4300] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(938), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4365] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(121), 1, - anon_sym_BSLASH, - ACTIONS(123), 1, - anon_sym_u03bb, - ACTIONS(125), 1, - anon_sym_LPAREN, - ACTIONS(127), 1, - anon_sym_LBRACK, - ACTIONS(129), 1, - anon_sym_if, - ACTIONS(131), 1, - anon_sym_u2200, - STATE(473), 1, - sym_typeExpr, - STATE(481), 1, - sym_term, - STATE(165), 2, - sym__atom, - sym_recUpdate, - STATE(461), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(119), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(478), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4430] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(121), 1, - anon_sym_BSLASH, - ACTIONS(123), 1, - anon_sym_u03bb, - ACTIONS(125), 1, - anon_sym_LPAREN, - ACTIONS(127), 1, - anon_sym_LBRACK, - ACTIONS(129), 1, - anon_sym_if, - ACTIONS(131), 1, - anon_sym_u2200, - STATE(452), 1, - sym_typeExpr, - STATE(481), 1, - sym_term, - STATE(165), 2, - sym__atom, - sym_recUpdate, - STATE(461), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(119), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(478), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4495] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(121), 1, - anon_sym_BSLASH, - ACTIONS(123), 1, - anon_sym_u03bb, - ACTIONS(125), 1, - anon_sym_LPAREN, - ACTIONS(127), 1, - anon_sym_LBRACK, - ACTIONS(129), 1, - anon_sym_if, - ACTIONS(131), 1, - anon_sym_u2200, - STATE(453), 1, - sym_typeExpr, - STATE(481), 1, - sym_term, - STATE(165), 2, - sym__atom, - sym_recUpdate, - STATE(461), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(119), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(478), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4560] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(121), 1, - anon_sym_BSLASH, - ACTIONS(123), 1, - anon_sym_u03bb, - ACTIONS(125), 1, - anon_sym_LPAREN, - ACTIONS(127), 1, - anon_sym_LBRACK, - ACTIONS(129), 1, - anon_sym_if, - ACTIONS(131), 1, - anon_sym_u2200, - STATE(455), 1, - sym_typeExpr, - STATE(481), 1, - sym_term, - STATE(165), 2, - sym__atom, - sym_recUpdate, - STATE(461), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(469), 2, - sym_forall, - sym_binders, - ACTIONS(119), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(478), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4625] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(221), 1, - anon_sym_BSLASH, - ACTIONS(223), 1, - anon_sym_u03bb, - ACTIONS(225), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_LBRACK, - ACTIONS(229), 1, - anon_sym_if, - ACTIONS(231), 1, - anon_sym_u2200, - STATE(395), 1, - sym_typeExpr, - STATE(522), 1, - sym_term, - STATE(288), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(451), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(219), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(503), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4690] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(221), 1, - anon_sym_BSLASH, - ACTIONS(223), 1, - anon_sym_u03bb, - ACTIONS(225), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_LBRACK, - ACTIONS(229), 1, - anon_sym_if, - ACTIONS(231), 1, - anon_sym_u2200, - STATE(398), 1, - sym_typeExpr, - STATE(522), 1, - sym_term, - STATE(288), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(451), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(219), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(503), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4755] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(221), 1, - anon_sym_BSLASH, - ACTIONS(223), 1, - anon_sym_u03bb, - ACTIONS(225), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_LBRACK, - ACTIONS(229), 1, - anon_sym_if, - ACTIONS(231), 1, - anon_sym_u2200, - STATE(402), 1, - sym_typeExpr, - STATE(522), 1, - sym_term, - STATE(288), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(451), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(219), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(503), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4820] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(221), 1, - anon_sym_BSLASH, - ACTIONS(223), 1, - anon_sym_u03bb, - ACTIONS(225), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_LBRACK, - ACTIONS(229), 1, - anon_sym_if, - ACTIONS(231), 1, - anon_sym_u2200, - STATE(406), 1, - sym_typeExpr, - STATE(522), 1, - sym_term, - STATE(288), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(451), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(219), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(503), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4885] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(792), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [4950] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(135), 1, - anon_sym_BSLASH, - ACTIONS(137), 1, - anon_sym_u03bb, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACK, - ACTIONS(143), 1, - anon_sym_if, - ACTIONS(145), 1, - anon_sym_u2200, - STATE(505), 1, - sym_term, - STATE(870), 1, - sym_typeExpr, - STATE(281), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(465), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(133), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(519), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5015] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(944), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5080] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(827), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5145] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(865), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5210] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(149), 1, - anon_sym_BSLASH, - ACTIONS(151), 1, - anon_sym_u03bb, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(159), 1, - anon_sym_if, - ACTIONS(161), 1, - anon_sym_u2200, - STATE(487), 1, - sym_term, - STATE(679), 1, - sym_typeExpr, - STATE(273), 2, - sym__atom, - sym_recUpdate, - STATE(462), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(497), 2, - sym_forall, - sym_binders, - ACTIONS(147), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(502), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5275] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(901), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5340] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(902), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5405] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(891), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5470] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(836), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5535] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(799), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5600] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(801), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5665] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(885), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5730] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(814), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5795] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(816), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5860] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(817), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5925] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(811), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [5990] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(179), 1, - anon_sym_BSLASH, - ACTIONS(181), 1, - anon_sym_u03bb, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - anon_sym_if, - ACTIONS(189), 1, - anon_sym_u2200, - STATE(484), 1, - sym_term, - STATE(545), 1, - sym_typeExpr, - STATE(156), 2, - sym__atom, - sym_recUpdate, - STATE(472), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(497), 2, - sym_forall, - sym_binders, - ACTIONS(177), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(480), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6055] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(831), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6120] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(832), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6185] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(826), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6250] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(395), 1, - sym_typeExpr, - STATE(450), 1, - sym_term, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6315] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(853), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6380] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(857), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6445] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(840), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6510] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(398), 1, - sym_typeExpr, - STATE(450), 1, - sym_term, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6575] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(895), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6640] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(897), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6705] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(940), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6770] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(179), 1, - anon_sym_BSLASH, - ACTIONS(181), 1, - anon_sym_u03bb, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - anon_sym_if, - ACTIONS(189), 1, - anon_sym_u2200, - STATE(484), 1, - sym_term, - STATE(592), 1, - sym_typeExpr, - STATE(156), 2, - sym__atom, - sym_recUpdate, - STATE(472), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(497), 2, - sym_forall, - sym_binders, - ACTIONS(177), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(480), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6835] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(932), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6900] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(933), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [6965] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(839), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7030] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(93), 1, - anon_sym_BSLASH, - ACTIONS(95), 1, - anon_sym_u03bb, - ACTIONS(97), 1, - anon_sym_LPAREN, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_if, - ACTIONS(103), 1, - anon_sym_u2200, - STATE(507), 1, - sym_term, - STATE(892), 1, - sym_typeExpr, - STATE(295), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(464), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(91), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(520), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7095] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(931), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7160] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(875), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7225] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(889), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7290] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(149), 1, - anon_sym_BSLASH, - ACTIONS(151), 1, - anon_sym_u03bb, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(159), 1, - anon_sym_if, - ACTIONS(161), 1, - anon_sym_u2200, - STATE(487), 1, - sym_term, - STATE(677), 1, - sym_typeExpr, - STATE(273), 2, - sym__atom, - sym_recUpdate, - STATE(462), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(497), 2, - sym_forall, - sym_binders, - ACTIONS(147), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(502), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7355] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(864), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7420] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(926), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7485] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(928), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7550] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(402), 1, - sym_typeExpr, - STATE(450), 1, - sym_term, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7615] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(939), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7680] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(797), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7745] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(860), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7810] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(812), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7875] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(873), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [7940] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(880), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8005] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(861), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8070] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(807), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8135] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(808), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8200] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(793), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8265] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(852), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8330] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(854), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8395] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(842), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8460] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(867), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8525] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(868), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8590] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(822), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8655] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(883), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8720] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(886), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8785] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(881), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8850] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(900), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8915] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(904), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [8980] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(898), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [9045] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(798), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [9110] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(802), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [9175] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(796), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [9240] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(824), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [9305] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(834), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [9370] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(846), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, + STATE(1093), 3, sym_forall, sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, + sym__typeExpr, + STATE(579), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [9435] = 18, + [156] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(43), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(57), 1, - anon_sym_u2200, - STATE(450), 1, - sym_term, - STATE(847), 1, - sym_typeExpr, - STATE(151), 2, - sym__atom, - sym_recUpdate, - STATE(382), 2, - sym_forall, - sym_binders, - STATE(470), 2, - sym_binder, - aux_sym_binders_repeat1, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, + ACTIONS(9), 1, sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [9500] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(61), 1, + ACTIONS(13), 1, anon_sym_BSLASH, - ACTIONS(63), 1, + ACTIONS(15), 1, anon_sym_u03bb, - ACTIONS(65), 1, + ACTIONS(17), 1, anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(848), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [9565] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(45), 1, + ACTIONS(19), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(73), 1, - anon_sym_u2200, - STATE(512), 1, - sym_term, - STATE(844), 1, - sym_typeExpr, - STATE(286), 2, - sym__atom, - sym_recUpdate, - STATE(468), 2, - sym_binder, - aux_sym_binders_repeat1, - STATE(530), 2, - sym_forall, - sym_binders, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [9630] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(193), 1, - anon_sym_BSLASH, - ACTIONS(195), 1, - anon_sym_u03bb, - ACTIONS(235), 1, - anon_sym_LPAREN, - ACTIONS(237), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(25), 1, anon_sym_let, - ACTIONS(241), 1, - anon_sym_if, - STATE(532), 1, - sym_term, - STATE(278), 2, - sym__atom, - sym_recUpdate, - ACTIONS(233), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(693), 4, - sym_doCaseLet, - sym_doArrow, - sym_doLet, - sym__doExpr, - STATE(504), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [9684] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, + ACTIONS(27), 1, anon_sym_do, - ACTIONS(221), 1, - anon_sym_BSLASH, - ACTIONS(223), 1, - anon_sym_u03bb, - ACTIONS(245), 1, - anon_sym_LPAREN, - ACTIONS(247), 1, - anon_sym_LBRACK, - ACTIONS(249), 1, + ACTIONS(29), 1, anon_sym_if, - STATE(561), 1, - sym_caseAlt, - STATE(890), 1, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(33), 1, + anon_sym_0, + STATE(587), 1, sym_term, - STATE(333), 2, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, sym__atom, sym_recUpdate, - ACTIONS(243), 4, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + ACTIONS(11), 3, sym_number, sym_string, sym_character, - sym_identifier, - STATE(627), 5, + STATE(1033), 3, + sym_forall, + sym_binders, + sym__typeExpr, + STATE(579), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [9732] = 10, + [234] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(255), 1, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(19), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(261), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(253), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - ACTIONS(251), 4, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(33), 1, + anon_sym_0, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + ACTIONS(11), 3, + sym_number, + sym_string, + sym_character, + STATE(1087), 3, + sym_forall, + sym_binders, + sym__typeExpr, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [312] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(33), 1, + anon_sym_0, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + ACTIONS(11), 3, + sym_number, + sym_string, + sym_character, + STATE(1226), 3, + sym_forall, + sym_binders, + sym__typeExpr, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [390] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(33), 1, + anon_sym_0, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + ACTIONS(11), 3, + sym_number, + sym_string, + sym_character, + STATE(1172), 3, + sym_forall, + sym_binders, + sym__typeExpr, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [468] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(33), 1, + anon_sym_0, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + ACTIONS(11), 3, + sym_number, + sym_string, + sym_character, + STATE(1072), 3, + sym_forall, + sym_binders, + sym__typeExpr, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [546] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(33), 1, + anon_sym_0, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + ACTIONS(11), 3, + sym_number, + sym_string, + sym_character, + STATE(1109), 3, + sym_forall, + sym_binders, + sym__typeExpr, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [624] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(33), 1, + anon_sym_0, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + ACTIONS(11), 3, + sym_number, + sym_string, + sym_character, + STATE(1135), 3, + sym_forall, + sym_binders, + sym__typeExpr, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [702] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(33), 1, + anon_sym_0, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + ACTIONS(11), 3, + sym_number, + sym_string, + sym_character, + STATE(1167), 3, + sym_forall, + sym_binders, + sym__typeExpr, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [780] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(33), 1, + anon_sym_0, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + ACTIONS(11), 3, + sym_number, + sym_string, + sym_character, + STATE(1015), 3, + sym_forall, + sym_binders, + sym__typeExpr, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [858] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(33), 1, + anon_sym_0, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + ACTIONS(11), 3, + sym_number, + sym_string, + sym_character, + STATE(1025), 3, + sym_forall, + sym_binders, + sym__typeExpr, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [936] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(33), 1, + anon_sym_0, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + ACTIONS(11), 3, + sym_number, + sym_string, + sym_character, + STATE(1035), 3, + sym_forall, + sym_binders, + sym__typeExpr, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [1014] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(33), 1, + anon_sym_0, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + ACTIONS(11), 3, + sym_number, + sym_string, + sym_character, + STATE(1077), 3, + sym_forall, + sym_binders, + sym__typeExpr, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [1092] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(33), 1, + anon_sym_0, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + ACTIONS(11), 3, + sym_number, + sym_string, + sym_character, + STATE(1106), 3, + sym_forall, + sym_binders, + sym__typeExpr, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [1170] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(39), 1, + anon_sym_BSLASH, + ACTIONS(41), 1, + anon_sym_u03bb, + ACTIONS(43), 1, + anon_sym_LPAREN, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_let, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_case, + STATE(598), 1, + sym_term, + ACTIONS(55), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(337), 2, + sym__atom, + sym_recUpdate, + STATE(569), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(566), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(37), 4, sym_number, sym_string, sym_character, sym_identifier, + STATE(589), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [1243] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1021), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [1316] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1036), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [1389] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(386), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [1462] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1125), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [1535] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1138), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [1608] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(387), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [1681] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(79), 1, + anon_sym_BSLASH, + ACTIONS(81), 1, + anon_sym_u03bb, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(85), 1, + anon_sym_LBRACK, + ACTIONS(87), 1, + anon_sym_let, + ACTIONS(89), 1, + anon_sym_if, + STATE(612), 1, + sym_term, + ACTIONS(91), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(349), 2, + sym__atom, + sym_recUpdate, + STATE(584), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(906), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(77), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(600), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [1754] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(394), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [1827] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(681), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1076), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [1900] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(95), 1, + anon_sym_BSLASH, + ACTIONS(97), 1, + anon_sym_u03bb, + ACTIONS(99), 1, + anon_sym_LPAREN, + ACTIONS(101), 1, + anon_sym_LBRACK, + ACTIONS(103), 1, + anon_sym_let, + ACTIONS(105), 1, + anon_sym_if, + STATE(593), 1, + sym_term, + ACTIONS(107), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(344), 2, + sym__atom, + sym_recUpdate, + STATE(585), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(628), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(93), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(590), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [1973] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(79), 1, + anon_sym_BSLASH, + ACTIONS(81), 1, + anon_sym_u03bb, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(85), 1, + anon_sym_LBRACK, + ACTIONS(87), 1, + anon_sym_let, + ACTIONS(89), 1, + anon_sym_if, + STATE(612), 1, + sym_term, + ACTIONS(91), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(349), 2, + sym__atom, + sym_recUpdate, + STATE(584), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(964), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(77), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(600), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [2046] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(111), 1, + anon_sym_BSLASH, + ACTIONS(113), 1, + anon_sym_u03bb, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACK, + ACTIONS(119), 1, + anon_sym_let, + ACTIONS(121), 1, + anon_sym_if, + STATE(626), 1, + sym_term, + ACTIONS(123), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(381), 2, + sym__atom, + sym_recUpdate, + STATE(578), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1154), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(109), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(629), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [2119] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(95), 1, + anon_sym_BSLASH, + ACTIONS(97), 1, + anon_sym_u03bb, + ACTIONS(99), 1, + anon_sym_LPAREN, + ACTIONS(101), 1, + anon_sym_LBRACK, + ACTIONS(103), 1, + anon_sym_let, + ACTIONS(105), 1, + anon_sym_if, + STATE(593), 1, + sym_term, + ACTIONS(107), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(344), 2, + sym__atom, + sym_recUpdate, + STATE(585), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(635), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(93), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(590), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [2192] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(79), 1, + anon_sym_BSLASH, + ACTIONS(81), 1, + anon_sym_u03bb, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(85), 1, + anon_sym_LBRACK, + ACTIONS(87), 1, + anon_sym_let, + ACTIONS(89), 1, + anon_sym_if, + STATE(612), 1, + sym_term, + ACTIONS(91), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(349), 2, + sym__atom, + sym_recUpdate, + STATE(584), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1006), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(77), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(600), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [2265] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(39), 1, + anon_sym_BSLASH, + ACTIONS(41), 1, + anon_sym_u03bb, + ACTIONS(43), 1, + anon_sym_LPAREN, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_let, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_case, + STATE(598), 1, + sym_term, + ACTIONS(55), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(337), 2, + sym__atom, + sym_recUpdate, + STATE(569), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(657), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(37), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(589), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [2338] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(127), 1, + anon_sym_BSLASH, + ACTIONS(129), 1, + anon_sym_u03bb, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(133), 1, + anon_sym_LBRACK, + ACTIONS(135), 1, + anon_sym_let, + ACTIONS(137), 1, + anon_sym_if, + STATE(623), 1, + sym_term, + ACTIONS(139), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(367), 2, + sym__atom, + sym_recUpdate, + STATE(582), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(409), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(125), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(624), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [2411] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(127), 1, + anon_sym_BSLASH, + ACTIONS(129), 1, + anon_sym_u03bb, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(133), 1, + anon_sym_LBRACK, + ACTIONS(135), 1, + anon_sym_let, + ACTIONS(137), 1, + anon_sym_if, + STATE(623), 1, + sym_term, + ACTIONS(139), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(367), 2, + sym__atom, + sym_recUpdate, + STATE(582), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(410), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(125), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(624), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [2484] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(127), 1, + anon_sym_BSLASH, + ACTIONS(129), 1, + anon_sym_u03bb, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(133), 1, + anon_sym_LBRACK, + ACTIONS(135), 1, + anon_sym_let, + ACTIONS(137), 1, + anon_sym_if, + STATE(623), 1, + sym_term, + ACTIONS(139), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(367), 2, + sym__atom, + sym_recUpdate, + STATE(582), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(411), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(125), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(624), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [2557] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(127), 1, + anon_sym_BSLASH, + ACTIONS(129), 1, + anon_sym_u03bb, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(133), 1, + anon_sym_LBRACK, + ACTIONS(135), 1, + anon_sym_let, + ACTIONS(137), 1, + anon_sym_if, + STATE(623), 1, + sym_term, + ACTIONS(139), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(367), 2, + sym__atom, + sym_recUpdate, + STATE(582), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(386), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(125), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(624), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [2630] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(127), 1, + anon_sym_BSLASH, + ACTIONS(129), 1, + anon_sym_u03bb, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(133), 1, + anon_sym_LBRACK, + ACTIONS(135), 1, + anon_sym_let, + ACTIONS(137), 1, + anon_sym_if, + STATE(623), 1, + sym_term, + ACTIONS(139), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(367), 2, + sym__atom, + sym_recUpdate, + STATE(582), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(387), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(125), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(624), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [2703] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(127), 1, + anon_sym_BSLASH, + ACTIONS(129), 1, + anon_sym_u03bb, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(133), 1, + anon_sym_LBRACK, + ACTIONS(135), 1, + anon_sym_let, + ACTIONS(137), 1, + anon_sym_if, + STATE(623), 1, + sym_term, + ACTIONS(139), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(367), 2, + sym__atom, + sym_recUpdate, + STATE(582), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(394), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(125), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(624), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [2776] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(143), 1, + anon_sym_BSLASH, + ACTIONS(145), 1, + anon_sym_u03bb, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_LBRACK, + ACTIONS(151), 1, + anon_sym_let, + ACTIONS(153), 1, + anon_sym_if, + STATE(639), 1, + sym_term, + ACTIONS(155), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(377), 2, + sym__atom, + sym_recUpdate, + STATE(570), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(409), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(141), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(625), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [2849] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(143), 1, + anon_sym_BSLASH, + ACTIONS(145), 1, + anon_sym_u03bb, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_LBRACK, + ACTIONS(151), 1, + anon_sym_let, + ACTIONS(153), 1, + anon_sym_if, + STATE(639), 1, + sym_term, + ACTIONS(155), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(377), 2, + sym__atom, + sym_recUpdate, + STATE(570), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(410), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(141), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(625), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [2922] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(169), 1, + anon_sym_if, + STATE(627), 1, + sym_term, + ACTIONS(171), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(370), 2, + sym__atom, + sym_recUpdate, + STATE(581), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(411), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(157), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(633), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [2995] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(143), 1, + anon_sym_BSLASH, + ACTIONS(145), 1, + anon_sym_u03bb, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_LBRACK, + ACTIONS(151), 1, + anon_sym_let, + ACTIONS(153), 1, + anon_sym_if, + STATE(639), 1, + sym_term, + ACTIONS(155), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(377), 2, + sym__atom, + sym_recUpdate, + STATE(570), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(386), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(141), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(625), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [3068] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(169), 1, + anon_sym_if, + STATE(627), 1, + sym_term, + ACTIONS(171), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(370), 2, + sym__atom, + sym_recUpdate, + STATE(581), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(387), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(157), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(633), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [3141] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(169), 1, + anon_sym_if, + STATE(627), 1, + sym_term, + ACTIONS(171), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(370), 2, + sym__atom, + sym_recUpdate, + STATE(581), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(394), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(157), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(633), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [3214] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(175), 1, + anon_sym_BSLASH, + ACTIONS(177), 1, + anon_sym_u03bb, + ACTIONS(179), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_let, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(187), 1, + anon_sym_if, + ACTIONS(189), 1, + anon_sym_case, + STATE(621), 1, + sym_term, + ACTIONS(191), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(356), 2, + sym__atom, + sym_recUpdate, + STATE(580), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(601), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(173), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(613), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [3287] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(175), 1, + anon_sym_BSLASH, + ACTIONS(177), 1, + anon_sym_u03bb, + ACTIONS(179), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_let, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(187), 1, + anon_sym_if, + ACTIONS(189), 1, + anon_sym_case, + STATE(621), 1, + sym_term, + ACTIONS(191), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(356), 2, + sym__atom, + sym_recUpdate, + STATE(580), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(617), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(173), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(613), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [3360] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(143), 1, + anon_sym_BSLASH, + ACTIONS(145), 1, + anon_sym_u03bb, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_LBRACK, + ACTIONS(151), 1, + anon_sym_let, + ACTIONS(153), 1, + anon_sym_if, + STATE(639), 1, + sym_term, + ACTIONS(155), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(377), 2, + sym__atom, + sym_recUpdate, + STATE(570), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(411), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(141), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(625), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [3433] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(175), 1, + anon_sym_BSLASH, + ACTIONS(177), 1, + anon_sym_u03bb, + ACTIONS(179), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_let, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(187), 1, + anon_sym_if, + ACTIONS(189), 1, + anon_sym_case, + STATE(621), 1, + sym_term, + ACTIONS(191), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(356), 2, + sym__atom, + sym_recUpdate, + STATE(580), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(619), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(173), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(613), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [3506] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(143), 1, + anon_sym_BSLASH, + ACTIONS(145), 1, + anon_sym_u03bb, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_LBRACK, + ACTIONS(151), 1, + anon_sym_let, + ACTIONS(153), 1, + anon_sym_if, + STATE(639), 1, + sym_term, + ACTIONS(155), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(377), 2, + sym__atom, + sym_recUpdate, + STATE(570), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(387), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(141), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(625), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [3579] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(143), 1, + anon_sym_BSLASH, + ACTIONS(145), 1, + anon_sym_u03bb, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_LBRACK, + ACTIONS(151), 1, + anon_sym_let, + ACTIONS(153), 1, + anon_sym_if, + STATE(639), 1, + sym_term, + ACTIONS(155), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(377), 2, + sym__atom, + sym_recUpdate, + STATE(570), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(394), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(141), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(625), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [3652] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(682), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [3725] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(650), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [3798] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(175), 1, + anon_sym_BSLASH, + ACTIONS(177), 1, + anon_sym_u03bb, + ACTIONS(179), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_let, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(187), 1, + anon_sym_if, + ACTIONS(189), 1, + anon_sym_case, + STATE(621), 1, + sym_term, + ACTIONS(191), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(356), 2, + sym__atom, + sym_recUpdate, + STATE(580), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(622), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(173), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(613), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [3871] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(662), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [3944] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(175), 1, + anon_sym_BSLASH, + ACTIONS(177), 1, + anon_sym_u03bb, + ACTIONS(179), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_let, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(187), 1, + anon_sym_if, + ACTIONS(189), 1, + anon_sym_case, + STATE(621), 1, + sym_term, + ACTIONS(191), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(356), 2, + sym__atom, + sym_recUpdate, + STATE(580), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(603), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(173), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(613), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [4017] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(175), 1, + anon_sym_BSLASH, + ACTIONS(177), 1, + anon_sym_u03bb, + ACTIONS(179), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_let, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(187), 1, + anon_sym_if, + ACTIONS(189), 1, + anon_sym_case, + STATE(621), 1, + sym_term, + ACTIONS(191), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(356), 2, + sym__atom, + sym_recUpdate, + STATE(580), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(602), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(173), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(613), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [4090] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(189), 1, + anon_sym_case, + ACTIONS(195), 1, + anon_sym_BSLASH, + ACTIONS(197), 1, + anon_sym_u03bb, + ACTIONS(199), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, + anon_sym_LBRACK, + ACTIONS(203), 1, + anon_sym_let, + ACTIONS(205), 1, + anon_sym_if, + STATE(592), 1, + sym_term, + ACTIONS(207), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(339), 2, + sym__atom, + sym_recUpdate, + STATE(567), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(601), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(193), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(588), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [4163] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(189), 1, + anon_sym_case, + ACTIONS(195), 1, + anon_sym_BSLASH, + ACTIONS(197), 1, + anon_sym_u03bb, + ACTIONS(199), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, + anon_sym_LBRACK, + ACTIONS(203), 1, + anon_sym_let, + ACTIONS(205), 1, + anon_sym_if, + STATE(592), 1, + sym_term, + ACTIONS(207), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(339), 2, + sym__atom, + sym_recUpdate, + STATE(567), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(617), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(193), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(588), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [4236] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(655), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [4309] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(189), 1, + anon_sym_case, + ACTIONS(195), 1, + anon_sym_BSLASH, + ACTIONS(197), 1, + anon_sym_u03bb, + ACTIONS(199), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, + anon_sym_LBRACK, + ACTIONS(203), 1, + anon_sym_let, + ACTIONS(205), 1, + anon_sym_if, + STATE(592), 1, + sym_term, + ACTIONS(207), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(339), 2, + sym__atom, + sym_recUpdate, + STATE(567), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(619), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(193), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(588), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [4382] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(668), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [4455] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(679), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [4528] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(111), 1, + anon_sym_BSLASH, + ACTIONS(113), 1, + anon_sym_u03bb, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACK, + ACTIONS(119), 1, + anon_sym_let, + ACTIONS(121), 1, + anon_sym_if, + STATE(626), 1, + sym_term, + ACTIONS(123), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(381), 2, + sym__atom, + sym_recUpdate, + STATE(578), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(409), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(109), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(629), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [4601] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(111), 1, + anon_sym_BSLASH, + ACTIONS(113), 1, + anon_sym_u03bb, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACK, + ACTIONS(119), 1, + anon_sym_let, + ACTIONS(121), 1, + anon_sym_if, + STATE(626), 1, + sym_term, + ACTIONS(123), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(381), 2, + sym__atom, + sym_recUpdate, + STATE(578), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(410), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(109), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(629), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [4674] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(189), 1, + anon_sym_case, + ACTIONS(195), 1, + anon_sym_BSLASH, + ACTIONS(197), 1, + anon_sym_u03bb, + ACTIONS(199), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, + anon_sym_LBRACK, + ACTIONS(203), 1, + anon_sym_let, + ACTIONS(205), 1, + anon_sym_if, + STATE(592), 1, + sym_term, + ACTIONS(207), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(339), 2, + sym__atom, + sym_recUpdate, + STATE(567), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(622), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(193), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(588), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [4747] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(111), 1, + anon_sym_BSLASH, + ACTIONS(113), 1, + anon_sym_u03bb, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACK, + ACTIONS(119), 1, + anon_sym_let, + ACTIONS(121), 1, + anon_sym_if, + STATE(626), 1, + sym_term, + ACTIONS(123), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(381), 2, + sym__atom, + sym_recUpdate, + STATE(578), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(386), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(109), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(629), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [4820] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(189), 1, + anon_sym_case, + ACTIONS(195), 1, + anon_sym_BSLASH, + ACTIONS(197), 1, + anon_sym_u03bb, + ACTIONS(199), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, + anon_sym_LBRACK, + ACTIONS(203), 1, + anon_sym_let, + ACTIONS(205), 1, + anon_sym_if, + STATE(592), 1, + sym_term, + ACTIONS(207), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(339), 2, + sym__atom, + sym_recUpdate, + STATE(567), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(603), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(193), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(588), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [4893] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(189), 1, + anon_sym_case, + ACTIONS(195), 1, + anon_sym_BSLASH, + ACTIONS(197), 1, + anon_sym_u03bb, + ACTIONS(199), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, + anon_sym_LBRACK, + ACTIONS(203), 1, + anon_sym_let, + ACTIONS(205), 1, + anon_sym_if, + STATE(592), 1, + sym_term, + ACTIONS(207), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(339), 2, + sym__atom, + sym_recUpdate, + STATE(567), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(602), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(193), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(588), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [4966] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(169), 1, + anon_sym_if, + STATE(627), 1, + sym_term, + ACTIONS(171), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(370), 2, + sym__atom, + sym_recUpdate, + STATE(581), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(409), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(157), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(633), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [5039] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(169), 1, + anon_sym_if, + STATE(627), 1, + sym_term, + ACTIONS(171), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(370), 2, + sym__atom, + sym_recUpdate, + STATE(581), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(410), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(157), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(633), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [5112] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(111), 1, + anon_sym_BSLASH, + ACTIONS(113), 1, + anon_sym_u03bb, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACK, + ACTIONS(119), 1, + anon_sym_let, + ACTIONS(121), 1, + anon_sym_if, + STATE(626), 1, + sym_term, + ACTIONS(123), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(381), 2, + sym__atom, + sym_recUpdate, + STATE(578), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(411), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(109), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(629), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [5185] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(169), 1, + anon_sym_if, + STATE(627), 1, + sym_term, + ACTIONS(171), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(370), 2, + sym__atom, + sym_recUpdate, + STATE(581), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(386), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(157), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(633), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [5258] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(111), 1, + anon_sym_BSLASH, + ACTIONS(113), 1, + anon_sym_u03bb, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACK, + ACTIONS(119), 1, + anon_sym_let, + ACTIONS(121), 1, + anon_sym_if, + STATE(626), 1, + sym_term, + ACTIONS(123), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(381), 2, + sym__atom, + sym_recUpdate, + STATE(578), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(387), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(109), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(629), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [5331] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(111), 1, + anon_sym_BSLASH, + ACTIONS(113), 1, + anon_sym_u03bb, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACK, + ACTIONS(119), 1, + anon_sym_let, + ACTIONS(121), 1, + anon_sym_if, + STATE(626), 1, + sym_term, + ACTIONS(123), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(381), 2, + sym__atom, + sym_recUpdate, + STATE(578), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(394), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(109), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(629), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [5404] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(79), 1, + anon_sym_BSLASH, + ACTIONS(81), 1, + anon_sym_u03bb, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(85), 1, + anon_sym_LBRACK, + ACTIONS(87), 1, + anon_sym_let, + ACTIONS(89), 1, + anon_sym_if, + STATE(612), 1, + sym_term, + ACTIONS(91), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(349), 2, + sym__atom, + sym_recUpdate, + STATE(584), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(557), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(77), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(600), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [5477] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(79), 1, + anon_sym_BSLASH, + ACTIONS(81), 1, + anon_sym_u03bb, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(85), 1, + anon_sym_LBRACK, + ACTIONS(87), 1, + anon_sym_let, + ACTIONS(89), 1, + anon_sym_if, + STATE(612), 1, + sym_term, + ACTIONS(91), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(349), 2, + sym__atom, + sym_recUpdate, + STATE(584), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(558), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(77), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(600), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [5550] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(211), 1, + anon_sym_BSLASH, + ACTIONS(213), 1, + anon_sym_u03bb, + ACTIONS(215), 1, + anon_sym_LPAREN, + ACTIONS(217), 1, + anon_sym_LBRACK, + ACTIONS(219), 1, + anon_sym_let, + ACTIONS(221), 1, + anon_sym_if, + STATE(594), 1, + sym_term, + ACTIONS(223), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(347), 2, + sym__atom, + sym_recUpdate, + STATE(563), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(559), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(209), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(597), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [5623] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(79), 1, + anon_sym_BSLASH, + ACTIONS(81), 1, + anon_sym_u03bb, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(85), 1, + anon_sym_LBRACK, + ACTIONS(87), 1, + anon_sym_let, + ACTIONS(89), 1, + anon_sym_if, + STATE(612), 1, + sym_term, + ACTIONS(91), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(349), 2, + sym__atom, + sym_recUpdate, + STATE(584), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(562), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(77), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(600), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [5696] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(211), 1, + anon_sym_BSLASH, + ACTIONS(213), 1, + anon_sym_u03bb, + ACTIONS(215), 1, + anon_sym_LPAREN, + ACTIONS(217), 1, + anon_sym_LBRACK, + ACTIONS(219), 1, + anon_sym_let, + ACTIONS(221), 1, + anon_sym_if, + STATE(594), 1, + sym_term, + ACTIONS(223), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(347), 2, + sym__atom, + sym_recUpdate, + STATE(563), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(564), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(209), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(597), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [5769] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(211), 1, + anon_sym_BSLASH, + ACTIONS(213), 1, + anon_sym_u03bb, + ACTIONS(215), 1, + anon_sym_LPAREN, + ACTIONS(217), 1, + anon_sym_LBRACK, + ACTIONS(219), 1, + anon_sym_let, + ACTIONS(221), 1, + anon_sym_if, + STATE(594), 1, + sym_term, + ACTIONS(223), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(347), 2, + sym__atom, + sym_recUpdate, + STATE(563), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(566), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(209), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(597), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [5842] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(95), 1, + anon_sym_BSLASH, + ACTIONS(97), 1, + anon_sym_u03bb, + ACTIONS(99), 1, + anon_sym_LPAREN, + ACTIONS(101), 1, + anon_sym_LBRACK, + ACTIONS(103), 1, + anon_sym_let, + ACTIONS(105), 1, + anon_sym_if, + STATE(593), 1, + sym_term, + ACTIONS(107), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(344), 2, + sym__atom, + sym_recUpdate, + STATE(585), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(557), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(93), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(590), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [5915] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(95), 1, + anon_sym_BSLASH, + ACTIONS(97), 1, + anon_sym_u03bb, + ACTIONS(99), 1, + anon_sym_LPAREN, + ACTIONS(101), 1, + anon_sym_LBRACK, + ACTIONS(103), 1, + anon_sym_let, + ACTIONS(105), 1, + anon_sym_if, + STATE(593), 1, + sym_term, + ACTIONS(107), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(344), 2, + sym__atom, + sym_recUpdate, + STATE(585), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(558), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(93), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(590), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [5988] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(237), 1, + anon_sym_if, + STATE(630), 1, + sym_term, + ACTIONS(239), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(382), 2, + sym__atom, + sym_recUpdate, + STATE(568), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(411), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(225), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(637), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [6061] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(95), 1, + anon_sym_BSLASH, + ACTIONS(97), 1, + anon_sym_u03bb, + ACTIONS(99), 1, + anon_sym_LPAREN, + ACTIONS(101), 1, + anon_sym_LBRACK, + ACTIONS(103), 1, + anon_sym_let, + ACTIONS(105), 1, + anon_sym_if, + STATE(593), 1, + sym_term, + ACTIONS(107), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(344), 2, + sym__atom, + sym_recUpdate, + STATE(585), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(562), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(93), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(590), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [6134] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(237), 1, + anon_sym_if, + STATE(630), 1, + sym_term, + ACTIONS(239), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(382), 2, + sym__atom, + sym_recUpdate, + STATE(568), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(387), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(225), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(637), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [6207] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(237), 1, + anon_sym_if, + STATE(630), 1, + sym_term, + ACTIONS(239), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(382), 2, + sym__atom, + sym_recUpdate, + STATE(568), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(394), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(225), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(637), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [6280] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(211), 1, + anon_sym_BSLASH, + ACTIONS(213), 1, + anon_sym_u03bb, + ACTIONS(215), 1, + anon_sym_LPAREN, + ACTIONS(217), 1, + anon_sym_LBRACK, + ACTIONS(219), 1, + anon_sym_let, + ACTIONS(221), 1, + anon_sym_if, + STATE(594), 1, + sym_term, + ACTIONS(223), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(347), 2, + sym__atom, + sym_recUpdate, + STATE(563), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(557), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(209), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(597), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [6353] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(211), 1, + anon_sym_BSLASH, + ACTIONS(213), 1, + anon_sym_u03bb, + ACTIONS(215), 1, + anon_sym_LPAREN, + ACTIONS(217), 1, + anon_sym_LBRACK, + ACTIONS(219), 1, + anon_sym_let, + ACTIONS(221), 1, + anon_sym_if, + STATE(594), 1, + sym_term, + ACTIONS(223), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(347), 2, + sym__atom, + sym_recUpdate, + STATE(563), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(558), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(209), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(597), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [6426] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(79), 1, + anon_sym_BSLASH, + ACTIONS(81), 1, + anon_sym_u03bb, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(85), 1, + anon_sym_LBRACK, + ACTIONS(87), 1, + anon_sym_let, + ACTIONS(89), 1, + anon_sym_if, + STATE(612), 1, + sym_term, + ACTIONS(91), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(349), 2, + sym__atom, + sym_recUpdate, + STATE(584), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(559), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(77), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(600), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [6499] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(211), 1, + anon_sym_BSLASH, + ACTIONS(213), 1, + anon_sym_u03bb, + ACTIONS(215), 1, + anon_sym_LPAREN, + ACTIONS(217), 1, + anon_sym_LBRACK, + ACTIONS(219), 1, + anon_sym_let, + ACTIONS(221), 1, + anon_sym_if, + STATE(594), 1, + sym_term, + ACTIONS(223), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(347), 2, + sym__atom, + sym_recUpdate, + STATE(563), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(562), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(209), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(597), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [6572] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(79), 1, + anon_sym_BSLASH, + ACTIONS(81), 1, + anon_sym_u03bb, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(85), 1, + anon_sym_LBRACK, + ACTIONS(87), 1, + anon_sym_let, + ACTIONS(89), 1, + anon_sym_if, + STATE(612), 1, + sym_term, + ACTIONS(91), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(349), 2, + sym__atom, + sym_recUpdate, + STATE(584), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(564), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(77), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(600), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [6645] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(79), 1, + anon_sym_BSLASH, + ACTIONS(81), 1, + anon_sym_u03bb, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(85), 1, + anon_sym_LBRACK, + ACTIONS(87), 1, + anon_sym_let, + ACTIONS(89), 1, + anon_sym_if, + STATE(612), 1, + sym_term, + ACTIONS(91), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(349), 2, + sym__atom, + sym_recUpdate, + STATE(584), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(566), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(77), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(600), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [6718] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(127), 1, + anon_sym_BSLASH, + ACTIONS(129), 1, + anon_sym_u03bb, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(133), 1, + anon_sym_LBRACK, + ACTIONS(135), 1, + anon_sym_let, + ACTIONS(137), 1, + anon_sym_if, + STATE(623), 1, + sym_term, + ACTIONS(139), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(367), 2, + sym__atom, + sym_recUpdate, + STATE(582), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1124), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(125), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(624), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [6791] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(237), 1, + anon_sym_if, + STATE(630), 1, + sym_term, + ACTIONS(239), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(382), 2, + sym__atom, + sym_recUpdate, + STATE(568), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(409), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(225), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(637), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [6864] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(237), 1, + anon_sym_if, + STATE(630), 1, + sym_term, + ACTIONS(239), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(382), 2, + sym__atom, + sym_recUpdate, + STATE(568), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(410), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(225), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(637), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [6937] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(95), 1, + anon_sym_BSLASH, + ACTIONS(97), 1, + anon_sym_u03bb, + ACTIONS(99), 1, + anon_sym_LPAREN, + ACTIONS(101), 1, + anon_sym_LBRACK, + ACTIONS(103), 1, + anon_sym_let, + ACTIONS(105), 1, + anon_sym_if, + STATE(593), 1, + sym_term, + ACTIONS(107), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(344), 2, + sym__atom, + sym_recUpdate, + STATE(585), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(559), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(93), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(590), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [7010] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(237), 1, + anon_sym_if, + STATE(630), 1, + sym_term, + ACTIONS(239), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(382), 2, + sym__atom, + sym_recUpdate, + STATE(568), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(386), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(225), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(637), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [7083] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(95), 1, + anon_sym_BSLASH, + ACTIONS(97), 1, + anon_sym_u03bb, + ACTIONS(99), 1, + anon_sym_LPAREN, + ACTIONS(101), 1, + anon_sym_LBRACK, + ACTIONS(103), 1, + anon_sym_let, + ACTIONS(105), 1, + anon_sym_if, + STATE(593), 1, + sym_term, + ACTIONS(107), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(344), 2, + sym__atom, + sym_recUpdate, + STATE(585), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(564), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(93), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(590), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [7156] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(95), 1, + anon_sym_BSLASH, + ACTIONS(97), 1, + anon_sym_u03bb, + ACTIONS(99), 1, + anon_sym_LPAREN, + ACTIONS(101), 1, + anon_sym_LBRACK, + ACTIONS(103), 1, + anon_sym_let, + ACTIONS(105), 1, + anon_sym_if, + STATE(593), 1, + sym_term, + ACTIONS(107), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(344), 2, + sym__atom, + sym_recUpdate, + STATE(585), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(566), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(93), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(590), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [7229] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(39), 1, + anon_sym_BSLASH, + ACTIONS(41), 1, + anon_sym_u03bb, + ACTIONS(43), 1, + anon_sym_LPAREN, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_let, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_case, + STATE(598), 1, + sym_term, + ACTIONS(55), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(337), 2, + sym__atom, + sym_recUpdate, + STATE(569), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(557), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(37), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(589), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [7302] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(39), 1, + anon_sym_BSLASH, + ACTIONS(41), 1, + anon_sym_u03bb, + ACTIONS(43), 1, + anon_sym_LPAREN, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_let, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_case, + STATE(598), 1, + sym_term, + ACTIONS(55), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(337), 2, + sym__atom, + sym_recUpdate, + STATE(569), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(558), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(37), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(589), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [7375] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + anon_sym_u03bb, + ACTIONS(247), 1, + anon_sym_LPAREN, + ACTIONS(249), 1, + anon_sym_LBRACK, + ACTIONS(251), 1, + anon_sym_let, + ACTIONS(253), 1, + anon_sym_if, + STATE(631), 1, + sym_term, + ACTIONS(255), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(365), 2, + sym__atom, + sym_recUpdate, + STATE(572), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(411), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(241), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(638), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [7448] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(39), 1, + anon_sym_BSLASH, + ACTIONS(41), 1, + anon_sym_u03bb, + ACTIONS(43), 1, + anon_sym_LPAREN, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_let, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_case, + STATE(598), 1, + sym_term, + ACTIONS(55), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(337), 2, + sym__atom, + sym_recUpdate, + STATE(569), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(562), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(37), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(589), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [7521] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + anon_sym_u03bb, + ACTIONS(247), 1, + anon_sym_LPAREN, + ACTIONS(249), 1, + anon_sym_LBRACK, + ACTIONS(251), 1, + anon_sym_let, + ACTIONS(253), 1, + anon_sym_if, + STATE(631), 1, + sym_term, + ACTIONS(255), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(365), 2, + sym__atom, + sym_recUpdate, + STATE(572), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(387), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(241), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(638), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [7594] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + anon_sym_u03bb, + ACTIONS(247), 1, + anon_sym_LPAREN, + ACTIONS(249), 1, + anon_sym_LBRACK, + ACTIONS(251), 1, + anon_sym_let, + ACTIONS(253), 1, + anon_sym_if, + STATE(631), 1, + sym_term, + ACTIONS(255), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(365), 2, + sym__atom, + sym_recUpdate, + STATE(572), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(394), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(241), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(638), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [7667] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + anon_sym_u03bb, + ACTIONS(247), 1, + anon_sym_LPAREN, + ACTIONS(249), 1, + anon_sym_LBRACK, + ACTIONS(251), 1, + anon_sym_let, + ACTIONS(253), 1, + anon_sym_if, + STATE(631), 1, + sym_term, + ACTIONS(255), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(365), 2, + sym__atom, + sym_recUpdate, + STATE(572), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(409), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(241), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(638), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [7740] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + anon_sym_u03bb, + ACTIONS(247), 1, + anon_sym_LPAREN, + ACTIONS(249), 1, + anon_sym_LBRACK, + ACTIONS(251), 1, + anon_sym_let, + ACTIONS(253), 1, + anon_sym_if, + STATE(631), 1, + sym_term, + ACTIONS(255), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(365), 2, + sym__atom, + sym_recUpdate, + STATE(572), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(410), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(241), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(638), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [7813] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(39), 1, + anon_sym_BSLASH, + ACTIONS(41), 1, + anon_sym_u03bb, + ACTIONS(43), 1, + anon_sym_LPAREN, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_let, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_case, + STATE(598), 1, + sym_term, + ACTIONS(55), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(337), 2, + sym__atom, + sym_recUpdate, + STATE(569), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(559), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(37), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(589), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [7886] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + anon_sym_u03bb, + ACTIONS(247), 1, + anon_sym_LPAREN, + ACTIONS(249), 1, + anon_sym_LBRACK, + ACTIONS(251), 1, + anon_sym_let, + ACTIONS(253), 1, + anon_sym_if, + STATE(631), 1, + sym_term, + ACTIONS(255), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(365), 2, + sym__atom, + sym_recUpdate, + STATE(572), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(386), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(241), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(638), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [7959] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(39), 1, + anon_sym_BSLASH, + ACTIONS(41), 1, + anon_sym_u03bb, + ACTIONS(43), 1, + anon_sym_LPAREN, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_let, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_case, + STATE(598), 1, + sym_term, + ACTIONS(55), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(337), 2, + sym__atom, + sym_recUpdate, + STATE(569), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(564), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(37), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(589), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [8032] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1076), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [8105] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(259), 1, + anon_sym_BSLASH, + ACTIONS(261), 1, + anon_sym_u03bb, + ACTIONS(263), 1, + anon_sym_LPAREN, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, + anon_sym_let, + ACTIONS(269), 1, + anon_sym_if, + STATE(611), 1, + sym_term, + ACTIONS(271), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(351), 2, + sym__atom, + sym_recUpdate, + STATE(577), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(409), 3, + sym_forall, + sym_binders, + sym__typeExpr, ACTIONS(257), 4, - anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(152), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [9774] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(255), 1, - anon_sym_LPAREN, - ACTIONS(259), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(261), 1, - anon_sym_LBRACE, - ACTIONS(265), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - ACTIONS(263), 4, sym_number, sym_string, sym_character, sym_identifier, - ACTIONS(267), 4, - anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(153), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [9816] = 10, + STATE(614), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [8178] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(274), 1, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(259), 1, + anon_sym_BSLASH, + ACTIONS(261), 1, + anon_sym_u03bb, + ACTIONS(263), 1, + anon_sym_LPAREN, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, + anon_sym_let, + ACTIONS(269), 1, + anon_sym_if, + STATE(611), 1, + sym_term, + ACTIONS(271), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(351), 2, + sym__atom, + sym_recUpdate, + STATE(577), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(410), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(257), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(614), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [8251] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(259), 1, + anon_sym_BSLASH, + ACTIONS(261), 1, + anon_sym_u03bb, + ACTIONS(263), 1, + anon_sym_LPAREN, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, + anon_sym_let, + ACTIONS(269), 1, + anon_sym_if, + STATE(611), 1, + sym_term, + ACTIONS(271), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(351), 2, + sym__atom, + sym_recUpdate, + STATE(577), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(411), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(257), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(614), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [8324] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(259), 1, + anon_sym_BSLASH, + ACTIONS(261), 1, + anon_sym_u03bb, + ACTIONS(263), 1, + anon_sym_LPAREN, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, + anon_sym_let, + ACTIONS(269), 1, + anon_sym_if, + STATE(611), 1, + sym_term, + ACTIONS(271), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(351), 2, + sym__atom, + sym_recUpdate, + STATE(577), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(386), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(257), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(614), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [8397] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(259), 1, + anon_sym_BSLASH, + ACTIONS(261), 1, + anon_sym_u03bb, + ACTIONS(263), 1, + anon_sym_LPAREN, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, + anon_sym_let, + ACTIONS(269), 1, + anon_sym_if, + STATE(611), 1, + sym_term, + ACTIONS(271), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(351), 2, + sym__atom, + sym_recUpdate, + STATE(577), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(387), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(257), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(614), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [8470] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(259), 1, + anon_sym_BSLASH, + ACTIONS(261), 1, + anon_sym_u03bb, + ACTIONS(263), 1, + anon_sym_LPAREN, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, + anon_sym_let, + ACTIONS(269), 1, + anon_sym_if, + STATE(611), 1, + sym_term, + ACTIONS(271), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(351), 2, + sym__atom, + sym_recUpdate, + STATE(577), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(394), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(257), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(614), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [8543] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1158), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [8616] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1020), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [8689] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(273), 1, + sym_identifier, + ACTIONS(277), 1, anon_sym_LPAREN, ACTIONS(279), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(282), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(281), 1, + anon_sym_data, + ACTIONS(283), 1, + anon_sym_derive, ACTIONS(285), 1, - anon_sym_LBRACK, - ACTIONS(272), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - ACTIONS(269), 4, + anon_sym_pfunc, + ACTIONS(287), 1, + anon_sym_ptype, + ACTIONS(289), 1, + anon_sym_import, + ACTIONS(293), 1, + anon_sym_record, + ACTIONS(295), 1, + anon_sym_class, + ACTIONS(297), 1, + anon_sym_instance, + STATE(893), 1, + sym_importDef, + STATE(1086), 1, + sym__appExpr, + ACTIONS(291), 2, + anon_sym_infixr, + anon_sym_infixl, + STATE(451), 2, + sym__atom, + sym_recUpdate, + ACTIONS(275), 3, sym_number, sym_string, sym_character, - sym_identifier, - ACTIONS(277), 4, - anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(153), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [9858] = 12, + STATE(898), 12, + sym_sigDecl, + sym_defDecl, + sym_shortDataDecl, + sym_dataDecl, + sym_deriveDecl, + sym_pfuncDecl, + sym_ptypeDecl, + sym_mixfixDecl, + sym_recordDecl, + sym_classDecl, + sym_instanceDecl, + sym__decl, + [8762] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, + ACTIONS(13), 1, anon_sym_BSLASH, - ACTIONS(167), 1, + ACTIONS(15), 1, anon_sym_u03bb, - ACTIONS(290), 1, + ACTIONS(17), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(294), 1, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, anon_sym_if, - STATE(915), 1, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, sym_term, - STATE(336), 2, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, sym__atom, sym_recUpdate, - ACTIONS(288), 4, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1136), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(593), 5, + STATE(579), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [9903] = 12, + [8835] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, + ACTIONS(13), 1, anon_sym_BSLASH, - ACTIONS(167), 1, + ACTIONS(15), 1, anon_sym_u03bb, - ACTIONS(290), 1, + ACTIONS(17), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(294), 1, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, anon_sym_if, - STATE(923), 1, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, sym_term, - STATE(336), 2, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, sym__atom, sym_recUpdate, - ACTIONS(288), 4, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1075), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(593), 5, + STATE(579), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [9948] = 10, + [8908] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(185), 1, - anon_sym_LBRACK, - ACTIONS(298), 1, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, anon_sym_LPAREN, - ACTIONS(300), 1, + ACTIONS(19), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(302), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(257), 2, - sym_semi, - ts_builtin_sym_end, - ACTIONS(253), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - anon_sym_where, - ACTIONS(296), 4, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1105), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(157), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [9989] = 10, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [8981] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(185), 1, - anon_sym_LBRACK, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(300), 1, + ACTIONS(19), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(302), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(267), 2, - sym_semi, - ts_builtin_sym_end, - ACTIONS(265), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - anon_sym_where, - ACTIONS(304), 4, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1110), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(158), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [10030] = 10, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [9054] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(309), 1, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, anon_sym_LPAREN, - ACTIONS(312), 1, + ACTIONS(19), 1, anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1093), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [9127] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1148), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [9200] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1170), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [9273] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1182), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [9346] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1033), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [9419] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(143), 1, + anon_sym_BSLASH, + ACTIONS(145), 1, + anon_sym_u03bb, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_LBRACK, + ACTIONS(151), 1, + anon_sym_let, + ACTIONS(153), 1, + anon_sym_if, + STATE(639), 1, + sym_term, + ACTIONS(155), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(377), 2, + sym__atom, + sym_recUpdate, + STATE(570), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1071), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(141), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(625), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [9492] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1043), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [9565] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1046), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [9638] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1224), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [9711] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(175), 1, + anon_sym_BSLASH, + ACTIONS(177), 1, + anon_sym_u03bb, + ACTIONS(179), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_let, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(187), 1, + anon_sym_if, + ACTIONS(189), 1, + anon_sym_case, + STATE(621), 1, + sym_term, + ACTIONS(191), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(356), 2, + sym__atom, + sym_recUpdate, + STATE(580), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1005), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(173), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(613), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [9784] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1101), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [9857] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1107), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [9930] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1087), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [10003] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1219), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [10076] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1151), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [10149] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1153), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [10222] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1226), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [10295] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1220), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [10368] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1213), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [10441] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1214), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [10514] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1172), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [10587] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(189), 1, + anon_sym_case, + ACTIONS(195), 1, + anon_sym_BSLASH, + ACTIONS(197), 1, + anon_sym_u03bb, + ACTIONS(199), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, + anon_sym_LBRACK, + ACTIONS(203), 1, + anon_sym_let, + ACTIONS(205), 1, + anon_sym_if, + STATE(592), 1, + sym_term, + ACTIONS(207), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(339), 2, + sym__atom, + sym_recUpdate, + STATE(567), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(676), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(193), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(588), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [10660] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1159), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [10733] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1024), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [10806] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1146), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [10879] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1161), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [10952] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1102), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [11025] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1103), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [11098] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1041), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [11171] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(409), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [11244] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1162), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [11317] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1166), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [11390] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1085), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [11463] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(410), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [11536] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1054), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [11609] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1063), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [11682] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1072), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [11755] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(189), 1, + anon_sym_case, + ACTIONS(195), 1, + anon_sym_BSLASH, + ACTIONS(197), 1, + anon_sym_u03bb, + ACTIONS(199), 1, + anon_sym_LPAREN, + ACTIONS(201), 1, + anon_sym_LBRACK, + ACTIONS(203), 1, + anon_sym_let, + ACTIONS(205), 1, + anon_sym_if, + STATE(592), 1, + sym_term, + ACTIONS(207), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(339), 2, + sym__atom, + sym_recUpdate, + STATE(567), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(741), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(193), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(588), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [11828] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1090), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [11901] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1091), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [11974] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1109), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [12047] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(111), 1, + anon_sym_BSLASH, + ACTIONS(113), 1, + anon_sym_u03bb, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACK, + ACTIONS(119), 1, + anon_sym_let, + ACTIONS(121), 1, + anon_sym_if, + STATE(626), 1, + sym_term, + ACTIONS(123), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(381), 2, + sym__atom, + sym_recUpdate, + STATE(578), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1096), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(109), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(629), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [12120] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1120), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [12193] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1121), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [12266] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1190), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [12339] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(175), 1, + anon_sym_BSLASH, + ACTIONS(177), 1, + anon_sym_u03bb, + ACTIONS(179), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_let, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(187), 1, + anon_sym_if, + ACTIONS(189), 1, + anon_sym_case, + STATE(621), 1, + sym_term, + ACTIONS(191), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(356), 2, + sym__atom, + sym_recUpdate, + STATE(580), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(888), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(173), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(613), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [12412] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1140), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [12485] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1144), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [12558] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1135), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [12631] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1178), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [12704] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1180), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [12777] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1167), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [12850] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1222), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [12923] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1223), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [12996] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1015), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [13069] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1018), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [13142] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1019), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [13215] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1025), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [13288] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1028), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [13361] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1029), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [13434] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1045), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [13507] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1038), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [13580] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1039), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [13653] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1035), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [13726] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1048), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [13799] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1049), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [13872] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1057), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [13945] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1061), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [14018] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1065), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [14091] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1094), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [14164] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1082), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [14237] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1083), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [14310] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1077), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [14383] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1095), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [14456] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1099), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [14529] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1106), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [14602] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(411), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [14675] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(143), 1, + anon_sym_BSLASH, + ACTIONS(145), 1, + anon_sym_u03bb, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_LBRACK, + ACTIONS(151), 1, + anon_sym_let, + ACTIONS(153), 1, + anon_sym_if, + STATE(639), 1, + sym_term, + ACTIONS(155), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(377), 2, + sym__atom, + sym_recUpdate, + STATE(570), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1058), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(141), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(625), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [14748] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1060), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [14821] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(143), 1, + anon_sym_BSLASH, + ACTIONS(145), 1, + anon_sym_u03bb, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_LBRACK, + ACTIONS(151), 1, + anon_sym_let, + ACTIONS(153), 1, + anon_sym_if, + STATE(639), 1, + sym_term, + ACTIONS(155), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(377), 2, + sym__atom, + sym_recUpdate, + STATE(570), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1066), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(141), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(625), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [14894] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + STATE(587), 1, + sym_term, + ACTIONS(35), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(335), 2, + sym__atom, + sym_recUpdate, + STATE(571), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1068), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [14967] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(143), 1, + anon_sym_BSLASH, + ACTIONS(145), 1, + anon_sym_u03bb, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_LBRACK, + ACTIONS(151), 1, + anon_sym_let, + ACTIONS(153), 1, + anon_sym_if, + STATE(639), 1, + sym_term, + ACTIONS(155), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(377), 2, + sym__atom, + sym_recUpdate, + STATE(570), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1074), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(141), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(625), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [15040] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_BSLASH, + ACTIONS(61), 1, + anon_sym_u03bb, + ACTIONS(63), 1, + anon_sym_LPAREN, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, + anon_sym_if, + ACTIONS(73), 1, + anon_sym_case, + STATE(643), 1, + sym_term, + ACTIONS(75), 2, + anon_sym_u2200, + anon_sym_forall, + STATE(364), 2, + sym__atom, + sym_recUpdate, + STATE(560), 2, + sym_binder, + aux_sym_binders_repeat1, + STATE(1023), 3, + sym_forall, + sym_binders, + sym__typeExpr, + ACTIONS(57), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(642), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [15113] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(273), 1, + sym_identifier, + ACTIONS(277), 1, + anon_sym_LPAREN, + ACTIONS(279), 1, + anon_sym_LBRACK, + ACTIONS(281), 1, + anon_sym_data, + ACTIONS(283), 1, + anon_sym_derive, + ACTIONS(285), 1, + anon_sym_pfunc, + ACTIONS(287), 1, + anon_sym_ptype, + ACTIONS(293), 1, + anon_sym_record, + ACTIONS(295), 1, + anon_sym_class, + ACTIONS(297), 1, + anon_sym_instance, + STATE(1086), 1, + sym__appExpr, + ACTIONS(291), 2, + anon_sym_infixr, + anon_sym_infixl, + STATE(451), 2, + sym__atom, + sym_recUpdate, + ACTIONS(275), 3, + sym_number, + sym_string, + sym_character, + STATE(898), 12, + sym_sigDecl, + sym_defDecl, + sym_shortDataDecl, + sym_dataDecl, + sym_deriveDecl, + sym_pfuncDecl, + sym_ptypeDecl, + sym_mixfixDecl, + sym_recordDecl, + sym_classDecl, + sym_instanceDecl, + sym__decl, + [15180] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(211), 1, + anon_sym_BSLASH, + ACTIONS(213), 1, + anon_sym_u03bb, + ACTIONS(301), 1, + anon_sym_LPAREN, + ACTIONS(303), 1, + anon_sym_LBRACK, + ACTIONS(305), 1, + anon_sym_let, + ACTIONS(307), 1, + anon_sym_if, + STATE(653), 1, + sym_term, + STATE(361), 2, + sym__atom, + sym_recUpdate, + ACTIONS(299), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(957), 4, + sym_doLet, + sym_doCaseLet, + sym_doArrow, + sym__doExpr, + STATE(641), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [15240] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + anon_sym_u03bb, + ACTIONS(251), 1, + anon_sym_let, + ACTIONS(311), 1, + anon_sym_LPAREN, + ACTIONS(313), 1, + anon_sym_LBRACK, ACTIONS(315), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_LBRACK, - ACTIONS(277), 2, - sym_semi, - ts_builtin_sym_end, - ACTIONS(272), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - anon_sym_where, - ACTIONS(306), 4, + anon_sym_if, + STATE(750), 1, + sym_caseAlt, + STATE(1212), 1, + sym_term, + STATE(429), 2, + sym__atom, + sym_recUpdate, + ACTIONS(309), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(158), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [10071] = 10, + STATE(847), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [15297] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(83), 1, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + anon_sym_u03bb, + ACTIONS(251), 1, + anon_sym_let, + ACTIONS(311), 1, + anon_sym_LPAREN, + ACTIONS(313), 1, + anon_sym_LBRACK, + ACTIONS(315), 1, + anon_sym_if, + STATE(956), 1, + sym_caseAlt, + STATE(1149), 1, + sym_term, + STATE(429), 2, + sym__atom, + sym_recUpdate, + ACTIONS(309), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(847), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [15354] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + anon_sym_u03bb, + ACTIONS(251), 1, + anon_sym_let, + ACTIONS(311), 1, + anon_sym_LPAREN, + ACTIONS(313), 1, + anon_sym_LBRACK, + ACTIONS(315), 1, + anon_sym_if, + STATE(914), 1, + sym_caseAlt, + STATE(1030), 1, + sym_term, + STATE(429), 2, + sym__atom, + sym_recUpdate, + ACTIONS(309), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(847), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [15411] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, anon_sym_LBRACK, ACTIONS(323), 1, - anon_sym_LPAREN, - ACTIONS(325), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(327), 1, - anon_sym_LBRACE, - ACTIONS(257), 2, - sym_semi, - sym_end, - ACTIONS(253), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_PIPE, - anon_sym_DOLLAR, - ACTIONS(321), 4, + anon_sym_if, + STATE(396), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(160), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [10112] = 10, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [15465] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(83), 1, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, anon_sym_LBRACK, - ACTIONS(323), 1, - anon_sym_LPAREN, - ACTIONS(325), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(327), 1, - anon_sym_LBRACE, - ACTIONS(267), 2, - sym_semi, - sym_end, - ACTIONS(265), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_PIPE, - anon_sym_DOLLAR, - ACTIONS(329), 4, + ACTIONS(331), 1, + anon_sym_if, + STATE(1203), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(161), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [10153] = 10, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [15519] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(334), 1, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(127), 1, + anon_sym_BSLASH, + ACTIONS(129), 1, + anon_sym_u03bb, + ACTIONS(133), 1, + anon_sym_LBRACK, + ACTIONS(135), 1, + anon_sym_let, + ACTIONS(137), 1, + anon_sym_if, + ACTIONS(333), 1, anon_sym_LPAREN, - ACTIONS(337), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(340), 1, - anon_sym_LBRACE, + STATE(407), 1, + sym_term, + STATE(367), 2, + sym__atom, + sym_recUpdate, + ACTIONS(125), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(624), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [15573] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(335), 1, + anon_sym_LPAREN, + STATE(407), 1, + sym_term, + STATE(335), 2, + sym__atom, + sym_recUpdate, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [15627] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(127), 1, + anon_sym_BSLASH, + ACTIONS(129), 1, + anon_sym_u03bb, + ACTIONS(133), 1, + anon_sym_LBRACK, + ACTIONS(135), 1, + anon_sym_let, + ACTIONS(137), 1, + anon_sym_if, + ACTIONS(333), 1, + anon_sym_LPAREN, + STATE(396), 1, + sym_term, + STATE(367), 2, + sym__atom, + sym_recUpdate, + ACTIONS(125), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(624), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [15681] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(259), 1, + anon_sym_BSLASH, + ACTIONS(261), 1, + anon_sym_u03bb, + ACTIONS(267), 1, + anon_sym_let, + ACTIONS(339), 1, + anon_sym_LPAREN, + ACTIONS(341), 1, + anon_sym_LBRACK, ACTIONS(343), 1, - anon_sym_LBRACK, - ACTIONS(277), 2, - sym_semi, - sym_end, - ACTIONS(272), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_PIPE, - anon_sym_DOLLAR, - ACTIONS(331), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(161), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [10194] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(199), 1, - anon_sym_LBRACK, - ACTIONS(348), 1, - anon_sym_LPAREN, - ACTIONS(350), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(352), 1, - anon_sym_LBRACE, - ACTIONS(257), 2, - sym_semi, - sym_end, - ACTIONS(253), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - ACTIONS(346), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(163), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [10235] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(199), 1, - anon_sym_LBRACK, - ACTIONS(348), 1, - anon_sym_LPAREN, - ACTIONS(350), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(352), 1, - anon_sym_LBRACE, - ACTIONS(267), 2, - sym_semi, - sym_end, - ACTIONS(265), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - ACTIONS(354), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(164), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [10276] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(359), 1, - anon_sym_LPAREN, - ACTIONS(362), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(365), 1, - anon_sym_LBRACE, - ACTIONS(368), 1, - anon_sym_LBRACK, - ACTIONS(277), 2, - sym_semi, - sym_end, - ACTIONS(272), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - ACTIONS(356), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(164), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [10317] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(127), 1, - anon_sym_LBRACK, - ACTIONS(373), 1, - anon_sym_LPAREN, - ACTIONS(375), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(377), 1, - anon_sym_LBRACE, - ACTIONS(257), 2, - sym_semi, - sym_end, - ACTIONS(253), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - anon_sym_where, - ACTIONS(371), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(166), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [10358] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(127), 1, - anon_sym_LBRACK, - ACTIONS(373), 1, - anon_sym_LPAREN, - ACTIONS(375), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(377), 1, - anon_sym_LBRACE, - ACTIONS(267), 2, - sym_semi, - sym_end, - ACTIONS(265), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - anon_sym_where, - ACTIONS(379), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(167), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [10399] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(384), 1, - anon_sym_LPAREN, - ACTIONS(387), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(390), 1, - anon_sym_LBRACE, - ACTIONS(393), 1, - anon_sym_LBRACK, - ACTIONS(277), 2, - sym_semi, - sym_end, - ACTIONS(272), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - anon_sym_where, - ACTIONS(381), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(167), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [10440] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(135), 1, - anon_sym_BSLASH, - ACTIONS(137), 1, - anon_sym_u03bb, - ACTIONS(141), 1, - anon_sym_LBRACK, - ACTIONS(143), 1, - anon_sym_if, - ACTIONS(396), 1, - anon_sym_LPAREN, - STATE(394), 1, - sym_term, - STATE(281), 2, - sym__atom, - sym_recUpdate, - ACTIONS(133), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(519), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [10485] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(590), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [10530] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(135), 1, - anon_sym_BSLASH, - ACTIONS(137), 1, - anon_sym_u03bb, - ACTIONS(141), 1, - anon_sym_LBRACK, - ACTIONS(143), 1, - anon_sym_if, - ACTIONS(396), 1, - anon_sym_LPAREN, - STATE(371), 1, - sym_term, - STATE(281), 2, - sym__atom, - sym_recUpdate, - ACTIONS(133), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(519), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [10575] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(394), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [10620] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(371), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [10665] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(149), 1, - anon_sym_BSLASH, - ACTIONS(151), 1, - anon_sym_u03bb, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(159), 1, - anon_sym_if, - ACTIONS(406), 1, - anon_sym_LPAREN, - STATE(488), 1, - sym_term, - STATE(273), 2, - sym__atom, - sym_recUpdate, - ACTIONS(147), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(502), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [10710] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(149), 1, - anon_sym_BSLASH, - ACTIONS(151), 1, - anon_sym_u03bb, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(159), 1, - anon_sym_if, - ACTIONS(406), 1, - anon_sym_LPAREN, - STATE(499), 1, - sym_term, - STATE(273), 2, - sym__atom, - sym_recUpdate, - ACTIONS(147), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(502), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [10755] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(408), 1, - anon_sym_LPAREN, - STATE(548), 1, - sym_term, - STATE(286), 2, - sym__atom, - sym_recUpdate, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [10800] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(61), 1, - anon_sym_BSLASH, - ACTIONS(63), 1, - anon_sym_u03bb, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - anon_sym_do, - ACTIONS(71), 1, - anon_sym_if, - ACTIONS(408), 1, - anon_sym_LPAREN, - STATE(550), 1, - sym_term, - STATE(286), 2, - sym__atom, - sym_recUpdate, - ACTIONS(59), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(510), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [10845] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(179), 1, - anon_sym_BSLASH, - ACTIONS(181), 1, - anon_sym_u03bb, - ACTIONS(185), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - anon_sym_if, - ACTIONS(298), 1, - anon_sym_LPAREN, - STATE(488), 1, - sym_term, - STATE(156), 2, - sym__atom, - sym_recUpdate, - ACTIONS(177), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(480), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [10890] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, - anon_sym_BSLASH, - ACTIONS(209), 1, - anon_sym_u03bb, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(414), 1, - anon_sym_LBRACK, - ACTIONS(416), 1, - anon_sym_if, - STATE(837), 1, - sym_term, - STATE(329), 2, - sym__atom, - sym_recUpdate, - ACTIONS(410), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(609), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [10935] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(157), 1, - anon_sym_do, - ACTIONS(179), 1, - anon_sym_BSLASH, - ACTIONS(181), 1, - anon_sym_u03bb, - ACTIONS(185), 1, - anon_sym_LBRACK, - ACTIONS(187), 1, - anon_sym_if, - ACTIONS(298), 1, - anon_sym_LPAREN, - STATE(499), 1, - sym_term, - STATE(156), 2, - sym__atom, - sym_recUpdate, - ACTIONS(177), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(480), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [10980] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(394), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11025] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(371), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11070] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(93), 1, - anon_sym_BSLASH, - ACTIONS(95), 1, - anon_sym_u03bb, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_if, - ACTIONS(418), 1, - anon_sym_LPAREN, - STATE(394), 1, - sym_term, - STATE(295), 2, - sym__atom, - sym_recUpdate, - ACTIONS(91), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(520), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11115] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(93), 1, - anon_sym_BSLASH, - ACTIONS(95), 1, - anon_sym_u03bb, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_if, - ACTIONS(418), 1, - anon_sym_LPAREN, - STATE(371), 1, - sym_term, - STATE(295), 2, - sym__atom, - sym_recUpdate, - ACTIONS(91), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(520), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11160] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(193), 1, - anon_sym_BSLASH, - ACTIONS(195), 1, - anon_sym_u03bb, - ACTIONS(235), 1, - anon_sym_LPAREN, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - anon_sym_if, - STATE(471), 1, - sym_term, - STATE(278), 2, - sym__atom, - sym_recUpdate, - ACTIONS(233), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(504), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11205] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(193), 1, - anon_sym_BSLASH, - ACTIONS(195), 1, - anon_sym_u03bb, - ACTIONS(235), 1, - anon_sym_LPAREN, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - anon_sym_if, - STATE(456), 1, - sym_term, - STATE(278), 2, - sym__atom, - sym_recUpdate, - ACTIONS(233), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(504), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11250] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, - anon_sym_BSLASH, - ACTIONS(209), 1, - anon_sym_u03bb, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(414), 1, - anon_sym_LBRACK, - ACTIONS(416), 1, - anon_sym_if, - STATE(394), 1, - sym_term, - STATE(329), 2, - sym__atom, - sym_recUpdate, - ACTIONS(410), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(609), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11295] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, - anon_sym_BSLASH, - ACTIONS(209), 1, - anon_sym_u03bb, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(414), 1, - anon_sym_LBRACK, - ACTIONS(416), 1, - anon_sym_if, - STATE(371), 1, - sym_term, - STATE(329), 2, - sym__atom, - sym_recUpdate, - ACTIONS(410), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(609), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11340] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(171), 1, - anon_sym_LBRACK, - ACTIONS(173), 1, - anon_sym_if, - ACTIONS(420), 1, - anon_sym_LPAREN, - STATE(394), 1, - sym_term, - STATE(301), 2, - sym__atom, - sym_recUpdate, - ACTIONS(163), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(511), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11385] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(935), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11430] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(255), 1, - anon_sym_LPAREN, - STATE(371), 1, - sym_term, - STATE(151), 2, - sym__atom, - sym_recUpdate, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11475] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(171), 1, - anon_sym_LBRACK, - ACTIONS(173), 1, - anon_sym_if, - ACTIONS(420), 1, - anon_sym_LPAREN, - STATE(371), 1, - sym_term, - STATE(301), 2, - sym__atom, - sym_recUpdate, - ACTIONS(163), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(511), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11520] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(77), 1, - anon_sym_BSLASH, - ACTIONS(79), 1, - anon_sym_u03bb, - ACTIONS(83), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(87), 1, - anon_sym_if, - ACTIONS(323), 1, - anon_sym_LPAREN, - STATE(471), 1, - sym_term, - STATE(159), 2, - sym__atom, - sym_recUpdate, - ACTIONS(75), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(479), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11565] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(924), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11610] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(193), 1, - anon_sym_BSLASH, - ACTIONS(195), 1, - anon_sym_u03bb, - ACTIONS(199), 1, - anon_sym_LBRACK, - ACTIONS(201), 1, - anon_sym_if, - ACTIONS(348), 1, - anon_sym_LPAREN, - STATE(471), 1, - sym_term, - STATE(162), 2, - sym__atom, - sym_recUpdate, - ACTIONS(191), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(475), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11655] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(107), 1, - anon_sym_BSLASH, - ACTIONS(109), 1, - anon_sym_u03bb, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LBRACK, - ACTIONS(428), 1, - anon_sym_if, - STATE(686), 1, - sym_term, - STATE(310), 2, - sym__atom, - sym_recUpdate, - ACTIONS(422), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(538), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11700] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(193), 1, - anon_sym_BSLASH, - ACTIONS(195), 1, - anon_sym_u03bb, - ACTIONS(199), 1, - anon_sym_LBRACK, - ACTIONS(201), 1, - anon_sym_if, - ACTIONS(348), 1, - anon_sym_LPAREN, - STATE(456), 1, - sym_term, - STATE(162), 2, - sym__atom, - sym_recUpdate, - ACTIONS(191), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(475), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11745] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(107), 1, - anon_sym_BSLASH, - ACTIONS(109), 1, - anon_sym_u03bb, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LBRACK, - ACTIONS(428), 1, - anon_sym_if, - STATE(471), 1, - sym_term, - STATE(310), 2, - sym__atom, - sym_recUpdate, - ACTIONS(422), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(538), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11790] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(107), 1, - anon_sym_BSLASH, - ACTIONS(109), 1, - anon_sym_u03bb, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LBRACK, - ACTIONS(428), 1, - anon_sym_if, - STATE(456), 1, - sym_term, - STATE(310), 2, - sym__atom, - sym_recUpdate, - ACTIONS(422), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(538), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11835] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, - anon_sym_BSLASH, - ACTIONS(209), 1, - anon_sym_u03bb, - ACTIONS(213), 1, - anon_sym_LBRACK, - ACTIONS(215), 1, - anon_sym_if, - ACTIONS(430), 1, - anon_sym_LPAREN, - STATE(394), 1, - sym_term, - STATE(291), 2, - sym__atom, - sym_recUpdate, - ACTIONS(205), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(516), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11880] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, - anon_sym_BSLASH, - ACTIONS(209), 1, - anon_sym_u03bb, - ACTIONS(213), 1, - anon_sym_LBRACK, - ACTIONS(215), 1, - anon_sym_if, - ACTIONS(430), 1, - anon_sym_LPAREN, - STATE(371), 1, - sym_term, - STATE(291), 2, - sym__atom, - sym_recUpdate, - ACTIONS(205), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(516), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11925] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(107), 1, - anon_sym_BSLASH, - ACTIONS(109), 1, - anon_sym_u03bb, - ACTIONS(113), 1, - anon_sym_LBRACK, - ACTIONS(115), 1, - anon_sym_if, - ACTIONS(432), 1, - anon_sym_LPAREN, - STATE(471), 1, - sym_term, - STATE(274), 2, - sym__atom, - sym_recUpdate, - ACTIONS(105), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(500), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [11970] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(107), 1, - anon_sym_BSLASH, - ACTIONS(109), 1, - anon_sym_u03bb, - ACTIONS(113), 1, - anon_sym_LBRACK, - ACTIONS(115), 1, - anon_sym_if, - ACTIONS(432), 1, - anon_sym_LPAREN, - STATE(456), 1, - sym_term, - STATE(274), 2, - sym__atom, - sym_recUpdate, - ACTIONS(105), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(500), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12015] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(121), 1, - anon_sym_BSLASH, - ACTIONS(123), 1, - anon_sym_u03bb, - ACTIONS(127), 1, - anon_sym_LBRACK, - ACTIONS(129), 1, - anon_sym_if, - ACTIONS(373), 1, - anon_sym_LPAREN, - STATE(471), 1, - sym_term, - STATE(165), 2, - sym__atom, - sym_recUpdate, - ACTIONS(119), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(478), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12060] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(121), 1, - anon_sym_BSLASH, - ACTIONS(123), 1, - anon_sym_u03bb, - ACTIONS(127), 1, - anon_sym_LBRACK, - ACTIONS(129), 1, - anon_sym_if, - ACTIONS(373), 1, - anon_sym_LPAREN, - STATE(456), 1, - sym_term, - STATE(165), 2, - sym__atom, - sym_recUpdate, - ACTIONS(119), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(478), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12105] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(221), 1, - anon_sym_BSLASH, - ACTIONS(223), 1, - anon_sym_u03bb, - ACTIONS(245), 1, - anon_sym_LPAREN, - ACTIONS(247), 1, - anon_sym_LBRACK, - ACTIONS(249), 1, - anon_sym_if, - STATE(394), 1, - sym_term, - STATE(333), 2, - sym__atom, - sym_recUpdate, - ACTIONS(243), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(627), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12150] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(221), 1, - anon_sym_BSLASH, - ACTIONS(223), 1, - anon_sym_u03bb, - ACTIONS(245), 1, - anon_sym_LPAREN, - ACTIONS(247), 1, - anon_sym_LBRACK, - ACTIONS(249), 1, - anon_sym_if, - STATE(371), 1, - sym_term, - STATE(333), 2, - sym__atom, - sym_recUpdate, - ACTIONS(243), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(627), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12195] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(77), 1, - anon_sym_BSLASH, - ACTIONS(79), 1, - anon_sym_u03bb, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(438), 1, - anon_sym_LBRACK, - ACTIONS(440), 1, - anon_sym_if, - STATE(471), 1, - sym_term, - STATE(285), 2, - sym__atom, - sym_recUpdate, - ACTIONS(434), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(506), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12240] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(77), 1, - anon_sym_BSLASH, - ACTIONS(79), 1, - anon_sym_u03bb, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(438), 1, - anon_sym_LBRACK, - ACTIONS(440), 1, - anon_sym_if, - STATE(456), 1, - sym_term, - STATE(285), 2, - sym__atom, - sym_recUpdate, - ACTIONS(434), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(506), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12285] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(221), 1, - anon_sym_BSLASH, - ACTIONS(223), 1, - anon_sym_u03bb, - ACTIONS(227), 1, - anon_sym_LBRACK, - ACTIONS(229), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_LPAREN, - STATE(394), 1, - sym_term, - STATE(288), 2, - sym__atom, - sym_recUpdate, - ACTIONS(219), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(503), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12330] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(221), 1, - anon_sym_BSLASH, - ACTIONS(223), 1, - anon_sym_u03bb, - ACTIONS(227), 1, - anon_sym_LBRACK, - ACTIONS(229), 1, - anon_sym_if, - ACTIONS(442), 1, - anon_sym_LPAREN, - STATE(371), 1, - sym_term, - STATE(288), 2, - sym__atom, - sym_recUpdate, - ACTIONS(219), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(503), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12375] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(694), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12420] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(632), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12465] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(851), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12510] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(645), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12555] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(77), 1, - anon_sym_BSLASH, - ACTIONS(79), 1, - anon_sym_u03bb, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(438), 1, - anon_sym_LBRACK, - ACTIONS(440), 1, - anon_sym_if, - STATE(570), 1, - sym_term, - STATE(285), 2, - sym__atom, - sym_recUpdate, - ACTIONS(434), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(506), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12600] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(654), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12645] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(53), 1, - anon_sym_if, - ACTIONS(255), 1, - anon_sym_LPAREN, - STATE(394), 1, - sym_term, - STATE(151), 2, - sym__atom, - sym_recUpdate, - ACTIONS(37), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(457), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12690] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(657), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12735] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(661), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12780] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(664), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12825] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(669), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12870] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(673), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12915] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(555), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [12960] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(553), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [13005] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(559), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [13050] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(562), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [13095] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(564), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [13140] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(566), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [13185] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(568), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [13230] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(571), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [13275] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(573), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [13320] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(576), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [13365] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(579), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [13410] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(581), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [13455] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(39), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_u03bb, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(404), 1, - anon_sym_if, - STATE(583), 1, - sym_term, - STATE(292), 2, - sym__atom, - sym_recUpdate, - ACTIONS(398), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(514), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [13500] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, - anon_sym_BSLASH, - ACTIONS(209), 1, - anon_sym_u03bb, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(414), 1, - anon_sym_LBRACK, - ACTIONS(416), 1, anon_sym_if, STATE(879), 1, sym_term, - STATE(329), 2, + STATE(385), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(337), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(654), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [13545] = 12, + [15735] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, + ACTIONS(27), 1, anon_sym_do, - ACTIONS(207), 1, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(161), 1, anon_sym_u03bb, - ACTIONS(412), 1, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(329), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(331), 1, anon_sym_if, - STATE(903), 1, + STATE(407), 1, sym_term, - STATE(329), 2, + STATE(431), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(325), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(860), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [13590] = 12, + [15789] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, + ACTIONS(13), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(15), 1, anon_sym_u03bb, - ACTIONS(412), 1, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(349), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(351), 1, anon_sym_if, - STATE(803), 1, + STATE(773), 1, sym_term, - STATE(329), 2, + STATE(390), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(345), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(651), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [13635] = 12, + [15843] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, + ACTIONS(27), 1, anon_sym_do, - ACTIONS(207), 1, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(161), 1, anon_sym_u03bb, - ACTIONS(412), 1, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(329), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(331), 1, anon_sym_if, - STATE(829), 1, + STATE(1070), 1, sym_term, - STATE(329), 2, + STATE(431), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(325), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(860), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [13680] = 12, + [15897] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, + ACTIONS(27), 1, anon_sym_do, - ACTIONS(207), 1, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(161), 1, anon_sym_u03bb, - ACTIONS(412), 1, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(329), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(331), 1, anon_sym_if, - STATE(850), 1, + STATE(396), 1, sym_term, - STATE(329), 2, + STATE(431), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(325), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(860), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [13725] = 12, + [15951] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, + ACTIONS(49), 1, anon_sym_do, - ACTIONS(207), 1, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(95), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(97), 1, anon_sym_u03bb, - ACTIONS(412), 1, + ACTIONS(103), 1, + anon_sym_let, + ACTIONS(355), 1, anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(357), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(359), 1, anon_sym_if, - STATE(863), 1, + STATE(855), 1, sym_term, - STATE(329), 2, + STATE(375), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(353), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(632), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [13770] = 12, + [16005] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, + ACTIONS(27), 1, anon_sym_do, - ACTIONS(207), 1, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(143), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(145), 1, anon_sym_u03bb, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(149), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(151), 1, + anon_sym_let, + ACTIONS(153), 1, anon_sym_if, - STATE(874), 1, + ACTIONS(361), 1, + anon_sym_LPAREN, + STATE(407), 1, sym_term, - STATE(329), 2, + STATE(377), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(141), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(625), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [13815] = 12, + [16059] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, + ACTIONS(27), 1, anon_sym_do, - ACTIONS(207), 1, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(143), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(145), 1, anon_sym_u03bb, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(149), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(151), 1, + anon_sym_let, + ACTIONS(153), 1, anon_sym_if, - STATE(884), 1, + ACTIONS(361), 1, + anon_sym_LPAREN, + STATE(396), 1, sym_term, - STATE(329), 2, + STATE(377), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(141), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(625), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [13860] = 12, + [16113] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, + ACTIONS(175), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(177), 1, anon_sym_u03bb, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(181), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(183), 1, + anon_sym_let, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(187), 1, anon_sym_if, - STATE(896), 1, + ACTIONS(189), 1, + anon_sym_case, + ACTIONS(363), 1, + anon_sym_LPAREN, + STATE(620), 1, sym_term, - STATE(329), 2, + STATE(356), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(173), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(613), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [13905] = 12, + [16167] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, + ACTIONS(175), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(177), 1, anon_sym_u03bb, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(181), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(183), 1, + anon_sym_let, + ACTIONS(185), 1, + anon_sym_do, + ACTIONS(187), 1, anon_sym_if, - STATE(925), 1, + ACTIONS(189), 1, + anon_sym_case, + ACTIONS(363), 1, + anon_sym_LPAREN, + STATE(599), 1, sym_term, - STATE(329), 2, + STATE(356), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(173), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(613), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [13950] = 12, + [16221] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, + ACTIONS(59), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(61), 1, anon_sym_u03bb, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(65), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, anon_sym_if, - STATE(943), 1, + ACTIONS(73), 1, + anon_sym_case, + ACTIONS(365), 1, + anon_sym_LPAREN, + STATE(648), 1, sym_term, - STATE(329), 2, + STATE(364), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(57), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(642), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [13995] = 12, + [16275] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, + ACTIONS(27), 1, anon_sym_do, - ACTIONS(207), 1, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(229), 1, anon_sym_u03bb, - ACTIONS(412), 1, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(321), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(323), 1, anon_sym_if, - STATE(800), 1, + STATE(1157), 1, sym_term, - STATE(329), 2, + STATE(418), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(317), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(752), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [14040] = 12, + [16329] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, + ACTIONS(59), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(61), 1, anon_sym_u03bb, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(65), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(67), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_do, + ACTIONS(71), 1, anon_sym_if, - STATE(805), 1, + ACTIONS(73), 1, + anon_sym_case, + ACTIONS(365), 1, + anon_sym_LPAREN, + STATE(684), 1, sym_term, - STATE(329), 2, + STATE(364), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(57), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(642), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [14085] = 12, + [16383] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, + ACTIONS(185), 1, anon_sym_do, - ACTIONS(207), 1, + ACTIONS(189), 1, + anon_sym_case, + ACTIONS(195), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(197), 1, anon_sym_u03bb, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(201), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(203), 1, + anon_sym_let, + ACTIONS(205), 1, anon_sym_if, - STATE(810), 1, + ACTIONS(367), 1, + anon_sym_LPAREN, + STATE(620), 1, sym_term, - STATE(329), 2, + STATE(339), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(193), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(588), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [14130] = 12, + [16437] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, + ACTIONS(185), 1, anon_sym_do, - ACTIONS(207), 1, + ACTIONS(189), 1, + anon_sym_case, + ACTIONS(195), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(197), 1, anon_sym_u03bb, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(201), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(203), 1, + anon_sym_let, + ACTIONS(205), 1, anon_sym_if, - STATE(815), 1, + ACTIONS(367), 1, + anon_sym_LPAREN, + STATE(599), 1, sym_term, - STATE(329), 2, + STATE(339), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(193), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(588), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [14175] = 12, + [16491] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, + ACTIONS(13), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(15), 1, anon_sym_u03bb, - ACTIONS(412), 1, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(349), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(351), 1, anon_sym_if, - STATE(820), 1, + STATE(407), 1, sym_term, - STATE(329), 2, + STATE(390), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(345), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(651), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [14220] = 12, + [16545] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, + ACTIONS(13), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(15), 1, anon_sym_u03bb, - ACTIONS(412), 1, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(349), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(351), 1, + anon_sym_if, + STATE(396), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [16599] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(111), 1, + anon_sym_BSLASH, + ACTIONS(113), 1, + anon_sym_u03bb, + ACTIONS(117), 1, + anon_sym_LBRACK, + ACTIONS(119), 1, + anon_sym_let, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(369), 1, + anon_sym_LPAREN, + STATE(407), 1, + sym_term, + STATE(381), 2, + sym__atom, + sym_recUpdate, + ACTIONS(109), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(629), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [16653] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(111), 1, + anon_sym_BSLASH, + ACTIONS(113), 1, + anon_sym_u03bb, + ACTIONS(117), 1, + anon_sym_LBRACK, + ACTIONS(119), 1, + anon_sym_let, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(369), 1, + anon_sym_LPAREN, + STATE(396), 1, + sym_term, + STATE(381), 2, + sym__atom, + sym_recUpdate, + ACTIONS(109), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(629), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [16707] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(211), 1, + anon_sym_BSLASH, + ACTIONS(213), 1, + anon_sym_u03bb, + ACTIONS(219), 1, + anon_sym_let, + ACTIONS(301), 1, + anon_sym_LPAREN, + ACTIONS(303), 1, + anon_sym_LBRACK, + ACTIONS(307), 1, + anon_sym_if, + STATE(556), 1, + sym_term, + STATE(361), 2, + sym__atom, + sym_recUpdate, + ACTIONS(299), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(641), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [16761] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(211), 1, + anon_sym_BSLASH, + ACTIONS(213), 1, + anon_sym_u03bb, + ACTIONS(219), 1, + anon_sym_let, + ACTIONS(301), 1, + anon_sym_LPAREN, + ACTIONS(303), 1, + anon_sym_LBRACK, + ACTIONS(307), 1, + anon_sym_if, + STATE(574), 1, + sym_term, + STATE(361), 2, + sym__atom, + sym_recUpdate, + ACTIONS(299), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(641), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [16815] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(407), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [16869] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(165), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(371), 1, + anon_sym_LPAREN, + STATE(407), 1, + sym_term, + STATE(370), 2, + sym__atom, + sym_recUpdate, + ACTIONS(157), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(633), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [16923] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(165), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(371), 1, + anon_sym_LPAREN, + STATE(396), 1, + sym_term, + STATE(370), 2, + sym__atom, + sym_recUpdate, + ACTIONS(157), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(633), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [16977] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(79), 1, + anon_sym_BSLASH, + ACTIONS(81), 1, + anon_sym_u03bb, + ACTIONS(85), 1, + anon_sym_LBRACK, + ACTIONS(87), 1, + anon_sym_let, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(373), 1, + anon_sym_LPAREN, + STATE(556), 1, + sym_term, + STATE(349), 2, + sym__atom, + sym_recUpdate, + ACTIONS(77), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(600), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17031] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(79), 1, + anon_sym_BSLASH, + ACTIONS(81), 1, + anon_sym_u03bb, + ACTIONS(85), 1, + anon_sym_LBRACK, + ACTIONS(87), 1, + anon_sym_let, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(373), 1, + anon_sym_LPAREN, + STATE(574), 1, + sym_term, + STATE(349), 2, + sym__atom, + sym_recUpdate, + ACTIONS(77), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(600), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17085] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(335), 1, + anon_sym_LPAREN, + STATE(396), 1, + sym_term, + STATE(335), 2, + sym__atom, + sym_recUpdate, + ACTIONS(11), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(579), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17139] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(95), 1, + anon_sym_BSLASH, + ACTIONS(97), 1, + anon_sym_u03bb, + ACTIONS(101), 1, + anon_sym_LBRACK, + ACTIONS(103), 1, + anon_sym_let, + ACTIONS(105), 1, + anon_sym_if, + ACTIONS(375), 1, + anon_sym_LPAREN, + STATE(574), 1, + sym_term, + STATE(344), 2, + sym__atom, + sym_recUpdate, + ACTIONS(93), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(590), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17193] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + anon_sym_u03bb, + ACTIONS(251), 1, + anon_sym_let, + ACTIONS(311), 1, + anon_sym_LPAREN, + ACTIONS(313), 1, + anon_sym_LBRACK, + ACTIONS(315), 1, + anon_sym_if, + STATE(407), 1, + sym_term, + STATE(429), 2, + sym__atom, + sym_recUpdate, + ACTIONS(309), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(847), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17247] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + anon_sym_u03bb, + ACTIONS(251), 1, + anon_sym_let, + ACTIONS(311), 1, + anon_sym_LPAREN, + ACTIONS(313), 1, + anon_sym_LBRACK, + ACTIONS(315), 1, + anon_sym_if, + STATE(396), 1, + sym_term, + STATE(429), 2, + sym__atom, + sym_recUpdate, + ACTIONS(309), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(847), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17301] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(211), 1, + anon_sym_BSLASH, + ACTIONS(213), 1, + anon_sym_u03bb, + ACTIONS(217), 1, + anon_sym_LBRACK, + ACTIONS(219), 1, + anon_sym_let, + ACTIONS(221), 1, + anon_sym_if, + ACTIONS(377), 1, + anon_sym_LPAREN, + STATE(556), 1, + sym_term, + STATE(347), 2, + sym__atom, + sym_recUpdate, + ACTIONS(209), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(597), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17355] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(211), 1, + anon_sym_BSLASH, + ACTIONS(213), 1, + anon_sym_u03bb, + ACTIONS(217), 1, + anon_sym_LBRACK, + ACTIONS(219), 1, + anon_sym_let, + ACTIONS(221), 1, + anon_sym_if, + ACTIONS(377), 1, + anon_sym_LPAREN, + STATE(574), 1, + sym_term, + STATE(347), 2, + sym__atom, + sym_recUpdate, + ACTIONS(209), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(597), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17409] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(237), 1, + anon_sym_if, + ACTIONS(379), 1, + anon_sym_LPAREN, + STATE(407), 1, + sym_term, + STATE(382), 2, + sym__atom, + sym_recUpdate, + ACTIONS(225), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(637), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17463] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(237), 1, + anon_sym_if, + ACTIONS(379), 1, + anon_sym_LPAREN, + STATE(396), 1, + sym_term, + STATE(382), 2, + sym__atom, + sym_recUpdate, + ACTIONS(225), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(637), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17517] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(39), 1, + anon_sym_BSLASH, + ACTIONS(41), 1, + anon_sym_u03bb, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_let, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(381), 1, + anon_sym_LPAREN, + STATE(556), 1, + sym_term, + STATE(337), 2, + sym__atom, + sym_recUpdate, + ACTIONS(37), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(589), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17571] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(39), 1, + anon_sym_BSLASH, + ACTIONS(41), 1, + anon_sym_u03bb, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_let, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(381), 1, + anon_sym_LPAREN, + STATE(574), 1, + sym_term, + STATE(337), 2, + sym__atom, + sym_recUpdate, + ACTIONS(37), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(589), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17625] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(79), 1, + anon_sym_BSLASH, + ACTIONS(81), 1, + anon_sym_u03bb, + ACTIONS(87), 1, + anon_sym_let, + ACTIONS(385), 1, + anon_sym_LPAREN, + ACTIONS(387), 1, + anon_sym_LBRACK, + ACTIONS(389), 1, + anon_sym_if, + STATE(556), 1, + sym_term, + STATE(389), 2, + sym__atom, + sym_recUpdate, + ACTIONS(383), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(656), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17679] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(79), 1, + anon_sym_BSLASH, + ACTIONS(81), 1, + anon_sym_u03bb, + ACTIONS(87), 1, + anon_sym_let, + ACTIONS(385), 1, + anon_sym_LPAREN, + ACTIONS(387), 1, + anon_sym_LBRACK, + ACTIONS(389), 1, + anon_sym_if, + STATE(574), 1, + sym_term, + STATE(389), 2, + sym__atom, + sym_recUpdate, + ACTIONS(383), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(656), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17733] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(259), 1, + anon_sym_BSLASH, + ACTIONS(261), 1, + anon_sym_u03bb, + ACTIONS(267), 1, + anon_sym_let, + ACTIONS(339), 1, + anon_sym_LPAREN, + ACTIONS(341), 1, + anon_sym_LBRACK, + ACTIONS(343), 1, + anon_sym_if, + STATE(407), 1, + sym_term, + STATE(385), 2, + sym__atom, + sym_recUpdate, + ACTIONS(337), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(654), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17787] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(259), 1, + anon_sym_BSLASH, + ACTIONS(261), 1, + anon_sym_u03bb, + ACTIONS(267), 1, + anon_sym_let, + ACTIONS(339), 1, + anon_sym_LPAREN, + ACTIONS(341), 1, + anon_sym_LBRACK, + ACTIONS(343), 1, + anon_sym_if, + STATE(396), 1, + sym_term, + STATE(385), 2, + sym__atom, + sym_recUpdate, + ACTIONS(337), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(654), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17841] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + anon_sym_u03bb, + ACTIONS(249), 1, + anon_sym_LBRACK, + ACTIONS(251), 1, + anon_sym_let, + ACTIONS(253), 1, + anon_sym_if, + ACTIONS(391), 1, + anon_sym_LPAREN, + STATE(407), 1, + sym_term, + STATE(365), 2, + sym__atom, + sym_recUpdate, + ACTIONS(241), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(638), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17895] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + anon_sym_u03bb, + ACTIONS(249), 1, + anon_sym_LBRACK, + ACTIONS(251), 1, + anon_sym_let, + ACTIONS(253), 1, + anon_sym_if, + ACTIONS(391), 1, + anon_sym_LPAREN, + STATE(396), 1, + sym_term, + STATE(365), 2, + sym__atom, + sym_recUpdate, + ACTIONS(241), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(638), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [17949] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(95), 1, + anon_sym_BSLASH, + ACTIONS(97), 1, + anon_sym_u03bb, + ACTIONS(103), 1, + anon_sym_let, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACK, + ACTIONS(359), 1, + anon_sym_if, + STATE(556), 1, + sym_term, + STATE(375), 2, + sym__atom, + sym_recUpdate, + ACTIONS(353), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(632), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18003] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(95), 1, + anon_sym_BSLASH, + ACTIONS(97), 1, + anon_sym_u03bb, + ACTIONS(103), 1, + anon_sym_let, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACK, + ACTIONS(359), 1, + anon_sym_if, + STATE(574), 1, + sym_term, + STATE(375), 2, + sym__atom, + sym_recUpdate, + ACTIONS(353), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(632), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18057] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(259), 1, + anon_sym_BSLASH, + ACTIONS(261), 1, + anon_sym_u03bb, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, + anon_sym_let, + ACTIONS(269), 1, + anon_sym_if, + ACTIONS(393), 1, + anon_sym_LPAREN, + STATE(407), 1, + sym_term, + STATE(351), 2, + sym__atom, + sym_recUpdate, + ACTIONS(257), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(614), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18111] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(259), 1, + anon_sym_BSLASH, + ACTIONS(261), 1, + anon_sym_u03bb, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, + anon_sym_let, + ACTIONS(269), 1, + anon_sym_if, + ACTIONS(393), 1, + anon_sym_LPAREN, + STATE(396), 1, + sym_term, + STATE(351), 2, + sym__atom, + sym_recUpdate, + ACTIONS(257), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(614), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18165] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(853), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18219] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(713), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18273] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(768), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18327] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, anon_sym_if, STATE(825), 1, sym_term, - STATE(329), 2, + STATE(390), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(345), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(651), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [14265] = 12, + [18381] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, + ACTIONS(13), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(15), 1, anon_sym_u03bb, - ACTIONS(412), 1, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(349), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(351), 1, + anon_sym_if, + STATE(854), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18435] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(970), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18489] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(696), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18543] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(716), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18597] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(79), 1, + anon_sym_BSLASH, + ACTIONS(81), 1, + anon_sym_u03bb, + ACTIONS(87), 1, + anon_sym_let, + ACTIONS(385), 1, + anon_sym_LPAREN, + ACTIONS(387), 1, + anon_sym_LBRACK, + ACTIONS(389), 1, + anon_sym_if, + STATE(855), 1, + sym_term, + STATE(389), 2, + sym__atom, + sym_recUpdate, + ACTIONS(383), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(656), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18651] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(844), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18705] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(704), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18759] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(722), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18813] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(734), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18867] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(748), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18921] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(761), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [18975] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(772), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [19029] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(778), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [19083] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(782), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [19137] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(792), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [19191] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(804), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [19245] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(816), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [19299] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, + anon_sym_if, + STATE(826), 1, + sym_term, + STATE(390), 2, + sym__atom, + sym_recUpdate, + ACTIONS(345), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(651), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [19353] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(13), 1, + anon_sym_BSLASH, + ACTIONS(15), 1, + anon_sym_u03bb, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(351), 1, anon_sym_if, STATE(830), 1, sym_term, - STATE(329), 2, + STATE(390), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(345), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(651), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [14310] = 12, + [19407] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(207), 1, + ACTIONS(13), 1, anon_sym_BSLASH, - ACTIONS(209), 1, + ACTIONS(15), 1, anon_sym_u03bb, - ACTIONS(412), 1, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, anon_sym_LPAREN, - ACTIONS(414), 1, + ACTIONS(349), 1, anon_sym_LBRACK, - ACTIONS(416), 1, + ACTIONS(351), 1, anon_sym_if, - STATE(835), 1, + STATE(834), 1, sym_term, - STATE(329), 2, + STATE(390), 2, sym__atom, sym_recUpdate, - ACTIONS(410), 4, + ACTIONS(345), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(609), 5, + STATE(651), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [14355] = 12, + [19461] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, + ACTIONS(13), 1, anon_sym_BSLASH, - ACTIONS(167), 1, + ACTIONS(15), 1, anon_sym_u03bb, - ACTIONS(290), 1, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(349), 1, anon_sym_LBRACK, - ACTIONS(294), 1, + ACTIONS(351), 1, anon_sym_if, - STATE(906), 1, + STATE(837), 1, sym_term, - STATE(336), 2, + STATE(390), 2, sym__atom, sym_recUpdate, - ACTIONS(288), 4, + ACTIONS(345), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(593), 5, + STATE(651), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [14400] = 12, + [19515] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, + ACTIONS(13), 1, anon_sym_BSLASH, - ACTIONS(167), 1, + ACTIONS(15), 1, anon_sym_u03bb, - ACTIONS(290), 1, + ACTIONS(25), 1, + anon_sym_let, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(347), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(349), 1, anon_sym_LBRACK, - ACTIONS(294), 1, + ACTIONS(351), 1, anon_sym_if, - STATE(907), 1, + STATE(841), 1, sym_term, - STATE(336), 2, + STATE(390), 2, sym__atom, sym_recUpdate, - ACTIONS(288), 4, + ACTIONS(345), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(593), 5, + STATE(651), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [14445] = 12, + [19569] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(51), 1, + ACTIONS(27), 1, anon_sym_do, - ACTIONS(165), 1, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, anon_sym_BSLASH, - ACTIONS(167), 1, + ACTIONS(229), 1, anon_sym_u03bb, - ACTIONS(290), 1, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(321), 1, anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(908), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [14490] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(909), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [14535] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(910), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [14580] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(911), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [14625] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(912), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [14670] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(913), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [14715] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(914), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [14760] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(916), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [14805] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(917), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [14850] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(918), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [14895] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(919), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [14940] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(920), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [14985] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(921), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [15030] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(51), 1, - anon_sym_do, - ACTIONS(165), 1, - anon_sym_BSLASH, - ACTIONS(167), 1, - anon_sym_u03bb, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_if, - STATE(922), 1, - sym_term, - STATE(336), 2, - sym__atom, - sym_recUpdate, - ACTIONS(288), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(593), 5, - sym_lamExpr, - sym__appExpr, - sym_doBlock, - sym_ifThen, - sym__term2, - [15075] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(77), 1, - anon_sym_BSLASH, - ACTIONS(79), 1, - anon_sym_u03bb, - ACTIONS(83), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_do, - ACTIONS(87), 1, - anon_sym_if, ACTIONS(323), 1, - anon_sym_LPAREN, - STATE(456), 1, + anon_sym_if, + STATE(1147), 1, sym_term, - STATE(159), 2, + STATE(418), 2, sym__atom, sym_recUpdate, - ACTIONS(75), 4, + ACTIONS(317), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(479), 5, + STATE(752), 8, sym_lamExpr, sym__appExpr, sym_doBlock, sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, sym__term2, - [15120] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(447), 1, - anon_sym_LPAREN, - ACTIONS(450), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(453), 1, - anon_sym_LBRACE, - ACTIONS(456), 1, - anon_sym_LBRACK, - ACTIONS(277), 2, - sym_semi, - ts_builtin_sym_end, - ACTIONS(272), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - ACTIONS(444), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(272), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15160] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(406), 1, - anon_sym_LPAREN, - ACTIONS(461), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(463), 1, - anon_sym_LBRACE, - ACTIONS(257), 2, - sym_semi, - ts_builtin_sym_end, - ACTIONS(253), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - ACTIONS(459), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(277), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15200] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(113), 1, - anon_sym_LBRACK, - ACTIONS(432), 1, - anon_sym_LPAREN, - ACTIONS(467), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(257), 2, - sym_semi, - sym_end, - ACTIONS(253), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - ACTIONS(465), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(275), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15240] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(113), 1, - anon_sym_LBRACK, - ACTIONS(432), 1, - anon_sym_LPAREN, - ACTIONS(467), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(469), 1, - anon_sym_LBRACE, - ACTIONS(267), 2, - sym_semi, - sym_end, - ACTIONS(265), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - ACTIONS(471), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(276), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15280] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(476), 1, - anon_sym_LPAREN, - ACTIONS(479), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(485), 1, - anon_sym_LBRACK, - ACTIONS(277), 2, - sym_semi, - sym_end, - ACTIONS(272), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - ACTIONS(473), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(276), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15320] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(406), 1, - anon_sym_LPAREN, - ACTIONS(461), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(463), 1, - anon_sym_LBRACE, - ACTIONS(267), 2, - sym_semi, - ts_builtin_sym_end, - ACTIONS(265), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - ACTIONS(488), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(272), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15360] = 10, + [19623] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, anon_sym_LPAREN, - ACTIONS(237), 1, + ACTIONS(321), 1, anon_sym_LBRACK, - ACTIONS(492), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(494), 1, - anon_sym_LBRACE, - ACTIONS(253), 2, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - ACTIONS(257), 2, - sym_semi, - sym_end, - ACTIONS(490), 4, + ACTIONS(323), 1, + anon_sym_if, + STATE(1211), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(299), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15399] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(499), 1, - anon_sym_LPAREN, - ACTIONS(502), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(505), 1, - anon_sym_LBRACE, - ACTIONS(508), 1, - anon_sym_LBRACK, - ACTIONS(272), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_else, - anon_sym_DOLLAR, - ACTIONS(496), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(279), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15436] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(267), 1, - anon_sym_RBRACE, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(513), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(515), 1, - anon_sym_LBRACE, - ACTIONS(265), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - ACTIONS(511), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(283), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15475] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(141), 1, - anon_sym_LBRACK, - ACTIONS(396), 1, - anon_sym_LPAREN, - ACTIONS(519), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(521), 1, - anon_sym_LBRACE, - ACTIONS(253), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - anon_sym_where, - ACTIONS(517), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(282), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15512] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(141), 1, - anon_sym_LBRACK, - ACTIONS(396), 1, - anon_sym_LPAREN, - ACTIONS(519), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(521), 1, - anon_sym_LBRACE, - ACTIONS(265), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - anon_sym_where, - ACTIONS(523), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(284), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15549] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(277), 1, - anon_sym_RBRACE, - ACTIONS(528), 1, - anon_sym_LPAREN, - ACTIONS(531), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(534), 1, - anon_sym_LBRACE, - ACTIONS(537), 1, - anon_sym_LBRACK, - ACTIONS(272), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - ACTIONS(525), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(283), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15588] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(543), 1, - anon_sym_LPAREN, - ACTIONS(546), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(549), 1, - anon_sym_LBRACE, - ACTIONS(552), 1, - anon_sym_LBRACK, - ACTIONS(272), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - anon_sym_where, - ACTIONS(540), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(284), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15625] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(438), 1, - anon_sym_LBRACK, - ACTIONS(557), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(253), 2, - anon_sym_PIPE, - anon_sym_DOLLAR, - ACTIONS(257), 2, - sym_semi, - sym_end, - ACTIONS(555), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(304), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15664] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(257), 1, - anon_sym_RBRACE, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(513), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(515), 1, - anon_sym_LBRACE, - ACTIONS(253), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - ACTIONS(561), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(280), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15703] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(566), 1, - anon_sym_LPAREN, - ACTIONS(569), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(572), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(272), 2, - anon_sym_PIPE, - anon_sym_DOLLAR, - ACTIONS(277), 2, - sym_semi, - sym_end, - ACTIONS(563), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(287), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15742] = 9, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [19677] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, ACTIONS(227), 1, - anon_sym_LBRACK, - ACTIONS(442), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, anon_sym_LPAREN, - ACTIONS(580), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(253), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(578), 4, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1111), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(289), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15779] = 9, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [19731] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, ACTIONS(227), 1, - anon_sym_LBRACK, - ACTIONS(442), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, anon_sym_LPAREN, - ACTIONS(580), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(265), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(584), 4, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1051), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(290), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15816] = 9, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [19785] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(589), 1, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, anon_sym_LPAREN, - ACTIONS(592), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(595), 1, - anon_sym_LBRACE, - ACTIONS(598), 1, + ACTIONS(321), 1, anon_sym_LBRACK, - ACTIONS(272), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(586), 4, + ACTIONS(323), 1, + anon_sym_if, + STATE(1134), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(290), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15853] = 9, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [19839] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(213), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(605), 1, - anon_sym_LBRACE, - ACTIONS(253), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_else, - anon_sym_DOLLAR, - ACTIONS(601), 4, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1016), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(298), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15890] = 10, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [19893] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1062), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [19947] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1084), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20001] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1100), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20055] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1116), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20109] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1133), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20163] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1156), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20217] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1176), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20271] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1221), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20325] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1012), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20379] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1017), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20433] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1022), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20487] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1027), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20541] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1032), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20595] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1037), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20649] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1042), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20703] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_BSLASH, + ACTIONS(229), 1, + anon_sym_u03bb, + ACTIONS(235), 1, + anon_sym_let, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(323), 1, + anon_sym_if, + STATE(1047), 1, + sym_term, + STATE(418), 2, + sym__atom, + sym_recUpdate, + ACTIONS(317), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(752), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20757] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1165), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20811] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1169), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20865] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1173), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20919] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1175), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [20973] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1177), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21027] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1179), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21081] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1181), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21135] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1183), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21189] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1185), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21243] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1187), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21297] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1189), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21351] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1191), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21405] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1193), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21459] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1195), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21513] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1196), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21567] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1197), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21621] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1198), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21675] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1010), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21729] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1200), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21783] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1201), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21837] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(27), 1, + anon_sym_do, + ACTIONS(31), 1, + anon_sym_case, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_u03bb, + ACTIONS(167), 1, + anon_sym_let, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(331), 1, + anon_sym_if, + STATE(1202), 1, + sym_term, + STATE(431), 2, + sym__atom, + sym_recUpdate, + ACTIONS(325), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(860), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21891] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(49), 1, + anon_sym_do, + ACTIONS(53), 1, + anon_sym_case, + ACTIONS(95), 1, + anon_sym_BSLASH, + ACTIONS(97), 1, + anon_sym_u03bb, + ACTIONS(101), 1, + anon_sym_LBRACK, + ACTIONS(103), 1, + anon_sym_let, + ACTIONS(105), 1, + anon_sym_if, + ACTIONS(375), 1, + anon_sym_LPAREN, + STATE(556), 1, + sym_term, + STATE(344), 2, + sym__atom, + sym_recUpdate, + ACTIONS(93), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(590), 8, + sym_lamExpr, + sym__appExpr, + sym_doBlock, + sym_ifThen, + sym_caseExpr, + sym_caseLet, + sym_letStmt, + sym__term2, + [21945] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(253), 1, - anon_sym_DOLLAR, ACTIONS(400), 1, anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(609), 1, + ACTIONS(405), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(611), 1, + ACTIONS(408), 1, anon_sym_LBRACE, - ACTIONS(257), 3, + ACTIONS(411), 1, + anon_sym_LBRACK, + ACTIONS(398), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + ACTIONS(395), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + ACTIONS(403), 4, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(607), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(293), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15929] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(265), 1, - anon_sym_DOLLAR, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(609), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(611), 1, - anon_sym_LBRACE, - ACTIONS(267), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(613), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(294), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [15968] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(272), 1, - anon_sym_DOLLAR, - ACTIONS(618), 1, - anon_sym_LPAREN, - ACTIONS(621), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(624), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - anon_sym_LBRACK, - ACTIONS(277), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(615), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(294), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16007] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(418), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(253), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_COLON_EQ, - anon_sym_DOLLAR, - ACTIONS(630), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(296), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16044] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(418), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(265), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_COLON_EQ, - anon_sym_DOLLAR, - ACTIONS(636), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(297), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16081] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(641), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(647), 1, - anon_sym_LBRACE, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(272), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_COLON_EQ, - anon_sym_DOLLAR, - ACTIONS(638), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(297), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16118] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(213), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(605), 1, - anon_sym_LBRACE, - ACTIONS(265), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_else, - anon_sym_DOLLAR, - ACTIONS(653), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(279), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16155] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(235), 1, - anon_sym_LPAREN, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(492), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(494), 1, - anon_sym_LBRACE, - ACTIONS(265), 2, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - ACTIONS(267), 2, - sym_semi, - sym_end, - ACTIONS(655), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(300), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16194] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(663), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(666), 1, - anon_sym_LBRACE, - ACTIONS(669), 1, - anon_sym_LBRACK, - ACTIONS(272), 2, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - ACTIONS(277), 2, - sym_semi, - sym_end, - ACTIONS(657), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(300), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16233] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(171), 1, - anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(676), 1, - anon_sym_LBRACE, - ACTIONS(253), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_then, - anon_sym_DOLLAR, - ACTIONS(672), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(302), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16270] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(171), 1, - anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(676), 1, - anon_sym_LBRACE, - ACTIONS(265), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_then, - anon_sym_DOLLAR, - ACTIONS(678), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(303), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16307] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(686), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(689), 1, - anon_sym_LBRACE, - ACTIONS(692), 1, - anon_sym_LBRACK, - ACTIONS(272), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_then, - anon_sym_DOLLAR, - ACTIONS(680), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(303), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16344] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(438), 1, - anon_sym_LBRACK, - ACTIONS(557), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(265), 2, - anon_sym_PIPE, - anon_sym_DOLLAR, - ACTIONS(267), 2, - sym_semi, - sym_end, - ACTIONS(695), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(287), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16383] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE_LBRACE, anon_sym_RBRACE_RBRACE, - anon_sym_LBRACK, anon_sym_SEMI, anon_sym_RBRACK, - ACTIONS(697), 8, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [16409] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(265), 1, - anon_sym_DOLLAR, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(705), 1, - anon_sym_LBRACE, - ACTIONS(267), 2, - sym_semi, - sym_end, - ACTIONS(701), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(307), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16447] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(272), 1, - anon_sym_DOLLAR, - ACTIONS(710), 1, - anon_sym_LPAREN, - ACTIONS(713), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(716), 1, - anon_sym_LBRACE, - ACTIONS(719), 1, - anon_sym_LBRACK, - ACTIONS(277), 2, - sym_semi, - sym_end, - ACTIONS(707), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(307), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16485] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_RBRACE_RBRACE, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(722), 8, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [16511] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_RBRACE_RBRACE, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(726), 8, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [16537] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(253), 1, - anon_sym_DOLLAR, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(705), 1, - anon_sym_LBRACE, - ACTIONS(257), 2, - sym_semi, - sym_end, - ACTIONS(730), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(306), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16575] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_RBRACE_RBRACE, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(732), 8, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [16601] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_RBRACE_RBRACE, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(736), 8, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [16627] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - sym_identifier, - [16652] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(743), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(752), 1, - anon_sym_LBRACK, - ACTIONS(272), 2, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(740), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(314), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16687] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(759), 1, - anon_sym_LBRACE, - ACTIONS(265), 2, - anon_sym_then, - anon_sym_DOLLAR, - ACTIONS(755), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(317), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16722] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 5, - sym_semi, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - anon_sym_where, - sym_identifier, - [16747] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(764), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(770), 1, - anon_sym_LBRACE, - ACTIONS(773), 1, - anon_sym_LBRACK, - ACTIONS(272), 2, - anon_sym_then, - anon_sym_DOLLAR, - ACTIONS(761), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(317), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [16782] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - sym_identifier, - [16807] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 5, - sym_semi, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - anon_sym_where, - sym_identifier, - [16832] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 5, - sym_semi, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - anon_sym_where, - sym_identifier, - [16857] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 5, - sym_semi, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - anon_sym_where, - sym_identifier, - [16882] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - anon_sym_where, - sym_identifier, - [16907] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 5, - sym_semi, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - anon_sym_where, - sym_identifier, - [16932] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - sym_identifier, - [16957] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - anon_sym_where, - sym_identifier, - [16982] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - sym_identifier, - [17007] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - anon_sym_where, - sym_identifier, - [17032] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - anon_sym_where, - sym_identifier, - [17057] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(414), 1, - anon_sym_LBRACK, - ACTIONS(778), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(780), 1, - anon_sym_LBRACE, - ACTIONS(253), 2, - anon_sym_else, - anon_sym_DOLLAR, - ACTIONS(776), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(330), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [17092] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(414), 1, - anon_sym_LBRACK, - ACTIONS(778), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(780), 1, - anon_sym_LBRACE, - ACTIONS(265), 2, - anon_sym_else, - anon_sym_DOLLAR, - ACTIONS(782), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(331), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [17127] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(787), 1, - anon_sym_LPAREN, - ACTIONS(790), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(793), 1, - anon_sym_LBRACE, - ACTIONS(796), 1, - anon_sym_LBRACK, - ACTIONS(272), 2, - anon_sym_else, - anon_sym_DOLLAR, - ACTIONS(784), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - STATE(331), 4, - sym__atom, - sym__parg, - sym_recUpdate, - aux_sym__appExpr_repeat1, - [17162] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - anon_sym_where, - sym_identifier, - [17187] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(245), 1, - anon_sym_LPAREN, - ACTIONS(247), 1, - anon_sym_LBRACK, - ACTIONS(801), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(803), 1, - anon_sym_LBRACE, - ACTIONS(253), 2, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(799), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, STATE(334), 4, sym__atom, sym__parg, sym_recUpdate, aux_sym__appExpr_repeat1, - [17222] = 9, + [21987] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(245), 1, - anon_sym_LPAREN, - ACTIONS(247), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(335), 1, + anon_sym_LPAREN, + ACTIONS(420), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(803), 1, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(265), 2, - anon_sym_EQ_GT, + ACTIONS(416), 3, + anon_sym_DASH_GT, + anon_sym_u2192, anon_sym_DOLLAR, - ACTIONS(805), 4, + ACTIONS(414), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(314), 4, + ACTIONS(418), 4, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(336), 4, sym__atom, sym__parg, sym_recUpdate, aux_sym__appExpr_repeat1, - [17257] = 4, + [22029] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(734), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(732), 9, + ACTIONS(335), 1, + anon_sym_LPAREN, + ACTIONS(420), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(422), 1, + anon_sym_LBRACE, + ACTIONS(426), 3, anon_sym_DASH_GT, anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_PIPE, anon_sym_DOLLAR, - sym_identifier, - [17282] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(759), 1, - anon_sym_LBRACE, - ACTIONS(253), 2, - anon_sym_then, - anon_sym_DOLLAR, - ACTIONS(807), 4, + ACTIONS(424), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(315), 4, + ACTIONS(428), 4, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(334), 4, sym__atom, sym__parg, sym_recUpdate, aux_sym__appExpr_repeat1, - [17317] = 4, + [22071] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(724), 5, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(381), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(434), 1, + anon_sym_LBRACE, + ACTIONS(418), 2, sym_semi, sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 9, + ACTIONS(416), 4, anon_sym_DASH_GT, anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_PIPE, anon_sym_DOLLAR, + anon_sym_where, + ACTIONS(430), 4, + sym_number, + sym_string, + sym_character, sym_identifier, - [17342] = 4, + STATE(342), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22112] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(728), 5, + ACTIONS(439), 1, + anon_sym_LPAREN, + ACTIONS(442), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(445), 1, + anon_sym_LBRACE, + ACTIONS(448), 1, + anon_sym_LBRACK, + ACTIONS(403), 2, sym_semi, sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 9, + ACTIONS(398), 4, anon_sym_DASH_GT, anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_PIPE, - anon_sym_DOLLAR, - sym_identifier, - [17367] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, anon_sym_LT_DASH, anon_sym_DOLLAR, - sym_identifier, - [17392] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 9, - anon_sym_DASH_GT, - anon_sym_u2192, + ACTIONS(436), 4, sym_number, - anon_sym_LBRACE, sym_string, sym_character, - anon_sym_PIPE, - anon_sym_DOLLAR, sym_identifier, - [17417] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_PIPE, - anon_sym_DOLLAR, - sym_identifier, - [17442] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(813), 1, - anon_sym_COLON, - ACTIONS(811), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(809), 8, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [17468] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 8, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [17492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 8, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [17516] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(819), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - anon_sym_PIPE, - STATE(544), 1, - aux_sym_shortDataDecl_repeat2, - ACTIONS(815), 2, - sym_semi, - ts_builtin_sym_end, - STATE(385), 3, + STATE(338), 4, sym__atom, + sym__parg, sym_recUpdate, - aux_sym_shortDataDecl_repeat1, - ACTIONS(817), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - [17550] = 9, + aux_sym__appExpr_repeat1, + [22153] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(819), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(201), 1, anon_sym_LBRACK, - ACTIONS(823), 1, - anon_sym_PIPE, - STATE(536), 1, - aux_sym_shortDataDecl_repeat2, - ACTIONS(825), 2, + ACTIONS(367), 1, + anon_sym_LPAREN, + ACTIONS(453), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(418), 2, sym_semi, ts_builtin_sym_end, - STATE(356), 3, + ACTIONS(416), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + ACTIONS(451), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(340), 4, sym__atom, + sym__parg, sym_recUpdate, - aux_sym_shortDataDecl_repeat1, - ACTIONS(827), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - [17584] = 4, + aux_sym__appExpr_repeat1, + [22194] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(699), 5, + ACTIONS(201), 1, + anon_sym_LBRACK, + ACTIONS(367), 1, + anon_sym_LPAREN, + ACTIONS(453), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(428), 2, sym_semi, ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 8, + ACTIONS(426), 4, anon_sym_DASH_GT, anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + ACTIONS(457), 4, sym_number, - anon_sym_LBRACE, sym_string, sym_character, - anon_sym_DOLLAR, sym_identifier, - [17608] = 4, + STATE(341), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22235] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(738), 5, + ACTIONS(462), 1, + anon_sym_LPAREN, + ACTIONS(465), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(468), 1, + anon_sym_LBRACE, + ACTIONS(471), 1, + anon_sym_LBRACK, + ACTIONS(403), 2, + sym_semi, + ts_builtin_sym_end, + ACTIONS(398), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + ACTIONS(459), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(341), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22276] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(381), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(434), 1, + anon_sym_LBRACE, + ACTIONS(428), 2, sym_semi, sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 8, + ACTIONS(426), 4, anon_sym_DASH_GT, anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + ACTIONS(474), 4, sym_number, - anon_sym_LBRACE, sym_string, sym_character, - anon_sym_DOLLAR, sym_identifier, - [17632] = 4, + STATE(343), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22317] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(728), 5, + ACTIONS(479), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(485), 1, + anon_sym_LBRACE, + ACTIONS(488), 1, + anon_sym_LBRACK, + ACTIONS(403), 2, sym_semi, sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 8, + ACTIONS(398), 4, anon_sym_DASH_GT, anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + ACTIONS(476), 4, sym_number, - anon_sym_LBRACE, sym_string, sym_character, - anon_sym_DOLLAR, sym_identifier, - [17656] = 9, + STATE(343), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22358] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(13), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, + ACTIONS(101), 1, anon_sym_LBRACK, - ACTIONS(253), 1, - anon_sym_EQ, - ACTIONS(831), 1, + ACTIONS(375), 1, + anon_sym_LPAREN, + ACTIONS(493), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(833), 1, + ACTIONS(495), 1, anon_sym_LBRACE, - ACTIONS(829), 4, + ACTIONS(418), 2, + sym_semi, + sym_end, + ACTIONS(416), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_DOLLAR, + ACTIONS(491), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(345), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22399] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(101), 1, + anon_sym_LBRACK, + ACTIONS(375), 1, + anon_sym_LPAREN, + ACTIONS(493), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(495), 1, + anon_sym_LBRACE, + ACTIONS(428), 2, + sym_semi, + sym_end, + ACTIONS(426), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_DOLLAR, + ACTIONS(497), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(346), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22440] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(502), 1, + anon_sym_LPAREN, + ACTIONS(505), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(508), 1, + anon_sym_LBRACE, + ACTIONS(511), 1, + anon_sym_LBRACK, + ACTIONS(403), 2, + sym_semi, + sym_end, + ACTIONS(398), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_DOLLAR, + ACTIONS(499), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(346), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22481] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(217), 1, + anon_sym_LBRACK, + ACTIONS(377), 1, + anon_sym_LPAREN, + ACTIONS(516), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(518), 1, + anon_sym_LBRACE, + ACTIONS(418), 2, + sym_semi, + sym_end, + ACTIONS(416), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + ACTIONS(514), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(348), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22522] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(217), 1, + anon_sym_LBRACK, + ACTIONS(377), 1, + anon_sym_LPAREN, + ACTIONS(516), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(518), 1, + anon_sym_LBRACE, + ACTIONS(428), 2, + sym_semi, + sym_end, + ACTIONS(426), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + ACTIONS(520), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(338), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22563] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(85), 1, + anon_sym_LBRACK, + ACTIONS(373), 1, + anon_sym_LPAREN, + ACTIONS(524), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(526), 1, + anon_sym_LBRACE, + ACTIONS(418), 2, + sym_semi, + sym_end, + ACTIONS(416), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + ACTIONS(522), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(353), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22603] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(531), 1, + anon_sym_LPAREN, + ACTIONS(534), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(540), 1, + anon_sym_LBRACK, + ACTIONS(403), 2, + sym_semi, + ts_builtin_sym_end, + ACTIONS(398), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + ACTIONS(528), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(350), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22643] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(393), 1, + anon_sym_LPAREN, + ACTIONS(545), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(547), 1, + anon_sym_LBRACE, + ACTIONS(543), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(352), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + ACTIONS(416), 5, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + [22681] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(393), 1, + anon_sym_LPAREN, + ACTIONS(545), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(547), 1, + anon_sym_LBRACE, + ACTIONS(549), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(355), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + ACTIONS(426), 5, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + [22719] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(85), 1, + anon_sym_LBRACK, + ACTIONS(373), 1, + anon_sym_LPAREN, + ACTIONS(524), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(526), 1, + anon_sym_LBRACE, + ACTIONS(428), 2, + sym_semi, + sym_end, + ACTIONS(426), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + ACTIONS(551), 4, sym_number, sym_string, sym_character, @@ -17332,424 +21940,1380 @@ static const uint16_t ts_small_parse_table[] = { sym__parg, sym_recUpdate, aux_sym__appExpr_repeat1, - [17690] = 4, + [22759] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(724), 5, - sym_semi, - ts_builtin_sym_end, + ACTIONS(556), 1, anon_sym_LPAREN, + ACTIONS(559), 1, anon_sym_LBRACE_LBRACE, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(565), 1, anon_sym_LBRACK, - ACTIONS(722), 8, + ACTIONS(403), 2, + sym_semi, + sym_end, + ACTIONS(398), 3, anon_sym_DASH_GT, anon_sym_u2192, + anon_sym_DOLLAR, + ACTIONS(553), 4, sym_number, - anon_sym_LBRACE, sym_string, sym_character, - anon_sym_DOLLAR, sym_identifier, - [17714] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(819), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, - anon_sym_PIPE, - STATE(539), 1, - aux_sym_shortDataDecl_repeat2, - ACTIONS(835), 2, - sym_semi, - ts_builtin_sym_end, - STATE(345), 3, + STATE(354), 4, sym__atom, + sym__parg, sym_recUpdate, - aux_sym_shortDataDecl_repeat1, - ACTIONS(837), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - [17748] = 4, + aux_sym__appExpr_repeat1, + [22799] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(734), 5, - sym_semi, - ts_builtin_sym_end, + ACTIONS(571), 1, anon_sym_LPAREN, + ACTIONS(574), 1, anon_sym_LBRACE_LBRACE, + ACTIONS(577), 1, + anon_sym_LBRACE, + ACTIONS(580), 1, anon_sym_LBRACK, - ACTIONS(732), 8, + ACTIONS(568), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(355), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + ACTIONS(398), 5, anon_sym_DASH_GT, anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, + anon_sym_PIPE, + anon_sym_in, anon_sym_DOLLAR, - sym_identifier, - [17772] = 9, + [22837] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(13), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, + ACTIONS(181), 1, anon_sym_LBRACK, - ACTIONS(265), 1, - anon_sym_EQ, - ACTIONS(831), 1, + ACTIONS(363), 1, + anon_sym_LPAREN, + ACTIONS(585), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(587), 1, + anon_sym_LBRACE, + ACTIONS(418), 2, + sym_semi, + ts_builtin_sym_end, + ACTIONS(416), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + ACTIONS(583), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(357), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22877] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(181), 1, + anon_sym_LBRACK, + ACTIONS(363), 1, + anon_sym_LPAREN, + ACTIONS(585), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(587), 1, + anon_sym_LBRACE, + ACTIONS(428), 2, + sym_semi, + ts_builtin_sym_end, + ACTIONS(426), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + ACTIONS(589), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(350), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22917] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(249), 1, + anon_sym_LBRACK, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(593), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(595), 1, + anon_sym_LBRACE, + ACTIONS(426), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(591), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(366), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22954] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(117), 1, + anon_sym_LBRACK, + ACTIONS(369), 1, + anon_sym_LPAREN, + ACTIONS(599), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(601), 1, + anon_sym_LBRACE, + ACTIONS(426), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_COLON_EQ, + anon_sym_DOLLAR, + ACTIONS(597), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(360), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [22991] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(606), 1, + anon_sym_LPAREN, + ACTIONS(609), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(612), 1, + anon_sym_LBRACE, + ACTIONS(615), 1, + anon_sym_LBRACK, + ACTIONS(398), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_COLON_EQ, + anon_sym_DOLLAR, + ACTIONS(603), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(360), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23028] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(301), 1, + anon_sym_LPAREN, + ACTIONS(303), 1, + anon_sym_LBRACK, + ACTIONS(620), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(622), 1, + anon_sym_LBRACE, + ACTIONS(416), 2, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + ACTIONS(418), 2, + sym_semi, + sym_end, + ACTIONS(618), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(362), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23067] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(301), 1, + anon_sym_LPAREN, + ACTIONS(303), 1, + anon_sym_LBRACK, + ACTIONS(620), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(622), 1, + anon_sym_LBRACE, + ACTIONS(426), 2, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + ACTIONS(428), 2, + sym_semi, + sym_end, + ACTIONS(624), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(363), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23106] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(635), 1, + anon_sym_LBRACE, + ACTIONS(638), 1, + anon_sym_LBRACK, + ACTIONS(398), 2, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + ACTIONS(403), 2, + sym_semi, + sym_end, + ACTIONS(626), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(363), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23145] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(365), 1, + anon_sym_LPAREN, + ACTIONS(418), 1, + anon_sym_RBRACE, + ACTIONS(643), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(645), 1, + anon_sym_LBRACE, + ACTIONS(416), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + ACTIONS(641), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(373), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23184] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(249), 1, + anon_sym_LBRACK, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(593), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(595), 1, + anon_sym_LBRACE, + ACTIONS(416), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(647), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(358), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23221] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(655), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(398), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(649), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(366), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23258] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(133), 1, + anon_sym_LBRACK, + ACTIONS(333), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(668), 1, + anon_sym_LBRACE, + ACTIONS(416), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + ACTIONS(664), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(368), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23295] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(133), 1, + anon_sym_LBRACK, + ACTIONS(333), 1, + anon_sym_LPAREN, + ACTIONS(666), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(668), 1, + anon_sym_LBRACE, + ACTIONS(426), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + ACTIONS(670), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(369), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23332] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(675), 1, + anon_sym_LPAREN, + ACTIONS(678), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(681), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(398), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + ACTIONS(672), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(369), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23369] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(165), 1, + anon_sym_LBRACK, + ACTIONS(371), 1, + anon_sym_LPAREN, + ACTIONS(689), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACE, + ACTIONS(416), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_then, + anon_sym_DOLLAR, + ACTIONS(687), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(371), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23406] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(165), 1, + anon_sym_LBRACK, + ACTIONS(371), 1, + anon_sym_LPAREN, + ACTIONS(689), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACE, + ACTIONS(426), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_then, + anon_sym_DOLLAR, + ACTIONS(693), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(372), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23443] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(704), 1, + anon_sym_LBRACE, + ACTIONS(707), 1, + anon_sym_LBRACK, + ACTIONS(398), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_then, + anon_sym_DOLLAR, + ACTIONS(695), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(372), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23480] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(365), 1, + anon_sym_LPAREN, + ACTIONS(428), 1, + anon_sym_RBRACE, + ACTIONS(643), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(645), 1, + anon_sym_LBRACE, + ACTIONS(426), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + ACTIONS(710), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(374), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23519] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(403), 1, + anon_sym_RBRACE, + ACTIONS(715), 1, + anon_sym_LPAREN, + ACTIONS(718), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(721), 1, + anon_sym_LBRACE, + ACTIONS(724), 1, + anon_sym_LBRACK, + ACTIONS(398), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + ACTIONS(712), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(374), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23558] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(416), 2, + anon_sym_PIPE, + anon_sym_DOLLAR, + ACTIONS(418), 2, + sym_semi, + sym_end, + ACTIONS(727), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(376), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23597] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(731), 1, + anon_sym_LBRACE, + ACTIONS(426), 2, + anon_sym_PIPE, + anon_sym_DOLLAR, + ACTIONS(428), 2, + sym_semi, + sym_end, + ACTIONS(733), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(380), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23636] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(149), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_LPAREN, + ACTIONS(737), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(739), 1, + anon_sym_LBRACE, + ACTIONS(416), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_of, + anon_sym_DOLLAR, + ACTIONS(735), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(378), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23673] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(149), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_LPAREN, + ACTIONS(737), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(739), 1, + anon_sym_LBRACE, + ACTIONS(426), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_of, + anon_sym_DOLLAR, + ACTIONS(741), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(379), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23710] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(746), 1, + anon_sym_LPAREN, + ACTIONS(749), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(752), 1, + anon_sym_LBRACE, + ACTIONS(755), 1, + anon_sym_LBRACK, + ACTIONS(398), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_of, + anon_sym_DOLLAR, + ACTIONS(743), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(379), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23747] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(761), 1, + anon_sym_LPAREN, + ACTIONS(764), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(767), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + anon_sym_LBRACK, + ACTIONS(398), 2, + anon_sym_PIPE, + anon_sym_DOLLAR, + ACTIONS(403), 2, + sym_semi, + sym_end, + ACTIONS(758), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(380), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23786] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(117), 1, + anon_sym_LBRACK, + ACTIONS(369), 1, + anon_sym_LPAREN, + ACTIONS(599), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(601), 1, + anon_sym_LBRACE, + ACTIONS(416), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_COLON_EQ, + anon_sym_DOLLAR, + ACTIONS(773), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(359), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23823] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(379), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(416), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_else, + anon_sym_DOLLAR, + ACTIONS(775), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(383), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23860] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(379), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(779), 1, + anon_sym_LBRACE, + ACTIONS(426), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_else, + anon_sym_DOLLAR, + ACTIONS(781), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(384), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23897] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(786), 1, + anon_sym_LPAREN, + ACTIONS(789), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(792), 1, + anon_sym_LBRACE, + ACTIONS(795), 1, + anon_sym_LBRACK, + ACTIONS(398), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_else, + anon_sym_DOLLAR, + ACTIONS(783), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(384), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23934] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(339), 1, + anon_sym_LPAREN, + ACTIONS(341), 1, + anon_sym_LBRACK, + ACTIONS(800), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(802), 1, + anon_sym_LBRACE, + ACTIONS(416), 3, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + ACTIONS(798), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(408), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [23970] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(804), 15, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_COLON_EQ, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_then, + anon_sym_else, + anon_sym_of, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_where, + [23992] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(806), 15, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_COLON_EQ, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_then, + anon_sym_else, + anon_sym_of, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_where, + [24014] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(808), 15, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_COLON_EQ, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_then, + anon_sym_else, + anon_sym_of, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_where, + [24036] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(385), 1, + anon_sym_LPAREN, + ACTIONS(387), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_DOLLAR, + ACTIONS(812), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(814), 1, + anon_sym_LBRACE, + ACTIONS(418), 2, + sym_semi, + sym_end, + ACTIONS(810), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(398), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [24074] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_DOLLAR, + ACTIONS(818), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(820), 1, + anon_sym_LBRACE, + ACTIONS(418), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(816), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(391), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [24112] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(347), 1, + anon_sym_LPAREN, + ACTIONS(349), 1, + anon_sym_LBRACK, + ACTIONS(426), 1, + anon_sym_DOLLAR, + ACTIONS(818), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(820), 1, + anon_sym_LBRACE, + ACTIONS(428), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(822), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(392), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [24150] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(398), 1, + anon_sym_DOLLAR, + ACTIONS(827), 1, + anon_sym_LPAREN, + ACTIONS(830), 1, anon_sym_LBRACE_LBRACE, ACTIONS(833), 1, anon_sym_LBRACE, - ACTIONS(839), 4, + ACTIONS(836), 1, + anon_sym_LBRACK, + ACTIONS(403), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(824), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(358), 4, + STATE(392), 4, sym__atom, sym__parg, sym_recUpdate, aux_sym__appExpr_repeat1, - [17806] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [24188] = 2, + ACTIONS(5), 2, sym__ws, - ACTIONS(738), 5, - sym_semi, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 8, + sym_comment, + ACTIONS(839), 15, anon_sym_DASH_GT, anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [17830] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(819), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, - anon_sym_LBRACK, - ACTIONS(823), 1, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_COLON_EQ, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PIPE, - STATE(552), 1, - aux_sym_shortDataDecl_repeat2, - ACTIONS(841), 2, - sym_semi, - ts_builtin_sym_end, - STATE(385), 3, - sym__atom, - sym_recUpdate, - aux_sym_shortDataDecl_repeat1, - ACTIONS(817), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - [17864] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + anon_sym_then, + anon_sym_else, + anon_sym_of, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_where, + [24210] = 2, + ACTIONS(5), 2, sym__ws, - ACTIONS(728), 5, - sym_semi, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 8, + sym_comment, + ACTIONS(841), 15, anon_sym_DASH_GT, anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_COLON_EQ, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_then, + anon_sym_else, + anon_sym_of, + anon_sym_in, anon_sym_DOLLAR, - sym_identifier, - [17888] = 9, + anon_sym_where, + [24232] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(843), 15, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_COLON_EQ, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_then, + anon_sym_else, + anon_sym_of, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_where, + [24254] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(845), 15, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_COLON_EQ, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_then, + anon_sym_else, + anon_sym_of, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_where, + [24276] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(847), 15, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_COLON_EQ, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_then, + anon_sym_else, + anon_sym_of, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_where, + [24298] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(272), 1, - anon_sym_EQ, - ACTIONS(846), 1, + ACTIONS(385), 1, anon_sym_LPAREN, - ACTIONS(849), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(852), 1, - anon_sym_LBRACE, - ACTIONS(855), 1, + ACTIONS(387), 1, anon_sym_LBRACK, - ACTIONS(843), 4, + ACTIONS(426), 1, + anon_sym_DOLLAR, + ACTIONS(812), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(814), 1, + anon_sym_LBRACE, + ACTIONS(428), 2, + sym_semi, + sym_end, + ACTIONS(849), 4, sym_number, sym_string, sym_character, sym_identifier, - STATE(358), 4, + STATE(400), 4, sym__atom, sym__parg, sym_recUpdate, aux_sym__appExpr_repeat1, - [17922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [24336] = 2, + ACTIONS(5), 2, sym__ws, - ACTIONS(724), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 8, + sym_comment, + ACTIONS(851), 15, anon_sym_DASH_GT, anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_COLON_EQ, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_then, + anon_sym_else, + anon_sym_of, + anon_sym_in, anon_sym_DOLLAR, - sym_identifier, - [17946] = 8, + anon_sym_where, + [24358] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(819), 1, + ACTIONS(398), 1, + anon_sym_DOLLAR, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(859), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(865), 1, anon_sym_LBRACK, - ACTIONS(860), 1, - anon_sym_PIPE, - ACTIONS(858), 2, + ACTIONS(403), 2, sym_semi, - ts_builtin_sym_end, - STATE(385), 3, + sym_end, + ACTIONS(853), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(400), 4, sym__atom, + sym__parg, sym_recUpdate, - aux_sym_shortDataDecl_repeat1, - ACTIONS(817), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - [17977] = 4, + aux_sym__appExpr_repeat1, + [24396] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(722), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - ACTIONS(724), 6, + ACTIONS(870), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, anon_sym_LBRACK, anon_sym_SEMI, anon_sym_RBRACK, - [18000] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 9, + ACTIONS(868), 8, anon_sym_DASH_GT, anon_sym_u2192, sym_number, anon_sym_LBRACE, - anon_sym_COLON_EQ, sym_string, sym_character, anon_sym_DOLLAR, sym_identifier, - [18023] = 4, + [24422] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(734), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_PIPE, - anon_sym_DOLLAR, - sym_identifier, - [18046] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_PIPE, - anon_sym_DOLLAR, - sym_identifier, - [18069] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_PIPE, - anon_sym_DOLLAR, - sym_identifier, - [18092] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_EQ_GT, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [18115] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_PIPE, - anon_sym_DOLLAR, - sym_identifier, - [18138] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_PIPE, - anon_sym_DOLLAR, - sym_identifier, - [18161] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(732), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - ACTIONS(734), 6, + ACTIONS(874), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, anon_sym_LBRACK, anon_sym_SEMI, anon_sym_RBRACK, - [18184] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 9, + ACTIONS(872), 8, anon_sym_DASH_GT, anon_sym_u2192, sym_number, - anon_sym_EQ_GT, anon_sym_LBRACE, sym_string, sym_character, anon_sym_DOLLAR, sym_identifier, - [18207] = 2, + [24448] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(876), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [24474] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(880), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [24500] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(884), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [24526] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(862), 12, + ACTIONS(888), 15, anon_sym_DASH_GT, anon_sym_u2192, anon_sym_EQ_GT, @@ -17758,395 +23322,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_DOLLAR, - anon_sym_where, - [18226] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_EQ_GT, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [18249] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - anon_sym_COLON_EQ, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [18272] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 4, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(732), 8, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [18295] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_EQ_GT, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [18318] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_EQ_GT, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [18341] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 4, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(722), 8, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [18364] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 4, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(726), 8, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [18387] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 4, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(736), 8, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [18410] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 4, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(697), 8, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [18433] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(864), 12, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_DOLLAR, - anon_sym_where, - [18452] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(866), 12, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_DOLLAR, - anon_sym_where, - [18471] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - anon_sym_COLON_EQ, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [18494] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - anon_sym_where, - sym_identifier, - [18517] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(873), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(879), 1, anon_sym_PIPE, - ACTIONS(868), 2, - sym_semi, - ts_builtin_sym_end, - STATE(385), 3, + anon_sym_then, + anon_sym_else, + anon_sym_of, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_where, + [24548] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(890), 15, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_COLON_EQ, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_then, + anon_sym_else, + anon_sym_of, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_where, + [24570] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(339), 1, + anon_sym_LPAREN, + ACTIONS(341), 1, + anon_sym_LBRACK, + ACTIONS(800), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(802), 1, + anon_sym_LBRACE, + ACTIONS(426), 3, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + ACTIONS(892), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(412), 4, sym__atom, + sym__parg, sym_recUpdate, - aux_sym_shortDataDecl_repeat1, - ACTIONS(870), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - [18548] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_else, - anon_sym_DOLLAR, - sym_identifier, - [18571] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - anon_sym_where, - sym_identifier, - [18594] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - anon_sym_where, - sym_identifier, - [18617] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - anon_sym_where, - sym_identifier, - [18640] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_then, - anon_sym_DOLLAR, - sym_identifier, - [18663] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_else, - anon_sym_DOLLAR, - sym_identifier, - [18686] = 2, + aux_sym__appExpr_repeat1, + [24606] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(881), 12, + ACTIONS(894), 15, anon_sym_DASH_GT, anon_sym_u2192, anon_sym_EQ_GT, @@ -18155,1179 +23389,2977 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_DOLLAR, - anon_sym_where, - [18705] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_else, - anon_sym_DOLLAR, - sym_identifier, - [18728] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(883), 12, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_DOLLAR, - anon_sym_where, - [18747] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(885), 12, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_DOLLAR, - anon_sym_where, - [18766] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - anon_sym_COLON_EQ, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [18789] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_else, - anon_sym_DOLLAR, - sym_identifier, - [18812] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(887), 12, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_DOLLAR, - anon_sym_where, - [18831] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_else, - anon_sym_DOLLAR, - sym_identifier, - [18854] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_then, - anon_sym_DOLLAR, - sym_identifier, - [18877] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(736), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - ACTIONS(738), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - [18900] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(889), 12, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_DOLLAR, - anon_sym_where, - [18919] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_then, - anon_sym_DOLLAR, - sym_identifier, - [18942] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - sym_identifier, - [18965] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(891), 12, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_DOLLAR, - anon_sym_where, - [18984] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(893), 12, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_DOLLAR, - anon_sym_where, - [19003] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(697), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - ACTIONS(699), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - [19026] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_then, - anon_sym_DOLLAR, - sym_identifier, - [19049] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_then, - anon_sym_DOLLAR, - sym_identifier, - [19072] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - sym_identifier, - [19095] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(726), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - ACTIONS(728), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACK, - [19118] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - sym_identifier, - [19141] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - sym_identifier, - [19164] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - sym_identifier, - [19187] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - anon_sym_COLON_EQ, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [19210] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(819), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, - anon_sym_LBRACK, - ACTIONS(899), 1, anon_sym_PIPE, - ACTIONS(895), 2, - sym_semi, - ts_builtin_sym_end, - STATE(360), 3, - sym__atom, - sym_recUpdate, - aux_sym_shortDataDecl_repeat1, - ACTIONS(897), 4, - sym_number, - sym_string, - sym_character, - sym_identifier, - [19241] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 9, - anon_sym_DASH_GT, - anon_sym_u2192, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, + anon_sym_then, + anon_sym_else, + anon_sym_of, + anon_sym_in, anon_sym_DOLLAR, anon_sym_where, - sym_identifier, - [19264] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [24628] = 2, + ACTIONS(5), 2, sym__ws, - ACTIONS(734), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [19286] = 4, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [19308] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [19330] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [19352] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 5, - sym_semi, - sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [19374] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(13), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(901), 1, - sym_identifier, - STATE(862), 1, - sym__appExpr, - STATE(350), 2, - sym__atom, - sym_recUpdate, - STATE(776), 2, - sym_sigDecl, - sym_defDecl, - ACTIONS(11), 3, - sym_number, - sym_string, - sym_character, - [19406] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 7, - sym_number, + ACTIONS(896), 15, + anon_sym_DASH_GT, + anon_sym_u2192, anon_sym_EQ_GT, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [19427] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 7, - sym_number, - anon_sym_EQ_GT, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [19448] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_COLON_EQ, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_then, anon_sym_else, + anon_sym_of, + anon_sym_in, anon_sym_DOLLAR, - sym_identifier, - [19469] = 5, + anon_sym_where, + [24650] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(898), 15, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_COLON_EQ, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_then, + anon_sym_else, + anon_sym_of, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_where, + [24672] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, ACTIONS(903), 1, - anon_sym_COLON, - ACTIONS(811), 3, anon_sym_LPAREN, + ACTIONS(906), 1, anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(809), 6, - sym_number, + ACTIONS(909), 1, anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_EQ, - sym_identifier, - [19492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, + ACTIONS(912), 1, anon_sym_LBRACK, - ACTIONS(736), 7, - sym_number, - anon_sym_EQ_GT, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [19513] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 7, - sym_number, - anon_sym_EQ_GT, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [19534] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_then, - anon_sym_DOLLAR, - sym_identifier, - [19555] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_then, - anon_sym_DOLLAR, - sym_identifier, - [19576] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_then, - anon_sym_DOLLAR, - sym_identifier, - [19597] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_else, - anon_sym_DOLLAR, - sym_identifier, - [19618] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_then, - anon_sym_DOLLAR, - sym_identifier, - [19639] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_else, - anon_sym_DOLLAR, - sym_identifier, - [19660] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_else, - anon_sym_DOLLAR, - sym_identifier, - [19681] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 7, - sym_number, - anon_sym_EQ_GT, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_DOLLAR, - sym_identifier, - [19702] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(905), 1, - anon_sym_COLON, - ACTIONS(811), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(809), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_EQ, - sym_identifier, - [19725] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_then, - anon_sym_DOLLAR, - sym_identifier, - [19746] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 7, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_else, - anon_sym_DOLLAR, - sym_identifier, - [19767] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(697), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_EQ, - sym_identifier, - [19787] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 4, - sym_semi, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(722), 5, - sym_number, - sym_string, - sym_character, + ACTIONS(398), 3, anon_sym_PIPE, - sym_identifier, - [19807] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 4, - sym_semi, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(736), 5, + anon_sym_in, + anon_sym_DOLLAR, + ACTIONS(900), 4, sym_number, sym_string, sym_character, - anon_sym_PIPE, sym_identifier, - [19827] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 4, - sym_semi, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(726), 5, - sym_number, - sym_string, - sym_character, - anon_sym_PIPE, - sym_identifier, - [19847] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(699), 4, - sym_semi, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(697), 5, - sym_number, - sym_string, - sym_character, - anon_sym_PIPE, - sym_identifier, - [19867] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(728), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(726), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_EQ, - sym_identifier, - [19887] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(734), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(732), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_EQ, - sym_identifier, - [19907] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(738), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(736), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_EQ, - sym_identifier, - [19927] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(724), 3, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_LBRACK, - ACTIONS(722), 6, - sym_number, - anon_sym_LBRACE, - sym_string, - sym_character, - anon_sym_EQ, - sym_identifier, - [19947] = 4, - STATE(97), 1, - sym__arr, + STATE(412), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [24708] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(907), 2, + ACTIONS(915), 15, anon_sym_DASH_GT, anon_sym_u2192, - ACTIONS(866), 5, + anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_RBRACE_RBRACE, + anon_sym_COLON_EQ, anon_sym_SEMI, anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_then, + anon_sym_else, + anon_sym_of, + anon_sym_in, anon_sym_DOLLAR, - [19966] = 7, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(911), 1, + anon_sym_where, + [24730] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 5, + sym_semi, + sym_end, anon_sym_LPAREN, - STATE(73), 1, - sym__arr, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(909), 2, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 9, anon_sym_DASH_GT, anon_sym_u2192, - STATE(476), 2, - sym_binder, - aux_sym_binders_repeat1, - [19991] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(887), 8, - sym_semi, - sym_end, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_PIPE, - anon_sym_LT_DASH, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, anon_sym_DOLLAR, anon_sym_where, - [20006] = 2, - ACTIONS(5), 2, - sym__ws, + sym_identifier, + [24755] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(889), 8, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 5, sym_semi, sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 9, anon_sym_DASH_GT, anon_sym_u2192, - anon_sym_PIPE, - anon_sym_LT_DASH, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, anon_sym_DOLLAR, anon_sym_where, - [20021] = 2, - ACTIONS(5), 2, - sym__ws, + sym_identifier, + [24780] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(891), 8, + ACTIONS(5), 1, + sym__ws, + ACTIONS(920), 1, + anon_sym_LPAREN, + ACTIONS(923), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(926), 1, + anon_sym_LBRACE, + ACTIONS(929), 1, + anon_sym_LBRACK, + ACTIONS(398), 2, + anon_sym_then, + anon_sym_DOLLAR, + ACTIONS(917), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(416), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [24815] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 5, sym_semi, sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 9, anon_sym_DASH_GT, anon_sym_u2192, - anon_sym_PIPE, - anon_sym_LT_DASH, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, anon_sym_DOLLAR, anon_sym_where, - [20036] = 2, - ACTIONS(5), 2, - sym__ws, + sym_identifier, + [24840] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(893), 8, + ACTIONS(5), 1, + sym__ws, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(934), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(936), 1, + anon_sym_LBRACE, + ACTIONS(416), 2, + anon_sym_else, + anon_sym_DOLLAR, + ACTIONS(932), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(419), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [24875] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(319), 1, + anon_sym_LPAREN, + ACTIONS(321), 1, + anon_sym_LBRACK, + ACTIONS(934), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(936), 1, + anon_sym_LBRACE, + ACTIONS(426), 2, + anon_sym_else, + anon_sym_DOLLAR, + ACTIONS(938), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(420), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [24910] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(943), 1, + anon_sym_LPAREN, + ACTIONS(946), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(949), 1, + anon_sym_LBRACE, + ACTIONS(952), 1, + anon_sym_LBRACK, + ACTIONS(398), 2, + anon_sym_else, + anon_sym_DOLLAR, + ACTIONS(940), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(420), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [24945] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 5, sym_semi, sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 9, anon_sym_DASH_GT, anon_sym_u2192, - anon_sym_PIPE, - anon_sym_LT_DASH, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, anon_sym_DOLLAR, anon_sym_where, - [20051] = 2, - ACTIONS(5), 2, - sym__ws, + sym_identifier, + [24970] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(862), 8, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 5, + sym_semi, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + anon_sym_where, + sym_identifier, + [24995] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 5, + sym_semi, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + anon_sym_where, + sym_identifier, + [25020] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 5, sym_semi, sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 9, anon_sym_DASH_GT, anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, anon_sym_PIPE, + anon_sym_DOLLAR, + sym_identifier, + [25045] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_DOLLAR, + sym_identifier, + [25070] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_DOLLAR, + sym_identifier, + [25095] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_DOLLAR, + sym_identifier, + [25120] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_DOLLAR, + sym_identifier, + [25145] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(311), 1, + anon_sym_LPAREN, + ACTIONS(313), 1, + anon_sym_LBRACK, + ACTIONS(957), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(959), 1, + anon_sym_LBRACE, + ACTIONS(416), 2, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(955), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(430), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [25180] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(311), 1, + anon_sym_LPAREN, + ACTIONS(313), 1, + anon_sym_LBRACK, + ACTIONS(957), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(959), 1, + anon_sym_LBRACE, + ACTIONS(426), 2, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(961), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(432), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [25215] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(965), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(967), 1, + anon_sym_LBRACE, + ACTIONS(416), 2, + anon_sym_then, + anon_sym_DOLLAR, + ACTIONS(963), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(439), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [25250] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(972), 1, + anon_sym_LPAREN, + ACTIONS(975), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(978), 1, + anon_sym_LBRACE, + ACTIONS(981), 1, + anon_sym_LBRACK, + ACTIONS(398), 2, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(969), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(432), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [25285] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, anon_sym_LT_DASH, anon_sym_DOLLAR, - anon_sym_where, - [20066] = 4, - ACTIONS(915), 1, - anon_sym_DOLLAR, - STATE(381), 1, - sym_dollar, - ACTIONS(5), 2, - sym__ws, + sym_identifier, + [25310] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(913), 6, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 9, anon_sym_DASH_GT, anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + sym_identifier, + [25335] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + sym_identifier, + [25360] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 5, + sym_semi, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + anon_sym_where, + sym_identifier, + [25385] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + sym_identifier, + [25410] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + sym_identifier, + [25435] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(329), 1, + anon_sym_LBRACK, + ACTIONS(965), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(967), 1, + anon_sym_LBRACE, + ACTIONS(426), 2, + anon_sym_then, + anon_sym_DOLLAR, + ACTIONS(984), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(416), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [25470] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 5, + sym_semi, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + anon_sym_where, + sym_identifier, + [25495] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + anon_sym_where, + sym_identifier, + [25520] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 5, + sym_semi, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + anon_sym_where, + sym_identifier, + [25545] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [25569] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 10, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + sym_identifier, + [25593] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 5, + sym_semi, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [25617] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(398), 1, + anon_sym_EQ, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(992), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(995), 1, + anon_sym_LBRACE, + ACTIONS(998), 1, + anon_sym_LBRACK, + ACTIONS(986), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(446), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [25651] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 10, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + sym_identifier, + [25675] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 5, + sym_semi, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [25699] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(277), 1, + anon_sym_LPAREN, + ACTIONS(279), 1, + anon_sym_LBRACK, + ACTIONS(426), 1, + anon_sym_EQ, + ACTIONS(1003), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(1005), 1, + anon_sym_LBRACE, + ACTIONS(1001), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(446), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [25733] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [25757] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(277), 1, + anon_sym_LPAREN, + ACTIONS(279), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_EQ, + ACTIONS(1003), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(1005), 1, + anon_sym_LBRACE, + ACTIONS(1007), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + STATE(449), 4, + sym__atom, + sym__parg, + sym_recUpdate, + aux_sym__appExpr_repeat1, + [25791] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [25815] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1013), 1, + anon_sym_COLON, + ACTIONS(1011), 4, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE_RBRACE, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(1009), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [25841] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1019), 1, + anon_sym_LPAREN, + ACTIONS(1021), 1, + anon_sym_LBRACK, + ACTIONS(1023), 1, + anon_sym_PIPE, + STATE(644), 1, + aux_sym_shortDataDecl_repeat2, + ACTIONS(1015), 2, + sym_semi, + ts_builtin_sym_end, + STATE(459), 3, + sym__atom, + sym_recUpdate, + aux_sym_shortDataDecl_repeat1, + ACTIONS(1017), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + [25875] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1019), 1, + anon_sym_LPAREN, + ACTIONS(1021), 1, + anon_sym_LBRACK, + ACTIONS(1023), 1, + anon_sym_PIPE, + STATE(687), 1, + aux_sym_shortDataDecl_repeat2, + ACTIONS(1025), 2, + sym_semi, + ts_builtin_sym_end, + STATE(458), 3, + sym__atom, + sym_recUpdate, + aux_sym_shortDataDecl_repeat1, + ACTIONS(1027), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + [25909] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [25933] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 10, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + sym_identifier, + [25957] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1019), 1, + anon_sym_LPAREN, + ACTIONS(1021), 1, + anon_sym_LBRACK, + ACTIONS(1023), 1, + anon_sym_PIPE, + STATE(665), 1, + aux_sym_shortDataDecl_repeat2, + ACTIONS(1029), 2, + sym_semi, + ts_builtin_sym_end, + STATE(498), 3, + sym__atom, + sym_recUpdate, + aux_sym_shortDataDecl_repeat1, + ACTIONS(1031), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + [25991] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1019), 1, + anon_sym_LPAREN, + ACTIONS(1021), 1, + anon_sym_LBRACK, + ACTIONS(1023), 1, + anon_sym_PIPE, + STATE(674), 1, + aux_sym_shortDataDecl_repeat2, + ACTIONS(1033), 2, + sym_semi, + ts_builtin_sym_end, + STATE(498), 3, + sym__atom, + sym_recUpdate, + aux_sym_shortDataDecl_repeat1, + ACTIONS(1031), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + [26025] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26049] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 5, + sym_semi, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26073] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 10, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + sym_identifier, + [26097] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 10, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + sym_identifier, + [26121] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 5, + sym_semi, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26145] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 5, + sym_semi, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26169] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_DOLLAR, + sym_identifier, + [26192] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + sym_identifier, + [26215] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_of, + anon_sym_DOLLAR, + sym_identifier, + [26238] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + sym_identifier, + [26261] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_DOLLAR, + sym_identifier, + [26284] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1019), 1, + anon_sym_LPAREN, + ACTIONS(1021), 1, + anon_sym_LBRACK, + ACTIONS(1037), 1, + anon_sym_PIPE, + ACTIONS(1035), 2, + sym_semi, + ts_builtin_sym_end, + STATE(498), 3, + sym__atom, + sym_recUpdate, + aux_sym_shortDataDecl_repeat1, + ACTIONS(1031), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + [26315] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_DOLLAR, + sym_identifier, + [26338] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_DOLLAR, + sym_identifier, + [26361] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_EQ_GT, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26384] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_EQ_GT, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 4, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(876), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26430] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_EQ_GT, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26453] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 4, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(868), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26476] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 4, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(872), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26499] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 4, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(880), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26522] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_then, + anon_sym_DOLLAR, + sym_identifier, + [26545] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 4, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(884), 8, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26568] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + anon_sym_where, + sym_identifier, + [26591] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + anon_sym_where, + sym_identifier, + [26614] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + sym_identifier, + [26637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + sym_identifier, + [26660] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + anon_sym_where, + sym_identifier, + [26683] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + anon_sym_where, + sym_identifier, + [26706] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_then, + anon_sym_DOLLAR, + sym_identifier, + [26729] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + anon_sym_where, + sym_identifier, + [26752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_then, + anon_sym_DOLLAR, + sym_identifier, + [26775] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_then, + anon_sym_DOLLAR, + sym_identifier, + [26798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_EQ_GT, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26821] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_of, + anon_sym_DOLLAR, + sym_identifier, + [26844] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_EQ_GT, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26867] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_of, + anon_sym_DOLLAR, + sym_identifier, + [26890] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1019), 1, + anon_sym_LPAREN, + ACTIONS(1021), 1, + anon_sym_LBRACK, + ACTIONS(1043), 1, + anon_sym_PIPE, + ACTIONS(1039), 2, + sym_semi, + ts_builtin_sym_end, + STATE(471), 3, + sym__atom, + sym_recUpdate, + aux_sym_shortDataDecl_repeat1, + ACTIONS(1041), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + [26921] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1050), 1, + anon_sym_LPAREN, + ACTIONS(1053), 1, + anon_sym_LBRACK, + ACTIONS(1056), 1, + anon_sym_PIPE, + ACTIONS(1045), 2, + sym_semi, + ts_builtin_sym_end, + STATE(498), 3, + sym__atom, + sym_recUpdate, + aux_sym_shortDataDecl_repeat1, + ACTIONS(1047), 4, + sym_number, + sym_string, + sym_character, + sym_identifier, + [26952] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_DOLLAR, + sym_identifier, + [26975] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + anon_sym_COLON_EQ, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [26998] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_else, + anon_sym_DOLLAR, + sym_identifier, + [27021] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + anon_sym_COLON_EQ, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27044] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_of, + anon_sym_DOLLAR, + sym_identifier, + [27067] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + anon_sym_COLON_EQ, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27090] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_else, + anon_sym_DOLLAR, + sym_identifier, + [27113] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + anon_sym_COLON_EQ, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27136] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_else, + anon_sym_DOLLAR, + sym_identifier, + [27159] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + anon_sym_COLON_EQ, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27182] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_of, + anon_sym_DOLLAR, + sym_identifier, + [27205] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_else, + anon_sym_DOLLAR, + sym_identifier, + [27228] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_else, + anon_sym_DOLLAR, + sym_identifier, + [27251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + sym_identifier, + [27274] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 9, + anon_sym_DASH_GT, + anon_sym_u2192, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_then, + anon_sym_DOLLAR, + sym_identifier, + [27297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 8, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + sym_identifier, + [27319] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27341] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(277), 1, + anon_sym_LPAREN, + ACTIONS(279), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + sym_identifier, + STATE(1117), 1, + sym__appExpr, + STATE(451), 2, + sym__atom, + sym_recUpdate, + STATE(900), 2, + sym_sigDecl, + sym_defDecl, + ACTIONS(275), 3, + sym_number, + sym_string, + sym_character, + [27373] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 8, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + sym_identifier, + [27395] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 8, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + sym_identifier, + [27417] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 5, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, anon_sym_SEMI, anon_sym_RBRACK, - [20085] = 7, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, + ACTIONS(868), 6, + sym_number, anon_sym_LBRACE, - ACTIONS(911), 1, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27439] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 3, anon_sym_LPAREN, - STATE(48), 1, - sym__arr, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 8, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + sym_identifier, + [27461] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 5, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(872), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27483] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 5, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(876), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27505] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 5, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(880), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 5, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(884), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27549] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27571] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 8, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + sym_identifier, + [27593] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27615] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 5, + sym_semi, + sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27659] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_else, + anon_sym_DOLLAR, + sym_identifier, + [27680] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 7, + sym_number, + anon_sym_EQ_GT, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27701] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 7, + sym_number, + anon_sym_EQ_GT, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27722] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_else, + anon_sym_DOLLAR, + sym_identifier, + [27743] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 7, + sym_number, + anon_sym_EQ_GT, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27764] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_else, + anon_sym_DOLLAR, + sym_identifier, + [27785] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_then, + anon_sym_DOLLAR, + sym_identifier, + [27806] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 7, + sym_number, + anon_sym_EQ_GT, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27827] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_then, + anon_sym_DOLLAR, + sym_identifier, + [27848] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_then, + anon_sym_DOLLAR, + sym_identifier, + [27869] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_else, + anon_sym_DOLLAR, + sym_identifier, + [27890] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1060), 1, + anon_sym_COLON, + ACTIONS(1011), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(1009), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_EQ, + sym_identifier, + [27913] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_then, + anon_sym_DOLLAR, + sym_identifier, + [27934] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1062), 1, + anon_sym_COLON, + ACTIONS(1011), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(1009), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_EQ, + sym_identifier, + [27957] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 7, + sym_number, + anon_sym_EQ_GT, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_DOLLAR, + sym_identifier, + [27978] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_then, + anon_sym_DOLLAR, + sym_identifier, + [27999] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 7, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_else, + anon_sym_DOLLAR, + sym_identifier, + [28020] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 4, + sym_semi, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(880), 5, + sym_number, + sym_string, + sym_character, + anon_sym_PIPE, + sym_identifier, + [28040] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 4, + sym_semi, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(868), 5, + sym_number, + sym_string, + sym_character, + anon_sym_PIPE, + sym_identifier, + [28060] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 4, + sym_semi, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(872), 5, + sym_number, + sym_string, + sym_character, + anon_sym_PIPE, + sym_identifier, + [28080] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 4, + sym_semi, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(884), 5, + sym_number, + sym_string, + sym_character, + anon_sym_PIPE, + sym_identifier, + [28100] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(882), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(880), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_EQ, + sym_identifier, + [28120] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(878), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(876), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_EQ, + sym_identifier, + [28140] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(886), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(884), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_EQ, + sym_identifier, + [28160] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(874), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(872), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_EQ, + sym_identifier, + [28180] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(870), 3, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_LBRACK, + ACTIONS(868), 6, + sym_number, + anon_sym_LBRACE, + sym_string, + sym_character, + anon_sym_EQ, + sym_identifier, + [28200] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(917), 2, + ACTIONS(890), 8, + sym_semi, + sym_end, anon_sym_DASH_GT, anon_sym_u2192, - STATE(476), 2, - sym_binder, - aux_sym_binders_repeat1, - [20110] = 7, - ACTIONS(45), 1, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + anon_sym_where, + [28215] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(894), 8, + sym_semi, + sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + anon_sym_where, + [28230] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(896), 8, + sym_semi, + sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + anon_sym_where, + [28245] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(898), 8, + sym_semi, + sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + anon_sym_where, + [28260] = 7, + ACTIONS(19), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(911), 1, + ACTIONS(1066), 1, anon_sym_LPAREN, STATE(52), 1, sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(919), 2, + ACTIONS(1064), 2, anon_sym_DASH_GT, anon_sym_u2192, - STATE(476), 2, + STATE(596), 2, sym_binder, aux_sym_binders_repeat1, - [20135] = 2, + [28285] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(864), 8, + ACTIONS(915), 8, sym_semi, sym_end, anon_sym_DASH_GT, @@ -19336,101 +26368,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_DOLLAR, anon_sym_where, - [20150] = 7, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(911), 1, - anon_sym_LPAREN, - STATE(69), 1, - sym__arr, + [28300] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(921), 2, - anon_sym_DASH_GT, - anon_sym_u2192, - STATE(476), 2, - sym_binder, - aux_sym_binders_repeat1, - [20175] = 7, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(911), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym__arr, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(923), 2, - anon_sym_DASH_GT, - anon_sym_u2192, - STATE(476), 2, - sym_binder, - aux_sym_binders_repeat1, - [20200] = 7, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(911), 1, - anon_sym_LPAREN, - STATE(56), 1, - sym__arr, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(925), 2, - anon_sym_DASH_GT, - anon_sym_u2192, - STATE(476), 2, - sym_binder, - aux_sym_binders_repeat1, - [20225] = 7, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(911), 1, - anon_sym_LPAREN, - STATE(44), 1, - sym__arr, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(927), 2, - anon_sym_DASH_GT, - anon_sym_u2192, - STATE(476), 2, - sym_binder, - aux_sym_binders_repeat1, - [20250] = 7, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(911), 1, - anon_sym_LPAREN, - STATE(28), 1, - sym__arr, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(929), 2, - anon_sym_DASH_GT, - anon_sym_u2192, - STATE(476), 2, - sym_binder, - aux_sym_binders_repeat1, - [20275] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(881), 8, + ACTIONS(804), 8, sym_semi, sym_end, anon_sym_DASH_GT, @@ -19439,47 +26381,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_DOLLAR, anon_sym_where, - [20290] = 7, - ACTIONS(45), 1, + [28315] = 7, + ACTIONS(19), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(911), 1, + ACTIONS(1066), 1, anon_sym_LPAREN, - STATE(60), 1, + STATE(88), 1, sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(931), 2, + ACTIONS(1068), 2, anon_sym_DASH_GT, anon_sym_u2192, - STATE(476), 2, + STATE(596), 2, sym_binder, aux_sym_binders_repeat1, - [20315] = 7, - ACTIONS(45), 1, - anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(911), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym__arr, + [28340] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(933), 2, - anon_sym_DASH_GT, - anon_sym_u2192, - STATE(476), 2, - sym_binder, - aux_sym_binders_repeat1, - [20340] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(866), 8, + ACTIONS(806), 8, sym_semi, sym_end, anon_sym_DASH_GT, @@ -19488,60 +26412,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_DOLLAR, anon_sym_where, - [20355] = 7, - ACTIONS(45), 1, + [28355] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(808), 8, + sym_semi, + sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + anon_sym_where, + [28370] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(841), 8, + sym_semi, + sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + anon_sym_where, + [28385] = 7, + ACTIONS(19), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(911), 1, + ACTIONS(1066), 1, + anon_sym_LPAREN, + STATE(58), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1070), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + STATE(596), 2, + sym_binder, + aux_sym_binders_repeat1, + [28410] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(1066), 1, + anon_sym_LPAREN, + STATE(95), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1072), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + STATE(596), 2, + sym_binder, + aux_sym_binders_repeat1, + [28435] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(1066), 1, anon_sym_LPAREN, STATE(101), 1, sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(935), 2, + ACTIONS(1074), 2, anon_sym_DASH_GT, anon_sym_u2192, - STATE(476), 2, + STATE(596), 2, sym_binder, aux_sym_binders_repeat1, - [20380] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(883), 8, - sym_semi, - sym_end, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_DOLLAR, - anon_sym_where, - [20395] = 7, - ACTIONS(45), 1, + [28460] = 7, + ACTIONS(19), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(911), 1, + ACTIONS(1066), 1, anon_sym_LPAREN, STATE(40), 1, sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(937), 2, + ACTIONS(1076), 2, anon_sym_DASH_GT, anon_sym_u2192, - STATE(476), 2, + STATE(596), 2, sym_binder, aux_sym_binders_repeat1, - [20420] = 2, + [28485] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(1066), 1, + anon_sym_LPAREN, + STATE(158), 1, + sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(885), 8, + ACTIONS(1078), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + STATE(596), 2, + sym_binder, + aux_sym_binders_repeat1, + [28510] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(1066), 1, + anon_sym_LPAREN, + STATE(107), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1080), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + STATE(596), 2, + sym_binder, + aux_sym_binders_repeat1, + [28535] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(843), 8, sym_semi, sym_end, anon_sym_DASH_GT, @@ -19550,2395 +26559,2079 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_DOLLAR, anon_sym_where, - [20435] = 7, - ACTIONS(45), 1, + [28550] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(845), 8, + sym_semi, + sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + anon_sym_where, + [28565] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(847), 8, + sym_semi, + sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + anon_sym_where, + [28580] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(851), 8, + sym_semi, + sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + anon_sym_where, + [28595] = 7, + ACTIONS(19), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(911), 1, + ACTIONS(1066), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1082), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + STATE(596), 2, + sym_binder, + aux_sym_binders_repeat1, + [28620] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(1066), 1, anon_sym_LPAREN, STATE(64), 1, sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(939), 2, + ACTIONS(1084), 2, anon_sym_DASH_GT, anon_sym_u2192, - STATE(476), 2, + STATE(596), 2, sym_binder, aux_sym_binders_repeat1, - [20460] = 4, - ACTIONS(941), 1, + [28645] = 4, + ACTIONS(1088), 1, anon_sym_DOLLAR, - STATE(460), 1, + STATE(393), 1, sym_dollar, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(913), 5, - sym_semi, - sym_end, + ACTIONS(1086), 6, anon_sym_DASH_GT, anon_sym_u2192, - anon_sym_LT_DASH, - [20478] = 6, - ACTIONS(945), 1, - anon_sym_LPAREN, - ACTIONS(948), 1, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + [28664] = 7, + ACTIONS(19), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(951), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(943), 2, - anon_sym_DASH_GT, - anon_sym_u2192, - STATE(476), 2, - sym_binder, - aux_sym_binders_repeat1, - [20500] = 4, - STATE(51), 1, + ACTIONS(1066), 1, + anon_sym_LPAREN, + STATE(46), 1, sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(954), 2, + ACTIONS(1090), 2, anon_sym_DASH_GT, anon_sym_u2192, - ACTIONS(866), 4, - sym_semi, - sym_end, - anon_sym_PIPE, - anon_sym_DOLLAR, - [20518] = 4, - ACTIONS(956), 1, - anon_sym_DOLLAR, - STATE(460), 1, - sym_dollar, + STATE(596), 2, + sym_binder, + aux_sym_binders_repeat1, + [28689] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(1066), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(913), 5, - sym_semi, - sym_end, + ACTIONS(1092), 2, anon_sym_DASH_GT, anon_sym_u2192, - anon_sym_where, - [20536] = 4, - ACTIONS(958), 1, - anon_sym_DOLLAR, - STATE(460), 1, - sym_dollar, + STATE(596), 2, + sym_binder, + aux_sym_binders_repeat1, + [28714] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(1066), 1, + anon_sym_LPAREN, + STATE(34), 1, + sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(913), 5, + ACTIONS(1094), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + STATE(596), 2, + sym_binder, + aux_sym_binders_repeat1, + [28739] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(839), 8, sym_semi, sym_end, anon_sym_DASH_GT, anon_sym_u2192, anon_sym_PIPE, - [20554] = 4, - ACTIONS(960), 1, + anon_sym_LT_DASH, anon_sym_DOLLAR, - STATE(492), 1, + anon_sym_where, + [28754] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(1066), 1, + anon_sym_LPAREN, + STATE(76), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1096), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + STATE(596), 2, + sym_binder, + aux_sym_binders_repeat1, + [28779] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(1066), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1098), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + STATE(596), 2, + sym_binder, + aux_sym_binders_repeat1, + [28804] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(888), 8, + sym_semi, + sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_DOLLAR, + anon_sym_where, + [28819] = 4, + STATE(154), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1100), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + ACTIONS(1102), 5, + anon_sym_RPAREN, + anon_sym_RBRACE_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_DOLLAR, + [28838] = 4, + ACTIONS(1104), 1, + anon_sym_DOLLAR, + STATE(616), 1, sym_dollar, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(913), 5, + ACTIONS(1086), 5, sym_semi, ts_builtin_sym_end, anon_sym_DASH_GT, anon_sym_u2192, anon_sym_where, - [20572] = 4, - STATE(68), 1, - sym__arr, + [28856] = 4, + ACTIONS(1106), 1, + anon_sym_DOLLAR, + STATE(583), 1, + sym_dollar, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(962), 2, - anon_sym_DASH_GT, - anon_sym_u2192, - ACTIONS(866), 4, + ACTIONS(1086), 5, sym_semi, sym_end, - anon_sym_DOLLAR, + anon_sym_DASH_GT, + anon_sym_u2192, anon_sym_where, - [20590] = 8, + [28874] = 4, + ACTIONS(1108), 1, + anon_sym_DOLLAR, + STATE(583), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1086), 5, + sym_semi, + sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + [28892] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(45), 1, + ACTIONS(19), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(911), 1, + ACTIONS(1066), 1, anon_sym_LPAREN, - ACTIONS(964), 1, + ACTIONS(1110), 1, sym_identifier, - ACTIONS(966), 1, + ACTIONS(1112), 1, anon_sym_where, - STATE(813), 2, + STATE(1168), 2, sym_binder, sym__telescope, - [20616] = 4, - STATE(55), 1, + [28918] = 4, + STATE(57), 1, sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(968), 2, + ACTIONS(1114), 2, anon_sym_DASH_GT, anon_sym_u2192, - ACTIONS(866), 4, + ACTIONS(1102), 4, + sym_semi, + ts_builtin_sym_end, + anon_sym_DOLLAR, + anon_sym_where, + [28936] = 4, + STATE(81), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1116), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + ACTIONS(1102), 4, + sym_semi, + sym_end, + anon_sym_PIPE, + anon_sym_DOLLAR, + [28954] = 4, + STATE(87), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1118), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + ACTIONS(1102), 4, sym_semi, sym_end, anon_sym_LT_DASH, anon_sym_DOLLAR, - [20634] = 4, - STATE(39), 1, - sym__arr, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(970), 2, - anon_sym_DASH_GT, - anon_sym_u2192, - ACTIONS(866), 4, - sym_semi, - ts_builtin_sym_end, - anon_sym_DOLLAR, - anon_sym_where, - [20652] = 8, + [28972] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(45), 1, + ACTIONS(19), 1, anon_sym_LBRACE_LBRACE, - ACTIONS(47), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(911), 1, + ACTIONS(1066), 1, anon_sym_LPAREN, - ACTIONS(972), 1, + ACTIONS(1120), 1, sym_identifier, - ACTIONS(974), 1, + ACTIONS(1122), 1, anon_sym_where, - STATE(859), 2, + STATE(1206), 2, sym_binder, sym__telescope, - [20678] = 3, - ACTIONS(978), 1, + [28998] = 6, + ACTIONS(1126), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_LBRACE_LBRACE, + ACTIONS(1132), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(976), 5, + ACTIONS(1124), 2, anon_sym_DASH_GT, anon_sym_u2192, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_where, - [20693] = 4, - STATE(31), 1, + STATE(596), 2, + sym_binder, + aux_sym_binders_repeat1, + [29020] = 4, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + STATE(583), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1086), 5, + sym_semi, + sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_LT_DASH, + [29038] = 4, + STATE(100), 1, sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(980), 2, + ACTIONS(1137), 2, anon_sym_DASH_GT, anon_sym_u2192, - ACTIONS(866), 3, + ACTIONS(1102), 4, sym_semi, - ts_builtin_sym_end, + sym_end, anon_sym_DOLLAR, - [20710] = 2, + anon_sym_where, + [29056] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(883), 6, + ACTIONS(845), 6, sym_semi, ts_builtin_sym_end, anon_sym_DASH_GT, anon_sym_u2192, anon_sym_DOLLAR, anon_sym_where, - [20723] = 2, + [29069] = 4, + ACTIONS(1139), 1, + anon_sym_DOLLAR, + STATE(583), 1, + sym_dollar, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(885), 6, + ACTIONS(1086), 4, + sym_semi, + sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + [29086] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(894), 6, sym_semi, ts_builtin_sym_end, anon_sym_DASH_GT, anon_sym_u2192, anon_sym_DOLLAR, anon_sym_where, - [20736] = 3, - ACTIONS(984), 1, + [29099] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(841), 6, + sym_semi, + ts_builtin_sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + [29112] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(806), 6, + sym_semi, + ts_builtin_sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + [29125] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(843), 6, + sym_semi, + ts_builtin_sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + [29138] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(915), 6, + sym_semi, + ts_builtin_sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + [29151] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(847), 6, + sym_semi, + ts_builtin_sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + [29164] = 3, + ACTIONS(1143), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(982), 5, + ACTIONS(1141), 5, anon_sym_DASH_GT, anon_sym_u2192, anon_sym_LPAREN, anon_sym_LBRACE_LBRACE, anon_sym_where, - [20751] = 2, + [29179] = 3, + ACTIONS(1147), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(887), 6, + ACTIONS(1145), 5, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_where, + [29194] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(851), 6, sym_semi, ts_builtin_sym_end, anon_sym_DASH_GT, anon_sym_u2192, anon_sym_DOLLAR, anon_sym_where, - [20764] = 2, + [29207] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(864), 6, + ACTIONS(808), 6, sym_semi, ts_builtin_sym_end, anon_sym_DASH_GT, anon_sym_u2192, anon_sym_DOLLAR, anon_sym_where, - [20777] = 2, + [29220] = 4, + STATE(112), 1, + sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(889), 6, + ACTIONS(1149), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + ACTIONS(1102), 3, + anon_sym_PIPE, + anon_sym_in, + anon_sym_DOLLAR, + [29237] = 4, + STATE(75), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1151), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + ACTIONS(1102), 3, + sym_semi, + sym_end, + anon_sym_DOLLAR, + [29254] = 4, + ACTIONS(1153), 1, + anon_sym_DOLLAR, + STATE(616), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1086), 4, + sym_semi, + ts_builtin_sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + [29271] = 4, + ACTIONS(1155), 1, + anon_sym_DOLLAR, + STATE(393), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1086), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_PIPE, + anon_sym_in, + [29288] = 3, + ACTIONS(1159), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1157), 5, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_LPAREN, + anon_sym_LBRACE_LBRACE, + anon_sym_where, + [29303] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(839), 6, sym_semi, ts_builtin_sym_end, anon_sym_DASH_GT, anon_sym_u2192, anon_sym_DOLLAR, anon_sym_where, - [20790] = 2, + [29316] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(891), 6, + ACTIONS(896), 6, sym_semi, ts_builtin_sym_end, anon_sym_DASH_GT, anon_sym_u2192, anon_sym_DOLLAR, anon_sym_where, - [20803] = 4, + [29329] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(888), 6, + sym_semi, + ts_builtin_sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + [29342] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(804), 6, + sym_semi, + ts_builtin_sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + [29355] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(890), 6, + sym_semi, + ts_builtin_sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + [29368] = 4, + STATE(45), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1161), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + ACTIONS(1102), 3, + sym_semi, + ts_builtin_sym_end, + anon_sym_DOLLAR, + [29385] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(898), 6, + sym_semi, + ts_builtin_sym_end, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_DOLLAR, + anon_sym_where, + [29398] = 4, + STATE(33), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1102), 2, + anon_sym_DOLLAR, + anon_sym_where, + ACTIONS(1163), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + [29414] = 4, + ACTIONS(1165), 1, + anon_sym_DOLLAR, + STATE(393), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1086), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_where, + [29430] = 4, + ACTIONS(1167), 1, + anon_sym_DOLLAR, + STATE(393), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1086), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_of, + [29446] = 4, STATE(63), 1, sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(986), 2, - anon_sym_DASH_GT, - anon_sym_u2192, - ACTIONS(866), 3, - sym_semi, - sym_end, - anon_sym_DOLLAR, - [20820] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(893), 6, - sym_semi, - ts_builtin_sym_end, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - anon_sym_where, - [20833] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(866), 6, - sym_semi, - ts_builtin_sym_end, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - anon_sym_where, - [20846] = 3, - ACTIONS(990), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(988), 5, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_LPAREN, - anon_sym_LBRACE_LBRACE, - anon_sym_where, - [20861] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(862), 6, - sym_semi, - ts_builtin_sym_end, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - anon_sym_where, - [20874] = 4, - ACTIONS(992), 1, - anon_sym_DOLLAR, - STATE(460), 1, - sym_dollar, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(913), 4, - sym_semi, - sym_end, - anon_sym_DASH_GT, - anon_sym_u2192, - [20891] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(881), 6, - sym_semi, - ts_builtin_sym_end, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_DOLLAR, - anon_sym_where, - [20904] = 4, - ACTIONS(994), 1, - anon_sym_DOLLAR, - STATE(492), 1, - sym_dollar, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(913), 4, - sym_semi, - ts_builtin_sym_end, - anon_sym_DASH_GT, - anon_sym_u2192, - [20921] = 4, - ACTIONS(996), 1, - anon_sym_DOLLAR, - STATE(381), 1, - sym_dollar, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(913), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_EQ_GT, - [20937] = 4, - ACTIONS(998), 1, - anon_sym_DOLLAR, - STATE(460), 1, - sym_dollar, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(913), 3, - sym_semi, - sym_end, - anon_sym_LT_DASH, - [20953] = 4, - STATE(27), 1, - sym__arr, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(866), 2, - anon_sym_DOLLAR, - anon_sym_where, - ACTIONS(1000), 2, - anon_sym_DASH_GT, - anon_sym_u2192, - [20969] = 4, - ACTIONS(1002), 1, - anon_sym_DOLLAR, - STATE(460), 1, - sym_dollar, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(913), 3, - sym_semi, - sym_end, - anon_sym_PIPE, - [20985] = 4, - STATE(43), 1, - sym__arr, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(866), 2, + ACTIONS(1102), 2, anon_sym_COLON_EQ, anon_sym_DOLLAR, - ACTIONS(1004), 2, + ACTIONS(1169), 2, anon_sym_DASH_GT, anon_sym_u2192, - [21001] = 4, - ACTIONS(1006), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1008), 2, - sym_semi, - sym_end, - STATE(509), 2, - sym_orAlt, - aux_sym_doCaseLet_repeat1, - [21017] = 4, - ACTIONS(1006), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1010), 2, - sym_semi, - sym_end, - STATE(513), 2, - sym_orAlt, - aux_sym_doCaseLet_repeat1, - [21033] = 4, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - STATE(525), 1, - sym_dollar, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(913), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_RBRACE, - [21049] = 4, - ACTIONS(1014), 1, - anon_sym_DOLLAR, - STATE(381), 1, - sym_dollar, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(913), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_then, - [21065] = 4, - STATE(35), 1, + [29462] = 4, + STATE(69), 1, sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(866), 2, - anon_sym_RBRACE, + ACTIONS(1102), 2, + anon_sym_then, anon_sym_DOLLAR, - ACTIONS(1016), 2, + ACTIONS(1171), 2, anon_sym_DASH_GT, anon_sym_u2192, - [21081] = 4, - ACTIONS(1018), 1, + [29478] = 4, + ACTIONS(1173), 1, anon_sym_PIPE, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(1021), 2, + ACTIONS(1175), 2, sym_semi, sym_end, - STATE(513), 2, + STATE(634), 2, sym_orAlt, aux_sym_doCaseLet_repeat1, - [21097] = 4, - ACTIONS(1023), 1, + [29494] = 4, + ACTIONS(1177), 1, anon_sym_DOLLAR, - STATE(381), 1, + STATE(393), 1, sym_dollar, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(913), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - [21113] = 4, - STATE(47), 1, + ACTIONS(1086), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_COLON_EQ, + [29510] = 4, + STATE(94), 1, sym__arr, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(866), 2, - anon_sym_then, + ACTIONS(1102), 2, + anon_sym_else, anon_sym_DOLLAR, - ACTIONS(1025), 2, + ACTIONS(1179), 2, anon_sym_DASH_GT, anon_sym_u2192, - [21129] = 4, - ACTIONS(1027), 1, + [29526] = 4, + STATE(106), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1102), 2, + anon_sym_EQ_GT, anon_sym_DOLLAR, - STATE(381), 1, + ACTIONS(1181), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + [29542] = 4, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + STATE(583), 1, sym_dollar, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(913), 3, + ACTIONS(1086), 3, + sym_semi, + sym_end, + anon_sym_PIPE, + [29558] = 4, + ACTIONS(1185), 1, + anon_sym_DOLLAR, + STATE(393), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1086), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_then, + [29574] = 4, + ACTIONS(1173), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1187), 2, + sym_semi, + sym_end, + STATE(640), 2, + sym_orAlt, + aux_sym_doCaseLet_repeat1, + [29590] = 4, + ACTIONS(1173), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1189), 2, + sym_semi, + sym_end, + STATE(636), 2, + sym_orAlt, + aux_sym_doCaseLet_repeat1, + [29606] = 4, + ACTIONS(1173), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1191), 2, + sym_semi, + sym_end, + STATE(640), 2, + sym_orAlt, + aux_sym_doCaseLet_repeat1, + [29622] = 4, + ACTIONS(1193), 1, + anon_sym_DOLLAR, + STATE(393), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1086), 3, anon_sym_DASH_GT, anon_sym_u2192, anon_sym_else, - [21145] = 4, - ACTIONS(1006), 1, + [29638] = 4, + ACTIONS(1195), 1, + anon_sym_DOLLAR, + STATE(393), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1086), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_EQ_GT, + [29654] = 4, + STATE(39), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1102), 2, + anon_sym_of, + anon_sym_DOLLAR, + ACTIONS(1197), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + [29670] = 4, + ACTIONS(1199), 1, anon_sym_PIPE, ACTIONS(5), 2, sym__ws, sym_comment, + ACTIONS(1202), 2, + sym_semi, + sym_end, + STATE(640), 2, + sym_orAlt, + aux_sym_doCaseLet_repeat1, + [29686] = 4, + ACTIONS(1204), 1, + anon_sym_DOLLAR, + STATE(583), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1086), 3, + sym_semi, + sym_end, + anon_sym_LT_DASH, + [29702] = 4, + ACTIONS(1206), 1, + anon_sym_DOLLAR, + STATE(690), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1086), 3, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + [29718] = 4, + STATE(51), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1102), 2, + anon_sym_RBRACE, + anon_sym_DOLLAR, + ACTIONS(1208), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + [29734] = 4, + ACTIONS(1210), 1, + anon_sym_PIPE, + STATE(675), 1, + aux_sym_shortDataDecl_repeat2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1033), 2, + sym_semi, + ts_builtin_sym_end, + [29749] = 4, + ACTIONS(1214), 1, + anon_sym_DOT, + STATE(671), 1, + aux_sym_qname_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1212), 2, + sym_semi, + ts_builtin_sym_end, + [29764] = 4, + ACTIONS(1202), 1, + anon_sym_in, + ACTIONS(1216), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + STATE(646), 2, + sym_orAlt, + aux_sym_doCaseLet_repeat1, + [29779] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1221), 1, + sym_identifier, + STATE(647), 1, + aux_sym_mixfixDecl_repeat1, + ACTIONS(1219), 2, + sym_semi, + ts_builtin_sym_end, + [29796] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(890), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [29807] = 4, + ACTIONS(1224), 1, + anon_sym_PIPE, + ACTIONS(1226), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + STATE(646), 2, + sym_orAlt, + aux_sym_doCaseLet_repeat1, + [29822] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(896), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [29833] = 4, + ACTIONS(1228), 1, + anon_sym_DOLLAR, + STATE(393), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1086), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [29848] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1230), 1, + sym_identifier, + STATE(652), 1, + aux_sym_lamExpr_repeat1, + ACTIONS(1233), 2, + anon_sym_RPAREN, + anon_sym_DOT, + [29865] = 4, + ACTIONS(1235), 1, + anon_sym_LT_DASH, + STATE(882), 1, + sym__doArrow, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1237), 2, + sym_semi, + sym_end, + [29880] = 4, + ACTIONS(1239), 1, + anon_sym_DOLLAR, + STATE(393), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1086), 2, + anon_sym_PIPE, + anon_sym_in, + [29895] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(898), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [29906] = 4, + ACTIONS(1241), 1, + anon_sym_DOLLAR, + STATE(583), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1086), 2, + sym_semi, + sym_end, + [29921] = 4, + ACTIONS(1243), 1, + anon_sym_where, + STATE(868), 1, + sym_whereClause, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1245), 2, + sym_semi, + sym_end, + [29936] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1247), 1, + sym_identifier, + STATE(658), 1, + aux_sym_lamExpr_repeat1, + ACTIONS(1233), 2, + sym_semi, + ts_builtin_sym_end, + [29953] = 4, + ACTIONS(1224), 1, + anon_sym_PIPE, + ACTIONS(1250), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + STATE(667), 2, + sym_orAlt, + aux_sym_doCaseLet_repeat1, + [29968] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(915), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [29979] = 4, + ACTIONS(1224), 1, + anon_sym_PIPE, + ACTIONS(1252), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + STATE(663), 2, + sym_orAlt, + aux_sym_doCaseLet_repeat1, + [29994] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(804), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [30005] = 4, + ACTIONS(1224), 1, + anon_sym_PIPE, + ACTIONS(1254), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + STATE(646), 2, + sym_orAlt, + aux_sym_doCaseLet_repeat1, + [30020] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(851), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [30031] = 4, + ACTIONS(1210), 1, + anon_sym_PIPE, + STATE(675), 1, + aux_sym_shortDataDecl_repeat2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1256), 2, + sym_semi, + ts_builtin_sym_end, + [30046] = 4, + ACTIONS(1224), 1, + anon_sym_PIPE, + ACTIONS(1258), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + STATE(649), 2, + sym_orAlt, + aux_sym_doCaseLet_repeat1, + [30061] = 4, + ACTIONS(1224), 1, + anon_sym_PIPE, + ACTIONS(1260), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + STATE(646), 2, + sym_orAlt, + aux_sym_doCaseLet_repeat1, + [30076] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(806), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [30087] = 5, + ACTIONS(1262), 1, + ts_builtin_sym_end, + ACTIONS(1264), 1, + sym_semi, + STATE(749), 1, + aux_sym_module_repeat1, + STATE(757), 1, + aux_sym_module_repeat2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30104] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(808), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [30115] = 4, + ACTIONS(1214), 1, + anon_sym_DOT, + STATE(685), 1, + aux_sym_qname_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1266), 2, + sym_semi, + ts_builtin_sym_end, + [30130] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1270), 1, + sym_identifier, + STATE(647), 1, + aux_sym_mixfixDecl_repeat1, + ACTIONS(1268), 2, + sym_semi, + ts_builtin_sym_end, + [30147] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(888), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [30158] = 4, + ACTIONS(1210), 1, + anon_sym_PIPE, + STATE(675), 1, + aux_sym_shortDataDecl_repeat2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1272), 2, + sym_semi, + ts_builtin_sym_end, + [30173] = 4, + ACTIONS(1276), 1, + anon_sym_PIPE, + STATE(675), 1, + aux_sym_shortDataDecl_repeat2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1274), 2, + sym_semi, + ts_builtin_sym_end, + [30188] = 4, + ACTIONS(1279), 1, + anon_sym_where, + STATE(908), 1, + sym_whereClause, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1245), 2, + sym_semi, + ts_builtin_sym_end, + [30203] = 4, + ACTIONS(1224), 1, + anon_sym_PIPE, + ACTIONS(1281), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + STATE(678), 2, + sym_orAlt, + aux_sym_doCaseLet_repeat1, + [30218] = 4, + ACTIONS(1224), 1, + anon_sym_PIPE, + ACTIONS(1283), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + STATE(646), 2, + sym_orAlt, + aux_sym_doCaseLet_repeat1, + [30233] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(841), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [30244] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(843), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [30255] = 4, + ACTIONS(1285), 1, + anon_sym_RPAREN, + STATE(154), 1, + sym__arr, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1100), 2, + anon_sym_DASH_GT, + anon_sym_u2192, + [30270] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(894), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [30281] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1287), 1, + sym_identifier, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(1291), 1, + anon_sym_COLON, + STATE(711), 1, + aux_sym_lamExpr_repeat1, + [30300] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(845), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [30311] = 4, + ACTIONS(1295), 1, + anon_sym_DOT, + STATE(685), 1, + aux_sym_qname_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1293), 2, + sym_semi, + ts_builtin_sym_end, + [30326] = 5, + ACTIONS(1264), 1, + sym_semi, + ACTIONS(1298), 1, + ts_builtin_sym_end, + STATE(669), 1, + aux_sym_module_repeat1, + STATE(798), 1, + aux_sym_module_repeat2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30343] = 4, + ACTIONS(1210), 1, + anon_sym_PIPE, + STATE(675), 1, + aux_sym_shortDataDecl_repeat2, + ACTIONS(5), 2, + sym__ws, + sym_comment, ACTIONS(1029), 2, sym_semi, - sym_end, - STATE(518), 2, - sym_orAlt, - aux_sym_doCaseLet_repeat1, - [21161] = 4, - ACTIONS(1006), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1031), 2, - sym_semi, - sym_end, - STATE(513), 2, - sym_orAlt, - aux_sym_doCaseLet_repeat1, - [21177] = 4, - ACTIONS(1033), 1, - anon_sym_DOLLAR, - STATE(381), 1, - sym_dollar, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(913), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_where, - [21193] = 4, - ACTIONS(1035), 1, - anon_sym_DOLLAR, - STATE(381), 1, - sym_dollar, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(913), 3, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_COLON_EQ, - [21209] = 4, - STATE(59), 1, - sym__arr, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(866), 2, - anon_sym_else, - anon_sym_DOLLAR, - ACTIONS(1037), 2, - anon_sym_DASH_GT, - anon_sym_u2192, - [21225] = 4, - STATE(72), 1, - sym__arr, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(866), 2, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(1039), 2, - anon_sym_DASH_GT, - anon_sym_u2192, - [21241] = 5, - ACTIONS(1041), 1, ts_builtin_sym_end, - ACTIONS(1043), 1, - sym_semi, - STATE(591), 1, - aux_sym_module_repeat1, - STATE(597), 1, - aux_sym_module_repeat2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21258] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(885), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_RBRACE, - anon_sym_DOLLAR, - [21269] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(864), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_RBRACE, - anon_sym_DOLLAR, - [21280] = 5, + [30358] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1047), 1, + ACTIONS(1302), 1, sym_identifier, - STATE(526), 1, + STATE(658), 1, aux_sym_lamExpr_repeat1, - ACTIONS(1045), 2, + ACTIONS(1300), 2, sym_semi, ts_builtin_sym_end, - [21297] = 4, - ACTIONS(1052), 1, + [30375] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(847), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [30386] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(839), 4, + anon_sym_DASH_GT, + anon_sym_u2192, + anon_sym_RBRACE, + anon_sym_DOLLAR, + [30397] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1306), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30411] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1308), 1, + sym_identifier, + ACTIONS(1310), 1, anon_sym_DOT, - STATE(546), 1, - aux_sym_qname_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1050), 2, - sym_semi, - ts_builtin_sym_end, - [21312] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1054), 1, - sym_identifier, - ACTIONS(1056), 1, - anon_sym_EQ, - ACTIONS(1058), 1, - anon_sym_COLON, - STATE(659), 1, + STATE(652), 1, aux_sym_lamExpr_repeat1, - [21331] = 5, - ACTIONS(1043), 1, - sym_semi, - ACTIONS(1060), 1, - ts_builtin_sym_end, - STATE(523), 1, - aux_sym_module_repeat1, - STATE(587), 1, - aux_sym_module_repeat2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21348] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(866), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_RBRACE, - anon_sym_DOLLAR, - [21359] = 5, + [30427] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1064), 1, + ACTIONS(1312), 1, sym_identifier, - STATE(549), 1, - aux_sym_mixfixDecl_repeat1, - ACTIONS(1062), 2, - sym_semi, - ts_builtin_sym_end, - [21376] = 4, - ACTIONS(1066), 1, - anon_sym_LT_DASH, - STATE(704), 1, - sym__doArrow, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1068), 2, - sym_semi, - sym_end, - [21391] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(889), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_RBRACE, - anon_sym_DOLLAR, - [21402] = 5, + ACTIONS(1314), 1, + anon_sym_LPAREN, + ACTIONS(1316), 1, + sym_start, + [30443] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1072), 1, + ACTIONS(1308), 1, sym_identifier, - STATE(526), 1, - aux_sym_lamExpr_repeat1, - ACTIONS(1070), 2, - sym_semi, - ts_builtin_sym_end, - [21419] = 4, - ACTIONS(1074), 1, - anon_sym_where, - STATE(720), 1, - sym_whereClause, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1076), 2, - sym_semi, - sym_end, - [21434] = 4, - ACTIONS(1078), 1, - anon_sym_PIPE, - STATE(542), 1, - aux_sym_shortDataDecl_repeat2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(841), 2, - sym_semi, - ts_builtin_sym_end, - [21449] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1080), 1, - sym_identifier, - STATE(537), 1, - aux_sym_lamExpr_repeat1, - ACTIONS(1045), 2, - anon_sym_RPAREN, + ACTIONS(1318), 1, anon_sym_DOT, - [21466] = 4, - ACTIONS(1083), 1, - anon_sym_DOLLAR, - STATE(460), 1, - sym_dollar, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(913), 2, - sym_semi, - sym_end, - [21481] = 4, - ACTIONS(1078), 1, - anon_sym_PIPE, - STATE(542), 1, - aux_sym_shortDataDecl_repeat2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(815), 2, - sym_semi, - ts_builtin_sym_end, - [21496] = 4, - ACTIONS(1052), 1, - anon_sym_DOT, - STATE(527), 1, - aux_sym_qname_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1085), 2, - sym_semi, - ts_builtin_sym_end, - [21511] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(891), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_RBRACE, - anon_sym_DOLLAR, - [21522] = 4, - ACTIONS(1089), 1, - anon_sym_PIPE, - STATE(542), 1, - aux_sym_shortDataDecl_repeat2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1087), 2, - sym_semi, - ts_builtin_sym_end, - [21537] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(893), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_RBRACE, - anon_sym_DOLLAR, - [21548] = 4, - ACTIONS(1078), 1, - anon_sym_PIPE, - STATE(542), 1, - aux_sym_shortDataDecl_repeat2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1092), 2, - sym_semi, - ts_builtin_sym_end, - [21563] = 4, - ACTIONS(1094), 1, - anon_sym_where, - STATE(689), 1, - sym_whereClause, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1076), 2, - sym_semi, - ts_builtin_sym_end, - [21578] = 4, - ACTIONS(1098), 1, - anon_sym_DOT, - STATE(546), 1, - aux_sym_qname_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1096), 2, - sym_semi, - ts_builtin_sym_end, - [21593] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(881), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_RBRACE, - anon_sym_DOLLAR, - [21604] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(883), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_RBRACE, - anon_sym_DOLLAR, - [21615] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1103), 1, - sym_identifier, - STATE(549), 1, - aux_sym_mixfixDecl_repeat1, - ACTIONS(1101), 2, - sym_semi, - ts_builtin_sym_end, - [21632] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(862), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_RBRACE, - anon_sym_DOLLAR, - [21643] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(887), 4, - anon_sym_DASH_GT, - anon_sym_u2192, - anon_sym_RBRACE, - anon_sym_DOLLAR, - [21654] = 4, - ACTIONS(1078), 1, - anon_sym_PIPE, - STATE(542), 1, - aux_sym_shortDataDecl_repeat2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1106), 2, - sym_semi, - ts_builtin_sym_end, - [21669] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1110), 1, - anon_sym_RBRACK, - STATE(558), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21683] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1112), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21697] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1114), 1, - anon_sym_RBRACK, - STATE(556), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21711] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1116), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21725] = 4, - ACTIONS(1118), 1, - sym_semi, - ACTIONS(1120), 1, - sym_end, - STATE(667), 1, - aux_sym_dataDecl_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21739] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1122), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21753] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1124), 1, - anon_sym_RBRACK, - STATE(560), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21767] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1126), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21781] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1128), 3, - sym_semi, - sym_end, - anon_sym_PIPE, - [21791] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1130), 1, - anon_sym_RBRACK, - STATE(563), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21805] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1132), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21819] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1134), 1, - anon_sym_RBRACK, - STATE(565), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21833] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1136), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21847] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1138), 1, - anon_sym_RBRACK, - STATE(567), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21861] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1140), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21875] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1142), 1, - anon_sym_RBRACK, - STATE(569), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21889] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1144), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21903] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1146), 3, - sym_semi, - sym_end, - anon_sym_PIPE, - [21913] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1148), 1, - anon_sym_RBRACK, - STATE(572), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21927] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1150), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21941] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1152), 1, - anon_sym_RBRACK, - STATE(574), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21955] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1154), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21969] = 3, - ACTIONS(1158), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1156), 2, - sym_semi, - ts_builtin_sym_end, - [21981] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1160), 1, - anon_sym_RBRACK, - STATE(577), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [21995] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1162), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22009] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1164), 1, - sym_identifier, - ACTIONS(1166), 1, - anon_sym_COLON, - STATE(600), 1, + STATE(652), 1, aux_sym_lamExpr_repeat1, - [22025] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1168), 1, - anon_sym_RBRACK, - STATE(580), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22039] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1170), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22053] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1172), 1, - anon_sym_RBRACK, - STATE(582), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22067] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1174), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22081] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1176), 1, - anon_sym_RBRACK, - STATE(584), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22095] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1178), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22109] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1180), 1, - sym_identifier, - ACTIONS(1183), 1, - anon_sym_EQ_GT, - STATE(585), 1, - aux_sym_lamExpr_repeat1, - [22125] = 4, - ACTIONS(1185), 1, + [30459] = 4, + ACTIONS(1320), 1, sym_semi, - ACTIONS(1187), 1, + ACTIONS(1322), 1, sym_end, - STATE(608), 1, - aux_sym_doBlock_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22139] = 4, - ACTIONS(1041), 1, - ts_builtin_sym_end, - ACTIONS(1189), 1, - sym_semi, - STATE(605), 1, - aux_sym_module_repeat2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22153] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1193), 1, - anon_sym_EQ_GT, - STATE(585), 1, - aux_sym_lamExpr_repeat1, - [22169] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1195), 1, - sym_identifier, - ACTIONS(1197), 1, - anon_sym_DOT, - STATE(537), 1, - aux_sym_lamExpr_repeat1, - [22185] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1199), 1, - anon_sym_RBRACK, - STATE(612), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22199] = 4, - ACTIONS(1201), 1, - ts_builtin_sym_end, - ACTIONS(1203), 1, - sym_semi, - STATE(591), 1, - aux_sym_module_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22213] = 3, - ACTIONS(1208), 1, - anon_sym_where, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1206), 2, - sym_semi, - ts_builtin_sym_end, - [22225] = 4, - ACTIONS(913), 1, - anon_sym_then, - ACTIONS(1210), 1, - anon_sym_DOLLAR, - STATE(381), 1, - sym_dollar, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22239] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1212), 1, - anon_sym_EQ_GT, - STATE(585), 1, - aux_sym_lamExpr_repeat1, - [22255] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1195), 1, - sym_identifier, - ACTIONS(1214), 1, - anon_sym_DOT, - STATE(537), 1, - aux_sym_lamExpr_repeat1, - [22271] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1096), 3, - sym_semi, - ts_builtin_sym_end, - anon_sym_DOT, - [22281] = 4, - ACTIONS(1189), 1, - sym_semi, - ACTIONS(1216), 1, - ts_builtin_sym_end, - STATE(605), 1, - aux_sym_module_repeat2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22295] = 4, - ACTIONS(1218), 1, - sym_semi, - ACTIONS(1220), 1, - sym_end, - STATE(621), 1, - aux_sym_recordDecl_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22309] = 4, - ACTIONS(1118), 1, - sym_semi, - ACTIONS(1222), 1, - sym_end, - STATE(626), 1, - aux_sym_dataDecl_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22323] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1183), 1, - anon_sym_COLON, - ACTIONS(1224), 1, - sym_identifier, - STATE(600), 1, - aux_sym_lamExpr_repeat1, - [22339] = 4, - ACTIONS(1227), 1, - sym_semi, - ACTIONS(1229), 1, - sym_end, - STATE(640), 1, + STATE(747), 1, aux_sym_whereClause_repeat1, ACTIONS(5), 2, sym__ws, sym_comment, - [22353] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1231), 1, - anon_sym_EQ_GT, - STATE(585), 1, - aux_sym_lamExpr_repeat1, - [22369] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1195), 1, - sym_identifier, - ACTIONS(1233), 1, - anon_sym_DOT, - STATE(537), 1, - aux_sym_lamExpr_repeat1, - [22385] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1235), 1, - anon_sym_EQ_GT, - STATE(585), 1, - aux_sym_lamExpr_repeat1, - [22401] = 4, - ACTIONS(1237), 1, - ts_builtin_sym_end, - ACTIONS(1239), 1, - sym_semi, - STATE(605), 1, - aux_sym_module_repeat2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22415] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1242), 1, - anon_sym_EQ_GT, - STATE(585), 1, - aux_sym_lamExpr_repeat1, - [22431] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1195), 1, - sym_identifier, - ACTIONS(1244), 1, - anon_sym_DOT, - STATE(537), 1, - aux_sym_lamExpr_repeat1, - [22447] = 4, - ACTIONS(1246), 1, - sym_semi, - ACTIONS(1249), 1, - sym_end, - STATE(608), 1, - aux_sym_doBlock_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22461] = 4, - ACTIONS(913), 1, - anon_sym_else, - ACTIONS(1251), 1, - anon_sym_DOLLAR, - STATE(381), 1, - sym_dollar, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22475] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1164), 1, - sym_identifier, - ACTIONS(1253), 1, - anon_sym_COLON, - STATE(600), 1, - aux_sym_lamExpr_repeat1, - [22491] = 4, - ACTIONS(1185), 1, - sym_semi, - ACTIONS(1255), 1, - sym_end, - STATE(586), 1, - aux_sym_doBlock_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22505] = 4, - ACTIONS(1108), 1, + [30473] = 4, + ACTIONS(1304), 1, anon_sym_SEMI, - ACTIONS(1257), 1, + ACTIONS(1324), 1, anon_sym_RBRACK, - STATE(656), 1, + STATE(753), 1, aux_sym_recUpdate_repeat1, ACTIONS(5), 2, sym__ws, sym_comment, - [22519] = 5, + [30487] = 4, + ACTIONS(1326), 1, + ts_builtin_sym_end, + ACTIONS(1328), 1, + sym_semi, + STATE(697), 1, + aux_sym_module_repeat2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30501] = 4, + ACTIONS(1331), 1, + sym_semi, + ACTIONS(1333), 1, + sym_end, + STATE(730), 1, + aux_sym_recordDecl_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30515] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1191), 1, + ACTIONS(1335), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(1338), 1, + anon_sym_EQ, + STATE(699), 1, + aux_sym_lamExpr_repeat1, + [30531] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1342), 1, anon_sym_EQ_GT, - STATE(585), 1, + STATE(712), 1, aux_sym_lamExpr_repeat1, - [22535] = 5, + [30547] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1195), 1, + ACTIONS(1308), 1, sym_identifier, - ACTIONS(1261), 1, + ACTIONS(1344), 1, anon_sym_DOT, - STATE(537), 1, + STATE(652), 1, aux_sym_lamExpr_repeat1, - [22551] = 5, + [30563] = 4, + ACTIONS(1346), 1, + sym_semi, + ACTIONS(1349), 1, + sym_end, + STATE(702), 1, + aux_sym_doBlock_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30577] = 4, + ACTIONS(1351), 1, + sym_semi, + ACTIONS(1353), 1, + sym_end, + STATE(765), 1, + aux_sym_caseExpr_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30591] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1355), 1, + anon_sym_RBRACK, + STATE(707), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30605] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1195), 1, + ACTIONS(1340), 1, sym_identifier, - ACTIONS(1263), 1, - anon_sym_DOT, - STATE(537), 1, + ACTIONS(1357), 1, + anon_sym_EQ_GT, + STATE(712), 1, aux_sym_lamExpr_repeat1, - [22567] = 3, - ACTIONS(1267), 1, + [30621] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1308), 1, + sym_identifier, + ACTIONS(1359), 1, + anon_sym_DOT, + STATE(652), 1, + aux_sym_lamExpr_repeat1, + [30637] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1361), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30651] = 4, + ACTIONS(1363), 1, + sym_semi, + ACTIONS(1365), 1, + sym_end, + STATE(702), 1, + aux_sym_doBlock_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30665] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1367), 1, + anon_sym_EQ_GT, + STATE(712), 1, + aux_sym_lamExpr_repeat1, + [30681] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1308), 1, + sym_identifier, + ACTIONS(1369), 1, + anon_sym_DOT, + STATE(652), 1, + aux_sym_lamExpr_repeat1, + [30697] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1373), 1, + anon_sym_EQ, + STATE(699), 1, + aux_sym_lamExpr_repeat1, + [30713] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1338), 1, + anon_sym_EQ_GT, + ACTIONS(1375), 1, + sym_identifier, + STATE(712), 1, + aux_sym_lamExpr_repeat1, + [30729] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1378), 1, + anon_sym_RBRACK, + STATE(729), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30743] = 4, + ACTIONS(1380), 1, + sym_semi, + ACTIONS(1382), 1, + sym_end, + STATE(732), 1, + aux_sym_dataDecl_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30757] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1384), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30771] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1386), 1, + anon_sym_RBRACK, + STATE(746), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30785] = 4, + ACTIONS(1388), 1, + sym_semi, + ACTIONS(1391), 1, + sym_end, + STATE(717), 1, + aux_sym_caseExpr_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30799] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1393), 1, + anon_sym_EQ_GT, + STATE(712), 1, + aux_sym_lamExpr_repeat1, + [30815] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1308), 1, + sym_identifier, + ACTIONS(1395), 1, + anon_sym_DOT, + STATE(652), 1, + aux_sym_lamExpr_repeat1, + [30831] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1397), 1, + anon_sym_EQ_GT, + STATE(712), 1, + aux_sym_lamExpr_repeat1, + [30847] = 3, + ACTIONS(1401), 1, sym_start, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(1265), 2, + ACTIONS(1399), 2, sym_semi, ts_builtin_sym_end, - [22579] = 5, + [30859] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1403), 1, + anon_sym_RBRACK, + STATE(724), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30873] = 4, + ACTIONS(1351), 1, + sym_semi, + ACTIONS(1405), 1, + sym_end, + STATE(745), 1, + aux_sym_caseExpr_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30887] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1407), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30901] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1195), 1, + ACTIONS(1308), 1, sym_identifier, - ACTIONS(1269), 1, + ACTIONS(1409), 1, anon_sym_RPAREN, - STATE(537), 1, + STATE(652), 1, aux_sym_lamExpr_repeat1, - [22595] = 5, + [30917] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1271), 1, + ACTIONS(1411), 1, sym_identifier, - ACTIONS(1273), 1, + ACTIONS(1413), 1, anon_sym_constructor, - STATE(729), 1, + STATE(891), 1, sym_sigDecl, - [22611] = 5, + [30933] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1191), 1, + ACTIONS(1340), 1, sym_identifier, - ACTIONS(1275), 1, + ACTIONS(1415), 1, anon_sym_EQ_GT, - STATE(585), 1, + STATE(712), 1, aux_sym_lamExpr_repeat1, - [22627] = 5, + [30949] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1195), 1, + ACTIONS(1308), 1, sym_identifier, - ACTIONS(1277), 1, + ACTIONS(1417), 1, anon_sym_DOT, - STATE(537), 1, + STATE(652), 1, aux_sym_lamExpr_repeat1, - [22643] = 4, - ACTIONS(1218), 1, + [30965] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1419), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [30979] = 4, + ACTIONS(1331), 1, sym_semi, - ACTIONS(1279), 1, + ACTIONS(1421), 1, sym_end, - STATE(663), 1, + STATE(850), 1, aux_sym_recordDecl_repeat1, ACTIONS(5), 2, sym__ws, sym_comment, - [22657] = 4, - ACTIONS(1218), 1, + [30993] = 4, + ACTIONS(1331), 1, sym_semi, - ACTIONS(1279), 1, + ACTIONS(1421), 1, sym_end, - STATE(666), 1, + STATE(858), 1, aux_sym_recordDecl_repeat1, ACTIONS(5), 2, sym__ws, sym_comment, - [22671] = 4, - ACTIONS(1185), 1, + [31007] = 4, + ACTIONS(1380), 1, sym_semi, - ACTIONS(1281), 1, + ACTIONS(1423), 1, sym_end, - STATE(629), 1, - aux_sym_doBlock_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22685] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1283), 1, - anon_sym_EQ_GT, - STATE(585), 1, - aux_sym_lamExpr_repeat1, - [22701] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1195), 1, - sym_identifier, - ACTIONS(1285), 1, - anon_sym_DOT, - STATE(537), 1, - aux_sym_lamExpr_repeat1, - [22717] = 4, - ACTIONS(1118), 1, - sym_semi, - ACTIONS(1287), 1, - sym_end, - STATE(667), 1, + STATE(859), 1, aux_sym_dataDecl_repeat1, ACTIONS(5), 2, sym__ws, sym_comment, - [22731] = 4, - ACTIONS(913), 1, + [31021] = 4, + ACTIONS(1380), 1, + sym_semi, + ACTIONS(1423), 1, + sym_end, + STATE(764), 1, + aux_sym_dataDecl_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31035] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1425), 1, + anon_sym_RBRACK, + STATE(738), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31049] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1427), 1, anon_sym_EQ_GT, - ACTIONS(1289), 1, + STATE(712), 1, + aux_sym_lamExpr_repeat1, + [31065] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1308), 1, + sym_identifier, + ACTIONS(1429), 1, + anon_sym_DOT, + STATE(652), 1, + aux_sym_lamExpr_repeat1, + [31081] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1308), 1, + sym_identifier, + ACTIONS(1431), 1, + anon_sym_DOT, + STATE(652), 1, + aux_sym_lamExpr_repeat1, + [31097] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1433), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31111] = 4, + ACTIONS(1320), 1, + sym_semi, + ACTIONS(1435), 1, + sym_end, + STATE(783), 1, + aux_sym_whereClause_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31125] = 4, + ACTIONS(1320), 1, + sym_semi, + ACTIONS(1437), 1, + sym_end, + STATE(739), 1, + aux_sym_whereClause_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31139] = 3, + ACTIONS(1441), 1, + anon_sym_where, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1439), 2, + sym_semi, + ts_builtin_sym_end, + [31151] = 4, + ACTIONS(1320), 1, + sym_semi, + ACTIONS(1443), 1, + sym_end, + STATE(770), 1, + aux_sym_whereClause_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31165] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1445), 1, + anon_sym_EQ_GT, + STATE(712), 1, + aux_sym_lamExpr_repeat1, + [31181] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1308), 1, + sym_identifier, + ACTIONS(1447), 1, + anon_sym_DOT, + STATE(652), 1, + aux_sym_lamExpr_repeat1, + [31197] = 4, + ACTIONS(1351), 1, + sym_semi, + ACTIONS(1449), 1, + sym_end, + STATE(717), 1, + aux_sym_caseExpr_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31211] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1451), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31225] = 4, + ACTIONS(1320), 1, + sym_semi, + ACTIONS(1453), 1, + sym_end, + STATE(783), 1, + aux_sym_whereClause_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31239] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1455), 1, + anon_sym_RBRACK, + STATE(751), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31253] = 4, + ACTIONS(1457), 1, + ts_builtin_sym_end, + ACTIONS(1459), 1, + sym_semi, + STATE(749), 1, + aux_sym_module_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31267] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1462), 3, + sym_semi, + sym_end, + anon_sym_PIPE, + [31277] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1464), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31291] = 4, + ACTIONS(1086), 1, + anon_sym_else, + ACTIONS(1466), 1, anon_sym_DOLLAR, - STATE(381), 1, + STATE(393), 1, sym_dollar, ACTIONS(5), 2, sym__ws, sym_comment, - [22745] = 4, - ACTIONS(1118), 1, - sym_semi, - ACTIONS(1287), 1, - sym_end, - STATE(668), 1, - aux_sym_dataDecl_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22759] = 4, - ACTIONS(1185), 1, - sym_semi, - ACTIONS(1291), 1, - sym_end, - STATE(608), 1, - aux_sym_doBlock_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22773] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1293), 1, - anon_sym_EQ_GT, - STATE(585), 1, - aux_sym_lamExpr_repeat1, - [22789] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1195), 1, - sym_identifier, - ACTIONS(1295), 1, - anon_sym_DOT, - STATE(537), 1, - aux_sym_lamExpr_repeat1, - [22805] = 4, - ACTIONS(1108), 1, + [31305] = 4, + ACTIONS(1304), 1, anon_sym_SEMI, - ACTIONS(1297), 1, - anon_sym_RBRACK, - STATE(633), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22819] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1299), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22833] = 4, - ACTIONS(1227), 1, - sym_semi, - ACTIONS(1301), 1, - sym_end, - STATE(635), 1, - aux_sym_whereClause_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22847] = 4, - ACTIONS(1227), 1, - sym_semi, - ACTIONS(1303), 1, - sym_end, - STATE(671), 1, - aux_sym_whereClause_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22861] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1305), 1, - anon_sym_EQ_GT, - STATE(585), 1, - aux_sym_lamExpr_repeat1, - [22877] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1195), 1, - sym_identifier, - ACTIONS(1307), 1, - anon_sym_DOT, - STATE(537), 1, - aux_sym_lamExpr_repeat1, - [22893] = 4, - ACTIONS(1185), 1, - sym_semi, - ACTIONS(1309), 1, - sym_end, - STATE(644), 1, - aux_sym_doBlock_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22907] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1183), 1, - anon_sym_EQ, - ACTIONS(1311), 1, - sym_identifier, - STATE(639), 1, - aux_sym_lamExpr_repeat1, - [22923] = 4, - ACTIONS(1227), 1, - sym_semi, - ACTIONS(1314), 1, - sym_end, - STATE(671), 1, - aux_sym_whereClause_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22937] = 4, - ACTIONS(1227), 1, - sym_semi, - ACTIONS(1316), 1, - sym_end, - STATE(672), 1, - aux_sym_whereClause_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22951] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1318), 1, - anon_sym_EQ_GT, - STATE(585), 1, - aux_sym_lamExpr_repeat1, - [22967] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1195), 1, - sym_identifier, - ACTIONS(1320), 1, - anon_sym_DOT, - STATE(537), 1, - aux_sym_lamExpr_repeat1, - [22983] = 4, - ACTIONS(1185), 1, - sym_semi, - ACTIONS(1322), 1, - sym_end, - STATE(608), 1, - aux_sym_doBlock_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [22997] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1324), 1, - anon_sym_RBRACK, - STATE(646), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23011] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1326), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23025] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1328), 1, - anon_sym_EQ_GT, - STATE(585), 1, - aux_sym_lamExpr_repeat1, - [23041] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1195), 1, - sym_identifier, - ACTIONS(1330), 1, - anon_sym_DOT, - STATE(537), 1, - aux_sym_lamExpr_repeat1, - [23057] = 4, - ACTIONS(1185), 1, - sym_semi, - ACTIONS(1332), 1, - sym_end, - STATE(653), 1, - aux_sym_doBlock_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23071] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1334), 1, - sym_identifier, - ACTIONS(1336), 1, - anon_sym_0, - STATE(610), 1, - aux_sym_lamExpr_repeat1, - [23087] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1338), 1, - anon_sym_EQ_GT, - STATE(585), 1, - aux_sym_lamExpr_repeat1, - [23103] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1195), 1, - sym_identifier, - ACTIONS(1340), 1, - anon_sym_DOT, - STATE(537), 1, - aux_sym_lamExpr_repeat1, - [23119] = 4, - ACTIONS(1185), 1, - sym_semi, - ACTIONS(1342), 1, - sym_end, - STATE(608), 1, - aux_sym_doBlock_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23133] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1344), 1, - anon_sym_RBRACK, - STATE(655), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23147] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1346), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23161] = 4, - ACTIONS(1348), 1, - anon_sym_SEMI, - ACTIONS(1351), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23175] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1353), 1, - anon_sym_RBRACK, - STATE(658), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23189] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1355), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23203] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1357), 1, - sym_identifier, - ACTIONS(1359), 1, - anon_sym_EQ, - STATE(639), 1, - aux_sym_lamExpr_repeat1, - [23219] = 4, - ACTIONS(1118), 1, - sym_semi, - ACTIONS(1361), 1, - sym_end, - STATE(557), 1, - aux_sym_dataDecl_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23233] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1363), 1, - anon_sym_RBRACK, - STATE(662), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23247] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1365), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23261] = 4, - ACTIONS(1367), 1, - sym_semi, - ACTIONS(1370), 1, - sym_end, - STATE(663), 1, - aux_sym_recordDecl_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23275] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1372), 1, - anon_sym_RBRACK, - STATE(665), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23289] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1374), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23303] = 4, - ACTIONS(1218), 1, - sym_semi, - ACTIONS(1376), 1, - sym_end, - STATE(663), 1, - aux_sym_recordDecl_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23317] = 4, - ACTIONS(1378), 1, - sym_semi, - ACTIONS(1381), 1, - sym_end, - STATE(667), 1, - aux_sym_dataDecl_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23331] = 4, - ACTIONS(1118), 1, - sym_semi, - ACTIONS(1383), 1, - sym_end, - STATE(667), 1, - aux_sym_dataDecl_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23345] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1385), 1, - anon_sym_RBRACK, - STATE(670), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23359] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1387), 1, - anon_sym_RBRACK, - STATE(656), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23373] = 4, - ACTIONS(1389), 1, - sym_semi, - ACTIONS(1392), 1, - sym_end, - STATE(671), 1, - aux_sym_whereClause_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23387] = 4, - ACTIONS(1227), 1, - sym_semi, - ACTIONS(1394), 1, - sym_end, - STATE(671), 1, - aux_sym_whereClause_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23401] = 4, - ACTIONS(1108), 1, - anon_sym_SEMI, - ACTIONS(1396), 1, - anon_sym_RBRACK, - STATE(554), 1, - aux_sym_recUpdate_repeat1, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23415] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1400), 1, - sym_identifier, - ACTIONS(1398), 2, - sym_semi, - ts_builtin_sym_end, - [23429] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1402), 1, - sym_identifier, - STATE(607), 1, - aux_sym_lamExpr_repeat1, - [23442] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1404), 1, - sym_identifier, - ACTIONS(1406), 1, - anon_sym_RBRACK, - [23455] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1408), 2, - sym_semi, - ts_builtin_sym_end, - [23464] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1410), 1, - sym_identifier, - ACTIONS(1412), 1, - anon_sym_RBRACK, - [23477] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1414), 2, - sym_semi, - ts_builtin_sym_end, - [23486] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1416), 1, - sym_identifier, - ACTIONS(1418), 1, - anon_sym_RBRACK, - [23499] = 3, - ACTIONS(1420), 1, - anon_sym_BQUOTE, - STATE(699), 1, - sym_jsLitString, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23510] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1422), 2, - sym_semi, - ts_builtin_sym_end, - [23519] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1424), 1, - sym_identifier, - ACTIONS(1426), 1, - anon_sym_RBRACK, - [23532] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1428), 1, - sym_identifier, - ACTIONS(1430), 1, - anon_sym_RBRACK, - [23545] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1432), 1, - sym_identifier, - ACTIONS(1434), 1, - anon_sym_RBRACK, - [23558] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1436), 2, - sym_semi, - sym_end, - [23567] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1438), 1, - sym_identifier, - ACTIONS(1440), 1, - anon_sym_RBRACK, - [23580] = 3, - ACTIONS(1442), 1, - anon_sym_import, - STATE(711), 1, - sym_importDef, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23591] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1444), 2, - sym_semi, - ts_builtin_sym_end, - [23600] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1446), 2, - sym_semi, - ts_builtin_sym_end, - [23609] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1448), 1, - sym_identifier, - ACTIONS(1450), 1, - anon_sym_RBRACK, - [23622] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1452), 1, - sym_identifier, - ACTIONS(1454), 1, - anon_sym_LPAREN, - [23635] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1249), 2, - sym_semi, - sym_end, - [23644] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1456), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [23653] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1458), 2, - sym_semi, - sym_end, - [23662] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1460), 1, - sym_identifier, - STATE(578), 1, - aux_sym_lamExpr_repeat1, - [23675] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1462), 1, - sym_identifier, - ACTIONS(1464), 1, - anon_sym_RBRACK, - [23688] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1466), 1, - sym_identifier, ACTIONS(1468), 1, anon_sym_RBRACK, - [23701] = 2, + STATE(769), 1, + aux_sym_recUpdate_repeat1, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(1470), 2, + [31319] = 4, + ACTIONS(1363), 1, sym_semi, - ts_builtin_sym_end, - [23710] = 4, + ACTIONS(1470), 1, + sym_end, + STATE(766), 1, + aux_sym_doBlock_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31333] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -21946,2607 +28639,4810 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1472), 1, sym_identifier, ACTIONS(1474), 1, - anon_sym_RBRACK, - [23723] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(55), 1, anon_sym_0, + STATE(846), 1, + aux_sym_lamExpr_repeat1, + [31349] = 4, + ACTIONS(1380), 1, + sym_semi, ACTIONS(1476), 1, - sym_identifier, - [23736] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1478), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [23745] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1414), 2, - sym_semi, sym_end, - [23754] = 2, + STATE(859), 1, + aux_sym_dataDecl_repeat1, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(1480), 2, + [31363] = 4, + ACTIONS(1478), 1, + ts_builtin_sym_end, + ACTIONS(1480), 1, sym_semi, - sym_end, - [23763] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1064), 1, - sym_identifier, - STATE(531), 1, - aux_sym_mixfixDecl_repeat1, - [23776] = 2, + STATE(697), 1, + aux_sym_module_repeat2, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(1482), 2, + [31377] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1293), 3, sym_semi, ts_builtin_sym_end, - [23785] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1484), 2, - sym_semi, - ts_builtin_sym_end, - [23794] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1486), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [23803] = 4, + anon_sym_DOT, + [31387] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1488), 1, + ACTIONS(1340), 1, sym_identifier, - ACTIONS(1490), 1, - anon_sym_RBRACK, - [23816] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1492), 1, - sym_identifier, - STATE(534), 1, + ACTIONS(1482), 1, + anon_sym_EQ_GT, + STATE(712), 1, aux_sym_lamExpr_repeat1, - [23829] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1201), 2, - sym_semi, - ts_builtin_sym_end, - [23838] = 4, + [31403] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1494), 1, - sym_identifier, - STATE(615), 1, - aux_sym_lamExpr_repeat1, - [23851] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1496), 1, - sym_identifier, - STATE(604), 1, - aux_sym_lamExpr_repeat1, - [23864] = 3, - ACTIONS(1420), 1, - anon_sym_BQUOTE, - STATE(719), 1, - sym_jsLitString, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [23875] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1498), 1, - sym_identifier, - ACTIONS(1500), 1, - anon_sym_RBRACK, - [23888] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1502), 1, - sym_identifier, - ACTIONS(1504), 1, - anon_sym_RBRACK, - [23901] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1506), 1, - sym_identifier, - ACTIONS(1508), 1, - anon_sym_RBRACK, - [23914] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1510), 1, - sym_identifier, - STATE(690), 1, - sym_qname, - [23927] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1512), 2, - sym_semi, - ts_builtin_sym_end, - [23936] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1444), 2, - sym_semi, - sym_end, - [23945] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1237), 2, - sym_semi, - ts_builtin_sym_end, - [23954] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1516), 1, - anon_sym_RBRACK, - [23967] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1518), 1, - sym_identifier, - STATE(588), 1, - aux_sym_lamExpr_repeat1, - [23980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1520), 1, - sym_identifier, - STATE(589), 1, - aux_sym_lamExpr_repeat1, - [23993] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1522), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24002] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1524), 1, - sym_identifier, - STATE(594), 1, - aux_sym_lamExpr_repeat1, - [24015] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1526), 1, - sym_identifier, - STATE(595), 1, - aux_sym_lamExpr_repeat1, - [24028] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1528), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24037] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1370), 2, - sym_semi, - sym_end, - [24046] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1530), 1, - sym_identifier, - STATE(602), 1, - aux_sym_lamExpr_repeat1, - [24059] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1532), 1, - sym_identifier, - STATE(603), 1, - aux_sym_lamExpr_repeat1, - [24072] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1534), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24081] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1536), 1, - sym_identifier, - STATE(606), 1, - aux_sym_lamExpr_repeat1, - [24094] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1538), 2, - sym_semi, - ts_builtin_sym_end, - [24103] = 3, - ACTIONS(1540), 1, - anon_sym_COLON, - ACTIONS(1542), 1, - anon_sym_uses, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24114] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1544), 1, - sym_identifier, - STATE(613), 1, - aux_sym_lamExpr_repeat1, - [24127] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1546), 1, - sym_identifier, - STATE(614), 1, - aux_sym_lamExpr_repeat1, - [24140] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1548), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24149] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1550), 2, - sym_semi, - ts_builtin_sym_end, - [24158] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1552), 1, - sym_identifier, - STATE(619), 1, - aux_sym_lamExpr_repeat1, - [24171] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1554), 1, - sym_identifier, - STATE(620), 1, - aux_sym_lamExpr_repeat1, - [24184] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1556), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24193] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1558), 2, - sym_semi, - ts_builtin_sym_end, - [24202] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1560), 1, - sym_identifier, - STATE(624), 1, - aux_sym_lamExpr_repeat1, - [24215] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1562), 1, - sym_identifier, - STATE(625), 1, - aux_sym_lamExpr_repeat1, - [24228] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1564), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24237] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1566), 1, - sym_identifier, - ACTIONS(1568), 1, - anon_sym_RBRACK, - [24250] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1570), 1, - sym_identifier, - STATE(630), 1, - aux_sym_lamExpr_repeat1, - [24263] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1572), 1, - sym_identifier, - STATE(631), 1, - aux_sym_lamExpr_repeat1, - [24276] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1574), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24285] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1576), 2, - sym_semi, - ts_builtin_sym_end, - [24294] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1578), 1, - sym_identifier, - STATE(636), 1, - aux_sym_lamExpr_repeat1, - [24307] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1580), 1, - sym_identifier, - STATE(637), 1, - aux_sym_lamExpr_repeat1, - [24320] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1582), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24329] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1584), 2, - sym_semi, - ts_builtin_sym_end, - [24338] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1586), 1, - sym_identifier, - STATE(642), 1, - aux_sym_lamExpr_repeat1, - [24351] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1588), 1, - sym_identifier, - STATE(643), 1, - aux_sym_lamExpr_repeat1, - [24364] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1590), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24373] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1592), 1, - sym_identifier, - ACTIONS(1594), 1, - anon_sym_RBRACK, - [24386] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1596), 1, - sym_identifier, - STATE(647), 1, - aux_sym_lamExpr_repeat1, - [24399] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1598), 1, - sym_identifier, - STATE(648), 1, - aux_sym_lamExpr_repeat1, - [24412] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1600), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24421] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1602), 1, - sym_identifier, - STATE(651), 1, - aux_sym_lamExpr_repeat1, - [24434] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1604), 1, + ACTIONS(1308), 1, sym_identifier, + ACTIONS(1484), 1, + anon_sym_DOT, STATE(652), 1, aux_sym_lamExpr_repeat1, - [24447] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1606), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24456] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1381), 2, - sym_semi, - sym_end, - [24465] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1608), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24474] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1610), 2, - sym_semi, - ts_builtin_sym_end, - [24483] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1612), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1614), 1, - sym_identifier, - ACTIONS(1616), 1, + [31419] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1486), 1, anon_sym_RBRACK, - [24505] = 2, + STATE(691), 1, + aux_sym_recUpdate_repeat1, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(1618), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24514] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1620), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24523] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1622), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24532] = 4, + [31433] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1271), 1, + ACTIONS(1490), 1, sym_identifier, - STATE(766), 1, - sym_sigDecl, - [24545] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1624), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24554] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1392), 2, - sym_semi, - sym_end, - [24563] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1626), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24572] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1628), 2, + ACTIONS(1488), 2, sym_semi, ts_builtin_sym_end, - [24581] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1630), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24590] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1632), 2, - anon_sym_COLON_EQ, - anon_sym_DOLLAR_EQ, - [24599] = 4, + [31447] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1634), 1, + ACTIONS(1338), 1, + anon_sym_COLON, + ACTIONS(1492), 1, sym_identifier, - ACTIONS(1636), 1, - anon_sym_RBRACK, - [24612] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1638), 2, - sym_semi, - ts_builtin_sym_end, - [24621] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1640), 1, - sym_identifier, - ACTIONS(1642), 1, - anon_sym_RBRACK, - [24634] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1644), 2, - sym_semi, - sym_end, - [24643] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1644), 2, - sym_semi, - ts_builtin_sym_end, - [24652] = 2, - ACTIONS(5), 2, - sym__ws, - sym_comment, - ACTIONS(1646), 2, - sym_semi, - sym_end, - [24661] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1648), 1, - sym_identifier, - STATE(617), 1, + STATE(763), 1, aux_sym_lamExpr_repeat1, - [24674] = 2, + [31463] = 4, + ACTIONS(1380), 1, + sym_semi, + ACTIONS(1495), 1, + sym_end, + STATE(859), 1, + aux_sym_dataDecl_repeat1, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(1646), 2, + [31477] = 4, + ACTIONS(1351), 1, + sym_semi, + ACTIONS(1497), 1, + sym_end, + STATE(717), 1, + aux_sym_caseExpr_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31491] = 4, + ACTIONS(1363), 1, + sym_semi, + ACTIONS(1499), 1, + sym_end, + STATE(702), 1, + aux_sym_doBlock_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31505] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1501), 1, + anon_sym_EQ_GT, + STATE(712), 1, + aux_sym_lamExpr_repeat1, + [31521] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1503), 1, + anon_sym_RBRACK, + STATE(776), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31535] = 4, + ACTIONS(1505), 1, + anon_sym_SEMI, + ACTIONS(1508), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31549] = 4, + ACTIONS(1320), 1, + sym_semi, + ACTIONS(1510), 1, + sym_end, + STATE(783), 1, + aux_sym_whereClause_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31563] = 4, + ACTIONS(1351), 1, + sym_semi, + ACTIONS(1512), 1, + sym_end, + STATE(786), 1, + aux_sym_caseExpr_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31577] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1514), 1, + anon_sym_RBRACK, + STATE(774), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31591] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1516), 1, + anon_sym_RBRACK, + STATE(715), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31605] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1518), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31619] = 3, + ACTIONS(1522), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1520), 2, sym_semi, ts_builtin_sym_end, - [24683] = 4, + [31631] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1524), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31645] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1650), 1, + ACTIONS(1308), 1, sym_identifier, - ACTIONS(1652), 1, + ACTIONS(1526), 1, + anon_sym_DOT, + STATE(652), 1, + aux_sym_lamExpr_repeat1, + [31661] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1528), 1, anon_sym_RBRACK, - [24696] = 2, + STATE(779), 1, + aux_sym_recUpdate_repeat1, ACTIONS(5), 2, sym__ws, sym_comment, - ACTIONS(1654), 2, + [31675] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1530), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31689] = 4, + ACTIONS(1351), 1, + sym_semi, + ACTIONS(1532), 1, + sym_end, + STATE(717), 1, + aux_sym_caseExpr_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31703] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1536), 1, + sym_end, + STATE(832), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31717] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1538), 1, + anon_sym_RBRACK, + STATE(863), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31731] = 4, + ACTIONS(1540), 1, + sym_semi, + ACTIONS(1543), 1, + sym_end, + STATE(783), 1, + aux_sym_whereClause_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31745] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1545), 1, + sym_end, + STATE(785), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31759] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1547), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31773] = 4, + ACTIONS(1351), 1, + sym_semi, + ACTIONS(1549), 1, + sym_end, + STATE(717), 1, + aux_sym_caseExpr_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31787] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1551), 1, + sym_end, + STATE(788), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31801] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1553), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31815] = 4, + ACTIONS(1363), 1, + sym_semi, + ACTIONS(1555), 1, + sym_end, + STATE(708), 1, + aux_sym_doBlock_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31829] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1557), 1, + sym_end, + STATE(791), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31843] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1559), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31857] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1561), 1, + anon_sym_RBRACK, + STATE(795), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31871] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1563), 1, + sym_end, + STATE(794), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31885] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1565), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31899] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1567), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31913] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1569), 1, + sym_end, + STATE(797), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31927] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1571), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31941] = 4, + ACTIONS(1262), 1, + ts_builtin_sym_end, + ACTIONS(1480), 1, + sym_semi, + STATE(697), 1, + aux_sym_module_repeat2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31955] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1573), 1, + sym_end, + STATE(800), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31969] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1575), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31983] = 4, + ACTIONS(1363), 1, + sym_semi, + ACTIONS(1577), 1, + sym_end, + STATE(836), 1, + aux_sym_doBlock_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [31997] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1579), 1, + sym_end, + STATE(803), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32011] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1581), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32025] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1583), 1, + anon_sym_RBRACK, + STATE(807), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32039] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1585), 1, + sym_end, + STATE(806), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32053] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1587), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32067] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1589), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32081] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1591), 1, + sym_end, + STATE(809), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32095] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1593), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32109] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1595), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32123] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1597), 1, + sym_end, + STATE(812), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32137] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1599), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32151] = 4, + ACTIONS(1363), 1, + sym_semi, + ACTIONS(1601), 1, + sym_end, + STATE(848), 1, + aux_sym_doBlock_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32165] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1603), 1, + sym_end, + STATE(815), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32179] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1605), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32193] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1607), 1, + anon_sym_RBRACK, + STATE(819), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32207] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1609), 1, + sym_end, + STATE(818), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32221] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1611), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32235] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1613), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32249] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1615), 1, + sym_end, + STATE(821), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32263] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1617), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32277] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, + anon_sym_COLON, + STATE(763), 1, + aux_sym_lamExpr_repeat1, + [32293] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1623), 1, + sym_end, + STATE(824), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32307] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1625), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32321] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1627), 1, + anon_sym_RBRACK, + STATE(829), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32335] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1629), 1, + anon_sym_RBRACK, + STATE(827), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32349] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1631), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32363] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1308), 1, + sym_identifier, + ACTIONS(1633), 1, + anon_sym_DOT, + STATE(652), 1, + aux_sym_lamExpr_repeat1, + [32379] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1635), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32393] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1637), 1, + anon_sym_RBRACK, + STATE(831), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32407] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1639), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32421] = 4, + ACTIONS(1534), 1, + sym_semi, + ACTIONS(1641), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32435] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1643), 1, + anon_sym_EQ_GT, + STATE(712), 1, + aux_sym_lamExpr_repeat1, + [32451] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1645), 1, + anon_sym_RBRACK, + STATE(835), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32465] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1647), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32479] = 4, + ACTIONS(1363), 1, + sym_semi, + ACTIONS(1649), 1, + sym_end, + STATE(702), 1, + aux_sym_doBlock_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32493] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1651), 1, + anon_sym_RBRACK, + STATE(838), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32507] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1653), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32521] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1655), 1, + anon_sym_EQ_GT, + STATE(712), 1, + aux_sym_lamExpr_repeat1, + [32537] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1308), 1, + sym_identifier, + ACTIONS(1657), 1, + anon_sym_DOT, + STATE(652), 1, + aux_sym_lamExpr_repeat1, + [32553] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1659), 1, + anon_sym_RBRACK, + STATE(842), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32567] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1661), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32581] = 4, + ACTIONS(1380), 1, + sym_semi, + ACTIONS(1663), 1, + sym_end, + STATE(756), 1, + aux_sym_dataDecl_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32595] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1665), 1, + anon_sym_RBRACK, + STATE(849), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32609] = 4, + ACTIONS(1667), 1, + sym_semi, + ACTIONS(1670), 1, + sym_end, + STATE(845), 1, + aux_sym_letStmt_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32623] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1672), 1, + anon_sym_COLON, + STATE(763), 1, + aux_sym_lamExpr_repeat1, + [32639] = 4, + ACTIONS(1086), 1, + anon_sym_EQ_GT, + ACTIONS(1674), 1, + anon_sym_DOLLAR, + STATE(393), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32653] = 4, + ACTIONS(1363), 1, + sym_semi, + ACTIONS(1676), 1, + sym_end, + STATE(702), 1, + aux_sym_doBlock_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32667] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1678), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32681] = 4, + ACTIONS(1680), 1, + sym_semi, + ACTIONS(1683), 1, + sym_end, + STATE(850), 1, + aux_sym_recordDecl_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32695] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1685), 1, + anon_sym_EQ_GT, + STATE(712), 1, + aux_sym_lamExpr_repeat1, + [32711] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1308), 1, + sym_identifier, + ACTIONS(1687), 1, + anon_sym_DOT, + STATE(652), 1, + aux_sym_lamExpr_repeat1, + [32727] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1689), 1, + anon_sym_RBRACK, + STATE(810), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32741] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1691), 1, + anon_sym_RBRACK, + STATE(856), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32755] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1693), 3, + sym_semi, + sym_end, + anon_sym_PIPE, + [32765] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1695), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32779] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_EQ_GT, + STATE(712), 1, + aux_sym_lamExpr_repeat1, + [32795] = 4, + ACTIONS(1331), 1, + sym_semi, + ACTIONS(1699), 1, + sym_end, + STATE(850), 1, + aux_sym_recordDecl_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32809] = 4, + ACTIONS(1701), 1, + sym_semi, + ACTIONS(1704), 1, + sym_end, + STATE(859), 1, + aux_sym_dataDecl_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32823] = 4, + ACTIONS(1086), 1, + anon_sym_then, + ACTIONS(1706), 1, + anon_sym_DOLLAR, + STATE(393), 1, + sym_dollar, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32837] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1708), 1, + anon_sym_EQ_GT, + STATE(712), 1, + aux_sym_lamExpr_repeat1, + [32853] = 4, + ACTIONS(1351), 1, + sym_semi, + ACTIONS(1710), 1, + sym_end, + STATE(780), 1, + aux_sym_caseExpr_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32867] = 4, + ACTIONS(1304), 1, + anon_sym_SEMI, + ACTIONS(1712), 1, + anon_sym_RBRACK, + STATE(769), 1, + aux_sym_recUpdate_repeat1, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [32881] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1714), 2, anon_sym_COLON_EQ, anon_sym_DOLLAR_EQ, - [24705] = 2, - ACTIONS(1656), 1, - anon_sym_RBRACE, + [32890] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [24713] = 2, - ACTIONS(1658), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24721] = 2, - ACTIONS(1660), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24729] = 2, - ACTIONS(1662), 1, - sym_start, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24737] = 2, - ACTIONS(1664), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24745] = 2, - ACTIONS(1666), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24753] = 2, - ACTIONS(1668), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24761] = 2, - ACTIONS(1670), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24769] = 2, - ACTIONS(1672), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24777] = 2, - ACTIONS(1674), 1, - anon_sym_else, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24785] = 2, - ACTIONS(1672), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24793] = 2, - ACTIONS(1670), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24801] = 2, - ACTIONS(1676), 1, - anon_sym_else, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24809] = 2, - ACTIONS(1678), 1, - sym_start, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24817] = 2, - ACTIONS(1680), 1, - anon_sym_else, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24825] = 2, - ACTIONS(1682), 1, - sym_start, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24833] = 2, - ACTIONS(1684), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24841] = 2, - ACTIONS(1684), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24849] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1686), 1, - sym_identifier, - [24859] = 2, - ACTIONS(1688), 1, - anon_sym_else, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24867] = 2, - ACTIONS(1690), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24875] = 2, - ACTIONS(1692), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24883] = 2, - ACTIONS(1694), 1, - anon_sym_where, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24891] = 2, - ACTIONS(1692), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24899] = 2, - ACTIONS(1696), 1, - anon_sym_else, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24907] = 2, - ACTIONS(1698), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24915] = 2, - ACTIONS(1698), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1700), 1, - sym_identifier, - [24933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1702), 1, - sym_identifier, - [24943] = 2, - ACTIONS(1704), 1, - anon_sym_else, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__ws, - ACTIONS(1706), 1, - sym_identifier, - [24961] = 2, - ACTIONS(1708), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24969] = 2, - ACTIONS(1710), 1, + ACTIONS(1716), 2, + sym_semi, ts_builtin_sym_end, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24977] = 2, - ACTIONS(1712), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24985] = 2, - ACTIONS(1714), 1, - anon_sym_else, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [24993] = 2, - ACTIONS(1716), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25001] = 2, + [32899] = 3, ACTIONS(1718), 1, - anon_sym_RBRACE_RBRACE, + anon_sym_LPAREN, + ACTIONS(1720), 1, + sym_start, ACTIONS(5), 2, sym__ws, sym_comment, - [25009] = 3, + [32910] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1720), 1, + ACTIONS(1411), 1, sym_identifier, - [25019] = 2, - ACTIONS(1722), 1, - anon_sym_else, + STATE(895), 1, + sym_sigDecl, + [32923] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25027] = 2, - ACTIONS(1724), 1, - anon_sym_else, + ACTIONS(1722), 2, + sym_semi, + sym_end, + [32932] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25035] = 2, + ACTIONS(1724), 2, + sym_semi, + ts_builtin_sym_end, + [32941] = 3, ACTIONS(1726), 1, - anon_sym_RBRACE_RBRACE, + anon_sym_import, + STATE(893), 1, + sym_importDef, ACTIONS(5), 2, sym__ws, sym_comment, - [25043] = 2, - ACTIONS(1726), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25051] = 3, + [32952] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, ACTIONS(1728), 1, - aux_sym_jsLitString_token1, - [25061] = 2, - ACTIONS(1712), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25069] = 2, + sym_identifier, ACTIONS(1730), 1, - anon_sym_else, + anon_sym_RBRACK, + [32965] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25077] = 2, - ACTIONS(1732), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, - sym__ws, + ACTIONS(1732), 2, + sym_semi, + ts_builtin_sym_end, + [32974] = 4, + ACTIONS(3), 1, sym_comment, - [25085] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1734), 1, - anon_sym_else, + sym_identifier, + STATE(917), 1, + sym_letAssign, + [32987] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25093] = 2, - ACTIONS(1736), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym__ws, + ACTIONS(1736), 2, + sym_semi, + sym_end, + [32996] = 4, + ACTIONS(3), 1, sym_comment, - [25101] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1738), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25109] = 2, + sym_identifier, ACTIONS(1740), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25117] = 3, + anon_sym_RBRACK, + [33009] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, ACTIONS(1742), 1, sym_identifier, - [25127] = 2, ACTIONS(1744), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, + [33022] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25135] = 3, + ACTIONS(1746), 2, + sym_semi, + sym_end, + [33031] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1746), 1, - sym_identifier, - [25145] = 2, - ACTIONS(1732), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25153] = 2, ACTIONS(1748), 1, - anon_sym_COLON, + sym_identifier, + STATE(822), 1, + aux_sym_lamExpr_repeat1, + [33044] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25161] = 2, + ACTIONS(1693), 2, + anon_sym_PIPE, + anon_sym_in, + [33053] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, ACTIONS(1750), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25169] = 2, - ACTIONS(1752), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25177] = 2, - ACTIONS(1752), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25185] = 3, + sym_identifier, + STATE(828), 1, + aux_sym_lamExpr_repeat1, + [33066] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, + ACTIONS(1752), 1, + sym_identifier, ACTIONS(1754), 1, - sym_identifier, - [25195] = 2, - ACTIONS(1756), 1, - anon_sym_else, + anon_sym_RBRACK, + [33079] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25203] = 2, - ACTIONS(1758), 1, - anon_sym_then, + ACTIONS(1756), 2, + sym_semi, + sym_end, + [33088] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25211] = 2, - ACTIONS(1760), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25219] = 2, - ACTIONS(1762), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25227] = 2, - ACTIONS(1760), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25235] = 2, - ACTIONS(1764), 1, - sym_start, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25243] = 2, - ACTIONS(1766), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25251] = 2, - ACTIONS(1762), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25259] = 2, - ACTIONS(1768), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25267] = 2, - ACTIONS(1770), 1, - anon_sym_where, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25275] = 2, - ACTIONS(1772), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25283] = 2, - ACTIONS(1774), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25291] = 2, - ACTIONS(1776), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25299] = 2, - ACTIONS(1778), 1, - anon_sym_else, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25307] = 2, - ACTIONS(1780), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25315] = 2, - ACTIONS(1782), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25323] = 2, - ACTIONS(1784), 1, - sym_start, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25331] = 2, - ACTIONS(1786), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25339] = 2, - ACTIONS(1786), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25347] = 2, - ACTIONS(1788), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25355] = 2, - ACTIONS(1790), 1, - anon_sym_where, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25363] = 2, - ACTIONS(1792), 1, + ACTIONS(1758), 2, anon_sym_COLON_EQ, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25371] = 2, - ACTIONS(1794), 1, - sym_start, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25379] = 2, - ACTIONS(1796), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25387] = 2, - ACTIONS(1798), 1, - anon_sym_else, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25395] = 2, - ACTIONS(1800), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25403] = 2, - ACTIONS(1802), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25411] = 2, - ACTIONS(1804), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25419] = 2, - ACTIONS(1806), 1, - sym_start, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25427] = 2, - ACTIONS(1808), 1, - anon_sym_else, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25435] = 2, - ACTIONS(1796), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25443] = 2, - ACTIONS(1810), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25451] = 3, + anon_sym_DOLLAR_EQ, + [33097] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, - ACTIONS(1812), 1, + ACTIONS(1760), 1, sym_identifier, - [25461] = 2, - ACTIONS(1814), 1, - anon_sym_RBRACE_RBRACE, + ACTIONS(1762), 1, + anon_sym_RBRACK, + [33110] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25469] = 2, + ACTIONS(1764), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [33119] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1766), 1, + sym_identifier, + ACTIONS(1768), 1, + anon_sym_RBRACK, + [33132] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1770), 1, + sym_identifier, + STATE(725), 1, + aux_sym_lamExpr_repeat1, + [33145] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1772), 2, + sym_semi, + ts_builtin_sym_end, + [33154] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1774), 1, + sym_identifier, + ACTIONS(1776), 1, + anon_sym_RBRACK, + [33167] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1778), 2, + sym_semi, + ts_builtin_sym_end, + [33176] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1683), 2, + sym_semi, + sym_end, + [33185] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1780), 2, + sym_semi, + ts_builtin_sym_end, + [33194] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1457), 2, + sym_semi, + ts_builtin_sym_end, + [33203] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(33), 1, + anon_sym_0, + ACTIONS(1782), 1, + sym_identifier, + [33216] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1704), 2, + sym_semi, + sym_end, + [33225] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1786), 1, + anon_sym_RBRACK, + [33238] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1788), 2, + sym_semi, + ts_builtin_sym_end, + [33247] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1326), 2, + sym_semi, + ts_builtin_sym_end, + [33256] = 3, + ACTIONS(1790), 1, + anon_sym_COLON, + ACTIONS(1792), 1, + anon_sym_uses, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [33267] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1543), 2, + sym_semi, + sym_end, + [33276] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1794), 1, + sym_identifier, + ACTIONS(1796), 1, + anon_sym_RBRACK, + [33289] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1798), 2, + sym_semi, + ts_builtin_sym_end, + [33298] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1736), 2, + sym_semi, + ts_builtin_sym_end, + [33307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1800), 1, + sym_identifier, + ACTIONS(1802), 1, + anon_sym_RBRACK, + [33320] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1804), 1, + sym_identifier, + ACTIONS(1806), 1, + anon_sym_RBRACK, + [33333] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1808), 2, + sym_semi, + sym_end, + [33342] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1810), 1, + sym_identifier, + ACTIONS(1812), 1, + anon_sym_RBRACK, + [33355] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1722), 2, + sym_semi, + ts_builtin_sym_end, + [33364] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1814), 1, + sym_identifier, ACTIONS(1816), 1, - anon_sym_else, + anon_sym_RBRACK, + [33377] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25477] = 2, - ACTIONS(1818), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, + ACTIONS(1818), 2, + sym_semi, + ts_builtin_sym_end, + [33386] = 4, + ACTIONS(3), 1, sym_comment, - [25485] = 2, - ACTIONS(1814), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, + ACTIONS(5), 1, sym__ws, - sym_comment, - [25493] = 3, + ACTIONS(1270), 1, + sym_identifier, + STATE(672), 1, + aux_sym_mixfixDecl_repeat1, + [33399] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, ACTIONS(1820), 1, sym_identifier, - [25503] = 2, + STATE(688), 1, + aux_sym_lamExpr_repeat1, + [33412] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, ACTIONS(1822), 1, - sym_start, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25511] = 2, + sym_identifier, ACTIONS(1824), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, + [33425] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25519] = 2, + ACTIONS(1391), 2, + sym_semi, + sym_end, + [33434] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, ACTIONS(1826), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25527] = 2, + sym_identifier, ACTIONS(1828), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, + anon_sym_RBRACK, + [33447] = 4, + ACTIONS(3), 1, sym_comment, - [25535] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1830), 1, - anon_sym_COLON_EQ, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25543] = 2, + sym_identifier, ACTIONS(1832), 1, - ts_builtin_sym_end, + anon_sym_RBRACK, + [33460] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25551] = 2, + ACTIONS(1670), 2, + sym_semi, + sym_end, + [33469] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, ACTIONS(1834), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25559] = 2, + sym_identifier, ACTIONS(1836), 1, - anon_sym_RBRACE_RBRACE, + anon_sym_RBRACK, + [33482] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25567] = 2, - ACTIONS(1838), 1, - anon_sym_else, - ACTIONS(5), 2, - sym__ws, + ACTIONS(1838), 2, + sym_semi, + ts_builtin_sym_end, + [33491] = 4, + ACTIONS(3), 1, sym_comment, - [25575] = 2, - ACTIONS(1836), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, + ACTIONS(5), 1, sym__ws, - sym_comment, - [25583] = 2, ACTIONS(1840), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25591] = 2, + sym_identifier, ACTIONS(1842), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym__ws, + anon_sym_RBRACK, + [33504] = 4, + ACTIONS(3), 1, sym_comment, - [25599] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1844), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, - sym__ws, + sym_identifier, + STATE(851), 1, + aux_sym_lamExpr_repeat1, + [33517] = 4, + ACTIONS(3), 1, sym_comment, - [25607] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1846), 1, - anon_sym_RBRACE_RBRACE, + sym_identifier, + STATE(852), 1, + aux_sym_lamExpr_repeat1, + [33530] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25615] = 2, - ACTIONS(1846), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, + ACTIONS(1848), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [33539] = 4, + ACTIONS(3), 1, sym_comment, - [25623] = 2, - ACTIONS(1848), 1, - anon_sym_else, - ACTIONS(5), 2, + ACTIONS(5), 1, sym__ws, - sym_comment, - [25631] = 2, - ACTIONS(1844), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25639] = 2, - ACTIONS(1656), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25647] = 2, ACTIONS(1850), 1, - anon_sym_then, - ACTIONS(5), 2, - sym__ws, + sym_identifier, + STATE(767), 1, + aux_sym_lamExpr_repeat1, + [33552] = 4, + ACTIONS(3), 1, sym_comment, - [25655] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1852), 1, - anon_sym_then, + sym_identifier, + STATE(777), 1, + aux_sym_lamExpr_repeat1, + [33565] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25663] = 2, - ACTIONS(1854), 1, - anon_sym_then, - ACTIONS(5), 2, - sym__ws, + ACTIONS(1854), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [33574] = 4, + ACTIONS(3), 1, sym_comment, - [25671] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1856), 1, - anon_sym_then, - ACTIONS(5), 2, - sym__ws, + sym_identifier, + STATE(705), 1, + aux_sym_lamExpr_repeat1, + [33587] = 4, + ACTIONS(3), 1, sym_comment, - [25679] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1858), 1, - anon_sym_then, + sym_identifier, + STATE(706), 1, + aux_sym_lamExpr_repeat1, + [33600] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25687] = 2, - ACTIONS(1860), 1, - anon_sym_then, + ACTIONS(1860), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [33609] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25695] = 2, - ACTIONS(1862), 1, - anon_sym_then, - ACTIONS(5), 2, - sym__ws, + ACTIONS(1862), 2, + sym_semi, + sym_end, + [33618] = 4, + ACTIONS(3), 1, sym_comment, - [25703] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1864), 1, - anon_sym_then, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25711] = 2, + sym_identifier, ACTIONS(1866), 1, - anon_sym_then, - ACTIONS(5), 2, - sym__ws, + anon_sym_RBRACK, + [33631] = 4, + ACTIONS(3), 1, sym_comment, - [25719] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1868), 1, - anon_sym_then, - ACTIONS(5), 2, - sym__ws, + sym_identifier, + STATE(857), 1, + aux_sym_lamExpr_repeat1, + [33644] = 4, + ACTIONS(3), 1, sym_comment, - [25727] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1870), 1, - anon_sym_then, + sym_identifier, + STATE(694), 1, + aux_sym_lamExpr_repeat1, + [33657] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25735] = 2, - ACTIONS(1872), 1, - anon_sym_then, - ACTIONS(5), 2, - sym__ws, + ACTIONS(1872), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [33666] = 4, + ACTIONS(3), 1, sym_comment, - [25743] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1874), 1, - anon_sym_then, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25751] = 2, + sym_identifier, ACTIONS(1876), 1, - anon_sym_then, - ACTIONS(5), 2, - sym__ws, + anon_sym_RBRACK, + [33679] = 4, + ACTIONS(3), 1, sym_comment, - [25759] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1878), 1, - anon_sym_then, - ACTIONS(5), 2, - sym__ws, + sym_identifier, + STATE(720), 1, + aux_sym_lamExpr_repeat1, + [33692] = 4, + ACTIONS(3), 1, sym_comment, - [25767] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1880), 1, - anon_sym_then, + sym_identifier, + STATE(737), 1, + aux_sym_lamExpr_repeat1, + [33705] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25775] = 2, - ACTIONS(1882), 1, - anon_sym_then, + ACTIONS(1882), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [33714] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25783] = 2, - ACTIONS(1884), 1, - anon_sym_then, + ACTIONS(1884), 2, + sym_semi, + ts_builtin_sym_end, + [33723] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25791] = 2, - ACTIONS(1886), 1, - anon_sym_then, - ACTIONS(5), 2, - sym__ws, + ACTIONS(1886), 2, + sym_semi, + ts_builtin_sym_end, + [33732] = 4, + ACTIONS(3), 1, sym_comment, - [25799] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1888), 1, - anon_sym_else, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25807] = 2, - ACTIONS(1780), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25815] = 3, + sym_identifier, + STATE(759), 1, + aux_sym_lamExpr_repeat1, + [33745] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, ACTIONS(1890), 1, sym_identifier, - [25825] = 2, - ACTIONS(1892), 1, - anon_sym_RPAREN, + STATE(760), 1, + aux_sym_lamExpr_repeat1, + [33758] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25833] = 3, + ACTIONS(1892), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [33767] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, ACTIONS(1894), 1, sym_identifier, - [25843] = 2, + STATE(910), 1, + sym_qname, + [33780] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, ACTIONS(1896), 1, - sym_start, - ACTIONS(5), 2, - sym__ws, + sym_identifier, + STATE(839), 1, + aux_sym_lamExpr_repeat1, + [33793] = 4, + ACTIONS(3), 1, sym_comment, - [25851] = 2, - ACTIONS(1800), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, + ACTIONS(5), 1, sym__ws, - sym_comment, - [25859] = 2, ACTIONS(1898), 1, - anon_sym_RBRACE_RBRACE, + sym_identifier, + STATE(840), 1, + aux_sym_lamExpr_repeat1, + [33806] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25867] = 2, - ACTIONS(1898), 1, - anon_sym_RBRACE, + ACTIONS(1900), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [33815] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25875] = 2, - ACTIONS(1900), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym__ws, + ACTIONS(1746), 2, + sym_semi, + ts_builtin_sym_end, + [33824] = 4, + ACTIONS(3), 1, sym_comment, - [25883] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1902), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, + sym_identifier, + STATE(861), 1, + aux_sym_lamExpr_repeat1, + [33837] = 4, + ACTIONS(3), 1, sym_comment, - [25891] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1904), 1, - sym_start, + sym_identifier, + STATE(692), 1, + aux_sym_lamExpr_repeat1, + [33850] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25899] = 2, - ACTIONS(1906), 1, - sym_start, - ACTIONS(5), 2, - sym__ws, + ACTIONS(1906), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [33859] = 4, + ACTIONS(3), 1, sym_comment, - [25907] = 2, + ACTIONS(5), 1, + sym__ws, ACTIONS(1908), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25915] = 2, - ACTIONS(1668), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25923] = 2, + sym_identifier, ACTIONS(1910), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym__ws, - sym_comment, - [25931] = 3, + anon_sym_RBRACK, + [33872] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__ws, ACTIONS(1912), 1, sym_identifier, - [25941] = 2, + STATE(700), 1, + aux_sym_lamExpr_repeat1, + [33885] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, ACTIONS(1914), 1, - sym_number, + sym_identifier, + STATE(701), 1, + aux_sym_lamExpr_repeat1, + [33898] = 2, ACTIONS(5), 2, sym__ws, sym_comment, - [25949] = 2, - ACTIONS(1916), 1, + ACTIONS(1916), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [33907] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1462), 2, + anon_sym_PIPE, + anon_sym_in, + [33916] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1349), 2, + sym_semi, + sym_end, + [33925] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1918), 1, + sym_identifier, + STATE(709), 1, + aux_sym_lamExpr_repeat1, + [33938] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1920), 1, + sym_identifier, + STATE(710), 1, + aux_sym_lamExpr_repeat1, + [33951] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1922), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [33960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1924), 1, + sym_identifier, + STATE(718), 1, + aux_sym_lamExpr_repeat1, + [33973] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1926), 1, + sym_identifier, + STATE(719), 1, + aux_sym_lamExpr_repeat1, + [33986] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1928), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [33995] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1930), 2, + sym_semi, + sym_end, + [34004] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1932), 1, + sym_identifier, + STATE(833), 1, + aux_sym_lamExpr_repeat1, + [34017] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1934), 1, + sym_identifier, + STATE(727), 1, + aux_sym_lamExpr_repeat1, + [34030] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1936), 1, + sym_identifier, + STATE(728), 1, + aux_sym_lamExpr_repeat1, + [34043] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1938), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [34052] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1940), 1, + sym_identifier, + ACTIONS(1942), 1, + anon_sym_RBRACK, + [34065] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1944), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [34074] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1946), 1, + sym_identifier, + STATE(735), 1, + aux_sym_lamExpr_repeat1, + [34087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1948), 1, + sym_identifier, + STATE(736), 1, + aux_sym_lamExpr_repeat1, + [34100] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1950), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [34109] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1952), 2, + sym_semi, + ts_builtin_sym_end, + [34118] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1954), 2, + sym_semi, + ts_builtin_sym_end, + [34127] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1956), 1, + sym_identifier, + STATE(743), 1, + aux_sym_lamExpr_repeat1, + [34140] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1958), 1, + sym_identifier, + STATE(744), 1, + aux_sym_lamExpr_repeat1, + [34153] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1960), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [34162] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1962), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [34171] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1964), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [34180] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1966), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [34189] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1968), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [34198] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1970), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [34207] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1972), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [34216] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1974), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [34225] = 3, + ACTIONS(1976), 1, + anon_sym_BQUOTE, + STATE(991), 1, + sym_jsLitString, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34236] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1978), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [34245] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1980), 2, + anon_sym_COLON_EQ, + anon_sym_DOLLAR_EQ, + [34254] = 3, + ACTIONS(1718), 1, + anon_sym_LPAREN, + ACTIONS(1982), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34265] = 3, + ACTIONS(1718), 1, + anon_sym_LPAREN, + ACTIONS(1984), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34276] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(1986), 2, + sym_semi, + ts_builtin_sym_end, + [34285] = 3, + ACTIONS(1718), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34296] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(1990), 1, + sym_identifier, + ACTIONS(1992), 1, + anon_sym_RBRACK, + [34309] = 3, + ACTIONS(1994), 1, + anon_sym_LPAREN, + ACTIONS(1996), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34320] = 3, + ACTIONS(1998), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34331] = 3, + ACTIONS(1994), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34342] = 3, + ACTIONS(1718), 1, + anon_sym_LPAREN, + ACTIONS(2004), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34353] = 3, + ACTIONS(1718), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34364] = 3, + ACTIONS(2008), 1, + anon_sym_LPAREN, + ACTIONS(2010), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34375] = 3, + ACTIONS(1316), 1, + sym_start, + ACTIONS(2008), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34386] = 3, + ACTIONS(2008), 1, + anon_sym_LPAREN, + ACTIONS(2012), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34397] = 3, + ACTIONS(1718), 1, + anon_sym_LPAREN, + ACTIONS(2014), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34408] = 3, + ACTIONS(2008), 1, + anon_sym_LPAREN, + ACTIONS(2016), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34419] = 3, + ACTIONS(1718), 1, + anon_sym_LPAREN, + ACTIONS(2018), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34430] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(2020), 2, + sym_semi, + ts_builtin_sym_end, + [34439] = 2, + ACTIONS(5), 2, + sym__ws, + sym_comment, + ACTIONS(2020), 2, + sym_semi, + sym_end, + [34448] = 3, + ACTIONS(1976), 1, + anon_sym_BQUOTE, + STATE(890), 1, + sym_jsLitString, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34459] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2022), 1, + sym_identifier, + ACTIONS(2024), 1, + anon_sym_RBRACK, + [34472] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2026), 1, + sym_identifier, + ACTIONS(2028), 1, + anon_sym_RBRACK, + [34485] = 2, + ACTIONS(2030), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34493] = 2, + ACTIONS(2032), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34501] = 2, + ACTIONS(2034), 1, anon_sym_else, ACTIONS(5), 2, sym__ws, sym_comment, - [25957] = 2, - ACTIONS(1802), 1, + [34509] = 2, + ACTIONS(2036), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34517] = 2, + ACTIONS(2038), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34525] = 2, + ACTIONS(2040), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34533] = 2, + ACTIONS(2042), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34541] = 2, + ACTIONS(2044), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34549] = 2, + ACTIONS(2046), 1, anon_sym_RBRACE_RBRACE, ACTIONS(5), 2, sym__ws, sym_comment, + [34557] = 2, + ACTIONS(2046), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34565] = 2, + ACTIONS(2048), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34573] = 2, + ACTIONS(2050), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34581] = 2, + ACTIONS(2052), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34589] = 2, + ACTIONS(2048), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34597] = 2, + ACTIONS(2054), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34605] = 2, + ACTIONS(2056), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34613] = 2, + ACTIONS(2058), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34621] = 2, + ACTIONS(2060), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34629] = 2, + ACTIONS(2062), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34637] = 2, + ACTIONS(2062), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34645] = 2, + ACTIONS(2064), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34653] = 2, + ACTIONS(2066), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34661] = 2, + ACTIONS(2068), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34669] = 2, + ACTIONS(2070), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34677] = 2, + ACTIONS(2072), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34685] = 2, + ACTIONS(2074), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34693] = 2, + ACTIONS(2050), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34701] = 2, + ACTIONS(2076), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34709] = 2, + ACTIONS(2078), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34717] = 2, + ACTIONS(2078), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34725] = 2, + ACTIONS(2080), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34733] = 2, + ACTIONS(2082), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34741] = 2, + ACTIONS(2084), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34749] = 2, + ACTIONS(2086), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34757] = 2, + ACTIONS(2088), 1, + ts_builtin_sym_end, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34765] = 2, + ACTIONS(2090), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34773] = 2, + ACTIONS(2086), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34781] = 2, + ACTIONS(2092), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34789] = 2, + ACTIONS(2094), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34797] = 2, + ACTIONS(2094), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34805] = 2, + ACTIONS(2096), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34813] = 2, + ACTIONS(2098), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34821] = 2, + ACTIONS(2100), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34829] = 2, + ACTIONS(2102), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34837] = 2, + ACTIONS(2104), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34845] = 2, + ACTIONS(2106), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34853] = 2, + ACTIONS(2108), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34861] = 2, + ACTIONS(2110), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34869] = 2, + ACTIONS(2112), 1, + anon_sym_of, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2114), 1, + sym_identifier, + [34887] = 2, + ACTIONS(2116), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34895] = 2, + ACTIONS(2118), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34903] = 2, + ACTIONS(2120), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34911] = 2, + ACTIONS(2104), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34919] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2122), 1, + sym_identifier, + [34929] = 2, + ACTIONS(2118), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34937] = 2, + ACTIONS(2124), 1, + anon_sym_of, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34945] = 2, + ACTIONS(2126), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34953] = 2, + ACTIONS(2128), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34961] = 2, + ACTIONS(2130), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34969] = 2, + ACTIONS(2132), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34977] = 2, + ACTIONS(2134), 1, + anon_sym_of, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34985] = 2, + ACTIONS(2136), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [34993] = 2, + ACTIONS(2138), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35001] = 2, + ACTIONS(2140), 1, + anon_sym_of, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35009] = 2, + ACTIONS(2142), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35017] = 2, + ACTIONS(2144), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35025] = 2, + ACTIONS(2146), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35033] = 2, + ACTIONS(2148), 1, + ts_builtin_sym_end, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2150), 1, + sym_identifier, + [35051] = 2, + ACTIONS(2152), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35059] = 2, + ACTIONS(2154), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35067] = 2, + ACTIONS(2156), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35075] = 2, + ACTIONS(2156), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35083] = 2, + ACTIONS(2158), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35091] = 2, + ACTIONS(2160), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35099] = 2, + ACTIONS(2162), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35107] = 2, + ACTIONS(2164), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35115] = 2, + ACTIONS(2166), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2168), 1, + sym_identifier, + [35133] = 2, + ACTIONS(2170), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35141] = 2, + ACTIONS(2170), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2172), 1, + sym_identifier, + [35159] = 2, + ACTIONS(2174), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35167] = 2, + ACTIONS(2176), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35175] = 2, + ACTIONS(2178), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35183] = 2, + ACTIONS(2180), 1, + anon_sym_COLON_EQ, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35191] = 2, + ACTIONS(2182), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35199] = 2, + ACTIONS(2184), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35207] = 2, + ACTIONS(2178), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35215] = 2, + ACTIONS(2186), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35223] = 2, + ACTIONS(2188), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35231] = 2, + ACTIONS(2190), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35239] = 2, + ACTIONS(2190), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35247] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2192), 1, + aux_sym_jsLitString_token1, + [35257] = 2, + ACTIONS(2194), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35265] = 2, + ACTIONS(2196), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35273] = 2, + ACTIONS(2188), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35281] = 2, + ACTIONS(2198), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35289] = 2, + ACTIONS(2200), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35297] = 2, + ACTIONS(2194), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35305] = 2, + ACTIONS(2202), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2204), 1, + sym_identifier, + [35323] = 2, + ACTIONS(2206), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35331] = 2, + ACTIONS(2208), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35339] = 2, + ACTIONS(2210), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35347] = 2, + ACTIONS(2212), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35355] = 2, + ACTIONS(2214), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35363] = 2, + ACTIONS(2216), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35371] = 2, + ACTIONS(2218), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35379] = 2, + ACTIONS(2220), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35387] = 2, + ACTIONS(2220), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2222), 1, + sym_identifier, + [35405] = 2, + ACTIONS(2224), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35413] = 2, + ACTIONS(2226), 1, + anon_sym_where, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35421] = 2, + ACTIONS(2228), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35429] = 2, + ACTIONS(2230), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35437] = 2, + ACTIONS(2232), 1, + sym_number, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35445] = 2, + ACTIONS(2234), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35453] = 2, + ACTIONS(2236), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35461] = 2, + ACTIONS(2238), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35469] = 2, + ACTIONS(2240), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35477] = 2, + ACTIONS(2242), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35485] = 2, + ACTIONS(2244), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35493] = 2, + ACTIONS(2246), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35501] = 2, + ACTIONS(2248), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35509] = 2, + ACTIONS(2250), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35517] = 2, + ACTIONS(2252), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35525] = 2, + ACTIONS(2228), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35533] = 2, + ACTIONS(2254), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35541] = 2, + ACTIONS(2256), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35549] = 2, + ACTIONS(2258), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35557] = 2, + ACTIONS(2260), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35565] = 2, + ACTIONS(2262), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35573] = 2, + ACTIONS(2256), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35581] = 2, + ACTIONS(2264), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35589] = 2, + ACTIONS(2266), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35597] = 2, + ACTIONS(2268), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35605] = 2, + ACTIONS(2270), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35613] = 2, + ACTIONS(2272), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35621] = 2, + ACTIONS(2274), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35629] = 2, + ACTIONS(2276), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35637] = 2, + ACTIONS(2278), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35645] = 2, + ACTIONS(2276), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35653] = 2, + ACTIONS(2280), 1, + anon_sym_COLON_EQ, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2282), 1, + sym_identifier, + [35671] = 2, + ACTIONS(2284), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35679] = 2, + ACTIONS(2286), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35687] = 2, + ACTIONS(2288), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35695] = 2, + ACTIONS(2054), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35703] = 2, + ACTIONS(2290), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35711] = 2, + ACTIONS(2292), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35719] = 2, + ACTIONS(2294), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35727] = 2, + ACTIONS(2296), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35735] = 2, + ACTIONS(2298), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35743] = 2, + ACTIONS(2300), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35751] = 2, + ACTIONS(2294), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35759] = 2, + ACTIONS(2302), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35767] = 2, + ACTIONS(2304), 1, + anon_sym_where, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35775] = 2, + ACTIONS(2306), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35783] = 2, + ACTIONS(2308), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35791] = 2, + ACTIONS(2310), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35799] = 2, + ACTIONS(2312), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35807] = 2, + ACTIONS(2314), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35815] = 2, + ACTIONS(2316), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35823] = 2, + ACTIONS(2318), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35831] = 2, + ACTIONS(2320), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35839] = 2, + ACTIONS(2322), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35847] = 2, + ACTIONS(2324), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35855] = 2, + ACTIONS(2326), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35863] = 2, + ACTIONS(2324), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35871] = 2, + ACTIONS(2328), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35879] = 2, + ACTIONS(2308), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35887] = 2, + ACTIONS(2330), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35895] = 2, + ACTIONS(2332), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35903] = 2, + ACTIONS(2334), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35911] = 2, + ACTIONS(2336), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35919] = 2, + ACTIONS(2338), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2340), 1, + sym_identifier, + [35937] = 2, + ACTIONS(2342), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35945] = 2, + ACTIONS(2344), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35953] = 2, + ACTIONS(2346), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2348), 1, + sym_identifier, + [35971] = 2, + ACTIONS(2350), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35979] = 2, + ACTIONS(2352), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35987] = 2, + ACTIONS(2354), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [35995] = 2, + ACTIONS(2356), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36003] = 2, + ACTIONS(2358), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36011] = 2, + ACTIONS(2360), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36019] = 2, + ACTIONS(2362), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36027] = 2, + ACTIONS(2364), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36035] = 2, + ACTIONS(2366), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36043] = 2, + ACTIONS(2368), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36051] = 2, + ACTIONS(2370), 1, + anon_sym_then, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2372), 1, + sym_identifier, + [36069] = 2, + ACTIONS(2374), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36077] = 2, + ACTIONS(2376), 1, + anon_sym_where, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36085] = 2, + ACTIONS(2378), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36093] = 2, + ACTIONS(2380), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36101] = 2, + ACTIONS(2382), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36109] = 2, + ACTIONS(2384), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36117] = 2, + ACTIONS(2386), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36125] = 2, + ACTIONS(2388), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36133] = 2, + ACTIONS(2390), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36141] = 2, + ACTIONS(2390), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2392), 1, + sym_identifier, + [36159] = 2, + ACTIONS(2394), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36167] = 2, + ACTIONS(2396), 1, + sym_start, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36175] = 2, + ACTIONS(2398), 1, + anon_sym_in, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36183] = 2, + ACTIONS(2400), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36191] = 2, + ACTIONS(2400), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36199] = 2, + ACTIONS(2402), 1, + anon_sym_else, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36207] = 2, + ACTIONS(2404), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36215] = 2, + ACTIONS(2404), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36223] = 2, + ACTIONS(2406), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, + [36231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__ws, + ACTIONS(2408), 1, + sym_identifier, + [36241] = 2, + ACTIONS(2410), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__ws, + sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, - [SMALL_STATE(3)] = 73, - [SMALL_STATE(4)] = 140, - [SMALL_STATE(5)] = 210, - [SMALL_STATE(6)] = 280, - [SMALL_STATE(7)] = 350, - [SMALL_STATE(8)] = 420, - [SMALL_STATE(9)] = 490, - [SMALL_STATE(10)] = 560, - [SMALL_STATE(11)] = 630, - [SMALL_STATE(12)] = 700, - [SMALL_STATE(13)] = 770, - [SMALL_STATE(14)] = 840, - [SMALL_STATE(15)] = 910, - [SMALL_STATE(16)] = 980, - [SMALL_STATE(17)] = 1050, - [SMALL_STATE(18)] = 1115, - [SMALL_STATE(19)] = 1180, - [SMALL_STATE(20)] = 1245, - [SMALL_STATE(21)] = 1310, - [SMALL_STATE(22)] = 1375, - [SMALL_STATE(23)] = 1440, - [SMALL_STATE(24)] = 1505, - [SMALL_STATE(25)] = 1570, - [SMALL_STATE(26)] = 1635, - [SMALL_STATE(27)] = 1700, - [SMALL_STATE(28)] = 1765, - [SMALL_STATE(29)] = 1830, - [SMALL_STATE(30)] = 1895, - [SMALL_STATE(31)] = 1960, - [SMALL_STATE(32)] = 2025, - [SMALL_STATE(33)] = 2090, - [SMALL_STATE(34)] = 2155, - [SMALL_STATE(35)] = 2220, - [SMALL_STATE(36)] = 2285, - [SMALL_STATE(37)] = 2350, - [SMALL_STATE(38)] = 2415, - [SMALL_STATE(39)] = 2480, - [SMALL_STATE(40)] = 2545, - [SMALL_STATE(41)] = 2610, - [SMALL_STATE(42)] = 2675, - [SMALL_STATE(43)] = 2740, - [SMALL_STATE(44)] = 2805, - [SMALL_STATE(45)] = 2870, - [SMALL_STATE(46)] = 2935, - [SMALL_STATE(47)] = 3000, - [SMALL_STATE(48)] = 3065, - [SMALL_STATE(49)] = 3130, - [SMALL_STATE(50)] = 3195, - [SMALL_STATE(51)] = 3260, - [SMALL_STATE(52)] = 3325, - [SMALL_STATE(53)] = 3390, - [SMALL_STATE(54)] = 3455, - [SMALL_STATE(55)] = 3520, - [SMALL_STATE(56)] = 3585, - [SMALL_STATE(57)] = 3650, - [SMALL_STATE(58)] = 3715, - [SMALL_STATE(59)] = 3780, - [SMALL_STATE(60)] = 3845, - [SMALL_STATE(61)] = 3910, - [SMALL_STATE(62)] = 3975, - [SMALL_STATE(63)] = 4040, - [SMALL_STATE(64)] = 4105, - [SMALL_STATE(65)] = 4170, - [SMALL_STATE(66)] = 4235, - [SMALL_STATE(67)] = 4300, - [SMALL_STATE(68)] = 4365, - [SMALL_STATE(69)] = 4430, - [SMALL_STATE(70)] = 4495, - [SMALL_STATE(71)] = 4560, - [SMALL_STATE(72)] = 4625, - [SMALL_STATE(73)] = 4690, - [SMALL_STATE(74)] = 4755, - [SMALL_STATE(75)] = 4820, - [SMALL_STATE(76)] = 4885, - [SMALL_STATE(77)] = 4950, - [SMALL_STATE(78)] = 5015, - [SMALL_STATE(79)] = 5080, - [SMALL_STATE(80)] = 5145, - [SMALL_STATE(81)] = 5210, - [SMALL_STATE(82)] = 5275, - [SMALL_STATE(83)] = 5340, - [SMALL_STATE(84)] = 5405, - [SMALL_STATE(85)] = 5470, - [SMALL_STATE(86)] = 5535, - [SMALL_STATE(87)] = 5600, - [SMALL_STATE(88)] = 5665, - [SMALL_STATE(89)] = 5730, - [SMALL_STATE(90)] = 5795, - [SMALL_STATE(91)] = 5860, - [SMALL_STATE(92)] = 5925, - [SMALL_STATE(93)] = 5990, - [SMALL_STATE(94)] = 6055, - [SMALL_STATE(95)] = 6120, - [SMALL_STATE(96)] = 6185, - [SMALL_STATE(97)] = 6250, - [SMALL_STATE(98)] = 6315, - [SMALL_STATE(99)] = 6380, - [SMALL_STATE(100)] = 6445, - [SMALL_STATE(101)] = 6510, - [SMALL_STATE(102)] = 6575, - [SMALL_STATE(103)] = 6640, - [SMALL_STATE(104)] = 6705, - [SMALL_STATE(105)] = 6770, - [SMALL_STATE(106)] = 6835, - [SMALL_STATE(107)] = 6900, - [SMALL_STATE(108)] = 6965, - [SMALL_STATE(109)] = 7030, - [SMALL_STATE(110)] = 7095, - [SMALL_STATE(111)] = 7160, - [SMALL_STATE(112)] = 7225, - [SMALL_STATE(113)] = 7290, - [SMALL_STATE(114)] = 7355, - [SMALL_STATE(115)] = 7420, - [SMALL_STATE(116)] = 7485, - [SMALL_STATE(117)] = 7550, - [SMALL_STATE(118)] = 7615, - [SMALL_STATE(119)] = 7680, - [SMALL_STATE(120)] = 7745, - [SMALL_STATE(121)] = 7810, - [SMALL_STATE(122)] = 7875, - [SMALL_STATE(123)] = 7940, - [SMALL_STATE(124)] = 8005, - [SMALL_STATE(125)] = 8070, - [SMALL_STATE(126)] = 8135, - [SMALL_STATE(127)] = 8200, - [SMALL_STATE(128)] = 8265, - [SMALL_STATE(129)] = 8330, - [SMALL_STATE(130)] = 8395, - [SMALL_STATE(131)] = 8460, - [SMALL_STATE(132)] = 8525, - [SMALL_STATE(133)] = 8590, - [SMALL_STATE(134)] = 8655, - [SMALL_STATE(135)] = 8720, - [SMALL_STATE(136)] = 8785, - [SMALL_STATE(137)] = 8850, - [SMALL_STATE(138)] = 8915, - [SMALL_STATE(139)] = 8980, - [SMALL_STATE(140)] = 9045, - [SMALL_STATE(141)] = 9110, - [SMALL_STATE(142)] = 9175, - [SMALL_STATE(143)] = 9240, - [SMALL_STATE(144)] = 9305, - [SMALL_STATE(145)] = 9370, - [SMALL_STATE(146)] = 9435, - [SMALL_STATE(147)] = 9500, - [SMALL_STATE(148)] = 9565, - [SMALL_STATE(149)] = 9630, - [SMALL_STATE(150)] = 9684, - [SMALL_STATE(151)] = 9732, - [SMALL_STATE(152)] = 9774, - [SMALL_STATE(153)] = 9816, - [SMALL_STATE(154)] = 9858, - [SMALL_STATE(155)] = 9903, - [SMALL_STATE(156)] = 9948, - [SMALL_STATE(157)] = 9989, - [SMALL_STATE(158)] = 10030, - [SMALL_STATE(159)] = 10071, - [SMALL_STATE(160)] = 10112, - [SMALL_STATE(161)] = 10153, - [SMALL_STATE(162)] = 10194, - [SMALL_STATE(163)] = 10235, - [SMALL_STATE(164)] = 10276, - [SMALL_STATE(165)] = 10317, - [SMALL_STATE(166)] = 10358, - [SMALL_STATE(167)] = 10399, - [SMALL_STATE(168)] = 10440, - [SMALL_STATE(169)] = 10485, - [SMALL_STATE(170)] = 10530, - [SMALL_STATE(171)] = 10575, - [SMALL_STATE(172)] = 10620, - [SMALL_STATE(173)] = 10665, - [SMALL_STATE(174)] = 10710, - [SMALL_STATE(175)] = 10755, - [SMALL_STATE(176)] = 10800, - [SMALL_STATE(177)] = 10845, - [SMALL_STATE(178)] = 10890, - [SMALL_STATE(179)] = 10935, - [SMALL_STATE(180)] = 10980, - [SMALL_STATE(181)] = 11025, - [SMALL_STATE(182)] = 11070, - [SMALL_STATE(183)] = 11115, - [SMALL_STATE(184)] = 11160, - [SMALL_STATE(185)] = 11205, - [SMALL_STATE(186)] = 11250, - [SMALL_STATE(187)] = 11295, - [SMALL_STATE(188)] = 11340, - [SMALL_STATE(189)] = 11385, - [SMALL_STATE(190)] = 11430, - [SMALL_STATE(191)] = 11475, - [SMALL_STATE(192)] = 11520, - [SMALL_STATE(193)] = 11565, - [SMALL_STATE(194)] = 11610, - [SMALL_STATE(195)] = 11655, - [SMALL_STATE(196)] = 11700, - [SMALL_STATE(197)] = 11745, - [SMALL_STATE(198)] = 11790, - [SMALL_STATE(199)] = 11835, - [SMALL_STATE(200)] = 11880, - [SMALL_STATE(201)] = 11925, - [SMALL_STATE(202)] = 11970, - [SMALL_STATE(203)] = 12015, - [SMALL_STATE(204)] = 12060, - [SMALL_STATE(205)] = 12105, - [SMALL_STATE(206)] = 12150, - [SMALL_STATE(207)] = 12195, - [SMALL_STATE(208)] = 12240, - [SMALL_STATE(209)] = 12285, - [SMALL_STATE(210)] = 12330, - [SMALL_STATE(211)] = 12375, - [SMALL_STATE(212)] = 12420, - [SMALL_STATE(213)] = 12465, - [SMALL_STATE(214)] = 12510, - [SMALL_STATE(215)] = 12555, - [SMALL_STATE(216)] = 12600, - [SMALL_STATE(217)] = 12645, - [SMALL_STATE(218)] = 12690, - [SMALL_STATE(219)] = 12735, - [SMALL_STATE(220)] = 12780, - [SMALL_STATE(221)] = 12825, - [SMALL_STATE(222)] = 12870, - [SMALL_STATE(223)] = 12915, - [SMALL_STATE(224)] = 12960, - [SMALL_STATE(225)] = 13005, - [SMALL_STATE(226)] = 13050, - [SMALL_STATE(227)] = 13095, - [SMALL_STATE(228)] = 13140, - [SMALL_STATE(229)] = 13185, - [SMALL_STATE(230)] = 13230, - [SMALL_STATE(231)] = 13275, - [SMALL_STATE(232)] = 13320, - [SMALL_STATE(233)] = 13365, - [SMALL_STATE(234)] = 13410, - [SMALL_STATE(235)] = 13455, - [SMALL_STATE(236)] = 13500, - [SMALL_STATE(237)] = 13545, - [SMALL_STATE(238)] = 13590, - [SMALL_STATE(239)] = 13635, - [SMALL_STATE(240)] = 13680, - [SMALL_STATE(241)] = 13725, - [SMALL_STATE(242)] = 13770, - [SMALL_STATE(243)] = 13815, - [SMALL_STATE(244)] = 13860, - [SMALL_STATE(245)] = 13905, - [SMALL_STATE(246)] = 13950, - [SMALL_STATE(247)] = 13995, - [SMALL_STATE(248)] = 14040, - [SMALL_STATE(249)] = 14085, - [SMALL_STATE(250)] = 14130, - [SMALL_STATE(251)] = 14175, - [SMALL_STATE(252)] = 14220, - [SMALL_STATE(253)] = 14265, - [SMALL_STATE(254)] = 14310, - [SMALL_STATE(255)] = 14355, - [SMALL_STATE(256)] = 14400, - [SMALL_STATE(257)] = 14445, - [SMALL_STATE(258)] = 14490, - [SMALL_STATE(259)] = 14535, - [SMALL_STATE(260)] = 14580, - [SMALL_STATE(261)] = 14625, - [SMALL_STATE(262)] = 14670, - [SMALL_STATE(263)] = 14715, - [SMALL_STATE(264)] = 14760, - [SMALL_STATE(265)] = 14805, - [SMALL_STATE(266)] = 14850, - [SMALL_STATE(267)] = 14895, - [SMALL_STATE(268)] = 14940, - [SMALL_STATE(269)] = 14985, - [SMALL_STATE(270)] = 15030, - [SMALL_STATE(271)] = 15075, - [SMALL_STATE(272)] = 15120, - [SMALL_STATE(273)] = 15160, - [SMALL_STATE(274)] = 15200, - [SMALL_STATE(275)] = 15240, - [SMALL_STATE(276)] = 15280, - [SMALL_STATE(277)] = 15320, - [SMALL_STATE(278)] = 15360, - [SMALL_STATE(279)] = 15399, - [SMALL_STATE(280)] = 15436, - [SMALL_STATE(281)] = 15475, - [SMALL_STATE(282)] = 15512, - [SMALL_STATE(283)] = 15549, - [SMALL_STATE(284)] = 15588, - [SMALL_STATE(285)] = 15625, - [SMALL_STATE(286)] = 15664, - [SMALL_STATE(287)] = 15703, - [SMALL_STATE(288)] = 15742, - [SMALL_STATE(289)] = 15779, - [SMALL_STATE(290)] = 15816, - [SMALL_STATE(291)] = 15853, - [SMALL_STATE(292)] = 15890, - [SMALL_STATE(293)] = 15929, - [SMALL_STATE(294)] = 15968, - [SMALL_STATE(295)] = 16007, - [SMALL_STATE(296)] = 16044, - [SMALL_STATE(297)] = 16081, - [SMALL_STATE(298)] = 16118, - [SMALL_STATE(299)] = 16155, - [SMALL_STATE(300)] = 16194, - [SMALL_STATE(301)] = 16233, - [SMALL_STATE(302)] = 16270, - [SMALL_STATE(303)] = 16307, - [SMALL_STATE(304)] = 16344, - [SMALL_STATE(305)] = 16383, - [SMALL_STATE(306)] = 16409, - [SMALL_STATE(307)] = 16447, - [SMALL_STATE(308)] = 16485, - [SMALL_STATE(309)] = 16511, - [SMALL_STATE(310)] = 16537, - [SMALL_STATE(311)] = 16575, - [SMALL_STATE(312)] = 16601, - [SMALL_STATE(313)] = 16627, - [SMALL_STATE(314)] = 16652, - [SMALL_STATE(315)] = 16687, - [SMALL_STATE(316)] = 16722, - [SMALL_STATE(317)] = 16747, - [SMALL_STATE(318)] = 16782, - [SMALL_STATE(319)] = 16807, - [SMALL_STATE(320)] = 16832, - [SMALL_STATE(321)] = 16857, - [SMALL_STATE(322)] = 16882, - [SMALL_STATE(323)] = 16907, - [SMALL_STATE(324)] = 16932, - [SMALL_STATE(325)] = 16957, - [SMALL_STATE(326)] = 16982, - [SMALL_STATE(327)] = 17007, - [SMALL_STATE(328)] = 17032, - [SMALL_STATE(329)] = 17057, - [SMALL_STATE(330)] = 17092, - [SMALL_STATE(331)] = 17127, - [SMALL_STATE(332)] = 17162, - [SMALL_STATE(333)] = 17187, - [SMALL_STATE(334)] = 17222, - [SMALL_STATE(335)] = 17257, - [SMALL_STATE(336)] = 17282, - [SMALL_STATE(337)] = 17317, - [SMALL_STATE(338)] = 17342, - [SMALL_STATE(339)] = 17367, - [SMALL_STATE(340)] = 17392, - [SMALL_STATE(341)] = 17417, - [SMALL_STATE(342)] = 17442, - [SMALL_STATE(343)] = 17468, - [SMALL_STATE(344)] = 17492, - [SMALL_STATE(345)] = 17516, - [SMALL_STATE(346)] = 17550, - [SMALL_STATE(347)] = 17584, - [SMALL_STATE(348)] = 17608, - [SMALL_STATE(349)] = 17632, - [SMALL_STATE(350)] = 17656, - [SMALL_STATE(351)] = 17690, - [SMALL_STATE(352)] = 17714, - [SMALL_STATE(353)] = 17748, - [SMALL_STATE(354)] = 17772, - [SMALL_STATE(355)] = 17806, - [SMALL_STATE(356)] = 17830, - [SMALL_STATE(357)] = 17864, - [SMALL_STATE(358)] = 17888, - [SMALL_STATE(359)] = 17922, - [SMALL_STATE(360)] = 17946, - [SMALL_STATE(361)] = 17977, - [SMALL_STATE(362)] = 18000, - [SMALL_STATE(363)] = 18023, - [SMALL_STATE(364)] = 18046, - [SMALL_STATE(365)] = 18069, - [SMALL_STATE(366)] = 18092, - [SMALL_STATE(367)] = 18115, - [SMALL_STATE(368)] = 18138, - [SMALL_STATE(369)] = 18161, - [SMALL_STATE(370)] = 18184, - [SMALL_STATE(371)] = 18207, - [SMALL_STATE(372)] = 18226, - [SMALL_STATE(373)] = 18249, - [SMALL_STATE(374)] = 18272, - [SMALL_STATE(375)] = 18295, - [SMALL_STATE(376)] = 18318, - [SMALL_STATE(377)] = 18341, - [SMALL_STATE(378)] = 18364, - [SMALL_STATE(379)] = 18387, - [SMALL_STATE(380)] = 18410, - [SMALL_STATE(381)] = 18433, - [SMALL_STATE(382)] = 18452, - [SMALL_STATE(383)] = 18471, - [SMALL_STATE(384)] = 18494, - [SMALL_STATE(385)] = 18517, - [SMALL_STATE(386)] = 18548, - [SMALL_STATE(387)] = 18571, - [SMALL_STATE(388)] = 18594, - [SMALL_STATE(389)] = 18617, - [SMALL_STATE(390)] = 18640, - [SMALL_STATE(391)] = 18663, - [SMALL_STATE(392)] = 18686, - [SMALL_STATE(393)] = 18705, - [SMALL_STATE(394)] = 18728, - [SMALL_STATE(395)] = 18747, - [SMALL_STATE(396)] = 18766, - [SMALL_STATE(397)] = 18789, - [SMALL_STATE(398)] = 18812, - [SMALL_STATE(399)] = 18831, - [SMALL_STATE(400)] = 18854, - [SMALL_STATE(401)] = 18877, - [SMALL_STATE(402)] = 18900, - [SMALL_STATE(403)] = 18919, - [SMALL_STATE(404)] = 18942, - [SMALL_STATE(405)] = 18965, - [SMALL_STATE(406)] = 18984, - [SMALL_STATE(407)] = 19003, - [SMALL_STATE(408)] = 19026, - [SMALL_STATE(409)] = 19049, - [SMALL_STATE(410)] = 19072, - [SMALL_STATE(411)] = 19095, - [SMALL_STATE(412)] = 19118, - [SMALL_STATE(413)] = 19141, - [SMALL_STATE(414)] = 19164, - [SMALL_STATE(415)] = 19187, - [SMALL_STATE(416)] = 19210, - [SMALL_STATE(417)] = 19241, - [SMALL_STATE(418)] = 19264, - [SMALL_STATE(419)] = 19286, - [SMALL_STATE(420)] = 19308, - [SMALL_STATE(421)] = 19330, - [SMALL_STATE(422)] = 19352, - [SMALL_STATE(423)] = 19374, - [SMALL_STATE(424)] = 19406, - [SMALL_STATE(425)] = 19427, - [SMALL_STATE(426)] = 19448, - [SMALL_STATE(427)] = 19469, - [SMALL_STATE(428)] = 19492, - [SMALL_STATE(429)] = 19513, - [SMALL_STATE(430)] = 19534, - [SMALL_STATE(431)] = 19555, - [SMALL_STATE(432)] = 19576, - [SMALL_STATE(433)] = 19597, - [SMALL_STATE(434)] = 19618, - [SMALL_STATE(435)] = 19639, - [SMALL_STATE(436)] = 19660, - [SMALL_STATE(437)] = 19681, - [SMALL_STATE(438)] = 19702, - [SMALL_STATE(439)] = 19725, - [SMALL_STATE(440)] = 19746, - [SMALL_STATE(441)] = 19767, - [SMALL_STATE(442)] = 19787, - [SMALL_STATE(443)] = 19807, - [SMALL_STATE(444)] = 19827, - [SMALL_STATE(445)] = 19847, - [SMALL_STATE(446)] = 19867, - [SMALL_STATE(447)] = 19887, - [SMALL_STATE(448)] = 19907, - [SMALL_STATE(449)] = 19927, - [SMALL_STATE(450)] = 19947, - [SMALL_STATE(451)] = 19966, - [SMALL_STATE(452)] = 19991, - [SMALL_STATE(453)] = 20006, - [SMALL_STATE(454)] = 20021, - [SMALL_STATE(455)] = 20036, - [SMALL_STATE(456)] = 20051, - [SMALL_STATE(457)] = 20066, - [SMALL_STATE(458)] = 20085, - [SMALL_STATE(459)] = 20110, - [SMALL_STATE(460)] = 20135, - [SMALL_STATE(461)] = 20150, - [SMALL_STATE(462)] = 20175, - [SMALL_STATE(463)] = 20200, - [SMALL_STATE(464)] = 20225, - [SMALL_STATE(465)] = 20250, - [SMALL_STATE(466)] = 20275, - [SMALL_STATE(467)] = 20290, - [SMALL_STATE(468)] = 20315, - [SMALL_STATE(469)] = 20340, - [SMALL_STATE(470)] = 20355, - [SMALL_STATE(471)] = 20380, - [SMALL_STATE(472)] = 20395, - [SMALL_STATE(473)] = 20420, - [SMALL_STATE(474)] = 20435, - [SMALL_STATE(475)] = 20460, - [SMALL_STATE(476)] = 20478, - [SMALL_STATE(477)] = 20500, - [SMALL_STATE(478)] = 20518, - [SMALL_STATE(479)] = 20536, - [SMALL_STATE(480)] = 20554, - [SMALL_STATE(481)] = 20572, - [SMALL_STATE(482)] = 20590, - [SMALL_STATE(483)] = 20616, - [SMALL_STATE(484)] = 20634, - [SMALL_STATE(485)] = 20652, - [SMALL_STATE(486)] = 20678, - [SMALL_STATE(487)] = 20693, - [SMALL_STATE(488)] = 20710, - [SMALL_STATE(489)] = 20723, - [SMALL_STATE(490)] = 20736, - [SMALL_STATE(491)] = 20751, - [SMALL_STATE(492)] = 20764, - [SMALL_STATE(493)] = 20777, - [SMALL_STATE(494)] = 20790, - [SMALL_STATE(495)] = 20803, - [SMALL_STATE(496)] = 20820, - [SMALL_STATE(497)] = 20833, - [SMALL_STATE(498)] = 20846, - [SMALL_STATE(499)] = 20861, - [SMALL_STATE(500)] = 20874, - [SMALL_STATE(501)] = 20891, - [SMALL_STATE(502)] = 20904, - [SMALL_STATE(503)] = 20921, - [SMALL_STATE(504)] = 20937, - [SMALL_STATE(505)] = 20953, - [SMALL_STATE(506)] = 20969, - [SMALL_STATE(507)] = 20985, - [SMALL_STATE(508)] = 21001, - [SMALL_STATE(509)] = 21017, - [SMALL_STATE(510)] = 21033, - [SMALL_STATE(511)] = 21049, - [SMALL_STATE(512)] = 21065, - [SMALL_STATE(513)] = 21081, - [SMALL_STATE(514)] = 21097, - [SMALL_STATE(515)] = 21113, - [SMALL_STATE(516)] = 21129, - [SMALL_STATE(517)] = 21145, - [SMALL_STATE(518)] = 21161, - [SMALL_STATE(519)] = 21177, - [SMALL_STATE(520)] = 21193, - [SMALL_STATE(521)] = 21209, - [SMALL_STATE(522)] = 21225, - [SMALL_STATE(523)] = 21241, - [SMALL_STATE(524)] = 21258, - [SMALL_STATE(525)] = 21269, - [SMALL_STATE(526)] = 21280, - [SMALL_STATE(527)] = 21297, - [SMALL_STATE(528)] = 21312, - [SMALL_STATE(529)] = 21331, - [SMALL_STATE(530)] = 21348, - [SMALL_STATE(531)] = 21359, - [SMALL_STATE(532)] = 21376, - [SMALL_STATE(533)] = 21391, - [SMALL_STATE(534)] = 21402, - [SMALL_STATE(535)] = 21419, - [SMALL_STATE(536)] = 21434, - [SMALL_STATE(537)] = 21449, - [SMALL_STATE(538)] = 21466, - [SMALL_STATE(539)] = 21481, - [SMALL_STATE(540)] = 21496, - [SMALL_STATE(541)] = 21511, - [SMALL_STATE(542)] = 21522, - [SMALL_STATE(543)] = 21537, - [SMALL_STATE(544)] = 21548, - [SMALL_STATE(545)] = 21563, - [SMALL_STATE(546)] = 21578, - [SMALL_STATE(547)] = 21593, - [SMALL_STATE(548)] = 21604, - [SMALL_STATE(549)] = 21615, - [SMALL_STATE(550)] = 21632, - [SMALL_STATE(551)] = 21643, - [SMALL_STATE(552)] = 21654, - [SMALL_STATE(553)] = 21669, - [SMALL_STATE(554)] = 21683, - [SMALL_STATE(555)] = 21697, - [SMALL_STATE(556)] = 21711, - [SMALL_STATE(557)] = 21725, - [SMALL_STATE(558)] = 21739, - [SMALL_STATE(559)] = 21753, - [SMALL_STATE(560)] = 21767, - [SMALL_STATE(561)] = 21781, - [SMALL_STATE(562)] = 21791, - [SMALL_STATE(563)] = 21805, - [SMALL_STATE(564)] = 21819, - [SMALL_STATE(565)] = 21833, - [SMALL_STATE(566)] = 21847, - [SMALL_STATE(567)] = 21861, - [SMALL_STATE(568)] = 21875, - [SMALL_STATE(569)] = 21889, - [SMALL_STATE(570)] = 21903, - [SMALL_STATE(571)] = 21913, - [SMALL_STATE(572)] = 21927, - [SMALL_STATE(573)] = 21941, - [SMALL_STATE(574)] = 21955, - [SMALL_STATE(575)] = 21969, - [SMALL_STATE(576)] = 21981, - [SMALL_STATE(577)] = 21995, - [SMALL_STATE(578)] = 22009, - [SMALL_STATE(579)] = 22025, - [SMALL_STATE(580)] = 22039, - [SMALL_STATE(581)] = 22053, - [SMALL_STATE(582)] = 22067, - [SMALL_STATE(583)] = 22081, - [SMALL_STATE(584)] = 22095, - [SMALL_STATE(585)] = 22109, - [SMALL_STATE(586)] = 22125, - [SMALL_STATE(587)] = 22139, - [SMALL_STATE(588)] = 22153, - [SMALL_STATE(589)] = 22169, - [SMALL_STATE(590)] = 22185, - [SMALL_STATE(591)] = 22199, - [SMALL_STATE(592)] = 22213, - [SMALL_STATE(593)] = 22225, - [SMALL_STATE(594)] = 22239, - [SMALL_STATE(595)] = 22255, - [SMALL_STATE(596)] = 22271, - [SMALL_STATE(597)] = 22281, - [SMALL_STATE(598)] = 22295, - [SMALL_STATE(599)] = 22309, - [SMALL_STATE(600)] = 22323, - [SMALL_STATE(601)] = 22339, - [SMALL_STATE(602)] = 22353, - [SMALL_STATE(603)] = 22369, - [SMALL_STATE(604)] = 22385, - [SMALL_STATE(605)] = 22401, - [SMALL_STATE(606)] = 22415, - [SMALL_STATE(607)] = 22431, - [SMALL_STATE(608)] = 22447, - [SMALL_STATE(609)] = 22461, - [SMALL_STATE(610)] = 22475, - [SMALL_STATE(611)] = 22491, - [SMALL_STATE(612)] = 22505, - [SMALL_STATE(613)] = 22519, - [SMALL_STATE(614)] = 22535, - [SMALL_STATE(615)] = 22551, - [SMALL_STATE(616)] = 22567, - [SMALL_STATE(617)] = 22579, - [SMALL_STATE(618)] = 22595, - [SMALL_STATE(619)] = 22611, - [SMALL_STATE(620)] = 22627, - [SMALL_STATE(621)] = 22643, - [SMALL_STATE(622)] = 22657, - [SMALL_STATE(623)] = 22671, - [SMALL_STATE(624)] = 22685, - [SMALL_STATE(625)] = 22701, - [SMALL_STATE(626)] = 22717, - [SMALL_STATE(627)] = 22731, - [SMALL_STATE(628)] = 22745, - [SMALL_STATE(629)] = 22759, - [SMALL_STATE(630)] = 22773, - [SMALL_STATE(631)] = 22789, - [SMALL_STATE(632)] = 22805, - [SMALL_STATE(633)] = 22819, - [SMALL_STATE(634)] = 22833, - [SMALL_STATE(635)] = 22847, - [SMALL_STATE(636)] = 22861, - [SMALL_STATE(637)] = 22877, - [SMALL_STATE(638)] = 22893, - [SMALL_STATE(639)] = 22907, - [SMALL_STATE(640)] = 22923, - [SMALL_STATE(641)] = 22937, - [SMALL_STATE(642)] = 22951, - [SMALL_STATE(643)] = 22967, - [SMALL_STATE(644)] = 22983, - [SMALL_STATE(645)] = 22997, - [SMALL_STATE(646)] = 23011, - [SMALL_STATE(647)] = 23025, - [SMALL_STATE(648)] = 23041, - [SMALL_STATE(649)] = 23057, - [SMALL_STATE(650)] = 23071, - [SMALL_STATE(651)] = 23087, - [SMALL_STATE(652)] = 23103, - [SMALL_STATE(653)] = 23119, - [SMALL_STATE(654)] = 23133, - [SMALL_STATE(655)] = 23147, - [SMALL_STATE(656)] = 23161, - [SMALL_STATE(657)] = 23175, - [SMALL_STATE(658)] = 23189, - [SMALL_STATE(659)] = 23203, - [SMALL_STATE(660)] = 23219, - [SMALL_STATE(661)] = 23233, - [SMALL_STATE(662)] = 23247, - [SMALL_STATE(663)] = 23261, - [SMALL_STATE(664)] = 23275, - [SMALL_STATE(665)] = 23289, - [SMALL_STATE(666)] = 23303, - [SMALL_STATE(667)] = 23317, - [SMALL_STATE(668)] = 23331, - [SMALL_STATE(669)] = 23345, - [SMALL_STATE(670)] = 23359, - [SMALL_STATE(671)] = 23373, - [SMALL_STATE(672)] = 23387, - [SMALL_STATE(673)] = 23401, - [SMALL_STATE(674)] = 23415, - [SMALL_STATE(675)] = 23429, - [SMALL_STATE(676)] = 23442, - [SMALL_STATE(677)] = 23455, - [SMALL_STATE(678)] = 23464, - [SMALL_STATE(679)] = 23477, - [SMALL_STATE(680)] = 23486, - [SMALL_STATE(681)] = 23499, - [SMALL_STATE(682)] = 23510, - [SMALL_STATE(683)] = 23519, - [SMALL_STATE(684)] = 23532, - [SMALL_STATE(685)] = 23545, - [SMALL_STATE(686)] = 23558, - [SMALL_STATE(687)] = 23567, - [SMALL_STATE(688)] = 23580, - [SMALL_STATE(689)] = 23591, - [SMALL_STATE(690)] = 23600, - [SMALL_STATE(691)] = 23609, - [SMALL_STATE(692)] = 23622, - [SMALL_STATE(693)] = 23635, - [SMALL_STATE(694)] = 23644, - [SMALL_STATE(695)] = 23653, - [SMALL_STATE(696)] = 23662, - [SMALL_STATE(697)] = 23675, - [SMALL_STATE(698)] = 23688, - [SMALL_STATE(699)] = 23701, - [SMALL_STATE(700)] = 23710, - [SMALL_STATE(701)] = 23723, - [SMALL_STATE(702)] = 23736, - [SMALL_STATE(703)] = 23745, - [SMALL_STATE(704)] = 23754, - [SMALL_STATE(705)] = 23763, - [SMALL_STATE(706)] = 23776, - [SMALL_STATE(707)] = 23785, - [SMALL_STATE(708)] = 23794, - [SMALL_STATE(709)] = 23803, - [SMALL_STATE(710)] = 23816, - [SMALL_STATE(711)] = 23829, - [SMALL_STATE(712)] = 23838, - [SMALL_STATE(713)] = 23851, - [SMALL_STATE(714)] = 23864, - [SMALL_STATE(715)] = 23875, - [SMALL_STATE(716)] = 23888, - [SMALL_STATE(717)] = 23901, - [SMALL_STATE(718)] = 23914, - [SMALL_STATE(719)] = 23927, - [SMALL_STATE(720)] = 23936, - [SMALL_STATE(721)] = 23945, - [SMALL_STATE(722)] = 23954, - [SMALL_STATE(723)] = 23967, - [SMALL_STATE(724)] = 23980, - [SMALL_STATE(725)] = 23993, - [SMALL_STATE(726)] = 24002, - [SMALL_STATE(727)] = 24015, - [SMALL_STATE(728)] = 24028, - [SMALL_STATE(729)] = 24037, - [SMALL_STATE(730)] = 24046, - [SMALL_STATE(731)] = 24059, - [SMALL_STATE(732)] = 24072, - [SMALL_STATE(733)] = 24081, - [SMALL_STATE(734)] = 24094, - [SMALL_STATE(735)] = 24103, - [SMALL_STATE(736)] = 24114, - [SMALL_STATE(737)] = 24127, - [SMALL_STATE(738)] = 24140, - [SMALL_STATE(739)] = 24149, - [SMALL_STATE(740)] = 24158, - [SMALL_STATE(741)] = 24171, - [SMALL_STATE(742)] = 24184, - [SMALL_STATE(743)] = 24193, - [SMALL_STATE(744)] = 24202, - [SMALL_STATE(745)] = 24215, - [SMALL_STATE(746)] = 24228, - [SMALL_STATE(747)] = 24237, - [SMALL_STATE(748)] = 24250, - [SMALL_STATE(749)] = 24263, - [SMALL_STATE(750)] = 24276, - [SMALL_STATE(751)] = 24285, - [SMALL_STATE(752)] = 24294, - [SMALL_STATE(753)] = 24307, - [SMALL_STATE(754)] = 24320, - [SMALL_STATE(755)] = 24329, - [SMALL_STATE(756)] = 24338, - [SMALL_STATE(757)] = 24351, - [SMALL_STATE(758)] = 24364, - [SMALL_STATE(759)] = 24373, - [SMALL_STATE(760)] = 24386, - [SMALL_STATE(761)] = 24399, - [SMALL_STATE(762)] = 24412, - [SMALL_STATE(763)] = 24421, - [SMALL_STATE(764)] = 24434, - [SMALL_STATE(765)] = 24447, - [SMALL_STATE(766)] = 24456, - [SMALL_STATE(767)] = 24465, - [SMALL_STATE(768)] = 24474, - [SMALL_STATE(769)] = 24483, - [SMALL_STATE(770)] = 24492, - [SMALL_STATE(771)] = 24505, - [SMALL_STATE(772)] = 24514, - [SMALL_STATE(773)] = 24523, - [SMALL_STATE(774)] = 24532, - [SMALL_STATE(775)] = 24545, - [SMALL_STATE(776)] = 24554, - [SMALL_STATE(777)] = 24563, - [SMALL_STATE(778)] = 24572, - [SMALL_STATE(779)] = 24581, - [SMALL_STATE(780)] = 24590, - [SMALL_STATE(781)] = 24599, - [SMALL_STATE(782)] = 24612, - [SMALL_STATE(783)] = 24621, - [SMALL_STATE(784)] = 24634, - [SMALL_STATE(785)] = 24643, - [SMALL_STATE(786)] = 24652, - [SMALL_STATE(787)] = 24661, - [SMALL_STATE(788)] = 24674, - [SMALL_STATE(789)] = 24683, - [SMALL_STATE(790)] = 24696, - [SMALL_STATE(791)] = 24705, - [SMALL_STATE(792)] = 24713, - [SMALL_STATE(793)] = 24721, - [SMALL_STATE(794)] = 24729, - [SMALL_STATE(795)] = 24737, - [SMALL_STATE(796)] = 24745, - [SMALL_STATE(797)] = 24753, - [SMALL_STATE(798)] = 24761, - [SMALL_STATE(799)] = 24769, - [SMALL_STATE(800)] = 24777, - [SMALL_STATE(801)] = 24785, - [SMALL_STATE(802)] = 24793, - [SMALL_STATE(803)] = 24801, - [SMALL_STATE(804)] = 24809, - [SMALL_STATE(805)] = 24817, - [SMALL_STATE(806)] = 24825, - [SMALL_STATE(807)] = 24833, - [SMALL_STATE(808)] = 24841, - [SMALL_STATE(809)] = 24849, - [SMALL_STATE(810)] = 24859, - [SMALL_STATE(811)] = 24867, - [SMALL_STATE(812)] = 24875, - [SMALL_STATE(813)] = 24883, - [SMALL_STATE(814)] = 24891, - [SMALL_STATE(815)] = 24899, - [SMALL_STATE(816)] = 24907, - [SMALL_STATE(817)] = 24915, - [SMALL_STATE(818)] = 24923, - [SMALL_STATE(819)] = 24933, - [SMALL_STATE(820)] = 24943, - [SMALL_STATE(821)] = 24951, - [SMALL_STATE(822)] = 24961, - [SMALL_STATE(823)] = 24969, - [SMALL_STATE(824)] = 24977, - [SMALL_STATE(825)] = 24985, - [SMALL_STATE(826)] = 24993, - [SMALL_STATE(827)] = 25001, - [SMALL_STATE(828)] = 25009, - [SMALL_STATE(829)] = 25019, - [SMALL_STATE(830)] = 25027, - [SMALL_STATE(831)] = 25035, - [SMALL_STATE(832)] = 25043, - [SMALL_STATE(833)] = 25051, - [SMALL_STATE(834)] = 25061, - [SMALL_STATE(835)] = 25069, - [SMALL_STATE(836)] = 25077, - [SMALL_STATE(837)] = 25085, - [SMALL_STATE(838)] = 25093, - [SMALL_STATE(839)] = 25101, - [SMALL_STATE(840)] = 25109, - [SMALL_STATE(841)] = 25117, - [SMALL_STATE(842)] = 25127, - [SMALL_STATE(843)] = 25135, - [SMALL_STATE(844)] = 25145, - [SMALL_STATE(845)] = 25153, - [SMALL_STATE(846)] = 25161, - [SMALL_STATE(847)] = 25169, - [SMALL_STATE(848)] = 25177, - [SMALL_STATE(849)] = 25185, - [SMALL_STATE(850)] = 25195, - [SMALL_STATE(851)] = 25203, - [SMALL_STATE(852)] = 25211, - [SMALL_STATE(853)] = 25219, - [SMALL_STATE(854)] = 25227, - [SMALL_STATE(855)] = 25235, - [SMALL_STATE(856)] = 25243, - [SMALL_STATE(857)] = 25251, - [SMALL_STATE(858)] = 25259, - [SMALL_STATE(859)] = 25267, - [SMALL_STATE(860)] = 25275, - [SMALL_STATE(861)] = 25283, - [SMALL_STATE(862)] = 25291, - [SMALL_STATE(863)] = 25299, - [SMALL_STATE(864)] = 25307, - [SMALL_STATE(865)] = 25315, - [SMALL_STATE(866)] = 25323, - [SMALL_STATE(867)] = 25331, - [SMALL_STATE(868)] = 25339, - [SMALL_STATE(869)] = 25347, - [SMALL_STATE(870)] = 25355, - [SMALL_STATE(871)] = 25363, - [SMALL_STATE(872)] = 25371, - [SMALL_STATE(873)] = 25379, - [SMALL_STATE(874)] = 25387, - [SMALL_STATE(875)] = 25395, - [SMALL_STATE(876)] = 25403, - [SMALL_STATE(877)] = 25411, - [SMALL_STATE(878)] = 25419, - [SMALL_STATE(879)] = 25427, - [SMALL_STATE(880)] = 25435, - [SMALL_STATE(881)] = 25443, - [SMALL_STATE(882)] = 25451, - [SMALL_STATE(883)] = 25461, - [SMALL_STATE(884)] = 25469, - [SMALL_STATE(885)] = 25477, - [SMALL_STATE(886)] = 25485, - [SMALL_STATE(887)] = 25493, - [SMALL_STATE(888)] = 25503, - [SMALL_STATE(889)] = 25511, - [SMALL_STATE(890)] = 25519, - [SMALL_STATE(891)] = 25527, - [SMALL_STATE(892)] = 25535, - [SMALL_STATE(893)] = 25543, - [SMALL_STATE(894)] = 25551, - [SMALL_STATE(895)] = 25559, - [SMALL_STATE(896)] = 25567, - [SMALL_STATE(897)] = 25575, - [SMALL_STATE(898)] = 25583, - [SMALL_STATE(899)] = 25591, - [SMALL_STATE(900)] = 25599, - [SMALL_STATE(901)] = 25607, - [SMALL_STATE(902)] = 25615, - [SMALL_STATE(903)] = 25623, - [SMALL_STATE(904)] = 25631, - [SMALL_STATE(905)] = 25639, - [SMALL_STATE(906)] = 25647, - [SMALL_STATE(907)] = 25655, - [SMALL_STATE(908)] = 25663, - [SMALL_STATE(909)] = 25671, - [SMALL_STATE(910)] = 25679, - [SMALL_STATE(911)] = 25687, - [SMALL_STATE(912)] = 25695, - [SMALL_STATE(913)] = 25703, - [SMALL_STATE(914)] = 25711, - [SMALL_STATE(915)] = 25719, - [SMALL_STATE(916)] = 25727, - [SMALL_STATE(917)] = 25735, - [SMALL_STATE(918)] = 25743, - [SMALL_STATE(919)] = 25751, - [SMALL_STATE(920)] = 25759, - [SMALL_STATE(921)] = 25767, - [SMALL_STATE(922)] = 25775, - [SMALL_STATE(923)] = 25783, - [SMALL_STATE(924)] = 25791, - [SMALL_STATE(925)] = 25799, - [SMALL_STATE(926)] = 25807, - [SMALL_STATE(927)] = 25815, - [SMALL_STATE(928)] = 25825, - [SMALL_STATE(929)] = 25833, - [SMALL_STATE(930)] = 25843, - [SMALL_STATE(931)] = 25851, - [SMALL_STATE(932)] = 25859, - [SMALL_STATE(933)] = 25867, - [SMALL_STATE(934)] = 25875, - [SMALL_STATE(935)] = 25883, - [SMALL_STATE(936)] = 25891, - [SMALL_STATE(937)] = 25899, - [SMALL_STATE(938)] = 25907, - [SMALL_STATE(939)] = 25915, - [SMALL_STATE(940)] = 25923, - [SMALL_STATE(941)] = 25931, - [SMALL_STATE(942)] = 25941, - [SMALL_STATE(943)] = 25949, - [SMALL_STATE(944)] = 25957, + [SMALL_STATE(3)] = 78, + [SMALL_STATE(4)] = 156, + [SMALL_STATE(5)] = 234, + [SMALL_STATE(6)] = 312, + [SMALL_STATE(7)] = 390, + [SMALL_STATE(8)] = 468, + [SMALL_STATE(9)] = 546, + [SMALL_STATE(10)] = 624, + [SMALL_STATE(11)] = 702, + [SMALL_STATE(12)] = 780, + [SMALL_STATE(13)] = 858, + [SMALL_STATE(14)] = 936, + [SMALL_STATE(15)] = 1014, + [SMALL_STATE(16)] = 1092, + [SMALL_STATE(17)] = 1170, + [SMALL_STATE(18)] = 1243, + [SMALL_STATE(19)] = 1316, + [SMALL_STATE(20)] = 1389, + [SMALL_STATE(21)] = 1462, + [SMALL_STATE(22)] = 1535, + [SMALL_STATE(23)] = 1608, + [SMALL_STATE(24)] = 1681, + [SMALL_STATE(25)] = 1754, + [SMALL_STATE(26)] = 1827, + [SMALL_STATE(27)] = 1900, + [SMALL_STATE(28)] = 1973, + [SMALL_STATE(29)] = 2046, + [SMALL_STATE(30)] = 2119, + [SMALL_STATE(31)] = 2192, + [SMALL_STATE(32)] = 2265, + [SMALL_STATE(33)] = 2338, + [SMALL_STATE(34)] = 2411, + [SMALL_STATE(35)] = 2484, + [SMALL_STATE(36)] = 2557, + [SMALL_STATE(37)] = 2630, + [SMALL_STATE(38)] = 2703, + [SMALL_STATE(39)] = 2776, + [SMALL_STATE(40)] = 2849, + [SMALL_STATE(41)] = 2922, + [SMALL_STATE(42)] = 2995, + [SMALL_STATE(43)] = 3068, + [SMALL_STATE(44)] = 3141, + [SMALL_STATE(45)] = 3214, + [SMALL_STATE(46)] = 3287, + [SMALL_STATE(47)] = 3360, + [SMALL_STATE(48)] = 3433, + [SMALL_STATE(49)] = 3506, + [SMALL_STATE(50)] = 3579, + [SMALL_STATE(51)] = 3652, + [SMALL_STATE(52)] = 3725, + [SMALL_STATE(53)] = 3798, + [SMALL_STATE(54)] = 3871, + [SMALL_STATE(55)] = 3944, + [SMALL_STATE(56)] = 4017, + [SMALL_STATE(57)] = 4090, + [SMALL_STATE(58)] = 4163, + [SMALL_STATE(59)] = 4236, + [SMALL_STATE(60)] = 4309, + [SMALL_STATE(61)] = 4382, + [SMALL_STATE(62)] = 4455, + [SMALL_STATE(63)] = 4528, + [SMALL_STATE(64)] = 4601, + [SMALL_STATE(65)] = 4674, + [SMALL_STATE(66)] = 4747, + [SMALL_STATE(67)] = 4820, + [SMALL_STATE(68)] = 4893, + [SMALL_STATE(69)] = 4966, + [SMALL_STATE(70)] = 5039, + [SMALL_STATE(71)] = 5112, + [SMALL_STATE(72)] = 5185, + [SMALL_STATE(73)] = 5258, + [SMALL_STATE(74)] = 5331, + [SMALL_STATE(75)] = 5404, + [SMALL_STATE(76)] = 5477, + [SMALL_STATE(77)] = 5550, + [SMALL_STATE(78)] = 5623, + [SMALL_STATE(79)] = 5696, + [SMALL_STATE(80)] = 5769, + [SMALL_STATE(81)] = 5842, + [SMALL_STATE(82)] = 5915, + [SMALL_STATE(83)] = 5988, + [SMALL_STATE(84)] = 6061, + [SMALL_STATE(85)] = 6134, + [SMALL_STATE(86)] = 6207, + [SMALL_STATE(87)] = 6280, + [SMALL_STATE(88)] = 6353, + [SMALL_STATE(89)] = 6426, + [SMALL_STATE(90)] = 6499, + [SMALL_STATE(91)] = 6572, + [SMALL_STATE(92)] = 6645, + [SMALL_STATE(93)] = 6718, + [SMALL_STATE(94)] = 6791, + [SMALL_STATE(95)] = 6864, + [SMALL_STATE(96)] = 6937, + [SMALL_STATE(97)] = 7010, + [SMALL_STATE(98)] = 7083, + [SMALL_STATE(99)] = 7156, + [SMALL_STATE(100)] = 7229, + [SMALL_STATE(101)] = 7302, + [SMALL_STATE(102)] = 7375, + [SMALL_STATE(103)] = 7448, + [SMALL_STATE(104)] = 7521, + [SMALL_STATE(105)] = 7594, + [SMALL_STATE(106)] = 7667, + [SMALL_STATE(107)] = 7740, + [SMALL_STATE(108)] = 7813, + [SMALL_STATE(109)] = 7886, + [SMALL_STATE(110)] = 7959, + [SMALL_STATE(111)] = 8032, + [SMALL_STATE(112)] = 8105, + [SMALL_STATE(113)] = 8178, + [SMALL_STATE(114)] = 8251, + [SMALL_STATE(115)] = 8324, + [SMALL_STATE(116)] = 8397, + [SMALL_STATE(117)] = 8470, + [SMALL_STATE(118)] = 8543, + [SMALL_STATE(119)] = 8616, + [SMALL_STATE(120)] = 8689, + [SMALL_STATE(121)] = 8762, + [SMALL_STATE(122)] = 8835, + [SMALL_STATE(123)] = 8908, + [SMALL_STATE(124)] = 8981, + [SMALL_STATE(125)] = 9054, + [SMALL_STATE(126)] = 9127, + [SMALL_STATE(127)] = 9200, + [SMALL_STATE(128)] = 9273, + [SMALL_STATE(129)] = 9346, + [SMALL_STATE(130)] = 9419, + [SMALL_STATE(131)] = 9492, + [SMALL_STATE(132)] = 9565, + [SMALL_STATE(133)] = 9638, + [SMALL_STATE(134)] = 9711, + [SMALL_STATE(135)] = 9784, + [SMALL_STATE(136)] = 9857, + [SMALL_STATE(137)] = 9930, + [SMALL_STATE(138)] = 10003, + [SMALL_STATE(139)] = 10076, + [SMALL_STATE(140)] = 10149, + [SMALL_STATE(141)] = 10222, + [SMALL_STATE(142)] = 10295, + [SMALL_STATE(143)] = 10368, + [SMALL_STATE(144)] = 10441, + [SMALL_STATE(145)] = 10514, + [SMALL_STATE(146)] = 10587, + [SMALL_STATE(147)] = 10660, + [SMALL_STATE(148)] = 10733, + [SMALL_STATE(149)] = 10806, + [SMALL_STATE(150)] = 10879, + [SMALL_STATE(151)] = 10952, + [SMALL_STATE(152)] = 11025, + [SMALL_STATE(153)] = 11098, + [SMALL_STATE(154)] = 11171, + [SMALL_STATE(155)] = 11244, + [SMALL_STATE(156)] = 11317, + [SMALL_STATE(157)] = 11390, + [SMALL_STATE(158)] = 11463, + [SMALL_STATE(159)] = 11536, + [SMALL_STATE(160)] = 11609, + [SMALL_STATE(161)] = 11682, + [SMALL_STATE(162)] = 11755, + [SMALL_STATE(163)] = 11828, + [SMALL_STATE(164)] = 11901, + [SMALL_STATE(165)] = 11974, + [SMALL_STATE(166)] = 12047, + [SMALL_STATE(167)] = 12120, + [SMALL_STATE(168)] = 12193, + [SMALL_STATE(169)] = 12266, + [SMALL_STATE(170)] = 12339, + [SMALL_STATE(171)] = 12412, + [SMALL_STATE(172)] = 12485, + [SMALL_STATE(173)] = 12558, + [SMALL_STATE(174)] = 12631, + [SMALL_STATE(175)] = 12704, + [SMALL_STATE(176)] = 12777, + [SMALL_STATE(177)] = 12850, + [SMALL_STATE(178)] = 12923, + [SMALL_STATE(179)] = 12996, + [SMALL_STATE(180)] = 13069, + [SMALL_STATE(181)] = 13142, + [SMALL_STATE(182)] = 13215, + [SMALL_STATE(183)] = 13288, + [SMALL_STATE(184)] = 13361, + [SMALL_STATE(185)] = 13434, + [SMALL_STATE(186)] = 13507, + [SMALL_STATE(187)] = 13580, + [SMALL_STATE(188)] = 13653, + [SMALL_STATE(189)] = 13726, + [SMALL_STATE(190)] = 13799, + [SMALL_STATE(191)] = 13872, + [SMALL_STATE(192)] = 13945, + [SMALL_STATE(193)] = 14018, + [SMALL_STATE(194)] = 14091, + [SMALL_STATE(195)] = 14164, + [SMALL_STATE(196)] = 14237, + [SMALL_STATE(197)] = 14310, + [SMALL_STATE(198)] = 14383, + [SMALL_STATE(199)] = 14456, + [SMALL_STATE(200)] = 14529, + [SMALL_STATE(201)] = 14602, + [SMALL_STATE(202)] = 14675, + [SMALL_STATE(203)] = 14748, + [SMALL_STATE(204)] = 14821, + [SMALL_STATE(205)] = 14894, + [SMALL_STATE(206)] = 14967, + [SMALL_STATE(207)] = 15040, + [SMALL_STATE(208)] = 15113, + [SMALL_STATE(209)] = 15180, + [SMALL_STATE(210)] = 15240, + [SMALL_STATE(211)] = 15297, + [SMALL_STATE(212)] = 15354, + [SMALL_STATE(213)] = 15411, + [SMALL_STATE(214)] = 15465, + [SMALL_STATE(215)] = 15519, + [SMALL_STATE(216)] = 15573, + [SMALL_STATE(217)] = 15627, + [SMALL_STATE(218)] = 15681, + [SMALL_STATE(219)] = 15735, + [SMALL_STATE(220)] = 15789, + [SMALL_STATE(221)] = 15843, + [SMALL_STATE(222)] = 15897, + [SMALL_STATE(223)] = 15951, + [SMALL_STATE(224)] = 16005, + [SMALL_STATE(225)] = 16059, + [SMALL_STATE(226)] = 16113, + [SMALL_STATE(227)] = 16167, + [SMALL_STATE(228)] = 16221, + [SMALL_STATE(229)] = 16275, + [SMALL_STATE(230)] = 16329, + [SMALL_STATE(231)] = 16383, + [SMALL_STATE(232)] = 16437, + [SMALL_STATE(233)] = 16491, + [SMALL_STATE(234)] = 16545, + [SMALL_STATE(235)] = 16599, + [SMALL_STATE(236)] = 16653, + [SMALL_STATE(237)] = 16707, + [SMALL_STATE(238)] = 16761, + [SMALL_STATE(239)] = 16815, + [SMALL_STATE(240)] = 16869, + [SMALL_STATE(241)] = 16923, + [SMALL_STATE(242)] = 16977, + [SMALL_STATE(243)] = 17031, + [SMALL_STATE(244)] = 17085, + [SMALL_STATE(245)] = 17139, + [SMALL_STATE(246)] = 17193, + [SMALL_STATE(247)] = 17247, + [SMALL_STATE(248)] = 17301, + [SMALL_STATE(249)] = 17355, + [SMALL_STATE(250)] = 17409, + [SMALL_STATE(251)] = 17463, + [SMALL_STATE(252)] = 17517, + [SMALL_STATE(253)] = 17571, + [SMALL_STATE(254)] = 17625, + [SMALL_STATE(255)] = 17679, + [SMALL_STATE(256)] = 17733, + [SMALL_STATE(257)] = 17787, + [SMALL_STATE(258)] = 17841, + [SMALL_STATE(259)] = 17895, + [SMALL_STATE(260)] = 17949, + [SMALL_STATE(261)] = 18003, + [SMALL_STATE(262)] = 18057, + [SMALL_STATE(263)] = 18111, + [SMALL_STATE(264)] = 18165, + [SMALL_STATE(265)] = 18219, + [SMALL_STATE(266)] = 18273, + [SMALL_STATE(267)] = 18327, + [SMALL_STATE(268)] = 18381, + [SMALL_STATE(269)] = 18435, + [SMALL_STATE(270)] = 18489, + [SMALL_STATE(271)] = 18543, + [SMALL_STATE(272)] = 18597, + [SMALL_STATE(273)] = 18651, + [SMALL_STATE(274)] = 18705, + [SMALL_STATE(275)] = 18759, + [SMALL_STATE(276)] = 18813, + [SMALL_STATE(277)] = 18867, + [SMALL_STATE(278)] = 18921, + [SMALL_STATE(279)] = 18975, + [SMALL_STATE(280)] = 19029, + [SMALL_STATE(281)] = 19083, + [SMALL_STATE(282)] = 19137, + [SMALL_STATE(283)] = 19191, + [SMALL_STATE(284)] = 19245, + [SMALL_STATE(285)] = 19299, + [SMALL_STATE(286)] = 19353, + [SMALL_STATE(287)] = 19407, + [SMALL_STATE(288)] = 19461, + [SMALL_STATE(289)] = 19515, + [SMALL_STATE(290)] = 19569, + [SMALL_STATE(291)] = 19623, + [SMALL_STATE(292)] = 19677, + [SMALL_STATE(293)] = 19731, + [SMALL_STATE(294)] = 19785, + [SMALL_STATE(295)] = 19839, + [SMALL_STATE(296)] = 19893, + [SMALL_STATE(297)] = 19947, + [SMALL_STATE(298)] = 20001, + [SMALL_STATE(299)] = 20055, + [SMALL_STATE(300)] = 20109, + [SMALL_STATE(301)] = 20163, + [SMALL_STATE(302)] = 20217, + [SMALL_STATE(303)] = 20271, + [SMALL_STATE(304)] = 20325, + [SMALL_STATE(305)] = 20379, + [SMALL_STATE(306)] = 20433, + [SMALL_STATE(307)] = 20487, + [SMALL_STATE(308)] = 20541, + [SMALL_STATE(309)] = 20595, + [SMALL_STATE(310)] = 20649, + [SMALL_STATE(311)] = 20703, + [SMALL_STATE(312)] = 20757, + [SMALL_STATE(313)] = 20811, + [SMALL_STATE(314)] = 20865, + [SMALL_STATE(315)] = 20919, + [SMALL_STATE(316)] = 20973, + [SMALL_STATE(317)] = 21027, + [SMALL_STATE(318)] = 21081, + [SMALL_STATE(319)] = 21135, + [SMALL_STATE(320)] = 21189, + [SMALL_STATE(321)] = 21243, + [SMALL_STATE(322)] = 21297, + [SMALL_STATE(323)] = 21351, + [SMALL_STATE(324)] = 21405, + [SMALL_STATE(325)] = 21459, + [SMALL_STATE(326)] = 21513, + [SMALL_STATE(327)] = 21567, + [SMALL_STATE(328)] = 21621, + [SMALL_STATE(329)] = 21675, + [SMALL_STATE(330)] = 21729, + [SMALL_STATE(331)] = 21783, + [SMALL_STATE(332)] = 21837, + [SMALL_STATE(333)] = 21891, + [SMALL_STATE(334)] = 21945, + [SMALL_STATE(335)] = 21987, + [SMALL_STATE(336)] = 22029, + [SMALL_STATE(337)] = 22071, + [SMALL_STATE(338)] = 22112, + [SMALL_STATE(339)] = 22153, + [SMALL_STATE(340)] = 22194, + [SMALL_STATE(341)] = 22235, + [SMALL_STATE(342)] = 22276, + [SMALL_STATE(343)] = 22317, + [SMALL_STATE(344)] = 22358, + [SMALL_STATE(345)] = 22399, + [SMALL_STATE(346)] = 22440, + [SMALL_STATE(347)] = 22481, + [SMALL_STATE(348)] = 22522, + [SMALL_STATE(349)] = 22563, + [SMALL_STATE(350)] = 22603, + [SMALL_STATE(351)] = 22643, + [SMALL_STATE(352)] = 22681, + [SMALL_STATE(353)] = 22719, + [SMALL_STATE(354)] = 22759, + [SMALL_STATE(355)] = 22799, + [SMALL_STATE(356)] = 22837, + [SMALL_STATE(357)] = 22877, + [SMALL_STATE(358)] = 22917, + [SMALL_STATE(359)] = 22954, + [SMALL_STATE(360)] = 22991, + [SMALL_STATE(361)] = 23028, + [SMALL_STATE(362)] = 23067, + [SMALL_STATE(363)] = 23106, + [SMALL_STATE(364)] = 23145, + [SMALL_STATE(365)] = 23184, + [SMALL_STATE(366)] = 23221, + [SMALL_STATE(367)] = 23258, + [SMALL_STATE(368)] = 23295, + [SMALL_STATE(369)] = 23332, + [SMALL_STATE(370)] = 23369, + [SMALL_STATE(371)] = 23406, + [SMALL_STATE(372)] = 23443, + [SMALL_STATE(373)] = 23480, + [SMALL_STATE(374)] = 23519, + [SMALL_STATE(375)] = 23558, + [SMALL_STATE(376)] = 23597, + [SMALL_STATE(377)] = 23636, + [SMALL_STATE(378)] = 23673, + [SMALL_STATE(379)] = 23710, + [SMALL_STATE(380)] = 23747, + [SMALL_STATE(381)] = 23786, + [SMALL_STATE(382)] = 23823, + [SMALL_STATE(383)] = 23860, + [SMALL_STATE(384)] = 23897, + [SMALL_STATE(385)] = 23934, + [SMALL_STATE(386)] = 23970, + [SMALL_STATE(387)] = 23992, + [SMALL_STATE(388)] = 24014, + [SMALL_STATE(389)] = 24036, + [SMALL_STATE(390)] = 24074, + [SMALL_STATE(391)] = 24112, + [SMALL_STATE(392)] = 24150, + [SMALL_STATE(393)] = 24188, + [SMALL_STATE(394)] = 24210, + [SMALL_STATE(395)] = 24232, + [SMALL_STATE(396)] = 24254, + [SMALL_STATE(397)] = 24276, + [SMALL_STATE(398)] = 24298, + [SMALL_STATE(399)] = 24336, + [SMALL_STATE(400)] = 24358, + [SMALL_STATE(401)] = 24396, + [SMALL_STATE(402)] = 24422, + [SMALL_STATE(403)] = 24448, + [SMALL_STATE(404)] = 24474, + [SMALL_STATE(405)] = 24500, + [SMALL_STATE(406)] = 24526, + [SMALL_STATE(407)] = 24548, + [SMALL_STATE(408)] = 24570, + [SMALL_STATE(409)] = 24606, + [SMALL_STATE(410)] = 24628, + [SMALL_STATE(411)] = 24650, + [SMALL_STATE(412)] = 24672, + [SMALL_STATE(413)] = 24708, + [SMALL_STATE(414)] = 24730, + [SMALL_STATE(415)] = 24755, + [SMALL_STATE(416)] = 24780, + [SMALL_STATE(417)] = 24815, + [SMALL_STATE(418)] = 24840, + [SMALL_STATE(419)] = 24875, + [SMALL_STATE(420)] = 24910, + [SMALL_STATE(421)] = 24945, + [SMALL_STATE(422)] = 24970, + [SMALL_STATE(423)] = 24995, + [SMALL_STATE(424)] = 25020, + [SMALL_STATE(425)] = 25045, + [SMALL_STATE(426)] = 25070, + [SMALL_STATE(427)] = 25095, + [SMALL_STATE(428)] = 25120, + [SMALL_STATE(429)] = 25145, + [SMALL_STATE(430)] = 25180, + [SMALL_STATE(431)] = 25215, + [SMALL_STATE(432)] = 25250, + [SMALL_STATE(433)] = 25285, + [SMALL_STATE(434)] = 25310, + [SMALL_STATE(435)] = 25335, + [SMALL_STATE(436)] = 25360, + [SMALL_STATE(437)] = 25385, + [SMALL_STATE(438)] = 25410, + [SMALL_STATE(439)] = 25435, + [SMALL_STATE(440)] = 25470, + [SMALL_STATE(441)] = 25495, + [SMALL_STATE(442)] = 25520, + [SMALL_STATE(443)] = 25545, + [SMALL_STATE(444)] = 25569, + [SMALL_STATE(445)] = 25593, + [SMALL_STATE(446)] = 25617, + [SMALL_STATE(447)] = 25651, + [SMALL_STATE(448)] = 25675, + [SMALL_STATE(449)] = 25699, + [SMALL_STATE(450)] = 25733, + [SMALL_STATE(451)] = 25757, + [SMALL_STATE(452)] = 25791, + [SMALL_STATE(453)] = 25815, + [SMALL_STATE(454)] = 25841, + [SMALL_STATE(455)] = 25875, + [SMALL_STATE(456)] = 25909, + [SMALL_STATE(457)] = 25933, + [SMALL_STATE(458)] = 25957, + [SMALL_STATE(459)] = 25991, + [SMALL_STATE(460)] = 26025, + [SMALL_STATE(461)] = 26049, + [SMALL_STATE(462)] = 26073, + [SMALL_STATE(463)] = 26097, + [SMALL_STATE(464)] = 26121, + [SMALL_STATE(465)] = 26145, + [SMALL_STATE(466)] = 26169, + [SMALL_STATE(467)] = 26192, + [SMALL_STATE(468)] = 26215, + [SMALL_STATE(469)] = 26238, + [SMALL_STATE(470)] = 26261, + [SMALL_STATE(471)] = 26284, + [SMALL_STATE(472)] = 26315, + [SMALL_STATE(473)] = 26338, + [SMALL_STATE(474)] = 26361, + [SMALL_STATE(475)] = 26384, + [SMALL_STATE(476)] = 26407, + [SMALL_STATE(477)] = 26430, + [SMALL_STATE(478)] = 26453, + [SMALL_STATE(479)] = 26476, + [SMALL_STATE(480)] = 26499, + [SMALL_STATE(481)] = 26522, + [SMALL_STATE(482)] = 26545, + [SMALL_STATE(483)] = 26568, + [SMALL_STATE(484)] = 26591, + [SMALL_STATE(485)] = 26614, + [SMALL_STATE(486)] = 26637, + [SMALL_STATE(487)] = 26660, + [SMALL_STATE(488)] = 26683, + [SMALL_STATE(489)] = 26706, + [SMALL_STATE(490)] = 26729, + [SMALL_STATE(491)] = 26752, + [SMALL_STATE(492)] = 26775, + [SMALL_STATE(493)] = 26798, + [SMALL_STATE(494)] = 26821, + [SMALL_STATE(495)] = 26844, + [SMALL_STATE(496)] = 26867, + [SMALL_STATE(497)] = 26890, + [SMALL_STATE(498)] = 26921, + [SMALL_STATE(499)] = 26952, + [SMALL_STATE(500)] = 26975, + [SMALL_STATE(501)] = 26998, + [SMALL_STATE(502)] = 27021, + [SMALL_STATE(503)] = 27044, + [SMALL_STATE(504)] = 27067, + [SMALL_STATE(505)] = 27090, + [SMALL_STATE(506)] = 27113, + [SMALL_STATE(507)] = 27136, + [SMALL_STATE(508)] = 27159, + [SMALL_STATE(509)] = 27182, + [SMALL_STATE(510)] = 27205, + [SMALL_STATE(511)] = 27228, + [SMALL_STATE(512)] = 27251, + [SMALL_STATE(513)] = 27274, + [SMALL_STATE(514)] = 27297, + [SMALL_STATE(515)] = 27319, + [SMALL_STATE(516)] = 27341, + [SMALL_STATE(517)] = 27373, + [SMALL_STATE(518)] = 27395, + [SMALL_STATE(519)] = 27417, + [SMALL_STATE(520)] = 27439, + [SMALL_STATE(521)] = 27461, + [SMALL_STATE(522)] = 27483, + [SMALL_STATE(523)] = 27505, + [SMALL_STATE(524)] = 27527, + [SMALL_STATE(525)] = 27549, + [SMALL_STATE(526)] = 27571, + [SMALL_STATE(527)] = 27593, + [SMALL_STATE(528)] = 27615, + [SMALL_STATE(529)] = 27637, + [SMALL_STATE(530)] = 27659, + [SMALL_STATE(531)] = 27680, + [SMALL_STATE(532)] = 27701, + [SMALL_STATE(533)] = 27722, + [SMALL_STATE(534)] = 27743, + [SMALL_STATE(535)] = 27764, + [SMALL_STATE(536)] = 27785, + [SMALL_STATE(537)] = 27806, + [SMALL_STATE(538)] = 27827, + [SMALL_STATE(539)] = 27848, + [SMALL_STATE(540)] = 27869, + [SMALL_STATE(541)] = 27890, + [SMALL_STATE(542)] = 27913, + [SMALL_STATE(543)] = 27934, + [SMALL_STATE(544)] = 27957, + [SMALL_STATE(545)] = 27978, + [SMALL_STATE(546)] = 27999, + [SMALL_STATE(547)] = 28020, + [SMALL_STATE(548)] = 28040, + [SMALL_STATE(549)] = 28060, + [SMALL_STATE(550)] = 28080, + [SMALL_STATE(551)] = 28100, + [SMALL_STATE(552)] = 28120, + [SMALL_STATE(553)] = 28140, + [SMALL_STATE(554)] = 28160, + [SMALL_STATE(555)] = 28180, + [SMALL_STATE(556)] = 28200, + [SMALL_STATE(557)] = 28215, + [SMALL_STATE(558)] = 28230, + [SMALL_STATE(559)] = 28245, + [SMALL_STATE(560)] = 28260, + [SMALL_STATE(561)] = 28285, + [SMALL_STATE(562)] = 28300, + [SMALL_STATE(563)] = 28315, + [SMALL_STATE(564)] = 28340, + [SMALL_STATE(565)] = 28355, + [SMALL_STATE(566)] = 28370, + [SMALL_STATE(567)] = 28385, + [SMALL_STATE(568)] = 28410, + [SMALL_STATE(569)] = 28435, + [SMALL_STATE(570)] = 28460, + [SMALL_STATE(571)] = 28485, + [SMALL_STATE(572)] = 28510, + [SMALL_STATE(573)] = 28535, + [SMALL_STATE(574)] = 28550, + [SMALL_STATE(575)] = 28565, + [SMALL_STATE(576)] = 28580, + [SMALL_STATE(577)] = 28595, + [SMALL_STATE(578)] = 28620, + [SMALL_STATE(579)] = 28645, + [SMALL_STATE(580)] = 28664, + [SMALL_STATE(581)] = 28689, + [SMALL_STATE(582)] = 28714, + [SMALL_STATE(583)] = 28739, + [SMALL_STATE(584)] = 28754, + [SMALL_STATE(585)] = 28779, + [SMALL_STATE(586)] = 28804, + [SMALL_STATE(587)] = 28819, + [SMALL_STATE(588)] = 28838, + [SMALL_STATE(589)] = 28856, + [SMALL_STATE(590)] = 28874, + [SMALL_STATE(591)] = 28892, + [SMALL_STATE(592)] = 28918, + [SMALL_STATE(593)] = 28936, + [SMALL_STATE(594)] = 28954, + [SMALL_STATE(595)] = 28972, + [SMALL_STATE(596)] = 28998, + [SMALL_STATE(597)] = 29020, + [SMALL_STATE(598)] = 29038, + [SMALL_STATE(599)] = 29056, + [SMALL_STATE(600)] = 29069, + [SMALL_STATE(601)] = 29086, + [SMALL_STATE(602)] = 29099, + [SMALL_STATE(603)] = 29112, + [SMALL_STATE(604)] = 29125, + [SMALL_STATE(605)] = 29138, + [SMALL_STATE(606)] = 29151, + [SMALL_STATE(607)] = 29164, + [SMALL_STATE(608)] = 29179, + [SMALL_STATE(609)] = 29194, + [SMALL_STATE(610)] = 29207, + [SMALL_STATE(611)] = 29220, + [SMALL_STATE(612)] = 29237, + [SMALL_STATE(613)] = 29254, + [SMALL_STATE(614)] = 29271, + [SMALL_STATE(615)] = 29288, + [SMALL_STATE(616)] = 29303, + [SMALL_STATE(617)] = 29316, + [SMALL_STATE(618)] = 29329, + [SMALL_STATE(619)] = 29342, + [SMALL_STATE(620)] = 29355, + [SMALL_STATE(621)] = 29368, + [SMALL_STATE(622)] = 29385, + [SMALL_STATE(623)] = 29398, + [SMALL_STATE(624)] = 29414, + [SMALL_STATE(625)] = 29430, + [SMALL_STATE(626)] = 29446, + [SMALL_STATE(627)] = 29462, + [SMALL_STATE(628)] = 29478, + [SMALL_STATE(629)] = 29494, + [SMALL_STATE(630)] = 29510, + [SMALL_STATE(631)] = 29526, + [SMALL_STATE(632)] = 29542, + [SMALL_STATE(633)] = 29558, + [SMALL_STATE(634)] = 29574, + [SMALL_STATE(635)] = 29590, + [SMALL_STATE(636)] = 29606, + [SMALL_STATE(637)] = 29622, + [SMALL_STATE(638)] = 29638, + [SMALL_STATE(639)] = 29654, + [SMALL_STATE(640)] = 29670, + [SMALL_STATE(641)] = 29686, + [SMALL_STATE(642)] = 29702, + [SMALL_STATE(643)] = 29718, + [SMALL_STATE(644)] = 29734, + [SMALL_STATE(645)] = 29749, + [SMALL_STATE(646)] = 29764, + [SMALL_STATE(647)] = 29779, + [SMALL_STATE(648)] = 29796, + [SMALL_STATE(649)] = 29807, + [SMALL_STATE(650)] = 29822, + [SMALL_STATE(651)] = 29833, + [SMALL_STATE(652)] = 29848, + [SMALL_STATE(653)] = 29865, + [SMALL_STATE(654)] = 29880, + [SMALL_STATE(655)] = 29895, + [SMALL_STATE(656)] = 29906, + [SMALL_STATE(657)] = 29921, + [SMALL_STATE(658)] = 29936, + [SMALL_STATE(659)] = 29953, + [SMALL_STATE(660)] = 29968, + [SMALL_STATE(661)] = 29979, + [SMALL_STATE(662)] = 29994, + [SMALL_STATE(663)] = 30005, + [SMALL_STATE(664)] = 30020, + [SMALL_STATE(665)] = 30031, + [SMALL_STATE(666)] = 30046, + [SMALL_STATE(667)] = 30061, + [SMALL_STATE(668)] = 30076, + [SMALL_STATE(669)] = 30087, + [SMALL_STATE(670)] = 30104, + [SMALL_STATE(671)] = 30115, + [SMALL_STATE(672)] = 30130, + [SMALL_STATE(673)] = 30147, + [SMALL_STATE(674)] = 30158, + [SMALL_STATE(675)] = 30173, + [SMALL_STATE(676)] = 30188, + [SMALL_STATE(677)] = 30203, + [SMALL_STATE(678)] = 30218, + [SMALL_STATE(679)] = 30233, + [SMALL_STATE(680)] = 30244, + [SMALL_STATE(681)] = 30255, + [SMALL_STATE(682)] = 30270, + [SMALL_STATE(683)] = 30281, + [SMALL_STATE(684)] = 30300, + [SMALL_STATE(685)] = 30311, + [SMALL_STATE(686)] = 30326, + [SMALL_STATE(687)] = 30343, + [SMALL_STATE(688)] = 30358, + [SMALL_STATE(689)] = 30375, + [SMALL_STATE(690)] = 30386, + [SMALL_STATE(691)] = 30397, + [SMALL_STATE(692)] = 30411, + [SMALL_STATE(693)] = 30427, + [SMALL_STATE(694)] = 30443, + [SMALL_STATE(695)] = 30459, + [SMALL_STATE(696)] = 30473, + [SMALL_STATE(697)] = 30487, + [SMALL_STATE(698)] = 30501, + [SMALL_STATE(699)] = 30515, + [SMALL_STATE(700)] = 30531, + [SMALL_STATE(701)] = 30547, + [SMALL_STATE(702)] = 30563, + [SMALL_STATE(703)] = 30577, + [SMALL_STATE(704)] = 30591, + [SMALL_STATE(705)] = 30605, + [SMALL_STATE(706)] = 30621, + [SMALL_STATE(707)] = 30637, + [SMALL_STATE(708)] = 30651, + [SMALL_STATE(709)] = 30665, + [SMALL_STATE(710)] = 30681, + [SMALL_STATE(711)] = 30697, + [SMALL_STATE(712)] = 30713, + [SMALL_STATE(713)] = 30729, + [SMALL_STATE(714)] = 30743, + [SMALL_STATE(715)] = 30757, + [SMALL_STATE(716)] = 30771, + [SMALL_STATE(717)] = 30785, + [SMALL_STATE(718)] = 30799, + [SMALL_STATE(719)] = 30815, + [SMALL_STATE(720)] = 30831, + [SMALL_STATE(721)] = 30847, + [SMALL_STATE(722)] = 30859, + [SMALL_STATE(723)] = 30873, + [SMALL_STATE(724)] = 30887, + [SMALL_STATE(725)] = 30901, + [SMALL_STATE(726)] = 30917, + [SMALL_STATE(727)] = 30933, + [SMALL_STATE(728)] = 30949, + [SMALL_STATE(729)] = 30965, + [SMALL_STATE(730)] = 30979, + [SMALL_STATE(731)] = 30993, + [SMALL_STATE(732)] = 31007, + [SMALL_STATE(733)] = 31021, + [SMALL_STATE(734)] = 31035, + [SMALL_STATE(735)] = 31049, + [SMALL_STATE(736)] = 31065, + [SMALL_STATE(737)] = 31081, + [SMALL_STATE(738)] = 31097, + [SMALL_STATE(739)] = 31111, + [SMALL_STATE(740)] = 31125, + [SMALL_STATE(741)] = 31139, + [SMALL_STATE(742)] = 31151, + [SMALL_STATE(743)] = 31165, + [SMALL_STATE(744)] = 31181, + [SMALL_STATE(745)] = 31197, + [SMALL_STATE(746)] = 31211, + [SMALL_STATE(747)] = 31225, + [SMALL_STATE(748)] = 31239, + [SMALL_STATE(749)] = 31253, + [SMALL_STATE(750)] = 31267, + [SMALL_STATE(751)] = 31277, + [SMALL_STATE(752)] = 31291, + [SMALL_STATE(753)] = 31305, + [SMALL_STATE(754)] = 31319, + [SMALL_STATE(755)] = 31333, + [SMALL_STATE(756)] = 31349, + [SMALL_STATE(757)] = 31363, + [SMALL_STATE(758)] = 31377, + [SMALL_STATE(759)] = 31387, + [SMALL_STATE(760)] = 31403, + [SMALL_STATE(761)] = 31419, + [SMALL_STATE(762)] = 31433, + [SMALL_STATE(763)] = 31447, + [SMALL_STATE(764)] = 31463, + [SMALL_STATE(765)] = 31477, + [SMALL_STATE(766)] = 31491, + [SMALL_STATE(767)] = 31505, + [SMALL_STATE(768)] = 31521, + [SMALL_STATE(769)] = 31535, + [SMALL_STATE(770)] = 31549, + [SMALL_STATE(771)] = 31563, + [SMALL_STATE(772)] = 31577, + [SMALL_STATE(773)] = 31591, + [SMALL_STATE(774)] = 31605, + [SMALL_STATE(775)] = 31619, + [SMALL_STATE(776)] = 31631, + [SMALL_STATE(777)] = 31645, + [SMALL_STATE(778)] = 31661, + [SMALL_STATE(779)] = 31675, + [SMALL_STATE(780)] = 31689, + [SMALL_STATE(781)] = 31703, + [SMALL_STATE(782)] = 31717, + [SMALL_STATE(783)] = 31731, + [SMALL_STATE(784)] = 31745, + [SMALL_STATE(785)] = 31759, + [SMALL_STATE(786)] = 31773, + [SMALL_STATE(787)] = 31787, + [SMALL_STATE(788)] = 31801, + [SMALL_STATE(789)] = 31815, + [SMALL_STATE(790)] = 31829, + [SMALL_STATE(791)] = 31843, + [SMALL_STATE(792)] = 31857, + [SMALL_STATE(793)] = 31871, + [SMALL_STATE(794)] = 31885, + [SMALL_STATE(795)] = 31899, + [SMALL_STATE(796)] = 31913, + [SMALL_STATE(797)] = 31927, + [SMALL_STATE(798)] = 31941, + [SMALL_STATE(799)] = 31955, + [SMALL_STATE(800)] = 31969, + [SMALL_STATE(801)] = 31983, + [SMALL_STATE(802)] = 31997, + [SMALL_STATE(803)] = 32011, + [SMALL_STATE(804)] = 32025, + [SMALL_STATE(805)] = 32039, + [SMALL_STATE(806)] = 32053, + [SMALL_STATE(807)] = 32067, + [SMALL_STATE(808)] = 32081, + [SMALL_STATE(809)] = 32095, + [SMALL_STATE(810)] = 32109, + [SMALL_STATE(811)] = 32123, + [SMALL_STATE(812)] = 32137, + [SMALL_STATE(813)] = 32151, + [SMALL_STATE(814)] = 32165, + [SMALL_STATE(815)] = 32179, + [SMALL_STATE(816)] = 32193, + [SMALL_STATE(817)] = 32207, + [SMALL_STATE(818)] = 32221, + [SMALL_STATE(819)] = 32235, + [SMALL_STATE(820)] = 32249, + [SMALL_STATE(821)] = 32263, + [SMALL_STATE(822)] = 32277, + [SMALL_STATE(823)] = 32293, + [SMALL_STATE(824)] = 32307, + [SMALL_STATE(825)] = 32321, + [SMALL_STATE(826)] = 32335, + [SMALL_STATE(827)] = 32349, + [SMALL_STATE(828)] = 32363, + [SMALL_STATE(829)] = 32379, + [SMALL_STATE(830)] = 32393, + [SMALL_STATE(831)] = 32407, + [SMALL_STATE(832)] = 32421, + [SMALL_STATE(833)] = 32435, + [SMALL_STATE(834)] = 32451, + [SMALL_STATE(835)] = 32465, + [SMALL_STATE(836)] = 32479, + [SMALL_STATE(837)] = 32493, + [SMALL_STATE(838)] = 32507, + [SMALL_STATE(839)] = 32521, + [SMALL_STATE(840)] = 32537, + [SMALL_STATE(841)] = 32553, + [SMALL_STATE(842)] = 32567, + [SMALL_STATE(843)] = 32581, + [SMALL_STATE(844)] = 32595, + [SMALL_STATE(845)] = 32609, + [SMALL_STATE(846)] = 32623, + [SMALL_STATE(847)] = 32639, + [SMALL_STATE(848)] = 32653, + [SMALL_STATE(849)] = 32667, + [SMALL_STATE(850)] = 32681, + [SMALL_STATE(851)] = 32695, + [SMALL_STATE(852)] = 32711, + [SMALL_STATE(853)] = 32727, + [SMALL_STATE(854)] = 32741, + [SMALL_STATE(855)] = 32755, + [SMALL_STATE(856)] = 32765, + [SMALL_STATE(857)] = 32779, + [SMALL_STATE(858)] = 32795, + [SMALL_STATE(859)] = 32809, + [SMALL_STATE(860)] = 32823, + [SMALL_STATE(861)] = 32837, + [SMALL_STATE(862)] = 32853, + [SMALL_STATE(863)] = 32867, + [SMALL_STATE(864)] = 32881, + [SMALL_STATE(865)] = 32890, + [SMALL_STATE(866)] = 32899, + [SMALL_STATE(867)] = 32910, + [SMALL_STATE(868)] = 32923, + [SMALL_STATE(869)] = 32932, + [SMALL_STATE(870)] = 32941, + [SMALL_STATE(871)] = 32952, + [SMALL_STATE(872)] = 32965, + [SMALL_STATE(873)] = 32974, + [SMALL_STATE(874)] = 32987, + [SMALL_STATE(875)] = 32996, + [SMALL_STATE(876)] = 33009, + [SMALL_STATE(877)] = 33022, + [SMALL_STATE(878)] = 33031, + [SMALL_STATE(879)] = 33044, + [SMALL_STATE(880)] = 33053, + [SMALL_STATE(881)] = 33066, + [SMALL_STATE(882)] = 33079, + [SMALL_STATE(883)] = 33088, + [SMALL_STATE(884)] = 33097, + [SMALL_STATE(885)] = 33110, + [SMALL_STATE(886)] = 33119, + [SMALL_STATE(887)] = 33132, + [SMALL_STATE(888)] = 33145, + [SMALL_STATE(889)] = 33154, + [SMALL_STATE(890)] = 33167, + [SMALL_STATE(891)] = 33176, + [SMALL_STATE(892)] = 33185, + [SMALL_STATE(893)] = 33194, + [SMALL_STATE(894)] = 33203, + [SMALL_STATE(895)] = 33216, + [SMALL_STATE(896)] = 33225, + [SMALL_STATE(897)] = 33238, + [SMALL_STATE(898)] = 33247, + [SMALL_STATE(899)] = 33256, + [SMALL_STATE(900)] = 33267, + [SMALL_STATE(901)] = 33276, + [SMALL_STATE(902)] = 33289, + [SMALL_STATE(903)] = 33298, + [SMALL_STATE(904)] = 33307, + [SMALL_STATE(905)] = 33320, + [SMALL_STATE(906)] = 33333, + [SMALL_STATE(907)] = 33342, + [SMALL_STATE(908)] = 33355, + [SMALL_STATE(909)] = 33364, + [SMALL_STATE(910)] = 33377, + [SMALL_STATE(911)] = 33386, + [SMALL_STATE(912)] = 33399, + [SMALL_STATE(913)] = 33412, + [SMALL_STATE(914)] = 33425, + [SMALL_STATE(915)] = 33434, + [SMALL_STATE(916)] = 33447, + [SMALL_STATE(917)] = 33460, + [SMALL_STATE(918)] = 33469, + [SMALL_STATE(919)] = 33482, + [SMALL_STATE(920)] = 33491, + [SMALL_STATE(921)] = 33504, + [SMALL_STATE(922)] = 33517, + [SMALL_STATE(923)] = 33530, + [SMALL_STATE(924)] = 33539, + [SMALL_STATE(925)] = 33552, + [SMALL_STATE(926)] = 33565, + [SMALL_STATE(927)] = 33574, + [SMALL_STATE(928)] = 33587, + [SMALL_STATE(929)] = 33600, + [SMALL_STATE(930)] = 33609, + [SMALL_STATE(931)] = 33618, + [SMALL_STATE(932)] = 33631, + [SMALL_STATE(933)] = 33644, + [SMALL_STATE(934)] = 33657, + [SMALL_STATE(935)] = 33666, + [SMALL_STATE(936)] = 33679, + [SMALL_STATE(937)] = 33692, + [SMALL_STATE(938)] = 33705, + [SMALL_STATE(939)] = 33714, + [SMALL_STATE(940)] = 33723, + [SMALL_STATE(941)] = 33732, + [SMALL_STATE(942)] = 33745, + [SMALL_STATE(943)] = 33758, + [SMALL_STATE(944)] = 33767, + [SMALL_STATE(945)] = 33780, + [SMALL_STATE(946)] = 33793, + [SMALL_STATE(947)] = 33806, + [SMALL_STATE(948)] = 33815, + [SMALL_STATE(949)] = 33824, + [SMALL_STATE(950)] = 33837, + [SMALL_STATE(951)] = 33850, + [SMALL_STATE(952)] = 33859, + [SMALL_STATE(953)] = 33872, + [SMALL_STATE(954)] = 33885, + [SMALL_STATE(955)] = 33898, + [SMALL_STATE(956)] = 33907, + [SMALL_STATE(957)] = 33916, + [SMALL_STATE(958)] = 33925, + [SMALL_STATE(959)] = 33938, + [SMALL_STATE(960)] = 33951, + [SMALL_STATE(961)] = 33960, + [SMALL_STATE(962)] = 33973, + [SMALL_STATE(963)] = 33986, + [SMALL_STATE(964)] = 33995, + [SMALL_STATE(965)] = 34004, + [SMALL_STATE(966)] = 34017, + [SMALL_STATE(967)] = 34030, + [SMALL_STATE(968)] = 34043, + [SMALL_STATE(969)] = 34052, + [SMALL_STATE(970)] = 34065, + [SMALL_STATE(971)] = 34074, + [SMALL_STATE(972)] = 34087, + [SMALL_STATE(973)] = 34100, + [SMALL_STATE(974)] = 34109, + [SMALL_STATE(975)] = 34118, + [SMALL_STATE(976)] = 34127, + [SMALL_STATE(977)] = 34140, + [SMALL_STATE(978)] = 34153, + [SMALL_STATE(979)] = 34162, + [SMALL_STATE(980)] = 34171, + [SMALL_STATE(981)] = 34180, + [SMALL_STATE(982)] = 34189, + [SMALL_STATE(983)] = 34198, + [SMALL_STATE(984)] = 34207, + [SMALL_STATE(985)] = 34216, + [SMALL_STATE(986)] = 34225, + [SMALL_STATE(987)] = 34236, + [SMALL_STATE(988)] = 34245, + [SMALL_STATE(989)] = 34254, + [SMALL_STATE(990)] = 34265, + [SMALL_STATE(991)] = 34276, + [SMALL_STATE(992)] = 34285, + [SMALL_STATE(993)] = 34296, + [SMALL_STATE(994)] = 34309, + [SMALL_STATE(995)] = 34320, + [SMALL_STATE(996)] = 34331, + [SMALL_STATE(997)] = 34342, + [SMALL_STATE(998)] = 34353, + [SMALL_STATE(999)] = 34364, + [SMALL_STATE(1000)] = 34375, + [SMALL_STATE(1001)] = 34386, + [SMALL_STATE(1002)] = 34397, + [SMALL_STATE(1003)] = 34408, + [SMALL_STATE(1004)] = 34419, + [SMALL_STATE(1005)] = 34430, + [SMALL_STATE(1006)] = 34439, + [SMALL_STATE(1007)] = 34448, + [SMALL_STATE(1008)] = 34459, + [SMALL_STATE(1009)] = 34472, + [SMALL_STATE(1010)] = 34485, + [SMALL_STATE(1011)] = 34493, + [SMALL_STATE(1012)] = 34501, + [SMALL_STATE(1013)] = 34509, + [SMALL_STATE(1014)] = 34517, + [SMALL_STATE(1015)] = 34525, + [SMALL_STATE(1016)] = 34533, + [SMALL_STATE(1017)] = 34541, + [SMALL_STATE(1018)] = 34549, + [SMALL_STATE(1019)] = 34557, + [SMALL_STATE(1020)] = 34565, + [SMALL_STATE(1021)] = 34573, + [SMALL_STATE(1022)] = 34581, + [SMALL_STATE(1023)] = 34589, + [SMALL_STATE(1024)] = 34597, + [SMALL_STATE(1025)] = 34605, + [SMALL_STATE(1026)] = 34613, + [SMALL_STATE(1027)] = 34621, + [SMALL_STATE(1028)] = 34629, + [SMALL_STATE(1029)] = 34637, + [SMALL_STATE(1030)] = 34645, + [SMALL_STATE(1031)] = 34653, + [SMALL_STATE(1032)] = 34661, + [SMALL_STATE(1033)] = 34669, + [SMALL_STATE(1034)] = 34677, + [SMALL_STATE(1035)] = 34685, + [SMALL_STATE(1036)] = 34693, + [SMALL_STATE(1037)] = 34701, + [SMALL_STATE(1038)] = 34709, + [SMALL_STATE(1039)] = 34717, + [SMALL_STATE(1040)] = 34725, + [SMALL_STATE(1041)] = 34733, + [SMALL_STATE(1042)] = 34741, + [SMALL_STATE(1043)] = 34749, + [SMALL_STATE(1044)] = 34757, + [SMALL_STATE(1045)] = 34765, + [SMALL_STATE(1046)] = 34773, + [SMALL_STATE(1047)] = 34781, + [SMALL_STATE(1048)] = 34789, + [SMALL_STATE(1049)] = 34797, + [SMALL_STATE(1050)] = 34805, + [SMALL_STATE(1051)] = 34813, + [SMALL_STATE(1052)] = 34821, + [SMALL_STATE(1053)] = 34829, + [SMALL_STATE(1054)] = 34837, + [SMALL_STATE(1055)] = 34845, + [SMALL_STATE(1056)] = 34853, + [SMALL_STATE(1057)] = 34861, + [SMALL_STATE(1058)] = 34869, + [SMALL_STATE(1059)] = 34877, + [SMALL_STATE(1060)] = 34887, + [SMALL_STATE(1061)] = 34895, + [SMALL_STATE(1062)] = 34903, + [SMALL_STATE(1063)] = 34911, + [SMALL_STATE(1064)] = 34919, + [SMALL_STATE(1065)] = 34929, + [SMALL_STATE(1066)] = 34937, + [SMALL_STATE(1067)] = 34945, + [SMALL_STATE(1068)] = 34953, + [SMALL_STATE(1069)] = 34961, + [SMALL_STATE(1070)] = 34969, + [SMALL_STATE(1071)] = 34977, + [SMALL_STATE(1072)] = 34985, + [SMALL_STATE(1073)] = 34993, + [SMALL_STATE(1074)] = 35001, + [SMALL_STATE(1075)] = 35009, + [SMALL_STATE(1076)] = 35017, + [SMALL_STATE(1077)] = 35025, + [SMALL_STATE(1078)] = 35033, + [SMALL_STATE(1079)] = 35041, + [SMALL_STATE(1080)] = 35051, + [SMALL_STATE(1081)] = 35059, + [SMALL_STATE(1082)] = 35067, + [SMALL_STATE(1083)] = 35075, + [SMALL_STATE(1084)] = 35083, + [SMALL_STATE(1085)] = 35091, + [SMALL_STATE(1086)] = 35099, + [SMALL_STATE(1087)] = 35107, + [SMALL_STATE(1088)] = 35115, + [SMALL_STATE(1089)] = 35123, + [SMALL_STATE(1090)] = 35133, + [SMALL_STATE(1091)] = 35141, + [SMALL_STATE(1092)] = 35149, + [SMALL_STATE(1093)] = 35159, + [SMALL_STATE(1094)] = 35167, + [SMALL_STATE(1095)] = 35175, + [SMALL_STATE(1096)] = 35183, + [SMALL_STATE(1097)] = 35191, + [SMALL_STATE(1098)] = 35199, + [SMALL_STATE(1099)] = 35207, + [SMALL_STATE(1100)] = 35215, + [SMALL_STATE(1101)] = 35223, + [SMALL_STATE(1102)] = 35231, + [SMALL_STATE(1103)] = 35239, + [SMALL_STATE(1104)] = 35247, + [SMALL_STATE(1105)] = 35257, + [SMALL_STATE(1106)] = 35265, + [SMALL_STATE(1107)] = 35273, + [SMALL_STATE(1108)] = 35281, + [SMALL_STATE(1109)] = 35289, + [SMALL_STATE(1110)] = 35297, + [SMALL_STATE(1111)] = 35305, + [SMALL_STATE(1112)] = 35313, + [SMALL_STATE(1113)] = 35323, + [SMALL_STATE(1114)] = 35331, + [SMALL_STATE(1115)] = 35339, + [SMALL_STATE(1116)] = 35347, + [SMALL_STATE(1117)] = 35355, + [SMALL_STATE(1118)] = 35363, + [SMALL_STATE(1119)] = 35371, + [SMALL_STATE(1120)] = 35379, + [SMALL_STATE(1121)] = 35387, + [SMALL_STATE(1122)] = 35395, + [SMALL_STATE(1123)] = 35405, + [SMALL_STATE(1124)] = 35413, + [SMALL_STATE(1125)] = 35421, + [SMALL_STATE(1126)] = 35429, + [SMALL_STATE(1127)] = 35437, + [SMALL_STATE(1128)] = 35445, + [SMALL_STATE(1129)] = 35453, + [SMALL_STATE(1130)] = 35461, + [SMALL_STATE(1131)] = 35469, + [SMALL_STATE(1132)] = 35477, + [SMALL_STATE(1133)] = 35485, + [SMALL_STATE(1134)] = 35493, + [SMALL_STATE(1135)] = 35501, + [SMALL_STATE(1136)] = 35509, + [SMALL_STATE(1137)] = 35517, + [SMALL_STATE(1138)] = 35525, + [SMALL_STATE(1139)] = 35533, + [SMALL_STATE(1140)] = 35541, + [SMALL_STATE(1141)] = 35549, + [SMALL_STATE(1142)] = 35557, + [SMALL_STATE(1143)] = 35565, + [SMALL_STATE(1144)] = 35573, + [SMALL_STATE(1145)] = 35581, + [SMALL_STATE(1146)] = 35589, + [SMALL_STATE(1147)] = 35597, + [SMALL_STATE(1148)] = 35605, + [SMALL_STATE(1149)] = 35613, + [SMALL_STATE(1150)] = 35621, + [SMALL_STATE(1151)] = 35629, + [SMALL_STATE(1152)] = 35637, + [SMALL_STATE(1153)] = 35645, + [SMALL_STATE(1154)] = 35653, + [SMALL_STATE(1155)] = 35661, + [SMALL_STATE(1156)] = 35671, + [SMALL_STATE(1157)] = 35679, + [SMALL_STATE(1158)] = 35687, + [SMALL_STATE(1159)] = 35695, + [SMALL_STATE(1160)] = 35703, + [SMALL_STATE(1161)] = 35711, + [SMALL_STATE(1162)] = 35719, + [SMALL_STATE(1163)] = 35727, + [SMALL_STATE(1164)] = 35735, + [SMALL_STATE(1165)] = 35743, + [SMALL_STATE(1166)] = 35751, + [SMALL_STATE(1167)] = 35759, + [SMALL_STATE(1168)] = 35767, + [SMALL_STATE(1169)] = 35775, + [SMALL_STATE(1170)] = 35783, + [SMALL_STATE(1171)] = 35791, + [SMALL_STATE(1172)] = 35799, + [SMALL_STATE(1173)] = 35807, + [SMALL_STATE(1174)] = 35815, + [SMALL_STATE(1175)] = 35823, + [SMALL_STATE(1176)] = 35831, + [SMALL_STATE(1177)] = 35839, + [SMALL_STATE(1178)] = 35847, + [SMALL_STATE(1179)] = 35855, + [SMALL_STATE(1180)] = 35863, + [SMALL_STATE(1181)] = 35871, + [SMALL_STATE(1182)] = 35879, + [SMALL_STATE(1183)] = 35887, + [SMALL_STATE(1184)] = 35895, + [SMALL_STATE(1185)] = 35903, + [SMALL_STATE(1186)] = 35911, + [SMALL_STATE(1187)] = 35919, + [SMALL_STATE(1188)] = 35927, + [SMALL_STATE(1189)] = 35937, + [SMALL_STATE(1190)] = 35945, + [SMALL_STATE(1191)] = 35953, + [SMALL_STATE(1192)] = 35961, + [SMALL_STATE(1193)] = 35971, + [SMALL_STATE(1194)] = 35979, + [SMALL_STATE(1195)] = 35987, + [SMALL_STATE(1196)] = 35995, + [SMALL_STATE(1197)] = 36003, + [SMALL_STATE(1198)] = 36011, + [SMALL_STATE(1199)] = 36019, + [SMALL_STATE(1200)] = 36027, + [SMALL_STATE(1201)] = 36035, + [SMALL_STATE(1202)] = 36043, + [SMALL_STATE(1203)] = 36051, + [SMALL_STATE(1204)] = 36059, + [SMALL_STATE(1205)] = 36069, + [SMALL_STATE(1206)] = 36077, + [SMALL_STATE(1207)] = 36085, + [SMALL_STATE(1208)] = 36093, + [SMALL_STATE(1209)] = 36101, + [SMALL_STATE(1210)] = 36109, + [SMALL_STATE(1211)] = 36117, + [SMALL_STATE(1212)] = 36125, + [SMALL_STATE(1213)] = 36133, + [SMALL_STATE(1214)] = 36141, + [SMALL_STATE(1215)] = 36149, + [SMALL_STATE(1216)] = 36159, + [SMALL_STATE(1217)] = 36167, + [SMALL_STATE(1218)] = 36175, + [SMALL_STATE(1219)] = 36183, + [SMALL_STATE(1220)] = 36191, + [SMALL_STATE(1221)] = 36199, + [SMALL_STATE(1222)] = 36207, + [SMALL_STATE(1223)] = 36215, + [SMALL_STATE(1224)] = 36223, + [SMALL_STATE(1225)] = 36231, + [SMALL_STATE(1226)] = 36241, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -24554,898 +33450,1136 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__appExpr, 1, 0, 0), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__appExpr, 1, 0, 0), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__appExpr, 2, 0, 0), - [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__appExpr, 2, 0, 0), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(153), - [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(80), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(747), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(158), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(100), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(161), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(122), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(123), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(125), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(126), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(687), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(138), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(678), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(92), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(709), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(276), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(770), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(279), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(136), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(131), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(717), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(283), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(95), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(716), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(18), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(697), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(106), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(300), - [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(303), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(120), - [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(119), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(715), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recUpdate, 6, 0, 0), - [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recUpdate, 6, 0, 0), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(307), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(124), - [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(129), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(700), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recUpdate, 2, 0, 0), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recUpdate, 2, 0, 0), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atom, 3, 0, 0), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atom, 3, 0, 0), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parg, 3, 0, 0), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parg, 3, 0, 0), - [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recUpdate, 5, 0, 0), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recUpdate, 5, 0, 0), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(140), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(317), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(87), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(698), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(115), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atom, 1, 0, 0), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atom, 1, 0, 0), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortDataDecl, 5, 0, 4), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortDataDecl, 5, 0, 6), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortDataDecl, 4, 0, 4), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortDataDecl, 6, 0, 6), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(358), - [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(676), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortDataDecl_repeat2, 3, 0, 9), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortDataDecl_repeat2, 3, 0, 9), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ifThen, 6, 0, 0), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, 0, 0), - [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeExpr, 1, 0, 0), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortDataDecl_repeat1, 2, 0, 0), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shortDataDecl_repeat1, 2, 0, 0), SHIFT_REPEAT(385), - [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortDataDecl_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortDataDecl_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortDataDecl_repeat1, 2, 0, 0), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doBlock, 3, 0, 0), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar, 2, 0, 0), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeExpr, 3, 0, 0), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binders, 3, 0, 0), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lamExpr, 4, 0, 0), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doBlock, 4, 0, 0), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forall, 4, 0, 0), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortDataDecl_repeat2, 2, 0, 9), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortDataDecl_repeat2, 2, 0, 9), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, 0, 0), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_binders_repeat1, 2, 0, 0), - [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_binders_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_binders_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_binders_repeat1, 2, 0, 0), SHIFT_REPEAT(650), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binder, 5, 0, 0), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binder, 5, 0, 0), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binder, 3, 0, 0), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binder, 3, 0, 0), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binder, 6, 0, 0), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binder, 6, 0, 0), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doArrow, 2, 0, 0), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doArrow, 3, 0, 0), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_doCaseLet_repeat1, 2, 0, 0), SHIFT_REPEAT(150), - [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_doCaseLet_repeat1, 2, 0, 0), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doCaseLet, 6, 0, 0), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doCaseLet, 7, 0, 0), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lamExpr_repeat1, 2, 0, 0), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_lamExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(526), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qname, 2, 0, 0), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixfixDecl, 3, 0, 0), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doArrow, 1, 0, 0), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deriveDecl, 2, 0, 0), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defDecl, 3, 0, 3), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_lamExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qname, 1, 0, 0), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortDataDecl_repeat2, 2, 0, 0), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortDataDecl_repeat2, 2, 0, 0), SHIFT_REPEAT(849), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortDataDecl, 6, 0, 4), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qname_repeat1, 2, 0, 0), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qname_repeat1, 2, 0, 0), SHIFT_REPEAT(941), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mixfixDecl_repeat1, 2, 0, 0), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixfixDecl_repeat1, 2, 0, 0), SHIFT_REPEAT(674), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortDataDecl, 7, 0, 6), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_orAlt, 2, 0, 0), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caseAlt, 3, 0, 0), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ptypeDecl, 2, 0, 1), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_lamExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(585), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_lamExpr_repeat1, 2, 0, 0), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(688), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataDecl, 4, 0, 5), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 0), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_lamExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), - [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(3), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_doBlock_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_doBlock_repeat1, 2, 0, 0), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataDecl, 5, 0, 5), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_lamExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(639), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_recUpdate_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recUpdate_repeat1, 2, 0, 0), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_recordDecl_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recordDecl_repeat1, 2, 0, 0), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dataDecl_repeat1, 2, 0, 0), SHIFT_REPEAT(774), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dataDecl_repeat1, 2, 0, 0), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_whereClause_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_whereClause_repeat1, 2, 0, 0), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mixfixDecl_repeat1, 1, 0, 2), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_mixfixDecl_repeat1, 1, 0, 2), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ptypeDecl, 4, 0, 1), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigDecl, 3, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceDecl, 5, 0, 0), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doLet, 4, 0, 0), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defDecl, 4, 0, 3), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importDef, 2, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recUpdate_repeat1, 4, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recordDecl_repeat1, 3, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pfuncDecl, 10, 0, 10), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doArrow, 2, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recordDecl, 7, 0, 7), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataDecl, 8, 0, 5), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pfuncDecl, 6, 0, 10), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataDecl, 7, 0, 5), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recordDecl, 6, 0, 7), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recordDecl, 5, 0, 7), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsLitString, 3, 0, 0), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classDecl, 7, 0, 8), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classDecl, 6, 0, 8), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classDecl, 5, 0, 8), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceDecl, 6, 0, 0), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_whereClause, 3, 0, 0), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_whereClause, 4, 0, 0), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1832] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(334), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), + [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), + [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__appExpr, 1, 0, 0), + [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__appExpr, 1, 0, 0), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__appExpr, 2, 0, 0), + [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__appExpr, 2, 0, 0), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(338), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(909), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(993), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(343), + [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(905), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(136), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(935), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(896), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(952), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(871), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(366), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(369), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(125), + [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(124), + [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(889), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(374), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(969), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(379), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(129), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(915), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(1009), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(913), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forall, 4, 0, 0), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_letStmt, 5, 0, 0), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caseExpr, 5, 0, 0), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, 0, 0), + [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_letStmt, 6, 0, 0), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caseLet, 6, 0, 0), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ifThen, 6, 0, 0), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caseExpr, 6, 0, 0), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caseLet, 7, 0, 0), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(400), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recUpdate, 2, 0, 0), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recUpdate, 2, 0, 0), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atom, 3, 0, 0), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atom, 3, 0, 0), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parg, 3, 0, 0), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parg, 3, 0, 0), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recUpdate, 5, 0, 0), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recUpdate, 5, 0, 0), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recUpdate, 6, 0, 0), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recUpdate, 6, 0, 0), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doBlock, 3, 0, 0), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar, 2, 0, 0), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typeExpr, 3, 0, 0), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binders, 3, 0, 0), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lamExpr, 4, 0, 0), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doBlock, 4, 0, 0), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(416), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(901), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(420), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(881), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(432), + [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(907), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(122), + [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__appExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(904), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atom, 1, 0, 0), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atom, 1, 0, 0), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortDataDecl, 4, 0, 4), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortDataDecl, 5, 0, 6), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortDataDecl, 6, 0, 6), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortDataDecl, 5, 0, 4), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortDataDecl_repeat2, 3, 0, 9), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortDataDecl_repeat2, 3, 0, 9), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortDataDecl_repeat2, 2, 0, 9), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortDataDecl_repeat2, 2, 0, 9), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortDataDecl_repeat1, 2, 0, 0), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shortDataDecl_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortDataDecl_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortDataDecl_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortDataDecl_repeat1, 2, 0, 0), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, 0, 0), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typeExpr, 1, 0, 0), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_binders_repeat1, 2, 0, 0), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_binders_repeat1, 2, 0, 0), SHIFT_REPEAT(894), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_binders_repeat1, 2, 0, 0), SHIFT_REPEAT(126), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_binders_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binder, 5, 0, 0), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binder, 5, 0, 0), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binder, 6, 0, 0), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binder, 6, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binder, 3, 0, 0), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binder, 3, 0, 0), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doArrow, 2, 0, 0), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doArrow, 3, 0, 0), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doCaseLet, 6, 0, 0), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doCaseLet, 7, 0, 0), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_doCaseLet_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_doCaseLet_repeat1, 2, 0, 0), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qname, 1, 0, 0), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_doCaseLet_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mixfixDecl_repeat1, 2, 0, 0), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixfixDecl_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_lamExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(652), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lamExpr_repeat1, 2, 0, 0), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doArrow, 1, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defDecl, 3, 0, 3), + [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_lamExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(658), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortDataDecl, 7, 0, 6), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 0), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qname, 2, 0, 0), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixfixDecl, 3, 0, 0), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortDataDecl, 6, 0, 4), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortDataDecl_repeat2, 2, 0, 0), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortDataDecl_repeat2, 2, 0, 0), SHIFT_REPEAT(1215), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qname_repeat1, 2, 0, 0), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qname_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deriveDecl, 2, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(208), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_lamExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_lamExpr_repeat1, 2, 0, 0), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_doBlock_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_doBlock_repeat1, 2, 0, 0), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_lamExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_caseExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_caseExpr_repeat1, 2, 0, 0), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataDecl, 5, 0, 5), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataDecl, 4, 0, 5), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_orAlt, 2, 0, 0), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 0), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mixfixDecl_repeat1, 1, 0, 2), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_mixfixDecl_repeat1, 1, 0, 2), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_lamExpr_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_recUpdate_repeat1, 2, 0, 0), SHIFT_REPEAT(1204), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recUpdate_repeat1, 2, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ptypeDecl, 2, 0, 1), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_whereClause_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_whereClause_repeat1, 2, 0, 0), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_letStmt_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_letStmt_repeat1, 2, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_recordDecl_repeat1, 2, 0, 0), SHIFT_REPEAT(726), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recordDecl_repeat1, 2, 0, 0), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caseAlt, 3, 0, 0), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dataDecl_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dataDecl_repeat1, 2, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recordDecl, 5, 0, 7), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defDecl, 4, 0, 3), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classDecl, 5, 0, 8), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceDecl, 5, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_whereClause, 3, 0, 0), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_whereClause, 4, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doArrow, 2, 0, 0), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ptypeDecl, 4, 0, 1), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pfuncDecl, 6, 0, 10), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recordDecl, 6, 0, 7), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classDecl, 6, 0, 8), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceDecl, 6, 0, 0), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_letAssign, 3, 0, 0), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_importDef, 2, 0, 0), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataDecl, 7, 0, 5), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recordDecl_repeat1, 3, 0, 0), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recordDecl, 7, 0, 7), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classDecl, 7, 0, 8), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doLet, 4, 0, 0), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_recUpdate_repeat1, 4, 0, 0), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataDecl, 8, 0, 5), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsLitString, 3, 0, 0), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pfuncDecl, 10, 0, 10), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigDecl, 3, 0, 0), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2148] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), }; enum ts_external_scanner_symbol_identifiers { @@ -25474,20 +34608,20 @@ static const bool ts_external_scanner_states[7][EXTERNAL_TOKEN_COUNT] = { }, [3] = { [ts_external_token_semi] = true, + [ts_external_token_end] = true, [ts_external_token__ws] = true, }, [4] = { [ts_external_token_semi] = true, - [ts_external_token_end] = true, [ts_external_token__ws] = true, }, [5] = { [ts_external_token_start] = true, - [ts_external_token_semi] = true, [ts_external_token__ws] = true, }, [6] = { [ts_external_token_start] = true, + [ts_external_token_semi] = true, [ts_external_token__ws] = true, }, }; diff --git a/src/scanner.c b/src/scanner.c index 1b89e2b..7a4edc9 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -53,6 +53,13 @@ static int32_t peek(State *state) { #define PEEK lexer->lookahead #define PEEK_WS (PEEK == ' ' || PEEK == '\n' || PEEK == '\t') +static bool isAtIn(TSLexer *lexer) { + if (PEEK != 'i') return false; + lexer->mark_end(lexer); + lexer->advance(lexer, false); + return PEEK == 'n'; +} + /** * The custom scanner is responsible for the virtual indent, outdent, and semi tokens. * Additionally it handles whitespace. This allows us to give the virtual tokens priority over @@ -95,15 +102,12 @@ bool tree_sitter_newt_external_scanner_scan(State *state, TSLexer *lexer, // even if it's not expected (I think this is important) // on the editor side there is a `then` expected vs outdented `then`, but // maybe GLR can detect a "stray" END token? - if (syms[VIRT_END] || true) { - - if (col < cur) { - fprintf(stderr, "end [%d %d %d %d] %d %d\n", syms[0], syms[1], syms[2], - syms[3], col, cur); - pop(state); - lexer->result_symbol = VIRT_END; - return true; - } + if (ws && (col < cur || PEEK == '|' || isAtIn(lexer))) { + fprintf(stderr, "end [%d %d %d %d] %d %d\n", syms[0], syms[1], syms[2], + syms[3], col, cur); + pop(state); + lexer->result_symbol = VIRT_END; + return true; } // but we can't do that for semi? if (syms[VIRT_SEMI]) { diff --git a/tree-sitter.json b/tree-sitter.json index 73e4bdc..1e239ac 100644 --- a/tree-sitter.json +++ b/tree-sitter.json @@ -13,6 +13,7 @@ "class-name": "TreeSitterNewt" } ], + "highlights": "queries/highlights.scm", "metadata": { "version": "0.1.0", "license": "MIT", @@ -36,4 +37,4 @@ "swift": true, "zig": false } -} \ No newline at end of file +}